From dde79c415fab11e910af56ed562dd9f51f120739 Mon Sep 17 00:00:00 2001 From: Erik Berlin Date: Wed, 20 Jun 2018 15:27:52 -0700 Subject: [PATCH 01/29] Prepare for version 7.0.0 release --- CHANGELOG.md | 21 ++++++++++++++++----- lib/twitter/version.rb | 4 ++-- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 270fae48d..629ff2ffc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,24 +1,35 @@ -6.2.0 +7.0.0 ------ +* [Add `Twitter::DirectMessageEvent`](https://github.com/sferik/twitter/commit/38f6aaa482dcd5f4982abd811dbe6e21e36c2ae8) ([@FabienChaynes](https://twitter.com/FabienChaynes)) +* [Create `Twitter::DirectMessageEvent` with media](https://github.com/sferik/twitter/commit/21478530ec6f8a798717a5ab8b197b895db3bc28) ([@FabienChaynes](https://twitter.com/FabienChaynes)) +* [Support for closing `Twitter::Streaming::Connection`](https://github.com/sferik/twitter/commit/89e3543aa06e00eeab7eaf5bdd3a33a6112356b1) ([@okkez](https://twitter.com/okkez)) +* [Add `Twitter::REST:Client#create_direct_message_event`](https://github.com/sferik/twitter/commit/b45d545c7ebfd28e4d908037dd3fde04e3c307cf) ([@cyu](https://twitter.com/cyu)) +* [Update all direct message methods to return `Twitter::DirectMessageEvent`](https://github.com/sferik/twitter/commit/0833471366a33657cd2920850e3928db010eecab) ([@flikglick](https://twitter.com/flikglick)) +* [Correctly handle different `Twitter::Error::AlreadyRetweeted` error messages](https://github.com/sferik/twitter/commit/c9bf100eedc89aee43689c17f160025e0f40cfb4) ([@knu](https://twitter.com/knu)) +* [Fix proxy setting sample](https://github.com/sferik/twitter/commit/91c037cfb26ac0c9d3099cdeec42d65fe8716b78) ([@nicklegr](https://twitter.com/nicklegr)) +* [Add Active Support `presence` methods on `Twitter::NullObject`](https://github.com/sferik/twitter/commit/07a5d7b60f335aefd583dae85ba959235bc9f55f) ([@davebrace](https://twitter.com/davebrace)) +* [Upload GIFs over 5MB in chunks](https://github.com/sferik/twitter/commit/ba6a3062782b37cf83b9813c5128c87d4971ab9c) ([@wild_dmitry](https://twitter.com/wild_dmitry)) +* [Track rate limit when searching tweets](https://github.com/sferik/twitter/commit/067e751d58b7bb0bfbe8a5531a4288f4c966b301) ([@dsalahutdinov1](https://twitter.com/dsalahutdinov1)) +* [Add `quote_count` and `reply_count` attributes to `Twitter::Tweet`](https://github.com/sferik/twitter/commit/844818cad07ce490ccb9d8542ebb6b4fc7a61cb4) +* [Drop support for Ruby 2.0, 2.1, and 2.2](https://github.com/sferik/twitter/commit/95861ec83e582c2a88499b97d9d5388a96d0abf0) + +6.2.0 +------ Not yet documented, sorry. For now, please use git to compare tags: https://github.com/sferik/twitter/compare/v6.1.0...v6.2.0 6.1.0 ------ - Not yet documented, sorry. For now, please use git to compare tags: https://github.com/sferik/twitter/compare/v6.0.0...v6.1.0 - 6.0.0 ------ - * [Drop support for Ruby 1.8.7 and Ruby 1.9.3](https://github.com/sferik/twitter/commit/27980f45fb357e34b86e46cb9134d86ed29b3ce3) 5.16.0 ------ - * [Add Twitter::Trend#tweet_volume](https://github.com/sferik/twitter/commit/e797b62e5e6a768e8aeafde6186e1f5310e6bfc6) * [Add new settings to Twitter::Settings](https://github.com/sferik/twitter/commit/d047ce00034d26a99927076c28679ce08fd69308) * [Fix `Version.to_a`](https://github.com/sferik/twitter/commit/0cd119abf64e6c2b7fd861b0df65b7cb41d892b4) diff --git a/lib/twitter/version.rb b/lib/twitter/version.rb index 9d6007dde..67e39810b 100644 --- a/lib/twitter/version.rb +++ b/lib/twitter/version.rb @@ -4,12 +4,12 @@ module Version # @return [Integer] def major - 6 + 7 end # @return [Integer] def minor - 2 + 0 end # @return [Integer] From 2362656570102c2c62f1ec358317e3d58a0b1e58 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 16 Aug 2018 17:28:34 +0200 Subject: [PATCH 02/29] Fix chunk upload * Wait for the media processing to be done before creating the tweet * Handle media upload API errors --- lib/twitter/error.rb | 32 +++++++++++- lib/twitter/rest/request.rb | 2 + lib/twitter/rest/upload_utils.rb | 30 ++++++++--- .../chunk_upload_finalize_pending.json | 1 + .../chunk_upload_finalize_succeeded.json | 1 + spec/fixtures/chunk_upload_init.json | 1 + spec/fixtures/chunk_upload_status_failed.json | 1 + .../fixtures/chunk_upload_status_pending.json | 1 + .../chunk_upload_status_succeeded.json | 1 + spec/twitter/rest/direct_messages_spec.rb | 51 +++++++++++++++++++ spec/twitter/rest/tweets_spec.rb | 51 +++++++++++++++++++ 11 files changed, 163 insertions(+), 9 deletions(-) create mode 100644 spec/fixtures/chunk_upload_finalize_pending.json create mode 100644 spec/fixtures/chunk_upload_finalize_succeeded.json create mode 100644 spec/fixtures/chunk_upload_init.json create mode 100644 spec/fixtures/chunk_upload_status_failed.json create mode 100644 spec/fixtures/chunk_upload_status_pending.json create mode 100644 spec/fixtures/chunk_upload_status_succeeded.json diff --git a/lib/twitter/error.rb b/lib/twitter/error.rb index a6c8b6c0f..4c6756395 100644 --- a/lib/twitter/error.rb +++ b/lib/twitter/error.rb @@ -59,6 +59,18 @@ class Error < StandardError # Raised when Twitter returns the HTTP status code 504 GatewayTimeout = Class.new(ServerError) + # Raised when Twitter returns a media related error + MediaError = Class.new(self) + + # Raised when Twitter returns an InvalidMedia error + InvalidMedia = Class.new(MediaError) + + # Raised when Twitter returns a media InternalError error + MediaInternalError = Class.new(MediaError) + + # Raised when Twitter returns an UnsupportedMedia error + UnsupportedMedia = Class.new(MediaError) + ERRORS = { 400 => Twitter::Error::BadRequest, 401 => Twitter::Error::Unauthorized, @@ -90,7 +102,13 @@ class Error < StandardError end end - # If error code is missing see https://dev.twitter.com/overview/api/response-codes + MEDIA_ERRORS = { + 'InternalError' => Twitter::Error::MediaInternalError, + 'InvalidMedia' => Twitter::Error::InvalidMedia, + 'UnsupportedMedia' => Twitter::Error::UnsupportedMedia, + }.freeze + + # If error code is missing see https://developer.twitter.com/en/docs/basics/response-codes module Code AUTHENTICATION_PROBLEM = 32 RESOURCE_NOT_FOUND = 34 @@ -131,6 +149,18 @@ def from_response(body, headers) new(message, headers, code) end + # Create a new error from a media error hash + # + # @param error [Hash] + # @param headers [Hash] + # @return [Twitter::MediaError] + def from_processing_response(error, headers) + klass = MEDIA_ERRORS[error[:name]] || self + message = error[:message] + code = error[:code] + klass.new(message, headers, code) + end + private def parse_error(body) diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 423b1d403..07bf56538 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -89,6 +89,8 @@ def error(code, body, headers) forbidden_error(body, headers) elsif !klass.nil? klass.from_response(body, headers) + elsif body&.is_a?(Hash) && (err = body.dig(:processing_info, :error)) + Twitter::Error::MediaError.from_processing_response(err, headers) end end diff --git a/lib/twitter/rest/upload_utils.rb b/lib/twitter/rest/upload_utils.rb index d13839744..b4976072f 100644 --- a/lib/twitter/rest/upload_utils.rb +++ b/lib/twitter/rest/upload_utils.rb @@ -8,7 +8,7 @@ module UploadUtils # Uploads images and videos. Videos require multiple requests and uploads in chunks of 5 Megabytes. # The only supported video format is mp4. # - # @see https://dev.twitter.com/rest/public/uploading-media + # @see https://developer.twitter.com/en/docs/media/upload-media/uploading-media/media-best-practices def upload(media, media_category_prefix: 'tweet') return chunk_upload(media, 'video/mp4', "#{media_category_prefix}_video") if File.extname(media) == '.mp4' return chunk_upload(media, 'image/gif', "#{media_category_prefix}_gif") if File.extname(media) == '.gif' && File.size(media) > 5_000_000 @@ -16,31 +16,45 @@ def upload(media, media_category_prefix: 'tweet') Twitter::REST::Request.new(self, :multipart_post, 'https://upload.twitter.com/1.1/media/upload.json', key: :media, file: media).perform end - # rubocop:disable MethodLength + # @see https://developer.twitter.com/en/docs/media/upload-media/uploading-media/chunked-media-upload def chunk_upload(media, media_type, media_category) init = Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', command: 'INIT', media_type: media_type, media_category: media_category, total_bytes: media.size).perform + append_media(media, init[:media_id]) + media.close + finalize_media(init[:media_id]) + end + # @see https://developer.twitter.com/en/docs/media/upload-media/api-reference/post-media-upload-append + def append_media(media, media_id) until media.eof? chunk = media.read(5_000_000) seg ||= -1 Twitter::REST::Request.new(self, :multipart_post, 'https://upload.twitter.com/1.1/media/upload.json', command: 'APPEND', - media_id: init[:media_id], + media_id: media_id, segment_index: seg += 1, key: :media, file: StringIO.new(chunk)).perform end + end - media.close - - Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', - command: 'FINALIZE', media_id: init[:media_id]).perform + # @see https://developer.twitter.com/en/docs/media/upload-media/api-reference/post-media-upload-finalize + # @see https://developer.twitter.com/en/docs/media/upload-media/api-reference/get-media-upload-status + def finalize_media(media_id) + response = Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', + command: 'FINALIZE', media_id: media_id).perform + 3.times do + return response if !response[:processing_info] || %w[failed succeeded].include?(response[:processing_info][:state]) + sleep(response[:processing_info][:check_after_secs]) + response = Twitter::REST::Request.new(self, :get, 'https://upload.twitter.com/1.1/media/upload.json', + command: 'STATUS', media_id: media_id).perform + end + response end - # rubocop:enable MethodLength end end end diff --git a/spec/fixtures/chunk_upload_finalize_pending.json b/spec/fixtures/chunk_upload_finalize_pending.json new file mode 100644 index 000000000..4004376be --- /dev/null +++ b/spec/fixtures/chunk_upload_finalize_pending.json @@ -0,0 +1 @@ +{"media_id":710511363345354753,"media_id_string":"710511363345354753","expires_after_secs":86400,"size":10240,"processing_info":{"state":"pending","check_after_secs":5}} diff --git a/spec/fixtures/chunk_upload_finalize_succeeded.json b/spec/fixtures/chunk_upload_finalize_succeeded.json new file mode 100644 index 000000000..e755cffce --- /dev/null +++ b/spec/fixtures/chunk_upload_finalize_succeeded.json @@ -0,0 +1 @@ +{"media_id":710511363345354753,"media_id_string":"710511363345354753","size":11065,"expires_after_secs":86400,"video":{"video_type":"video/mp4"}} diff --git a/spec/fixtures/chunk_upload_init.json b/spec/fixtures/chunk_upload_init.json new file mode 100644 index 000000000..389560f36 --- /dev/null +++ b/spec/fixtures/chunk_upload_init.json @@ -0,0 +1 @@ +{"media_id":710511363345354753,"media_id_string":"710511363345354753","size":10240,"expires_after_secs":86400,"video":{"video_type":"video/mp4"}} diff --git a/spec/fixtures/chunk_upload_status_failed.json b/spec/fixtures/chunk_upload_status_failed.json new file mode 100644 index 000000000..51ab23578 --- /dev/null +++ b/spec/fixtures/chunk_upload_status_failed.json @@ -0,0 +1 @@ +{"media_id":710511363345354753,"media_id_string":"710511363345354753","processing_info":{"state":"failed","progress_percent":12,"error":{"code":1,"name":"InvalidMedia","message":"Unsupported video format"}}} diff --git a/spec/fixtures/chunk_upload_status_pending.json b/spec/fixtures/chunk_upload_status_pending.json new file mode 100644 index 000000000..ba766ae1d --- /dev/null +++ b/spec/fixtures/chunk_upload_status_pending.json @@ -0,0 +1 @@ +{"media_id":710511363345354753,"media_id_string":"710511363345354753","expires_after_secs":3595,"processing_info":{"state":"in_progress","check_after_secs":10,"progress_percent":8}} diff --git a/spec/fixtures/chunk_upload_status_succeeded.json b/spec/fixtures/chunk_upload_status_succeeded.json new file mode 100644 index 000000000..29f7b97ed --- /dev/null +++ b/spec/fixtures/chunk_upload_status_succeeded.json @@ -0,0 +1 @@ +{"media_id":710511363345354753,"media_id_string":"710511363345354753","expires_after_secs":3593,"video":{"video_type":"video/mp4"},"processing_info":{"state":"succeeded","progress_percent":100}} diff --git a/spec/twitter/rest/direct_messages_spec.rb b/spec/twitter/rest/direct_messages_spec.rb index 5515f3f43..0fc968f3a 100644 --- a/spec/twitter/rest/direct_messages_spec.rb +++ b/spec/twitter/rest/direct_messages_spec.rb @@ -222,10 +222,61 @@ end context 'with a mp4 video' do it 'requests the correct resources' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_succeeded.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) @client.create_direct_message_event_with_media(58_983, 'You always have options', fixture('1080p.mp4')) expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) expect(a_post('/1.1/direct_messages/events/new.json')).to have_been_made end + context 'when the processing is not finished right after the upload' do + context 'when it succeeds' do + it 'asks for status until the processing is done' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + pending_status_request = {body: fixture('chunk_upload_status_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + completed_status_request = {body: fixture('chunk_upload_status_succeeded.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(pending_status_request, completed_status_request) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(10).and_return(10) + @client.create_direct_message_event_with_media(58_983, 'You always have options', fixture('1080p.mp4')) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made.times(2) + expect(a_post('/1.1/direct_messages/events/new.json')).to have_been_made + end + end + context 'when it fails' do + it 'raises an error' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + failed_status_request = {body: fixture('chunk_upload_status_failed.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(failed_status_request) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) + expect { @client.create_direct_message_event_with_media(58_983, 'You always have options', fixture('1080p.mp4')) }.to raise_error(Twitter::Error::InvalidMedia) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made + end + end + it 'does not call status more than 3 times' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + pending_status_request = {body: fixture('chunk_upload_status_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(pending_status_request) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).twice.with(10).and_return(10) + @client.create_direct_message_event_with_media(58_983, 'You always have options', fixture('1080p.mp4')) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made.times(3) + expect(a_post('/1.1/direct_messages/events/new.json')).to have_been_made + end + end end context 'with a Tempfile' do it 'requests the correct resource' do diff --git a/spec/twitter/rest/tweets_spec.rb b/spec/twitter/rest/tweets_spec.rb index 89c6bbbfb..dffb476cc 100644 --- a/spec/twitter/rest/tweets_spec.rb +++ b/spec/twitter/rest/tweets_spec.rb @@ -462,10 +462,61 @@ end context 'with a mp4 video' do it 'requests the correct resources' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_succeeded.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) @client.update_with_media('You always have options', fixture('1080p.mp4')) expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) expect(a_post('/1.1/statuses/update.json')).to have_been_made end + context 'when the processing is not finished right after the upload' do + context 'when it succeeds' do + it 'asks for status until the processing is done' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + pending_status_request = {body: fixture('chunk_upload_status_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + completed_status_request = {body: fixture('chunk_upload_status_succeeded.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(pending_status_request, completed_status_request) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(10).and_return(10) + @client.update_with_media('You always have options', fixture('1080p.mp4')) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made.times(2) + expect(a_post('/1.1/statuses/update.json')).to have_been_made + end + end + context 'when it fails' do + it 'raises an error' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + failed_status_request = {body: fixture('chunk_upload_status_failed.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(failed_status_request) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) + expect { @client.update_with_media('You always have options', fixture('1080p.mp4')) }.to raise_error(Twitter::Error::InvalidMedia) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made + end + end + it 'does not call status more than 3 times' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + pending_status_request = {body: fixture('chunk_upload_status_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(pending_status_request) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) + expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).twice.with(10).and_return(10) + @client.update_with_media('You always have options', fixture('1080p.mp4')) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made.times(3) + expect(a_post('/1.1/statuses/update.json')).to have_been_made + end + end end context 'with a Tempfile' do it 'requests the correct resource' do From 20863f884831daa388a0bee5b2d78deb386cfa6b Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Wed, 22 Aug 2018 15:59:55 +0200 Subject: [PATCH 03/29] Add timeout mechanism for media upload Configure the media upload timeout in Twitter::Client#timeouts[:upload] If not specified, the upload won't timeout. If specified, a Twitter::Error::TimeoutError will be raised if the timeout is reached during the whole upload process. --- lib/twitter/error.rb | 3 +++ lib/twitter/rest/request.rb | 6 +++++- lib/twitter/rest/upload_utils.rb | 20 +++++++++++--------- spec/twitter/rest/direct_messages_spec.rb | 23 ++++++++++------------- spec/twitter/rest/tweets_spec.rb | 23 ++++++++++------------- 5 files changed, 39 insertions(+), 36 deletions(-) diff --git a/lib/twitter/error.rb b/lib/twitter/error.rb index 4c6756395..bd41d2ee3 100644 --- a/lib/twitter/error.rb +++ b/lib/twitter/error.rb @@ -71,6 +71,9 @@ class Error < StandardError # Raised when Twitter returns an UnsupportedMedia error UnsupportedMedia = Class.new(MediaError) + # Raised when an operation subject to timeout takes too long + TimeoutError = Class.new(self) + ERRORS = { 400 => Twitter::Error::BadRequest, 401 => Twitter::Error::Unauthorized, diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 07bf56538..84b8eeb5c 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -117,10 +117,14 @@ def symbolize_keys!(object) object end + def timeout_keys_defined + (%i[write connect read] - (@client.timeouts&.keys || [])).empty? + end + # @return [HTTP::Client, HTTP] def http_client client = @client.proxy ? HTTP.via(*proxy) : HTTP - client = client.timeout(:per_operation, connect: @client.timeouts[:connect], read: @client.timeouts[:read], write: @client.timeouts[:write]) if @client.timeouts + client = client.timeout(:per_operation, connect: @client.timeouts[:connect], read: @client.timeouts[:read], write: @client.timeouts[:write]) if timeout_keys_defined client end diff --git a/lib/twitter/rest/upload_utils.rb b/lib/twitter/rest/upload_utils.rb index b4976072f..c81b44b82 100644 --- a/lib/twitter/rest/upload_utils.rb +++ b/lib/twitter/rest/upload_utils.rb @@ -18,14 +18,16 @@ def upload(media, media_category_prefix: 'tweet') # @see https://developer.twitter.com/en/docs/media/upload-media/uploading-media/chunked-media-upload def chunk_upload(media, media_type, media_category) - init = Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', - command: 'INIT', - media_type: media_type, - media_category: media_category, - total_bytes: media.size).perform - append_media(media, init[:media_id]) - media.close - finalize_media(init[:media_id]) + Timeout.timeout(timeouts&.fetch(:upload, nil), Twitter::Error::TimeoutError) do + init = Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', + command: 'INIT', + media_type: media_type, + media_category: media_category, + total_bytes: media.size).perform + append_media(media, init[:media_id]) + media.close + finalize_media(init[:media_id]) + end end # @see https://developer.twitter.com/en/docs/media/upload-media/api-reference/post-media-upload-append @@ -47,7 +49,7 @@ def append_media(media, media_id) def finalize_media(media_id) response = Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', command: 'FINALIZE', media_id: media_id).perform - 3.times do + loop do return response if !response[:processing_info] || %w[failed succeeded].include?(response[:processing_info][:state]) sleep(response[:processing_info][:check_after_secs]) response = Twitter::REST::Request.new(self, :get, 'https://upload.twitter.com/1.1/media/upload.json', diff --git a/spec/twitter/rest/direct_messages_spec.rb b/spec/twitter/rest/direct_messages_spec.rb index 0fc968f3a..07ef2f4e0 100644 --- a/spec/twitter/rest/direct_messages_spec.rb +++ b/spec/twitter/rest/direct_messages_spec.rb @@ -262,19 +262,16 @@ expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made end end - it 'does not call status more than 3 times' do - init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} - append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} - finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} - pending_status_request = {body: fixture('chunk_upload_status_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} - stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) - stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(pending_status_request) - expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) - expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).twice.with(10).and_return(10) - @client.create_direct_message_event_with_media(58_983, 'You always have options', fixture('1080p.mp4')) - expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) - expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made.times(3) - expect(a_post('/1.1/direct_messages/events/new.json')).to have_been_made + context 'when Twitter::Client#timeouts[:upload] is set' do + before(:each) { @client.timeouts = {upload: 0.1} } + it 'raises an error when the finalize step is too slow' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + expect { @client.create_direct_message_event_with_media(58_983, 'You always have options', fixture('1080p.mp4')) }.to raise_error(Twitter::Error::TimeoutError) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + end end end end diff --git a/spec/twitter/rest/tweets_spec.rb b/spec/twitter/rest/tweets_spec.rb index dffb476cc..71364ad1e 100644 --- a/spec/twitter/rest/tweets_spec.rb +++ b/spec/twitter/rest/tweets_spec.rb @@ -502,19 +502,16 @@ expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made end end - it 'does not call status more than 3 times' do - init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} - append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} - finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} - pending_status_request = {body: fixture('chunk_upload_status_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} - stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) - stub_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753').to_return(pending_status_request) - expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).with(5).and_return(5) - expect_any_instance_of(Twitter::REST::DirectMessages).to receive(:sleep).twice.with(10).and_return(10) - @client.update_with_media('You always have options', fixture('1080p.mp4')) - expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) - expect(a_request(:get, 'https://upload.twitter.com/1.1/media/upload.json?command=STATUS&media_id=710511363345354753')).to have_been_made.times(3) - expect(a_post('/1.1/statuses/update.json')).to have_been_made + context 'when Twitter::Client#timeouts[:upload] is set' do + before(:each) { @client.timeouts = {upload: 0.1} } + it 'raises an error when the finalize step is too slow' do + init_request = {body: fixture('chunk_upload_init.json'), headers: {content_type: 'application/json; charset=utf-8'}} + append_request = {body: '', headers: {content_type: 'text/html;charset=utf-8'}} + finalize_request = {body: fixture('chunk_upload_finalize_pending.json'), headers: {content_type: 'application/json; charset=utf-8'}} + stub_request(:post, 'https://upload.twitter.com/1.1/media/upload.json').to_return(init_request, append_request, finalize_request) + expect { @client.update_with_media('You always have options', fixture('1080p.mp4')) }.to raise_error(Twitter::Error::TimeoutError) + expect(a_request(:post, 'https://upload.twitter.com/1.1/media/upload.json')).to have_been_made.times(3) + end end end end From f4051382bf02aefa61b93cfdb1bfce28e5f61ef3 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 23 Aug 2018 11:02:11 +0200 Subject: [PATCH 04/29] Add documentation. --- lib/twitter/rest/request.rb | 3 +++ lib/twitter/rest/upload_utils.rb | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 84b8eeb5c..7d58c6053 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -117,6 +117,9 @@ def symbolize_keys!(object) object end + # Returns boolean indicating if all the keys required by HTTP::Client are present in Twitter::Client#timeouts + # + # @return [Boolean] def timeout_keys_defined (%i[write connect read] - (@client.timeouts&.keys || [])).empty? end diff --git a/lib/twitter/rest/upload_utils.rb b/lib/twitter/rest/upload_utils.rb index c81b44b82..52f2c336d 100644 --- a/lib/twitter/rest/upload_utils.rb +++ b/lib/twitter/rest/upload_utils.rb @@ -16,6 +16,11 @@ def upload(media, media_category_prefix: 'tweet') Twitter::REST::Request.new(self, :multipart_post, 'https://upload.twitter.com/1.1/media/upload.json', key: :media, file: media).perform end + # @raise [Twitter::Error::TimeoutError] Error raised when the upload is longer than the value specified in Twitter::Client#timeouts[:upload]. + # @raise [Twitter::Error::MediaError] Error raised when Twitter return an error about a media which is not mapped by the gem. + # @raise [Twitter::Error::MediaInternalError] Error raised when Twitter returns an InternalError error. + # @raise [Twitter::Error::InvalidMedia] Error raised when Twitter returns an InvalidMedia error. + # @raise [Twitter::Error::UnsupportedMedia] Error raised when Twitter returns an UnsupportedMedia error. # @see https://developer.twitter.com/en/docs/media/upload-media/uploading-media/chunked-media-upload def chunk_upload(media, media_type, media_category) Timeout.timeout(timeouts&.fetch(:upload, nil), Twitter::Error::TimeoutError) do From adb918178295de0eaf022241f71d0544123b83ab Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Sat, 18 Jan 2020 03:21:37 +0900 Subject: [PATCH 05/29] Clarify the method definition that receiving a block Proc.new and proc with no block in a method called with a block is warned from ruby 2.7. - https://github.com/ruby/ruby/commit/9f1fb0a17 - https://bugs.ruby-lang.org/issues/15539 --- lib/twitter/enumerable.rb | 5 +++-- lib/twitter/utils.rb | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/twitter/enumerable.rb b/lib/twitter/enumerable.rb index 3e1f153d3..506387632 100644 --- a/lib/twitter/enumerable.rb +++ b/lib/twitter/enumerable.rb @@ -3,15 +3,16 @@ module Enumerable include ::Enumerable # @return [Enumerator] - def each(start = 0) + def each(start = 0, &block) return to_enum(:each, start) unless block_given? + Array(@collection[start..-1]).each do |element| yield(element) end unless finished? start = [@collection.size, start].max fetch_next_page - each(start, &Proc.new) + each(start, &block) end self end diff --git a/lib/twitter/utils.rb b/lib/twitter/utils.rb index 7ab525681..6892a5919 100644 --- a/lib/twitter/utils.rb +++ b/lib/twitter/utils.rb @@ -7,9 +7,9 @@ module Utils # # @param enumerable [Enumerable] # @return [Array, Enumerator] - def flat_pmap(enumerable) + def flat_pmap(enumerable, &block) return to_enum(:flat_pmap, enumerable) unless block_given? - pmap(enumerable, &Proc.new).flatten(1) + pmap(enumerable, &block).flatten(1) end # Returns a new array with the results of running block once for every element in enumerable. From dd427a134c829f6238b053a81e70c81a0f2ea933 Mon Sep 17 00:00:00 2001 From: "Renato \"Lond\" Cerqueira" Date: Tue, 14 Jan 2020 15:52:58 +0100 Subject: [PATCH 06/29] Bump http dependency version --- lib/twitter/rest/request.rb | 2 +- spec/twitter/rest/request_spec.rb | 4 ++-- twitter.gemspec | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 423b1d403..c5b2d1fd1 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -118,7 +118,7 @@ def symbolize_keys!(object) # @return [HTTP::Client, HTTP] def http_client client = @client.proxy ? HTTP.via(*proxy) : HTTP - client = client.timeout(:per_operation, connect: @client.timeouts[:connect], read: @client.timeouts[:read], write: @client.timeouts[:write]) if @client.timeouts + client = client.timeout(connect: @client.timeouts[:connect], read: @client.timeouts[:read], write: @client.timeouts[:write]) if @client.timeouts client end diff --git a/spec/twitter/rest/request_spec.rb b/spec/twitter/rest/request_spec.rb index d13dfec7b..31a0103e9 100644 --- a/spec/twitter/rest/request_spec.rb +++ b/spec/twitter/rest/request_spec.rb @@ -41,7 +41,7 @@ end it 'requests with given timeout settings' do stub_post('/1.1/statuses/update.json').with(body: {status: 'Update'}).to_return(body: fixture('status.json'), headers: {content_type: 'application/json; charset=utf-8'}) - expect_any_instance_of(HTTP::Client).to receive(:timeout).with(:per_operation, connect: 2, read: 2, write: 3).and_call_original + expect_any_instance_of(HTTP::Client).to receive(:timeout).with(connect: 2, read: 2, write: 3).and_call_original @client.update('Update') end end @@ -53,7 +53,7 @@ end it 'requests with given timeout settings' do stub_post('/1.1/statuses/update.json').with(body: {status: 'Update'}).to_return(body: fixture('status.json'), headers: {content_type: 'application/json; charset=utf-8'}) - expect(HTTP).to receive(:timeout).with(:per_operation, connect: 2, read: 2, write: 3).and_call_original + expect(HTTP).to receive(:timeout).with(connect: 2, read: 2, write: 3).and_call_original @client.update('Update') end end diff --git a/twitter.gemspec b/twitter.gemspec index 07362fe16..0a1647776 100644 --- a/twitter.gemspec +++ b/twitter.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'addressable', '~> 2.3' spec.add_dependency 'buftok', '~> 0.2.0' spec.add_dependency 'equalizer', '~> 0.0.11' - spec.add_dependency 'http', '~> 3.0' + spec.add_dependency 'http', '~> 4.0' spec.add_dependency 'http-form_data', '~> 2.0' spec.add_dependency 'http_parser.rb', '~> 0.6.0' spec.add_dependency 'memoizable', '~> 0.4.0' From 29a18644e3c433f53ed76f0867f9b9734f7a7357 Mon Sep 17 00:00:00 2001 From: Erik Berlin Date: Tue, 11 Feb 2020 14:44:48 -0800 Subject: [PATCH 07/29] Add official support for Ruby 2.6 and 2.7 --- .travis.yml | 4 ++-- README.md | 4 ++-- spec/fixtures/{events.json => direct_message_events.json} | 0 spec/helper.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename spec/fixtures/{events.json => direct_message_events.json} (100%) diff --git a/.travis.yml b/.travis.yml index b63f07e6f..2efb38920 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,10 @@ cache: bundler language: ruby rvm: - - 2.3 - 2.4 - 2.5 - - jruby-9.1.9.0 + - 2.6 + - 2.7 - jruby-head - ruby-head diff --git a/README.md b/README.md index 39d6734e8..0d05d94b5 100644 --- a/README.md +++ b/README.md @@ -229,10 +229,10 @@ command: This library aims to support and is [tested against][travis] the following Ruby versions: -* Ruby 2.3 * Ruby 2.4 * Ruby 2.5 -* JRuby 9.1.9.0 +* Ruby 2.6 +* Ruby 2.7 If something doesn't work on one of these versions, it's a bug. diff --git a/spec/fixtures/events.json b/spec/fixtures/direct_message_events.json similarity index 100% rename from spec/fixtures/events.json rename to spec/fixtures/direct_message_events.json diff --git a/spec/helper.rb b/spec/helper.rb index ceed0a078..3473f9b29 100644 --- a/spec/helper.rb +++ b/spec/helper.rb @@ -6,7 +6,7 @@ SimpleCov.start do add_filter '/spec/' add_filter '/vendor/' - minimum_coverage(99.28) + minimum_coverage(99.85) end require 'twitter' From a6c4b67cb427f3d1738d81200f20f8e0b2b8b46f Mon Sep 17 00:00:00 2001 From: Erik Berlin Date: Tue, 11 Feb 2020 17:16:02 -0800 Subject: [PATCH 08/29] Fix tests --- .jrubyrc | 1 + .rubocop.yml | 8 ++++---- Rakefile | 2 +- lib/twitter/creatable.rb | 1 + lib/twitter/cursor.rb | 1 + lib/twitter/null_object.rb | 2 ++ lib/twitter/profile.rb | 4 ++-- lib/twitter/rest/direct_messages.rb | 9 +++++---- lib/twitter/rest/lists.rb | 1 + lib/twitter/rest/request.rb | 1 + lib/twitter/rest/timelines.rb | 1 + lib/twitter/rest/upload_utils.rb | 4 ++-- lib/twitter/rest/utils.rb | 2 +- lib/twitter/streaming/client.rb | 2 +- lib/twitter/streaming/connection.rb | 2 +- lib/twitter/streaming/message_parser.rb | 2 +- lib/twitter/streaming/response.rb | 1 + lib/twitter/utils.rb | 2 ++ spec/twitter/rest/direct_messages_spec.rb | 16 ++++++++-------- twitter.gemspec | 1 - 20 files changed, 37 insertions(+), 26 deletions(-) create mode 100644 .jrubyrc diff --git a/.jrubyrc b/.jrubyrc new file mode 100644 index 000000000..ec033eeb2 --- /dev/null +++ b/.jrubyrc @@ -0,0 +1 @@ +debug.fullTrace=true diff --git a/.rubocop.yml b/.rubocop.yml index fab7493ba..438feb048 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -4,6 +4,10 @@ AllCops: Layout/AccessModifierIndentation: EnforcedStyle: outdent +Layout/LineLength: + AllowURI: true + Enabled: false + Layout/SpaceInsideHashLiteralBraces: EnforcedStyle: no_space @@ -18,10 +22,6 @@ Metrics/BlockLength: Metrics/BlockNesting: Max: 2 -Metrics/LineLength: - AllowURI: true - Enabled: false - Metrics/MethodLength: CountComments: false Max: 10 diff --git a/Rakefile b/Rakefile index f94f19625..f2cbec942 100644 --- a/Rakefile +++ b/Rakefile @@ -25,7 +25,7 @@ end require 'yardstick/rake/verify' Yardstick::Rake::Verify.new do |verify| - verify.threshold = 58.7 + verify.threshold = 58.2 end task default: %i[spec rubocop verify_measurements] diff --git a/lib/twitter/creatable.rb b/lib/twitter/creatable.rb index 0a8aa221d..6d6cd4500 100644 --- a/lib/twitter/creatable.rb +++ b/lib/twitter/creatable.rb @@ -11,6 +11,7 @@ module Creatable def created_at time = @attrs[:created_at] return if time.nil? + time = Time.parse(time) unless time.is_a?(Time) time.utc end diff --git a/lib/twitter/cursor.rb b/lib/twitter/cursor.rb index c1e32b425..cf789e7fe 100644 --- a/lib/twitter/cursor.rb +++ b/lib/twitter/cursor.rb @@ -42,6 +42,7 @@ def next_cursor def last? return false if next_cursor.is_a?(String) return true if next_cursor.nil? + next_cursor.zero? end diff --git a/lib/twitter/null_object.rb b/lib/twitter/null_object.rb index baea95d33..fd391cffa 100644 --- a/lib/twitter/null_object.rb +++ b/lib/twitter/null_object.rb @@ -19,11 +19,13 @@ def respond_to?(*) def instance_of?(klass) raise(TypeError, 'class or module required') unless klass.is_a?(Class) + self.class == klass end def kind_of?(mod) raise(TypeError, 'class or module required') unless mod.is_a?(Module) + self.class.ancestors.include?(mod) end diff --git a/lib/twitter/profile.rb b/lib/twitter/profile.rb index 8646aff88..037d8dca0 100644 --- a/lib/twitter/profile.rb +++ b/lib/twitter/profile.rb @@ -4,8 +4,8 @@ module Twitter module Profile - PROFILE_IMAGE_SUFFIX_REGEX = /_normal(\.gif|\.jpe?g|\.png)$/i - PREDICATE_URI_METHOD_REGEX = /_uri\?$/ + PROFILE_IMAGE_SUFFIX_REGEX = /_normal(\.gif|\.jpe?g|\.png)$/i.freeze + PREDICATE_URI_METHOD_REGEX = /_uri\?$/.freeze include Memoizable class << self diff --git a/lib/twitter/rest/direct_messages.rb b/lib/twitter/rest/direct_messages.rb index 6561e2992..1ca620142 100644 --- a/lib/twitter/rest/direct_messages.rb +++ b/lib/twitter/rest/direct_messages.rb @@ -152,7 +152,10 @@ def direct_messages(*args) # @overload destroy_direct_message(*ids) # @param ids [Enumerable] A collection of direct message IDs. def destroy_direct_message(*ids) - perform_requests(:delete, '/1.1/direct_messages/events/destroy.json', ids) + pmap(ids) do |id| + perform_requests(:delete, '/1.1/direct_messages/events/destroy.json', id: id) + end + nil end # Sends a new direct message to the specified user from the authenticating user @@ -187,9 +190,7 @@ def create_direct_message(user_id, text, options = {}) def create_direct_message_event(*args) arguments = Twitter::Arguments.new(args) options = arguments.options.dup - if arguments.length >= 2 - options[:event] = {type: 'message_create', message_create: {target: {recipient_id: extract_id(arguments[0])}, message_data: {text: arguments[1]}}} - end + options[:event] = {type: 'message_create', message_create: {target: {recipient_id: extract_id(arguments[0])}, message_data: {text: arguments[1]}}} if arguments.length >= 2 response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/events/new.json', options).perform Twitter::DirectMessageEvent.new(response[:event]) end diff --git a/lib/twitter/rest/lists.rb b/lib/twitter/rest/lists.rb index 48f17bc6a..ffb547cd0 100644 --- a/lib/twitter/rest/lists.rb +++ b/lib/twitter/rest/lists.rb @@ -484,6 +484,7 @@ def merge_list_and_owner!(hash, list) # @return [Hash] def merge_owner!(hash, user) return hash if hash[:owner_id] || hash[:owner_screen_name] + if user merge_user!(hash, user, 'owner') hash[:owner_id] = hash.delete(:owner_user_id) unless hash[:owner_user_id].nil? diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index c5b2d1fd1..37e04d917 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -79,6 +79,7 @@ def content_type(basename) def fail_or_return_response_body(code, body, headers) error = error(code, body, headers) raise(error) if error + @rate_limit = Twitter::RateLimit.new(headers) body end diff --git a/lib/twitter/rest/timelines.rb b/lib/twitter/rest/timelines.rb index a143bf2d7..248839969 100644 --- a/lib/twitter/rest/timelines.rb +++ b/lib/twitter/rest/timelines.rb @@ -188,6 +188,7 @@ def collect_with_count(count) def collect_with_max_id(collection = [], max_id = nil, &block) tweets = yield(max_id) return collection if tweets.nil? + collection += tweets tweets.empty? ? collection.flatten : collect_with_max_id(collection, tweets.last.id - 1, &block) end diff --git a/lib/twitter/rest/upload_utils.rb b/lib/twitter/rest/upload_utils.rb index d13839744..5f6d833b8 100644 --- a/lib/twitter/rest/upload_utils.rb +++ b/lib/twitter/rest/upload_utils.rb @@ -16,7 +16,7 @@ def upload(media, media_category_prefix: 'tweet') Twitter::REST::Request.new(self, :multipart_post, 'https://upload.twitter.com/1.1/media/upload.json', key: :media, file: media).perform end - # rubocop:disable MethodLength + # rubocop:disable Metrics/MethodLength def chunk_upload(media, media_type, media_category) init = Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', command: 'INIT', @@ -40,7 +40,7 @@ def chunk_upload(media, media_type, media_category) Twitter::REST::Request.new(self, :post, 'https://upload.twitter.com/1.1/media/upload.json', command: 'FINALIZE', media_id: init[:media_id]).perform end - # rubocop:enable MethodLength + # rubocop:enable Metrics/MethodLength end end end diff --git a/lib/twitter/rest/utils.rb b/lib/twitter/rest/utils.rb index e26d4e19c..c962a0749 100644 --- a/lib/twitter/rest/utils.rb +++ b/lib/twitter/rest/utils.rb @@ -246,7 +246,7 @@ def merge_users!(hash, users) hash[:screen_name] = screen_names.join(',') unless screen_names.empty? end - def collect_users(users) # rubocop:disable MethodLength + def collect_users(users) # rubocop:disable Metrics/MethodLength user_ids = [] screen_names = [] users.each do |user| diff --git a/lib/twitter/streaming/client.rb b/lib/twitter/streaming/client.rb index 569221f2f..1a05b4020 100644 --- a/lib/twitter/streaming/client.rb +++ b/lib/twitter/streaming/client.rb @@ -116,7 +116,7 @@ def request(method, uri, params) headers = Twitter::Headers.new(self, method, uri, params).request_headers request = HTTP::Request.new(verb: method, uri: uri + '?' + to_url_params(params), headers: headers, proxy: proxy) response = Streaming::Response.new do |data| - if item = Streaming::MessageParser.parse(data) # rubocop:disable AssignmentInCondition + if item = Streaming::MessageParser.parse(data) # rubocop:disable Lint/AssignmentInCondition yield(item) end end diff --git a/lib/twitter/streaming/connection.rb b/lib/twitter/streaming/connection.rb index 4eb113136..50f80382c 100644 --- a/lib/twitter/streaming/connection.rb +++ b/lib/twitter/streaming/connection.rb @@ -14,7 +14,7 @@ def initialize(options = {}) @write_pipe = nil end - def stream(request, response) # rubocop:disable MethodLength + def stream(request, response) # rubocop:disable Metrics/MethodLength client = connect(request) request.stream(client) read_pipe, @write_pipe = IO.pipe diff --git a/lib/twitter/streaming/message_parser.rb b/lib/twitter/streaming/message_parser.rb index f2f2902f2..dcff61929 100644 --- a/lib/twitter/streaming/message_parser.rb +++ b/lib/twitter/streaming/message_parser.rb @@ -8,7 +8,7 @@ module Twitter module Streaming class MessageParser - def self.parse(data) # rubocop:disable AbcSize, CyclomaticComplexity, MethodLength, PerceivedComplexity + def self.parse(data) # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity if data[:id] Tweet.new(data) elsif data[:event] diff --git a/lib/twitter/streaming/response.rb b/lib/twitter/streaming/response.rb index c301d8477..31b98fb0c 100644 --- a/lib/twitter/streaming/response.rb +++ b/lib/twitter/streaming/response.rb @@ -27,6 +27,7 @@ def on_headers_complete(_headers) def on_body(data) @tokenizer.extract(data).each do |line| next if line.empty? + @block.call(JSON.parse(line, symbolize_names: true)) end end diff --git a/lib/twitter/utils.rb b/lib/twitter/utils.rb index 6892a5919..04230030f 100644 --- a/lib/twitter/utils.rb +++ b/lib/twitter/utils.rb @@ -9,6 +9,7 @@ module Utils # @return [Array, Enumerator] def flat_pmap(enumerable, &block) return to_enum(:flat_pmap, enumerable) unless block_given? + pmap(enumerable, &block).flatten(1) end @@ -19,6 +20,7 @@ def flat_pmap(enumerable, &block) # @return [Array, Enumerator] def pmap(enumerable) return to_enum(:pmap, enumerable) unless block_given? + if enumerable.count == 1 enumerable.collect { |object| yield(object) } else diff --git a/spec/twitter/rest/direct_messages_spec.rb b/spec/twitter/rest/direct_messages_spec.rb index 5515f3f43..254e8da9c 100644 --- a/spec/twitter/rest/direct_messages_spec.rb +++ b/spec/twitter/rest/direct_messages_spec.rb @@ -8,11 +8,11 @@ describe '#direct_messages_received' do before do - stub_get('/1.1/direct_messages/events/list.json?count=50').to_return(body: fixture('events.json'), headers: {content_type: 'application/json; charset=utf-8'}) + stub_get('/1.1/direct_messages/events/list.json').with(query: {count: 50}).to_return(body: fixture('direct_message_events.json'), headers: {content_type: 'application/json; charset=utf-8'}) end it 'requests the correct resource' do @client.direct_messages_received - expect(a_get('/1.1/direct_messages/events/list.json?count=50')).to have_been_made + expect(a_get('/1.1/direct_messages/events/list.json').with(query: {count: 50})).to have_been_made end it 'returns the 20 most recent direct messages sent to the authenticating user' do direct_messages = @client.direct_messages_received @@ -24,12 +24,12 @@ describe '#direct_messages_events' do before do - stub_get('/1.1/direct_messages/events/list.json?count=50').to_return(body: fixture('events.json'), headers: {content_type: 'application/json; charset=utf-8'}) + stub_get('/1.1/direct_messages/events/list.json').with(query: {count: 50}).to_return(body: fixture('direct_message_events.json'), headers: {content_type: 'application/json; charset=utf-8'}) end it 'requests the correct resource' do @client.direct_messages_events - expect(a_get('/1.1/direct_messages/events/list.json?count=50')).to have_been_made + expect(a_get('/1.1/direct_messages/events/list.json').with(query: {count: 50})).to have_been_made end it 'returns messages' do @@ -48,11 +48,11 @@ end describe '#direct_messages_sent' do before do - stub_get('/1.1/direct_messages/events/list.json?count=50').to_return(body: fixture('events.json'), headers: {content_type: 'application/json; charset=utf-8'}) + stub_get('/1.1/direct_messages/events/list.json').with(query: {count: 50}).to_return(body: fixture('direct_message_events.json'), headers: {content_type: 'application/json; charset=utf-8'}) end it 'requests the correct resource' do @client.direct_messages_sent - expect(a_get('/1.1/direct_messages/events/list.json?count=50')).to have_been_made + expect(a_get('/1.1/direct_messages/events/list.json').with(query: {count: 50})).to have_been_made end it 'returns the 20 most recent direct messages sent by the authenticating user' do direct_messages = @client.direct_messages_sent @@ -95,11 +95,11 @@ end context 'without ids passed' do before do - stub_get('/1.1/direct_messages/events/list.json?count=50').to_return(body: fixture('events.json'), headers: {content_type: 'application/json; charset=utf-8'}) + stub_get('/1.1/direct_messages/events/list.json').with(query: {count: 50}).to_return(body: fixture('direct_message_events.json'), headers: {content_type: 'application/json; charset=utf-8'}) end it 'requests the correct resource' do @client.direct_messages - expect(a_get('/1.1/direct_messages/events/list.json?count=50')).to have_been_made + expect(a_get('/1.1/direct_messages/events/list.json').with(query: {count: 50})).to have_been_made end it 'returns the 20 most recent direct messages sent to the authenticating user' do direct_messages = @client.direct_messages diff --git a/twitter.gemspec b/twitter.gemspec index 0a1647776..8a0596228 100644 --- a/twitter.gemspec +++ b/twitter.gemspec @@ -13,7 +13,6 @@ Gem::Specification.new do |spec| spec.add_dependency 'multipart-post', '~> 2.0' spec.add_dependency 'naught', '~> 1.0' spec.add_dependency 'simple_oauth', '~> 0.3.0' - spec.add_development_dependency 'bundler', '~> 1.0' spec.authors = ['Erik Michaels-Ober', 'John Nunemaker', 'Wynn Netherland', 'Steve Richert', 'Steve Agalloco'] spec.description = 'A Ruby interface to the Twitter API.' spec.email = %w[sferik@gmail.com] From 9732431a094a04508763cd400c44b275d49d8107 Mon Sep 17 00:00:00 2001 From: Erik Berlin Date: Tue, 11 Feb 2020 17:36:14 -0800 Subject: [PATCH 09/29] Update coveralls and simplecov test dependencies --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index cb1f9afd5..35d0b12d7 100644 --- a/Gemfile +++ b/Gemfile @@ -9,10 +9,10 @@ group :development do end group :test do - gem 'coveralls' + gem 'coveralls', '>= 0.8.23' gem 'rspec', '>= 2.14' gem 'rubocop', '>= 0.46' - gem 'simplecov', '>= 0.9' + gem 'simplecov', '>= 0.16' gem 'timecop' gem 'webmock' gem 'yardstick' From de75b9591a7e7f1c9839194734123800b5989d4f Mon Sep 17 00:00:00 2001 From: Allan Klaus Date: Thu, 4 Oct 2018 23:43:28 -0300 Subject: [PATCH 10/29] Add info to search doc - Motivation: There is an important parameter that does exist on doc, it parameter was added on twitter update [Reference](https://developer.twitter.com/en/docs/tweets/tweet-updates) --- lib/twitter/rest/search.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/twitter/rest/search.rb b/lib/twitter/rest/search.rb index 32bd4a8a8..ffae6db56 100644 --- a/lib/twitter/rest/search.rb +++ b/lib/twitter/rest/search.rb @@ -25,6 +25,7 @@ module Search # @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available. # @option options [Integer] :max_id Returns results with an ID less than (that is, older than) or equal to the specified ID. # @option options [Boolean] :include_entities The entities node will be disincluded when set to false. + # @option options [String] :tweet_mode The entities node will truncate or not tweet text. Options are "compat" and "extended". The current default is "compat" (truncate). # @return [Twitter::SearchResults] Return tweets that match a specified query with search metadata def search(query, options = {}) options = options.dup From 40c61935c86d440f09c8ce7528fbac43ea18bb66 Mon Sep 17 00:00:00 2001 From: Rob Hesketh Date: Sat, 31 Mar 2018 18:24:09 +0100 Subject: [PATCH 11/29] Replace text attribute with full_text if the extended Tweet has no text set --- lib/twitter/tweet.rb | 9 +++++++++ spec/twitter/tweet_spec.rb | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/lib/twitter/tweet.rb b/lib/twitter/tweet.rb index 7d05c2d99..46af0deac 100644 --- a/lib/twitter/tweet.rb +++ b/lib/twitter/tweet.rb @@ -29,6 +29,15 @@ class Tweet < Twitter::Identity predicate_attr_reader :favorited, :possibly_sensitive, :retweeted, :truncated + # Initializes a new object + # + # @param attrs [Hash] + # @return [Twitter::Tweet] + def initialize(attrs = {}) + attrs[:text] = attrs[:full_text] if attrs[:text].nil? && !attrs[:full_text].nil? + super + end + # @note May be > 280 characters. # @return [String] def full_text diff --git a/spec/twitter/tweet_spec.rb b/spec/twitter/tweet_spec.rb index dfe36327d..83bf6ecef 100644 --- a/spec/twitter/tweet_spec.rb +++ b/spec/twitter/tweet_spec.rb @@ -92,6 +92,11 @@ expect(tweet.full_text).to be_a String expect(tweet.full_text).to eq('BOOSH') end + it 'returns the text of an extended Tweet' do + tweet = Twitter::Tweet.new(id: 28_669_546_014, text: nil, full_text: 'BOOSH') + expect(tweet.full_text).to be_a String + expect(tweet.full_text).to eq('BOOSH') + end it 'returns the text of a Tweet without a user' do tweet = Twitter::Tweet.new(id: 28_669_546_014, text: 'BOOSH', retweeted_status: {id: 28_561_922_517, text: 'BOOSH'}) expect(tweet.full_text).to be_a String From 5da94ca616f00d0286c8dad3da86734453262378 Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sun, 19 Nov 2017 19:56:08 -0800 Subject: [PATCH 12/29] Adds ability to serialize POST body as json --- lib/twitter/rest/request.rb | 10 ++++++++++ spec/twitter/rest/request_spec.rb | 8 ++++++++ 2 files changed, 18 insertions(+) diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 9824e7806..7d0ee6378 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -76,6 +76,16 @@ def content_type(basename) end end + def options_key + if @request_method == :get + :params + elsif @options.delete(:request_body) == :json + :json + else + :form + end + end + def fail_or_return_response_body(code, body, headers) error = error(code, body, headers) raise(error) if error diff --git a/spec/twitter/rest/request_spec.rb b/spec/twitter/rest/request_spec.rb index 31a0103e9..302c7ab38 100644 --- a/spec/twitter/rest/request_spec.rb +++ b/spec/twitter/rest/request_spec.rb @@ -19,6 +19,14 @@ expect(a_post('/1.1/statuses/update.json').with(body: {status: 'Update', media_ids: '470030289822314497'})).to have_been_made end + context 'when request body is json' do + it 'adds content-type header' do + stub_post('/1.1/statuses/update.json').with(body: '{"status":"Update"}').to_return(body: fixture('status.json'), headers: {content_type: 'application/json; charset=utf-8'}) + @client.update('Update', request_body: :json) + expect(a_post('/1.1/statuses/update.json').with(body: '{"status":"Update"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + end + context 'when using a proxy' do before do @client = Twitter::REST::Client.new(consumer_key: 'CK', consumer_secret: 'CS', access_token: 'AT', access_token_secret: 'AS', proxy: {host: '127.0.0.1', port: 3328}) From 6fb928ad494adbf0bc3e41703aab83ca93d254df Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sun, 19 Nov 2017 20:06:22 -0800 Subject: [PATCH 13/29] Adds development environment to configuration objects With the new subscription APIs, including the Premium Search API, developers need to configure a dev environment for the endpoint. The label for this environment becomes part of the URL for the endpoint, like this: `https://api.twitter.com/1.1/tweets/search/30day/my_env_name.json` Adding the dev environment to the config makes it available whenever needed. --- examples/Configuration.md | 16 ++++++++++++++++ lib/twitter/client.rb | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/examples/Configuration.md b/examples/Configuration.md index 6eeddf537..9e9dbfe62 100644 --- a/examples/Configuration.md +++ b/examples/Configuration.md @@ -97,6 +97,22 @@ You can use this client to make any Twitter REST API request. For example: client.update("I'm tweeting with @gem!") ``` +## Premium Search API + +```ruby +client = Twitter::REST::Client.new do |config| + config.consumer_key = "YOUR_CONSUMER_KEY" + config.consumer_secret = "YOUR_CONSUMER_SECRET" + config.dev_environment = "YOUR_DEV_ENVIRONMENT" +end +``` + +You can use this client to make a REST 30-Day Search API request. For example: + +```ruby +client.premium_search("#ruby", { maxResults: 100 }) +``` + ## Streaming Clients Streaming clients are initialized just like single-user authenticated REST diff --git a/lib/twitter/client.rb b/lib/twitter/client.rb index 9203177f9..ac374be33 100644 --- a/lib/twitter/client.rb +++ b/lib/twitter/client.rb @@ -5,7 +5,7 @@ module Twitter class Client include Twitter::Utils - attr_accessor :access_token, :access_token_secret, :consumer_key, :consumer_secret, :proxy, :timeouts + attr_accessor :access_token, :access_token_secret, :consumer_key, :consumer_secret, :proxy, :timeouts, :dev_environment attr_writer :user_agent # Initializes a new Client object From a478b5af0a13e70a20923ae7510603ce08a7de64 Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sun, 19 Nov 2017 20:09:21 -0800 Subject: [PATCH 14/29] Adding support for Twitter's Premium 30-Day Search API --- lib/twitter.rb | 1 + lib/twitter/premium_search_results.rb | 66 +++++++++++++++++++ lib/twitter/rest/api.rb | 2 + lib/twitter/rest/premium_search.rb | 32 +++++++++ spec/fixtures/premium_search.json | 1 + spec/fixtures/premium_search_emoji.json | 1 + spec/fixtures/premium_search_from.json | 1 + spec/fixtures/premium_search_last.json | 1 + spec/fixtures/premium_search_next.json | 1 + .../fixtures/premium_search_point_radius.json | 1 + spec/fixtures/premium_search_to.json | 1 + spec/fixtures/premium_search_url.json | 1 + spec/twitter/premium_search_results_spec.rb | 62 +++++++++++++++++ 13 files changed, 171 insertions(+) create mode 100644 lib/twitter/premium_search_results.rb create mode 100644 lib/twitter/rest/premium_search.rb create mode 100644 spec/fixtures/premium_search.json create mode 100644 spec/fixtures/premium_search_emoji.json create mode 100644 spec/fixtures/premium_search_from.json create mode 100644 spec/fixtures/premium_search_last.json create mode 100644 spec/fixtures/premium_search_next.json create mode 100644 spec/fixtures/premium_search_point_radius.json create mode 100644 spec/fixtures/premium_search_to.json create mode 100644 spec/fixtures/premium_search_url.json create mode 100644 spec/twitter/premium_search_results_spec.rb diff --git a/lib/twitter.rb b/lib/twitter.rb index cc2bb46ff..d3c1f88e5 100644 --- a/lib/twitter.rb +++ b/lib/twitter.rb @@ -20,6 +20,7 @@ require 'twitter/rest/client' require 'twitter/saved_search' require 'twitter/search_results' +require 'twitter/premium_search_results' require 'twitter/settings' require 'twitter/size' require 'twitter/source_user' diff --git a/lib/twitter/premium_search_results.rb b/lib/twitter/premium_search_results.rb new file mode 100644 index 000000000..c3a0738fb --- /dev/null +++ b/lib/twitter/premium_search_results.rb @@ -0,0 +1,66 @@ +require 'cgi' +require 'twitter/enumerable' +require 'twitter/rest/request' +require 'twitter/utils' +require 'uri' + +module Twitter + class PremiumSearchResults + include Twitter::Enumerable + include Twitter::Utils + # @return [Hash] + attr_reader :attrs + alias to_h attrs + alias to_hash to_h + + # Initializes a new SearchResults object + # + # @param request [Twitter::REST::Request] + # @return [Twitter::PremiumSearchResults] + def initialize(request) + @client = request.client + @request_method = request.verb + @path = request.path + @options = request.options + @collection = [] + self.attrs = request.perform + end + + private + + # @return [Boolean] + def last? + !next_page? + end + + # @return [Boolean] + def next_page? + !!@attrs[:next] + end + + # Returns a Hash of query parameters for the next result in the search + # + # @note Returned Hash can be merged into the previous search options list to easily access the next page. + # @return [Hash] The parameters needed to fetch the next page. + def next_page + {next: @attrs[:next]} if next_page? + end + + # @return [Hash] + def fetch_next_page + @options[:request_body] = :json if @request_method == :post + response = Twitter::REST::Request.new(@client, @request_method, @path, @options.merge(next_page)).perform + self.attrs = response + end + + # @param attrs [Hash] + # @return [Hash] + def attrs=(attrs) + @attrs = attrs + @attrs.fetch(:results, []).collect do |tweet| + @collection << Tweet.new(tweet) + end + @attrs + end + end +end diff --git a/lib/twitter/rest/api.rb b/lib/twitter/rest/api.rb index 5cf9b58de..e4dd0e2ea 100644 --- a/lib/twitter/rest/api.rb +++ b/lib/twitter/rest/api.rb @@ -7,6 +7,7 @@ require 'twitter/rest/places_and_geo' require 'twitter/rest/saved_searches' require 'twitter/rest/search' +require 'twitter/rest/premium_search' require 'twitter/rest/spam_reporting' require 'twitter/rest/suggested_users' require 'twitter/rest/timelines' @@ -27,6 +28,7 @@ module API include Twitter::REST::Lists include Twitter::REST::OAuth include Twitter::REST::PlacesAndGeo + include Twitter::REST::PremiumSearch include Twitter::REST::SavedSearches include Twitter::REST::Search include Twitter::REST::SpamReporting diff --git a/lib/twitter/rest/premium_search.rb b/lib/twitter/rest/premium_search.rb new file mode 100644 index 000000000..e80982dd5 --- /dev/null +++ b/lib/twitter/rest/premium_search.rb @@ -0,0 +1,32 @@ +require 'twitter/rest/request' +require 'twitter/premium_search_results' + +module Twitter + module REST + module PremiumSearch + MAX_TWEETS_PER_REQUEST = 100 + + # Returns tweets from the 30-Day API that match a specified query. + # + # @see https://developer.twitter.com/en/docs/tweets/search/overview/premium + # @see https://developer.twitter.com/en/docs/tweets/search/api-reference/premium-search.html#DataEndpoint + # @rate_limited Yes + # @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. + # @param query [String] A search term. + # @param options [Hash] A customizable set of options. + # @option options [String] :tag Tags can be used to segregate rules and their matching data into different logical groups. + # @option options [Integer] :maxResults The maximum number of search results to be returned by a request. A number between 10 and the system limit (currently 500, 100 for Sandbox environments). By default, a request response will return 100 results + # @option options [String] :fromDate The oldest UTC timestamp (from most recent 30 days) from which the Tweets will be provided. Date should be formatted as yyyymmddhhmm. + # @option options [String] :toDate The latest, most recent UTC timestamp to which the activities will be provided. Date should be formatted as yyyymmddhhmm. + # @return [Twitter::PremiumSearchResults] Return tweets that match a specified query with search metadata + def premium_search(query, options = {}) + options = options.dup + options[:maxResults] ||= MAX_TWEETS_PER_REQUEST + options[:request_method] ||= :post + options[:request_body] = :json if options[:request_method] == :post + request = Twitter::REST::Request.new(self, options.delete(:request_method), "/1.1/tweets/search/30day/#{dev_environment}.json", options.merge(query: query)) + Twitter::PremiumSearchResults.new(request) + end + end + end +end diff --git a/spec/fixtures/premium_search.json b/spec/fixtures/premium_search.json new file mode 100644 index 000000000..077f644b3 --- /dev/null +++ b/spec/fixtures/premium_search.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Sun Oct 29 21:21:37 +0000 2017","id":924748080133627904,"id_str":"924748080133627904","text":"@Simondoomband #freebandnames #freejamespattersontitles","display_text_range":[15,55],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":922560845531377664,"in_reply_to_status_id_str":"922560845531377664","in_reply_to_user_id":2548533541,"in_reply_to_user_id_str":"2548533541","in_reply_to_screen_name":"Simondoomband","user":{"id":177966443,"id_str":"177966443","name":"Christian Lewis","screen_name":"CWCLewis","location":"Brooklyn, NY","url":"http:\/\/thebrotherpod.com","description":"co-host of Brother Brother Brother @thebrotherpod & Southeast Asia political economy analyst","translator_type":"none","protected":false,"verified":false,"followers_count":1412,"friends_count":1071,"listed_count":69,"favourites_count":735,"statuses_count":4049,"created_at":"Fri Aug 13 14:36:46 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/809132739001810946\/2ieV1Vt0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809132739001810946\/2ieV1Vt0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177966443\/1475473099","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"011add077f4d2da3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/011add077f4d2da3.json","place_type":"city","name":"Brooklyn","full_name":"Brooklyn, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.041878,40.570842],[-74.041878,40.739434],[-73.855673,40.739434],[-73.855673,40.570842]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[15,29]},{"text":"freejamespattersontitles","indices":[30,55]}],"urls":[],"user_mentions":[{"screen_name":"Simondoomband","name":"Simon Doom","id":2548533541,"id_str":"2548533541","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710200000","toDate":"201711190152"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_emoji.json b/spec/fixtures/premium_search_emoji.json new file mode 100644 index 000000000..83a408844 --- /dev/null +++ b/spec/fixtures/premium_search_emoji.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Sun Nov 19 23:15:07 +0000 2017","id":932386786193547264,"id_str":"932386786193547264","text":"RT @KITKATJapan: \u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"http:\/\/www.justsystems.com\/jp\/products\/tweetatok\/\" rel=\"nofollow\"\u003eTweet ATOK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141878728,"id_str":"141878728","name":"\u9b5a\u96ea\u9b3c\u5b50","screen_name":"o_kinon","location":" \u65e5\u672c\u306e\u9685\u3063\u3053","url":null,"description":"\u304f\u305a\u308c\u3002\u9762\u8b58\u3042\u308b\u30ab\u30e2\u306a\u65b9\u306f\u9023\u7d61\u304f\u30fc\u3060\u3055\u3044\u3002\u9762\u8b58\u306a\u3044\u65b9\u3082\u305a\u305a\u3044\u3068\u3002 \u30d8\u30c3\u30c0\u30fc\u753b\u50cf\u306f\u30aa\u30fc\u30c8\u30de\uff08 @557188AT ) \u3055\u3093\u4f5c\u3067\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":613,"friends_count":1342,"listed_count":17,"favourites_count":802076,"statuses_count":81697,"created_at":"Sun May 09 08:42:30 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619828847840616448\/rrPiJFll_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619828847840616448\/rrPiJFll_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141878728\/1465997953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:00 +0000 2017","id":932382983981592581,"id_str":"932382983981592581","text":"\u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":28,"favorite_count":43,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[54,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[71,76]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:05 +0000 2017","id":932386779738513409,"id_str":"932386779738513409","text":"RT @pvckingpizza: Sekarang dah ada PSD tau! PizzaScarf Delivery untuk para wanita diluar sana. RT bagi semua tahu \ud83d\ude0d\ud83c\udf55 https:\/\/t.co\/GwPuKOwzqD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826977896,"id_str":"826977896","name":"Dandelion","screen_name":"aishahhlee","location":"In your heart","url":null,"description":"unpredictable \ud83d\udc83\ud83c\udffb","translator_type":"none","protected":false,"verified":false,"followers_count":1087,"friends_count":708,"listed_count":14,"favourites_count":2357,"statuses_count":54636,"created_at":"Sun Sep 16 11:52:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486367027200684032\/-dTDBbZe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486367027200684032\/-dTDBbZe.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903960877677797376\/Crl4OkCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903960877677797376\/Crl4OkCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826977896\/1476608525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 14:39:05 +0000 2017","id":932256924380282880,"id_str":"932256924380282880","text":"Sekarang dah ada PSD tau! PizzaScarf Delivery untuk para wanita diluar sana. RT bagi semua tahu \ud83d\ude0d\ud83c\udf55 https:\/\/t.co\/GwPuKOwzqD","display_text_range":[0,98],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848587888,"id_str":"2848587888","name":"your pizza boy","screen_name":"pvckingpizza","location":"Johore, Malaysia","url":"http:\/\/Instagram.com\/pucking.pizza","description":"First of all, perempuan tinggi memang bae af.","translator_type":"regular","protected":false,"verified":false,"followers_count":29821,"friends_count":2481,"listed_count":98,"favourites_count":5073,"statuses_count":41245,"created_at":"Thu Oct 09 09:50:42 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921021302659473409\/5-kZybXm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921021302659473409\/5-kZybXm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848587888\/1508428760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":586,"favorite_count":447,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":932256511601938432,"id_str":"932256511601938432","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":270,"resize":"fit"},"large":{"w":360,"h":270,"resize":"fit"}}},{"id":932256511597748224,"id_str":"932256511597748224","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":360,"resize":"fit"},"medium":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}}},{"id":932256511614521345,"id_str":"932256511614521345","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":600,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":751,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pvckingpizza","name":"your pizza boy","id":2848587888,"id_str":"2848587888","indices":[3,16]}],"symbols":[],"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"}]},"extended_entities":{"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511601938432,"id_str":"932256511601938432","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":270,"resize":"fit"},"large":{"w":360,"h":270,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511597748224,"id_str":"932256511597748224","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":360,"resize":"fit"},"medium":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511614521345,"id_str":"932256511614521345","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":600,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":751,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386775397318659,"id_str":"932386775397318659","text":"@suntory #\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\n\u3092\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u3067\u3059\u306d\uff01\n\ud83c\udf55\ud83c\udf7b\u2728","display_text_range":[9,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932382987873865729,"in_reply_to_status_id_str":"932382987873865729","in_reply_to_user_id":133684052,"in_reply_to_user_id_str":"133684052","in_reply_to_screen_name":"suntory","user":{"id":3513803360,"id_str":"3513803360","name":"\u306b\u3053\u307d\u3093(\u4e0d\u5b9a\u671f\u6d3b\u52d5\u4e2d)","screen_name":"nikopon1115","location":"\u4eac\u90fd","url":null,"description":"2017\u5e74\u3082\u6b4c\u306b\u5143\u6c17\u3092\u8cb0\u3063\u3066\u3001\u7b11\u9854\u591a\u304d\u5e74\u306b\uff01\u6c37\u5ddd\u304d\u3088\u3057\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":117,"listed_count":3,"favourites_count":50277,"statuses_count":33389,"created_at":"Thu Sep 10 09:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513803360\/1444717759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[9,16]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386773459767296,"id_str":"932386773459767296","text":"\ud83c\udf55 x43 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386772763467777,"id_str":"932386772763467777","text":"Vou comer uma pizza agr nql pique \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818171243262332929,"id_str":"818171243262332929","name":"elice de nova","screen_name":"LcdeNova22","location":"COMPLEXO DE NOVA CIDADE","url":"https:\/\/soundcloud.com\/djlcdenovacidade","description":"A despedida foi repentina e sem volta, hoje a senhora esta na companhia de Deus e vive em nossas lembran\u00e7as !!!\nSaudades eterna v\u00f3 \ud83d\ude2a\ud83d\udc94\n\n09\/05\ud83d\udc91\n04\/11\ud83d\udc8f\ud83c\udfe0","translator_type":"none","protected":false,"verified":false,"followers_count":600,"friends_count":1845,"listed_count":0,"favourites_count":4611,"statuses_count":7609,"created_at":"Sun Jan 08 19:03:20 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930880778069782528\/sXXyujOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930880778069782528\/sXXyujOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818171243262332929\/1506802469","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:02 +0000 2017","id":932386766614536192,"id_str":"932386766614536192","text":"RT @BPPope: @bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quacks Like A Duc\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818605031591026689,"id_str":"818605031591026689","name":"Deb Moses","screen_name":"indiblue2","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1007,"friends_count":1092,"listed_count":2,"favourites_count":31576,"statuses_count":22947,"created_at":"Mon Jan 09 23:47:03 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:45:17 +0000 2017","id":932333982041169926,"id_str":"932333982041169926","text":"@bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quack\u2026 https:\/\/t.co\/Kh3GwnokUH","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4175166177,"in_reply_to_user_id_str":"4175166177","in_reply_to_screen_name":"bocavista2016","user":{"id":563997163,"id_str":"563997163","name":"BPPope.com","screen_name":"BPPope","location":null,"url":"http:\/\/www.BPPope.com","description":"TRUMP2020","translator_type":"none","protected":false,"verified":false,"followers_count":7594,"friends_count":2678,"listed_count":354,"favourites_count":259927,"statuses_count":270304,"created_at":"Thu Apr 26 19:57:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/689203975380320257\/KrzDdTei_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/689203975380320257\/KrzDdTei_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":931015440201068545,"quoted_status_id_str":"931015440201068545","quoted_status":{"created_at":"Thu Nov 16 04:25:53 +0000 2017","id":931015440201068545,"id_str":"931015440201068545","text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAn\u2026 https:\/\/t.co\/XaWmEF9ME7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4175166177,"id_str":"4175166177","name":"Boca Vista","screen_name":"bocavista2016","location":"Raleigh, NC","url":null,"description":"Trump or NONE!","translator_type":"none","protected":false,"verified":false,"followers_count":30744,"friends_count":28,"listed_count":373,"favourites_count":36719,"statuses_count":38420,"created_at":"Fri Nov 13 00:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4175166177\/1455066437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAnd what he does to little girls is no laughing matter\ud83d\ude20\n\nhttps:\/\/t.co\/nxuW0hPQlg\n@realDonaldTrump #MAGA #Hannity #IngrahamAngle #QAnon\n#FollowTheWhiteRabbit #TheStorm","display_text_range":[0,279],"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]},{"text":"MAGA","indices":[211,216]},{"text":"Hannity","indices":[217,225]},{"text":"IngrahamAngle","indices":[226,240]},{"text":"QAnon","indices":[241,247]},{"text":"FollowTheWhiteRabbit","indices":[248,269]},{"text":"TheStorm","indices":[270,279]}],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[194,210]}],"symbols":[],"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]},"extended_entities":{"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]}},"quote_count":0,"reply_count":499,"retweet_count":3963,"favorite_count":3987,"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]}],"urls":[{"url":"https:\/\/t.co\/XaWmEF9ME7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931015440201068545","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"extended_tweet":{"full_text":"@bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quacks Like A Duck\ud83c\udf55\ud83d\udd3aIt\u2019s A Duck\ud83d\udd3aOr Rather A Pedofile\u274c\u274cSTOP The Lies Expose The Villains\u274c\u274cJustice\ud83d\ude82\u203c\ufe0f\ud83d\ude0e https:\/\/t.co\/YMGtpNqBpF","display_text_range":[0,211],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YMGtpNqBpF","expanded_url":"https:\/\/twitter.com\/bocavista2016\/status\/931015440201068545","display_url":"twitter.com\/bocavista2016\/\u2026","indices":[212,235]}],"user_mentions":[{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[0,14]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[15,31]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":35,"favorite_count":39,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Kh3GwnokUH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932333982041169926","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[0,14]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[15,31]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"quoted_status_id":931015440201068545,"quoted_status_id_str":"931015440201068545","quoted_status":{"created_at":"Thu Nov 16 04:25:53 +0000 2017","id":931015440201068545,"id_str":"931015440201068545","text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAn\u2026 https:\/\/t.co\/XaWmEF9ME7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4175166177,"id_str":"4175166177","name":"Boca Vista","screen_name":"bocavista2016","location":"Raleigh, NC","url":null,"description":"Trump or NONE!","translator_type":"none","protected":false,"verified":false,"followers_count":30744,"friends_count":28,"listed_count":373,"favourites_count":36719,"statuses_count":38420,"created_at":"Fri Nov 13 00:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4175166177\/1455066437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAnd what he does to little girls is no laughing matter\ud83d\ude20\n\nhttps:\/\/t.co\/nxuW0hPQlg\n@realDonaldTrump #MAGA #Hannity #IngrahamAngle #QAnon\n#FollowTheWhiteRabbit #TheStorm","display_text_range":[0,279],"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]},{"text":"MAGA","indices":[211,216]},{"text":"Hannity","indices":[217,225]},{"text":"IngrahamAngle","indices":[226,240]},{"text":"QAnon","indices":[241,247]},{"text":"FollowTheWhiteRabbit","indices":[248,269]},{"text":"TheStorm","indices":[270,279]}],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[194,210]}],"symbols":[],"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]},"extended_entities":{"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]}},"quote_count":0,"reply_count":499,"retweet_count":3963,"favorite_count":3987,"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]}],"urls":[{"url":"https:\/\/t.co\/XaWmEF9ME7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931015440201068545","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BPPope","name":"BPPope.com","id":563997163,"id_str":"563997163","indices":[3,10]},{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[12,26]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:00 +0000 2017","id":932386759282790400,"id_str":"932386759282790400","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4555964174,"id_str":"4555964174","name":"\u304e\u308b\u3066\u3044\u3059","screen_name":"ultrafightnexus","location":null,"url":null,"description":"\u30cd\u30af\u30b5\u30b9\u3068\u30a8\u30c3\u30af\u30b9\u304c\u597d\u304d\u306a\u30a6\u30eb\u30c8\u30e9\u30de\u30f3\u30d5\u30e5\u30fc\u30b8\u30e7\u30f3\u30d5\u30a1\u30a4\u30c8\u6c11\u3002\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u3068\u304b\u30a2\u30cb\u30e1\u3082\u898b\u3066\u307e\u3059\u3002\u6700\u8fd1\u30ac\u30f3\u30d7\u30e9\u71b1\u304c\u518d\u71c3\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":267,"friends_count":389,"listed_count":0,"favourites_count":10172,"statuses_count":4588,"created_at":"Mon Dec 14 11:18:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907972598822199296\/stf4J1dJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907972598822199296\/stf4J1dJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4555964174\/1488404033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:59 +0000 2017","id":932386753226215424,"id_str":"932386753226215424","text":"RT @fuwa0409p: \u30d4\u30b6\u4f5c\u308a\u306b\u6311\u6226\u3057\u3066\u307f\u305f\u3044\u5c71P\ud83c\udf55\n\u96d1\u8a8c\u306e\u4f01\u753b\u3068\u304b\u3067\u30be\u30d2\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:09:06 +0000 2017","id":932385273425440768,"id_str":"932385273425440768","text":"\u30d4\u30b6\u4f5c\u308a\u306b\u6311\u6226\u3057\u3066\u307f\u305f\u3044\u5c71P\ud83c\udf55\n\u96d1\u8a8c\u306e\u4f01\u753b\u3068\u304b\u3067\u30be\u30d2\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":729979007395991552,"id_str":"729979007395991552","name":"\u3068\u304d\u3053","screen_name":"fuwa0409p","location":"\u95a2\u897f","url":null,"description":"\u5c71\u4e0b\u667a\u4e45\u541b\u304c\u5927\u597d\u304d\u2764\ufe0f\u5c71P only\u306e\u30ad\u30a6\u30a4\u4e16\u4ee3\u306esweetie\u3067\u3059^ ^\u6ca2\u5c71\u306esweetie\u306e\u65b9\u3068\u304a\u53cb\u9054\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u2728\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044\u266a\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u9802\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\ud83d\ude0a","translator_type":"none","protected":false,"verified":false,"followers_count":420,"friends_count":345,"listed_count":1,"favourites_count":6708,"statuses_count":17866,"created_at":"Tue May 10 10:18:52 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851298865701462016\/t-3yKGj__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851298865701462016\/t-3yKGj__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729979007395991552\/1505912050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[38,43]},{"text":"sound_tripper","indices":[45,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[53,58]},{"text":"sound_tripper","indices":[60,74]}],"urls":[],"user_mentions":[{"screen_name":"fuwa0409p","name":"\u3068\u304d\u3053","id":729979007395991552,"id_str":"729979007395991552","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:57 +0000 2017","id":932386746314231808,"id_str":"932386746314231808","text":"@xTrisarahtops Breakfast, lunch, snacks, brunch, dinner.\nThere. We even have got the customized categories. \ud83c\udf5e\ud83c\udf5c\ud83c\udf72\ud83c\udf55","display_text_range":[15,112],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932386173632294914,"in_reply_to_status_id_str":"932386173632294914","in_reply_to_user_id":835143218450874368,"in_reply_to_user_id_str":"835143218450874368","in_reply_to_screen_name":"xTrisarahtops","user":{"id":24408793,"id_str":"24408793","name":"\ud83c\uddfb\ud83c\udde6gab.ai\/Fabs\ud83d\udc38\ud83e\udd81","screen_name":"Eutrapelico","location":"S\u00e3o Paulo","url":"http:\/\/eutrapelia.com.br","description":"Cat\u00f3lico.\n\ud83d\udc92\ud83d\udcff\nFilosofia.\nDesenvolvimento de jogos.","translator_type":"none","protected":false,"verified":false,"followers_count":384,"friends_count":1476,"listed_count":9,"favourites_count":21795,"statuses_count":28607,"created_at":"Sat Mar 14 18:35:57 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1D2E2F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/712938048825257984\/95LUhT2L.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/712938048825257984\/95LUhT2L.jpg","profile_background_tile":false,"profile_link_color":"D029E0","profile_sidebar_border_color":"EEF72B","profile_sidebar_fill_color":"16DF55","profile_text_color":"171711","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921524959691923456\/DcOG85l__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921524959691923456\/DcOG85l__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24408793\/1458812683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xTrisarahtops","name":"trisarahtops \ud83e\udd83","id":835143218450874368,"id_str":"835143218450874368","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:55 +0000 2017","id":932386734876262400,"id_str":"932386734876262400","text":"\ud83c\udf55 x42 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:50 +0000 2017","id":932386714185879552,"id_str":"932386714185879552","text":"RT @LizCrokin: Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referenced this\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2735669277,"id_str":"2735669277","name":"dor","screen_name":"DorCavegrrl","location":"earth walker","url":null,"description":"water bearer","translator_type":"none","protected":false,"verified":false,"followers_count":40,"friends_count":60,"listed_count":8,"favourites_count":3522,"statuses_count":1533,"created_at":"Thu Aug 07 01:14:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867036943326031874\/-4VxSW--_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867036943326031874\/-4VxSW--_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2735669277\/1411917119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 23:21:04 +0000 2017","id":932025897258856448,"id_str":"932025897258856448","text":"Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referen\u2026 https:\/\/t.co\/nDDqOAFYfS","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18279320,"id_str":"18279320","name":"LIZ THE\ud83c\udf2aIS HERE\u203c\ufe0f\ud83c\udf55","screen_name":"LizCrokin","location":"Los Angeles, CA","url":"https:\/\/www.paypal.me\/LIZCROKIN","description":"Malice author, sex crime survivor & investigative journalist censored by MSM for covering Clinton corruption, sex trafficking & Seth Rich. Pedogate is REAL\u203c\ufe0f\ud83c\udf55","translator_type":"none","protected":false,"verified":true,"followers_count":34022,"friends_count":1649,"listed_count":306,"favourites_count":55906,"statuses_count":19257,"created_at":"Sun Dec 21 04:47:30 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/9326842\/LizSlashRocks-18-43-38.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/9326842\/LizSlashRocks-18-43-38.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926554896450560000\/SMcUNLrc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926554896450560000\/SMcUNLrc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18279320\/1473489330","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referenced this party in Wiki!\ud83d\udc47\ud83c\udffc https:\/\/t.co\/qrxIt4pSH4","display_text_range":[0,144],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932025892062208001,"id_str":"932025892062208001","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":747,"h":1066,"resize":"fit"},"small":{"w":477,"h":680,"resize":"fit"},"large":{"w":747,"h":1066,"resize":"fit"}}},{"id":932025892066299904,"id_str":"932025892066299904","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":684,"resize":"fit"},"large":{"w":748,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":622,"resize":"fit"}}},{"id":932025892057923589,"id_str":"932025892057923589","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932025892062208001,"id_str":"932025892062208001","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":747,"h":1066,"resize":"fit"},"small":{"w":477,"h":680,"resize":"fit"},"large":{"w":747,"h":1066,"resize":"fit"}}},{"id":932025892066299904,"id_str":"932025892066299904","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":684,"resize":"fit"},"large":{"w":748,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":622,"resize":"fit"}}},{"id":932025892057923589,"id_str":"932025892057923589","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]}},"quote_count":0,"reply_count":29,"retweet_count":370,"favorite_count":338,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nDDqOAFYfS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932025897258856448","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[121,144]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LizCrokin","name":"LIZ THE\ud83c\udf2aIS HERE\u203c\ufe0f\ud83c\udf55","id":18279320,"id_str":"18279320","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:50 +0000 2017","id":932386714047229952,"id_str":"932386714047229952","text":"RT @ree_na_chan: \u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u3055\u3093ww\u307e\u305f\u304a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:07:53 +0000 2017","id":932384966406635520,"id_str":"932384966406635520","text":"\u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u2026 https:\/\/t.co\/t48iyyoS2n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215464736,"id_str":"215464736","name":"\u9ece\u7f8e","screen_name":"ree_na_chan","location":"Fukui,Japan","url":null,"description":"\u798f\u4e95\u306e\u7a7a\u306e\u4e0b\u3001\u5c71\u4e0b\u667a\u4e45\uff78\uff9d\u5fdc\u63f4\u4e2d\uff01 Sweeties\u3001\u30b8\u30e3\u30cbLOVE\u029a\u2764\u025e\uff7b\uff9d\u4ef2\u826f\u304f\u3057\u307e\u3057\u3087\u266a\u266a\u266a \u2606\u597d\u7269\u306f\u3001\u2729\u4fee\u4e8c\u3068\u5f70\u2729\u4e80\u3068\u5c71P\u2729\u500b\u4eba\u7684\u2190\u4e80\u3061\u3083\u3093\ud83d\udc22\u3082\u304a\u8336\u306e\u9593\u3067\u5fdc\u63f4\u4e2d\u3002\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u2606(*^^)v","translator_type":"none","protected":false,"verified":false,"followers_count":199,"friends_count":163,"listed_count":2,"favourites_count":3850,"statuses_count":11920,"created_at":"Sun Nov 14 00:57:28 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/839782249\/560dab98c53524761a369a949900b3c4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/839782249\/560dab98c53524761a369a949900b3c4.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875741464679948288\/EJiPyCPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875741464679948288\/EJiPyCPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215464736\/1475887643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u3055\u3093ww\u307e\u305f\u304a\u540d\u524d\u304c\u51fa\u305f\u306d\ud83d\ude2c\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","display_text_range":[0,151],"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[131,136]},{"text":"sound_tripper","indices":[137,151]}],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t48iyyoS2n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932384966406635520","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ree_na_chan","name":"\u9ece\u7f8e","id":215464736,"id_str":"215464736","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:47 +0000 2017","id":932386703079301126,"id_str":"932386703079301126","text":"\ud83c\udf55 x41 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:46 +0000 2017","id":932386700629864449,"id_str":"932386700629864449","text":"Holiday Gift Ideas \u2764 Recipes \ud83c\udf72 Pizza delivery \ud83c\udf55 https:\/\/t.co\/70xfVjTPJM","source":"\u003ca href=\"http:\/\/www.mailchimp.com\" rel=\"nofollow\"\u003eMailChimp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196703758,"id_str":"196703758","name":"Italian Centre Shop","screen_name":"ItalianCentre","location":"Edmonton, AB","url":"http:\/\/www.italiancentre.ca","description":"Where the language of love is great food. We love feeding you specialty European products, Deli & Bakery. Come step into Italy.","translator_type":"none","protected":false,"verified":false,"followers_count":6541,"friends_count":4003,"listed_count":141,"favourites_count":3892,"statuses_count":7161,"created_at":"Wed Sep 29 18:31:14 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590337084033933312\/7XGdsb4E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590337084033933312\/7XGdsb4E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196703758\/1405959805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/70xfVjTPJM","expanded_url":"http:\/\/eepurl.com\/c_3DZ9","display_url":"eepurl.com\/c_3DZ9","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:45 +0000 2017","id":932386692488744961,"id_str":"932386692488744961","text":"s\u00f3 queria uma pizza \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875142604551315462,"id_str":"875142604551315462","name":"Marri","screen_name":"gabii_marrii","location":"ZO","url":"https:\/\/www.instagram.com\/gabiimarrii\/","description":"arte dan\u00e7ante","translator_type":"none","protected":false,"verified":false,"followers_count":205,"friends_count":200,"listed_count":0,"favourites_count":1445,"statuses_count":804,"created_at":"Thu Jun 15 00:07:11 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910176721093185537\/GuH5Xd5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910176721093185537\/GuH5Xd5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875142604551315462\/1507840570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:36 +0000 2017","id":932386658699243521,"id_str":"932386658699243521","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2380511910,"id_str":"2380511910","name":"\u51ac\u83ef","screen_name":"touka10477","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":57,"listed_count":0,"favourites_count":779,"statuses_count":56,"created_at":"Sun Mar 09 14:03:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661308473397784576\/--UnEuzS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661308473397784576\/--UnEuzS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380511910\/1487597577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:36 +0000 2017","id":932386658359660551,"id_str":"932386658359660551","text":"\ud83c\udf55 x40 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:35 +0000 2017","id":932386652932247552,"id_str":"932386652932247552","text":"I\u2019m watching Nik\u2019s basketball game, but all I can really think about is the large pepperoni pizza I\u2019m going to buy\u2026 https:\/\/t.co\/fx7Kj4NNVs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29093534,"id_str":"29093534","name":"Mariah","screen_name":"mariahsutt","location":"Somewhere in DC","url":null,"description":"Future Madam President","translator_type":"none","protected":false,"verified":false,"followers_count":474,"friends_count":363,"listed_count":8,"favourites_count":10602,"statuses_count":26947,"created_at":"Sun Apr 05 23:30:46 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903750227496226817\/cEtNYTbk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903750227496226817\/cEtNYTbk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29093534\/1449543953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"I\u2019m watching Nik\u2019s basketball game, but all I can really think about is the large pepperoni pizza I\u2019m going to buy solely for myself after this.\ud83d\ude0b\ud83c\udf55","display_text_range":[0,146],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fx7Kj4NNVs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386652932247552","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:33 +0000 2017","id":932386644950319104,"id_str":"932386644950319104","text":"@silvana4687 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\uff5e\uff5e\u30d4\u30b6\u306e\u65e5\u304c\u3042\u308b\u3093\u3067\u3059\u306d\uff01\uff01\ud83c\udf55\u4eca\u65e5\u306f\u30d4\u30b6\u30d1\u30fc\u30c6\u30a3\u3067\u3059\u304b\uff1f\uff1f","display_text_range":[13,52],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932371041174745088,"in_reply_to_status_id_str":"932371041174745088","in_reply_to_user_id":1672814137,"in_reply_to_user_id_str":"1672814137","in_reply_to_screen_name":"silvana4687","user":{"id":2984318178,"id_str":"2984318178","name":"\u307d\u3093\u3058\u3085\u30fc\u3059\ud83c\udf79\u306e\u3080\uff1f","screen_name":"pomjuice__","location":null,"url":null,"description":"@silvana4687 @biribiristockin","translator_type":"none","protected":false,"verified":false,"followers_count":10,"friends_count":67,"listed_count":0,"favourites_count":1479,"statuses_count":3079,"created_at":"Thu Jan 15 16:21:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869212207925428224\/xPmrJUoy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869212207925428224\/xPmrJUoy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984318178\/1495962035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"silvana4687","name":"\u3057\u308b\u3070\u30fc\u306a@\u3069\u3089\u307e\u3064\u308b\u304e\u30fc","id":1672814137,"id_str":"1672814137","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:31 +0000 2017","id":932386637018947584,"id_str":"932386637018947584","text":"RT @shchimya: \ud83d\udc39\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\u30cf\u30e0\n\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83d\udc7f\ud83c\udf55\u4f1a\u8b70\u3060\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\ud83d\udc37\u3076\u3072\u30fc\n\n\ud83d\udc39\u4f1a\u8b70\u3067\u30d4\u30b6\u306e\u51fa\u524d\u305f\u306e\u3093\u3060\u305d\u3046\u3067\u3059\u30cf\u30e0\n\ud83d\udc30\u30d6\u30e9\u30c3\u30af\u793e\u9577\u304c\u3072\u3068\u308a\u98df\u3079\u3066\u308b\u3074\u3087\u3093\uff1f\n\n\u5927\u4f1a\u8b70\u5ba4\uff08\u30b6\u2606\u65c5\u884c\u8a18\u2163\u3000\u30ab\u30aa\u30b9\u30fb\u30b9\u30da\u30b7\u30e3\u30eb\uff09\nhttps:\/\/t.co\/0zMB286C2\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1637271468,"id_str":"1637271468","name":"\u82b1\u5ca1\u3000\u67ca","screen_name":"9hiiragi","location":"\u8133\u5185","url":"https:\/\/www.novelabo.com\/authors\/568","description":"\u30d3\u30fc\u30ba\u30ed\u30b0\u6587\u5eab\u604b\u611b\u5c0f\u8aac\u30b3\u30f3\u30c6\u30b9\u30c8\u300c\u30de\u30a4\u30da\u30fc\u30b9\u306a\u541b\u300d\u5968\u52b1\u8cde\u3002\u30ce\u30d9\u30e9\u30dc\u30b0\u30e9\u30f3\u30d7\u30ea\u7b2c4\u56de\u6700\u512a\u79c0\u5019\u88dc\u300c\u541b\u304c\u6b4c\u3092\u6b4c\u3046\u6642\u300d\u7b2c17\u56de\u300c\u6e29\u304b\u3044\u80cc\u4e2d\u300d\u6700\u512a\u79c0\u5019\u88dchttps:\/\/www.novelabo.com\/author\/568 https:\/\/kakuyomu.jp\/works\/1177354054880908643","translator_type":"none","protected":false,"verified":false,"followers_count":1126,"friends_count":1005,"listed_count":21,"favourites_count":14739,"statuses_count":30546,"created_at":"Thu Aug 01 06:31:03 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000223872107\/20776b255420dd78a9e9c48481524351_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000223872107\/20776b255420dd78a9e9c48481524351_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637271468\/1395793765","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:03:33 +0000 2017","id":932383874193154048,"id_str":"932383874193154048","text":"\ud83d\udc39\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\u30cf\u30e0\n\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83d\udc7f\ud83c\udf55\u4f1a\u8b70\u3060\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\ud83d\udc37\u3076\u3072\u30fc\n\n\ud83d\udc39\u4f1a\u8b70\u3067\u30d4\u30b6\u306e\u51fa\u524d\u305f\u306e\u3093\u3060\u305d\u3046\u3067\u3059\u30cf\u30e0\n\ud83d\udc30\u30d6\u30e9\u30c3\u30af\u793e\u9577\u304c\u3072\u3068\u308a\u98df\u3079\u3066\u308b\u3074\u3087\u3093\uff1f\n\n\u5927\u4f1a\u8b70\u5ba4\uff08\u30b6\u2606\u65c5\u884c\u8a18\u2163\u3000\u30ab\u30aa\u30b9\u30fb\u30b9\u30da\u30b7\u30e3\u30eb\uff09\nhttps:\/\/t.co\/0zMB286C2D\n#narou","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102112981,"id_str":"102112981","name":"\u5c0f\u5bae\u767b\u5fd7\u5b50\uff20\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","screen_name":"shchimya","location":"\u795e\u5948\u5ddd\u770c","url":"http:\/\/mypage.syosetu.com\/705372\/","description":"\u4ee5\u524d\u306fyahoo\u30d6\u30ed\u30b0\u3067\u3001\u5c02\u9580\u306f\u6cd5\u5b66\u3001\u4ed6\u306b\u653f\u6cbb\u5b66\u3068\u7d4c\u6e08\u5b66\u304c\u5c11\u3057\u2026\u2026\u3067\u3057\u305f\u304c\u3001\u6700\u8fd1\u306f\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u5c0f\u8aac\u30e1\u30a4\u30f3\u306b\u79fb\u884c\u3057\u307e\u3057\u305f\u3002\u6570\u5e74\u3076\u308a\u306b\u51ac\u7720\u304b\u3089\u899a\u3081\u3001\u5f97\u4f53\u306e\u77e5\u308c\u306a\u3044\u6d3b\u52d5\uff08\u3068\u8a00\u3046\u307b\u3069\u5927\u8888\u88df\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\uff09\u3092\u518d\u958b\u3057\u3066\u3044\u307e\u3059\u3002\u73fe\u5728\u3001\u300c\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046\u300d\u304c\u6839\u57ce\u307f\u305f\u3044\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":2943,"friends_count":2626,"listed_count":33,"favourites_count":198,"statuses_count":21503,"created_at":"Tue Jan 05 17:18:45 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971167378\/Zwitter_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971167378\/Zwitter_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102112981\/1462110993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"narou","indices":[127,133]}],"urls":[{"url":"https:\/\/t.co\/0zMB286C2D","expanded_url":"https:\/\/ncode.syosetu.com\/n5067db\/72\/","display_url":"ncode.syosetu.com\/n5067db\/72\/","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shchimya","name":"\u5c0f\u5bae\u767b\u5fd7\u5b50\uff20\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","id":102112981,"id_str":"102112981","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:30 +0000 2017","id":932386632761794560,"id_str":"932386632761794560","text":"Lol. I think I ate to much pizza. \ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83d\ude0b\ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2781486675,"id_str":"2781486675","name":"\ud83c\udf57MONTE\ud83c\udf57","screen_name":"Biggboyy2017","location":null,"url":null,"description":"Im a young handsome dude who's addicted to playing sports, and video games. Just on Twitter for the fun of it. It's not my life. SIGN: LEO. \ud83d\udc2f","translator_type":"none","protected":false,"verified":false,"followers_count":212,"friends_count":290,"listed_count":4,"favourites_count":457,"statuses_count":520,"created_at":"Tue Sep 23 16:50:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877651704027762689\/jwj4rnxF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877651704027762689\/jwj4rnxF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781486675\/1489327932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:29 +0000 2017","id":932386626025619456,"id_str":"932386626025619456","text":"RT @Suwa_Ayaka: \u30c8\u30fc\u30af\u3067\u5927\u9808\u3067\u98df\u3079\u305f\u30d4\u30b6\u306e\u8a71\u3057\u3066\u305f\u3089\u3001\u7121\u6027\u306b\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u7d42\u308f\u308a\u306b2\u4eba\u3067\u884c\u3063\u3061\u3083\u3063\u305f\ud83c\udf55\u7b11\ud83d\udc93\u30dc\u30fc\u30ce\u3060\u3063\u305f\u3088\uff08\u7b11\uff09\u2764\ufe0f\n\u307e\u305f\u3048\u30fc\u3067\u3061\u3083\u3093\u3068\u4f55\u304b\u4e00\u7dd2\u306b\u3067\u304d\u308b\u3068\u3044\u3044\u306a\u30fc\uff01 https:\/\/t.co\/4hHy6ysoJi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16334367,"id_str":"16334367","name":"\u6728\u306e\u8449\u71c3\u6717\uff08\u3053\u306e\u306f\u3082\uff09","screen_name":"konohamoero","location":"East side of Tokyo, Japan \u6771\u4eac","url":"http:\/\/konohamoero.web.fc2.com\/","description":"\u30e9\u30b8\u30aa\u306e\u5b9f\u6cc1\u3068\u30ea\u30c4\u30a4\u30fc\u30c8\u591a\u3044\u3067\u3059\u3002\u4ed6\u306b\u672c\u3084\u97f3\u697d\u3084\u30b5\u30c3\u30ab\u30fc\u3084\u6620\u753b\u3084\u6587\u623f\u5177\u3084\u30ac\u30b8\u30a7\u30c3\u30c8\u3084\u30b2\u30fc\u30e0\u306a\u3069\u306a\u3069\u3002\u300c\u795e\u51fa\u9b3c\u6ca1\u306e\u30de\u30fc\u30b8\u30ca\u30eb\u30fb\u30de\u30f3\u300d\u3082\u3057\u304f\u306f\u300c\u30df\u30b9\u30bf\u30fc\u7aef\u3063\u5b50\u300d\u3002\u300c\u304a\u3082\u3057\u308d\u304b\u308f\u3044\u3044\u300d\u4eba\u304c\u597d\u304d\u3067\u3059\u3002\u300c\u3042\u306a\u305f\u306b\u306f\u7b11\u9854\u3067\u3044\u3066\u6b32\u3057\u3044\u306e\u3067\u3059\u300d\uff0f360x365. LRLR(Listen to the Radio,Love Radio)","translator_type":"none","protected":false,"verified":false,"followers_count":1374,"friends_count":1571,"listed_count":55,"favourites_count":487,"statuses_count":90334,"created_at":"Wed Sep 17 18:53:11 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/79513050\/room02.PNG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/79513050\/room02.PNG","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/843378560144363521\/X8PUwT2c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/843378560144363521\/X8PUwT2c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16334367\/1398766301","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 13:37:13 +0000 2017","id":932241353865535488,"id_str":"932241353865535488","text":"\u30c8\u30fc\u30af\u3067\u5927\u9808\u3067\u98df\u3079\u305f\u30d4\u30b6\u306e\u8a71\u3057\u3066\u305f\u3089\u3001\u7121\u6027\u306b\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u7d42\u308f\u308a\u306b2\u4eba\u3067\u884c\u3063\u3061\u3083\u3063\u305f\ud83c\udf55\u7b11\ud83d\udc93\u30dc\u30fc\u30ce\u3060\u3063\u305f\u3088\uff08\u7b11\uff09\u2764\ufe0f\n\u307e\u305f\u3048\u30fc\u3067\u3061\u3083\u3093\u3068\u4f55\u304b\u4e00\u7dd2\u306b\u3067\u304d\u308b\u3068\u3044\u3044\u306a\u30fc\uff01 https:\/\/t.co\/4hHy6ysoJi","display_text_range":[0,85],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232229151,"id_str":"232229151","name":"\u8acf\u8a2a\u5f69\u82b1","screen_name":"Suwa_Ayaka","location":"\u6771\u4eac","url":null,"description":"\u30a2\u30fc\u30c4\u30d3\u30b8\u30e7\u30f3\u6240\u5c5e\u3001\u58f0\u512a\u306e\u8acf\u8a2a\u5f69\u82b1\u3067\u3059\uff01\u5730\u5143\u306f\u611b\u77e5\u770c\u3060\u3063\u305f\u308a\u3057\u307e\u3059(^\u03c9^) \u307e\u3060\u307e\u3060\u672a\u719f\u8005\u3067\u3059\u304c\u3001\u5fdc\u63f4\u3057\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\uff01\uff01 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059**","translator_type":"none","protected":false,"verified":false,"followers_count":88065,"friends_count":552,"listed_count":3470,"favourites_count":1176,"statuses_count":12393,"created_at":"Thu Dec 30 15:51:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923760749725474816\/xQD9YyLw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923760749725474816\/xQD9YyLw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232229151\/1428344676","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":8,"retweet_count":218,"favorite_count":701,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}},{"id":932241345019645953,"id_str":"932241345019645953","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Suwa_Ayaka","name":"\u8acf\u8a2a\u5f69\u82b1","id":232229151,"id_str":"232229151","indices":[3,14]}],"symbols":[],"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"}]},"extended_entities":{"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"},{"id":932241345019645953,"id_str":"932241345019645953","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":960,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:25 +0000 2017","id":932386611622330368,"id_str":"932386611622330368","text":"RT @SensiblePost: What I need now: \n\n1. Bed. \ud83d\udce6\ud83d\udc4f\ud83d\udcab\n\n2. Aircon. \ud83d\udcb3\ud83d\udca8\n\n3. Fries. \ud83c\udf5f\n\n4. Pizza. \ud83c\udf55\n\n5. Fast Internet Connection. \ud83d\udcf6\ud83d\udcbb\ud83d\udcf1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784693631793836032,"id_str":"784693631793836032","name":"ft","screen_name":"nurfitrihelmi","location":null,"url":"http:\/\/instagram.com\/nr.fitrihelmi","description":"am selene\ud83c\udf12","translator_type":"none","protected":false,"verified":false,"followers_count":156,"friends_count":155,"listed_count":0,"favourites_count":442,"statuses_count":1782,"created_at":"Sat Oct 08 09:55:15 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929518063816392704\/cWutQ4WK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929518063816392704\/cWutQ4WK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784693631793836032\/1506051263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 11:02:03 +0000 2017","id":931839914894692354,"id_str":"931839914894692354","text":"What I need now: \n\n1. Bed. \ud83d\udce6\ud83d\udc4f\ud83d\udcab\n\n2. Aircon. \ud83d\udcb3\ud83d\udca8\n\n3. Fries. \ud83c\udf5f\n\n4. Pizza. \ud83c\udf55\n\n5. Fast Internet Connection. \ud83d\udcf6\ud83d\udcbb\ud83d\udcf1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2609001092,"id_str":"2609001092","name":"SENSIBLE POST","screen_name":"SensiblePost","location":"United Kingdom","url":null,"description":"http:\/\/instagram.com\/SensiblePost600","translator_type":"none","protected":false,"verified":false,"followers_count":286043,"friends_count":264875,"listed_count":399,"favourites_count":7,"statuses_count":1961,"created_at":"Mon Jul 07 05:43:29 +0000 2014","utc_offset":-25200,"time_zone":"Chihuahua","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518226938448457728\/ED_OuHwP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518226938448457728\/ED_OuHwP.jpeg","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/748346855784755200\/EawPPbX6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/748346855784755200\/EawPPbX6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2609001092\/1484617668","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":134,"favorite_count":149,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SensiblePost","name":"SENSIBLE POST","id":2609001092,"id_str":"2609001092","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:24 +0000 2017","id":932386605058461697,"id_str":"932386605058461697","text":"\ud83c\udf55 x39 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:23 +0000 2017","id":932386600599748608,"id_str":"932386600599748608","text":"\u4eca\u65e5\u306f\u300c\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u300d\u3067\u3059\u304c\u3001\u3082\u3046\u4e00\u3064\u4eca\u5e74\u6c7a\u307e\u3063\u305f\u8a18\u5ff5\u65e5\n\n \ud83c\udf8a\u6bdb\u5e03\u306e\u65e5\ud83c\udf8a\n\n\u3067\u3059\uff01\uff01\uff01\uff01\uff01\u5f53\u5e97\u306f\u30d4\u30b6\u306e\u304a\u53d6\u308a\u6271\u3044\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u304c\u3001\u304a\u3072\u3068\u308a\u3055\u307e\u70ac\u71f5\u306b\u3082\u306a\u308b\u6bdb\u5e03\u304c\u3054\u3056\u3044\u307e\u3059(\u0e07 \u2022\u0300_\u2022\u0301)\u0e07\u4eca\u65e5\u306e\u3088\u3046\u306a\u5bd2\u3055\u306e\u6642\u306b\u5927\u6d3b\u2026 https:\/\/t.co\/vgO2K43hU3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137587404,"id_str":"137587404","name":"\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\u300a\u516c\u5f0f\u300b","screen_name":"ts_nakamura","location":"\u795e\u5948\u5ddd\u770c\u6a2a\u6d5c\u5e02","url":"http:\/\/www.rakuten.co.jp\/ts-nakamura\/","description":"\u6a2a\u6d5c\u306b\u3042\u308b\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\ud83d\ude9a\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u304a\u5e97\u306e\u4e8b\u304b\u3089\u304a\u5e97\u306b\u5168\u304f\u95a2\u4fc2\u306a\u3044\u4e8b\u307e\u3067\u3086\u308b\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u7686\u3055\u307e\u306e\u30d5\u30a9\u30ed\u30fc\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\ud83d\udc9e\u203b\u5546\u54c1\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306f\u304a\u53d7\u3051\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u5b9f\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002\u203b\u753b\u50cf\u8ee2\u8f09\u306f\u304a\u65ad\u308a\u3057\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":162,"friends_count":112,"listed_count":5,"favourites_count":174,"statuses_count":1767,"created_at":"Tue Apr 27 05:03:59 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137587404\/1493256965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":928209771185893377,"quoted_status_id_str":"928209771185893377","quoted_status":{"created_at":"Wed Nov 08 10:37:09 +0000 2017","id":928209771185893377,"id_str":"928209771185893377","text":"\u3010\u5965\u69d8\u30aa\u30b9\u30b9\u30e1\u3011\n\u30a6\u30a9\u30fc\u30e0\u6bdb\u5e03 \u3061\u3087\u3063\u3068\u306d\u30fc\u308b DC24V(\u00a59936 \u7a0e\u8fbc)\n\n\u51b7\u3048\u6027\u306a\u30c9\u30e9\u30a4\u30d0\u30fc\u3055\u3093\u306b\u30aa\u30b9\u30b9\u30e1\uff01\u5bdd\u888b\u30bf\u30a4\u30d7\u3067\u4fdd\u6e29\u6027\u629c\u7fa4\u306e\u6bdb\u5e03\u3067\u3059\u3002\u30b5\u30fc\u30e2\u30d2\u30fc\u30bf\u30fc\u3067\u8db3\u5143\u3092\u3057\u3063\u304b\u308a\u6e29\u3081\u3066\u304f\u308c\u307e\u3059\uff01\n(24V\u5c02\u7528\u3067\u3059)\u2026 https:\/\/t.co\/sVyVztfxwz","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137587404,"id_str":"137587404","name":"\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\u300a\u516c\u5f0f\u300b","screen_name":"ts_nakamura","location":"\u795e\u5948\u5ddd\u770c\u6a2a\u6d5c\u5e02","url":"http:\/\/www.rakuten.co.jp\/ts-nakamura\/","description":"\u6a2a\u6d5c\u306b\u3042\u308b\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\ud83d\ude9a\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u304a\u5e97\u306e\u4e8b\u304b\u3089\u304a\u5e97\u306b\u5168\u304f\u95a2\u4fc2\u306a\u3044\u4e8b\u307e\u3067\u3086\u308b\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u7686\u3055\u307e\u306e\u30d5\u30a9\u30ed\u30fc\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\ud83d\udc9e\u203b\u5546\u54c1\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306f\u304a\u53d7\u3051\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u5b9f\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002\u203b\u753b\u50cf\u8ee2\u8f09\u306f\u304a\u65ad\u308a\u3057\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":162,"friends_count":112,"listed_count":5,"favourites_count":174,"statuses_count":1767,"created_at":"Tue Apr 27 05:03:59 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137587404\/1493256965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u3010\u5965\u69d8\u30aa\u30b9\u30b9\u30e1\u3011\n\u30a6\u30a9\u30fc\u30e0\u6bdb\u5e03 \u3061\u3087\u3063\u3068\u306d\u30fc\u308b DC24V(\u00a59936 \u7a0e\u8fbc)\n\n\u51b7\u3048\u6027\u306a\u30c9\u30e9\u30a4\u30d0\u30fc\u3055\u3093\u306b\u30aa\u30b9\u30b9\u30e1\uff01\u5bdd\u888b\u30bf\u30a4\u30d7\u3067\u4fdd\u6e29\u6027\u629c\u7fa4\u306e\u6bdb\u5e03\u3067\u3059\u3002\u30b5\u30fc\u30e2\u30d2\u30fc\u30bf\u30fc\u3067\u8db3\u5143\u3092\u3057\u3063\u304b\u308a\u6e29\u3081\u3066\u304f\u308c\u307e\u3059\uff01\n(24V\u5c02\u7528\u3067\u3059)\n\nhttps:\/\/t.co\/m0WzHZqIoG https:\/\/t.co\/CnkaJJKgSf","display_text_range":[0,133],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m0WzHZqIoG","expanded_url":"https:\/\/item.rakuten.co.jp\/ts-nakamura\/x-44\/","display_url":"item.rakuten.co.jp\/ts-nakamura\/x-\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[],"media":[{"id":928209763246080000,"id_str":"928209763246080000","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","url":"https:\/\/t.co\/CnkaJJKgSf","display_url":"pic.twitter.com\/CnkaJJKgSf","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":928209763246080000,"id_str":"928209763246080000","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","url":"https:\/\/t.co\/CnkaJJKgSf","display_url":"pic.twitter.com\/CnkaJJKgSf","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sVyVztfxwz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/928209771185893377","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"extended_tweet":{"full_text":"\u4eca\u65e5\u306f\u300c\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u300d\u3067\u3059\u304c\u3001\u3082\u3046\u4e00\u3064\u4eca\u5e74\u6c7a\u307e\u3063\u305f\u8a18\u5ff5\u65e5\n\n \ud83c\udf8a\u6bdb\u5e03\u306e\u65e5\ud83c\udf8a\n\n\u3067\u3059\uff01\uff01\uff01\uff01\uff01\u5f53\u5e97\u306f\u30d4\u30b6\u306e\u304a\u53d6\u308a\u6271\u3044\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u304c\u3001\u304a\u3072\u3068\u308a\u3055\u307e\u70ac\u71f5\u306b\u3082\u306a\u308b\u6bdb\u5e03\u304c\u3054\u3056\u3044\u307e\u3059(\u0e07 \u2022\u0300_\u2022\u0301)\u0e07\u4eca\u65e5\u306e\u3088\u3046\u306a\u5bd2\u3055\u306e\u6642\u306b\u5927\u6d3b\u8e8d\uff01\uff01\uff01\u9811\u5f35\u308b\u7686\u3055\u307e\u3092\u6696\u304b\u304f\u5305\u307f\u8fbc\u307f\u307e\u3059\uff01\uff01\uff01 https:\/\/t.co\/216X4Rs4SN","display_text_range":[0,138],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/216X4Rs4SN","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377","display_url":"twitter.com\/ts_nakamura\/st\u2026","indices":[139,162]}],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vgO2K43hU3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386600599748608","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:23 +0000 2017","id":932386600423710720,"id_str":"932386600423710720","text":"Muito boa noite! \ud83d\udc8f\ud83c\udf55\ud83c\udf41\ud83c\udf6b\ud83d\udca4\ud83c\udf19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302571987,"id_str":"2302571987","name":"Jully Schaurich \u00ae","screen_name":"JullySchaurich","location":"Minas Gerais, Brasil ","url":null,"description":"N\u00e3o posso reclamar da vida que vou levando, tenho tudo que quero e o que faltar t\u00f4 conquistando!\u270c\ud83c\udffb\ud83d\ude01\ud83c\udf40\u2764\ufe0f \ud83d\udc69\ud83c\udffb\ud83d\udc68\ud83c\udffb\ud83d\udc66\ud83c\udffb\ud83d\udc76\ud83c\udffb","translator_type":"none","protected":false,"verified":false,"followers_count":20,"friends_count":184,"listed_count":0,"favourites_count":1572,"statuses_count":8631,"created_at":"Sat Jan 25 01:18:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932226654210019329\/QCPbQpST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932226654210019329\/QCPbQpST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302571987\/1510093965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:20 +0000 2017","id":932386587492700160,"id_str":"932386587492700160","text":"To numa pizzaria encima da boombar \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude0d\ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":863235451313942528,"id_str":"863235451313942528","name":"Julia Ramos","screen_name":"Uma_vitoriaa","location":null,"url":"https:\/\/juliaramos102.sarahah.com\/","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":38,"friends_count":160,"listed_count":0,"favourites_count":122,"statuses_count":391,"created_at":"Sat May 13 03:32:24 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/920103074139705344\/9TQ6CVGU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/920103074139705344\/9TQ6CVGU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"66a72011ed6d4853","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/66a72011ed6d4853.json","place_type":"city","name":"Gravata\u00ed","full_name":"Gravata\u00ed, Brasil","country_code":"BR","country":"Brazil","bounding_box":{"type":"Polygon","coordinates":[[[-51.101365,-30.015653],[-51.101365,-29.765763],[-50.811151,-29.765763],[-50.811151,-30.015653]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:19 +0000 2017","id":932386585051463681,"id_str":"932386585051463681","text":"\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3063\u3066\u898b\u3066\u5f53\u7136\u306e\u5982\u304f\u30d4\u30b6\u98df\u3079\u305f\u304f\u306a\u3063\u305f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4831930791,"id_str":"4831930791","name":"\u308a\u3044","screen_name":"ree_1116","location":"\u5317\u306e\u65b9\u3002","url":"http:\/\/privatter.net\/u\/ree_1116","description":"\u6210\u4eba\u6e08\u3002\u30eb\u30ed\u30fc\u306b\u5922\u4e2d\u3002\u30ed\u30fc\u53f3\u306a\u3089\u306a\u3093\u3067\u3082\u597d\u304d\u3002\u672c\u8a8c\u6d3e\u3002\u65e5\u5e38\u3068\u304b\u597d\u304d\u306a\u3053\u3068\u3092\u597d\u304d\u52dd\u624b\u306b\u545f\u3044\u3066\u307e\u3059\u3002 \u7d20\u6575\u30a2\u30a4\u30b3\u30f3\u306f\u304b\u3089\u3055\u3061\u3055\u3093\ud83d\udc95\u3053\u305d\u308a\u3068\u304a\u8a71\u3057\u7db4\u3063\u3066\u307e\u3059\u2026http:\/\/pixiv.me\/ree11161116 \u30ea\u30b9\u30a4\u30f3\u7b49\u3005\u306e\u3053\u3068\u306f\u3053\u3061\u3089\u306b\u3066\u2192http:\/\/privatter.net\/p\/1293798","translator_type":"none","protected":false,"verified":false,"followers_count":221,"friends_count":110,"listed_count":4,"favourites_count":5456,"statuses_count":35578,"created_at":"Thu Jan 21 07:08:55 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925385022781001728\/usLHM3WU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925385022781001728\/usLHM3WU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4831930791\/1496213353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:17 +0000 2017","id":932386577883340800,"id_str":"932386577883340800","text":"RT @daniellachavezc: Cuando te sorprenden comiendo Pizza \ud83c\udf55\ud83d\ude31\ud83d\ude02 \n\n Instagram @DaniellaChavezOfficial https:\/\/t.co\/JIAbePFxHs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406046763,"id_str":"406046763","name":"\u2606T\u2606","screen_name":"t_t_t72","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1596,"friends_count":2550,"listed_count":251,"favourites_count":199016,"statuses_count":231419,"created_at":"Sun Nov 06 05:18:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602611543583240192\/WuGz2mXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602611543583240192\/WuGz2mXC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 10 00:52:57 +0000 2017","id":928787528026607619,"id_str":"928787528026607619","text":"Cuando te sorprenden comiendo Pizza \ud83c\udf55\ud83d\ude31\ud83d\ude02 \n\n Instagram @DaniellaChavezOfficial https:\/\/t.co\/JIAbePFxHs","display_text_range":[0,76],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284570882,"id_str":"284570882","name":"Daniella Chavez","screen_name":"daniellachavezc","location":"Chile","url":"http:\/\/www.daniellachavez.com","description":"3 Portadas Playboy, ex Conductora de Televisi\u00f3n en #PonteFit #TDN Televisa Deportes, CEA Televisa M\u00e9xico,Actriz: http:\/\/www.instagram.com\/DaniellaChavezOfficial","translator_type":"none","protected":false,"verified":true,"followers_count":506445,"friends_count":1931,"listed_count":1081,"favourites_count":279256,"statuses_count":15928,"created_at":"Tue Apr 19 14:48:43 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597150804965871616\/Wo5HjDST.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597150804965871616\/Wo5HjDST.png","profile_background_tile":true,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930563948855914497\/wWf8S6hR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930563948855914497\/wWf8S6hR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284570882\/1510698682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00c4b64e7affea25","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c4b64e7affea25.json","place_type":"city","name":"Las Condes","full_name":"Las Condes, Chile","country_code":"CL","country":"Chile","bounding_box":{"type":"Polygon","coordinates":[[[-70.608694,-33.486182],[-70.608694,-33.364619],[-70.429141,-33.364619],[-70.429141,-33.486182]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":219,"retweet_count":484,"favorite_count":5872,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":928787446514487297,"id_str":"928787446514487297","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","url":"https:\/\/t.co\/JIAbePFxHs","display_url":"pic.twitter.com\/JIAbePFxHs","expanded_url":"https:\/\/twitter.com\/daniellachavezc\/status\/928787528026607619\/video\/1","type":"photo","sizes":{"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":928787446514487297,"id_str":"928787446514487297","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","url":"https:\/\/t.co\/JIAbePFxHs","display_url":"pic.twitter.com\/JIAbePFxHs","expanded_url":"https:\/\/twitter.com\/daniellachavezc\/status\/928787528026607619\/video\/1","type":"video","sizes":{"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}},"video_info":{"aspect_ratio":[30,53],"duration_millis":4067,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/vid\/362x640\/CjbBRWX0Er4ERRuC.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/vid\/180x320\/XvZq0k9mtCp9jtkn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/pl\/3CUjky8cO3NqaUjA.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"daniellachavezc","name":"Daniella Chavez","id":284570882,"id_str":"284570882","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:16 +0000 2017","id":932386573265637376,"id_str":"932386573265637376","text":"RT @arian_FOLLOW: Follow ME and everyone who RETWEETS and FAV this \u2705\ud83c\udf55\n#1DDRIVE\u2705\ud83c\udf55\n#TRAPADRIVE\u2705\ud83c\udf55\n#NEWGAINS\u2705\ud83c\udf55\nTURN MY NOTIFICATION ON \n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3078540509,"id_str":"3078540509","name":"HIGHEST \u2795","screen_name":"Sark_son","location":"WORLD ","url":"http:\/\/highestalbum.com","description":"the love for SarkCess music is deep | like my FB page : @son_of_sarkodie | @Sarkodie #Rapgod | IG: augustime | FB: Nana Augustine | SC: paugustine37","translator_type":"none","protected":false,"verified":false,"followers_count":8153,"friends_count":2788,"listed_count":20,"favourites_count":10562,"statuses_count":56702,"created_at":"Sun Mar 08 01:37:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898933781050077184\/LL3rFLSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898933781050077184\/LL3rFLSL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3078540509\/1503157613","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:30:04 +0000 2017","id":932330151005876225,"id_str":"932330151005876225","text":"Follow ME and everyone who RETWEETS and FAV this \u2705\ud83c\udf55\n#1DDRIVE\u2705\ud83c\udf55\n#TRAPADRIVE\u2705\ud83c\udf55\n#NEWGAINS\u2705\ud83c\udf55\nTURN MY NOTIFICATION ON \n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55","source":"\u003ca href=\"https:\/\/statusbrew.com\" rel=\"nofollow\"\u003eStatusbrew\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153773270,"id_str":"3153773270","name":"Follow Help\u2734\ufe0f","screen_name":"arian_FOLLOW","location":"TURN ON MY NOTIFICATION","url":null,"description":"TURN MY NOTIFICATIONS ON \ud83d\udd1b for daily gain tweets\n STAY ACTIVE\ud83c\udfc3to GAIN #TheGainTeam #GabberHubDotComGain #1DDrive","translator_type":"none","protected":false,"verified":false,"followers_count":18161,"friends_count":8508,"listed_count":132,"favourites_count":15903,"statuses_count":3091,"created_at":"Mon Apr 13 22:07:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923103360462532608\/ZUQB3z0o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923103360462532608\/ZUQB3z0o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153773270\/1511048165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":4,"retweet_count":50,"favorite_count":123,"entities":{"hashtags":[{"text":"1DDRIVE","indices":[52,60]},{"text":"TRAPADRIVE","indices":[63,74]},{"text":"NEWGAINS","indices":[77,86]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1DDRIVE","indices":[70,78]},{"text":"TRAPADRIVE","indices":[81,92]},{"text":"NEWGAINS","indices":[95,104]}],"urls":[],"user_mentions":[{"screen_name":"arian_FOLLOW","name":"Follow Help\u2734\ufe0f","id":3153773270,"id_str":"3153773270","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:16 +0000 2017","id":932386571248160769,"id_str":"932386571248160769","text":"\ud83c\udf55 x38 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:15 +0000 2017","id":932386569616363520,"id_str":"932386569616363520","text":"RT @JUN_WADS: \u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1935629022,"id_str":"1935629022","name":"\u3055\u304f\u3089","screen_name":"koiseyo0422","location":null,"url":null,"description":"\u3072\u3068\u308a\u306e\u6642\u9593\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059 \u3072\u3068\u308a\u306e\u6642\u9593\u3067\u5143\u6c17\u306b\u306a\u3063\u3066\u307e\u3059 \u8a00\u8449\u306e\u66b4\u529b\u306b\u8ca0\u3051\u306a\u3044\u3088\u3046\u306b\u306a\u308a\u305f\u3044 \u8ab0\u304b\u306e\u671f\u5f85\u306b\u306f\u5fdc\u3048\u3089\u308c\u306a\u3044 \u597d\u304d\u306a\u3082\u306e\u3092\u597d\u304d\u306b\u597d\u304d\u3067\u3044\u305f\u3044","translator_type":"none","protected":false,"verified":false,"followers_count":1386,"friends_count":1146,"listed_count":63,"favourites_count":108319,"statuses_count":488904,"created_at":"Fri Oct 04 22:27:17 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433821542221242368\/QZ5yngsa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433821542221242368\/QZ5yngsa.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/764489482590576640\/5qvcNZhE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/764489482590576640\/5qvcNZhE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1935629022\/1472844349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:12:37 +0000 2017","id":932386157773570049,"id_str":"932386157773570049","text":"\u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","display_text_range":[0,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350712503,"id_str":"350712503","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","screen_name":"JUN_WADS","location":null,"url":"http:\/\/otoloop.com","description":"\u30aa\u30c8\u30eb\u30fc\u30d7\u306e\u30c9\u30e9\u30e0&\u30b3\u30fc\u30e9\u30b9\u3001\u30cb\u30b8\u30de\u30b9\u25fc\ufe0e\u6700\u65b0\u30ea\u30ea\u30c3\u30af\u30e0\u30fc\u30d3\u30fc\u3010\u30ea\u30cf\u30ed\u3011https:\/\/youtu.be\/tqAXgYBZ_Y8\u25fc\ufe0eMV\u3010\u3053\u3068\u3070\u3092\u77e5\u308a\u305f\u3044\u3011https:\/\/youtu.be\/pU7k2raunCo\u3010\u30a2\u30de\u30ce\u30b8\u30e3\u30af\u306e\u72ec\u767d\u3011https:\/\/youtu.be\/2kEpbSRUdVA","translator_type":"none","protected":false,"verified":false,"followers_count":9587,"friends_count":10541,"listed_count":59,"favourites_count":28740,"statuses_count":15646,"created_at":"Mon Aug 08 06:02:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350712503\/1387300819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[43,50]}],"urls":[],"user_mentions":[{"screen_name":"JUN_WADS","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","id":350712503,"id_str":"350712503","indices":[3,12]}],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}},"source_status_id":932386157773570049,"source_status_id_str":"932386157773570049","source_user_id":350712503,"source_user_id_str":"350712503"}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}},"source_status_id":932386157773570049,"source_status_id_str":"932386157773570049","source_user_id":350712503,"source_user_id_str":"350712503"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:14 +0000 2017","id":932386563744501760,"id_str":"932386563744501760","text":"Football Sunday fat kid mozzarella waffle pizza! \ud83c\udf55 https:\/\/t.co\/2PRxF4rFFn https:\/\/t.co\/hL2VF5SGsI","display_text_range":[0,74],"source":"\u003ca href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14316456,"id_str":"14316456","name":"Mark Perez","screen_name":"faceofbass","location":"Aurora, Colorado","url":"http:\/\/www.faceofbass.com","description":"A little bit of this, a little bit of that. Bassist, Podcaster and sometimes even a decent DJ. Championing all that is Colorado","translator_type":"none","protected":false,"verified":false,"followers_count":1821,"friends_count":1994,"listed_count":99,"favourites_count":2018,"statuses_count":17341,"created_at":"Sun Apr 06 17:08:21 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110684","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D66A29","profile_text_color":"110684","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14316456\/1420515214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2PRxF4rFFn","expanded_url":"http:\/\/ift.tt\/2zW8hwI","display_url":"ift.tt\/2zW8hwI","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":932386561479634946,"id_str":"932386561479634946","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","url":"https:\/\/t.co\/hL2VF5SGsI","display_url":"pic.twitter.com\/hL2VF5SGsI","expanded_url":"https:\/\/twitter.com\/faceofbass\/status\/932386563744501760\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386561479634946,"id_str":"932386561479634946","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","url":"https:\/\/t.co\/hL2VF5SGsI","display_url":"pic.twitter.com\/hL2VF5SGsI","expanded_url":"https:\/\/twitter.com\/faceofbass\/status\/932386563744501760\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:11 +0000 2017","id":932386552436604928,"id_str":"932386552436604928","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910071524991762433,"id_str":"910071524991762433","name":"\u307f\u304d\u307e\u308b","screen_name":"mikimaru1122","location":null,"url":"https:\/\/ameblo.jp\/mikimaru1122","description":"Instagram\u30e1\u30a4\u30f3\u3067\u3059\u304cTwitter\u3082\u306f\u3058\u3081\u3066\u307f\u307e\u3057\u305f\ud83d\ude0a\u2728\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059(^^)\u61f8\u8cde\u3001\u30e2\u30cb\u30bf\u30fc\u7cfb\u306b\u306f\u307e\u3063\u3066\u307e\u3059\uff01\u540c\u3058\u8da3\u5473\u306e\u304b\u305f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2764\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":106,"friends_count":329,"listed_count":1,"favourites_count":876,"statuses_count":897,"created_at":"Tue Sep 19 09:22:14 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922058688860364800\/2KUuGVT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922058688860364800\/2KUuGVT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910071524991762433\/1506925834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386549047574528,"id_str":"932386549047574528","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420527430,"id_str":"2420527430","name":"FooMa@\u3046\u308c\u3057\u30fc\u3069\u306e\u6c11","screen_name":"FooMa5648","location":"\u6e58\u5357\u3042\u305f\u308a","url":"https:\/\/plus.google.com\/collection\/csybaB","description":"\u3069\u3053\u306b\u3067\u3082\u3044\u308b\u3088\u3046\u306a\u7a2e\u7530\u68a8\u6c99\u3055\u3093\u306e\u30d5\u30a1\u30f3\u3067\u3059 \u3086\u3063\u304f\u308a\u7126\u3089\u305a\u5fdc\u63f4\u3057\u3066\u3044\u304d\u305f\u3044\u306a \/\u300c\u304d\u3089\u304d\u3089\u2605\u30b9\u30bf\u30c7\u30a3\u30fc\uff5e\u7d76\u5bfe\u5408\u683c\u5ba3\u8a00\uff5e\u300d(\u8457:\u83ef\u3005\u3064\u307c\u307f)\u306f\u307e\u3093\u304c\u30bf\u30a4\u30e0\u304d\u3089\u3089\u3067\u597d\u8a55\u9023\u8f09\u4e2d\uff01\/\u30d7\u30ea\u30f3\u30bb\u30b9\u30ca\u30a4\u30c8(\u304a\u307e\u3058\u306a\u3044\u306e\u76f8\u624b\/\u30d7\u30ea\u30b3\u30cd\u8349\u91ce\u306d\u6d3b\u52d5\u968a)\/\u7279\u52d9\u6a5f\u95a2\u6240\u5c5e\u306e\u53ec\u559a\u5e2b(FEH)","translator_type":"none","protected":false,"verified":false,"followers_count":1405,"friends_count":1561,"listed_count":49,"favourites_count":29899,"statuses_count":132094,"created_at":"Mon Mar 31 13:17:33 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9966CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492688343344246788\/RHnvSOYD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492688343344246788\/RHnvSOYD.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924307711000420352\/Q7ahooQn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924307711000420352\/Q7ahooQn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2420527430\/1476088105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386547327836160,"id_str":"932386547327836160","text":"follow,RT,\u30a4\u30a4\u306d\ud83c\udfb5\u3042\u308a\u304c\u3068\u3046\u305e\u306aww\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u3068\u3001\u3044\u3046\u3053\u3068\u3067\uff1f\ud83d\ude05\u3044\u3063\u3066\u304d\u307e\u3059\u30fc\ud83c\udfc3\ud83d\udca6\ud83d\udc4b\n#\u30d4\u30b6\u306e\u65e5 https:\/\/t.co\/EZ9SzBm0Ie","display_text_range":[0,57],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3445491914,"id_str":"3445491914","name":"\u3086\u304d\u3072\u3068","screen_name":"yukihito1967","location":"Japan-Matuyama","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\uff5e\uff01\ud83d\ude4c\u3044\u305f\u3063\u3066\u5e73\u51e1\u306a\u4eba\u3060\u3051\u3069\u3082\u3088\u308d\u3057\u304f\u305e\u306a\u3082\u3057~\ud83d\udc50Nice to meet\u3000you\uff01plz\u3000follow\u3000Me\u270c\ud83d\ude09My faves\ud83d\udc31\ud83d\udc36\ud83d\udc30\ud83d\udc39\ud83d\udc2c\ud83d\udc25\ud83c\udfa5\ud83c\udfae\ud83d\ude99\u26fa\u26be\ud83c\udfb3\ud83c\udf6b\ud83c\udfa7\ud83c\udfbc\u2668","translator_type":"none","protected":false,"verified":false,"followers_count":4735,"friends_count":4535,"listed_count":42,"favourites_count":51726,"statuses_count":12383,"created_at":"Fri Sep 04 07:07:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/855636912127713284\/_PmAudv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/855636912127713284\/_PmAudv3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3445491914\/1507560384","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[52,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386525865639936,"id_str":"932386525865639936","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","url":"https:\/\/t.co\/EZ9SzBm0Ie","display_url":"pic.twitter.com\/EZ9SzBm0Ie","expanded_url":"https:\/\/twitter.com\/yukihito1967\/status\/932386547327836160\/photo\/1","type":"photo","sizes":{"large":{"w":731,"h":321,"resize":"fit"},"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":731,"h":321,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386525865639936,"id_str":"932386525865639936","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","url":"https:\/\/t.co\/EZ9SzBm0Ie","display_url":"pic.twitter.com\/EZ9SzBm0Ie","expanded_url":"https:\/\/twitter.com\/yukihito1967\/status\/932386547327836160\/photo\/1","type":"photo","sizes":{"large":{"w":731,"h":321,"resize":"fit"},"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":731,"h":321,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386546447089664,"id_str":"932386546447089664","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133205524,"id_str":"133205524","name":"\u30a4\u30cc\u597d\u304d\u306a\u30cd\u30b3\u578b","screen_name":"chamcham00","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":49,"friends_count":270,"listed_count":0,"favourites_count":10,"statuses_count":3834,"created_at":"Thu Apr 15 08:10:27 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386545511944192,"id_str":"932386545511944192","text":"S\u00f3 uma \ud83c\udf55 mesmo meu amigo rs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":837075163933978624,"id_str":"837075163933978624","name":"Lucas Nascimento! \ud83d\ude0e","screen_name":"metebala06","location":"seu novinho rs ","url":null,"description":"com Deus t\u00f4 sempre andando \ud83d\ude4c\ud83c\udffd ..","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":238,"listed_count":0,"favourites_count":2704,"statuses_count":3617,"created_at":"Wed Mar 01 23:00:45 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932336451248943104\/sV3vt9j3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932336451248943104\/sV3vt9j3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/837075163933978624\/1503027545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:08 +0000 2017","id":932386538490613760,"id_str":"932386538490613760","text":"\ud83c\udf55 x37 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:07 +0000 2017","id":932386535386656768,"id_str":"932386535386656768","text":"RT @plovepgon: \u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158568399,"id_str":"158568399","name":"\u30b9\u30c3\u30ad\u2606","screen_name":"LovelyYamapi","location":"\u97d3\u56fd - \u30bd\u30a6\u30eb","url":null,"description":"\u2606\u5c71\u4e0b\u667a\u4e45\u2606 \u5927\u597d\u304d\u3067\u3059( ^_^)\/","translator_type":"none","protected":false,"verified":false,"followers_count":3918,"friends_count":1029,"listed_count":24,"favourites_count":3868,"statuses_count":88398,"created_at":"Wed Jun 23 01:43:49 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912292769715986432\/CDHpYA5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912292769715986432\/CDHpYA5V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158568399\/1500301417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386455581626368,"id_str":"932386455581626368","text":"\u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211350474,"id_str":"211350474","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","screen_name":"plovepgon","location":"tokyo\u266a","url":null,"description":"\u3053\u306e\u4ef2\u9593\u3068\u306a\u3089\u3001\u307e\u305f\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u308b\u3002\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc \u30c9\u30af\u30bf\u30fc\u30d8\u30ea\u7dca\u6025\u6551\u547d \uff0dTHE THIRD SEASON\uff0d\u6bce\u9031\u6708\u66dc\u3088\u308b9\u6642\u30a8\u30f3\u30b8\u30f3\u30b9\u30bf\u30fc\u30c8\u2728\u2728\n\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u5168\u529b\u5fdc\u63f4\u4e2d\ud83c\udfb5\n\u30aa\u30f3\u30ea\u30fc\u3084\u307e\u3074\u30fc\u2764\n\u6642\u3005\u30de\u30de\u3055\u3093\u30d0\u30ec\u30fc\u306b\u51fa\u304b\u3051\u3066\u3044\u307e\u3059\u2757\n\u30d5\u30a9\u30ed\u30fc\u306f\u3072\u3068\u58f0\u304b\u3051\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u306a\ud83c\udfb6","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":269,"listed_count":3,"favourites_count":1920,"statuses_count":35970,"created_at":"Wed Nov 03 00:47:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211350474\/1500861182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[70,75]},{"text":"sound_tripper","indices":[76,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[85,90]},{"text":"sound_tripper","indices":[91,105]}],"urls":[],"user_mentions":[{"screen_name":"plovepgon","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","id":211350474,"id_str":"211350474","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:07 +0000 2017","id":932386533532778496,"id_str":"932386533532778496","text":"RT @moon_disco49: \u4eca\u65e5\u306f\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u2757\ufe0f\n\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\n\n\u7f8e\u5473\u3057\u3044\u3088\u306d\uff5e\ud83c\udfb6\n\u79c1\u3082\u597d\u304d\ud83d\ude03\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:17 +0000 2017","id":932383557355372544,"id_str":"932383557355372544","text":"\u4eca\u65e5\u306f\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u2757\ufe0f\n\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\n\n\u7f8e\u5473\u3057\u3044\u3088\u306d\uff5e\ud83c\udfb6\n\u79c1\u3082\u597d\u304d\ud83d\ude03\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163260018,"id_str":"3163260018","name":"\u3044\u3061\u3054","screen_name":"moon_disco49","location":null,"url":"http:\/\/ameblo.jp\/13ichigop\/entry-12138918149.html","description":"\u5c71P\u306e\u3053\u3068\u4ee5\u5916\u3001\u8208\u5473\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u9375\u57a2\u3001\u304a\u4eba\u67c4\u304c\u5168\u304f\u898b\u3048\u306a\u3044\u65b9\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\n\u5c71P\u304c\u6b69\u3044\u3066\u3044\u304f\u9053\u3092\u6c38\u9060\u306b\u5fdc\u63f4\u3057\u307e\u3059(\u0e51\u2022\u0300\u1d17- )\u2729","translator_type":"none","protected":false,"verified":false,"followers_count":779,"friends_count":277,"listed_count":5,"favourites_count":3752,"statuses_count":28747,"created_at":"Sun Apr 19 04:21:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163260018\/1502440752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[45,50]},{"text":"sound_tripper","indices":[56,70]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[63,68]},{"text":"sound_tripper","indices":[74,88]}],"urls":[],"user_mentions":[{"screen_name":"moon_disco49","name":"\u3044\u3061\u3054","id":3163260018,"id_str":"3163260018","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:06 +0000 2017","id":932386532874440705,"id_str":"932386532874440705","text":"Pizzeria Hollywood \ud83c\udf55 en Hollywood pizzer\u00eda https:\/\/t.co\/lacs7xwcI5","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1449713558,"id_str":"1449713558","name":"Juan Pablo\ud83d\udc3a","screen_name":"Juanchosescobar","location":"Bogot\u00e1, D.C., Colombia","url":null,"description":"Solo otra persona mas \ud83e\udd14","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":41,"listed_count":0,"favourites_count":22,"statuses_count":8,"created_at":"Wed May 22 19:21:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917383377149456384\/gHTPLTce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917383377149456384\/gHTPLTce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1449713558\/1507556214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lacs7xwcI5","expanded_url":"https:\/\/www.instagram.com\/p\/BbseKY_gDNF\/","display_url":"instagram.com\/p\/BbseKY_gDNF\/","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"is","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:05 +0000 2017","id":932386528084615174,"id_str":"932386528084615174","text":"RT @ladyfata: Stasera pizza \ud83c\udf55 \ud83d\ude0b\ud83c\udf77\ud83c\udf7d\n#pizzafattaincasa #pizza#amici #carnotzet #cranssursierre #valais #cook\u2026 https:\/\/t.co\/YAjKz7m3H3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":841289941,"id_str":"841289941","name":"Massimo Nascioli","screen_name":"massimonascioli","location":"Roma, Lazio","url":null,"description":"Intermediario Assicurativo - Appassionato di fotografia, arte e cinema - #Sfigatidelsabatosera","translator_type":"none","protected":false,"verified":false,"followers_count":3521,"friends_count":4918,"listed_count":147,"favourites_count":66395,"statuses_count":66721,"created_at":"Sun Sep 23 08:21:28 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914149777830481921\/nf6pH5Rj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914149777830481921\/nf6pH5Rj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/841289941\/1509794787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:07:52 +0000 2017","id":932384963755937793,"id_str":"932384963755937793","text":"Stasera pizza \ud83c\udf55 \ud83d\ude0b\ud83c\udf77\ud83c\udf7d\n#pizzafattaincasa #pizza#amici #carnotzet #cranssursierre #valais #cook\u2026 https:\/\/t.co\/YAjKz7m3H3","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":605801932,"id_str":"605801932","name":"Lady Fata","screen_name":"ladyfata","location":null,"url":null,"description":"Se un granello di sabbia vuol dire ti amo..allora ti regalo il Sahara. Roma -Crans-sur-Sierre -Puglia. #sfigatidelsabatosera Nm001129","translator_type":"none","protected":false,"verified":false,"followers_count":3363,"friends_count":1142,"listed_count":57,"favourites_count":219855,"statuses_count":68893,"created_at":"Mon Jun 11 22:28:09 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"13C2CF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171201545\/5Fx9fcSA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171201545\/5Fx9fcSA.jpeg","profile_background_tile":true,"profile_link_color":"007BFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"29469D","profile_text_color":"15FB2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/777269443915345920\/zNdwHY14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/777269443915345920\/zNdwHY14_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/605801932\/1473717986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[46.3,7.46667]},"coordinates":{"type":"Point","coordinates":[7.46667,46.3]},"place":{"id":"b41fd612ae56fda3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b41fd612ae56fda3.json","place_type":"city","name":"Chermignon","full_name":"Chermignon, Suisse","country_code":"CH","country":"Switzerland","bounding_box":{"type":"Polygon","coordinates":[[[7.459197,46.271999],[7.459197,46.310406],[7.498618,46.310406],[7.498618,46.271999]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"pizzafattaincasa","indices":[20,37]},{"text":"carnotzet","indices":[51,61]},{"text":"cranssursierre","indices":[62,77]},{"text":"valais","indices":[78,85]},{"text":"cook","indices":[86,91]}],"urls":[{"url":"https:\/\/t.co\/YAjKz7m3H3","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsdc0bBN79\/","display_url":"instagram.com\/p\/Bbsdc0bBN79\/","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pizzafattaincasa","indices":[34,51]},{"text":"carnotzet","indices":[65,75]},{"text":"cranssursierre","indices":[76,91]},{"text":"valais","indices":[92,99]},{"text":"cook","indices":[100,105]}],"urls":[{"url":"https:\/\/t.co\/YAjKz7m3H3","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsdc0bBN79\/","display_url":"instagram.com\/p\/Bbsdc0bBN79\/","indices":[107,130]}],"user_mentions":[{"screen_name":"ladyfata","name":"Lady Fata","id":605801932,"id_str":"605801932","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:05 +0000 2017","id":932386525144260608,"id_str":"932386525144260608","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192171529,"id_str":"3192171529","name":"\u9759\u9999","screen_name":"T19830321s","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":5,"friends_count":131,"listed_count":0,"favourites_count":62,"statuses_count":755,"created_at":"Mon May 11 13:10:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386514041843712,"id_str":"932386514041843712","text":"#\u304a\u304a\u307e\u3048\n\n\u5927\u524d\u3055\u3093\u306e\u30d4\u30b6\ud83c\udf55\u98df\u3079\u305f\u3044\ud83d\ude0d\n\u3082\u3061\u308d\u3093\u3001\u30a2\u30bd\u30b3\u304b\u3089\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284159821,"id_str":"3284159821","name":"\uff33\uff21\uff32\uff35","screen_name":"Ia4kwPleHptWWqI","location":" \u540d\u53e4\u5c4b\u5e02 ","url":null,"description":"\u3010\u89b3\u89a7\u6ce8\u610f\u3011SARU\u306a\u306e\u3067\u565b\u307f\u3064\u3044\u3061\u3083\u3044\u307e\u3059\u3088\ud83d\udc12\ud83d\udc35\u52dd\u624b\u306b\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u3061\u3083\u3044\u307e\u3059\ud83c\udfb5\u5acc\u3044\u306a\u65b9\u306f\u304a\u624b\u6570\u3067\u3059\u304c\u3001\u3001\u3001\u3001You\u30d6\u30ed\u30c3\u30af\u3057\u3061\u3083\u3044\u306a\u3088\ud83d\udc95\u3088\u308d\u3061\u304f\u30d3\u30fc\u30c1\ud83c\udf34\ud83d\ude4b","translator_type":"none","protected":false,"verified":false,"followers_count":818,"friends_count":700,"listed_count":8,"favourites_count":99482,"statuses_count":34587,"created_at":"Sun Jul 19 07:42:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930414273771253760\/sMk4t455_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930414273771253760\/sMk4t455_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284159821\/1510664944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u304a\u307e\u3048","indices":[0,5]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386513974837249,"id_str":"932386513974837249","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173137208,"id_str":"173137208","name":"\u6751\u4e0a\u7fa9\u96c4","screen_name":"sutabania","location":null,"url":null,"description":"\u30b9\u30bf\u30fc\u30d0\u30c3\u30af\u30b9\u3068\u30b3\u30fc\u30d2\u30fc\u5927\u597d\u304d\u3067\u3059\u3002\n\u5143\u7a7a\u306e\u4eba","translator_type":"none","protected":false,"verified":false,"followers_count":83,"friends_count":500,"listed_count":1,"favourites_count":6675,"statuses_count":2457,"created_at":"Sat Jul 31 14:55:12 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/692712507996139520\/6EpnHkoj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/692712507996139520\/6EpnHkoj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173137208\/1453990418","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386513739902976,"id_str":"932386513739902976","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4670692334,"id_str":"4670692334","name":"bbb","screen_name":"bbbbbabccc","location":"\u65e5\u672c","url":null,"description":"\u6b32\u3057\u304f","translator_type":"none","protected":false,"verified":false,"followers_count":51,"friends_count":167,"listed_count":0,"favourites_count":1504,"statuses_count":1107,"created_at":"Tue Dec 29 02:52:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879970939663810560\/4vDnn11f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879970939663810560\/4vDnn11f_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:01 +0000 2017","id":932386510409797635,"id_str":"932386510409797635","text":"Football Sunday fat kid mozzarella waffle pizza! \ud83c\udf55 https:\/\/t.co\/zlrC29X4Ap","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14316456,"id_str":"14316456","name":"Mark Perez","screen_name":"faceofbass","location":"Aurora, Colorado","url":"http:\/\/www.faceofbass.com","description":"A little bit of this, a little bit of that. Bassist, Podcaster and sometimes even a decent DJ. Championing all that is Colorado","translator_type":"none","protected":false,"verified":false,"followers_count":1821,"friends_count":1994,"listed_count":99,"favourites_count":2018,"statuses_count":17341,"created_at":"Sun Apr 06 17:08:21 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110684","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D66A29","profile_text_color":"110684","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14316456\/1420515214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zlrC29X4Ap","expanded_url":"https:\/\/www.instagram.com\/p\/BbseJ-fHStI\/","display_url":"instagram.com\/p\/BbseJ-fHStI\/","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:00 +0000 2017","id":932386507264090113,"id_str":"932386507264090113","text":"\ud83c\udf55 x36 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:58 +0000 2017","id":932386499114520578,"id_str":"932386499114520578","text":"#boanoitegente \ud83d\ude04\nEsta chuva e friooooo\ud83d\ude28\nMas tem #pizzaboa \ud83c\udf55\ud83c\udf77\ud83c\udf7a em S\u00e3o Vicente, Brazil https:\/\/t.co\/uChK2BRIKv","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48846769,"id_str":"48846769","name":"Duarte Marques","screen_name":"DuarteMMarques","location":"Funchal-Hoje estou em Santos.","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":456,"friends_count":1789,"listed_count":3,"favourites_count":36,"statuses_count":4876,"created_at":"Fri Jun 19 22:12:43 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/523704971733123072\/nA_7pSp2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/523704971733123072\/nA_7pSp2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526497919625461760\/9SlGPUcr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526497919625461760\/9SlGPUcr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48846769\/1414362485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-23.9667,-46.3833]},"coordinates":{"type":"Point","coordinates":[-46.3833,-23.9667]},"place":{"id":"d1638a3be6a9ed61","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d1638a3be6a9ed61.json","place_type":"city","name":"S\u00e3o Vicente","full_name":"S\u00e3o Vicente, Brasil","country_code":"BR","country":"Brazil","bounding_box":{"type":"Polygon","coordinates":[[[-46.658389,-24.011484],[-46.658389,-23.899444],[-46.356622,-23.899444],[-46.356622,-24.011484]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"boanoitegente","indices":[0,14]},{"text":"pizzaboa","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/uChK2BRIKv","expanded_url":"https:\/\/www.instagram.com\/p\/BbseEngDOJo\/","display_url":"instagram.com\/p\/BbseEngDOJo\/","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:58 +0000 2017","id":932386495532474368,"id_str":"932386495532474368","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780021822641217536,"id_str":"780021822641217536","name":"\u3069\u3093","screen_name":"ddddddddon017","location":null,"url":null,"description":"\u5fa1\u98ef\u306f\u5927\u76db\u308a\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":18,"friends_count":84,"listed_count":0,"favourites_count":71,"statuses_count":1938,"created_at":"Sun Sep 25 12:31:09 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897394202106929153\/UoxY3bsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897394202106929153\/UoxY3bsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780021822641217536\/1504701157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:56 +0000 2017","id":932386489878511616,"id_str":"932386489878511616","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3113139169,"id_str":"3113139169","name":"\u30b1\u30f3","screen_name":"kentarosuz8","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":17,"friends_count":78,"listed_count":0,"favourites_count":375,"statuses_count":996,"created_at":"Sat Mar 28 14:28:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/769555293508210688\/-bvdQD5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/769555293508210688\/-bvdQD5w_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:56 +0000 2017","id":932386488209117184,"id_str":"932386488209117184","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3513803360,"id_str":"3513803360","name":"\u306b\u3053\u307d\u3093(\u4e0d\u5b9a\u671f\u6d3b\u52d5\u4e2d)","screen_name":"nikopon1115","location":"\u4eac\u90fd","url":null,"description":"2017\u5e74\u3082\u6b4c\u306b\u5143\u6c17\u3092\u8cb0\u3063\u3066\u3001\u7b11\u9854\u591a\u304d\u5e74\u306b\uff01\u6c37\u5ddd\u304d\u3088\u3057\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":117,"listed_count":3,"favourites_count":50277,"statuses_count":33389,"created_at":"Thu Sep 10 09:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513803360\/1444717759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:53 +0000 2017","id":932386476721098753,"id_str":"932386476721098753","text":"RT @k_kichitsu: \u65e9\u4e0a\u9192\u4f86\u5f8c\u89ba\u5f97\u81ea\u5df1\u534a\u591c\u8b1b\u90a3\u4ec0\u9ebc\u4e00\u4eba\u4e2d\u734e\u5168\u5bb6\u540c\u884cwwwww\u5bb3\u6211\u767d\u5929\u6eff\u8166\u5b50\u6230\u58eb\u968a\u7684Pizza Party\u756b\u9762 \ud83c\udf55\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/2N4GEaHNAy","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771816346413830144,"id_str":"771816346413830144","name":"bowlcut ryoasuka","screen_name":"akira1love","location":null,"url":null,"description":"formerly SoniaWinchente. 22, female, italian, a mess","translator_type":"none","protected":false,"verified":false,"followers_count":312,"friends_count":476,"listed_count":4,"favourites_count":90922,"statuses_count":42081,"created_at":"Fri Sep 02 21:05:31 +0000 2016","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905867141177647106\/aNbXj7pk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905867141177647106\/aNbXj7pk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771816346413830144\/1472896577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 07:57:08 +0000 2017","id":931430993881206784,"id_str":"931430993881206784","text":"\u65e9\u4e0a\u9192\u4f86\u5f8c\u89ba\u5f97\u81ea\u5df1\u534a\u591c\u8b1b\u90a3\u4ec0\u9ebc\u4e00\u4eba\u4e2d\u734e\u5168\u5bb6\u540c\u884cwwwww\u5bb3\u6211\u767d\u5929\u6eff\u8166\u5b50\u6230\u58eb\u968a\u7684Pizza Party\u756b\u9762 \ud83c\udf55\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/2N4GEaHNAy","display_text_range":[0,56],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":871082222576558080,"id_str":"871082222576558080","name":"\ud83c\udf7f\u9b3c\u79e9\ud83c\udf2d","screen_name":"k_kichitsu","location":"Taiwan","url":null,"description":"\u9032\u6483\u57a2 \uff08\u30d9\u30eb\u30e9\u30a4\u3001\u540c\u90f7\u30c8\u30ea\u30aa\u3001\u53f3\u30e9\u30a4etc.\uff09\u3001\u30cd\u30bf\u30d0\u30ec\u6709 \uff0f 20\u2191 \u8150 \uff0f \u53f0\u6e7e\u4eba\u3001\u4e2d\u56fd\u8a9e\u66f8\u3051\u307e\u3059\uff0f \u5c11\u3057\u3060\u3051\u65e5\u672c\u8a9e\u7406\u89e3\u51fa\u6765\u307e\u3059(\u8aad\u89e3\u306e\u307f) \uff0f\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059","translator_type":"none","protected":false,"verified":false,"followers_count":26,"friends_count":0,"listed_count":0,"favourites_count":3,"statuses_count":56,"created_at":"Sat Jun 03 19:12:40 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/919125827857481728\/ENYSGwLM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/919125827857481728\/ENYSGwLM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/871082222576558080\/1507971679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":24,"favorite_count":46,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k_kichitsu","name":"\ud83c\udf7f\u9b3c\u79e9\ud83c\udf2d","id":871082222576558080,"id_str":"871082222576558080","indices":[3,14]}],"symbols":[],"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}},"source_status_id":931430993881206784,"source_status_id_str":"931430993881206784","source_user_id":871082222576558080,"source_user_id_str":"871082222576558080"}]},"extended_entities":{"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}},"source_status_id":931430993881206784,"source_status_id_str":"931430993881206784","source_user_id":871082222576558080,"source_user_id_str":"871082222576558080"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386474078691328,"id_str":"932386474078691328","text":"\ud83c\udf55 x35 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386472832802816,"id_str":"932386472832802816","text":"RT @KITKATJapan: \u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784125290,"id_str":"784125290","name":"\u3164\u30bc\u30ce","screen_name":"168_doc","location":null,"url":"http:\/\/twpf.jp\/168_doc","description":"\u5143\u30b2\u30fc\u30bb\u30f3\u5e97\u54e1\u3002\u30db\u30fc\u30e0\u3060\u3063\u305f\u3051\u3069\u9589\u5e97\u3057\u305f\u306e\u3067\u97f3\u30b2\u30fc\u306f\u307b\u307c\u5f15\u9000\u3002\u30b9\u30ed\u30ab\u30b9\u3002\u4eca\u6301\u3063\u3066\u308b\u5b9f\u6a5f\u306f\u30ae\u30a2\u30b9\u521d\u4ee3\u306e\u307f\u3002\u97f3\u30b2\u30fc\u306e\u30c7\u30fc\u30bf\u306f\u30c4\u30a4\u30d7\u30ed\u3002\u5ac1(@nagi_doc)","translator_type":"none","protected":false,"verified":false,"followers_count":270,"friends_count":475,"listed_count":20,"favourites_count":6324,"statuses_count":129351,"created_at":"Mon Aug 27 08:02:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540694761946873859\/fEGmPhri.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540694761946873859\/fEGmPhri.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/803594398348939265\/aQGg_T3o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/803594398348939265\/aQGg_T3o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784125290\/1509054842","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:00 +0000 2017","id":932382983981592581,"id_str":"932382983981592581","text":"\u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":28,"favorite_count":43,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[54,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[71,76]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386469993312256,"id_str":"932386469993312256","text":"RT @6Etsuko: 11\u670820\u65e5\uff08\u6708\uff09\n\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n1\u9031\u9593\u306e\u59cb\u307e\u308a\u2026\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\ud83d\udc9a\n#\ud0dd\uc5f0 #\ud654\uc774\ud305 https:\/\/t.co\/PqPWbz30DP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":792033589558784000,"id_str":"792033589558784000","name":"\u307f\u307b","screen_name":"arVH8YFfEqsRxVb","location":null,"url":null,"description":"\u30c6\u30ae\u30e7\u30f3\u2764\u3055\u3089\u3093\u3078\uff5e\u2764\u3042\u3042\u3063\u3001\u30bd\u30ed\u30b3\u30f3\u697d\u3057\u304b\u3063\u305f\u306a\u3041\u2026\ud83d\ude22","translator_type":"none","protected":false,"verified":false,"followers_count":11,"friends_count":49,"listed_count":0,"favourites_count":11917,"statuses_count":2563,"created_at":"Fri Oct 28 16:01:37 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913444564530110464\/Imz2YLrL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913444564530110464\/Imz2YLrL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792033589558784000\/1508254780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 21:23:41 +0000 2017","id":932358742233956352,"id_str":"932358742233956352","text":"11\u670820\u65e5\uff08\u6708\uff09\n\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n1\u9031\u9593\u306e\u59cb\u307e\u308a\u2026\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\ud83d\udc9a\n#\ud0dd\uc5f0 #\ud654\uc774\ud305 https:\/\/t.co\/PqPWbz30DP","display_text_range":[0,43],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1590650528,"id_str":"1590650528","name":"\u3048\u3063\u3061\u3083\u3093\ud83d\udc9aETSUKO\ud83d\udc9a","screen_name":"6Etsuko","location":"Japan Aichi","url":null,"description":"\u30c6\u30ae\u30e7\u30f3\u6eba\u611b\u30a2\u30b8\u30e5\u30f3\u30de\u3067\u3059\u266a \u53ea\u4ecaTL\u8ffd\u3048\u305a\u3067\u30d5\u30a9\u30ed\u30d0\u304a\u4f11\u307f\u4e2d\u2026\u30d5\u30a9\u30ed\u30fc\u5916\u3055\u308c\u305f\u65b9\u30fb\u9375\u4ed8\u304d\u3055\u3093\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002\u7d61\u307f\u306e\u306a\u3044\u76f8\u4e92\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u2026\u4e0d\u5b9a\u671f\u3067\u6574\u7406\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u306e\u3067\u30df\u30a2\u30cd\u3002 6\/9\u2661\u5ff5\u9858\u306e\u30bd\u30a6\u30eb\u30b3\u30f3\u304c\u79c1\u306e\u30bb\u30f3\u30a4\u30eb\u2661\u305d\u3057\u3066\u5947\u8de1\u304c\u2661 \u52d5\u753b\u3092\u4f5c\u3063\u3066\u3044\u308b\u6642\u304c\u79c1\u306e\u7652\u3057\u266a\u6c17\u8efd\u306b\u7d61\u3093\u3067\u4e0b\u3055\u3044\u306d~\u2764\ufe0e@taeccool","translator_type":"none","protected":false,"verified":false,"followers_count":976,"friends_count":183,"listed_count":3,"favourites_count":15758,"statuses_count":86421,"created_at":"Sat Jul 13 10:00:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931288950383116288\/FnOax_kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931288950383116288\/FnOax_kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1590650528\/1505919323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":8,"favorite_count":15,"entities":{"hashtags":[{"text":"\ud0dd\uc5f0","indices":[35,38]},{"text":"\ud654\uc774\ud305","indices":[39,43]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":60000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/1280x720\/11tXMJvyweryi8LW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/pl\/7Zb5RB08B4odt6ot.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/320x180\/BwjplEmg-3i1JNEK.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/640x360\/DAazgG9RfhuSgm1c.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ud0dd\uc5f0","indices":[48,51]},{"text":"\ud654\uc774\ud305","indices":[52,56]}],"urls":[],"user_mentions":[{"screen_name":"6Etsuko","name":"\u3048\u3063\u3061\u3083\u3093\ud83d\udc9aETSUKO\ud83d\udc9a","id":1590650528,"id_str":"1590650528","indices":[3,11]}],"symbols":[],"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":932358742233956352,"source_status_id_str":"932358742233956352","source_user_id":1590650528,"source_user_id_str":"1590650528"}]},"extended_entities":{"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":932358742233956352,"source_status_id_str":"932358742233956352","source_user_id":1590650528,"source_user_id_str":"1590650528","video_info":{"aspect_ratio":[16,9],"duration_millis":60000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/1280x720\/11tXMJvyweryi8LW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/pl\/7Zb5RB08B4odt6ot.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/320x180\/BwjplEmg-3i1JNEK.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/640x360\/DAazgG9RfhuSgm1c.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:49 +0000 2017","id":932386460606406656,"id_str":"932386460606406656","text":"RT @nokko_0409: \u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800634234792603648,"id_str":"800634234792603648","name":"Suzu","screen_name":"Suzu98536234","location":"\u65e5\u672c \u5343\u8449","url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\u263a\u5c71P\u5927\u597d\u304d\u304a\u3070\u30d5\u30a1\u30f3\u3067\u3059\u2665\uff11\u304b\u3089\u3084\u308a\u76f4\u3057\u305f\u70ba\u307e\u305f\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(_ _)m\u30c7\u30a3\u30ba\u30cb\u30fc\u3082\u597d\u304d\u2665\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u30fc\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":447,"friends_count":357,"listed_count":5,"favourites_count":16896,"statuses_count":34107,"created_at":"Mon Nov 21 09:37:31 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800634234792603648\/1482012167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:13:18 +0000 2017","id":932386327818989568,"id_str":"932386327818989568","text":"\u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898499051,"id_str":"2898499051","name":"\u306e\u3063\u3053","screen_name":"nokko_0409","location":null,"url":null,"description":"\u5c71\uff30\u306e\u767a\u3059\u308b\u6e29\u5ea6\u304c\u582a\u3089\u306a\u304f\u597d\u304d","translator_type":"none","protected":false,"verified":false,"followers_count":81,"friends_count":107,"listed_count":1,"favourites_count":5472,"statuses_count":5618,"created_at":"Thu Nov 13 13:02:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898499051\/1471783413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[94,99]},{"text":"sound_tripper","indices":[100,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[110,115]},{"text":"sound_tripper","indices":[116,130]}],"urls":[],"user_mentions":[{"screen_name":"nokko_0409","name":"\u306e\u3063\u3053","id":2898499051,"id_str":"2898499051","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386456059838464,"id_str":"932386456059838464","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1373720448,"id_str":"1373720448","name":"marieee0520\uff08\u8d64\u798f\u52df\u96c6\u4e2d","screen_name":"marieee0520","location":"\u4e88\u5b9a\u306e\u306a\u3044\u65e5\u306f\u7d76\u597d\u8abf","url":null,"description":"Maya\/C4D\/AE\/PS\/iL 3DCG Animator. TV\u30b7\u30ea\u30fc\u30ba\u3001\u30cb\u30f3\u30b8\u30e3\u30bf\u30fc\u30c8\u30eb\u30ba\u30b7\u30fc\u30ba\u30f34,5\u53c2\u52a0\u3002\u8077\u696d\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u30de\u30cb\u30a2\u3002\u6d77\u5916\u3068\u65e5\u672c\u3092\u653e\u6d6a\u4e2d\u3002\u8d64\u798f\u304c\u98df\u3079\u305f\u3044\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":440,"friends_count":584,"listed_count":11,"favourites_count":2229,"statuses_count":5284,"created_at":"Tue Apr 23 03:51:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480275447205203968\/lRIvgGZm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480275447205203968\/lRIvgGZm.png","profile_background_tile":true,"profile_link_color":"FF0066","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620114948522295296\/emSNgESZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620114948522295296\/emSNgESZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1373720448\/1403341725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386455581626368,"id_str":"932386455581626368","text":"\u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211350474,"id_str":"211350474","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","screen_name":"plovepgon","location":"tokyo\u266a","url":null,"description":"\u3053\u306e\u4ef2\u9593\u3068\u306a\u3089\u3001\u307e\u305f\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u308b\u3002\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc \u30c9\u30af\u30bf\u30fc\u30d8\u30ea\u7dca\u6025\u6551\u547d \uff0dTHE THIRD SEASON\uff0d\u6bce\u9031\u6708\u66dc\u3088\u308b9\u6642\u30a8\u30f3\u30b8\u30f3\u30b9\u30bf\u30fc\u30c8\u2728\u2728\n\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u5168\u529b\u5fdc\u63f4\u4e2d\ud83c\udfb5\n\u30aa\u30f3\u30ea\u30fc\u3084\u307e\u3074\u30fc\u2764\n\u6642\u3005\u30de\u30de\u3055\u3093\u30d0\u30ec\u30fc\u306b\u51fa\u304b\u3051\u3066\u3044\u307e\u3059\u2757\n\u30d5\u30a9\u30ed\u30fc\u306f\u3072\u3068\u58f0\u304b\u3051\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u306a\ud83c\udfb6","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":269,"listed_count":3,"favourites_count":1920,"statuses_count":35970,"created_at":"Wed Nov 03 00:47:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211350474\/1500861182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[70,75]},{"text":"sound_tripper","indices":[76,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:45 +0000 2017","id":932386444127166464,"id_str":"932386444127166464","text":"\ud83c\udf55 x34 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:42 +0000 2017","id":932386431716257793,"id_str":"932386431716257793","text":"Pineapple Skies \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752743155267608576,"id_str":"752743155267608576","name":"\u3030","screen_name":"bajomiroca","location":"5th Dimension","url":null,"description":"\u2615\ufe0f | YOLO | NAMASTE |","translator_type":"none","protected":false,"verified":false,"followers_count":338,"friends_count":575,"listed_count":4,"favourites_count":8106,"statuses_count":5994,"created_at":"Tue Jul 12 05:55:28 +0000 2016","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931480734849798145\/tE9eW1an_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931480734849798145\/tE9eW1an_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752743155267608576\/1510917323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:41 +0000 2017","id":932386426141884416,"id_str":"932386426141884416","text":"RT @528yp: \u5c71\uff30\u304a\u306f\u3088\u3046\ud83d\udc95\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u7167\u308a\u713c\u304d\u306e\u30d4\u30b6\ud83c\udf55\u304c\u597d\u304d\u306a\u5c71\uff30\ud83c\udfb5\u7f8e\u5473\u3057\u3044\u3088\u306d\ud83d\ude0a\n\u5ca1\u7530\u541b\u3068\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u304a\u8a71\u3082\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u4eca\u65e5\u3082\u5bd2\u304f\u3066\u64ae\u5f71\u5927\u5909\u3060\u3068\u601d\u3044\u307e\u3059\u304c\u9811\u5f35\u3063\u3066\u4e0b\u3055\u3044\ud83c\udf40\n\u4eca\u9031\u3082\u9811\u5f35\u308a\u307e\u3059\ud83c\udfb5\n\u5c71\uff30\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800634234792603648,"id_str":"800634234792603648","name":"Suzu","screen_name":"Suzu98536234","location":"\u65e5\u672c \u5343\u8449","url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\u263a\u5c71P\u5927\u597d\u304d\u304a\u3070\u30d5\u30a1\u30f3\u3067\u3059\u2665\uff11\u304b\u3089\u3084\u308a\u76f4\u3057\u305f\u70ba\u307e\u305f\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(_ _)m\u30c7\u30a3\u30ba\u30cb\u30fc\u3082\u597d\u304d\u2665\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u30fc\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":447,"friends_count":357,"listed_count":5,"favourites_count":16896,"statuses_count":34107,"created_at":"Mon Nov 21 09:37:31 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800634234792603648\/1482012167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:12:28 +0000 2017","id":932386120926507009,"id_str":"932386120926507009","text":"\u5c71\uff30\u304a\u306f\u3088\u3046\ud83d\udc95\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u7167\u308a\u713c\u304d\u306e\u30d4\u30b6\ud83c\udf55\u304c\u597d\u304d\u306a\u5c71\uff30\ud83c\udfb5\u7f8e\u5473\u3057\u3044\u3088\u306d\ud83d\ude0a\n\u5ca1\u7530\u541b\u3068\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u304a\u8a71\u3082\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u4eca\u65e5\u3082\u5bd2\u304f\u3066\u64ae\u5f71\u5927\u5909\u3060\u3068\u601d\u3044\u307e\u3059\u304c\u9811\u5f35\u3063\u3066\u4e0b\u3055\u3044\ud83c\udf40\n\u4eca\u9031\u3082\u9811\u5f35\u308a\u307e\u3059\ud83c\udfb5\n\u5c71\uff30\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898124986,"id_str":"2898124986","name":"\u3072\u308d\u3053\u2606","screen_name":"528yp","location":null,"url":null,"description":"\u5c71\uff30\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u2728\n\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc\u85cd\u6ca2\u5148\u751f\u304c\u5927\u597d\u304d\u3067\u3059\ud83d\udc93\n\u30de\u30a4\u30da\u30fc\u30b9\u306a\u30d0\u30ca\u30casweetie\ud83c\udf40\u3000\u95a2\u897f\u266a","translator_type":"none","protected":false,"verified":false,"followers_count":455,"friends_count":205,"listed_count":2,"favourites_count":9684,"statuses_count":38031,"created_at":"Thu Nov 13 06:29:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851085743514566656\/qxNycfPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851085743514566656\/qxNycfPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898124986\/1497942066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[107,112]},{"text":"sound_tripper","indices":[114,128]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[118,123]},{"text":"sound_tripper","indices":[125,139]}],"urls":[],"user_mentions":[{"screen_name":"528yp","name":"\u3072\u308d\u3053\u2606","id":2898124986,"id_str":"2898124986","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:39 +0000 2017","id":932386418713915392,"id_str":"932386418713915392","text":"\ud83c\udf55 @MartinGarrix the pizza maker https:\/\/t.co\/fbpCQOMBTx","display_text_range":[0,31],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957205621,"id_str":"2957205621","name":"GarrixNews","screen_name":"garrixnews","location":null,"url":"https:\/\/www.instagram.com\/garrixnews\/","description":"Make sure to follow for updates! | Instagram: Garrixnews","translator_type":"none","protected":false,"verified":false,"followers_count":347,"friends_count":155,"listed_count":1,"favourites_count":417,"statuses_count":412,"created_at":"Fri Jan 02 20:24:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904834419353157632\/6bBjyHlp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904834419353157632\/6bBjyHlp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957205621\/1504564314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MartinGarrix","name":"MARTIN GARRIX","id":134234000,"id_str":"134234000","indices":[2,15]}],"symbols":[],"media":[{"id":932385892492292097,"id_str":"932385892492292097","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","url":"https:\/\/t.co\/fbpCQOMBTx","display_url":"pic.twitter.com\/fbpCQOMBTx","expanded_url":"https:\/\/twitter.com\/garrixnews\/status\/932386418713915392\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":900,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":720,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932385892492292097,"id_str":"932385892492292097","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","url":"https:\/\/t.co\/fbpCQOMBTx","display_url":"pic.twitter.com\/fbpCQOMBTx","expanded_url":"https:\/\/twitter.com\/garrixnews\/status\/932386418713915392\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":900,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":720,"h":900,"resize":"fit"}},"video_info":{"aspect_ratio":[4,5],"duration_millis":38992,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/vid\/512x640\/tp0_hakzV_4bnvLD.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/pl\/Bt38vi3d2K5z9qzS.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/vid\/256x320\/f-PuNW-UVSgIgRqg.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:38 +0000 2017","id":932386414578282498,"id_str":"932386414578282498","text":"RT @TheDIYideas: 6 After-School Pizza Recipes\ud83c\udf55\nhttps:\/\/t.co\/Up9rUnsqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35193096,"id_str":"35193096","name":"Spos-I don't know.","screen_name":"Espo61","location":"Ohio\/St.Lou-now\/beach soon","url":null,"description":"predators keep the balance - the only good day was yesterday-","translator_type":"none","protected":false,"verified":false,"followers_count":407,"friends_count":362,"listed_count":4,"favourites_count":1290,"statuses_count":3391,"created_at":"Sat Apr 25 11:23:44 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897076367682129920\/CXrTkEGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897076367682129920\/CXrTkEGG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35193096\/1500153684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 17:50:13 +0000 2017","id":932305023807062016,"id_str":"932305023807062016","text":"6 After-School Pizza Recipes\ud83c\udf55\nhttps:\/\/t.co\/Up9rUnsqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2323945699,"id_str":"2323945699","name":"Recipes GIFs","screen_name":"TheDIYideas","location":"Snapchat : Thediyideas","url":"https:\/\/Twitter.com\/MedicaIGuide","description":"Recipes in an easy to follow video format! Videos belong to their respective owners ( @BuzzFeed ).","translator_type":"none","protected":false,"verified":false,"followers_count":904773,"friends_count":35,"listed_count":2586,"favourites_count":11,"statuses_count":7334,"created_at":"Sun Feb 02 15:30:31 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446520147465883648\/t4LJxkwl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446520147465883648\/t4LJxkwl.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/685180494179205120\/PawIyXBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/685180494179205120\/PawIyXBl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2323945699\/1477672667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":336,"favorite_count":927,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937"}]},"extended_entities":{"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"video","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937","video_info":{"aspect_ratio":[1,1],"duration_millis":198448,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/480x480\/KSPJDe6YqdWkcVII.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/pl\/s-QpXozGtZJ0Xgjb.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/720x720\/XdUlIhdMUSmvQtGX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/240x240\/tUQfAaP7mvy5qHaX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDIYideas","name":"Recipes GIFs","id":2323945699,"id_str":"2323945699","indices":[3,15]}],"symbols":[],"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937"}]},"extended_entities":{"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"video","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937","video_info":{"aspect_ratio":[1,1],"duration_millis":198448,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/480x480\/KSPJDe6YqdWkcVII.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/pl\/s-QpXozGtZJ0Xgjb.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/720x720\/XdUlIhdMUSmvQtGX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/240x240\/tUQfAaP7mvy5qHaX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:38 +0000 2017","id":932386414548934656,"id_str":"932386414548934656","text":"\ud83c\udf55 x33 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:30 +0000 2017","id":932386380621205504,"id_str":"932386380621205504","text":"\ud83c\udf55 x32 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386368940015616,"id_str":"932386368940015616","text":"RT @christinartnd: The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic version\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":625985726,"id_str":"625985726","name":"Chloe \ud83d\udc96","screen_name":"deadringerr_","location":"Scotland, United Kingdom","url":null,"description":"Broken Glass and Broken Bones.","translator_type":"none","protected":false,"verified":false,"followers_count":457,"friends_count":672,"listed_count":1,"favourites_count":14115,"statuses_count":1208,"created_at":"Tue Jul 03 23:38:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455801171962105856\/PY8fwOvq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455801171962105856\/PY8fwOvq.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904792081972985856\/972lEiyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904792081972985856\/972lEiyD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/625985726\/1510776879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:01:04 +0000 2017","id":932322853520887810,"id_str":"932322853520887810","text":"The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic ver\u2026 https:\/\/t.co\/LEtG3lTFAb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130603144,"id_str":"130603144","name":"Christina Rotondo \ud83c\udf85\ud83c\udffb\ud83e\udd36\ud83c\udffb","screen_name":"christinartnd","location":"Nottingham, England","url":"https:\/\/www.youtube.com\/christinashoutsout","description":"I make ambienty rock music.\ud83c\udf19 PR & business contact contact christinartnd@gmail.com \ud83d\udda4http:\/\/www.christinartnd.bigcartel.com","translator_type":"none","protected":false,"verified":false,"followers_count":4479,"friends_count":418,"listed_count":41,"favourites_count":47902,"statuses_count":83377,"created_at":"Wed Apr 07 19:47:29 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930567227413319680\/UT472mMj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930567227413319680\/UT472mMj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130603144\/1510699492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic version here \ud83c\udf55 https:\/\/t.co\/wbRD5yBoF1 https:\/\/t.co\/pjBFKEjcGn","display_text_range":[0,150],"entities":{"hashtags":[{"text":"GetBy","indices":[30,36]}],"urls":[{"url":"https:\/\/t.co\/wbRD5yBoF1","expanded_url":"https:\/\/youtu.be\/14F7huPK9jM","display_url":"youtu.be\/14F7huPK9jM","indices":[127,150]}],"user_mentions":[{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[8,24]}],"symbols":[],"media":[{"id":932322847384535041,"id_str":"932322847384535041","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","url":"https:\/\/t.co\/pjBFKEjcGn","display_url":"pic.twitter.com\/pjBFKEjcGn","expanded_url":"https:\/\/twitter.com\/christinartnd\/status\/932322853520887810\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932322847384535041,"id_str":"932322847384535041","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","url":"https:\/\/t.co\/pjBFKEjcGn","display_url":"pic.twitter.com\/pjBFKEjcGn","expanded_url":"https:\/\/twitter.com\/christinartnd\/status\/932322853520887810\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":3,"favorite_count":9,"entities":{"hashtags":[{"text":"GetBy","indices":[30,36]}],"urls":[{"url":"https:\/\/t.co\/LEtG3lTFAb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932322853520887810","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[8,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GetBy","indices":[49,55]}],"urls":[],"user_mentions":[{"screen_name":"christinartnd","name":"Christina Rotondo \ud83c\udf85\ud83c\udffb\ud83e\udd36\ud83c\udffb","id":130603144,"id_str":"130603144","indices":[3,17]},{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386368872779779,"id_str":"932386368872779779","text":"\u3046\u308f\u3042\u3042\u3042\u3044\uff01\u30d4\u30b6\u306e\u65e5\uff01\n\u4eca\u65e5\u306f\u30d4\u30b6\u3092\u98df\u3079\u308b\u4e88\u611f\uff01\n\u8584\u3044\u751f\u5730\u3082\u539a\u3044\u30d1\u30f3\u307f\u305f\u3044\u306a\u751f\u5730\u3082\u4f55\u3067\u3082\u597d\u304d\ud83d\ude0b\ud83c\udf55\n\u3068\u308a\u3042\u3048\u305a\u8cbc\u308b\u30ab\u30a4\u30ed\u3092\u80cc\u4e2d\u306b\u88c5\u7740\u3057\u3066\u51fa\u767a\uff01 https:\/\/t.co\/Dqcopr2BdU","display_text_range":[0,71],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308475607,"id_str":"3308475607","name":"\u6d66\u548c\u8d64\u7fbd","screen_name":"odoro8","location":null,"url":null,"description":"\u7d75\u30fb\u52d5\u7269\u30fb\u9eba","translator_type":"none","protected":false,"verified":false,"followers_count":67,"friends_count":66,"listed_count":0,"favourites_count":3552,"statuses_count":5485,"created_at":"Fri Aug 07 04:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667765077789966336\/4CJk2chR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667765077789966336\/4CJk2chR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":932378001978818560,"quoted_status_id_str":"932378001978818560","quoted_status":{"created_at":"Sun Nov 19 22:40:13 +0000 2017","id":932378001978818560,"id_str":"932378001978818560","text":"\ud83c\uddee\ud83c\uddf9\u30ca\u30dd\u30ea\u3001\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u767a\u7965\u306e\u5e97\u300e\u30d6\u30e9\u30f3\u30c7\u30a3\u300f\uff08All About\uff09\u30001780\u5e74\u5275\u696d\u3002\u30ca\u30dd\u30ea\u30d4\u30c3\u30c4\u30a1\u3002\u8a18\u5ff5\u306b\u884c\u3063\u3066\u307f\u305f\u3044\u8001\u8217\u306e\u30d4\u30c3\u30c4\u30a7\u30ea\u30a2\u306e\u3072\u3068\u3064\u3067\u3059\u3002\u843d\u3061\u7740\u3044\u3066\u98df\u3079\u3089\u308c\u308b\u5e97\u5185\u306e\u96f0\u56f2\u6c17\u3067\u3001\u89b3\u5149\u5ba2\u3082\u5165\u308a\u3084\u3059\u3044\u306e\u304c\u9b45\u529b\u3002#\u30d4\u30b6\u306e\u65e5\u2026 https:\/\/t.co\/QuITCUfB6z","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110456679,"id_str":"110456679","name":"\u30e8\u30fc\u30ed\u30c3\u30d1\u65c5\u884c\u2708\u60c5\u5831\u90e8","screen_name":"euro_tour","location":"\u5927\u962a\u5e02\u5317\u533a\u540c\u5fc3\uff12\u4e01\u76ee","url":"http:\/\/www.euro-tour.co.jp\/","description":"\u30e8\u30fc\u30ed\u30c3\u30d1\u3001\u77e5\u3063\u30c8\u30af\u60c5\u5831\uff01\u30e8\u30fc\u30ed\u30c3\u30d1\u65c5\u884c\u3084\u8996\u5bdf\u306b\u5f79\u7acb\u3064\u6700\u65b0\u306e\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u7d39\u4ecb\uff01\u2728\u7d76\u666f\u30db\u30c6\u30eb\u3092\u306f\u3058\u3081\u3001\u6cca\u307e\u3063\u3066\u307f\u305f\u3044\u266a \u3068\u3063\u3066\u304a\u304d\u306e\u30db\u30c6\u30eb\u3082\u7d39\u4ecb\uff01\ud83d\udc95http:\/\/www.euro-tour.co.jp\/view-hotel\/","translator_type":"none","protected":false,"verified":false,"followers_count":507212,"friends_count":480454,"listed_count":7715,"favourites_count":805,"statuses_count":31921,"created_at":"Mon Feb 01 16:23:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"1004BD","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/845791107409588224\/0SSh_OOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/845791107409588224\/0SSh_OOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110456679\/1397707059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\ud83c\uddee\ud83c\uddf9\u30ca\u30dd\u30ea\u3001\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u767a\u7965\u306e\u5e97\u300e\u30d6\u30e9\u30f3\u30c7\u30a3\u300f\uff08All About\uff09\u30001780\u5e74\u5275\u696d\u3002\u30ca\u30dd\u30ea\u30d4\u30c3\u30c4\u30a1\u3002\u8a18\u5ff5\u306b\u884c\u3063\u3066\u307f\u305f\u3044\u8001\u8217\u306e\u30d4\u30c3\u30c4\u30a7\u30ea\u30a2\u306e\u3072\u3068\u3064\u3067\u3059\u3002\u843d\u3061\u7740\u3044\u3066\u98df\u3079\u3089\u308c\u308b\u5e97\u5185\u306e\u96f0\u56f2\u6c17\u3067\u3001\u89b3\u5149\u5ba2\u3082\u5165\u308a\u3084\u3059\u3044\u306e\u304c\u9b45\u529b\u3002#\u30d4\u30b6\u306e\u65e5\nhttps:\/\/t.co\/D0rtOyEcbj\n\u27a1\u30a4\u30bf\u30ea\u30a2\u306e\u30db\u30c6\u30eb\uff1ahttps:\/\/t.co\/zUyImIyNTB https:\/\/t.co\/T9cJ7HleAy","display_text_range":[0,171],"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[108,113]}],"urls":[{"url":"https:\/\/t.co\/D0rtOyEcbj","expanded_url":"https:\/\/allabout.co.jp\/gm\/gc\/416340\/","display_url":"allabout.co.jp\/gm\/gc\/416340\/","indices":[114,137]},{"url":"https:\/\/t.co\/zUyImIyNTB","expanded_url":"http:\/\/www.euro-tour.co.jp\/luxury-hotel\/italy.html","display_url":"euro-tour.co.jp\/luxury-hotel\/i\u2026","indices":[148,171]}],"user_mentions":[],"symbols":[],"media":[{"id":932375665613029377,"id_str":"932375665613029377","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":400,"resize":"fit"},"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"}}},{"id":932375689663102976,"id_str":"932375689663102976","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}},{"id":932375709103808512,"id_str":"932375709103808512","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932375665613029377,"id_str":"932375665613029377","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":400,"resize":"fit"},"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"}}},{"id":932375689663102976,"id_str":"932375689663102976","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}},{"id":932375709103808512,"id_str":"932375709103808512","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":15,"favorite_count":45,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[108,113]}],"urls":[{"url":"https:\/\/t.co\/QuITCUfB6z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932378001978818560","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Dqcopr2BdU","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560","display_url":"twitter.com\/euro_tour\/stat\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386365261733893,"id_str":"932386365261733893","text":"dedicate to he \ud83c\udf54\ud83c\udf55\ud83d\udc8b\r\u2764\u2764\u2764\u2764 \rsolo\ud83d\udc9b\u2764","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2155480668,"id_str":"2155480668","name":"$#$\u21ad#$#","screen_name":"iceBleuCheetah","location":null,"url":null,"description":"$$MOLDERINGBOMBSHELL && \u00bf\u00bf %% ## \u007b\u007blovealways\u007d\u007d [xoxo] 9|27|2015 \u2728\u270c\ud83d\udc44\r\r-unhappy","translator_type":"none","protected":false,"verified":false,"followers_count":500,"friends_count":105,"listed_count":1,"favourites_count":118,"statuses_count":861,"created_at":"Fri Oct 25 19:10:43 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512261452330065920\/pQs3u4MY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512261452330065920\/pQs3u4MY.jpeg","profile_background_tile":true,"profile_link_color":"0792B5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489202317850607616\/cfylTBLm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489202317850607616\/cfylTBLm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2155480668\/1405461396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:26 +0000 2017","id":932386365034991617,"id_str":"932386365034991617","text":"RT @tyweezy_: On a pizza date with the prettiest girl ever \ud83c\udf55 https:\/\/t.co\/qTiEjR6C6q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703715598526578688,"id_str":"703715598526578688","name":"karlit!!","screen_name":"karlitaylor_","location":null,"url":"http:\/\/rainymood.com","description":"a lil bee-knee baby (who takes rain very seriously)","translator_type":"none","protected":false,"verified":false,"followers_count":407,"friends_count":579,"listed_count":4,"favourites_count":39248,"statuses_count":16521,"created_at":"Sat Feb 27 22:57:27 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931037506904006658\/QHyIiJxY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931037506904006658\/QHyIiJxY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703715598526578688\/1510811752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 20:28:13 +0000 2017","id":931982394957189120,"id_str":"931982394957189120","text":"On a pizza date with the prettiest girl ever \ud83c\udf55 https:\/\/t.co\/qTiEjR6C6q","display_text_range":[0,46],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69038189,"id_str":"69038189","name":"shooter mcgavin","screen_name":"tyweezy_","location":null,"url":null,"description":"make america grunge again \u2022 Robbie\u2764\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":233,"friends_count":101,"listed_count":2,"favourites_count":30351,"statuses_count":25751,"created_at":"Wed Aug 26 17:18:02 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545310463026679808\/nAwXNBZj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545310463026679808\/nAwXNBZj.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909825333100244992\/f0qG7Okk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909825333100244992\/f0qG7Okk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69038189\/1510812917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":5,"favorite_count":130,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tyweezy_","name":"shooter mcgavin","id":69038189,"id_str":"69038189","indices":[3,12]}],"symbols":[],"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":931982394957189120,"source_status_id_str":"931982394957189120","source_user_id":69038189,"source_user_id_str":"69038189"}]},"extended_entities":{"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":931982394957189120,"source_status_id_str":"931982394957189120","source_user_id":69038189,"source_user_id_str":"69038189"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:23 +0000 2017","id":932386348862005248,"id_str":"932386348862005248","text":"\ud83c\udf55 x31 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:22 +0000 2017","id":932386348245295104,"id_str":"932386348245295104","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4414645693,"id_str":"4414645693","name":"\u3055\u307c\u3066\u3093@23.\u9577\u8eab\u77ed\u5200\u64ae\u5f71","screen_name":"Kyolo108","location":"\u798f\u5ca1","url":"http:\/\/twpf.jp\/Kyolo108","description":"20\u2191\u307e\u3060\u307e\u3060\u64ae\u5f71\u529b\u306a\u3044\u672a\u719f\u8005\u3002\u3068\u3046\u3089\u3076\/\u304a\u305d\u677e\u3055\u3093\/\u30ab\u30b2\u30d7\u30ed\/\u6587\u30b9\u30c8\/\u6df1\u591c\u968a\/A3 etc\nF\u304a\u6c17\u8efd\u306b \u304a\u5225\u308c\u306fB \u8150\u3063\u3066\u307e\u3059\u304c\u8150\u767a\u8a00\u63a7\u3048\u3081\u2190 \u64ae\u5f71\u6280\u8853\u5411\u4e0a\u3092\u76ee\u6307\u3059 \uff01\n\n\u4f7f\u3063\u3066\u308b\u30ab\u30e1\u30e9\u306fCanon\u306e8000D\u3068kissx7\u3001powershot SX610 HS","translator_type":"none","protected":false,"verified":false,"followers_count":323,"friends_count":407,"listed_count":29,"favourites_count":5330,"statuses_count":30357,"created_at":"Mon Nov 30 23:31:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928172672390914048\/d-kYjMZ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928172672390914048\/d-kYjMZ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4414645693\/1506128219","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:22 +0000 2017","id":932386344793501697,"id_str":"932386344793501697","text":"Como le hacen para preferir tener alguien con quien estar el s\u00e1bado por la noche\ud83c\udf7b\ud83d\udc83\ud83c\udffb; que el domingo por la tarde\ud83d\ude34\ud83c\udfac\ud83c\udf55\ud83c\udf7f\ud83c\udf79\n\nSigo sin entender\u2019\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344249047,"id_str":"344249047","name":"BMC'\ud83c\udf38\ud83c\udf43","screen_name":"BeatrizMejiaC12","location":"Valledupar-Colombia ","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":544,"friends_count":340,"listed_count":0,"favourites_count":2013,"statuses_count":8587,"created_at":"Thu Jul 28 19:31:02 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBDAEA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584500984\/i3xqgxdjde8uezjzi5td.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584500984\/i3xqgxdjde8uezjzi5td.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"EADAEB","profile_sidebar_fill_color":"F7E6F7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874042972781850625\/K2K2XtXM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874042972781850625\/K2K2XtXM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344249047\/1437176272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"012d9a8d4001c284","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/012d9a8d4001c284.json","place_type":"city","name":"Valledupar","full_name":"Valledupar, Colombia","country_code":"CO","country":"Colombia","bounding_box":{"type":"Polygon","coordinates":[[[-73.857183,9.793337],[-73.857183,10.855564],[-73.069389,10.855564],[-73.069389,9.793337]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:21 +0000 2017","id":932386343849672705,"id_str":"932386343849672705","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416696247,"id_str":"416696247","name":"\u3042\u306e\u307a\u305f\u3093","screen_name":"anopetan","location":"Team\uff7e\uff86\uff7c\uff74\uff9d\uff80","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":297,"friends_count":639,"listed_count":15,"favourites_count":26427,"statuses_count":13051,"created_at":"Sun Nov 20 01:16:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918728234862198785\/mU2DTJsZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918728234862198785\/mU2DTJsZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416696247\/1491215283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:21 +0000 2017","id":932386340594884608,"id_str":"932386340594884608","text":"\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u79c1\u3001\u30d4\u30b6\u4f5c\u3063\u305f\u3053\u3068\u3042\u308b\u3088\u270c\ufe0f\n\u56de\u305b\u306a\u3044\u3051\u3069\ud83d\ude05\ud83d\udca6\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\ud83c\udf55\n\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u304d\u305f\u306a\u3041\uff5e\n\n\u5c71P\u2764\ufe0f\u3042\u308a\u304c\u3068\u3046\u263a\ufe0f\n\u7d20\u6575\u306a\u4e00\u65e5\u3092\u904e\u3054\u3057\u3066\u30cd\ud83d\ude18\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163260018,"id_str":"3163260018","name":"\u3044\u3061\u3054","screen_name":"moon_disco49","location":null,"url":"http:\/\/ameblo.jp\/13ichigop\/entry-12138918149.html","description":"\u5c71P\u306e\u3053\u3068\u4ee5\u5916\u3001\u8208\u5473\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u9375\u57a2\u3001\u304a\u4eba\u67c4\u304c\u5168\u304f\u898b\u3048\u306a\u3044\u65b9\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\n\u5c71P\u304c\u6b69\u3044\u3066\u3044\u304f\u9053\u3092\u6c38\u9060\u306b\u5fdc\u63f4\u3057\u307e\u3059(\u0e51\u2022\u0300\u1d17- )\u2729","translator_type":"none","protected":false,"verified":false,"followers_count":779,"friends_count":277,"listed_count":5,"favourites_count":3752,"statuses_count":28747,"created_at":"Sun Apr 19 04:21:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163260018\/1502440752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[88,93]},{"text":"sound_tripper","indices":[99,113]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:20 +0000 2017","id":932386338912944128,"id_str":"932386338912944128","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":359913501,"id_str":"359913501","name":"\u307e\u3086\u3086\u306f\u2665\u6c421114\u2665BEAVER","screen_name":"milky1star","location":"\u3055\u3063\u307d\u308d\u526f\u90fd\u5fc3","url":"http:\/\/ameblo.jp\/maach-milky1star\/","description":"#lovefighters\n\u5ca1\u5927\u6d77\u3001\u6cf0\u793a\u3001\u512a\u5fc3\u3001\u5bae\u897f\u3055\u3093\u3001\u6709\u539f\u304f\u3093\uff01\n\u5143\u9060\u5f81\u3053\u3058\u3089\u305b\u3002aiko\u672c\u547d\nSUPER BEAVER\u304c\u4eca\u304d\u3066\u308b\uff01\uff01\uff01\n\uff3c\u30ab\u30f3\u30d1\u30cd\u30e9\u30fc\u3092\u76ee\u6307\u3059\u4eba\u751f\uff0f\n\u5ca1\u5d0e\u4f53\u80b21028\u3001WANIMA1104\u3001\u30ad\u30e5\u30a6\u30bd\n\u30b2\u30c3\u30bf\u30fc\u30ba\u98ef\u7530\u3055\u3093\u597d\u304d\nKANA\u3055\u3093\u00b7\u67f3\u7530\u53f2\u592a\u3055\u3093\u63a8\u3057\u3066\u307e\u3059","translator_type":"none","protected":false,"verified":false,"followers_count":172,"friends_count":330,"listed_count":2,"favourites_count":16022,"statuses_count":34095,"created_at":"Mon Aug 22 11:27:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/860839485625442304\/TvTl15ax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/860839485625442304\/TvTl15ax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359913501\/1494075104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:18 +0000 2017","id":932386327818989568,"id_str":"932386327818989568","text":"\u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898499051,"id_str":"2898499051","name":"\u306e\u3063\u3053","screen_name":"nokko_0409","location":null,"url":null,"description":"\u5c71\uff30\u306e\u767a\u3059\u308b\u6e29\u5ea6\u304c\u582a\u3089\u306a\u304f\u597d\u304d","translator_type":"none","protected":false,"verified":false,"followers_count":81,"friends_count":107,"listed_count":1,"favourites_count":5472,"statuses_count":5618,"created_at":"Thu Nov 13 13:02:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898499051\/1471783413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[94,99]},{"text":"sound_tripper","indices":[100,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:14 +0000 2017","id":932386313197699072,"id_str":"932386313197699072","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":903444541222543360,"id_str":"903444541222543360","name":"tomato","screen_name":"happy042967","location":null,"url":null,"description":"\u30a2\u30e9\u30b5\u30fc\u3067\u3001\u30c9\u30e9\u30de\u3001\u98df\u54c1\u3001\u751f\u6d3b\u7528\u54c1\u3001\u5316\u7ca7\u54c1\u3001\u6d0b\u670d\u306a\u3069\u6700\u65b0\u60c5\u5831\u3092\u8abf\u3079\u308b\u5927\u597d\u304d\u3067\u3059\u2764\ufe0f\u98df\u3092\u3059\u308b\u4e8b\u304c\u5927\u597d\u304d\u2764\ufe0f\u5927\u4eba\u306b\u306a\u3063\u3066\u3082\u307e\u3059\u304c\u3001\u6bce\u65e5\u304a\u3084\u3064\u3092\u98df\u3079\u3066\u3044\u307e\u3059\ud83e\udd5e\u666e\u6bb5\u3001\u30c4\u30a4\u30fc\u30c8\u3092\u305f\u304f\u3055\u3093\u6d41\u3057\u307e\u3059\u306e\u3067\u3001\u3054\u8ff7\u60d1\u304a\u639b\u3051\u3057\u307e\u3059\u304c\u3001\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude47\u203b\u4e0d\u9069\u5207\u306a\u884c\u70ba\u306e\u3042\u308b\u4eba\u3084\u30d3\u30b8\u30cd\u30b9\u3084\u30bb\u30fc\u30eb\u30b9\u306a\u3069\u307f\u3089\u308c\u308b\u4eba\u306f\u3001\u30d6\u30ed\u30c3\u30af\u3044\u305f\u3057\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":115,"friends_count":806,"listed_count":0,"favourites_count":6523,"statuses_count":9168,"created_at":"Fri Sep 01 02:28:58 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903454711746969604\/ytYTlrtS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903454711746969604\/ytYTlrtS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/903444541222543360\/1505828179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:13 +0000 2017","id":932386306902118401,"id_str":"932386306902118401","text":"RT @GabanaMultiespa: Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo x\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459866022,"id_str":"2459866022","name":"Gabana Multiespacio","screen_name":"GabanaMultiespa","location":"Navarro- Buenos Aires","url":null,"description":"Gabana Multiespacio.","translator_type":"none","protected":false,"verified":false,"followers_count":2422,"friends_count":822,"listed_count":0,"favourites_count":1036,"statuses_count":1815,"created_at":"Wed Apr 23 15:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459866022\/1471126180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 14:57:45 +0000 2017","id":931536843358777345,"id_str":"931536843358777345","text":"Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo\u2026 https:\/\/t.co\/t2YkIEF3j5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459866022,"id_str":"2459866022","name":"Gabana Multiespacio","screen_name":"GabanaMultiespa","location":"Navarro- Buenos Aires","url":null,"description":"Gabana Multiespacio.","translator_type":"none","protected":false,"verified":false,"followers_count":2422,"friends_count":822,"listed_count":0,"favourites_count":1036,"statuses_count":1815,"created_at":"Wed Apr 23 15:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459866022\/1471126180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo x FAV y RT para el domingo\ud83c\udf7b\ud83e\udd42\ud83d\ude0e\ud83d\ude18","display_text_range":[0,146],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":84,"favorite_count":127,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t2YkIEF3j5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931536843358777345","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GabanaMultiespa","name":"Gabana Multiespacio","id":2459866022,"id_str":"2459866022","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:12 +0000 2017","id":932386306344214529,"id_str":"932386306344214529","text":"\u5c71P\ud83d\udc95\u7686\u3055\u3093\u304a\u306f\u3088\u30fc\ud83d\udc95\n\n\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u597d\u304d\u306d\u2728\u30d4\u30b6\u4f5c\u3063\u3066\u307f\u305f\u3044\u306e\u301c\u6b21\u56de\u306e\u4f1a\u5831\u3067\u3069\u3046\u2753\n\nparticipate\u2728\u53c2\u52a0\u3059\u308b\n\u5ca1\u7530\u304f\u3093\u3068\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u53c2\u52a0\u3057\u305f\u3093\u3060\ud83d\ude0a\n\u671d\u307e\u3067\u751f\u5c71P\ud83d\udc95\u306b\u53c2\u52a0\u3057\u305f\u3044\u3088\ud83d\udc95\n\u83ef\u9053\u3068\u8336\u9053\u2192\u2026 https:\/\/t.co\/c5U1swLNxT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771889586104590336,"id_str":"771889586104590336","name":"avopp","screen_name":"pyama_dream","location":null,"url":null,"description":"FF\u3067\u5c71P\u306b\u3068\u308a\u3064\u304b\u308c\u3066\u3057\u307e\u3044\u307e\u3057\u305f\uff08\u2267\u2207\u2266\uff09 \u512a\u3057\u3044sweetie\u306e\u65b9\u3068\u304a\u8a71\u51fa\u6765\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\u5e45\u5e83\u3044sweetie\u306e\u7686\u3055\u3093\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044 H29.4.20 \u30fb8.4 ST\u306b\u3066\u304a\u30cf\u30ac\u30ad\u8aad\u307e\u308c\u305f\u5947\u8de1\u2728","translator_type":"none","protected":false,"verified":false,"followers_count":324,"friends_count":144,"listed_count":4,"favourites_count":31213,"statuses_count":28050,"created_at":"Sat Sep 03 01:56:33 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851318494561837058\/QpFCEp_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851318494561837058\/QpFCEp_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771889586104590336\/1487490314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u5c71P\ud83d\udc95\u7686\u3055\u3093\u304a\u306f\u3088\u30fc\ud83d\udc95\n\n\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u597d\u304d\u306d\u2728\u30d4\u30b6\u4f5c\u3063\u3066\u307f\u305f\u3044\u306e\u301c\u6b21\u56de\u306e\u4f1a\u5831\u3067\u3069\u3046\u2753\n\nparticipate\u2728\u53c2\u52a0\u3059\u308b\n\u5ca1\u7530\u304f\u3093\u3068\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u53c2\u52a0\u3057\u305f\u3093\u3060\ud83d\ude0a\n\u671d\u307e\u3067\u751f\u5c71P\ud83d\udc95\u306b\u53c2\u52a0\u3057\u305f\u3044\u3088\ud83d\udc95\n\u83ef\u9053\u3068\u8336\u9053\u2192\u83ef\u9053\u304c\u3044\u3044\n\u30b3\u30f3\u30b5\u30fc\u30c8\u3067\u5c71P\u304c\u83ef\u98fe\u308b\u2049\ufe0f\u7b11\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","display_text_range":[0,161],"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[141,146]},{"text":"sound_tripper","indices":[147,161]}],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c5U1swLNxT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386306344214529","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:09 +0000 2017","id":932386292406480896,"id_str":"932386292406480896","text":"\u4eca\u65e5\u306f\u3001\u3001\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u30a4\u30bf\u30ea\u30a2\u3092\u7d71\u4e00\u3057\u305f\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983\u306b\u3001\u30d4\u30b6\u8077\u4eba\u304c\u30a4\u30bf\u30ea\u30a2\u56fd\u65d7\u8272\u3092\u6a21\u3057\u305f\u30d4\u30b6\u3092\u732e\u4e0a\u3057\u305f\u306e\u304c\u3001\u300e\u30d4\u30c3\u30c4\u30a1\u30fb\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u300f\u306e\u59cb\u307e\u308a\u306a\u3093\u3060\u3063\u3066\u2606\n\u304a\u3082\u3066\u306a\u3057\u3063\u3066\u3001\u3044\u3044\u306d\u3063\u3063\ud83c\udf52\n#\u30d4\u30b6\u306e\u65e5 \n#\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983\n#\u30de\u30eb\u30b2\u30ea\u30fc\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":889323150080651266,"id_str":"889323150080651266","name":"\u3061\u3047\u308a\u30fc\u3061\u3047\u308a\u30fc","screen_name":"cccherry61","location":"JAPAN\ud83c\udf0f\ud83d\uddfe\ud83c\udf8c","url":null,"description":"\u6642\u4ee3\u306e\u6d41\u308c\u306b\u4ed8\u3044\u3066\u3044\u3051\u305a\u3001\u662d\u548c\u3067\u30b9\u30c8\u30c3\u30d7\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u3001\u3001\u3068\u308a\u3042\u3048\u305a\u59cb\u3081\u3066\u307f\u307e\u3057\u305f\ud83c\udf52\n\u5e83\u5cf6\u306e\u304a\u597d\u307f\u713c\u304d\u3092\u3001\u5e83\u5cf6\u98a8\u3067\u306f\u306a\u304f\u3001\u300e\u5e83\u5cf6\u6d41\u300f\u3068\u8a00\u308f\u308c\u308b\u65e5\u3092\u5922\u898b\u3066\u307e\u3059\ud83d\ude0b","translator_type":"none","protected":false,"verified":false,"followers_count":39,"friends_count":51,"listed_count":0,"favourites_count":832,"statuses_count":1174,"created_at":"Mon Jul 24 03:15:36 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912830809794527232\/ZFRd7o8t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912830809794527232\/ZFRd7o8t_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[96,101]},{"text":"\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983","indices":[103,112]},{"text":"\u30de\u30eb\u30b2\u30ea\u30fc\u30bf","indices":[113,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:09 +0000 2017","id":932386291550863360,"id_str":"932386291550863360","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4035738078,"id_str":"4035738078","name":"\u307e\u3086\u304d\u306d\u3053@\u7d75\u304c\u4e0a\u624b\u304f\u306a\u308a\u305f\u3044","screen_name":"mayukineko26","location":"\u3061\u304d\u3085\u3046\u306e\u3069\u3053\u304b","url":null,"description":"\u30b2\u30fc\u30e0\u2192\u30a2\u30a4\u30ca\u30ca\u3000\u767d\u3001\u9ed2\u732b \u30c9\u30e9\u30af\u30a810\u3000\u30d5\u30a7\u30a2\u30c9\u30eb\u3000\u30a8\u30eb\u30d7\u30ea\u3000\u305f\u307e\u306b\u30c7\u30ec\u30b9\u30c6\n\u30a2\u30cb\u30e1\u2192\u30ea\u30eb\u30ea\u30eb\u30d5\u30a7\u30a2\u30ea\u30eb\u3000\u30f4\u30a1\u30f3\u30ac\u3000\uff24\uff22\n\u6ac2\u304f\u3093\u5927\u597d\u304d(*\u00b4-`)\u3000\u63a8\u3057\u306f\u3044\u3063\u3071\u3044\u3002\n\u30ab\u30df\u30e5\u30d9\u30ed\u597d\u304d\uff01\u7d75\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u304f\u308c\u305f\u3089\u6ce3\u3044\u3066\u559c\u3076\u3002\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u2026http:\/\/twpf.jp\/mayukineko26\n\u30ec\u30d9\u30eb\u30e1\u30a2\u3061\u3083\u3093\u306e\u30b0\u30c3\u30ba\u304f\u3060\u3055\u3044","translator_type":"none","protected":false,"verified":false,"followers_count":160,"friends_count":520,"listed_count":1,"favourites_count":6194,"statuses_count":1646,"created_at":"Tue Oct 27 13:24:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909920742887776256\/3vdxKd2d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909920742887776256\/3vdxKd2d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035738078\/1509380590","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:05 +0000 2017","id":932386276690378752,"id_str":"932386276690378752","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405598410,"id_str":"405598410","name":"\u30ea\u30aa\u30ca\u3071\u306f","screen_name":"rionaryusei","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":46,"listed_count":0,"favourites_count":4,"statuses_count":223,"created_at":"Sat Nov 05 14:50:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:05 +0000 2017","id":932386273930518528,"id_str":"932386273930518528","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736536837733285888,"id_str":"736536837733285888","name":"Mitsuru@\u30e9\u30d6\u30a4\u30f3\u30d1\u30af\u30c8\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\u266a","screen_name":"air_326rr","location":"\u300e\u5fc3\u795e\u300f\u8a66\u9a13\u98db\u884c\u5730","url":"http:\/\/www.pixiv.net\/member.php?id=16419769","description":"\u65e5\u3005\u7cbe\u9032\u4e2d\u306e\u540c\u4eba\u7d75\u63cf\u304d\u3002\u30b3\u30d4\u30c3\u30af\u6c11\u266a \u516c\u79c1\u3067\u5275\u4f5c\u6d3b\u52d5\u3092\uff76\uff9e\uff9d\uff8a\uff9e\u3063\u3066\u3089\u3063\u3057\u3083\u308b\u7686\u69d8\u3092\u5fdc\u63f4\u4e2d\u266a\u7a42\u4e43\u679c\u3061\u3083\u3093&\u66dc\u3061\u3083\u3093\u63a8\u3057\u266aRT\u591a\u3081\u3002\u7121\u65ad\u8ee2\u8f09\u7981\u6b62\uff83\uff9e\uff7d\u3002\u30d5\u30a9\u30ed\u30fc\u3001RT\u306f\u304a\u6c17\u8efd\u306b\u266a\u30b3\u30c1\u30e9\u3082\u3069\u30fc\u305e\u2192http:\/\/twpf.jp\/air_326rr\u304a\u984c\u7bb1\u2192https:\/\/odaibako.net\/u\/air_326rr","translator_type":"none","protected":false,"verified":false,"followers_count":598,"friends_count":405,"listed_count":47,"favourites_count":64209,"statuses_count":47883,"created_at":"Sat May 28 12:37:21 +0000 2016","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930641699897929728\/1aXb3xbM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930641699897929728\/1aXb3xbM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736536837733285888\/1507412237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:59 +0000 2017","id":932386249276407808,"id_str":"932386249276407808","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98824360,"id_str":"98824360","name":"\u306a\u304c\u307f\u306d\u307e\u304d","screen_name":"macky_demons","location":"\u5bb6","url":"http:\/\/www.pixiv.net\/member.php?id=1515345","description":"FGO\u3001\u30a2\u30ba\u30ec\u30f3\u3001\u80b2\u5150\uff08 #2014Dec_baby \u3001 #2016Nov_baby \uff09\u3001\u4e0b\u30cd\u30bf\u3001\u611a\u75f4\u3092\u5927\u91cf\u306b\u545f\u304d\u307e\u3059\u3002RT\u591a\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u7d1b\u308c\n#\u606f\u5b50\u3055\u3093\u30ec\u30dd\u30fc\u30c8\n\u30d8\u30c3\u30c0\u30fc\u306f\u00a9sega","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":166,"listed_count":26,"favourites_count":5286,"statuses_count":95731,"created_at":"Wed Dec 23 07:26:50 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158565189\/hEK6oLNx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158565189\/hEK6oLNx.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/765533893311107072\/MSqT-MtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/765533893311107072\/MSqT-MtU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98824360\/1432874508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:57 +0000 2017","id":932386239352852482,"id_str":"932386239352852482","text":"\ud83c\udf55 x30 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:53 +0000 2017","id":932386225352314881,"id_str":"932386225352314881","text":"Thank you mbc2 , this horror movie is on the right time \ud83d\udc7b\ud83c\udf55.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1925287112,"id_str":"1925287112","name":"Mesh\u0645\u0627\u063a\u064a\u0631\u0647\u0627\ud83c\uddf8\ud83c\udde6","screen_name":"mesh_898","location":null,"url":null,"description":"\u203a \u032e \u0627\u0644\u0644\u0647\u0645 \u0633\u0647\u0644 \u062f\u0631\u0628\u064a \u0648\u0627\u063a\u0641\u0631\u0644\u064a \u0648\u0627\u0631\u062d\u0645\u0646\u064a \u064a \u0627\u0631\u062d\u0645 \u0627\u0644\u0631\u0627\u062d\u0645\u064a\u0646 ~ #\u0623\u0645\u064a_\u0648\u0643\u0641\u0649","translator_type":"none","protected":false,"verified":false,"followers_count":892,"friends_count":1025,"listed_count":1,"favourites_count":2012,"statuses_count":5977,"created_at":"Wed Oct 02 01:49:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817757282138263552\/mmjL-f_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817757282138263552\/mmjL-f_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1925287112\/1483803169","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:52 +0000 2017","id":932386220805570560,"id_str":"932386220805570560","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310111541,"id_str":"2310111541","name":"Sachiko\ud83c\udf0825th\u2661","screen_name":"stk_aeo","location":"Osaka","url":null,"description":"\u5948\u7f8e\u6075\u3055\u3093\u3068\u98db\u884c\u6a5f\u304c\u597d\u304d\u3067\u3059\u3002\n\u4eca\u5e74\u306f1\/8\u30689\/16\u306b\u5948\u7f8e\u6075\u3055\u3093\u306b\u4f1a\u3046\u2661\u2661\u2661","translator_type":"none","protected":false,"verified":false,"followers_count":188,"friends_count":345,"listed_count":2,"favourites_count":1210,"statuses_count":20402,"created_at":"Sat Jan 25 14:12:12 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539789255371796480\/H5DBBpte.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539789255371796480\/H5DBBpte.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904120394411524096\/DwpUHO4I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904120394411524096\/DwpUHO4I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310111541\/1506380606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:47 +0000 2017","id":932386200773677056,"id_str":"932386200773677056","text":"RT @SaraBethSimon: @achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (secret)\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925004551127576576,"id_str":"925004551127576576","name":"Soham214","screen_name":"BDS_justice4all","location":"Texas, USA","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":146,"friends_count":49,"listed_count":1,"favourites_count":2204,"statuses_count":4835,"created_at":"Mon Oct 30 14:20:45 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925030534136209409\/4k9mT7uB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925030534136209409\/4k9mT7uB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925004551127576576\/1510773482","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 20:18:16 +0000 2017","id":932342282052947972,"id_str":"932342282052947972","text":"@achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (se\u2026 https:\/\/t.co\/wB4y1Ki254","display_text_range":[81,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":932300588825694209,"in_reply_to_status_id_str":"932300588825694209","in_reply_to_user_id":22408314,"in_reply_to_user_id_str":"22408314","in_reply_to_screen_name":"achariw","user":{"id":947586372,"id_str":"947586372","name":"Sara Elizabeth Sim\u00f6n","screen_name":"SaraBethSimon","location":null,"url":null,"description":"#Psychology \u2022 #Psychiatry \u2022 #Behavior \u2022 #NLP \u2022 #Neuroscience \u2022 Ethical #Vegan https:\/\/t.co\/XiFGS0alKg \u2022 In love with the #Ocean https:\/\/t.co\/5u0v5yuwJp","translator_type":"none","protected":false,"verified":false,"followers_count":2458,"friends_count":450,"listed_count":308,"favourites_count":839,"statuses_count":15765,"created_at":"Wed Nov 14 11:46:16 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/707918880853856257\/jDnXU1NT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/707918880853856257\/jDnXU1NT.jpg","profile_background_tile":true,"profile_link_color":"43A6A5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876522831642800133\/iSxJk_bN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876522831642800133\/iSxJk_bN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947586372\/1478786999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (secret) lavish #AliceInWonderland party or flying $65K worth of \ud83c\udf55 & \ud83c\udf2d from Chicago in the middle of the recession. \n\nhttps:\/\/t.co\/bABFUaJT25 \n\n#QAnon #DownTheRabbitHole #FollowTheWhiteRabbit ; pic via @wikileaks https:\/\/t.co\/CTaigE49zJ","display_text_range":[81,328],"entities":{"hashtags":[{"text":"AliceInWonderland","indices":[128,146]},{"text":"QAnon","indices":[260,266]},{"text":"DownTheRabbitHole","indices":[267,285]},{"text":"FollowTheWhiteRabbit","indices":[286,307]}],"urls":[{"url":"https:\/\/t.co\/bABFUaJT25","expanded_url":"http:\/\/www.dailymail.co.uk\/news\/article-2926312\/Was-Lewis-Carroll-repressed-paedophile-BBC-documentary-examines-relationship-children-uncovers-shocking-naked-photo-real-Alice-s-sister-taken-Alice-Wonderland-creator.html","display_url":"dailymail.co.uk\/news\/article-2\u2026","indices":[234,257]}],"user_mentions":[{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[0,8]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[9,22]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[23,34]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[35,44]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[45,56]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[57,66]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[67,80]},{"screen_name":"wikileaks","name":"WikiLeaks","id":16589206,"id_str":"16589206","indices":[318,328]}],"symbols":[],"media":[{"id":932341712474787840,"id_str":"932341712474787840","indices":[329,352],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","url":"https:\/\/t.co\/CTaigE49zJ","display_url":"pic.twitter.com\/CTaigE49zJ","expanded_url":"https:\/\/twitter.com\/SaraBethSimon\/status\/932342282052947972\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932341712474787840,"id_str":"932341712474787840","indices":[329,352],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","url":"https:\/\/t.co\/CTaigE49zJ","display_url":"pic.twitter.com\/CTaigE49zJ","expanded_url":"https:\/\/twitter.com\/SaraBethSimon\/status\/932342282052947972\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":13,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wB4y1Ki254","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932342282052947972","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[0,8]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[9,22]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[23,34]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[35,44]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[45,56]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[57,66]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[67,80]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SaraBethSimon","name":"Sara Elizabeth Sim\u00f6n","id":947586372,"id_str":"947586372","indices":[3,17]},{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[19,27]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[28,41]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[42,53]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[54,63]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[64,75]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[76,85]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[86,99]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:47 +0000 2017","id":932386200769277952,"id_str":"932386200769277952","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925127550,"id_str":"925127550","name":"MUSASINO\u30e2\u30ea\u30c8","screen_name":"musamorito","location":"\u57fc\u7389\u306e\u65b9","url":"http:\/\/blogs.yahoo.co.jp\/e331tx","description":"\u9244(\u9053\u6210)\u5206\u304c\u591a\u3044\u4eba\u3002 \u4e3b\u306b\u30cb\u30c1\u30a2\u30b5\u3084\u30d7\u30e9\u30ec\u30fc\u30eb\u3001\u30d7\u30ea\u30ad\u30e5\u30a2\u3001N\u30b2\u30fc\u30b8\u3001\u9244\u9053\u3001\u99c5\u30e1\u30e2\u3001TF\u3001\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u30d2\u30ab\u30ea\u30a2\u30f3\u3001\u3054\u3061\u3046\u3055\u3001\u30a2\u30cb\u30e1\u306a\u3069\u304c\u597d\u304d\u306a\u4eba\u3067\u3059\u3002 \u7d50\u69cb\u591a\u8da3\u5473\u3002\n\u8a73\u3057\u3044\u3053\u3068\u306f \u30c4\u30a4\u30d7\u30ed\u3078\u3000http:\/\/twpf.jp\/musamorito","translator_type":"none","protected":false,"verified":false,"followers_count":1995,"friends_count":2136,"listed_count":33,"favourites_count":38179,"statuses_count":117047,"created_at":"Sun Nov 04 11:05:44 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C16543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914490076528119808\/oBHUvRjw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914490076528119808\/oBHUvRjw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925127550\/1502719068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:43 +0000 2017","id":932386181844754433,"id_str":"932386181844754433","text":"\ud83c\udf55 x29 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:42 +0000 2017","id":932386176442310656,"id_str":"932386176442310656","text":"RT @KITKATJapan: \u30d4\u30b6\u3068\u3044\u3048\u3070\ud83c\udf55\n\u3053\u3093\u306a\u5922\u306e\u30b3\u30e9\u30dc\u304c\u3042\u3063\u305f\u306e\u77e5\u3063\u3066\u3044\u307e\u3057\u305f\u304b\uff1f\n\u30b5\u30af\u30c3\u3068\u3057\u305f\u30d4\u30b6\u751f\u5730\u306b\u3001\u9999\u3070\u3057\u3044 #\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8\uff65\uff65\uff65\n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3 https:\/\/t.co\/KKpGi\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141661988,"id_str":"141661988","name":"\u30ab\u30a4","screen_name":"kaimimaa","location":"\u5929\u56fd\u3068\u5730\u7344\u306e\u9593\u3002\u3064\u307e\u308a\u3053\u306e\u4e16\u3001\u73fe\u4e16\u3002","url":null,"description":"\u5bdd\u3066\u3082\u9192\u3081\u3066\u3082\u6709\u9802\u5929\u3063\u3066\u4eba\u9593\u3084\u3063\u3066\u307e\u3057\u305f\u2606 \u7269\u5fc3\u3064\u3044\u305f\u6642\u304b\u3089\u597d\u304d\u306a\u7269\u304c\u5909\u308f\u3063\u3066\u307e\u305b\u3093\u3002 2\u67088\u65e5\u751f\u307e\u308c\uff08\u30b8\u30a7\u30fc\u30e0\u30b9\u30fb\u30c7\u30a3\u30fc\u30f3\u3068\u540c\u3058(\u7b11)\uff09\u6bd2\u5410\u304d\u5996\u602a\u2606","translator_type":"regular","protected":false,"verified":false,"followers_count":496,"friends_count":665,"listed_count":6,"favourites_count":8918,"statuses_count":75250,"created_at":"Sat May 08 17:35:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/854588207647805440\/k3rEkQ6e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/854588207647805440\/k3rEkQ6e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141661988\/1444257125","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:01:01 +0000 2017","id":932383239020281856,"id_str":"932383239020281856","text":"\u30d4\u30b6\u3068\u3044\u3048\u3070\ud83c\udf55\n\u3053\u3093\u306a\u5922\u306e\u30b3\u30e9\u30dc\u304c\u3042\u3063\u305f\u306e\u77e5\u3063\u3066\u3044\u307e\u3057\u305f\u304b\uff1f\n\u30b5\u30af\u30c3\u3068\u3057\u305f\u30d4\u30b6\u751f\u5730\u306b\u3001\u9999\u3070\u3057\u3044 #\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8\uff65\uff65\uff65\n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3 https:\/\/t.co\/KKpGiwj4Rv","display_text_range":[0,103],"source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":17,"favorite_count":46,"entities":{"hashtags":[{"text":"\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8","indices":[48,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931463089534377985,"id_str":"931463089534377985","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","url":"https:\/\/t.co\/KKpGiwj4Rv","display_url":"pic.twitter.com\/KKpGiwj4Rv","expanded_url":"https:\/\/twitter.com\/KITKATJapan\/status\/932383239020281856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":698,"h":508,"resize":"fit"},"large":{"w":698,"h":508,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931463089534377985,"id_str":"931463089534377985","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","url":"https:\/\/t.co\/KKpGiwj4Rv","display_url":"pic.twitter.com\/KKpGiwj4Rv","expanded_url":"https:\/\/twitter.com\/KITKATJapan\/status\/932383239020281856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":698,"h":508,"resize":"fit"},"large":{"w":698,"h":508,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8","indices":[65,74]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:41 +0000 2017","id":932386173577781249,"id_str":"932386173577781249","text":"RT @BlaguesDessins: #CommanderUnePizza \ud83c\udf55 :\nImitez la voix de la personne qui prend les commandes.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120322976,"id_str":"120322976","name":"niiitooo","screen_name":"tonidemantes","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":408,"friends_count":1035,"listed_count":30,"favourites_count":25481,"statuses_count":37895,"created_at":"Sat Mar 06 03:21:45 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034410346412\/ebe8232b8a7d4957ddce28bdab3a0f6a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034410346412\/ebe8232b8a7d4957ddce28bdab3a0f6a.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907362372012167170\/1eLuUX0t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907362372012167170\/1eLuUX0t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120322976\/1502054764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:06 +0000 2017","id":932383005703884801,"id_str":"932383005703884801","text":"#CommanderUnePizza \ud83c\udf55 :\nImitez la voix de la personne qui prend les commandes.","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire - Go Big\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2580787003,"id_str":"2580787003","name":"Blagues et Dessins","screen_name":"BlaguesDessins","location":null,"url":"http:\/\/www.blagues-et-dessins.com","description":"Peut-on rire de tout ? Oui, mais pas avec n'importe qui... Et vous n'\u00eates pas n'importe qui !!!\n#Humour #Blagues","translator_type":"none","protected":false,"verified":false,"followers_count":87306,"friends_count":84477,"listed_count":147,"favourites_count":2381,"statuses_count":14343,"created_at":"Sat Jun 21 17:16:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480399548964032512\/fspSswgP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480399548964032512\/fspSswgP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2580787003\/1408010683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":5,"entities":{"hashtags":[{"text":"CommanderUnePizza","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CommanderUnePizza","indices":[20,38]}],"urls":[],"user_mentions":[{"screen_name":"BlaguesDessins","name":"Blagues et Dessins","id":2580787003,"id_str":"2580787003","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:37 +0000 2017","id":932386157773570049,"id_str":"932386157773570049","text":"\u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","display_text_range":[0,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350712503,"id_str":"350712503","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","screen_name":"JUN_WADS","location":null,"url":"http:\/\/otoloop.com","description":"\u30aa\u30c8\u30eb\u30fc\u30d7\u306e\u30c9\u30e9\u30e0&\u30b3\u30fc\u30e9\u30b9\u3001\u30cb\u30b8\u30de\u30b9\u25fc\ufe0e\u6700\u65b0\u30ea\u30ea\u30c3\u30af\u30e0\u30fc\u30d3\u30fc\u3010\u30ea\u30cf\u30ed\u3011https:\/\/youtu.be\/tqAXgYBZ_Y8\u25fc\ufe0eMV\u3010\u3053\u3068\u3070\u3092\u77e5\u308a\u305f\u3044\u3011https:\/\/youtu.be\/pU7k2raunCo\u3010\u30a2\u30de\u30ce\u30b8\u30e3\u30af\u306e\u72ec\u767d\u3011https:\/\/youtu.be\/2kEpbSRUdVA","translator_type":"none","protected":false,"verified":false,"followers_count":9587,"friends_count":10541,"listed_count":59,"favourites_count":28740,"statuses_count":15646,"created_at":"Mon Aug 08 06:02:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350712503\/1387300819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:36 +0000 2017","id":932386151901683717,"id_str":"932386151901683717","text":"Eating Pizza \ud83c\udf55 and watching the Patriots! @ Oggi's Sports Brewhouse\u2026 https:\/\/t.co\/6brKa3Whtl","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5793962,"id_str":"5793962","name":"Rockedby","screen_name":"rickmoffett","location":"\u00dcT: 33.871559,-117.917107","url":"http:\/\/rockedbythreeshots.com\/","description":"Pod-caster, Disney Cast Member, Music fan and Craft Beer Connoisseur.\nSubmit Music to rickmoffett@gmail.com","translator_type":"none","protected":false,"verified":false,"followers_count":344,"friends_count":1479,"listed_count":14,"favourites_count":482,"statuses_count":6271,"created_at":"Sat May 05 19:05:02 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594367086350114816\/sIkQvxZJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594367086350114816\/sIkQvxZJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5793962\/1430285808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[33.874428,-117.884559]},"coordinates":{"type":"Point","coordinates":[-117.884559,33.874428]},"place":{"id":"2feb76248fd9c581","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2feb76248fd9c581.json","place_type":"city","name":"Fullerton","full_name":"Fullerton, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-117.985941,33.853881],[-117.985941,33.924814],[-117.863844,33.924814],[-117.863844,33.853881]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6brKa3Whtl","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsd_KolDzJjcAyjz_i89mx-VpoVmvbnzKrgtM0\/","display_url":"instagram.com\/p\/Bbsd_KolDzJj\u2026","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:35 +0000 2017","id":932386147887489024,"id_str":"932386147887489024","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1021474712,"id_str":"1021474712","name":"\u307f\u308f","screen_name":"miwakoko_","location":"\u30e9\u30ca\u30f3\u30ad\u30e5\u30e9\u30b9\u306e\u4e2d","url":"http:\/\/twpf.jp\/miwakoko_","description":"\ud83d\udc90\ud83c\udf37\u82b1\u3068\u6d77\u5916\u30a2\u30cb\u30e1\u3068\u6620\u753b\u3068\u304a\u3058\u69d8\u304c\u4e3b\u6210\u5206\ud83c\udf37\ud83d\udc90","translator_type":"none","protected":false,"verified":false,"followers_count":327,"friends_count":325,"listed_count":2,"favourites_count":10454,"statuses_count":15811,"created_at":"Wed Dec 19 06:30:15 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/868751049674244096\/bivBGkN3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/868751049674244096\/bivBGkN3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1021474712\/1493386329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:32 +0000 2017","id":932386138022584320,"id_str":"932386138022584320","text":"@Pz62 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059( \u00b4 \u25bd ` )\uff89\n\u30d4\u30b6\u306e\u65e5\u306a\u3093\u3067\u3059\u306d\u3002\n\u30d3\u30fc\u30eb\ud83c\udf7a\u3068\u30d4\u30b6\ud83c\udf55\u306e\u7d44\u307f\u5408\u308f\u305b\n\u6700\u9ad8\u3067\u3059\u306d\u3002\ud83d\ude04\u2728\n\u571f\u66dc\u65e5\u306f\u3001\u96e8\u964d\u3063\u305f\u308a\u6b62\u3093\u3060\u3059\u308b\u4e2d\n\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\u3068\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\n\u5f92\u6b69\u79fb\u52d5\u3067\u6b69\u6570\u8a08\u30672\u4e078\u5343\u6b69\u8d85\u3048\u3066\u307e\u3057\u305f\u3002\u7d42\u65e5\u6c17\u6e29\u4f4e\u3044\u69d8\u306a\u306e\u3067\u98a8\u90aa\u5f15\u304b\u306a\u3044\u69d8\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","display_text_range":[6,138],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932338951662157824,"in_reply_to_status_id_str":"932338951662157824","in_reply_to_user_id":107998753,"in_reply_to_user_id_str":"107998753","in_reply_to_screen_name":"Pz62","user":{"id":175349671,"id_str":"175349671","name":"\u304a\u307e\u3063\u3059\u30fc","screen_name":"omassu_0927","location":"\u65e5\u672c \u6771\u4eac","url":"http:\/\/ameba.ne.jp\/ommassu0927\/","description":"2005\/05\u304b\u3089\u4ed5\u4e8b\u3057\u306a\u304c\u3089\u3001\u30d5\u30eb\u30fc\u30c8\u6559\u5ba4\u901a\u3063\u3066\u3044\u307e\u3059\u3002Twitter\u4ee5\u5916\u306b\u3082Facebook,Ameba-Blog\u3082\u3057\u3066\u3044\u307e\u3059\u3002 \u6700\u8fd1\u306e\u63a8\u3057\u306f\u3001\u30b0\u30e9\u30d3\u30a2\uff1a\u30df\u30b9\u6771\u30b9\u30dd2016\u30b0\u30e9\u30f3\u30d7\u30ea\u306e\u300c\u685c\u4e95\u5948\u6d25\u300d\u3055\u3093\u3067\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":342,"friends_count":441,"listed_count":11,"favourites_count":8884,"statuses_count":26515,"created_at":"Fri Aug 06 10:42:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/710787773934886912\/DjPZphhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/710787773934886912\/DjPZphhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175349671\/1458737512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pz62","name":"\uff30\uff5a\uff16\uff12 10\u6708\u4f01\u753b\u4e2d\u6b62\u3057\u307e\u3059","id":107998753,"id_str":"107998753","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:32 +0000 2017","id":932386136693067779,"id_str":"932386136693067779","text":"\ud83c\udf55 x28 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:31 +0000 2017","id":932386131810889729,"id_str":"932386131810889729","text":"RT @SafeerAlgharaam: \u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u0644\u0645\u062d\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":733671301307633667,"id_str":"733671301307633667","name":"volkansen1555","screen_name":"volkansen15555","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":29,"friends_count":367,"listed_count":0,"favourites_count":52,"statuses_count":52,"created_at":"Fri May 20 14:50:44 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 28 03:22:42 +0000 2017","id":924114173805629440,"id_str":"924114173805629440","text":"\u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u2026 https:\/\/t.co\/zExISF3db3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":839116898742730753,"id_str":"839116898742730753","name":"\u2660\ufe0f\u24d5\u24d0\u24e1\u24d4\u24e2\u2660\ufe0f","screen_name":"SafeerAlgharaam","location":"\u0641\u0649 \u062d\u0636\u0646\u0643 \u064a\u0627\u0628\u064a\u0628\u0649","url":null,"description":"\u270d\ud83c\udffb...\u0634\u0639\u0651\u0631 \u0645\u064c\u0646\u0633\u062f\u064e\u0644 \u0648 \u0645\u064c\u0624\u062e\u0631\u0629 \u062a\u0647\u0651\u062a\u0632\u064e \u0648 \u0622\u0647\u0627\u062a \u062a\u062a\u064e\u0639\u0627\u0644\u0649 \u0648 \u0642\u0636\u064a\u0651\u0628 \u064a\u0646\u0651\u063a\u0631\u0650\u0633 \u0641\u064a \u0641\u0631\u0651\u062c\u0643 \u0645\u0634\u0651\u0647\u062f \u0645\u062c\u0651\u0646\u0648\u0646\ud83e\udd35\ud83c\udffbA man's lust and a female feeling\ud83d\udc70\ud83c\udf55\ud83c\udf55\u0647\u0646\u0627 \u062a\u062c\u062f\u0648\u0646 \u0645\u0627 \u064a\u0634\u0628\u0639 \u0634\u0647\u0648\u0627\u062a\u0643\u0645\ud83d\udd1e","translator_type":"none","protected":false,"verified":false,"followers_count":53957,"friends_count":409,"listed_count":423,"favourites_count":1671,"statuses_count":4925,"created_at":"Tue Mar 07 14:13:53 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/870348036815409152\/gPKYdgxj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870348036815409152\/gPKYdgxj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839116898742730753\/1492135581","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u0644\u0645\u062d\u0631\u0648\u0645\ud83d\ude08\ud83c\udf55 https:\/\/t.co\/ylzCAqDBtm","display_text_range":[0,123],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":924108926144086016,"id_str":"924108926144086016","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","url":"https:\/\/t.co\/ylzCAqDBtm","display_url":"pic.twitter.com\/ylzCAqDBtm","expanded_url":"https:\/\/twitter.com\/SafeerAlgharaam\/status\/924114173805629440\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":140001,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/pl\/lBIjpCcctsROf3HT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/640x360\/FEr6qzV38mwDqKZX.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/1280x720\/EdiDgvChqLSwLw0a.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/320x180\/lbcLsGZmwYsZJMvx.mp4"}]}}]},"extended_entities":{"media":[{"id":924108926144086016,"id_str":"924108926144086016","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","url":"https:\/\/t.co\/ylzCAqDBtm","display_url":"pic.twitter.com\/ylzCAqDBtm","expanded_url":"https:\/\/twitter.com\/SafeerAlgharaam\/status\/924114173805629440\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":140001,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/pl\/lBIjpCcctsROf3HT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/640x360\/FEr6qzV38mwDqKZX.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/1280x720\/EdiDgvChqLSwLw0a.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/320x180\/lbcLsGZmwYsZJMvx.mp4"}]}}]}},"quote_count":0,"reply_count":6,"retweet_count":232,"favorite_count":462,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zExISF3db3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/924114173805629440","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ar"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SafeerAlgharaam","name":"\u2660\ufe0f\u24d5\u24d0\u24e1\u24d4\u24e2\u2660\ufe0f","id":839116898742730753,"id_str":"839116898742730753","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710200000","toDate":"201711192315"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_from.json b/spec/fixtures/premium_search_from.json new file mode 100644 index 000000000..6b237fc1f --- /dev/null +++ b/spec/fixtures/premium_search_from.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Fri Nov 17 11:53:49 +0000 2017","id":931490556080820224,"id_str":"931490556080820224","text":"RT @chiuki: An Evening with #WomenInTech @TwitterBoulder #sketchnotes https:\/\/t.co\/dKsff8Hf9h","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 04:51:58 +0000 2017","id":931384393272356864,"id_str":"931384393272356864","text":"An Evening with #WomenInTech @TwitterBoulder #sketchnotes https:\/\/t.co\/dKsff8Hf9h","display_text_range":[0,57],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":47537002,"id_str":"47537002","name":"Chiu-Ki Chan","screen_name":"chiuki","location":"Boulder, CO (ish)","url":"http:\/\/blog.sqisland.com","description":"Lead Android developer, public speaker: @techspeakdigest, @360andev organizer, #AndroidDialogs co-creator, @Pluralsight & @Caster_IO instructor, sketchnoter.","translator_type":"regular","protected":false,"verified":false,"followers_count":12823,"friends_count":882,"listed_count":611,"favourites_count":5987,"statuses_count":10980,"created_at":"Tue Jun 16 03:59:54 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"673AB7","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/760321747098832898\/DBEATpXP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760321747098832898\/DBEATpXP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47537002\/1467646239","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":7,"retweet_count":14,"favorite_count":73,"entities":{"hashtags":[{"text":"WomenInTech","indices":[16,28]},{"text":"sketchnotes","indices":[45,57]}],"urls":[],"user_mentions":[{"screen_name":"TwitterBoulder","name":"Twitter Boulder","id":2249227634,"id_str":"2249227634","indices":[29,44]}],"symbols":[],"media":[{"id":931384270798561280,"id_str":"931384270798561280","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","url":"https:\/\/t.co\/dKsff8Hf9h","display_url":"pic.twitter.com\/dKsff8Hf9h","expanded_url":"https:\/\/twitter.com\/chiuki\/status\/931384393272356864\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1078,"h":1200,"resize":"fit"},"large":{"w":1677,"h":1866,"resize":"fit"},"small":{"w":611,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931384270798561280,"id_str":"931384270798561280","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","url":"https:\/\/t.co\/dKsff8Hf9h","display_url":"pic.twitter.com\/dKsff8Hf9h","expanded_url":"https:\/\/twitter.com\/chiuki\/status\/931384393272356864\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1078,"h":1200,"resize":"fit"},"large":{"w":1677,"h":1866,"resize":"fit"},"small":{"w":611,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WomenInTech","indices":[28,40]},{"text":"sketchnotes","indices":[57,69]}],"urls":[],"user_mentions":[{"screen_name":"chiuki","name":"Chiu-Ki Chan","id":47537002,"id_str":"47537002","indices":[3,10]},{"screen_name":"TwitterBoulder","name":"Twitter Boulder","id":2249227634,"id_str":"2249227634","indices":[41,56]}],"symbols":[],"media":[{"id":931384270798561280,"id_str":"931384270798561280","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","url":"https:\/\/t.co\/dKsff8Hf9h","display_url":"pic.twitter.com\/dKsff8Hf9h","expanded_url":"https:\/\/twitter.com\/chiuki\/status\/931384393272356864\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1078,"h":1200,"resize":"fit"},"large":{"w":1677,"h":1866,"resize":"fit"},"small":{"w":611,"h":680,"resize":"fit"}},"source_status_id":931384393272356864,"source_status_id_str":"931384393272356864","source_user_id":47537002,"source_user_id_str":"47537002"}]},"extended_entities":{"media":[{"id":931384270798561280,"id_str":"931384270798561280","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOzxD0JVoAAnKYP.jpg","url":"https:\/\/t.co\/dKsff8Hf9h","display_url":"pic.twitter.com\/dKsff8Hf9h","expanded_url":"https:\/\/twitter.com\/chiuki\/status\/931384393272356864\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1078,"h":1200,"resize":"fit"},"large":{"w":1677,"h":1866,"resize":"fit"},"small":{"w":611,"h":680,"resize":"fit"}},"source_status_id":931384393272356864,"source_status_id_str":"931384393272356864","source_user_id":47537002,"source_user_id_str":"47537002"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 18:46:25 +0000 2017","id":930869615235809280,"id_str":"930869615235809280","text":"RT @TwitterData: Cryptocurrency: future or fad? The debate on Twitter heats up. Read our blog to weigh in https:\/\/t.co\/LSHzzSRqy2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 15 18:39:34 +0000 2017","id":930867890869256192,"id_str":"930867890869256192","text":"Cryptocurrency: future or fad? The debate on Twitter heats up. Read our blog to weigh in https:\/\/t.co\/LSHzzSRqy2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1526228120,"id_str":"1526228120","name":"Twitter Data","screen_name":"TwitterData","location":"San Francisco","url":"https:\/\/blog.twitter.com\/data","description":"Data-driven insights about notable moments and conversations from Twitter, Inc., plus tips and tricks to help you get the most out of Twitter data.","translator_type":"none","protected":false,"verified":true,"followers_count":754182,"friends_count":11,"listed_count":4279,"favourites_count":23,"statuses_count":1367,"created_at":"Mon Jun 17 23:57:45 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875168307585794048\/yuE68O2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875168307585794048\/yuE68O2__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1526228120\/1497491349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":12,"retweet_count":49,"favorite_count":78,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LSHzzSRqy2","expanded_url":"https:\/\/blog.twitter.com\/official\/en_us\/topics\/insights\/2017\/Cryptocurrency-The-Discussion-on-Twitter-Keeps-Growing.html","display_url":"blog.twitter.com\/official\/en_us\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LSHzzSRqy2","expanded_url":"https:\/\/blog.twitter.com\/official\/en_us\/topics\/insights\/2017\/Cryptocurrency-The-Discussion-on-Twitter-Keeps-Growing.html","display_url":"blog.twitter.com\/official\/en_us\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"TwitterData","name":"Twitter Data","id":1526228120,"id_str":"1526228120","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 00:21:38 +0000 2017","id":930591588522299393,"id_str":"930591588522299393","text":"@mongeliliana @WeSabio @TwitterLA @ryan_a_bell @Jorge_Distress @g8rojas @VicAtSabio Thank you, Liliana! ^KM","display_text_range":[84,107],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930570651638808576,"in_reply_to_status_id_str":"930570651638808576","in_reply_to_user_id":243665363,"in_reply_to_user_id_str":"243665363","in_reply_to_screen_name":"mongeliliana","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"457b4814b4240d87","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/457b4814b4240d87.json","place_type":"city","name":"London","full_name":"London, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.187894,51.483718],[-0.187894,51.516466],[-0.109978,51.516466],[-0.109978,51.483718]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mongeliliana","name":"Liliana Aide Monge","id":243665363,"id_str":"243665363","indices":[0,13]},{"screen_name":"WeSabio","name":"Sabio","id":874394695,"id_str":"874394695","indices":[14,22]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[23,33]},{"screen_name":"ryan_a_bell","name":"Ryan A Bell Ai AR VR","id":2984872862,"id_str":"2984872862","indices":[34,46]},{"screen_name":"Jorge_Distress","name":"B2C Intern, Sign My Yearbook","id":536960317,"id_str":"536960317","indices":[47,62]},{"screen_name":"g8rojas","name":"Gregorio Rojas","id":426155280,"id_str":"426155280","indices":[63,71]},{"screen_name":"VicAtSabio","name":"Victor Campos","id":887102371058171904,"id_str":"887102371058171904","indices":[72,83]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 22:01:27 +0000 2017","id":930556310139162627,"id_str":"930556310139162627","text":"#TapIntoTwitter & check out \u201c@TwitterAPI for Beginners\u201d by @sunnat629: https:\/\/t.co\/Vlqrtc3cd0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":9,"favorite_count":22,"entities":{"hashtags":[{"text":"TapIntoTwitter","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/Vlqrtc3cd0","expanded_url":"https:\/\/medium.com\/@sunnat629\/twurl-curl-for-the-twitter-api-with-jq-65dce6230ecd","display_url":"medium.com\/@sunnat629\/twu\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[33,44]},{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[63,73]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 21:40:14 +0000 2017","id":930550970668462081,"id_str":"930550970668462081","text":"@mongeliliana we would love to partner with @WeSabio for our next meetup! We're hosting the next one Dec. 5th\u2026 https:\/\/t.co\/kRSTMfKqim","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":243665363,"in_reply_to_user_id_str":"243665363","in_reply_to_screen_name":"mongeliliana","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@mongeliliana we would love to partner with @WeSabio for our next meetup! We're hosting the next one Dec. 5th @TwitterLA: https:\/\/t.co\/OFZGGFniXV \u2026 Do you know of a great #chatbots community speaker? @ryan_a_bell will be hosting and @Jorge_Distress will be speaking. ^KM","display_text_range":[0,270],"entities":{"hashtags":[{"text":"chatbots","indices":[171,180]}],"urls":[{"url":"https:\/\/t.co\/OFZGGFniXV","expanded_url":"https:\/\/www.meetup.com\/Los-Angeles-Twitter-Developer-Community\/events\/244549355\/","display_url":"meetup.com\/Los-Angeles-Tw\u2026","indices":[122,145]}],"user_mentions":[{"screen_name":"mongeliliana","name":"Liliana Aide Monge","id":243665363,"id_str":"243665363","indices":[0,13]},{"screen_name":"WeSabio","name":"Sabio","id":874394695,"id_str":"874394695","indices":[44,52]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[110,120]},{"screen_name":"ryan_a_bell","name":"Ryan A Bell Ai AR VR","id":2984872862,"id_str":"2984872862","indices":[200,212]},{"screen_name":"Jorge_Distress","name":"Ian Hates My Online Persona Intern","id":536960317,"id_str":"536960317","indices":[233,248]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kRSTMfKqim","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930550970668462081","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[111,134]}],"user_mentions":[{"screen_name":"mongeliliana","name":"Liliana Aide Monge","id":243665363,"id_str":"243665363","indices":[0,13]},{"screen_name":"WeSabio","name":"Sabio","id":874394695,"id_str":"874394695","indices":[44,52]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:40:20 +0000 2017","id":930520795809505280,"id_str":"930520795809505280","text":"@Rgre1 sorry about that! try https:\/\/t.co\/2tCX6a2uyX and we'll get that other link fixed ^AP","display_text_range":[7,92],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930513702209458176,"in_reply_to_status_id_str":"930513702209458176","in_reply_to_user_id":47008069,"in_reply_to_user_id_str":"47008069","in_reply_to_screen_name":"Rgre1","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2tCX6a2uyX","expanded_url":"https:\/\/developer.twitter.com\/en\/pricing","display_url":"developer.twitter.com\/en\/pricing","indices":[29,52]}],"user_mentions":[{"screen_name":"Rgre1","name":"Russ","id":47008069,"id_str":"47008069","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:39:34 +0000 2017","id":930520601369903106,"id_str":"930520601369903106","text":"@SebastianView @TwitterAPI @TwitterData some poll data is included in the premium enrichments ^AP","display_text_range":[40,97],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930517534738124801,"in_reply_to_status_id_str":"930517534738124801","in_reply_to_user_id":21124946,"in_reply_to_user_id_str":"21124946","in_reply_to_screen_name":"SebastianView","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SebastianView","name":"Sebasti\u00e1n Trujillo","id":21124946,"id_str":"21124946","indices":[0,14]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[15,26]},{"screen_name":"TwitterData","name":"Twitter Data","id":1526228120,"id_str":"1526228120","indices":[27,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:39:06 +0000 2017","id":930520483715538945,"id_str":"930520483715538945","text":"@Rgre1 Thanks we\u2019re on it. I\u2019m the meantime you can login through Twitter and it should work. ^KM","display_text_range":[7,97],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930513702209458176,"in_reply_to_status_id_str":"930513702209458176","in_reply_to_user_id":47008069,"in_reply_to_user_id_str":"47008069","in_reply_to_screen_name":"Rgre1","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rgre1","name":"Russ","id":47008069,"id_str":"47008069","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:07:25 +0000 2017","id":930512511912341504,"id_str":"930512511912341504","text":"@LeahBecerra @TwitterAPI looks like there was a temporary image issue, should be recovering now, apologies! ^AP","display_text_range":[25,111],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930505713427931137,"in_reply_to_status_id_str":"930505713427931137","in_reply_to_user_id":45462250,"in_reply_to_user_id_str":"45462250","in_reply_to_screen_name":"LeahBecerra","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeahBecerra","name":"Leah Becerra","id":45462250,"id_str":"45462250","indices":[0,12]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:06:56 +0000 2017","id":930512389589622784,"id_str":"930512389589622784","text":"@josephbona sorry about that! The team should be resolving it. ^AP","display_text_range":[12,66],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930511274034778118,"in_reply_to_status_id_str":"930511274034778118","in_reply_to_user_id":182096686,"in_reply_to_user_id_str":"182096686","in_reply_to_screen_name":"josephbona","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"josephbona","name":"Joseph Bona","id":182096686,"id_str":"182096686","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:06:50 +0000 2017","id":930512365430427648,"id_str":"930512365430427648","text":"@leg_dev sorry about that! The team should be resolving it. ^AP","display_text_range":[9,63],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930511895177629697,"in_reply_to_status_id_str":"930511895177629697","in_reply_to_user_id":930508975833051136,"in_reply_to_user_id_str":"930508975833051136","in_reply_to_screen_name":"leg_dev","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leg_dev","name":"Legendary Analytics Developers","id":930508975833051136,"id_str":"930508975833051136","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 18:50:00 +0000 2017","id":930508129514807302,"id_str":"930508129514807302","text":"@ogmdr @TwitterAPI yes, you can use the free Sandbox to have free access to try out the premium APIs! ^AP","display_text_range":[19,105],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930507496078286848,"in_reply_to_status_id_str":"930507496078286848","in_reply_to_user_id":807197220629925888,"in_reply_to_user_id_str":"807197220629925888","in_reply_to_screen_name":"ogmdr","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ogmdr","name":"\u308f\u3056\u308f\u3056\u5b6b\u3044\u305f\u3051\u3069\u9060\u3044\u3042\u306e\u5b50\u300c\u4e16\u306e\u4e2d\u306d\u3001\u9854\u304b\u304a\u91d1\u304b\u306a\u306e\u3088\u300d\u3053\u306e\u611b\u3092\u5c4a\u3051\u305f\u3044\u3054\u307e\u3056\u308f(\u30b6\u30ef\u2026\u2026)","id":807197220629925888,"id_str":"807197220629925888","indices":[0,6]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[7,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:42:39 +0000 2017","id":930491179963240449,"id_str":"930491179963240449","text":"@m_elensule @theqube_dev @tw_blue2 @TwitterAPI we're not currently prioritising client-centric API features; polls\u2026 https:\/\/t.co\/VReJ3qGivG","display_text_range":[47,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":930489705413693440,"in_reply_to_status_id_str":"930489705413693440","in_reply_to_user_id":44681458,"in_reply_to_user_id_str":"44681458","in_reply_to_screen_name":"m_elensule","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@m_elensule @theqube_dev @tw_blue2 @TwitterAPI we're not currently prioritising client-centric API features; polls are also complex to deliver, but watch the roadmap for future plans ^AP","display_text_range":[47,186],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m_elensule","name":"Menelion Elens\u00fal\u00eb","id":44681458,"id_str":"44681458","indices":[0,11]},{"screen_name":"theqube_dev","name":"TheQube Client","id":2788900323,"id_str":"2788900323","indices":[12,24]},{"screen_name":"tw_blue2","name":"TWBlue Official","id":2265337470,"id_str":"2265337470","indices":[25,34]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[35,46]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VReJ3qGivG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930491179963240449","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"m_elensule","name":"Menelion Elens\u00fal\u00eb","id":44681458,"id_str":"44681458","indices":[0,11]},{"screen_name":"theqube_dev","name":"TheQube Client","id":2788900323,"id_str":"2788900323","indices":[12,24]},{"screen_name":"tw_blue2","name":"TWBlue Official","id":2265337470,"id_str":"2265337470","indices":[25,34]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[35,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:33:16 +0000 2017","id":930488817475256320,"id_str":"930488817475256320","text":"@m_elensule @TwitterAPI the Premium packages include poll data enrichments, but there are no current plans on the r\u2026 https:\/\/t.co\/K50rOZgbgG","display_text_range":[24,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":930487992933904384,"in_reply_to_status_id_str":"930487992933904384","in_reply_to_user_id":44681458,"in_reply_to_user_id_str":"44681458","in_reply_to_screen_name":"m_elensule","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@m_elensule @TwitterAPI the Premium packages include poll data enrichments, but there are no current plans on the roadmap for other poll endpoints ^AP","display_text_range":[24,150],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m_elensule","name":"Menelion Elens\u00fal\u00eb","id":44681458,"id_str":"44681458","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K50rOZgbgG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930488817475256320","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"m_elensule","name":"Menelion Elens\u00fal\u00eb","id":44681458,"id_str":"44681458","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:18:14 +0000 2017","id":930485035127500800,"id_str":"930485035127500800","text":"@jef_poskanzer @anonshiv @TwitterAPI it wasn't intentionally limited, just never expanded. We're excited about the premium capabilities! ^AP","display_text_range":[37,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930484461057097728,"in_reply_to_status_id_str":"930484461057097728","in_reply_to_user_id":4254951,"in_reply_to_user_id_str":"4254951","in_reply_to_screen_name":"jef_poskanzer","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jef_poskanzer","name":"Jef Poskanzer","id":4254951,"id_str":"4254951","indices":[0,14]},{"screen_name":"anonshiv","name":"Anon Shiv","id":137814652,"id_str":"137814652","indices":[15,24]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[25,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:12:00 +0000 2017","id":930483464348033024,"id_str":"930483464348033024","text":"RT @DanJackson415: Twitter Inc. is doubling down on its data business with a new service that gives software developers more access to the\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 14 16:58:25 +0000 2017","id":930480049714638848,"id_str":"930480049714638848","text":"Twitter Inc. is doubling down on its data business with a new service that gives software developers more access to\u2026 https:\/\/t.co\/zoALJm39Wy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57504781,"id_str":"57504781","name":"Dan Jackson","screen_name":"DanJackson415","location":"Lower Haight, San Francisco","url":"http:\/\/www.buzzfeed.com\/mathewguiver\/san-francisco-twitter#.gprBN4XeP","description":"Communications @Twitter \u2022 #LHSF \u2022 #dad \u2022 header by @shamptonian","translator_type":"none","protected":false,"verified":false,"followers_count":3804,"friends_count":1877,"listed_count":177,"favourites_count":120576,"statuses_count":22399,"created_at":"Fri Jul 17 01:07:37 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5C5C5C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"8F2CBD","profile_sidebar_border_color":"FF530F","profile_sidebar_fill_color":"000000","profile_text_color":"C75018","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553818825062232064\/4QeMaS7B_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553818825062232064\/4QeMaS7B_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57504781\/1504295929","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Twitter Inc. is doubling down on its data business with a new service that gives software developers more access to the social media company\u2019s wealth of information. via @technology https:\/\/t.co\/xzXdHUILdq","display_text_range":[0,205],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xzXdHUILdq","expanded_url":"https:\/\/www.bloomberg.com\/news\/articles\/2017-11-14\/twitter-bets-on-new-data-business-product-to-revive-revenue","display_url":"bloomberg.com\/news\/articles\/\u2026","indices":[182,205]}],"user_mentions":[{"screen_name":"technology","name":"Bloomberg Technology","id":21272440,"id_str":"21272440","indices":[170,181]}],"symbols":[]}},"quote_count":0,"reply_count":2,"retweet_count":9,"favorite_count":42,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zoALJm39Wy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930480049714638848","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DanJackson415","name":"Dan Jackson","id":57504781,"id_str":"57504781","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:54:44 +0000 2017","id":930479119124615168,"id_str":"930479119124615168","text":"@MAJIDADI_KARAMI @TwitterAPI poll data is included in the premium enrichments ^AP","display_text_range":[29,81],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930478825296879617,"in_reply_to_status_id_str":"930478825296879617","in_reply_to_user_id":413672658,"in_reply_to_user_id_str":"413672658","in_reply_to_screen_name":"MAJIDADI_KARAMI","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MAJIDADI_KARAMI","name":"Usman Idris","id":413672658,"id_str":"413672658","indices":[0,16]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[17,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:45:15 +0000 2017","id":930476734348251137,"id_str":"930476734348251137","text":"RT @Shahul___Hameed: Launching Twitter premium APIs: Helping developers scale on #Twitter. @TwitterDev https:\/\/t.co\/sYlX56PFxp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 14 16:12:38 +0000 2017","id":930468527072362496,"id_str":"930468527072362496","text":"Launching Twitter premium APIs: Helping developers scale on #Twitter. @TwitterDev https:\/\/t.co\/sYlX56PFxp","display_text_range":[0,81],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116995079,"id_str":"116995079","name":"Shahul Hameed","screen_name":"Shahul___Hameed","location":"Cochin, India","url":"http:\/\/www.shahulhameed.in","description":"Technology. Internet. Books. Travel. Product Engineer @entri_me. City Lead @TwitterDev. Volunteer @isoctrv #netgov","translator_type":"regular","protected":false,"verified":false,"followers_count":1073,"friends_count":608,"listed_count":142,"favourites_count":5954,"statuses_count":6403,"created_at":"Wed Feb 24 06:08:00 +0000 2010","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"382044","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457764840237330432\/H-pStJ_-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457764840237330432\/H-pStJ_-.jpeg","profile_background_tile":false,"profile_link_color":"75406A","profile_sidebar_border_color":"E6ECC0","profile_sidebar_fill_color":"BBD3BD","profile_text_color":"427C7E","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/900375043628191746\/vjxsErSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/900375043628191746\/vjxsErSm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116995079\/1450887933","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":930466151846633473,"quoted_status_id_str":"930466151846633473","quoted_status":{"created_at":"Tue Nov 14 16:03:12 +0000 2017","id":930466151846633473,"id_str":"930466151846633473","text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese\u2026 https:\/\/t.co\/ImG36qQUXb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6253282,"id_str":"6253282","name":"Twitter API","screen_name":"TwitterAPI","location":"San Francisco, CA","url":"https:\/\/developer.twitter.com","description":"The Real Twitter API. Tweets about API changes, service issues and our Developer Platform. Don't get an answer? It's on my website.","translator_type":"regular","protected":false,"verified":true,"followers_count":6260348,"friends_count":12,"listed_count":13026,"favourites_count":28,"statuses_count":3606,"created_at":"Wed May 23 06:01:13 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6253282\/1497491515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese APIs provide a new transparent, predictable way to scale solutions on Twitter. https:\/\/t.co\/4qtkeiUpDY https:\/\/t.co\/3FhH759Ik5","display_text_range":[0,217],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4qtkeiUpDY","expanded_url":"https:\/\/blog.twitter.com\/developer\/en_us\/topics\/tools\/2017\/introducing-twitter-premium-apis.html","display_url":"blog.twitter.com\/developer\/en_u\u2026","indices":[194,217]}],"user_mentions":[],"symbols":[],"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]},"extended_entities":{"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]}},"quote_count":0,"reply_count":96,"retweet_count":767,"favorite_count":1091,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ImG36qQUXb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930466151846633473","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":8,"entities":{"hashtags":[{"text":"Twitter","indices":[60,68]}],"urls":[{"url":"https:\/\/t.co\/sYlX56PFxp","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473","display_url":"twitter.com\/TwitterAPI\/sta\u2026","indices":[82,105]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[70,81]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"quoted_status_id":930466151846633473,"quoted_status_id_str":"930466151846633473","quoted_status":{"created_at":"Tue Nov 14 16:03:12 +0000 2017","id":930466151846633473,"id_str":"930466151846633473","text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese\u2026 https:\/\/t.co\/ImG36qQUXb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6253282,"id_str":"6253282","name":"Twitter API","screen_name":"TwitterAPI","location":"San Francisco, CA","url":"https:\/\/developer.twitter.com","description":"The Real Twitter API. Tweets about API changes, service issues and our Developer Platform. Don't get an answer? It's on my website.","translator_type":"regular","protected":false,"verified":true,"followers_count":6260348,"friends_count":12,"listed_count":13026,"favourites_count":28,"statuses_count":3606,"created_at":"Wed May 23 06:01:13 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6253282\/1497491515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese APIs provide a new transparent, predictable way to scale solutions on Twitter. https:\/\/t.co\/4qtkeiUpDY https:\/\/t.co\/3FhH759Ik5","display_text_range":[0,217],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4qtkeiUpDY","expanded_url":"https:\/\/blog.twitter.com\/developer\/en_us\/topics\/tools\/2017\/introducing-twitter-premium-apis.html","display_url":"blog.twitter.com\/developer\/en_u\u2026","indices":[194,217]}],"user_mentions":[],"symbols":[],"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]},"extended_entities":{"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]}},"quote_count":0,"reply_count":96,"retweet_count":767,"favorite_count":1091,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ImG36qQUXb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930466151846633473","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twitter","indices":[81,89]}],"urls":[{"url":"https:\/\/t.co\/sYlX56PFxp","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473","display_url":"twitter.com\/TwitterAPI\/sta\u2026","indices":[103,126]}],"user_mentions":[{"screen_name":"Shahul___Hameed","name":"Shahul Hameed","id":116995079,"id_str":"116995079","indices":[3,19]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[91,102]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:43:59 +0000 2017","id":930476414264111104,"id_str":"930476414264111104","text":"Thanks @loon_burger! We\u2019re grateful for your friendship. \u263a\ufe0f https:\/\/t.co\/71UTqOvfmb","display_text_range":[0,59],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":930469159464570880,"quoted_status_id_str":"930469159464570880","quoted_status":{"created_at":"Tue Nov 14 16:15:09 +0000 2017","id":930469159464570880,"id_str":"930469159464570880","text":"So excited for my friends over at @TwitterData @TwitterDev \ud83d\udca5This is big news for the ecosystem, and very happy and\u2026 https:\/\/t.co\/zsK3kNsyeU","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2800310069,"id_str":"2800310069","name":"Madeline Parra","screen_name":"loon_burger","location":"A nomad","url":"http:\/\/www.twizoo.com","description":"Start-up founder @TwizooSocial (acq by @Skyscanner). Always a swammer @DavidsonCollege. Mega fan @Braves. Ex @GSK @TeachForAmerica. Nerd at heart.","translator_type":"none","protected":false,"verified":false,"followers_count":478,"friends_count":351,"listed_count":40,"favourites_count":2357,"statuses_count":724,"created_at":"Thu Oct 02 16:23:12 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517712665548845056\/Y2LW9CR6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517712665548845056\/Y2LW9CR6_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":930466151846633473,"quoted_status_id_str":"930466151846633473","is_quote_status":true,"extended_tweet":{"full_text":"So excited for my friends over at @TwitterData @TwitterDev \ud83d\udca5This is big news for the ecosystem, and very happy and humbled to have been part of the journey alongside you. Onwards! \ud83d\udc4f\ud83c\udf7e\ud83d\ude80 https:\/\/t.co\/uAMeYyMU1W","display_text_range":[0,183],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uAMeYyMU1W","expanded_url":"https:\/\/twitter.com\/twitterapi\/status\/930466151846633473","display_url":"twitter.com\/twitterapi\/sta\u2026","indices":[184,207]}],"user_mentions":[{"screen_name":"TwitterData","name":"Twitter Data","id":1526228120,"id_str":"1526228120","indices":[34,46]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[47,58]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":10,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zsK3kNsyeU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930469159464570880","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterData","name":"Twitter Data","id":1526228120,"id_str":"1526228120","indices":[34,46]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[47,58]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/71UTqOvfmb","expanded_url":"https:\/\/twitter.com\/loon_burger\/status\/930469159464570880","display_url":"twitter.com\/loon_burger\/st\u2026","indices":[60,83]}],"user_mentions":[{"screen_name":"loon_burger","name":"Madeline Parra","id":2800310069,"id_str":"2800310069","indices":[7,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:42:14 +0000 2017","id":930475974562664448,"id_str":"930475974562664448","text":"@sacca hi Chris! Wanted to be sure you were among the first to see our exciting update: https:\/\/t.co\/0ht3IN7rgo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":586,"in_reply_to_user_id_str":"586","in_reply_to_screen_name":"sacca","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":930466151846633473,"quoted_status_id_str":"930466151846633473","quoted_status":{"created_at":"Tue Nov 14 16:03:12 +0000 2017","id":930466151846633473,"id_str":"930466151846633473","text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese\u2026 https:\/\/t.co\/ImG36qQUXb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6253282,"id_str":"6253282","name":"Twitter API","screen_name":"TwitterAPI","location":"San Francisco, CA","url":"https:\/\/developer.twitter.com","description":"The Real Twitter API. Tweets about API changes, service issues and our Developer Platform. Don't get an answer? It's on my website.","translator_type":"regular","protected":false,"verified":true,"followers_count":6260348,"friends_count":12,"listed_count":13026,"favourites_count":28,"statuses_count":3606,"created_at":"Wed May 23 06:01:13 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6253282\/1497491515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese APIs provide a new transparent, predictable way to scale solutions on Twitter. https:\/\/t.co\/4qtkeiUpDY https:\/\/t.co\/3FhH759Ik5","display_text_range":[0,217],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4qtkeiUpDY","expanded_url":"https:\/\/blog.twitter.com\/developer\/en_us\/topics\/tools\/2017\/introducing-twitter-premium-apis.html","display_url":"blog.twitter.com\/developer\/en_u\u2026","indices":[194,217]}],"user_mentions":[],"symbols":[],"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]},"extended_entities":{"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]}},"quote_count":0,"reply_count":96,"retweet_count":767,"favorite_count":1091,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ImG36qQUXb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930466151846633473","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0ht3IN7rgo","expanded_url":"https:\/\/twitter.com\/twitterapi\/status\/930466151846633473","display_url":"twitter.com\/twitterapi\/sta\u2026","indices":[88,111]}],"user_mentions":[{"screen_name":"sacca","name":"Chris Sacca","id":586,"id_str":"586","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:17:45 +0000 2017","id":930469812182159360,"id_str":"930469812182159360","text":"@timburks @TwitterAPI @atornes @OpenApiSpec yes! It's being looked into :-) ^AP","display_text_range":[44,79],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930469293388480512,"in_reply_to_status_id_str":"930469293388480512","in_reply_to_user_id":7305712,"in_reply_to_user_id_str":"7305712","in_reply_to_screen_name":"timburks","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"timburks","name":"@timburks","id":7305712,"id_str":"7305712","indices":[0,9]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[10,21]},{"screen_name":"atornes","name":"Adam Tornes","id":16453479,"id_str":"16453479","indices":[22,30]},{"screen_name":"OpenApiSpec","name":"OpenAPI Spec","id":4855039169,"id_str":"4855039169","indices":[31,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:15:06 +0000 2017","id":930469147435290624,"id_str":"930469147435290624","text":"@anonshiv @TwitterAPI nothing is changing in the standard APIs, but you can get better search data (30 days history\u2026 https:\/\/t.co\/m7oh860NJw","display_text_range":[22,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":930468067628302338,"in_reply_to_status_id_str":"930468067628302338","in_reply_to_user_id":137814652,"in_reply_to_user_id_str":"137814652","in_reply_to_screen_name":"anonshiv","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@anonshiv @TwitterAPI nothing is changing in the standard APIs, but you can get better search data (30 days history and enrichments) with the premium APIs ^AP","display_text_range":[22,158],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anonshiv","name":"Anon Shiv","id":137814652,"id_str":"137814652","indices":[0,9]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[10,21]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m7oh860NJw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930469147435290624","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"anonshiv","name":"Anon Shiv","id":137814652,"id_str":"137814652","indices":[0,9]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[10,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:14:29 +0000 2017","id":930468991637827584,"id_str":"930468991637827584","text":"@Moomoomoo1 @TwitterAPI poll data is included in the premium enrichments ^AP","display_text_range":[24,76],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930466603455733760,"in_reply_to_status_id_str":"930466603455733760","in_reply_to_user_id":23379347,"in_reply_to_user_id_str":"23379347","in_reply_to_screen_name":"Moomoomoo1","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Moomoomoo1","name":"Nob Bewby","id":23379347,"id_str":"23379347","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:14:24 +0000 2017","id":930468968632082433,"id_str":"930468968632082433","text":"@Barbara42070448 @TwitterAPI poll data is included in the premium enrichments ^AP","display_text_range":[29,81],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930466589178318848,"in_reply_to_status_id_str":"930466589178318848","in_reply_to_user_id":929133446835900418,"in_reply_to_user_id_str":"929133446835900418","in_reply_to_screen_name":"Barbara42070448","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Barbara42070448","name":"Barbara","id":929133446835900418,"id_str":"929133446835900418","indices":[0,16]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[17,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:14:16 +0000 2017","id":930468938550513665,"id_str":"930468938550513665","text":"@iCONLinux @TwitterAPI poll data is included in the premium enrichments ^AP","display_text_range":[23,75],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930466360634855424,"in_reply_to_status_id_str":"930466360634855424","in_reply_to_user_id":1633992354,"in_reply_to_user_id_str":"1633992354","in_reply_to_screen_name":"iCONLinux","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":13,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iCONLinux","name":"Andreas","id":1633992354,"id_str":"1633992354","indices":[0,10]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[11,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:03:31 +0000 2017","id":930466230959529984,"id_str":"930466230959529984","text":"RT @TwitterAPI: Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese APIs pro\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 14 16:03:12 +0000 2017","id":930466151846633473,"id_str":"930466151846633473","text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese\u2026 https:\/\/t.co\/ImG36qQUXb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6253282,"id_str":"6253282","name":"Twitter API","screen_name":"TwitterAPI","location":"San Francisco, CA","url":"https:\/\/developer.twitter.com","description":"The Real Twitter API. Tweets about API changes, service issues and our Developer Platform. Don't get an answer? It's on my website.","translator_type":"regular","protected":false,"verified":true,"followers_count":6260348,"friends_count":12,"listed_count":13026,"favourites_count":28,"statuses_count":3606,"created_at":"Wed May 23 06:01:13 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656927849\/miyt9dpjz77sc0w3d4vj.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875168930544836608\/DzI5BVJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6253282\/1497491515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Today we\u2019re launching Twitter premium APIs to kick off the next era of innovation for Twitter developers. \ud83d\ude4c\n\nThese APIs provide a new transparent, predictable way to scale solutions on Twitter. https:\/\/t.co\/4qtkeiUpDY https:\/\/t.co\/3FhH759Ik5","display_text_range":[0,217],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4qtkeiUpDY","expanded_url":"https:\/\/blog.twitter.com\/developer\/en_us\/topics\/tools\/2017\/introducing-twitter-premium-apis.html","display_url":"blog.twitter.com\/developer\/en_u\u2026","indices":[194,217]}],"user_mentions":[],"symbols":[],"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]},"extended_entities":{"media":[{"id":930450785841893376,"id_str":"930450785841893376","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/930450785841893376\/pu\/img\/DO4sU7bXEqjxaTB3.jpg","url":"https:\/\/t.co\/3FhH759Ik5","display_url":"pic.twitter.com\/3FhH759Ik5","expanded_url":"https:\/\/twitter.com\/TwitterAPI\/status\/930466151846633473\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":51218,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/640x360\/vzlN4pgfQNkVvLjL.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/1280x720\/bCZpfBhcr2iJQTmh.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/pl\/OJkGJCzzC4H12orc.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/930450785841893376\/pu\/vid\/320x180\/FhQR3U82GLcqhVH0.mp4"}]}}]}},"quote_count":0,"reply_count":96,"retweet_count":767,"favorite_count":1091,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ImG36qQUXb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930466151846633473","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 15:59:28 +0000 2017","id":930102825710903298,"id_str":"930102825710903298","text":"@bmacias93 thanks - you can follow the status of this here on the developer forums ^AP https:\/\/t.co\/sAVZ4r43IF","display_text_range":[11,110],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930099714749534215,"in_reply_to_status_id_str":"930099714749534215","in_reply_to_user_id":210671989,"in_reply_to_user_id_str":"210671989","in_reply_to_screen_name":"bmacias93","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sAVZ4r43IF","expanded_url":"https:\/\/twittercommunity.com\/t\/tweet-button-and-280-character-limit-is-still-limited-to-140\/96620\/3","display_url":"twittercommunity.com\/t\/tweet-button\u2026","indices":[87,110]}],"user_mentions":[{"screen_name":"bmacias93","name":"Bryan","id":210671989,"id_str":"210671989","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 10 19:21:16 +0000 2017","id":929066446583418880,"id_str":"929066446583418880","text":"Check out this \ud83d\udcaf guide from #tapintotwitter community leader @sunnat629 for getting starting building Android \ud83d\udcf1\u00a0app\u2026 https:\/\/t.co\/4XyrXykQm3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"457b4814b4240d87","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/457b4814b4240d87.json","place_type":"city","name":"London","full_name":"London, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.187894,51.483718],[-0.187894,51.516466],[-0.109978,51.516466],[-0.109978,51.483718]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Check out this \ud83d\udcaf guide from #tapintotwitter community leader @sunnat629 for getting starting building Android \ud83d\udcf1\u00a0apps for Twitter: https:\/\/t.co\/RzKLGLnH1d","display_text_range":[0,153],"entities":{"hashtags":[{"text":"tapintotwitter","indices":[28,43]}],"urls":[{"url":"https:\/\/t.co\/RzKLGLnH1d","expanded_url":"https:\/\/medium.com\/@sunnat629\/kickstart-with-twitter-kit-for-android-9fc087497580","display_url":"medium.com\/@sunnat629\/kic\u2026","indices":[130,153]}],"user_mentions":[{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[61,71]}],"symbols":[]}},"quote_count":0,"reply_count":2,"retweet_count":7,"favorite_count":6,"entities":{"hashtags":[{"text":"tapintotwitter","indices":[28,43]}],"urls":[{"url":"https:\/\/t.co\/4XyrXykQm3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/929066446583418880","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[61,71]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 07 21:02:53 +0000 2017","id":928004856455090176,"id_str":"928004856455090176","text":"Updates coming to the twitter-text library in twitter-text 2.0 https:\/\/t.co\/whzq3UjLUv","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":4,"retweet_count":59,"favorite_count":83,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/whzq3UjLUv","expanded_url":"https:\/\/twittercommunity.com\/t\/updating-the-character-limit-and-the-twitter-text-library\/96425","display_url":"twittercommunity.com\/t\/updating-the\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 07 16:07:19 +0000 2017","id":927930472231063552,"id_str":"927930472231063552","text":"RT @TwitterOSS: Introducing Serial, a new open source library for improved data serialization on Android https:\/\/t.co\/TIUTV9nqbw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 07 00:38:03 +0000 2017","id":927696613274828800,"id_str":"927696613274828800","text":"Introducing Serial, a new open source library for improved data serialization on Android https:\/\/t.co\/TIUTV9nqbw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376825877,"id_str":"376825877","name":"Twitter Open Source","screen_name":"TwitterOSS","location":"Twitter HQ","url":"https:\/\/opensource.twitter.com","description":"Open Programs at Twitter.","translator_type":"regular","protected":false,"verified":true,"followers_count":328061,"friends_count":47,"listed_count":2157,"favourites_count":3267,"statuses_count":5352,"created_at":"Tue Sep 20 15:18:34 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875169334573678592\/I7zte5WY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875169334573678592\/I7zte5WY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/376825877\/1497491593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":90,"favorite_count":143,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TIUTV9nqbw","expanded_url":"https:\/\/cards.twitter.com\/cards\/gsby\/4zod0","display_url":"cards.twitter.com\/cards\/gsby\/4zo\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TIUTV9nqbw","expanded_url":"https:\/\/cards.twitter.com\/cards\/gsby\/4zod0","display_url":"cards.twitter.com\/cards\/gsby\/4zo\u2026","indices":[105,128]}],"user_mentions":[{"screen_name":"TwitterOSS","name":"Twitter Open Source","id":376825877,"id_str":"376825877","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 05 15:45:04 +0000 2017","id":927200096193716224,"id_str":"927200096193716224","text":"#TapIntoTwitter Dhaka, Bangladesh hosted a Twitter API workshop this weekend! #shoutout to master planner\u2026 https:\/\/t.co\/fxDk9acxV4","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":927146277640343552,"quoted_status_id_str":"927146277640343552","quoted_status":{"created_at":"Sun Nov 05 12:11:12 +0000 2017","id":927146277640343552,"id_str":"927146277640343552","text":"@TwitterDev @kellyshalk @andypiper \n#BigData #TwitterAPI #DHKTwitterDevCom \n#TapIntoTwitter https:\/\/t.co\/Uq7mOc40D9","display_text_range":[0,92],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":130175843,"id_str":"130175843","name":"S M Mohi Us Sunnat","screen_name":"sunnat629","location":"Dhaka, Bangladesh","url":"http:\/\/www.sunnat629.com","description":"Android Developer.\n#TechEvent Organizer\nCountry Lead of #TwitDevComBD & #KotlinUGBD","translator_type":"regular","protected":false,"verified":false,"followers_count":993,"friends_count":1562,"listed_count":48,"favourites_count":1591,"statuses_count":2318,"created_at":"Tue Apr 06 14:57:14 +0000 2010","utc_offset":21600,"time_zone":"Asia\/Dhaka","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/835592555655905280\/_kWaIfIY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835592555655905280\/_kWaIfIY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130175843\/1488056196","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[{"text":"BigData","indices":[36,44]},{"text":"TwitterAPI","indices":[45,56]},{"text":"DHKTwitterDevCom","indices":[58,75]},{"text":"TapIntoTwitter","indices":[77,92]}],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"kellyshalk","name":"Kelly \ud83d\ude4b\ud83c\udffb","id":27558636,"id_str":"27558636","indices":[12,23]},{"screen_name":"andypiper","name":"andy piper (pipes)","id":786491,"id_str":"786491","indices":[24,34]}],"symbols":[],"media":[{"id":927146247810572288,"id_str":"927146247810572288","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/DN3imaOV4AAXP3j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DN3imaOV4AAXP3j.jpg","url":"https:\/\/t.co\/Uq7mOc40D9","display_url":"pic.twitter.com\/Uq7mOc40D9","expanded_url":"https:\/\/twitter.com\/sunnat629\/status\/927146277640343552\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":927146247810572288,"id_str":"927146247810572288","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/DN3imaOV4AAXP3j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DN3imaOV4AAXP3j.jpg","url":"https:\/\/t.co\/Uq7mOc40D9","display_url":"pic.twitter.com\/Uq7mOc40D9","expanded_url":"https:\/\/twitter.com\/sunnat629\/status\/927146277640343552\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"extended_tweet":{"full_text":"#TapIntoTwitter Dhaka, Bangladesh hosted a Twitter API workshop this weekend! #shoutout to master planner @sunnat629 \ud83d\udc4f\ud83c\udffd\nTopics covered: \n\u2022 Twitter REST API with twurl +jq\n\u2022 Implementation in Android\n\u2022 Use of DM APIs\nKeep your \ud83d\udc40 peeled for more upcoming @TwitterDev events! https:\/\/t.co\/it9102oGTX","display_text_range":[0,272],"entities":{"hashtags":[{"text":"TapIntoTwitter","indices":[0,15]},{"text":"shoutout","indices":[78,87]}],"urls":[{"url":"https:\/\/t.co\/it9102oGTX","expanded_url":"https:\/\/twitter.com\/sunnat629\/status\/927146277640343552","display_url":"twitter.com\/sunnat629\/stat\u2026","indices":[273,296]}],"user_mentions":[{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[106,116]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[253,264]}],"symbols":[]}},"quote_count":0,"reply_count":3,"retweet_count":9,"favorite_count":23,"entities":{"hashtags":[{"text":"TapIntoTwitter","indices":[0,15]},{"text":"shoutout","indices":[78,87]}],"urls":[{"url":"https:\/\/t.co\/fxDk9acxV4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/927200096193716224","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[107,130]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 03 15:29:15 +0000 2017","id":926471342731513856,"id_str":"926471342731513856","text":"We've updated our Developer Agreement, Developer Policy, and Automation Rules today - more here https:\/\/t.co\/AAhKZMRoJP","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":12,"retweet_count":46,"favorite_count":75,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AAhKZMRoJP","expanded_url":"https:\/\/twittercommunity.com\/t\/developer-terms-and-automation-rules-updates-for-h2-2017\/95969","display_url":"twittercommunity.com\/t\/developer-te\u2026","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 03 14:35:55 +0000 2017","id":926457918987399168,"id_str":"926457918987399168","text":"@dev_yashraj sorry about that! it should take you here - https:\/\/t.co\/JyjEz3pRvv - we'll look into get this updated. ^AP","display_text_range":[13,120],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":926454521504473090,"in_reply_to_status_id_str":"926454521504473090","in_reply_to_user_id":717969680,"in_reply_to_user_id_str":"717969680","in_reply_to_screen_name":"dev_yashraj","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JyjEz3pRvv","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/basics\/authentication\/overview\/application-permission-model","display_url":"developer.twitter.com\/en\/docs\/basics\u2026","indices":[57,80]}],"user_mentions":[{"screen_name":"dev_yashraj","name":"Yashraj Jadeja","id":717969680,"id_str":"717969680","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 31 15:18:32 +0000 2017","id":925381482562035712,"id_str":"925381482562035712","text":"RT @TwitterData: Got a question? Twitter data has an answer. Here are 25 things @Brandwatch learned analyzing billions of Tweets https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 31 15:05:06 +0000 2017","id":925378101005115397,"id_str":"925378101005115397","text":"Got a question? Twitter data has an answer. Here are 25 things @Brandwatch learned analyzing billions of Tweets https:\/\/t.co\/me2Av8FSck","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1526228120,"id_str":"1526228120","name":"Twitter Data","screen_name":"TwitterData","location":"San Francisco","url":"https:\/\/blog.twitter.com\/data","description":"Data-driven insights about notable moments and conversations from Twitter, Inc., plus tips and tricks to help you get the most out of Twitter data.","translator_type":"none","protected":false,"verified":true,"followers_count":754182,"friends_count":11,"listed_count":4279,"favourites_count":23,"statuses_count":1367,"created_at":"Mon Jun 17 23:57:45 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875168307585794048\/yuE68O2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875168307585794048\/yuE68O2__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1526228120\/1497491349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":12,"retweet_count":62,"favorite_count":94,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/me2Av8FSck","expanded_url":"https:\/\/www.brandwatch.com\/reports\/twitter-25-questions\/view\/?utm_source=twitter_partner&utm_medium=social&utm_term=25_things_we_learned","display_url":"brandwatch.com\/reports\/twitte\u2026","indices":[112,135]}],"user_mentions":[{"screen_name":"Brandwatch","name":"Brandwatch","id":86107125,"id_str":"86107125","indices":[63,74]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterData","name":"Twitter Data","id":1526228120,"id_str":"1526228120","indices":[3,15]},{"screen_name":"Brandwatch","name":"Brandwatch","id":86107125,"id_str":"86107125","indices":[80,91]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 31 12:07:28 +0000 2017","id":925333396687114241,"id_str":"925333396687114241","text":"@elrumordelaluz thanks, we are aware of this one and working on a fix. You can report doc issues via https:\/\/t.co\/ViCYTuGLqZ too! ^AP","display_text_range":[16,133],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":925307952256479233,"in_reply_to_status_id_str":"925307952256479233","in_reply_to_user_id":115740808,"in_reply_to_user_id_str":"115740808","in_reply_to_screen_name":"elrumordelaluz","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ViCYTuGLqZ","expanded_url":"https:\/\/twittercommunity.com\/c\/dev-platform-feedback\/dtc","display_url":"twittercommunity.com\/c\/dev-platform\u2026","indices":[101,124]}],"user_mentions":[{"screen_name":"elrumordelaluz","name":"Lionel","id":115740808,"id_str":"115740808","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 31 11:46:47 +0000 2017","id":925328191857811456,"id_str":"925328191857811456","text":"@code_cyborg a good place for most of these questions would be https:\/\/t.co\/tvY3H4zEub - our developer forums ^AP","display_text_range":[13,113],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":925314814779580416,"in_reply_to_status_id_str":"925314814779580416","in_reply_to_user_id":915894010568482816,"in_reply_to_user_id_str":"915894010568482816","in_reply_to_screen_name":"code_cyborg","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tvY3H4zEub","expanded_url":"https:\/\/twittercommunity.com","display_url":"twittercommunity.com","indices":[63,86]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 31 11:45:46 +0000 2017","id":925327938404388865,"id_str":"925327938404388865","text":"@code_cyborg specified here - https:\/\/t.co\/f4Y7wJiUx7 - UTC format times as strings. ^AP","display_text_range":[13,88],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":925314814779580416,"in_reply_to_status_id_str":"925314814779580416","in_reply_to_user_id":915894010568482816,"in_reply_to_user_id_str":"915894010568482816","in_reply_to_screen_name":"code_cyborg","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/f4Y7wJiUx7","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/tweets\/data-dictionary\/overview\/tweet-object","display_url":"developer.twitter.com\/en\/docs\/tweets\u2026","indices":[30,53]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 31 11:43:29 +0000 2017","id":925327361490538496,"id_str":"925327361490538496","text":"@code_cyborg when true, return list of user objects without most recent status. Otherwise, return user objects as n\u2026 https:\/\/t.co\/LZy2eMczXI","display_text_range":[13,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":925314417604120576,"in_reply_to_status_id_str":"925314417604120576","in_reply_to_user_id":915894010568482816,"in_reply_to_user_id_str":"915894010568482816","in_reply_to_screen_name":"code_cyborg","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@code_cyborg when true, return list of user objects without most recent status. Otherwise, return user objects as normal (with current status). ^AP","display_text_range":[13,147],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LZy2eMczXI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/925327361490538496","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 31 11:34:19 +0000 2017","id":925325053784453120,"id_str":"925325053784453120","text":"@rezafrezaf thanks for letting us know, we'll fix - this should tell you what you need to know https:\/\/t.co\/obq94QNGNe ^AP","display_text_range":[12,122],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":925103709394227201,"in_reply_to_status_id_str":"925103709394227201","in_reply_to_user_id":48293288,"in_reply_to_user_id_str":"48293288","in_reply_to_screen_name":"rezafrezaf","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/obq94QNGNe","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/tweets\/data-dictionary\/overview\/extended-entities-object","display_url":"developer.twitter.com\/en\/docs\/tweets\u2026","indices":[95,118]}],"user_mentions":[{"screen_name":"rezafrezaf","name":"Reza Farivar","id":48293288,"id_str":"48293288","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 30 15:03:09 +0000 2017","id":925015222917763078,"id_str":"925015222917763078","text":"@sushdagr8 hi Sushant! both are platform-native. ^AP","display_text_range":[11,52],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":924505226144489472,"in_reply_to_status_id_str":"924505226144489472","in_reply_to_user_id":41423586,"in_reply_to_user_id_str":"41423586","in_reply_to_screen_name":"sushdagr8","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sushdagr8","name":"Sushant Joshi","id":41423586,"id_str":"41423586","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 30 15:01:33 +0000 2017","id":925014820725903362,"id_str":"925014820725903362","text":"@code_cyborg @TwitterAPI there's no test sandbox unfortunately, but if you follow the automation rules\u2026 https:\/\/t.co\/MDERyvW8e3","display_text_range":[25,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":924994701832458241,"in_reply_to_status_id_str":"924994701832458241","in_reply_to_user_id":915894010568482816,"in_reply_to_user_id_str":"915894010568482816","in_reply_to_screen_name":"code_cyborg","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@code_cyborg @TwitterAPI there's no test sandbox unfortunately, but if you follow the automation rules https:\/\/t.co\/EmtEsg6GpI you should be OK. ^AP","display_text_range":[25,148],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EmtEsg6GpI","expanded_url":"https:\/\/support.twitter.com\/articles\/76915","display_url":"support.twitter.com\/articles\/76915","indices":[103,126]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[13,24]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MDERyvW8e3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/925014820725903362","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[104,127]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 30 15:00:55 +0000 2017","id":925014657999540224,"id_str":"925014657999540224","text":"@code_cyborg @TwitterAPI sorry you're hitting those - you can use the HTTP headers to better manage how you make th\u2026 https:\/\/t.co\/4viDHBuiPT","display_text_range":[25,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":924994701832458241,"in_reply_to_status_id_str":"924994701832458241","in_reply_to_user_id":915894010568482816,"in_reply_to_user_id_str":"915894010568482816","in_reply_to_screen_name":"code_cyborg","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@code_cyborg @TwitterAPI sorry you're hitting those - you can use the HTTP headers to better manage how you make the calls, see https:\/\/t.co\/Ai29Jzxo0C ^AP","display_text_range":[25,155],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ai29Jzxo0C","expanded_url":"https:\/\/blog.twitter.com\/developer\/en_us\/topics\/tips\/2017\/good-practices-when-building-with-twitter-APIs.html","display_url":"blog.twitter.com\/developer\/en_u\u2026","indices":[128,151]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[13,24]}],"symbols":[]}},"quote_count":0,"reply_count":2,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4viDHBuiPT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/925014657999540224","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"code_cyborg","name":"Code Cyborg","id":915894010568482816,"id_str":"915894010568482816","indices":[0,12]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 30 14:58:51 +0000 2017","id":925014141093470208,"id_str":"925014141093470208","text":"@RealBenIrving best ways to get help with this would be via https:\/\/t.co\/7ApLxQF3nw or the platform support form https:\/\/t.co\/jUQPuVGJIQ ^AP","display_text_range":[15,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":925010841195474945,"in_reply_to_status_id_str":"925010841195474945","in_reply_to_user_id":243979961,"in_reply_to_user_id_str":"243979961","in_reply_to_screen_name":"RealBenIrving","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7ApLxQF3nw","expanded_url":"https:\/\/twittercommunity.com\/c\/dev-platform-feedback\/rules-and-policies","display_url":"twittercommunity.com\/c\/dev-platform\u2026","indices":[60,83]},{"url":"https:\/\/t.co\/jUQPuVGJIQ","expanded_url":"https:\/\/support.twitter.com\/forms\/platform","display_url":"support.twitter.com\/forms\/platform","indices":[113,136]}],"user_mentions":[{"screen_name":"RealBenIrving","name":"Ben Irving","id":243979961,"id_str":"243979961","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Oct 28 19:27:19 +0000 2017","id":924356925784973313,"id_str":"924356925784973313","text":"RT @MDCin303: Two @TwitterBoulder Tweeps talking with local junior developers about what got them into tech #ColoradoDevFest @happycamper @\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 28 18:22:47 +0000 2017","id":924340684240314368,"id_str":"924340684240314368","text":"Two @TwitterBoulder Tweeps talking with local junior developers about what got them into tech #ColoradoDevFest\u2026 https:\/\/t.co\/wRQU5KAYic","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21216071,"id_str":"21216071","name":"Mark Callahan","screen_name":"MDCin303","location":"Boulder, CO","url":"https:\/\/www.twitter.com","description":"Living the Tweet Life @TwitterBoulder and doing my part to spread the good word about social data...","translator_type":"none","protected":false,"verified":false,"followers_count":1627,"friends_count":2143,"listed_count":62,"favourites_count":11145,"statuses_count":3331,"created_at":"Wed Feb 18 17:13:18 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/849696176521662464\/Lk32rAkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/849696176521662464\/Lk32rAkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21216071\/1485367340","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Two @TwitterBoulder Tweeps talking with local junior developers about what got them into tech #ColoradoDevFest @happycamper @binary_aaron :) https:\/\/t.co\/N3yDM3dy4z","display_text_range":[0,140],"entities":{"hashtags":[{"text":"ColoradoDevFest","indices":[94,110]}],"urls":[],"user_mentions":[{"screen_name":"TwitterBoulder","name":"Twitter Boulder","id":2249227634,"id_str":"2249227634","indices":[4,19]},{"screen_name":"happycamper","name":"Emily Sheehan \ud83c\udfd5","id":63046977,"id_str":"63046977","indices":[111,123]},{"screen_name":"binary_aaron","name":"(\ud83e\udd51_ \ud83c\udf5e)","id":165837734,"id_str":"165837734","indices":[124,137]}],"symbols":[],"media":[{"id":924340679429439488,"id_str":"924340679429439488","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPq81jVwAAnXF-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPq81jVwAAnXF-.jpg","url":"https:\/\/t.co\/N3yDM3dy4z","display_url":"pic.twitter.com\/N3yDM3dy4z","expanded_url":"https:\/\/twitter.com\/MDCin303\/status\/924340684240314368\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":924340679429439488,"id_str":"924340679429439488","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPq81jVwAAnXF-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPq81jVwAAnXF-.jpg","url":"https:\/\/t.co\/N3yDM3dy4z","display_url":"pic.twitter.com\/N3yDM3dy4z","expanded_url":"https:\/\/twitter.com\/MDCin303\/status\/924340684240314368\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":10,"favorite_count":41,"entities":{"hashtags":[{"text":"ColoradoDevFest","indices":[94,110]}],"urls":[{"url":"https:\/\/t.co\/wRQU5KAYic","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/924340684240314368","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[112,135]}],"user_mentions":[{"screen_name":"TwitterBoulder","name":"Twitter Boulder","id":2249227634,"id_str":"2249227634","indices":[4,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ColoradoDevFest","indices":[108,124]}],"urls":[],"user_mentions":[{"screen_name":"MDCin303","name":"Mark Callahan","id":21216071,"id_str":"21216071","indices":[3,12]},{"screen_name":"TwitterBoulder","name":"Twitter Boulder","id":2249227634,"id_str":"2249227634","indices":[18,33]},{"screen_name":"happycamper","name":"Emily Sheehan \ud83c\udfd5","id":63046977,"id_str":"63046977","indices":[125,137]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Oct 28 17:51:55 +0000 2017","id":924332918238937089,"id_str":"924332918238937089","text":"RT @TwitterBoulder: 20 min till #coloradodevfest kicks off! @twitterdev @googledevs come together to show kids tech = fun! https:\/\/t.co\/Lit\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 28 15:41:19 +0000 2017","id":924300049248432128,"id_str":"924300049248432128","text":"20 min till #coloradodevfest kicks off! @twitterdev @googledevs come together to show kids tech = fun! https:\/\/t.co\/Lit3pwVRlX","display_text_range":[0,102],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2249227634,"id_str":"2249227634","name":"Twitter Boulder","screen_name":"TwitterBoulder","location":null,"url":null,"description":"Home base of Twitter's @Gnip team. Stay tuned for updates on local events, features and community initiatives!","translator_type":"regular","protected":false,"verified":true,"followers_count":12020,"friends_count":100,"listed_count":160,"favourites_count":562,"statuses_count":390,"created_at":"Mon Dec 16 19:47:52 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875162057561133056\/cFN2krss_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875162057561133056\/cFN2krss_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2249227634\/1497489878","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":12,"favorite_count":47,"entities":{"hashtags":[{"text":"coloradodevfest","indices":[12,28]}],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[40,51]},{"screen_name":"googledevs","name":"Google Developers","id":50090898,"id_str":"50090898","indices":[52,63]}],"symbols":[],"media":[{"id":924300045041549318,"id_str":"924300045041549318","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPF_mqUQAYTy5i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPF_mqUQAYTy5i.jpg","url":"https:\/\/t.co\/Lit3pwVRlX","display_url":"pic.twitter.com\/Lit3pwVRlX","expanded_url":"https:\/\/twitter.com\/TwitterBoulder\/status\/924300049248432128\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":924300045041549318,"id_str":"924300045041549318","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPF_mqUQAYTy5i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPF_mqUQAYTy5i.jpg","url":"https:\/\/t.co\/Lit3pwVRlX","display_url":"pic.twitter.com\/Lit3pwVRlX","expanded_url":"https:\/\/twitter.com\/TwitterBoulder\/status\/924300049248432128\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"coloradodevfest","indices":[32,48]}],"urls":[],"user_mentions":[{"screen_name":"TwitterBoulder","name":"Twitter Boulder","id":2249227634,"id_str":"2249227634","indices":[3,18]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[60,71]},{"screen_name":"googledevs","name":"Google Developers","id":50090898,"id_str":"50090898","indices":[72,83]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Oct 28 17:48:20 +0000 2017","id":924332015071125505,"id_str":"924332015071125505","text":"RT @TheVagus: Having a blast at #ColoradoDevFest #9news @TwitterDev @GoogleDevs https:\/\/t.co\/KWcDoy3jgT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 28 17:42:20 +0000 2017","id":924330505448800256,"id_str":"924330505448800256","text":"Having a blast at #ColoradoDevFest #9news @TwitterDev @GoogleDevs https:\/\/t.co\/KWcDoy3jgT","display_text_range":[0,65],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":167785147,"id_str":"167785147","name":"Matthew Bell","screen_name":"TheVagus","location":"Denver, Co","url":null,"description":"I shoot\/root for 9News\/Colorado Rapids.","translator_type":"none","protected":false,"verified":false,"followers_count":698,"friends_count":1593,"listed_count":39,"favourites_count":368,"statuses_count":2174,"created_at":"Sat Jul 17 14:10:19 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913396612352827392\/cisEMRjG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913396612352827392\/cisEMRjG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167785147\/1431786460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":7,"favorite_count":21,"entities":{"hashtags":[{"text":"ColoradoDevFest","indices":[18,34]},{"text":"9news","indices":[35,41]}],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[42,53]},{"screen_name":"googledevs","name":"Google Developers","id":50090898,"id_str":"50090898","indices":[54,65]}],"symbols":[],"media":[{"id":924330496066068480,"id_str":"924330496066068480","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","url":"https:\/\/t.co\/KWcDoy3jgT","display_url":"pic.twitter.com\/KWcDoy3jgT","expanded_url":"https:\/\/twitter.com\/TheVagus\/status\/924330505448800256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":924330496066068480,"id_str":"924330496066068480","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","url":"https:\/\/t.co\/KWcDoy3jgT","display_url":"pic.twitter.com\/KWcDoy3jgT","expanded_url":"https:\/\/twitter.com\/TheVagus\/status\/924330505448800256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ColoradoDevFest","indices":[32,48]},{"text":"9news","indices":[49,55]}],"urls":[],"user_mentions":[{"screen_name":"TheVagus","name":"Matthew Bell","id":167785147,"id_str":"167785147","indices":[3,12]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[56,67]},{"screen_name":"googledevs","name":"Google Developers","id":50090898,"id_str":"50090898","indices":[68,79]}],"symbols":[],"media":[{"id":924330496066068480,"id_str":"924330496066068480","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","url":"https:\/\/t.co\/KWcDoy3jgT","display_url":"pic.twitter.com\/KWcDoy3jgT","expanded_url":"https:\/\/twitter.com\/TheVagus\/status\/924330505448800256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":924330505448800256,"source_status_id_str":"924330505448800256","source_user_id":167785147,"source_user_id_str":"167785147"}]},"extended_entities":{"media":[{"id":924330496066068480,"id_str":"924330496066068480","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DNPhsFkUIAAmeLB.jpg","url":"https:\/\/t.co\/KWcDoy3jgT","display_url":"pic.twitter.com\/KWcDoy3jgT","expanded_url":"https:\/\/twitter.com\/TheVagus\/status\/924330505448800256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":924330505448800256,"source_status_id_str":"924330505448800256","source_user_id":167785147,"source_user_id_str":"167785147"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Oct 27 16:48:17 +0000 2017","id":923954517489709056,"id_str":"923954517489709056","text":"@mtpallas @RoundTeam you should be aware of the automation rules (or the app should!) - https:\/\/t.co\/EmtEsg6GpI - t\u2026 https:\/\/t.co\/d3pbW8fxCy","display_text_range":[21,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":923953786443517952,"in_reply_to_status_id_str":"923953786443517952","in_reply_to_user_id":1237750452,"in_reply_to_user_id_str":"1237750452","in_reply_to_screen_name":"mtpallas","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@mtpallas @RoundTeam you should be aware of the automation rules (or the app should!) - https:\/\/t.co\/EmtEsg6GpI - that's probably why account gets locked ^AP","display_text_range":[21,157],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EmtEsg6GpI","expanded_url":"https:\/\/support.twitter.com\/articles\/76915","display_url":"support.twitter.com\/articles\/76915","indices":[88,111]}],"user_mentions":[{"screen_name":"mtpallas","name":"Michael Pallas","id":1237750452,"id_str":"1237750452","indices":[0,9]},{"screen_name":"RoundTeam","name":"RoundTeam","id":360844323,"id_str":"360844323","indices":[10,20]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EmtEsg6GpI","expanded_url":"https:\/\/support.twitter.com\/articles\/76915","display_url":"support.twitter.com\/articles\/76915","indices":[88,111]},{"url":"https:\/\/t.co\/d3pbW8fxCy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/923954517489709056","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"mtpallas","name":"Michael Pallas","id":1237750452,"id_str":"1237750452","indices":[0,9]},{"screen_name":"RoundTeam","name":"RoundTeam","id":360844323,"id_str":"360844323","indices":[10,20]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Oct 27 16:41:15 +0000 2017","id":923952747564752896,"id_str":"923952747564752896","text":"@mtpallas @RoundTeam you should never be asked for API consumer keys and tokens by any third-party app. ^AP","display_text_range":[21,107],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":922875078773280768,"in_reply_to_status_id_str":"922875078773280768","in_reply_to_user_id":1237750452,"in_reply_to_user_id_str":"1237750452","in_reply_to_screen_name":"mtpallas","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":0,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mtpallas","name":"Michael Pallas","id":1237750452,"id_str":"1237750452","indices":[0,9]},{"screen_name":"RoundTeam","name":"RoundTeam","id":360844323,"id_str":"360844323","indices":[10,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Oct 27 16:39:49 +0000 2017","id":923952386976215040,"id_str":"923952386976215040","text":"@EstebanDHG that's a list of the standard API endpoints - which metrics are you referring to? ^AP","display_text_range":[12,97],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":923201962438299648,"in_reply_to_status_id_str":"923201962438299648","in_reply_to_user_id":1599371108,"in_reply_to_user_id_str":"1599371108","in_reply_to_screen_name":"EstebanDHG","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EstebanDHG","name":"Esteban De Hoyos G.","id":1599371108,"id_str":"1599371108","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Oct 27 16:26:27 +0000 2017","id":923949019621089280,"id_str":"923949019621089280","text":"RT @ryan_a_bell: Creating Chatbots & The Future of #Ai\n~via @TwitterDev\n#TapIntoTwitter Dec. 5 at @TwitterLA HQ\nhttps:\/\/t.co\/Wxf14pISYd htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 27 12:23:10 +0000 2017","id":923887798125346817,"id_str":"923887798125346817","text":"Creating Chatbots & The Future of #Ai\n~via @TwitterDev\n#TapIntoTwitter Dec. 5 at @TwitterLA HQ\u2026 https:\/\/t.co\/vM3LudlQUd","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2984872862,"id_str":"2984872862","name":"Ryan A Bell Ai AR VR","screen_name":"ryan_a_bell","location":"Los Angeles, CA","url":"https:\/\/www.linkedin.com\/in\/ryanandersonbell\/","description":"the beat poet of tech. #Ai #VR #AR #Writer Strategist\/Keynote\/Creative @TheEmmys @TwitterDev @NATO #NASASocial https:\/\/m.facebook.com\/randersonbell","translator_type":"none","protected":false,"verified":true,"followers_count":49335,"friends_count":26180,"listed_count":1397,"favourites_count":17433,"statuses_count":12373,"created_at":"Fri Jan 16 00:58:45 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848303483388182528\/pO_lW-g8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848303483388182528\/pO_lW-g8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984872862\/1498821961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"59612bd882018c51","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59612bd882018c51.json","place_type":"city","name":"Santa Monica","full_name":"Santa Monica, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-118.517358,33.995177],[-118.517358,34.050199],[-118.443482,34.050199],[-118.443482,33.995177]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Creating Chatbots & The Future of #Ai\n~via @TwitterDev\n#TapIntoTwitter Dec. 5 at @TwitterLA HQ\nhttps:\/\/t.co\/Wxf14pISYd https:\/\/t.co\/ep5Z82s8kW","display_text_range":[0,122],"entities":{"hashtags":[{"text":"Ai","indices":[38,41]},{"text":"TapIntoTwitter","indices":[59,74]}],"urls":[{"url":"https:\/\/t.co\/Wxf14pISYd","expanded_url":"http:\/\/meetu.ps\/3f9cCc","display_url":"meetu.ps\/3f9cCc","indices":[99,122]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[47,58]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[85,95]}],"symbols":[],"media":[{"id":923884569417236480,"id_str":"923884569417236480","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/DNJMHvWUQAAvPpT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/DNJMHvWUQAAvPpT.jpg","url":"https:\/\/t.co\/ep5Z82s8kW","display_url":"pic.twitter.com\/ep5Z82s8kW","expanded_url":"https:\/\/twitter.com\/ryan_a_bell\/status\/923887798125346817\/photo\/1","type":"animated_gif","sizes":{"large":{"w":296,"h":200,"resize":"fit"},"small":{"w":296,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":296,"h":200,"resize":"fit"}},"video_info":{"aspect_ratio":[37,25],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/DNJMHvWUQAAvPpT.mp4"}]}}]},"extended_entities":{"media":[{"id":923884569417236480,"id_str":"923884569417236480","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/DNJMHvWUQAAvPpT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/DNJMHvWUQAAvPpT.jpg","url":"https:\/\/t.co\/ep5Z82s8kW","display_url":"pic.twitter.com\/ep5Z82s8kW","expanded_url":"https:\/\/twitter.com\/ryan_a_bell\/status\/923887798125346817\/photo\/1","type":"animated_gif","sizes":{"large":{"w":296,"h":200,"resize":"fit"},"small":{"w":296,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":296,"h":200,"resize":"fit"}},"video_info":{"aspect_ratio":[37,25],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/DNJMHvWUQAAvPpT.mp4"}]}}]}},"quote_count":0,"reply_count":6,"retweet_count":20,"favorite_count":40,"entities":{"hashtags":[{"text":"Ai","indices":[38,41]},{"text":"TapIntoTwitter","indices":[59,74]}],"urls":[{"url":"https:\/\/t.co\/vM3LudlQUd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/923887798125346817","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[100,123]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[47,58]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[85,95]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Ai","indices":[55,58]},{"text":"TapIntoTwitter","indices":[76,91]}],"urls":[{"url":"https:\/\/t.co\/Wxf14pISYd","expanded_url":"http:\/\/meetu.ps\/3f9cCc","display_url":"meetu.ps\/3f9cCc","indices":[116,139]}],"user_mentions":[{"screen_name":"ryan_a_bell","name":"Ryan A Bell Ai AR VR","id":2984872862,"id_str":"2984872862","indices":[3,15]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[64,75]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[102,112]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Thu Oct 26 16:51:24 +0000 2017","id":923592913702895617,"id_str":"923592913702895617","text":"October Kochi meetup happening this Saturday! Come #tapintotwitter with us & RSVP \ud83d\udc47\ud83c\udffd https:\/\/t.co\/r5jpKan4Cu","display_text_range":[0,88],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":922530945424486400,"quoted_status_id_str":"922530945424486400","quoted_status":{"created_at":"Mon Oct 23 18:31:31 +0000 2017","id":922530945424486400,"id_str":"922530945424486400","text":"#Kochi #TapIntoTwitter October #Meetup on 28th. Check it out and RSVP! https:\/\/t.co\/YQSa9Q8bkW @TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116995079,"id_str":"116995079","name":"Shahul Hameed","screen_name":"Shahul___Hameed","location":"Cochin, India","url":"http:\/\/www.shahulhameed.in","description":"Technology. Internet. Books. Travel. Product Engineer @entri_me. City Lead @TwitterDev. Volunteer @isoctrv #netgov","translator_type":"regular","protected":false,"verified":false,"followers_count":1073,"friends_count":608,"listed_count":142,"favourites_count":5954,"statuses_count":6403,"created_at":"Wed Feb 24 06:08:00 +0000 2010","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"382044","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457764840237330432\/H-pStJ_-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457764840237330432\/H-pStJ_-.jpeg","profile_background_tile":false,"profile_link_color":"75406A","profile_sidebar_border_color":"E6ECC0","profile_sidebar_fill_color":"BBD3BD","profile_text_color":"427C7E","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/900375043628191746\/vjxsErSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/900375043628191746\/vjxsErSm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116995079\/1450887933","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"Kochi","indices":[0,6]},{"text":"TapIntoTwitter","indices":[7,22]},{"text":"Meetup","indices":[31,38]}],"urls":[{"url":"https:\/\/t.co\/YQSa9Q8bkW","expanded_url":"http:\/\/meetu.ps\/3dK3Yb","display_url":"meetu.ps\/3dK3Yb","indices":[72,95]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[96,107]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":7,"favorite_count":16,"entities":{"hashtags":[{"text":"tapintotwitter","indices":[51,66]}],"urls":[{"url":"https:\/\/t.co\/r5jpKan4Cu","expanded_url":"https:\/\/twitter.com\/shahul___hameed\/status\/922530945424486400","display_url":"twitter.com\/shahul___hamee\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 24 18:31:04 +0000 2017","id":922893217892143104,"id_str":"922893217892143104","text":"\ud83c\udf9e Twitter Kit 3.2.1 for iOS brings more immersive, engaging, inline video to the Tweets in your app. Upgrade today!\u2026 https:\/\/t.co\/vKRSPnlf5r","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\ud83c\udf9e Twitter Kit 3.2.1 for iOS brings more immersive, engaging, inline video to the Tweets in your app. Upgrade today! \ud83d\udcf2 https:\/\/t.co\/tTMGHZpzxv https:\/\/t.co\/fhDejXqvJC","display_text_range":[0,142],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tTMGHZpzxv","expanded_url":"https:\/\/blog.twitter.com\/developer\/en_us\/topics\/tools\/2017\/Twitter-Kit-for-iOS-now-plays-video-inline.html","display_url":"blog.twitter.com\/developer\/en_u\u2026","indices":[119,142]}],"user_mentions":[],"symbols":[],"media":[{"id":922892775045005312,"id_str":"922892775045005312","indices":[143,166],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/922892775045005312\/pu\/img\/4I29WHRlY4fGMJuj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/922892775045005312\/pu\/img\/4I29WHRlY4fGMJuj.jpg","url":"https:\/\/t.co\/fhDejXqvJC","display_url":"pic.twitter.com\/fhDejXqvJC","expanded_url":"https:\/\/twitter.com\/TwitterDev\/status\/922893217892143104\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":20733,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/vid\/1280x720\/w7QmO871qwcWWKSR.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/vid\/640x360\/pK0nF3o22FhUt62g.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/pl\/zB7tY_5jCrWNKyNu.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/vid\/320x180\/qTod6acNxwdJk2RH.mp4"}]}}]},"extended_entities":{"media":[{"id":922892775045005312,"id_str":"922892775045005312","indices":[143,166],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/922892775045005312\/pu\/img\/4I29WHRlY4fGMJuj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/922892775045005312\/pu\/img\/4I29WHRlY4fGMJuj.jpg","url":"https:\/\/t.co\/fhDejXqvJC","display_url":"pic.twitter.com\/fhDejXqvJC","expanded_url":"https:\/\/twitter.com\/TwitterDev\/status\/922893217892143104\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":20733,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/vid\/1280x720\/w7QmO871qwcWWKSR.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/vid\/640x360\/pK0nF3o22FhUt62g.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/pl\/zB7tY_5jCrWNKyNu.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/922892775045005312\/pu\/vid\/320x180\/qTod6acNxwdJk2RH.mp4"}]}}]}},"quote_count":0,"reply_count":2,"retweet_count":14,"favorite_count":49,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vKRSPnlf5r","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/922893217892143104","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 24 12:59:26 +0000 2017","id":922809759157374976,"id_str":"922809759157374976","text":"@thelandonwilson @TwitterSupport thanks for noticing this and reporting it to us, we will get it fixed up! The link\u2026 https:\/\/t.co\/ZCr9v4UwZp","display_text_range":[33,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":922565367628570625,"in_reply_to_status_id_str":"922565367628570625","in_reply_to_user_id":884115628214374401,"in_reply_to_user_id_str":"884115628214374401","in_reply_to_screen_name":"thelandonwilson","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@thelandonwilson @TwitterSupport thanks for noticing this and reporting it to us, we will get it fixed up! The links at the top of that page work, though :-) ^AP","display_text_range":[33,161],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thelandonwilson","name":"Landon Wilson","id":884115628214374401,"id_str":"884115628214374401","indices":[0,16]},{"screen_name":"TwitterSupport","name":"Twitter Support","id":17874544,"id_str":"17874544","indices":[17,32]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZCr9v4UwZp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/922809759157374976","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"thelandonwilson","name":"Landon Wilson","id":884115628214374401,"id_str":"884115628214374401","indices":[0,16]},{"screen_name":"TwitterSupport","name":"Twitter Support","id":17874544,"id_str":"17874544","indices":[17,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 24 12:55:45 +0000 2017","id":922808831859707905,"id_str":"922808831859707905","text":"@paddykgriffin @TwitterAPI hi there, the best way to get support for the API is via the developer forums https:\/\/t.co\/tvY3H4zEub ^AP","display_text_range":[27,132],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":922794479370866688,"in_reply_to_status_id_str":"922794479370866688","in_reply_to_user_id":14701642,"in_reply_to_user_id_str":"14701642","in_reply_to_screen_name":"paddykgriffin","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tvY3H4zEub","expanded_url":"https:\/\/twittercommunity.com","display_url":"twittercommunity.com","indices":[105,128]}],"user_mentions":[{"screen_name":"paddykgriffin","name":"paddy griffin","id":14701642,"id_str":"14701642","indices":[0,14]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[15,26]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Oct 24 12:54:49 +0000 2017","id":922808598014590976,"id_str":"922808598014590976","text":"@austinpjones91 no, it's part of the Ads platform specifically.","display_text_range":[16,63],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":922568689337057281,"in_reply_to_status_id_str":"922568689337057281","in_reply_to_user_id":2207733066,"in_reply_to_user_id_str":"2207733066","in_reply_to_screen_name":"austinpjones91","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"austinpjones91","name":"Austin Jones","id":2207733066,"id_str":"2207733066","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 23 19:24:48 +0000 2017","id":922544352857153538,"id_str":"922544352857153538","text":"@austinpjones91 Yes indeed, part of the Ads API (that needs whitelisting) see https:\/\/t.co\/hVU7ekyGpM ^AP","display_text_range":[16,105],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":922533148591669248,"in_reply_to_status_id_str":"922533148591669248","in_reply_to_user_id":2207733066,"in_reply_to_user_id_str":"2207733066","in_reply_to_screen_name":"austinpjones91","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hVU7ekyGpM","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/ads\/audiences\/api-reference\/insights","display_url":"developer.twitter.com\/en\/docs\/ads\/au\u2026","indices":[78,101]}],"user_mentions":[{"screen_name":"austinpjones91","name":"Austin Jones","id":2207733066,"id_str":"2207733066","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 23 11:23:24 +0000 2017","id":922423205993877504,"id_str":"922423205993877504","text":"@Nommiin sorry about that! thanks for letting us know, we just fixed that link :-) ^AP","display_text_range":[9,86],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":921868598712381440,"in_reply_to_status_id_str":"921868598712381440","in_reply_to_user_id":4879034027,"in_reply_to_user_id_str":"4879034027","in_reply_to_screen_name":"Nommiin","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nommiin","name":"\ud835\ude63\ud835\ude64\ud835\ude62\ud835\ude62\ud835\ude5e\ud835\ude5e\ud835\ude63","id":4879034027,"id_str":"4879034027","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Oct 23 11:03:46 +0000 2017","id":922418262364835840,"id_str":"922418262364835840","text":"@SimplyBenGenius thanks for noticing, we'll get that fixed up \ud83d\ude2c Here's what you probably need https:\/\/t.co\/p1pdrOEwNX ^AP","display_text_range":[17,121],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":922403717114159104,"in_reply_to_status_id_str":"922403717114159104","in_reply_to_user_id":483051364,"in_reply_to_user_id_str":"483051364","in_reply_to_screen_name":"SimplyBenGenius","user":{"id":2244994945,"id_str":"2244994945","name":"Twitter Dev","screen_name":"TwitterDev","location":"Internet","url":"https:\/\/developer.twitter.com\/","description":"Your official source for Twitter Platform news, updates & events. Need technical help? Visit https:\/\/twittercommunity.com\/ \u2328\ufe0f #TapIntoTwitter","translator_type":"regular","protected":false,"verified":true,"followers_count":487486,"friends_count":1524,"listed_count":1260,"favourites_count":2231,"statuses_count":3282,"created_at":"Sat Dec 14 04:35:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880136122604507136\/xHrnqf1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244994945\/1498675817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p1pdrOEwNX","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/direct-messages\/message-attachments\/guides\/attaching-location","display_url":"developer.twitter.com\/en\/docs\/direct\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"SimplyBenGenius","name":"Ben","id":483051364,"id_str":"483051364","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710210000","toDate":"201711200003"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_last.json b/spec/fixtures/premium_search_last.json new file mode 100644 index 000000000..83a408844 --- /dev/null +++ b/spec/fixtures/premium_search_last.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Sun Nov 19 23:15:07 +0000 2017","id":932386786193547264,"id_str":"932386786193547264","text":"RT @KITKATJapan: \u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"http:\/\/www.justsystems.com\/jp\/products\/tweetatok\/\" rel=\"nofollow\"\u003eTweet ATOK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141878728,"id_str":"141878728","name":"\u9b5a\u96ea\u9b3c\u5b50","screen_name":"o_kinon","location":" \u65e5\u672c\u306e\u9685\u3063\u3053","url":null,"description":"\u304f\u305a\u308c\u3002\u9762\u8b58\u3042\u308b\u30ab\u30e2\u306a\u65b9\u306f\u9023\u7d61\u304f\u30fc\u3060\u3055\u3044\u3002\u9762\u8b58\u306a\u3044\u65b9\u3082\u305a\u305a\u3044\u3068\u3002 \u30d8\u30c3\u30c0\u30fc\u753b\u50cf\u306f\u30aa\u30fc\u30c8\u30de\uff08 @557188AT ) \u3055\u3093\u4f5c\u3067\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":613,"friends_count":1342,"listed_count":17,"favourites_count":802076,"statuses_count":81697,"created_at":"Sun May 09 08:42:30 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619828847840616448\/rrPiJFll_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619828847840616448\/rrPiJFll_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141878728\/1465997953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:00 +0000 2017","id":932382983981592581,"id_str":"932382983981592581","text":"\u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":28,"favorite_count":43,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[54,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[71,76]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:05 +0000 2017","id":932386779738513409,"id_str":"932386779738513409","text":"RT @pvckingpizza: Sekarang dah ada PSD tau! PizzaScarf Delivery untuk para wanita diluar sana. RT bagi semua tahu \ud83d\ude0d\ud83c\udf55 https:\/\/t.co\/GwPuKOwzqD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826977896,"id_str":"826977896","name":"Dandelion","screen_name":"aishahhlee","location":"In your heart","url":null,"description":"unpredictable \ud83d\udc83\ud83c\udffb","translator_type":"none","protected":false,"verified":false,"followers_count":1087,"friends_count":708,"listed_count":14,"favourites_count":2357,"statuses_count":54636,"created_at":"Sun Sep 16 11:52:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486367027200684032\/-dTDBbZe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486367027200684032\/-dTDBbZe.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903960877677797376\/Crl4OkCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903960877677797376\/Crl4OkCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826977896\/1476608525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 14:39:05 +0000 2017","id":932256924380282880,"id_str":"932256924380282880","text":"Sekarang dah ada PSD tau! PizzaScarf Delivery untuk para wanita diluar sana. RT bagi semua tahu \ud83d\ude0d\ud83c\udf55 https:\/\/t.co\/GwPuKOwzqD","display_text_range":[0,98],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848587888,"id_str":"2848587888","name":"your pizza boy","screen_name":"pvckingpizza","location":"Johore, Malaysia","url":"http:\/\/Instagram.com\/pucking.pizza","description":"First of all, perempuan tinggi memang bae af.","translator_type":"regular","protected":false,"verified":false,"followers_count":29821,"friends_count":2481,"listed_count":98,"favourites_count":5073,"statuses_count":41245,"created_at":"Thu Oct 09 09:50:42 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921021302659473409\/5-kZybXm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921021302659473409\/5-kZybXm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848587888\/1508428760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":586,"favorite_count":447,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":932256511601938432,"id_str":"932256511601938432","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":270,"resize":"fit"},"large":{"w":360,"h":270,"resize":"fit"}}},{"id":932256511597748224,"id_str":"932256511597748224","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":360,"resize":"fit"},"medium":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}}},{"id":932256511614521345,"id_str":"932256511614521345","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":600,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":751,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pvckingpizza","name":"your pizza boy","id":2848587888,"id_str":"2848587888","indices":[3,16]}],"symbols":[],"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"}]},"extended_entities":{"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511601938432,"id_str":"932256511601938432","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":270,"resize":"fit"},"large":{"w":360,"h":270,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511597748224,"id_str":"932256511597748224","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":360,"resize":"fit"},"medium":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511614521345,"id_str":"932256511614521345","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":600,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":751,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386775397318659,"id_str":"932386775397318659","text":"@suntory #\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\n\u3092\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u3067\u3059\u306d\uff01\n\ud83c\udf55\ud83c\udf7b\u2728","display_text_range":[9,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932382987873865729,"in_reply_to_status_id_str":"932382987873865729","in_reply_to_user_id":133684052,"in_reply_to_user_id_str":"133684052","in_reply_to_screen_name":"suntory","user":{"id":3513803360,"id_str":"3513803360","name":"\u306b\u3053\u307d\u3093(\u4e0d\u5b9a\u671f\u6d3b\u52d5\u4e2d)","screen_name":"nikopon1115","location":"\u4eac\u90fd","url":null,"description":"2017\u5e74\u3082\u6b4c\u306b\u5143\u6c17\u3092\u8cb0\u3063\u3066\u3001\u7b11\u9854\u591a\u304d\u5e74\u306b\uff01\u6c37\u5ddd\u304d\u3088\u3057\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":117,"listed_count":3,"favourites_count":50277,"statuses_count":33389,"created_at":"Thu Sep 10 09:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513803360\/1444717759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[9,16]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386773459767296,"id_str":"932386773459767296","text":"\ud83c\udf55 x43 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386772763467777,"id_str":"932386772763467777","text":"Vou comer uma pizza agr nql pique \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818171243262332929,"id_str":"818171243262332929","name":"elice de nova","screen_name":"LcdeNova22","location":"COMPLEXO DE NOVA CIDADE","url":"https:\/\/soundcloud.com\/djlcdenovacidade","description":"A despedida foi repentina e sem volta, hoje a senhora esta na companhia de Deus e vive em nossas lembran\u00e7as !!!\nSaudades eterna v\u00f3 \ud83d\ude2a\ud83d\udc94\n\n09\/05\ud83d\udc91\n04\/11\ud83d\udc8f\ud83c\udfe0","translator_type":"none","protected":false,"verified":false,"followers_count":600,"friends_count":1845,"listed_count":0,"favourites_count":4611,"statuses_count":7609,"created_at":"Sun Jan 08 19:03:20 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930880778069782528\/sXXyujOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930880778069782528\/sXXyujOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818171243262332929\/1506802469","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:02 +0000 2017","id":932386766614536192,"id_str":"932386766614536192","text":"RT @BPPope: @bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quacks Like A Duc\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818605031591026689,"id_str":"818605031591026689","name":"Deb Moses","screen_name":"indiblue2","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1007,"friends_count":1092,"listed_count":2,"favourites_count":31576,"statuses_count":22947,"created_at":"Mon Jan 09 23:47:03 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:45:17 +0000 2017","id":932333982041169926,"id_str":"932333982041169926","text":"@bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quack\u2026 https:\/\/t.co\/Kh3GwnokUH","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4175166177,"in_reply_to_user_id_str":"4175166177","in_reply_to_screen_name":"bocavista2016","user":{"id":563997163,"id_str":"563997163","name":"BPPope.com","screen_name":"BPPope","location":null,"url":"http:\/\/www.BPPope.com","description":"TRUMP2020","translator_type":"none","protected":false,"verified":false,"followers_count":7594,"friends_count":2678,"listed_count":354,"favourites_count":259927,"statuses_count":270304,"created_at":"Thu Apr 26 19:57:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/689203975380320257\/KrzDdTei_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/689203975380320257\/KrzDdTei_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":931015440201068545,"quoted_status_id_str":"931015440201068545","quoted_status":{"created_at":"Thu Nov 16 04:25:53 +0000 2017","id":931015440201068545,"id_str":"931015440201068545","text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAn\u2026 https:\/\/t.co\/XaWmEF9ME7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4175166177,"id_str":"4175166177","name":"Boca Vista","screen_name":"bocavista2016","location":"Raleigh, NC","url":null,"description":"Trump or NONE!","translator_type":"none","protected":false,"verified":false,"followers_count":30744,"friends_count":28,"listed_count":373,"favourites_count":36719,"statuses_count":38420,"created_at":"Fri Nov 13 00:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4175166177\/1455066437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAnd what he does to little girls is no laughing matter\ud83d\ude20\n\nhttps:\/\/t.co\/nxuW0hPQlg\n@realDonaldTrump #MAGA #Hannity #IngrahamAngle #QAnon\n#FollowTheWhiteRabbit #TheStorm","display_text_range":[0,279],"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]},{"text":"MAGA","indices":[211,216]},{"text":"Hannity","indices":[217,225]},{"text":"IngrahamAngle","indices":[226,240]},{"text":"QAnon","indices":[241,247]},{"text":"FollowTheWhiteRabbit","indices":[248,269]},{"text":"TheStorm","indices":[270,279]}],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[194,210]}],"symbols":[],"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]},"extended_entities":{"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]}},"quote_count":0,"reply_count":499,"retweet_count":3963,"favorite_count":3987,"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]}],"urls":[{"url":"https:\/\/t.co\/XaWmEF9ME7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931015440201068545","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"extended_tweet":{"full_text":"@bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quacks Like A Duck\ud83c\udf55\ud83d\udd3aIt\u2019s A Duck\ud83d\udd3aOr Rather A Pedofile\u274c\u274cSTOP The Lies Expose The Villains\u274c\u274cJustice\ud83d\ude82\u203c\ufe0f\ud83d\ude0e https:\/\/t.co\/YMGtpNqBpF","display_text_range":[0,211],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YMGtpNqBpF","expanded_url":"https:\/\/twitter.com\/bocavista2016\/status\/931015440201068545","display_url":"twitter.com\/bocavista2016\/\u2026","indices":[212,235]}],"user_mentions":[{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[0,14]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[15,31]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":35,"favorite_count":39,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Kh3GwnokUH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932333982041169926","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[0,14]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[15,31]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"quoted_status_id":931015440201068545,"quoted_status_id_str":"931015440201068545","quoted_status":{"created_at":"Thu Nov 16 04:25:53 +0000 2017","id":931015440201068545,"id_str":"931015440201068545","text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAn\u2026 https:\/\/t.co\/XaWmEF9ME7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4175166177,"id_str":"4175166177","name":"Boca Vista","screen_name":"bocavista2016","location":"Raleigh, NC","url":null,"description":"Trump or NONE!","translator_type":"none","protected":false,"verified":false,"followers_count":30744,"friends_count":28,"listed_count":373,"favourites_count":36719,"statuses_count":38420,"created_at":"Fri Nov 13 00:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4175166177\/1455066437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAnd what he does to little girls is no laughing matter\ud83d\ude20\n\nhttps:\/\/t.co\/nxuW0hPQlg\n@realDonaldTrump #MAGA #Hannity #IngrahamAngle #QAnon\n#FollowTheWhiteRabbit #TheStorm","display_text_range":[0,279],"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]},{"text":"MAGA","indices":[211,216]},{"text":"Hannity","indices":[217,225]},{"text":"IngrahamAngle","indices":[226,240]},{"text":"QAnon","indices":[241,247]},{"text":"FollowTheWhiteRabbit","indices":[248,269]},{"text":"TheStorm","indices":[270,279]}],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[194,210]}],"symbols":[],"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]},"extended_entities":{"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]}},"quote_count":0,"reply_count":499,"retweet_count":3963,"favorite_count":3987,"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]}],"urls":[{"url":"https:\/\/t.co\/XaWmEF9ME7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931015440201068545","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BPPope","name":"BPPope.com","id":563997163,"id_str":"563997163","indices":[3,10]},{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[12,26]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:00 +0000 2017","id":932386759282790400,"id_str":"932386759282790400","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4555964174,"id_str":"4555964174","name":"\u304e\u308b\u3066\u3044\u3059","screen_name":"ultrafightnexus","location":null,"url":null,"description":"\u30cd\u30af\u30b5\u30b9\u3068\u30a8\u30c3\u30af\u30b9\u304c\u597d\u304d\u306a\u30a6\u30eb\u30c8\u30e9\u30de\u30f3\u30d5\u30e5\u30fc\u30b8\u30e7\u30f3\u30d5\u30a1\u30a4\u30c8\u6c11\u3002\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u3068\u304b\u30a2\u30cb\u30e1\u3082\u898b\u3066\u307e\u3059\u3002\u6700\u8fd1\u30ac\u30f3\u30d7\u30e9\u71b1\u304c\u518d\u71c3\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":267,"friends_count":389,"listed_count":0,"favourites_count":10172,"statuses_count":4588,"created_at":"Mon Dec 14 11:18:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907972598822199296\/stf4J1dJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907972598822199296\/stf4J1dJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4555964174\/1488404033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:59 +0000 2017","id":932386753226215424,"id_str":"932386753226215424","text":"RT @fuwa0409p: \u30d4\u30b6\u4f5c\u308a\u306b\u6311\u6226\u3057\u3066\u307f\u305f\u3044\u5c71P\ud83c\udf55\n\u96d1\u8a8c\u306e\u4f01\u753b\u3068\u304b\u3067\u30be\u30d2\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:09:06 +0000 2017","id":932385273425440768,"id_str":"932385273425440768","text":"\u30d4\u30b6\u4f5c\u308a\u306b\u6311\u6226\u3057\u3066\u307f\u305f\u3044\u5c71P\ud83c\udf55\n\u96d1\u8a8c\u306e\u4f01\u753b\u3068\u304b\u3067\u30be\u30d2\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":729979007395991552,"id_str":"729979007395991552","name":"\u3068\u304d\u3053","screen_name":"fuwa0409p","location":"\u95a2\u897f","url":null,"description":"\u5c71\u4e0b\u667a\u4e45\u541b\u304c\u5927\u597d\u304d\u2764\ufe0f\u5c71P only\u306e\u30ad\u30a6\u30a4\u4e16\u4ee3\u306esweetie\u3067\u3059^ ^\u6ca2\u5c71\u306esweetie\u306e\u65b9\u3068\u304a\u53cb\u9054\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u2728\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044\u266a\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u9802\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\ud83d\ude0a","translator_type":"none","protected":false,"verified":false,"followers_count":420,"friends_count":345,"listed_count":1,"favourites_count":6708,"statuses_count":17866,"created_at":"Tue May 10 10:18:52 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851298865701462016\/t-3yKGj__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851298865701462016\/t-3yKGj__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729979007395991552\/1505912050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[38,43]},{"text":"sound_tripper","indices":[45,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[53,58]},{"text":"sound_tripper","indices":[60,74]}],"urls":[],"user_mentions":[{"screen_name":"fuwa0409p","name":"\u3068\u304d\u3053","id":729979007395991552,"id_str":"729979007395991552","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:57 +0000 2017","id":932386746314231808,"id_str":"932386746314231808","text":"@xTrisarahtops Breakfast, lunch, snacks, brunch, dinner.\nThere. We even have got the customized categories. \ud83c\udf5e\ud83c\udf5c\ud83c\udf72\ud83c\udf55","display_text_range":[15,112],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932386173632294914,"in_reply_to_status_id_str":"932386173632294914","in_reply_to_user_id":835143218450874368,"in_reply_to_user_id_str":"835143218450874368","in_reply_to_screen_name":"xTrisarahtops","user":{"id":24408793,"id_str":"24408793","name":"\ud83c\uddfb\ud83c\udde6gab.ai\/Fabs\ud83d\udc38\ud83e\udd81","screen_name":"Eutrapelico","location":"S\u00e3o Paulo","url":"http:\/\/eutrapelia.com.br","description":"Cat\u00f3lico.\n\ud83d\udc92\ud83d\udcff\nFilosofia.\nDesenvolvimento de jogos.","translator_type":"none","protected":false,"verified":false,"followers_count":384,"friends_count":1476,"listed_count":9,"favourites_count":21795,"statuses_count":28607,"created_at":"Sat Mar 14 18:35:57 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1D2E2F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/712938048825257984\/95LUhT2L.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/712938048825257984\/95LUhT2L.jpg","profile_background_tile":false,"profile_link_color":"D029E0","profile_sidebar_border_color":"EEF72B","profile_sidebar_fill_color":"16DF55","profile_text_color":"171711","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921524959691923456\/DcOG85l__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921524959691923456\/DcOG85l__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24408793\/1458812683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xTrisarahtops","name":"trisarahtops \ud83e\udd83","id":835143218450874368,"id_str":"835143218450874368","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:55 +0000 2017","id":932386734876262400,"id_str":"932386734876262400","text":"\ud83c\udf55 x42 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:50 +0000 2017","id":932386714185879552,"id_str":"932386714185879552","text":"RT @LizCrokin: Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referenced this\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2735669277,"id_str":"2735669277","name":"dor","screen_name":"DorCavegrrl","location":"earth walker","url":null,"description":"water bearer","translator_type":"none","protected":false,"verified":false,"followers_count":40,"friends_count":60,"listed_count":8,"favourites_count":3522,"statuses_count":1533,"created_at":"Thu Aug 07 01:14:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867036943326031874\/-4VxSW--_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867036943326031874\/-4VxSW--_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2735669277\/1411917119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 23:21:04 +0000 2017","id":932025897258856448,"id_str":"932025897258856448","text":"Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referen\u2026 https:\/\/t.co\/nDDqOAFYfS","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18279320,"id_str":"18279320","name":"LIZ THE\ud83c\udf2aIS HERE\u203c\ufe0f\ud83c\udf55","screen_name":"LizCrokin","location":"Los Angeles, CA","url":"https:\/\/www.paypal.me\/LIZCROKIN","description":"Malice author, sex crime survivor & investigative journalist censored by MSM for covering Clinton corruption, sex trafficking & Seth Rich. Pedogate is REAL\u203c\ufe0f\ud83c\udf55","translator_type":"none","protected":false,"verified":true,"followers_count":34022,"friends_count":1649,"listed_count":306,"favourites_count":55906,"statuses_count":19257,"created_at":"Sun Dec 21 04:47:30 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/9326842\/LizSlashRocks-18-43-38.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/9326842\/LizSlashRocks-18-43-38.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926554896450560000\/SMcUNLrc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926554896450560000\/SMcUNLrc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18279320\/1473489330","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referenced this party in Wiki!\ud83d\udc47\ud83c\udffc https:\/\/t.co\/qrxIt4pSH4","display_text_range":[0,144],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932025892062208001,"id_str":"932025892062208001","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":747,"h":1066,"resize":"fit"},"small":{"w":477,"h":680,"resize":"fit"},"large":{"w":747,"h":1066,"resize":"fit"}}},{"id":932025892066299904,"id_str":"932025892066299904","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":684,"resize":"fit"},"large":{"w":748,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":622,"resize":"fit"}}},{"id":932025892057923589,"id_str":"932025892057923589","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932025892062208001,"id_str":"932025892062208001","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":747,"h":1066,"resize":"fit"},"small":{"w":477,"h":680,"resize":"fit"},"large":{"w":747,"h":1066,"resize":"fit"}}},{"id":932025892066299904,"id_str":"932025892066299904","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":684,"resize":"fit"},"large":{"w":748,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":622,"resize":"fit"}}},{"id":932025892057923589,"id_str":"932025892057923589","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]}},"quote_count":0,"reply_count":29,"retweet_count":370,"favorite_count":338,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nDDqOAFYfS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932025897258856448","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[121,144]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LizCrokin","name":"LIZ THE\ud83c\udf2aIS HERE\u203c\ufe0f\ud83c\udf55","id":18279320,"id_str":"18279320","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:50 +0000 2017","id":932386714047229952,"id_str":"932386714047229952","text":"RT @ree_na_chan: \u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u3055\u3093ww\u307e\u305f\u304a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:07:53 +0000 2017","id":932384966406635520,"id_str":"932384966406635520","text":"\u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u2026 https:\/\/t.co\/t48iyyoS2n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215464736,"id_str":"215464736","name":"\u9ece\u7f8e","screen_name":"ree_na_chan","location":"Fukui,Japan","url":null,"description":"\u798f\u4e95\u306e\u7a7a\u306e\u4e0b\u3001\u5c71\u4e0b\u667a\u4e45\uff78\uff9d\u5fdc\u63f4\u4e2d\uff01 Sweeties\u3001\u30b8\u30e3\u30cbLOVE\u029a\u2764\u025e\uff7b\uff9d\u4ef2\u826f\u304f\u3057\u307e\u3057\u3087\u266a\u266a\u266a \u2606\u597d\u7269\u306f\u3001\u2729\u4fee\u4e8c\u3068\u5f70\u2729\u4e80\u3068\u5c71P\u2729\u500b\u4eba\u7684\u2190\u4e80\u3061\u3083\u3093\ud83d\udc22\u3082\u304a\u8336\u306e\u9593\u3067\u5fdc\u63f4\u4e2d\u3002\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u2606(*^^)v","translator_type":"none","protected":false,"verified":false,"followers_count":199,"friends_count":163,"listed_count":2,"favourites_count":3850,"statuses_count":11920,"created_at":"Sun Nov 14 00:57:28 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/839782249\/560dab98c53524761a369a949900b3c4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/839782249\/560dab98c53524761a369a949900b3c4.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875741464679948288\/EJiPyCPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875741464679948288\/EJiPyCPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215464736\/1475887643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u3055\u3093ww\u307e\u305f\u304a\u540d\u524d\u304c\u51fa\u305f\u306d\ud83d\ude2c\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","display_text_range":[0,151],"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[131,136]},{"text":"sound_tripper","indices":[137,151]}],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t48iyyoS2n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932384966406635520","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ree_na_chan","name":"\u9ece\u7f8e","id":215464736,"id_str":"215464736","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:47 +0000 2017","id":932386703079301126,"id_str":"932386703079301126","text":"\ud83c\udf55 x41 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:46 +0000 2017","id":932386700629864449,"id_str":"932386700629864449","text":"Holiday Gift Ideas \u2764 Recipes \ud83c\udf72 Pizza delivery \ud83c\udf55 https:\/\/t.co\/70xfVjTPJM","source":"\u003ca href=\"http:\/\/www.mailchimp.com\" rel=\"nofollow\"\u003eMailChimp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196703758,"id_str":"196703758","name":"Italian Centre Shop","screen_name":"ItalianCentre","location":"Edmonton, AB","url":"http:\/\/www.italiancentre.ca","description":"Where the language of love is great food. We love feeding you specialty European products, Deli & Bakery. Come step into Italy.","translator_type":"none","protected":false,"verified":false,"followers_count":6541,"friends_count":4003,"listed_count":141,"favourites_count":3892,"statuses_count":7161,"created_at":"Wed Sep 29 18:31:14 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590337084033933312\/7XGdsb4E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590337084033933312\/7XGdsb4E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196703758\/1405959805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/70xfVjTPJM","expanded_url":"http:\/\/eepurl.com\/c_3DZ9","display_url":"eepurl.com\/c_3DZ9","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:45 +0000 2017","id":932386692488744961,"id_str":"932386692488744961","text":"s\u00f3 queria uma pizza \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875142604551315462,"id_str":"875142604551315462","name":"Marri","screen_name":"gabii_marrii","location":"ZO","url":"https:\/\/www.instagram.com\/gabiimarrii\/","description":"arte dan\u00e7ante","translator_type":"none","protected":false,"verified":false,"followers_count":205,"friends_count":200,"listed_count":0,"favourites_count":1445,"statuses_count":804,"created_at":"Thu Jun 15 00:07:11 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910176721093185537\/GuH5Xd5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910176721093185537\/GuH5Xd5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875142604551315462\/1507840570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:36 +0000 2017","id":932386658699243521,"id_str":"932386658699243521","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2380511910,"id_str":"2380511910","name":"\u51ac\u83ef","screen_name":"touka10477","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":57,"listed_count":0,"favourites_count":779,"statuses_count":56,"created_at":"Sun Mar 09 14:03:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661308473397784576\/--UnEuzS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661308473397784576\/--UnEuzS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380511910\/1487597577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:36 +0000 2017","id":932386658359660551,"id_str":"932386658359660551","text":"\ud83c\udf55 x40 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:35 +0000 2017","id":932386652932247552,"id_str":"932386652932247552","text":"I\u2019m watching Nik\u2019s basketball game, but all I can really think about is the large pepperoni pizza I\u2019m going to buy\u2026 https:\/\/t.co\/fx7Kj4NNVs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29093534,"id_str":"29093534","name":"Mariah","screen_name":"mariahsutt","location":"Somewhere in DC","url":null,"description":"Future Madam President","translator_type":"none","protected":false,"verified":false,"followers_count":474,"friends_count":363,"listed_count":8,"favourites_count":10602,"statuses_count":26947,"created_at":"Sun Apr 05 23:30:46 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903750227496226817\/cEtNYTbk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903750227496226817\/cEtNYTbk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29093534\/1449543953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"I\u2019m watching Nik\u2019s basketball game, but all I can really think about is the large pepperoni pizza I\u2019m going to buy solely for myself after this.\ud83d\ude0b\ud83c\udf55","display_text_range":[0,146],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fx7Kj4NNVs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386652932247552","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:33 +0000 2017","id":932386644950319104,"id_str":"932386644950319104","text":"@silvana4687 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\uff5e\uff5e\u30d4\u30b6\u306e\u65e5\u304c\u3042\u308b\u3093\u3067\u3059\u306d\uff01\uff01\ud83c\udf55\u4eca\u65e5\u306f\u30d4\u30b6\u30d1\u30fc\u30c6\u30a3\u3067\u3059\u304b\uff1f\uff1f","display_text_range":[13,52],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932371041174745088,"in_reply_to_status_id_str":"932371041174745088","in_reply_to_user_id":1672814137,"in_reply_to_user_id_str":"1672814137","in_reply_to_screen_name":"silvana4687","user":{"id":2984318178,"id_str":"2984318178","name":"\u307d\u3093\u3058\u3085\u30fc\u3059\ud83c\udf79\u306e\u3080\uff1f","screen_name":"pomjuice__","location":null,"url":null,"description":"@silvana4687 @biribiristockin","translator_type":"none","protected":false,"verified":false,"followers_count":10,"friends_count":67,"listed_count":0,"favourites_count":1479,"statuses_count":3079,"created_at":"Thu Jan 15 16:21:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869212207925428224\/xPmrJUoy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869212207925428224\/xPmrJUoy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984318178\/1495962035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"silvana4687","name":"\u3057\u308b\u3070\u30fc\u306a@\u3069\u3089\u307e\u3064\u308b\u304e\u30fc","id":1672814137,"id_str":"1672814137","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:31 +0000 2017","id":932386637018947584,"id_str":"932386637018947584","text":"RT @shchimya: \ud83d\udc39\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\u30cf\u30e0\n\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83d\udc7f\ud83c\udf55\u4f1a\u8b70\u3060\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\ud83d\udc37\u3076\u3072\u30fc\n\n\ud83d\udc39\u4f1a\u8b70\u3067\u30d4\u30b6\u306e\u51fa\u524d\u305f\u306e\u3093\u3060\u305d\u3046\u3067\u3059\u30cf\u30e0\n\ud83d\udc30\u30d6\u30e9\u30c3\u30af\u793e\u9577\u304c\u3072\u3068\u308a\u98df\u3079\u3066\u308b\u3074\u3087\u3093\uff1f\n\n\u5927\u4f1a\u8b70\u5ba4\uff08\u30b6\u2606\u65c5\u884c\u8a18\u2163\u3000\u30ab\u30aa\u30b9\u30fb\u30b9\u30da\u30b7\u30e3\u30eb\uff09\nhttps:\/\/t.co\/0zMB286C2\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1637271468,"id_str":"1637271468","name":"\u82b1\u5ca1\u3000\u67ca","screen_name":"9hiiragi","location":"\u8133\u5185","url":"https:\/\/www.novelabo.com\/authors\/568","description":"\u30d3\u30fc\u30ba\u30ed\u30b0\u6587\u5eab\u604b\u611b\u5c0f\u8aac\u30b3\u30f3\u30c6\u30b9\u30c8\u300c\u30de\u30a4\u30da\u30fc\u30b9\u306a\u541b\u300d\u5968\u52b1\u8cde\u3002\u30ce\u30d9\u30e9\u30dc\u30b0\u30e9\u30f3\u30d7\u30ea\u7b2c4\u56de\u6700\u512a\u79c0\u5019\u88dc\u300c\u541b\u304c\u6b4c\u3092\u6b4c\u3046\u6642\u300d\u7b2c17\u56de\u300c\u6e29\u304b\u3044\u80cc\u4e2d\u300d\u6700\u512a\u79c0\u5019\u88dchttps:\/\/www.novelabo.com\/author\/568 https:\/\/kakuyomu.jp\/works\/1177354054880908643","translator_type":"none","protected":false,"verified":false,"followers_count":1126,"friends_count":1005,"listed_count":21,"favourites_count":14739,"statuses_count":30546,"created_at":"Thu Aug 01 06:31:03 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000223872107\/20776b255420dd78a9e9c48481524351_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000223872107\/20776b255420dd78a9e9c48481524351_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637271468\/1395793765","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:03:33 +0000 2017","id":932383874193154048,"id_str":"932383874193154048","text":"\ud83d\udc39\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\u30cf\u30e0\n\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83d\udc7f\ud83c\udf55\u4f1a\u8b70\u3060\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\ud83d\udc37\u3076\u3072\u30fc\n\n\ud83d\udc39\u4f1a\u8b70\u3067\u30d4\u30b6\u306e\u51fa\u524d\u305f\u306e\u3093\u3060\u305d\u3046\u3067\u3059\u30cf\u30e0\n\ud83d\udc30\u30d6\u30e9\u30c3\u30af\u793e\u9577\u304c\u3072\u3068\u308a\u98df\u3079\u3066\u308b\u3074\u3087\u3093\uff1f\n\n\u5927\u4f1a\u8b70\u5ba4\uff08\u30b6\u2606\u65c5\u884c\u8a18\u2163\u3000\u30ab\u30aa\u30b9\u30fb\u30b9\u30da\u30b7\u30e3\u30eb\uff09\nhttps:\/\/t.co\/0zMB286C2D\n#narou","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102112981,"id_str":"102112981","name":"\u5c0f\u5bae\u767b\u5fd7\u5b50\uff20\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","screen_name":"shchimya","location":"\u795e\u5948\u5ddd\u770c","url":"http:\/\/mypage.syosetu.com\/705372\/","description":"\u4ee5\u524d\u306fyahoo\u30d6\u30ed\u30b0\u3067\u3001\u5c02\u9580\u306f\u6cd5\u5b66\u3001\u4ed6\u306b\u653f\u6cbb\u5b66\u3068\u7d4c\u6e08\u5b66\u304c\u5c11\u3057\u2026\u2026\u3067\u3057\u305f\u304c\u3001\u6700\u8fd1\u306f\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u5c0f\u8aac\u30e1\u30a4\u30f3\u306b\u79fb\u884c\u3057\u307e\u3057\u305f\u3002\u6570\u5e74\u3076\u308a\u306b\u51ac\u7720\u304b\u3089\u899a\u3081\u3001\u5f97\u4f53\u306e\u77e5\u308c\u306a\u3044\u6d3b\u52d5\uff08\u3068\u8a00\u3046\u307b\u3069\u5927\u8888\u88df\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\uff09\u3092\u518d\u958b\u3057\u3066\u3044\u307e\u3059\u3002\u73fe\u5728\u3001\u300c\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046\u300d\u304c\u6839\u57ce\u307f\u305f\u3044\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":2943,"friends_count":2626,"listed_count":33,"favourites_count":198,"statuses_count":21503,"created_at":"Tue Jan 05 17:18:45 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971167378\/Zwitter_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971167378\/Zwitter_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102112981\/1462110993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"narou","indices":[127,133]}],"urls":[{"url":"https:\/\/t.co\/0zMB286C2D","expanded_url":"https:\/\/ncode.syosetu.com\/n5067db\/72\/","display_url":"ncode.syosetu.com\/n5067db\/72\/","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shchimya","name":"\u5c0f\u5bae\u767b\u5fd7\u5b50\uff20\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","id":102112981,"id_str":"102112981","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:30 +0000 2017","id":932386632761794560,"id_str":"932386632761794560","text":"Lol. I think I ate to much pizza. \ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83d\ude0b\ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2781486675,"id_str":"2781486675","name":"\ud83c\udf57MONTE\ud83c\udf57","screen_name":"Biggboyy2017","location":null,"url":null,"description":"Im a young handsome dude who's addicted to playing sports, and video games. Just on Twitter for the fun of it. It's not my life. SIGN: LEO. \ud83d\udc2f","translator_type":"none","protected":false,"verified":false,"followers_count":212,"friends_count":290,"listed_count":4,"favourites_count":457,"statuses_count":520,"created_at":"Tue Sep 23 16:50:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877651704027762689\/jwj4rnxF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877651704027762689\/jwj4rnxF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781486675\/1489327932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:29 +0000 2017","id":932386626025619456,"id_str":"932386626025619456","text":"RT @Suwa_Ayaka: \u30c8\u30fc\u30af\u3067\u5927\u9808\u3067\u98df\u3079\u305f\u30d4\u30b6\u306e\u8a71\u3057\u3066\u305f\u3089\u3001\u7121\u6027\u306b\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u7d42\u308f\u308a\u306b2\u4eba\u3067\u884c\u3063\u3061\u3083\u3063\u305f\ud83c\udf55\u7b11\ud83d\udc93\u30dc\u30fc\u30ce\u3060\u3063\u305f\u3088\uff08\u7b11\uff09\u2764\ufe0f\n\u307e\u305f\u3048\u30fc\u3067\u3061\u3083\u3093\u3068\u4f55\u304b\u4e00\u7dd2\u306b\u3067\u304d\u308b\u3068\u3044\u3044\u306a\u30fc\uff01 https:\/\/t.co\/4hHy6ysoJi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16334367,"id_str":"16334367","name":"\u6728\u306e\u8449\u71c3\u6717\uff08\u3053\u306e\u306f\u3082\uff09","screen_name":"konohamoero","location":"East side of Tokyo, Japan \u6771\u4eac","url":"http:\/\/konohamoero.web.fc2.com\/","description":"\u30e9\u30b8\u30aa\u306e\u5b9f\u6cc1\u3068\u30ea\u30c4\u30a4\u30fc\u30c8\u591a\u3044\u3067\u3059\u3002\u4ed6\u306b\u672c\u3084\u97f3\u697d\u3084\u30b5\u30c3\u30ab\u30fc\u3084\u6620\u753b\u3084\u6587\u623f\u5177\u3084\u30ac\u30b8\u30a7\u30c3\u30c8\u3084\u30b2\u30fc\u30e0\u306a\u3069\u306a\u3069\u3002\u300c\u795e\u51fa\u9b3c\u6ca1\u306e\u30de\u30fc\u30b8\u30ca\u30eb\u30fb\u30de\u30f3\u300d\u3082\u3057\u304f\u306f\u300c\u30df\u30b9\u30bf\u30fc\u7aef\u3063\u5b50\u300d\u3002\u300c\u304a\u3082\u3057\u308d\u304b\u308f\u3044\u3044\u300d\u4eba\u304c\u597d\u304d\u3067\u3059\u3002\u300c\u3042\u306a\u305f\u306b\u306f\u7b11\u9854\u3067\u3044\u3066\u6b32\u3057\u3044\u306e\u3067\u3059\u300d\uff0f360x365. LRLR(Listen to the Radio,Love Radio)","translator_type":"none","protected":false,"verified":false,"followers_count":1374,"friends_count":1571,"listed_count":55,"favourites_count":487,"statuses_count":90334,"created_at":"Wed Sep 17 18:53:11 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/79513050\/room02.PNG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/79513050\/room02.PNG","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/843378560144363521\/X8PUwT2c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/843378560144363521\/X8PUwT2c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16334367\/1398766301","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 13:37:13 +0000 2017","id":932241353865535488,"id_str":"932241353865535488","text":"\u30c8\u30fc\u30af\u3067\u5927\u9808\u3067\u98df\u3079\u305f\u30d4\u30b6\u306e\u8a71\u3057\u3066\u305f\u3089\u3001\u7121\u6027\u306b\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u7d42\u308f\u308a\u306b2\u4eba\u3067\u884c\u3063\u3061\u3083\u3063\u305f\ud83c\udf55\u7b11\ud83d\udc93\u30dc\u30fc\u30ce\u3060\u3063\u305f\u3088\uff08\u7b11\uff09\u2764\ufe0f\n\u307e\u305f\u3048\u30fc\u3067\u3061\u3083\u3093\u3068\u4f55\u304b\u4e00\u7dd2\u306b\u3067\u304d\u308b\u3068\u3044\u3044\u306a\u30fc\uff01 https:\/\/t.co\/4hHy6ysoJi","display_text_range":[0,85],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232229151,"id_str":"232229151","name":"\u8acf\u8a2a\u5f69\u82b1","screen_name":"Suwa_Ayaka","location":"\u6771\u4eac","url":null,"description":"\u30a2\u30fc\u30c4\u30d3\u30b8\u30e7\u30f3\u6240\u5c5e\u3001\u58f0\u512a\u306e\u8acf\u8a2a\u5f69\u82b1\u3067\u3059\uff01\u5730\u5143\u306f\u611b\u77e5\u770c\u3060\u3063\u305f\u308a\u3057\u307e\u3059(^\u03c9^) \u307e\u3060\u307e\u3060\u672a\u719f\u8005\u3067\u3059\u304c\u3001\u5fdc\u63f4\u3057\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\uff01\uff01 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059**","translator_type":"none","protected":false,"verified":false,"followers_count":88065,"friends_count":552,"listed_count":3470,"favourites_count":1176,"statuses_count":12393,"created_at":"Thu Dec 30 15:51:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923760749725474816\/xQD9YyLw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923760749725474816\/xQD9YyLw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232229151\/1428344676","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":8,"retweet_count":218,"favorite_count":701,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}},{"id":932241345019645953,"id_str":"932241345019645953","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Suwa_Ayaka","name":"\u8acf\u8a2a\u5f69\u82b1","id":232229151,"id_str":"232229151","indices":[3,14]}],"symbols":[],"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"}]},"extended_entities":{"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"},{"id":932241345019645953,"id_str":"932241345019645953","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":960,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:25 +0000 2017","id":932386611622330368,"id_str":"932386611622330368","text":"RT @SensiblePost: What I need now: \n\n1. Bed. \ud83d\udce6\ud83d\udc4f\ud83d\udcab\n\n2. Aircon. \ud83d\udcb3\ud83d\udca8\n\n3. Fries. \ud83c\udf5f\n\n4. Pizza. \ud83c\udf55\n\n5. Fast Internet Connection. \ud83d\udcf6\ud83d\udcbb\ud83d\udcf1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784693631793836032,"id_str":"784693631793836032","name":"ft","screen_name":"nurfitrihelmi","location":null,"url":"http:\/\/instagram.com\/nr.fitrihelmi","description":"am selene\ud83c\udf12","translator_type":"none","protected":false,"verified":false,"followers_count":156,"friends_count":155,"listed_count":0,"favourites_count":442,"statuses_count":1782,"created_at":"Sat Oct 08 09:55:15 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929518063816392704\/cWutQ4WK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929518063816392704\/cWutQ4WK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784693631793836032\/1506051263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 11:02:03 +0000 2017","id":931839914894692354,"id_str":"931839914894692354","text":"What I need now: \n\n1. Bed. \ud83d\udce6\ud83d\udc4f\ud83d\udcab\n\n2. Aircon. \ud83d\udcb3\ud83d\udca8\n\n3. Fries. \ud83c\udf5f\n\n4. Pizza. \ud83c\udf55\n\n5. Fast Internet Connection. \ud83d\udcf6\ud83d\udcbb\ud83d\udcf1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2609001092,"id_str":"2609001092","name":"SENSIBLE POST","screen_name":"SensiblePost","location":"United Kingdom","url":null,"description":"http:\/\/instagram.com\/SensiblePost600","translator_type":"none","protected":false,"verified":false,"followers_count":286043,"friends_count":264875,"listed_count":399,"favourites_count":7,"statuses_count":1961,"created_at":"Mon Jul 07 05:43:29 +0000 2014","utc_offset":-25200,"time_zone":"Chihuahua","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518226938448457728\/ED_OuHwP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518226938448457728\/ED_OuHwP.jpeg","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/748346855784755200\/EawPPbX6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/748346855784755200\/EawPPbX6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2609001092\/1484617668","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":134,"favorite_count":149,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SensiblePost","name":"SENSIBLE POST","id":2609001092,"id_str":"2609001092","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:24 +0000 2017","id":932386605058461697,"id_str":"932386605058461697","text":"\ud83c\udf55 x39 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:23 +0000 2017","id":932386600599748608,"id_str":"932386600599748608","text":"\u4eca\u65e5\u306f\u300c\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u300d\u3067\u3059\u304c\u3001\u3082\u3046\u4e00\u3064\u4eca\u5e74\u6c7a\u307e\u3063\u305f\u8a18\u5ff5\u65e5\n\n \ud83c\udf8a\u6bdb\u5e03\u306e\u65e5\ud83c\udf8a\n\n\u3067\u3059\uff01\uff01\uff01\uff01\uff01\u5f53\u5e97\u306f\u30d4\u30b6\u306e\u304a\u53d6\u308a\u6271\u3044\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u304c\u3001\u304a\u3072\u3068\u308a\u3055\u307e\u70ac\u71f5\u306b\u3082\u306a\u308b\u6bdb\u5e03\u304c\u3054\u3056\u3044\u307e\u3059(\u0e07 \u2022\u0300_\u2022\u0301)\u0e07\u4eca\u65e5\u306e\u3088\u3046\u306a\u5bd2\u3055\u306e\u6642\u306b\u5927\u6d3b\u2026 https:\/\/t.co\/vgO2K43hU3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137587404,"id_str":"137587404","name":"\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\u300a\u516c\u5f0f\u300b","screen_name":"ts_nakamura","location":"\u795e\u5948\u5ddd\u770c\u6a2a\u6d5c\u5e02","url":"http:\/\/www.rakuten.co.jp\/ts-nakamura\/","description":"\u6a2a\u6d5c\u306b\u3042\u308b\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\ud83d\ude9a\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u304a\u5e97\u306e\u4e8b\u304b\u3089\u304a\u5e97\u306b\u5168\u304f\u95a2\u4fc2\u306a\u3044\u4e8b\u307e\u3067\u3086\u308b\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u7686\u3055\u307e\u306e\u30d5\u30a9\u30ed\u30fc\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\ud83d\udc9e\u203b\u5546\u54c1\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306f\u304a\u53d7\u3051\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u5b9f\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002\u203b\u753b\u50cf\u8ee2\u8f09\u306f\u304a\u65ad\u308a\u3057\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":162,"friends_count":112,"listed_count":5,"favourites_count":174,"statuses_count":1767,"created_at":"Tue Apr 27 05:03:59 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137587404\/1493256965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":928209771185893377,"quoted_status_id_str":"928209771185893377","quoted_status":{"created_at":"Wed Nov 08 10:37:09 +0000 2017","id":928209771185893377,"id_str":"928209771185893377","text":"\u3010\u5965\u69d8\u30aa\u30b9\u30b9\u30e1\u3011\n\u30a6\u30a9\u30fc\u30e0\u6bdb\u5e03 \u3061\u3087\u3063\u3068\u306d\u30fc\u308b DC24V(\u00a59936 \u7a0e\u8fbc)\n\n\u51b7\u3048\u6027\u306a\u30c9\u30e9\u30a4\u30d0\u30fc\u3055\u3093\u306b\u30aa\u30b9\u30b9\u30e1\uff01\u5bdd\u888b\u30bf\u30a4\u30d7\u3067\u4fdd\u6e29\u6027\u629c\u7fa4\u306e\u6bdb\u5e03\u3067\u3059\u3002\u30b5\u30fc\u30e2\u30d2\u30fc\u30bf\u30fc\u3067\u8db3\u5143\u3092\u3057\u3063\u304b\u308a\u6e29\u3081\u3066\u304f\u308c\u307e\u3059\uff01\n(24V\u5c02\u7528\u3067\u3059)\u2026 https:\/\/t.co\/sVyVztfxwz","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137587404,"id_str":"137587404","name":"\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\u300a\u516c\u5f0f\u300b","screen_name":"ts_nakamura","location":"\u795e\u5948\u5ddd\u770c\u6a2a\u6d5c\u5e02","url":"http:\/\/www.rakuten.co.jp\/ts-nakamura\/","description":"\u6a2a\u6d5c\u306b\u3042\u308b\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\ud83d\ude9a\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u304a\u5e97\u306e\u4e8b\u304b\u3089\u304a\u5e97\u306b\u5168\u304f\u95a2\u4fc2\u306a\u3044\u4e8b\u307e\u3067\u3086\u308b\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u7686\u3055\u307e\u306e\u30d5\u30a9\u30ed\u30fc\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\ud83d\udc9e\u203b\u5546\u54c1\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306f\u304a\u53d7\u3051\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u5b9f\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002\u203b\u753b\u50cf\u8ee2\u8f09\u306f\u304a\u65ad\u308a\u3057\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":162,"friends_count":112,"listed_count":5,"favourites_count":174,"statuses_count":1767,"created_at":"Tue Apr 27 05:03:59 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137587404\/1493256965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u3010\u5965\u69d8\u30aa\u30b9\u30b9\u30e1\u3011\n\u30a6\u30a9\u30fc\u30e0\u6bdb\u5e03 \u3061\u3087\u3063\u3068\u306d\u30fc\u308b DC24V(\u00a59936 \u7a0e\u8fbc)\n\n\u51b7\u3048\u6027\u306a\u30c9\u30e9\u30a4\u30d0\u30fc\u3055\u3093\u306b\u30aa\u30b9\u30b9\u30e1\uff01\u5bdd\u888b\u30bf\u30a4\u30d7\u3067\u4fdd\u6e29\u6027\u629c\u7fa4\u306e\u6bdb\u5e03\u3067\u3059\u3002\u30b5\u30fc\u30e2\u30d2\u30fc\u30bf\u30fc\u3067\u8db3\u5143\u3092\u3057\u3063\u304b\u308a\u6e29\u3081\u3066\u304f\u308c\u307e\u3059\uff01\n(24V\u5c02\u7528\u3067\u3059)\n\nhttps:\/\/t.co\/m0WzHZqIoG https:\/\/t.co\/CnkaJJKgSf","display_text_range":[0,133],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m0WzHZqIoG","expanded_url":"https:\/\/item.rakuten.co.jp\/ts-nakamura\/x-44\/","display_url":"item.rakuten.co.jp\/ts-nakamura\/x-\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[],"media":[{"id":928209763246080000,"id_str":"928209763246080000","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","url":"https:\/\/t.co\/CnkaJJKgSf","display_url":"pic.twitter.com\/CnkaJJKgSf","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":928209763246080000,"id_str":"928209763246080000","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","url":"https:\/\/t.co\/CnkaJJKgSf","display_url":"pic.twitter.com\/CnkaJJKgSf","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sVyVztfxwz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/928209771185893377","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"extended_tweet":{"full_text":"\u4eca\u65e5\u306f\u300c\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u300d\u3067\u3059\u304c\u3001\u3082\u3046\u4e00\u3064\u4eca\u5e74\u6c7a\u307e\u3063\u305f\u8a18\u5ff5\u65e5\n\n \ud83c\udf8a\u6bdb\u5e03\u306e\u65e5\ud83c\udf8a\n\n\u3067\u3059\uff01\uff01\uff01\uff01\uff01\u5f53\u5e97\u306f\u30d4\u30b6\u306e\u304a\u53d6\u308a\u6271\u3044\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u304c\u3001\u304a\u3072\u3068\u308a\u3055\u307e\u70ac\u71f5\u306b\u3082\u306a\u308b\u6bdb\u5e03\u304c\u3054\u3056\u3044\u307e\u3059(\u0e07 \u2022\u0300_\u2022\u0301)\u0e07\u4eca\u65e5\u306e\u3088\u3046\u306a\u5bd2\u3055\u306e\u6642\u306b\u5927\u6d3b\u8e8d\uff01\uff01\uff01\u9811\u5f35\u308b\u7686\u3055\u307e\u3092\u6696\u304b\u304f\u5305\u307f\u8fbc\u307f\u307e\u3059\uff01\uff01\uff01 https:\/\/t.co\/216X4Rs4SN","display_text_range":[0,138],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/216X4Rs4SN","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377","display_url":"twitter.com\/ts_nakamura\/st\u2026","indices":[139,162]}],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vgO2K43hU3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386600599748608","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:23 +0000 2017","id":932386600423710720,"id_str":"932386600423710720","text":"Muito boa noite! \ud83d\udc8f\ud83c\udf55\ud83c\udf41\ud83c\udf6b\ud83d\udca4\ud83c\udf19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302571987,"id_str":"2302571987","name":"Jully Schaurich \u00ae","screen_name":"JullySchaurich","location":"Minas Gerais, Brasil ","url":null,"description":"N\u00e3o posso reclamar da vida que vou levando, tenho tudo que quero e o que faltar t\u00f4 conquistando!\u270c\ud83c\udffb\ud83d\ude01\ud83c\udf40\u2764\ufe0f \ud83d\udc69\ud83c\udffb\ud83d\udc68\ud83c\udffb\ud83d\udc66\ud83c\udffb\ud83d\udc76\ud83c\udffb","translator_type":"none","protected":false,"verified":false,"followers_count":20,"friends_count":184,"listed_count":0,"favourites_count":1572,"statuses_count":8631,"created_at":"Sat Jan 25 01:18:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932226654210019329\/QCPbQpST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932226654210019329\/QCPbQpST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302571987\/1510093965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:20 +0000 2017","id":932386587492700160,"id_str":"932386587492700160","text":"To numa pizzaria encima da boombar \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude0d\ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":863235451313942528,"id_str":"863235451313942528","name":"Julia Ramos","screen_name":"Uma_vitoriaa","location":null,"url":"https:\/\/juliaramos102.sarahah.com\/","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":38,"friends_count":160,"listed_count":0,"favourites_count":122,"statuses_count":391,"created_at":"Sat May 13 03:32:24 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/920103074139705344\/9TQ6CVGU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/920103074139705344\/9TQ6CVGU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"66a72011ed6d4853","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/66a72011ed6d4853.json","place_type":"city","name":"Gravata\u00ed","full_name":"Gravata\u00ed, Brasil","country_code":"BR","country":"Brazil","bounding_box":{"type":"Polygon","coordinates":[[[-51.101365,-30.015653],[-51.101365,-29.765763],[-50.811151,-29.765763],[-50.811151,-30.015653]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:19 +0000 2017","id":932386585051463681,"id_str":"932386585051463681","text":"\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3063\u3066\u898b\u3066\u5f53\u7136\u306e\u5982\u304f\u30d4\u30b6\u98df\u3079\u305f\u304f\u306a\u3063\u305f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4831930791,"id_str":"4831930791","name":"\u308a\u3044","screen_name":"ree_1116","location":"\u5317\u306e\u65b9\u3002","url":"http:\/\/privatter.net\/u\/ree_1116","description":"\u6210\u4eba\u6e08\u3002\u30eb\u30ed\u30fc\u306b\u5922\u4e2d\u3002\u30ed\u30fc\u53f3\u306a\u3089\u306a\u3093\u3067\u3082\u597d\u304d\u3002\u672c\u8a8c\u6d3e\u3002\u65e5\u5e38\u3068\u304b\u597d\u304d\u306a\u3053\u3068\u3092\u597d\u304d\u52dd\u624b\u306b\u545f\u3044\u3066\u307e\u3059\u3002 \u7d20\u6575\u30a2\u30a4\u30b3\u30f3\u306f\u304b\u3089\u3055\u3061\u3055\u3093\ud83d\udc95\u3053\u305d\u308a\u3068\u304a\u8a71\u3057\u7db4\u3063\u3066\u307e\u3059\u2026http:\/\/pixiv.me\/ree11161116 \u30ea\u30b9\u30a4\u30f3\u7b49\u3005\u306e\u3053\u3068\u306f\u3053\u3061\u3089\u306b\u3066\u2192http:\/\/privatter.net\/p\/1293798","translator_type":"none","protected":false,"verified":false,"followers_count":221,"friends_count":110,"listed_count":4,"favourites_count":5456,"statuses_count":35578,"created_at":"Thu Jan 21 07:08:55 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925385022781001728\/usLHM3WU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925385022781001728\/usLHM3WU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4831930791\/1496213353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:17 +0000 2017","id":932386577883340800,"id_str":"932386577883340800","text":"RT @daniellachavezc: Cuando te sorprenden comiendo Pizza \ud83c\udf55\ud83d\ude31\ud83d\ude02 \n\n Instagram @DaniellaChavezOfficial https:\/\/t.co\/JIAbePFxHs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406046763,"id_str":"406046763","name":"\u2606T\u2606","screen_name":"t_t_t72","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1596,"friends_count":2550,"listed_count":251,"favourites_count":199016,"statuses_count":231419,"created_at":"Sun Nov 06 05:18:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602611543583240192\/WuGz2mXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602611543583240192\/WuGz2mXC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 10 00:52:57 +0000 2017","id":928787528026607619,"id_str":"928787528026607619","text":"Cuando te sorprenden comiendo Pizza \ud83c\udf55\ud83d\ude31\ud83d\ude02 \n\n Instagram @DaniellaChavezOfficial https:\/\/t.co\/JIAbePFxHs","display_text_range":[0,76],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284570882,"id_str":"284570882","name":"Daniella Chavez","screen_name":"daniellachavezc","location":"Chile","url":"http:\/\/www.daniellachavez.com","description":"3 Portadas Playboy, ex Conductora de Televisi\u00f3n en #PonteFit #TDN Televisa Deportes, CEA Televisa M\u00e9xico,Actriz: http:\/\/www.instagram.com\/DaniellaChavezOfficial","translator_type":"none","protected":false,"verified":true,"followers_count":506445,"friends_count":1931,"listed_count":1081,"favourites_count":279256,"statuses_count":15928,"created_at":"Tue Apr 19 14:48:43 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597150804965871616\/Wo5HjDST.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597150804965871616\/Wo5HjDST.png","profile_background_tile":true,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930563948855914497\/wWf8S6hR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930563948855914497\/wWf8S6hR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284570882\/1510698682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00c4b64e7affea25","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c4b64e7affea25.json","place_type":"city","name":"Las Condes","full_name":"Las Condes, Chile","country_code":"CL","country":"Chile","bounding_box":{"type":"Polygon","coordinates":[[[-70.608694,-33.486182],[-70.608694,-33.364619],[-70.429141,-33.364619],[-70.429141,-33.486182]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":219,"retweet_count":484,"favorite_count":5872,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":928787446514487297,"id_str":"928787446514487297","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","url":"https:\/\/t.co\/JIAbePFxHs","display_url":"pic.twitter.com\/JIAbePFxHs","expanded_url":"https:\/\/twitter.com\/daniellachavezc\/status\/928787528026607619\/video\/1","type":"photo","sizes":{"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":928787446514487297,"id_str":"928787446514487297","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","url":"https:\/\/t.co\/JIAbePFxHs","display_url":"pic.twitter.com\/JIAbePFxHs","expanded_url":"https:\/\/twitter.com\/daniellachavezc\/status\/928787528026607619\/video\/1","type":"video","sizes":{"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}},"video_info":{"aspect_ratio":[30,53],"duration_millis":4067,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/vid\/362x640\/CjbBRWX0Er4ERRuC.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/vid\/180x320\/XvZq0k9mtCp9jtkn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/pl\/3CUjky8cO3NqaUjA.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"daniellachavezc","name":"Daniella Chavez","id":284570882,"id_str":"284570882","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:16 +0000 2017","id":932386573265637376,"id_str":"932386573265637376","text":"RT @arian_FOLLOW: Follow ME and everyone who RETWEETS and FAV this \u2705\ud83c\udf55\n#1DDRIVE\u2705\ud83c\udf55\n#TRAPADRIVE\u2705\ud83c\udf55\n#NEWGAINS\u2705\ud83c\udf55\nTURN MY NOTIFICATION ON \n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3078540509,"id_str":"3078540509","name":"HIGHEST \u2795","screen_name":"Sark_son","location":"WORLD ","url":"http:\/\/highestalbum.com","description":"the love for SarkCess music is deep | like my FB page : @son_of_sarkodie | @Sarkodie #Rapgod | IG: augustime | FB: Nana Augustine | SC: paugustine37","translator_type":"none","protected":false,"verified":false,"followers_count":8153,"friends_count":2788,"listed_count":20,"favourites_count":10562,"statuses_count":56702,"created_at":"Sun Mar 08 01:37:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898933781050077184\/LL3rFLSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898933781050077184\/LL3rFLSL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3078540509\/1503157613","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:30:04 +0000 2017","id":932330151005876225,"id_str":"932330151005876225","text":"Follow ME and everyone who RETWEETS and FAV this \u2705\ud83c\udf55\n#1DDRIVE\u2705\ud83c\udf55\n#TRAPADRIVE\u2705\ud83c\udf55\n#NEWGAINS\u2705\ud83c\udf55\nTURN MY NOTIFICATION ON \n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55","source":"\u003ca href=\"https:\/\/statusbrew.com\" rel=\"nofollow\"\u003eStatusbrew\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153773270,"id_str":"3153773270","name":"Follow Help\u2734\ufe0f","screen_name":"arian_FOLLOW","location":"TURN ON MY NOTIFICATION","url":null,"description":"TURN MY NOTIFICATIONS ON \ud83d\udd1b for daily gain tweets\n STAY ACTIVE\ud83c\udfc3to GAIN #TheGainTeam #GabberHubDotComGain #1DDrive","translator_type":"none","protected":false,"verified":false,"followers_count":18161,"friends_count":8508,"listed_count":132,"favourites_count":15903,"statuses_count":3091,"created_at":"Mon Apr 13 22:07:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923103360462532608\/ZUQB3z0o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923103360462532608\/ZUQB3z0o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153773270\/1511048165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":4,"retweet_count":50,"favorite_count":123,"entities":{"hashtags":[{"text":"1DDRIVE","indices":[52,60]},{"text":"TRAPADRIVE","indices":[63,74]},{"text":"NEWGAINS","indices":[77,86]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1DDRIVE","indices":[70,78]},{"text":"TRAPADRIVE","indices":[81,92]},{"text":"NEWGAINS","indices":[95,104]}],"urls":[],"user_mentions":[{"screen_name":"arian_FOLLOW","name":"Follow Help\u2734\ufe0f","id":3153773270,"id_str":"3153773270","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:16 +0000 2017","id":932386571248160769,"id_str":"932386571248160769","text":"\ud83c\udf55 x38 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:15 +0000 2017","id":932386569616363520,"id_str":"932386569616363520","text":"RT @JUN_WADS: \u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1935629022,"id_str":"1935629022","name":"\u3055\u304f\u3089","screen_name":"koiseyo0422","location":null,"url":null,"description":"\u3072\u3068\u308a\u306e\u6642\u9593\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059 \u3072\u3068\u308a\u306e\u6642\u9593\u3067\u5143\u6c17\u306b\u306a\u3063\u3066\u307e\u3059 \u8a00\u8449\u306e\u66b4\u529b\u306b\u8ca0\u3051\u306a\u3044\u3088\u3046\u306b\u306a\u308a\u305f\u3044 \u8ab0\u304b\u306e\u671f\u5f85\u306b\u306f\u5fdc\u3048\u3089\u308c\u306a\u3044 \u597d\u304d\u306a\u3082\u306e\u3092\u597d\u304d\u306b\u597d\u304d\u3067\u3044\u305f\u3044","translator_type":"none","protected":false,"verified":false,"followers_count":1386,"friends_count":1146,"listed_count":63,"favourites_count":108319,"statuses_count":488904,"created_at":"Fri Oct 04 22:27:17 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433821542221242368\/QZ5yngsa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433821542221242368\/QZ5yngsa.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/764489482590576640\/5qvcNZhE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/764489482590576640\/5qvcNZhE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1935629022\/1472844349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:12:37 +0000 2017","id":932386157773570049,"id_str":"932386157773570049","text":"\u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","display_text_range":[0,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350712503,"id_str":"350712503","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","screen_name":"JUN_WADS","location":null,"url":"http:\/\/otoloop.com","description":"\u30aa\u30c8\u30eb\u30fc\u30d7\u306e\u30c9\u30e9\u30e0&\u30b3\u30fc\u30e9\u30b9\u3001\u30cb\u30b8\u30de\u30b9\u25fc\ufe0e\u6700\u65b0\u30ea\u30ea\u30c3\u30af\u30e0\u30fc\u30d3\u30fc\u3010\u30ea\u30cf\u30ed\u3011https:\/\/youtu.be\/tqAXgYBZ_Y8\u25fc\ufe0eMV\u3010\u3053\u3068\u3070\u3092\u77e5\u308a\u305f\u3044\u3011https:\/\/youtu.be\/pU7k2raunCo\u3010\u30a2\u30de\u30ce\u30b8\u30e3\u30af\u306e\u72ec\u767d\u3011https:\/\/youtu.be\/2kEpbSRUdVA","translator_type":"none","protected":false,"verified":false,"followers_count":9587,"friends_count":10541,"listed_count":59,"favourites_count":28740,"statuses_count":15646,"created_at":"Mon Aug 08 06:02:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350712503\/1387300819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[43,50]}],"urls":[],"user_mentions":[{"screen_name":"JUN_WADS","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","id":350712503,"id_str":"350712503","indices":[3,12]}],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}},"source_status_id":932386157773570049,"source_status_id_str":"932386157773570049","source_user_id":350712503,"source_user_id_str":"350712503"}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}},"source_status_id":932386157773570049,"source_status_id_str":"932386157773570049","source_user_id":350712503,"source_user_id_str":"350712503"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:14 +0000 2017","id":932386563744501760,"id_str":"932386563744501760","text":"Football Sunday fat kid mozzarella waffle pizza! \ud83c\udf55 https:\/\/t.co\/2PRxF4rFFn https:\/\/t.co\/hL2VF5SGsI","display_text_range":[0,74],"source":"\u003ca href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14316456,"id_str":"14316456","name":"Mark Perez","screen_name":"faceofbass","location":"Aurora, Colorado","url":"http:\/\/www.faceofbass.com","description":"A little bit of this, a little bit of that. Bassist, Podcaster and sometimes even a decent DJ. Championing all that is Colorado","translator_type":"none","protected":false,"verified":false,"followers_count":1821,"friends_count":1994,"listed_count":99,"favourites_count":2018,"statuses_count":17341,"created_at":"Sun Apr 06 17:08:21 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110684","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D66A29","profile_text_color":"110684","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14316456\/1420515214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2PRxF4rFFn","expanded_url":"http:\/\/ift.tt\/2zW8hwI","display_url":"ift.tt\/2zW8hwI","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":932386561479634946,"id_str":"932386561479634946","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","url":"https:\/\/t.co\/hL2VF5SGsI","display_url":"pic.twitter.com\/hL2VF5SGsI","expanded_url":"https:\/\/twitter.com\/faceofbass\/status\/932386563744501760\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386561479634946,"id_str":"932386561479634946","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","url":"https:\/\/t.co\/hL2VF5SGsI","display_url":"pic.twitter.com\/hL2VF5SGsI","expanded_url":"https:\/\/twitter.com\/faceofbass\/status\/932386563744501760\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:11 +0000 2017","id":932386552436604928,"id_str":"932386552436604928","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910071524991762433,"id_str":"910071524991762433","name":"\u307f\u304d\u307e\u308b","screen_name":"mikimaru1122","location":null,"url":"https:\/\/ameblo.jp\/mikimaru1122","description":"Instagram\u30e1\u30a4\u30f3\u3067\u3059\u304cTwitter\u3082\u306f\u3058\u3081\u3066\u307f\u307e\u3057\u305f\ud83d\ude0a\u2728\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059(^^)\u61f8\u8cde\u3001\u30e2\u30cb\u30bf\u30fc\u7cfb\u306b\u306f\u307e\u3063\u3066\u307e\u3059\uff01\u540c\u3058\u8da3\u5473\u306e\u304b\u305f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2764\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":106,"friends_count":329,"listed_count":1,"favourites_count":876,"statuses_count":897,"created_at":"Tue Sep 19 09:22:14 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922058688860364800\/2KUuGVT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922058688860364800\/2KUuGVT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910071524991762433\/1506925834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386549047574528,"id_str":"932386549047574528","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420527430,"id_str":"2420527430","name":"FooMa@\u3046\u308c\u3057\u30fc\u3069\u306e\u6c11","screen_name":"FooMa5648","location":"\u6e58\u5357\u3042\u305f\u308a","url":"https:\/\/plus.google.com\/collection\/csybaB","description":"\u3069\u3053\u306b\u3067\u3082\u3044\u308b\u3088\u3046\u306a\u7a2e\u7530\u68a8\u6c99\u3055\u3093\u306e\u30d5\u30a1\u30f3\u3067\u3059 \u3086\u3063\u304f\u308a\u7126\u3089\u305a\u5fdc\u63f4\u3057\u3066\u3044\u304d\u305f\u3044\u306a \/\u300c\u304d\u3089\u304d\u3089\u2605\u30b9\u30bf\u30c7\u30a3\u30fc\uff5e\u7d76\u5bfe\u5408\u683c\u5ba3\u8a00\uff5e\u300d(\u8457:\u83ef\u3005\u3064\u307c\u307f)\u306f\u307e\u3093\u304c\u30bf\u30a4\u30e0\u304d\u3089\u3089\u3067\u597d\u8a55\u9023\u8f09\u4e2d\uff01\/\u30d7\u30ea\u30f3\u30bb\u30b9\u30ca\u30a4\u30c8(\u304a\u307e\u3058\u306a\u3044\u306e\u76f8\u624b\/\u30d7\u30ea\u30b3\u30cd\u8349\u91ce\u306d\u6d3b\u52d5\u968a)\/\u7279\u52d9\u6a5f\u95a2\u6240\u5c5e\u306e\u53ec\u559a\u5e2b(FEH)","translator_type":"none","protected":false,"verified":false,"followers_count":1405,"friends_count":1561,"listed_count":49,"favourites_count":29899,"statuses_count":132094,"created_at":"Mon Mar 31 13:17:33 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9966CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492688343344246788\/RHnvSOYD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492688343344246788\/RHnvSOYD.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924307711000420352\/Q7ahooQn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924307711000420352\/Q7ahooQn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2420527430\/1476088105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386547327836160,"id_str":"932386547327836160","text":"follow,RT,\u30a4\u30a4\u306d\ud83c\udfb5\u3042\u308a\u304c\u3068\u3046\u305e\u306aww\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u3068\u3001\u3044\u3046\u3053\u3068\u3067\uff1f\ud83d\ude05\u3044\u3063\u3066\u304d\u307e\u3059\u30fc\ud83c\udfc3\ud83d\udca6\ud83d\udc4b\n#\u30d4\u30b6\u306e\u65e5 https:\/\/t.co\/EZ9SzBm0Ie","display_text_range":[0,57],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3445491914,"id_str":"3445491914","name":"\u3086\u304d\u3072\u3068","screen_name":"yukihito1967","location":"Japan-Matuyama","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\uff5e\uff01\ud83d\ude4c\u3044\u305f\u3063\u3066\u5e73\u51e1\u306a\u4eba\u3060\u3051\u3069\u3082\u3088\u308d\u3057\u304f\u305e\u306a\u3082\u3057~\ud83d\udc50Nice to meet\u3000you\uff01plz\u3000follow\u3000Me\u270c\ud83d\ude09My faves\ud83d\udc31\ud83d\udc36\ud83d\udc30\ud83d\udc39\ud83d\udc2c\ud83d\udc25\ud83c\udfa5\ud83c\udfae\ud83d\ude99\u26fa\u26be\ud83c\udfb3\ud83c\udf6b\ud83c\udfa7\ud83c\udfbc\u2668","translator_type":"none","protected":false,"verified":false,"followers_count":4735,"friends_count":4535,"listed_count":42,"favourites_count":51726,"statuses_count":12383,"created_at":"Fri Sep 04 07:07:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/855636912127713284\/_PmAudv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/855636912127713284\/_PmAudv3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3445491914\/1507560384","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[52,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386525865639936,"id_str":"932386525865639936","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","url":"https:\/\/t.co\/EZ9SzBm0Ie","display_url":"pic.twitter.com\/EZ9SzBm0Ie","expanded_url":"https:\/\/twitter.com\/yukihito1967\/status\/932386547327836160\/photo\/1","type":"photo","sizes":{"large":{"w":731,"h":321,"resize":"fit"},"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":731,"h":321,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386525865639936,"id_str":"932386525865639936","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","url":"https:\/\/t.co\/EZ9SzBm0Ie","display_url":"pic.twitter.com\/EZ9SzBm0Ie","expanded_url":"https:\/\/twitter.com\/yukihito1967\/status\/932386547327836160\/photo\/1","type":"photo","sizes":{"large":{"w":731,"h":321,"resize":"fit"},"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":731,"h":321,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386546447089664,"id_str":"932386546447089664","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133205524,"id_str":"133205524","name":"\u30a4\u30cc\u597d\u304d\u306a\u30cd\u30b3\u578b","screen_name":"chamcham00","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":49,"friends_count":270,"listed_count":0,"favourites_count":10,"statuses_count":3834,"created_at":"Thu Apr 15 08:10:27 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386545511944192,"id_str":"932386545511944192","text":"S\u00f3 uma \ud83c\udf55 mesmo meu amigo rs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":837075163933978624,"id_str":"837075163933978624","name":"Lucas Nascimento! \ud83d\ude0e","screen_name":"metebala06","location":"seu novinho rs ","url":null,"description":"com Deus t\u00f4 sempre andando \ud83d\ude4c\ud83c\udffd ..","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":238,"listed_count":0,"favourites_count":2704,"statuses_count":3617,"created_at":"Wed Mar 01 23:00:45 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932336451248943104\/sV3vt9j3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932336451248943104\/sV3vt9j3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/837075163933978624\/1503027545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:08 +0000 2017","id":932386538490613760,"id_str":"932386538490613760","text":"\ud83c\udf55 x37 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:07 +0000 2017","id":932386535386656768,"id_str":"932386535386656768","text":"RT @plovepgon: \u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158568399,"id_str":"158568399","name":"\u30b9\u30c3\u30ad\u2606","screen_name":"LovelyYamapi","location":"\u97d3\u56fd - \u30bd\u30a6\u30eb","url":null,"description":"\u2606\u5c71\u4e0b\u667a\u4e45\u2606 \u5927\u597d\u304d\u3067\u3059( ^_^)\/","translator_type":"none","protected":false,"verified":false,"followers_count":3918,"friends_count":1029,"listed_count":24,"favourites_count":3868,"statuses_count":88398,"created_at":"Wed Jun 23 01:43:49 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912292769715986432\/CDHpYA5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912292769715986432\/CDHpYA5V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158568399\/1500301417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386455581626368,"id_str":"932386455581626368","text":"\u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211350474,"id_str":"211350474","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","screen_name":"plovepgon","location":"tokyo\u266a","url":null,"description":"\u3053\u306e\u4ef2\u9593\u3068\u306a\u3089\u3001\u307e\u305f\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u308b\u3002\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc \u30c9\u30af\u30bf\u30fc\u30d8\u30ea\u7dca\u6025\u6551\u547d \uff0dTHE THIRD SEASON\uff0d\u6bce\u9031\u6708\u66dc\u3088\u308b9\u6642\u30a8\u30f3\u30b8\u30f3\u30b9\u30bf\u30fc\u30c8\u2728\u2728\n\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u5168\u529b\u5fdc\u63f4\u4e2d\ud83c\udfb5\n\u30aa\u30f3\u30ea\u30fc\u3084\u307e\u3074\u30fc\u2764\n\u6642\u3005\u30de\u30de\u3055\u3093\u30d0\u30ec\u30fc\u306b\u51fa\u304b\u3051\u3066\u3044\u307e\u3059\u2757\n\u30d5\u30a9\u30ed\u30fc\u306f\u3072\u3068\u58f0\u304b\u3051\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u306a\ud83c\udfb6","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":269,"listed_count":3,"favourites_count":1920,"statuses_count":35970,"created_at":"Wed Nov 03 00:47:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211350474\/1500861182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[70,75]},{"text":"sound_tripper","indices":[76,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[85,90]},{"text":"sound_tripper","indices":[91,105]}],"urls":[],"user_mentions":[{"screen_name":"plovepgon","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","id":211350474,"id_str":"211350474","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:07 +0000 2017","id":932386533532778496,"id_str":"932386533532778496","text":"RT @moon_disco49: \u4eca\u65e5\u306f\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u2757\ufe0f\n\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\n\n\u7f8e\u5473\u3057\u3044\u3088\u306d\uff5e\ud83c\udfb6\n\u79c1\u3082\u597d\u304d\ud83d\ude03\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:17 +0000 2017","id":932383557355372544,"id_str":"932383557355372544","text":"\u4eca\u65e5\u306f\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u2757\ufe0f\n\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\n\n\u7f8e\u5473\u3057\u3044\u3088\u306d\uff5e\ud83c\udfb6\n\u79c1\u3082\u597d\u304d\ud83d\ude03\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163260018,"id_str":"3163260018","name":"\u3044\u3061\u3054","screen_name":"moon_disco49","location":null,"url":"http:\/\/ameblo.jp\/13ichigop\/entry-12138918149.html","description":"\u5c71P\u306e\u3053\u3068\u4ee5\u5916\u3001\u8208\u5473\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u9375\u57a2\u3001\u304a\u4eba\u67c4\u304c\u5168\u304f\u898b\u3048\u306a\u3044\u65b9\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\n\u5c71P\u304c\u6b69\u3044\u3066\u3044\u304f\u9053\u3092\u6c38\u9060\u306b\u5fdc\u63f4\u3057\u307e\u3059(\u0e51\u2022\u0300\u1d17- )\u2729","translator_type":"none","protected":false,"verified":false,"followers_count":779,"friends_count":277,"listed_count":5,"favourites_count":3752,"statuses_count":28747,"created_at":"Sun Apr 19 04:21:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163260018\/1502440752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[45,50]},{"text":"sound_tripper","indices":[56,70]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[63,68]},{"text":"sound_tripper","indices":[74,88]}],"urls":[],"user_mentions":[{"screen_name":"moon_disco49","name":"\u3044\u3061\u3054","id":3163260018,"id_str":"3163260018","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:06 +0000 2017","id":932386532874440705,"id_str":"932386532874440705","text":"Pizzeria Hollywood \ud83c\udf55 en Hollywood pizzer\u00eda https:\/\/t.co\/lacs7xwcI5","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1449713558,"id_str":"1449713558","name":"Juan Pablo\ud83d\udc3a","screen_name":"Juanchosescobar","location":"Bogot\u00e1, D.C., Colombia","url":null,"description":"Solo otra persona mas \ud83e\udd14","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":41,"listed_count":0,"favourites_count":22,"statuses_count":8,"created_at":"Wed May 22 19:21:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917383377149456384\/gHTPLTce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917383377149456384\/gHTPLTce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1449713558\/1507556214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lacs7xwcI5","expanded_url":"https:\/\/www.instagram.com\/p\/BbseKY_gDNF\/","display_url":"instagram.com\/p\/BbseKY_gDNF\/","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"is","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:05 +0000 2017","id":932386528084615174,"id_str":"932386528084615174","text":"RT @ladyfata: Stasera pizza \ud83c\udf55 \ud83d\ude0b\ud83c\udf77\ud83c\udf7d\n#pizzafattaincasa #pizza#amici #carnotzet #cranssursierre #valais #cook\u2026 https:\/\/t.co\/YAjKz7m3H3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":841289941,"id_str":"841289941","name":"Massimo Nascioli","screen_name":"massimonascioli","location":"Roma, Lazio","url":null,"description":"Intermediario Assicurativo - Appassionato di fotografia, arte e cinema - #Sfigatidelsabatosera","translator_type":"none","protected":false,"verified":false,"followers_count":3521,"friends_count":4918,"listed_count":147,"favourites_count":66395,"statuses_count":66721,"created_at":"Sun Sep 23 08:21:28 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914149777830481921\/nf6pH5Rj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914149777830481921\/nf6pH5Rj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/841289941\/1509794787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:07:52 +0000 2017","id":932384963755937793,"id_str":"932384963755937793","text":"Stasera pizza \ud83c\udf55 \ud83d\ude0b\ud83c\udf77\ud83c\udf7d\n#pizzafattaincasa #pizza#amici #carnotzet #cranssursierre #valais #cook\u2026 https:\/\/t.co\/YAjKz7m3H3","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":605801932,"id_str":"605801932","name":"Lady Fata","screen_name":"ladyfata","location":null,"url":null,"description":"Se un granello di sabbia vuol dire ti amo..allora ti regalo il Sahara. Roma -Crans-sur-Sierre -Puglia. #sfigatidelsabatosera Nm001129","translator_type":"none","protected":false,"verified":false,"followers_count":3363,"friends_count":1142,"listed_count":57,"favourites_count":219855,"statuses_count":68893,"created_at":"Mon Jun 11 22:28:09 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"13C2CF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171201545\/5Fx9fcSA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171201545\/5Fx9fcSA.jpeg","profile_background_tile":true,"profile_link_color":"007BFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"29469D","profile_text_color":"15FB2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/777269443915345920\/zNdwHY14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/777269443915345920\/zNdwHY14_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/605801932\/1473717986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[46.3,7.46667]},"coordinates":{"type":"Point","coordinates":[7.46667,46.3]},"place":{"id":"b41fd612ae56fda3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b41fd612ae56fda3.json","place_type":"city","name":"Chermignon","full_name":"Chermignon, Suisse","country_code":"CH","country":"Switzerland","bounding_box":{"type":"Polygon","coordinates":[[[7.459197,46.271999],[7.459197,46.310406],[7.498618,46.310406],[7.498618,46.271999]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"pizzafattaincasa","indices":[20,37]},{"text":"carnotzet","indices":[51,61]},{"text":"cranssursierre","indices":[62,77]},{"text":"valais","indices":[78,85]},{"text":"cook","indices":[86,91]}],"urls":[{"url":"https:\/\/t.co\/YAjKz7m3H3","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsdc0bBN79\/","display_url":"instagram.com\/p\/Bbsdc0bBN79\/","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pizzafattaincasa","indices":[34,51]},{"text":"carnotzet","indices":[65,75]},{"text":"cranssursierre","indices":[76,91]},{"text":"valais","indices":[92,99]},{"text":"cook","indices":[100,105]}],"urls":[{"url":"https:\/\/t.co\/YAjKz7m3H3","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsdc0bBN79\/","display_url":"instagram.com\/p\/Bbsdc0bBN79\/","indices":[107,130]}],"user_mentions":[{"screen_name":"ladyfata","name":"Lady Fata","id":605801932,"id_str":"605801932","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:05 +0000 2017","id":932386525144260608,"id_str":"932386525144260608","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192171529,"id_str":"3192171529","name":"\u9759\u9999","screen_name":"T19830321s","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":5,"friends_count":131,"listed_count":0,"favourites_count":62,"statuses_count":755,"created_at":"Mon May 11 13:10:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386514041843712,"id_str":"932386514041843712","text":"#\u304a\u304a\u307e\u3048\n\n\u5927\u524d\u3055\u3093\u306e\u30d4\u30b6\ud83c\udf55\u98df\u3079\u305f\u3044\ud83d\ude0d\n\u3082\u3061\u308d\u3093\u3001\u30a2\u30bd\u30b3\u304b\u3089\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284159821,"id_str":"3284159821","name":"\uff33\uff21\uff32\uff35","screen_name":"Ia4kwPleHptWWqI","location":" \u540d\u53e4\u5c4b\u5e02 ","url":null,"description":"\u3010\u89b3\u89a7\u6ce8\u610f\u3011SARU\u306a\u306e\u3067\u565b\u307f\u3064\u3044\u3061\u3083\u3044\u307e\u3059\u3088\ud83d\udc12\ud83d\udc35\u52dd\u624b\u306b\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u3061\u3083\u3044\u307e\u3059\ud83c\udfb5\u5acc\u3044\u306a\u65b9\u306f\u304a\u624b\u6570\u3067\u3059\u304c\u3001\u3001\u3001\u3001You\u30d6\u30ed\u30c3\u30af\u3057\u3061\u3083\u3044\u306a\u3088\ud83d\udc95\u3088\u308d\u3061\u304f\u30d3\u30fc\u30c1\ud83c\udf34\ud83d\ude4b","translator_type":"none","protected":false,"verified":false,"followers_count":818,"friends_count":700,"listed_count":8,"favourites_count":99482,"statuses_count":34587,"created_at":"Sun Jul 19 07:42:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930414273771253760\/sMk4t455_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930414273771253760\/sMk4t455_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284159821\/1510664944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u304a\u307e\u3048","indices":[0,5]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386513974837249,"id_str":"932386513974837249","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173137208,"id_str":"173137208","name":"\u6751\u4e0a\u7fa9\u96c4","screen_name":"sutabania","location":null,"url":null,"description":"\u30b9\u30bf\u30fc\u30d0\u30c3\u30af\u30b9\u3068\u30b3\u30fc\u30d2\u30fc\u5927\u597d\u304d\u3067\u3059\u3002\n\u5143\u7a7a\u306e\u4eba","translator_type":"none","protected":false,"verified":false,"followers_count":83,"friends_count":500,"listed_count":1,"favourites_count":6675,"statuses_count":2457,"created_at":"Sat Jul 31 14:55:12 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/692712507996139520\/6EpnHkoj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/692712507996139520\/6EpnHkoj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173137208\/1453990418","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386513739902976,"id_str":"932386513739902976","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4670692334,"id_str":"4670692334","name":"bbb","screen_name":"bbbbbabccc","location":"\u65e5\u672c","url":null,"description":"\u6b32\u3057\u304f","translator_type":"none","protected":false,"verified":false,"followers_count":51,"friends_count":167,"listed_count":0,"favourites_count":1504,"statuses_count":1107,"created_at":"Tue Dec 29 02:52:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879970939663810560\/4vDnn11f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879970939663810560\/4vDnn11f_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:01 +0000 2017","id":932386510409797635,"id_str":"932386510409797635","text":"Football Sunday fat kid mozzarella waffle pizza! \ud83c\udf55 https:\/\/t.co\/zlrC29X4Ap","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14316456,"id_str":"14316456","name":"Mark Perez","screen_name":"faceofbass","location":"Aurora, Colorado","url":"http:\/\/www.faceofbass.com","description":"A little bit of this, a little bit of that. Bassist, Podcaster and sometimes even a decent DJ. Championing all that is Colorado","translator_type":"none","protected":false,"verified":false,"followers_count":1821,"friends_count":1994,"listed_count":99,"favourites_count":2018,"statuses_count":17341,"created_at":"Sun Apr 06 17:08:21 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110684","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D66A29","profile_text_color":"110684","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14316456\/1420515214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zlrC29X4Ap","expanded_url":"https:\/\/www.instagram.com\/p\/BbseJ-fHStI\/","display_url":"instagram.com\/p\/BbseJ-fHStI\/","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:00 +0000 2017","id":932386507264090113,"id_str":"932386507264090113","text":"\ud83c\udf55 x36 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:58 +0000 2017","id":932386499114520578,"id_str":"932386499114520578","text":"#boanoitegente \ud83d\ude04\nEsta chuva e friooooo\ud83d\ude28\nMas tem #pizzaboa \ud83c\udf55\ud83c\udf77\ud83c\udf7a em S\u00e3o Vicente, Brazil https:\/\/t.co\/uChK2BRIKv","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48846769,"id_str":"48846769","name":"Duarte Marques","screen_name":"DuarteMMarques","location":"Funchal-Hoje estou em Santos.","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":456,"friends_count":1789,"listed_count":3,"favourites_count":36,"statuses_count":4876,"created_at":"Fri Jun 19 22:12:43 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/523704971733123072\/nA_7pSp2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/523704971733123072\/nA_7pSp2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526497919625461760\/9SlGPUcr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526497919625461760\/9SlGPUcr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48846769\/1414362485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-23.9667,-46.3833]},"coordinates":{"type":"Point","coordinates":[-46.3833,-23.9667]},"place":{"id":"d1638a3be6a9ed61","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d1638a3be6a9ed61.json","place_type":"city","name":"S\u00e3o Vicente","full_name":"S\u00e3o Vicente, Brasil","country_code":"BR","country":"Brazil","bounding_box":{"type":"Polygon","coordinates":[[[-46.658389,-24.011484],[-46.658389,-23.899444],[-46.356622,-23.899444],[-46.356622,-24.011484]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"boanoitegente","indices":[0,14]},{"text":"pizzaboa","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/uChK2BRIKv","expanded_url":"https:\/\/www.instagram.com\/p\/BbseEngDOJo\/","display_url":"instagram.com\/p\/BbseEngDOJo\/","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:58 +0000 2017","id":932386495532474368,"id_str":"932386495532474368","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780021822641217536,"id_str":"780021822641217536","name":"\u3069\u3093","screen_name":"ddddddddon017","location":null,"url":null,"description":"\u5fa1\u98ef\u306f\u5927\u76db\u308a\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":18,"friends_count":84,"listed_count":0,"favourites_count":71,"statuses_count":1938,"created_at":"Sun Sep 25 12:31:09 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897394202106929153\/UoxY3bsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897394202106929153\/UoxY3bsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780021822641217536\/1504701157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:56 +0000 2017","id":932386489878511616,"id_str":"932386489878511616","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3113139169,"id_str":"3113139169","name":"\u30b1\u30f3","screen_name":"kentarosuz8","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":17,"friends_count":78,"listed_count":0,"favourites_count":375,"statuses_count":996,"created_at":"Sat Mar 28 14:28:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/769555293508210688\/-bvdQD5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/769555293508210688\/-bvdQD5w_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:56 +0000 2017","id":932386488209117184,"id_str":"932386488209117184","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3513803360,"id_str":"3513803360","name":"\u306b\u3053\u307d\u3093(\u4e0d\u5b9a\u671f\u6d3b\u52d5\u4e2d)","screen_name":"nikopon1115","location":"\u4eac\u90fd","url":null,"description":"2017\u5e74\u3082\u6b4c\u306b\u5143\u6c17\u3092\u8cb0\u3063\u3066\u3001\u7b11\u9854\u591a\u304d\u5e74\u306b\uff01\u6c37\u5ddd\u304d\u3088\u3057\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":117,"listed_count":3,"favourites_count":50277,"statuses_count":33389,"created_at":"Thu Sep 10 09:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513803360\/1444717759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:53 +0000 2017","id":932386476721098753,"id_str":"932386476721098753","text":"RT @k_kichitsu: \u65e9\u4e0a\u9192\u4f86\u5f8c\u89ba\u5f97\u81ea\u5df1\u534a\u591c\u8b1b\u90a3\u4ec0\u9ebc\u4e00\u4eba\u4e2d\u734e\u5168\u5bb6\u540c\u884cwwwww\u5bb3\u6211\u767d\u5929\u6eff\u8166\u5b50\u6230\u58eb\u968a\u7684Pizza Party\u756b\u9762 \ud83c\udf55\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/2N4GEaHNAy","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771816346413830144,"id_str":"771816346413830144","name":"bowlcut ryoasuka","screen_name":"akira1love","location":null,"url":null,"description":"formerly SoniaWinchente. 22, female, italian, a mess","translator_type":"none","protected":false,"verified":false,"followers_count":312,"friends_count":476,"listed_count":4,"favourites_count":90922,"statuses_count":42081,"created_at":"Fri Sep 02 21:05:31 +0000 2016","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905867141177647106\/aNbXj7pk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905867141177647106\/aNbXj7pk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771816346413830144\/1472896577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 07:57:08 +0000 2017","id":931430993881206784,"id_str":"931430993881206784","text":"\u65e9\u4e0a\u9192\u4f86\u5f8c\u89ba\u5f97\u81ea\u5df1\u534a\u591c\u8b1b\u90a3\u4ec0\u9ebc\u4e00\u4eba\u4e2d\u734e\u5168\u5bb6\u540c\u884cwwwww\u5bb3\u6211\u767d\u5929\u6eff\u8166\u5b50\u6230\u58eb\u968a\u7684Pizza Party\u756b\u9762 \ud83c\udf55\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/2N4GEaHNAy","display_text_range":[0,56],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":871082222576558080,"id_str":"871082222576558080","name":"\ud83c\udf7f\u9b3c\u79e9\ud83c\udf2d","screen_name":"k_kichitsu","location":"Taiwan","url":null,"description":"\u9032\u6483\u57a2 \uff08\u30d9\u30eb\u30e9\u30a4\u3001\u540c\u90f7\u30c8\u30ea\u30aa\u3001\u53f3\u30e9\u30a4etc.\uff09\u3001\u30cd\u30bf\u30d0\u30ec\u6709 \uff0f 20\u2191 \u8150 \uff0f \u53f0\u6e7e\u4eba\u3001\u4e2d\u56fd\u8a9e\u66f8\u3051\u307e\u3059\uff0f \u5c11\u3057\u3060\u3051\u65e5\u672c\u8a9e\u7406\u89e3\u51fa\u6765\u307e\u3059(\u8aad\u89e3\u306e\u307f) \uff0f\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059","translator_type":"none","protected":false,"verified":false,"followers_count":26,"friends_count":0,"listed_count":0,"favourites_count":3,"statuses_count":56,"created_at":"Sat Jun 03 19:12:40 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/919125827857481728\/ENYSGwLM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/919125827857481728\/ENYSGwLM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/871082222576558080\/1507971679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":24,"favorite_count":46,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k_kichitsu","name":"\ud83c\udf7f\u9b3c\u79e9\ud83c\udf2d","id":871082222576558080,"id_str":"871082222576558080","indices":[3,14]}],"symbols":[],"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}},"source_status_id":931430993881206784,"source_status_id_str":"931430993881206784","source_user_id":871082222576558080,"source_user_id_str":"871082222576558080"}]},"extended_entities":{"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}},"source_status_id":931430993881206784,"source_status_id_str":"931430993881206784","source_user_id":871082222576558080,"source_user_id_str":"871082222576558080"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386474078691328,"id_str":"932386474078691328","text":"\ud83c\udf55 x35 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386472832802816,"id_str":"932386472832802816","text":"RT @KITKATJapan: \u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784125290,"id_str":"784125290","name":"\u3164\u30bc\u30ce","screen_name":"168_doc","location":null,"url":"http:\/\/twpf.jp\/168_doc","description":"\u5143\u30b2\u30fc\u30bb\u30f3\u5e97\u54e1\u3002\u30db\u30fc\u30e0\u3060\u3063\u305f\u3051\u3069\u9589\u5e97\u3057\u305f\u306e\u3067\u97f3\u30b2\u30fc\u306f\u307b\u307c\u5f15\u9000\u3002\u30b9\u30ed\u30ab\u30b9\u3002\u4eca\u6301\u3063\u3066\u308b\u5b9f\u6a5f\u306f\u30ae\u30a2\u30b9\u521d\u4ee3\u306e\u307f\u3002\u97f3\u30b2\u30fc\u306e\u30c7\u30fc\u30bf\u306f\u30c4\u30a4\u30d7\u30ed\u3002\u5ac1(@nagi_doc)","translator_type":"none","protected":false,"verified":false,"followers_count":270,"friends_count":475,"listed_count":20,"favourites_count":6324,"statuses_count":129351,"created_at":"Mon Aug 27 08:02:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540694761946873859\/fEGmPhri.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540694761946873859\/fEGmPhri.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/803594398348939265\/aQGg_T3o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/803594398348939265\/aQGg_T3o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784125290\/1509054842","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:00 +0000 2017","id":932382983981592581,"id_str":"932382983981592581","text":"\u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":28,"favorite_count":43,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[54,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[71,76]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386469993312256,"id_str":"932386469993312256","text":"RT @6Etsuko: 11\u670820\u65e5\uff08\u6708\uff09\n\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n1\u9031\u9593\u306e\u59cb\u307e\u308a\u2026\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\ud83d\udc9a\n#\ud0dd\uc5f0 #\ud654\uc774\ud305 https:\/\/t.co\/PqPWbz30DP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":792033589558784000,"id_str":"792033589558784000","name":"\u307f\u307b","screen_name":"arVH8YFfEqsRxVb","location":null,"url":null,"description":"\u30c6\u30ae\u30e7\u30f3\u2764\u3055\u3089\u3093\u3078\uff5e\u2764\u3042\u3042\u3063\u3001\u30bd\u30ed\u30b3\u30f3\u697d\u3057\u304b\u3063\u305f\u306a\u3041\u2026\ud83d\ude22","translator_type":"none","protected":false,"verified":false,"followers_count":11,"friends_count":49,"listed_count":0,"favourites_count":11917,"statuses_count":2563,"created_at":"Fri Oct 28 16:01:37 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913444564530110464\/Imz2YLrL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913444564530110464\/Imz2YLrL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792033589558784000\/1508254780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 21:23:41 +0000 2017","id":932358742233956352,"id_str":"932358742233956352","text":"11\u670820\u65e5\uff08\u6708\uff09\n\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n1\u9031\u9593\u306e\u59cb\u307e\u308a\u2026\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\ud83d\udc9a\n#\ud0dd\uc5f0 #\ud654\uc774\ud305 https:\/\/t.co\/PqPWbz30DP","display_text_range":[0,43],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1590650528,"id_str":"1590650528","name":"\u3048\u3063\u3061\u3083\u3093\ud83d\udc9aETSUKO\ud83d\udc9a","screen_name":"6Etsuko","location":"Japan Aichi","url":null,"description":"\u30c6\u30ae\u30e7\u30f3\u6eba\u611b\u30a2\u30b8\u30e5\u30f3\u30de\u3067\u3059\u266a \u53ea\u4ecaTL\u8ffd\u3048\u305a\u3067\u30d5\u30a9\u30ed\u30d0\u304a\u4f11\u307f\u4e2d\u2026\u30d5\u30a9\u30ed\u30fc\u5916\u3055\u308c\u305f\u65b9\u30fb\u9375\u4ed8\u304d\u3055\u3093\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002\u7d61\u307f\u306e\u306a\u3044\u76f8\u4e92\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u2026\u4e0d\u5b9a\u671f\u3067\u6574\u7406\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u306e\u3067\u30df\u30a2\u30cd\u3002 6\/9\u2661\u5ff5\u9858\u306e\u30bd\u30a6\u30eb\u30b3\u30f3\u304c\u79c1\u306e\u30bb\u30f3\u30a4\u30eb\u2661\u305d\u3057\u3066\u5947\u8de1\u304c\u2661 \u52d5\u753b\u3092\u4f5c\u3063\u3066\u3044\u308b\u6642\u304c\u79c1\u306e\u7652\u3057\u266a\u6c17\u8efd\u306b\u7d61\u3093\u3067\u4e0b\u3055\u3044\u306d~\u2764\ufe0e@taeccool","translator_type":"none","protected":false,"verified":false,"followers_count":976,"friends_count":183,"listed_count":3,"favourites_count":15758,"statuses_count":86421,"created_at":"Sat Jul 13 10:00:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931288950383116288\/FnOax_kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931288950383116288\/FnOax_kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1590650528\/1505919323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":8,"favorite_count":15,"entities":{"hashtags":[{"text":"\ud0dd\uc5f0","indices":[35,38]},{"text":"\ud654\uc774\ud305","indices":[39,43]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":60000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/1280x720\/11tXMJvyweryi8LW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/pl\/7Zb5RB08B4odt6ot.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/320x180\/BwjplEmg-3i1JNEK.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/640x360\/DAazgG9RfhuSgm1c.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ud0dd\uc5f0","indices":[48,51]},{"text":"\ud654\uc774\ud305","indices":[52,56]}],"urls":[],"user_mentions":[{"screen_name":"6Etsuko","name":"\u3048\u3063\u3061\u3083\u3093\ud83d\udc9aETSUKO\ud83d\udc9a","id":1590650528,"id_str":"1590650528","indices":[3,11]}],"symbols":[],"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":932358742233956352,"source_status_id_str":"932358742233956352","source_user_id":1590650528,"source_user_id_str":"1590650528"}]},"extended_entities":{"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":932358742233956352,"source_status_id_str":"932358742233956352","source_user_id":1590650528,"source_user_id_str":"1590650528","video_info":{"aspect_ratio":[16,9],"duration_millis":60000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/1280x720\/11tXMJvyweryi8LW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/pl\/7Zb5RB08B4odt6ot.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/320x180\/BwjplEmg-3i1JNEK.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/640x360\/DAazgG9RfhuSgm1c.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:49 +0000 2017","id":932386460606406656,"id_str":"932386460606406656","text":"RT @nokko_0409: \u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800634234792603648,"id_str":"800634234792603648","name":"Suzu","screen_name":"Suzu98536234","location":"\u65e5\u672c \u5343\u8449","url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\u263a\u5c71P\u5927\u597d\u304d\u304a\u3070\u30d5\u30a1\u30f3\u3067\u3059\u2665\uff11\u304b\u3089\u3084\u308a\u76f4\u3057\u305f\u70ba\u307e\u305f\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(_ _)m\u30c7\u30a3\u30ba\u30cb\u30fc\u3082\u597d\u304d\u2665\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u30fc\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":447,"friends_count":357,"listed_count":5,"favourites_count":16896,"statuses_count":34107,"created_at":"Mon Nov 21 09:37:31 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800634234792603648\/1482012167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:13:18 +0000 2017","id":932386327818989568,"id_str":"932386327818989568","text":"\u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898499051,"id_str":"2898499051","name":"\u306e\u3063\u3053","screen_name":"nokko_0409","location":null,"url":null,"description":"\u5c71\uff30\u306e\u767a\u3059\u308b\u6e29\u5ea6\u304c\u582a\u3089\u306a\u304f\u597d\u304d","translator_type":"none","protected":false,"verified":false,"followers_count":81,"friends_count":107,"listed_count":1,"favourites_count":5472,"statuses_count":5618,"created_at":"Thu Nov 13 13:02:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898499051\/1471783413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[94,99]},{"text":"sound_tripper","indices":[100,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[110,115]},{"text":"sound_tripper","indices":[116,130]}],"urls":[],"user_mentions":[{"screen_name":"nokko_0409","name":"\u306e\u3063\u3053","id":2898499051,"id_str":"2898499051","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386456059838464,"id_str":"932386456059838464","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1373720448,"id_str":"1373720448","name":"marieee0520\uff08\u8d64\u798f\u52df\u96c6\u4e2d","screen_name":"marieee0520","location":"\u4e88\u5b9a\u306e\u306a\u3044\u65e5\u306f\u7d76\u597d\u8abf","url":null,"description":"Maya\/C4D\/AE\/PS\/iL 3DCG Animator. TV\u30b7\u30ea\u30fc\u30ba\u3001\u30cb\u30f3\u30b8\u30e3\u30bf\u30fc\u30c8\u30eb\u30ba\u30b7\u30fc\u30ba\u30f34,5\u53c2\u52a0\u3002\u8077\u696d\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u30de\u30cb\u30a2\u3002\u6d77\u5916\u3068\u65e5\u672c\u3092\u653e\u6d6a\u4e2d\u3002\u8d64\u798f\u304c\u98df\u3079\u305f\u3044\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":440,"friends_count":584,"listed_count":11,"favourites_count":2229,"statuses_count":5284,"created_at":"Tue Apr 23 03:51:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480275447205203968\/lRIvgGZm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480275447205203968\/lRIvgGZm.png","profile_background_tile":true,"profile_link_color":"FF0066","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620114948522295296\/emSNgESZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620114948522295296\/emSNgESZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1373720448\/1403341725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386455581626368,"id_str":"932386455581626368","text":"\u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211350474,"id_str":"211350474","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","screen_name":"plovepgon","location":"tokyo\u266a","url":null,"description":"\u3053\u306e\u4ef2\u9593\u3068\u306a\u3089\u3001\u307e\u305f\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u308b\u3002\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc \u30c9\u30af\u30bf\u30fc\u30d8\u30ea\u7dca\u6025\u6551\u547d \uff0dTHE THIRD SEASON\uff0d\u6bce\u9031\u6708\u66dc\u3088\u308b9\u6642\u30a8\u30f3\u30b8\u30f3\u30b9\u30bf\u30fc\u30c8\u2728\u2728\n\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u5168\u529b\u5fdc\u63f4\u4e2d\ud83c\udfb5\n\u30aa\u30f3\u30ea\u30fc\u3084\u307e\u3074\u30fc\u2764\n\u6642\u3005\u30de\u30de\u3055\u3093\u30d0\u30ec\u30fc\u306b\u51fa\u304b\u3051\u3066\u3044\u307e\u3059\u2757\n\u30d5\u30a9\u30ed\u30fc\u306f\u3072\u3068\u58f0\u304b\u3051\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u306a\ud83c\udfb6","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":269,"listed_count":3,"favourites_count":1920,"statuses_count":35970,"created_at":"Wed Nov 03 00:47:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211350474\/1500861182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[70,75]},{"text":"sound_tripper","indices":[76,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:45 +0000 2017","id":932386444127166464,"id_str":"932386444127166464","text":"\ud83c\udf55 x34 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:42 +0000 2017","id":932386431716257793,"id_str":"932386431716257793","text":"Pineapple Skies \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752743155267608576,"id_str":"752743155267608576","name":"\u3030","screen_name":"bajomiroca","location":"5th Dimension","url":null,"description":"\u2615\ufe0f | YOLO | NAMASTE |","translator_type":"none","protected":false,"verified":false,"followers_count":338,"friends_count":575,"listed_count":4,"favourites_count":8106,"statuses_count":5994,"created_at":"Tue Jul 12 05:55:28 +0000 2016","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931480734849798145\/tE9eW1an_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931480734849798145\/tE9eW1an_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752743155267608576\/1510917323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:41 +0000 2017","id":932386426141884416,"id_str":"932386426141884416","text":"RT @528yp: \u5c71\uff30\u304a\u306f\u3088\u3046\ud83d\udc95\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u7167\u308a\u713c\u304d\u306e\u30d4\u30b6\ud83c\udf55\u304c\u597d\u304d\u306a\u5c71\uff30\ud83c\udfb5\u7f8e\u5473\u3057\u3044\u3088\u306d\ud83d\ude0a\n\u5ca1\u7530\u541b\u3068\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u304a\u8a71\u3082\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u4eca\u65e5\u3082\u5bd2\u304f\u3066\u64ae\u5f71\u5927\u5909\u3060\u3068\u601d\u3044\u307e\u3059\u304c\u9811\u5f35\u3063\u3066\u4e0b\u3055\u3044\ud83c\udf40\n\u4eca\u9031\u3082\u9811\u5f35\u308a\u307e\u3059\ud83c\udfb5\n\u5c71\uff30\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800634234792603648,"id_str":"800634234792603648","name":"Suzu","screen_name":"Suzu98536234","location":"\u65e5\u672c \u5343\u8449","url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\u263a\u5c71P\u5927\u597d\u304d\u304a\u3070\u30d5\u30a1\u30f3\u3067\u3059\u2665\uff11\u304b\u3089\u3084\u308a\u76f4\u3057\u305f\u70ba\u307e\u305f\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(_ _)m\u30c7\u30a3\u30ba\u30cb\u30fc\u3082\u597d\u304d\u2665\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u30fc\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":447,"friends_count":357,"listed_count":5,"favourites_count":16896,"statuses_count":34107,"created_at":"Mon Nov 21 09:37:31 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800634234792603648\/1482012167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:12:28 +0000 2017","id":932386120926507009,"id_str":"932386120926507009","text":"\u5c71\uff30\u304a\u306f\u3088\u3046\ud83d\udc95\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u7167\u308a\u713c\u304d\u306e\u30d4\u30b6\ud83c\udf55\u304c\u597d\u304d\u306a\u5c71\uff30\ud83c\udfb5\u7f8e\u5473\u3057\u3044\u3088\u306d\ud83d\ude0a\n\u5ca1\u7530\u541b\u3068\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u304a\u8a71\u3082\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u4eca\u65e5\u3082\u5bd2\u304f\u3066\u64ae\u5f71\u5927\u5909\u3060\u3068\u601d\u3044\u307e\u3059\u304c\u9811\u5f35\u3063\u3066\u4e0b\u3055\u3044\ud83c\udf40\n\u4eca\u9031\u3082\u9811\u5f35\u308a\u307e\u3059\ud83c\udfb5\n\u5c71\uff30\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898124986,"id_str":"2898124986","name":"\u3072\u308d\u3053\u2606","screen_name":"528yp","location":null,"url":null,"description":"\u5c71\uff30\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u2728\n\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc\u85cd\u6ca2\u5148\u751f\u304c\u5927\u597d\u304d\u3067\u3059\ud83d\udc93\n\u30de\u30a4\u30da\u30fc\u30b9\u306a\u30d0\u30ca\u30casweetie\ud83c\udf40\u3000\u95a2\u897f\u266a","translator_type":"none","protected":false,"verified":false,"followers_count":455,"friends_count":205,"listed_count":2,"favourites_count":9684,"statuses_count":38031,"created_at":"Thu Nov 13 06:29:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851085743514566656\/qxNycfPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851085743514566656\/qxNycfPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898124986\/1497942066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[107,112]},{"text":"sound_tripper","indices":[114,128]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[118,123]},{"text":"sound_tripper","indices":[125,139]}],"urls":[],"user_mentions":[{"screen_name":"528yp","name":"\u3072\u308d\u3053\u2606","id":2898124986,"id_str":"2898124986","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:39 +0000 2017","id":932386418713915392,"id_str":"932386418713915392","text":"\ud83c\udf55 @MartinGarrix the pizza maker https:\/\/t.co\/fbpCQOMBTx","display_text_range":[0,31],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957205621,"id_str":"2957205621","name":"GarrixNews","screen_name":"garrixnews","location":null,"url":"https:\/\/www.instagram.com\/garrixnews\/","description":"Make sure to follow for updates! | Instagram: Garrixnews","translator_type":"none","protected":false,"verified":false,"followers_count":347,"friends_count":155,"listed_count":1,"favourites_count":417,"statuses_count":412,"created_at":"Fri Jan 02 20:24:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904834419353157632\/6bBjyHlp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904834419353157632\/6bBjyHlp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957205621\/1504564314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MartinGarrix","name":"MARTIN GARRIX","id":134234000,"id_str":"134234000","indices":[2,15]}],"symbols":[],"media":[{"id":932385892492292097,"id_str":"932385892492292097","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","url":"https:\/\/t.co\/fbpCQOMBTx","display_url":"pic.twitter.com\/fbpCQOMBTx","expanded_url":"https:\/\/twitter.com\/garrixnews\/status\/932386418713915392\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":900,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":720,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932385892492292097,"id_str":"932385892492292097","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","url":"https:\/\/t.co\/fbpCQOMBTx","display_url":"pic.twitter.com\/fbpCQOMBTx","expanded_url":"https:\/\/twitter.com\/garrixnews\/status\/932386418713915392\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":900,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":720,"h":900,"resize":"fit"}},"video_info":{"aspect_ratio":[4,5],"duration_millis":38992,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/vid\/512x640\/tp0_hakzV_4bnvLD.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/pl\/Bt38vi3d2K5z9qzS.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/vid\/256x320\/f-PuNW-UVSgIgRqg.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:38 +0000 2017","id":932386414578282498,"id_str":"932386414578282498","text":"RT @TheDIYideas: 6 After-School Pizza Recipes\ud83c\udf55\nhttps:\/\/t.co\/Up9rUnsqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35193096,"id_str":"35193096","name":"Spos-I don't know.","screen_name":"Espo61","location":"Ohio\/St.Lou-now\/beach soon","url":null,"description":"predators keep the balance - the only good day was yesterday-","translator_type":"none","protected":false,"verified":false,"followers_count":407,"friends_count":362,"listed_count":4,"favourites_count":1290,"statuses_count":3391,"created_at":"Sat Apr 25 11:23:44 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897076367682129920\/CXrTkEGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897076367682129920\/CXrTkEGG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35193096\/1500153684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 17:50:13 +0000 2017","id":932305023807062016,"id_str":"932305023807062016","text":"6 After-School Pizza Recipes\ud83c\udf55\nhttps:\/\/t.co\/Up9rUnsqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2323945699,"id_str":"2323945699","name":"Recipes GIFs","screen_name":"TheDIYideas","location":"Snapchat : Thediyideas","url":"https:\/\/Twitter.com\/MedicaIGuide","description":"Recipes in an easy to follow video format! Videos belong to their respective owners ( @BuzzFeed ).","translator_type":"none","protected":false,"verified":false,"followers_count":904773,"friends_count":35,"listed_count":2586,"favourites_count":11,"statuses_count":7334,"created_at":"Sun Feb 02 15:30:31 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446520147465883648\/t4LJxkwl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446520147465883648\/t4LJxkwl.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/685180494179205120\/PawIyXBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/685180494179205120\/PawIyXBl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2323945699\/1477672667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":336,"favorite_count":927,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937"}]},"extended_entities":{"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"video","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937","video_info":{"aspect_ratio":[1,1],"duration_millis":198448,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/480x480\/KSPJDe6YqdWkcVII.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/pl\/s-QpXozGtZJ0Xgjb.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/720x720\/XdUlIhdMUSmvQtGX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/240x240\/tUQfAaP7mvy5qHaX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDIYideas","name":"Recipes GIFs","id":2323945699,"id_str":"2323945699","indices":[3,15]}],"symbols":[],"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937"}]},"extended_entities":{"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"video","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937","video_info":{"aspect_ratio":[1,1],"duration_millis":198448,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/480x480\/KSPJDe6YqdWkcVII.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/pl\/s-QpXozGtZJ0Xgjb.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/720x720\/XdUlIhdMUSmvQtGX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/240x240\/tUQfAaP7mvy5qHaX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:38 +0000 2017","id":932386414548934656,"id_str":"932386414548934656","text":"\ud83c\udf55 x33 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:30 +0000 2017","id":932386380621205504,"id_str":"932386380621205504","text":"\ud83c\udf55 x32 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386368940015616,"id_str":"932386368940015616","text":"RT @christinartnd: The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic version\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":625985726,"id_str":"625985726","name":"Chloe \ud83d\udc96","screen_name":"deadringerr_","location":"Scotland, United Kingdom","url":null,"description":"Broken Glass and Broken Bones.","translator_type":"none","protected":false,"verified":false,"followers_count":457,"friends_count":672,"listed_count":1,"favourites_count":14115,"statuses_count":1208,"created_at":"Tue Jul 03 23:38:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455801171962105856\/PY8fwOvq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455801171962105856\/PY8fwOvq.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904792081972985856\/972lEiyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904792081972985856\/972lEiyD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/625985726\/1510776879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:01:04 +0000 2017","id":932322853520887810,"id_str":"932322853520887810","text":"The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic ver\u2026 https:\/\/t.co\/LEtG3lTFAb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130603144,"id_str":"130603144","name":"Christina Rotondo \ud83c\udf85\ud83c\udffb\ud83e\udd36\ud83c\udffb","screen_name":"christinartnd","location":"Nottingham, England","url":"https:\/\/www.youtube.com\/christinashoutsout","description":"I make ambienty rock music.\ud83c\udf19 PR & business contact contact christinartnd@gmail.com \ud83d\udda4http:\/\/www.christinartnd.bigcartel.com","translator_type":"none","protected":false,"verified":false,"followers_count":4479,"friends_count":418,"listed_count":41,"favourites_count":47902,"statuses_count":83377,"created_at":"Wed Apr 07 19:47:29 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930567227413319680\/UT472mMj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930567227413319680\/UT472mMj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130603144\/1510699492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic version here \ud83c\udf55 https:\/\/t.co\/wbRD5yBoF1 https:\/\/t.co\/pjBFKEjcGn","display_text_range":[0,150],"entities":{"hashtags":[{"text":"GetBy","indices":[30,36]}],"urls":[{"url":"https:\/\/t.co\/wbRD5yBoF1","expanded_url":"https:\/\/youtu.be\/14F7huPK9jM","display_url":"youtu.be\/14F7huPK9jM","indices":[127,150]}],"user_mentions":[{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[8,24]}],"symbols":[],"media":[{"id":932322847384535041,"id_str":"932322847384535041","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","url":"https:\/\/t.co\/pjBFKEjcGn","display_url":"pic.twitter.com\/pjBFKEjcGn","expanded_url":"https:\/\/twitter.com\/christinartnd\/status\/932322853520887810\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932322847384535041,"id_str":"932322847384535041","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","url":"https:\/\/t.co\/pjBFKEjcGn","display_url":"pic.twitter.com\/pjBFKEjcGn","expanded_url":"https:\/\/twitter.com\/christinartnd\/status\/932322853520887810\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":3,"favorite_count":9,"entities":{"hashtags":[{"text":"GetBy","indices":[30,36]}],"urls":[{"url":"https:\/\/t.co\/LEtG3lTFAb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932322853520887810","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[8,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GetBy","indices":[49,55]}],"urls":[],"user_mentions":[{"screen_name":"christinartnd","name":"Christina Rotondo \ud83c\udf85\ud83c\udffb\ud83e\udd36\ud83c\udffb","id":130603144,"id_str":"130603144","indices":[3,17]},{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386368872779779,"id_str":"932386368872779779","text":"\u3046\u308f\u3042\u3042\u3042\u3044\uff01\u30d4\u30b6\u306e\u65e5\uff01\n\u4eca\u65e5\u306f\u30d4\u30b6\u3092\u98df\u3079\u308b\u4e88\u611f\uff01\n\u8584\u3044\u751f\u5730\u3082\u539a\u3044\u30d1\u30f3\u307f\u305f\u3044\u306a\u751f\u5730\u3082\u4f55\u3067\u3082\u597d\u304d\ud83d\ude0b\ud83c\udf55\n\u3068\u308a\u3042\u3048\u305a\u8cbc\u308b\u30ab\u30a4\u30ed\u3092\u80cc\u4e2d\u306b\u88c5\u7740\u3057\u3066\u51fa\u767a\uff01 https:\/\/t.co\/Dqcopr2BdU","display_text_range":[0,71],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308475607,"id_str":"3308475607","name":"\u6d66\u548c\u8d64\u7fbd","screen_name":"odoro8","location":null,"url":null,"description":"\u7d75\u30fb\u52d5\u7269\u30fb\u9eba","translator_type":"none","protected":false,"verified":false,"followers_count":67,"friends_count":66,"listed_count":0,"favourites_count":3552,"statuses_count":5485,"created_at":"Fri Aug 07 04:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667765077789966336\/4CJk2chR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667765077789966336\/4CJk2chR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":932378001978818560,"quoted_status_id_str":"932378001978818560","quoted_status":{"created_at":"Sun Nov 19 22:40:13 +0000 2017","id":932378001978818560,"id_str":"932378001978818560","text":"\ud83c\uddee\ud83c\uddf9\u30ca\u30dd\u30ea\u3001\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u767a\u7965\u306e\u5e97\u300e\u30d6\u30e9\u30f3\u30c7\u30a3\u300f\uff08All About\uff09\u30001780\u5e74\u5275\u696d\u3002\u30ca\u30dd\u30ea\u30d4\u30c3\u30c4\u30a1\u3002\u8a18\u5ff5\u306b\u884c\u3063\u3066\u307f\u305f\u3044\u8001\u8217\u306e\u30d4\u30c3\u30c4\u30a7\u30ea\u30a2\u306e\u3072\u3068\u3064\u3067\u3059\u3002\u843d\u3061\u7740\u3044\u3066\u98df\u3079\u3089\u308c\u308b\u5e97\u5185\u306e\u96f0\u56f2\u6c17\u3067\u3001\u89b3\u5149\u5ba2\u3082\u5165\u308a\u3084\u3059\u3044\u306e\u304c\u9b45\u529b\u3002#\u30d4\u30b6\u306e\u65e5\u2026 https:\/\/t.co\/QuITCUfB6z","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110456679,"id_str":"110456679","name":"\u30e8\u30fc\u30ed\u30c3\u30d1\u65c5\u884c\u2708\u60c5\u5831\u90e8","screen_name":"euro_tour","location":"\u5927\u962a\u5e02\u5317\u533a\u540c\u5fc3\uff12\u4e01\u76ee","url":"http:\/\/www.euro-tour.co.jp\/","description":"\u30e8\u30fc\u30ed\u30c3\u30d1\u3001\u77e5\u3063\u30c8\u30af\u60c5\u5831\uff01\u30e8\u30fc\u30ed\u30c3\u30d1\u65c5\u884c\u3084\u8996\u5bdf\u306b\u5f79\u7acb\u3064\u6700\u65b0\u306e\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u7d39\u4ecb\uff01\u2728\u7d76\u666f\u30db\u30c6\u30eb\u3092\u306f\u3058\u3081\u3001\u6cca\u307e\u3063\u3066\u307f\u305f\u3044\u266a \u3068\u3063\u3066\u304a\u304d\u306e\u30db\u30c6\u30eb\u3082\u7d39\u4ecb\uff01\ud83d\udc95http:\/\/www.euro-tour.co.jp\/view-hotel\/","translator_type":"none","protected":false,"verified":false,"followers_count":507212,"friends_count":480454,"listed_count":7715,"favourites_count":805,"statuses_count":31921,"created_at":"Mon Feb 01 16:23:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"1004BD","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/845791107409588224\/0SSh_OOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/845791107409588224\/0SSh_OOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110456679\/1397707059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\ud83c\uddee\ud83c\uddf9\u30ca\u30dd\u30ea\u3001\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u767a\u7965\u306e\u5e97\u300e\u30d6\u30e9\u30f3\u30c7\u30a3\u300f\uff08All About\uff09\u30001780\u5e74\u5275\u696d\u3002\u30ca\u30dd\u30ea\u30d4\u30c3\u30c4\u30a1\u3002\u8a18\u5ff5\u306b\u884c\u3063\u3066\u307f\u305f\u3044\u8001\u8217\u306e\u30d4\u30c3\u30c4\u30a7\u30ea\u30a2\u306e\u3072\u3068\u3064\u3067\u3059\u3002\u843d\u3061\u7740\u3044\u3066\u98df\u3079\u3089\u308c\u308b\u5e97\u5185\u306e\u96f0\u56f2\u6c17\u3067\u3001\u89b3\u5149\u5ba2\u3082\u5165\u308a\u3084\u3059\u3044\u306e\u304c\u9b45\u529b\u3002#\u30d4\u30b6\u306e\u65e5\nhttps:\/\/t.co\/D0rtOyEcbj\n\u27a1\u30a4\u30bf\u30ea\u30a2\u306e\u30db\u30c6\u30eb\uff1ahttps:\/\/t.co\/zUyImIyNTB https:\/\/t.co\/T9cJ7HleAy","display_text_range":[0,171],"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[108,113]}],"urls":[{"url":"https:\/\/t.co\/D0rtOyEcbj","expanded_url":"https:\/\/allabout.co.jp\/gm\/gc\/416340\/","display_url":"allabout.co.jp\/gm\/gc\/416340\/","indices":[114,137]},{"url":"https:\/\/t.co\/zUyImIyNTB","expanded_url":"http:\/\/www.euro-tour.co.jp\/luxury-hotel\/italy.html","display_url":"euro-tour.co.jp\/luxury-hotel\/i\u2026","indices":[148,171]}],"user_mentions":[],"symbols":[],"media":[{"id":932375665613029377,"id_str":"932375665613029377","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":400,"resize":"fit"},"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"}}},{"id":932375689663102976,"id_str":"932375689663102976","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}},{"id":932375709103808512,"id_str":"932375709103808512","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932375665613029377,"id_str":"932375665613029377","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":400,"resize":"fit"},"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"}}},{"id":932375689663102976,"id_str":"932375689663102976","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}},{"id":932375709103808512,"id_str":"932375709103808512","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":15,"favorite_count":45,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[108,113]}],"urls":[{"url":"https:\/\/t.co\/QuITCUfB6z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932378001978818560","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Dqcopr2BdU","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560","display_url":"twitter.com\/euro_tour\/stat\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386365261733893,"id_str":"932386365261733893","text":"dedicate to he \ud83c\udf54\ud83c\udf55\ud83d\udc8b\r\u2764\u2764\u2764\u2764 \rsolo\ud83d\udc9b\u2764","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2155480668,"id_str":"2155480668","name":"$#$\u21ad#$#","screen_name":"iceBleuCheetah","location":null,"url":null,"description":"$$MOLDERINGBOMBSHELL && \u00bf\u00bf %% ## \u007b\u007blovealways\u007d\u007d [xoxo] 9|27|2015 \u2728\u270c\ud83d\udc44\r\r-unhappy","translator_type":"none","protected":false,"verified":false,"followers_count":500,"friends_count":105,"listed_count":1,"favourites_count":118,"statuses_count":861,"created_at":"Fri Oct 25 19:10:43 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512261452330065920\/pQs3u4MY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512261452330065920\/pQs3u4MY.jpeg","profile_background_tile":true,"profile_link_color":"0792B5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489202317850607616\/cfylTBLm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489202317850607616\/cfylTBLm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2155480668\/1405461396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:26 +0000 2017","id":932386365034991617,"id_str":"932386365034991617","text":"RT @tyweezy_: On a pizza date with the prettiest girl ever \ud83c\udf55 https:\/\/t.co\/qTiEjR6C6q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703715598526578688,"id_str":"703715598526578688","name":"karlit!!","screen_name":"karlitaylor_","location":null,"url":"http:\/\/rainymood.com","description":"a lil bee-knee baby (who takes rain very seriously)","translator_type":"none","protected":false,"verified":false,"followers_count":407,"friends_count":579,"listed_count":4,"favourites_count":39248,"statuses_count":16521,"created_at":"Sat Feb 27 22:57:27 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931037506904006658\/QHyIiJxY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931037506904006658\/QHyIiJxY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703715598526578688\/1510811752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 20:28:13 +0000 2017","id":931982394957189120,"id_str":"931982394957189120","text":"On a pizza date with the prettiest girl ever \ud83c\udf55 https:\/\/t.co\/qTiEjR6C6q","display_text_range":[0,46],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69038189,"id_str":"69038189","name":"shooter mcgavin","screen_name":"tyweezy_","location":null,"url":null,"description":"make america grunge again \u2022 Robbie\u2764\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":233,"friends_count":101,"listed_count":2,"favourites_count":30351,"statuses_count":25751,"created_at":"Wed Aug 26 17:18:02 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545310463026679808\/nAwXNBZj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545310463026679808\/nAwXNBZj.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909825333100244992\/f0qG7Okk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909825333100244992\/f0qG7Okk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69038189\/1510812917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":5,"favorite_count":130,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tyweezy_","name":"shooter mcgavin","id":69038189,"id_str":"69038189","indices":[3,12]}],"symbols":[],"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":931982394957189120,"source_status_id_str":"931982394957189120","source_user_id":69038189,"source_user_id_str":"69038189"}]},"extended_entities":{"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":931982394957189120,"source_status_id_str":"931982394957189120","source_user_id":69038189,"source_user_id_str":"69038189"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:23 +0000 2017","id":932386348862005248,"id_str":"932386348862005248","text":"\ud83c\udf55 x31 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:22 +0000 2017","id":932386348245295104,"id_str":"932386348245295104","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4414645693,"id_str":"4414645693","name":"\u3055\u307c\u3066\u3093@23.\u9577\u8eab\u77ed\u5200\u64ae\u5f71","screen_name":"Kyolo108","location":"\u798f\u5ca1","url":"http:\/\/twpf.jp\/Kyolo108","description":"20\u2191\u307e\u3060\u307e\u3060\u64ae\u5f71\u529b\u306a\u3044\u672a\u719f\u8005\u3002\u3068\u3046\u3089\u3076\/\u304a\u305d\u677e\u3055\u3093\/\u30ab\u30b2\u30d7\u30ed\/\u6587\u30b9\u30c8\/\u6df1\u591c\u968a\/A3 etc\nF\u304a\u6c17\u8efd\u306b \u304a\u5225\u308c\u306fB \u8150\u3063\u3066\u307e\u3059\u304c\u8150\u767a\u8a00\u63a7\u3048\u3081\u2190 \u64ae\u5f71\u6280\u8853\u5411\u4e0a\u3092\u76ee\u6307\u3059 \uff01\n\n\u4f7f\u3063\u3066\u308b\u30ab\u30e1\u30e9\u306fCanon\u306e8000D\u3068kissx7\u3001powershot SX610 HS","translator_type":"none","protected":false,"verified":false,"followers_count":323,"friends_count":407,"listed_count":29,"favourites_count":5330,"statuses_count":30357,"created_at":"Mon Nov 30 23:31:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928172672390914048\/d-kYjMZ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928172672390914048\/d-kYjMZ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4414645693\/1506128219","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:22 +0000 2017","id":932386344793501697,"id_str":"932386344793501697","text":"Como le hacen para preferir tener alguien con quien estar el s\u00e1bado por la noche\ud83c\udf7b\ud83d\udc83\ud83c\udffb; que el domingo por la tarde\ud83d\ude34\ud83c\udfac\ud83c\udf55\ud83c\udf7f\ud83c\udf79\n\nSigo sin entender\u2019\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344249047,"id_str":"344249047","name":"BMC'\ud83c\udf38\ud83c\udf43","screen_name":"BeatrizMejiaC12","location":"Valledupar-Colombia ","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":544,"friends_count":340,"listed_count":0,"favourites_count":2013,"statuses_count":8587,"created_at":"Thu Jul 28 19:31:02 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBDAEA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584500984\/i3xqgxdjde8uezjzi5td.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584500984\/i3xqgxdjde8uezjzi5td.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"EADAEB","profile_sidebar_fill_color":"F7E6F7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874042972781850625\/K2K2XtXM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874042972781850625\/K2K2XtXM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344249047\/1437176272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"012d9a8d4001c284","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/012d9a8d4001c284.json","place_type":"city","name":"Valledupar","full_name":"Valledupar, Colombia","country_code":"CO","country":"Colombia","bounding_box":{"type":"Polygon","coordinates":[[[-73.857183,9.793337],[-73.857183,10.855564],[-73.069389,10.855564],[-73.069389,9.793337]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:21 +0000 2017","id":932386343849672705,"id_str":"932386343849672705","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416696247,"id_str":"416696247","name":"\u3042\u306e\u307a\u305f\u3093","screen_name":"anopetan","location":"Team\uff7e\uff86\uff7c\uff74\uff9d\uff80","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":297,"friends_count":639,"listed_count":15,"favourites_count":26427,"statuses_count":13051,"created_at":"Sun Nov 20 01:16:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918728234862198785\/mU2DTJsZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918728234862198785\/mU2DTJsZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416696247\/1491215283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:21 +0000 2017","id":932386340594884608,"id_str":"932386340594884608","text":"\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u79c1\u3001\u30d4\u30b6\u4f5c\u3063\u305f\u3053\u3068\u3042\u308b\u3088\u270c\ufe0f\n\u56de\u305b\u306a\u3044\u3051\u3069\ud83d\ude05\ud83d\udca6\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\ud83c\udf55\n\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u304d\u305f\u306a\u3041\uff5e\n\n\u5c71P\u2764\ufe0f\u3042\u308a\u304c\u3068\u3046\u263a\ufe0f\n\u7d20\u6575\u306a\u4e00\u65e5\u3092\u904e\u3054\u3057\u3066\u30cd\ud83d\ude18\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163260018,"id_str":"3163260018","name":"\u3044\u3061\u3054","screen_name":"moon_disco49","location":null,"url":"http:\/\/ameblo.jp\/13ichigop\/entry-12138918149.html","description":"\u5c71P\u306e\u3053\u3068\u4ee5\u5916\u3001\u8208\u5473\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u9375\u57a2\u3001\u304a\u4eba\u67c4\u304c\u5168\u304f\u898b\u3048\u306a\u3044\u65b9\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\n\u5c71P\u304c\u6b69\u3044\u3066\u3044\u304f\u9053\u3092\u6c38\u9060\u306b\u5fdc\u63f4\u3057\u307e\u3059(\u0e51\u2022\u0300\u1d17- )\u2729","translator_type":"none","protected":false,"verified":false,"followers_count":779,"friends_count":277,"listed_count":5,"favourites_count":3752,"statuses_count":28747,"created_at":"Sun Apr 19 04:21:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163260018\/1502440752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[88,93]},{"text":"sound_tripper","indices":[99,113]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:20 +0000 2017","id":932386338912944128,"id_str":"932386338912944128","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":359913501,"id_str":"359913501","name":"\u307e\u3086\u3086\u306f\u2665\u6c421114\u2665BEAVER","screen_name":"milky1star","location":"\u3055\u3063\u307d\u308d\u526f\u90fd\u5fc3","url":"http:\/\/ameblo.jp\/maach-milky1star\/","description":"#lovefighters\n\u5ca1\u5927\u6d77\u3001\u6cf0\u793a\u3001\u512a\u5fc3\u3001\u5bae\u897f\u3055\u3093\u3001\u6709\u539f\u304f\u3093\uff01\n\u5143\u9060\u5f81\u3053\u3058\u3089\u305b\u3002aiko\u672c\u547d\nSUPER BEAVER\u304c\u4eca\u304d\u3066\u308b\uff01\uff01\uff01\n\uff3c\u30ab\u30f3\u30d1\u30cd\u30e9\u30fc\u3092\u76ee\u6307\u3059\u4eba\u751f\uff0f\n\u5ca1\u5d0e\u4f53\u80b21028\u3001WANIMA1104\u3001\u30ad\u30e5\u30a6\u30bd\n\u30b2\u30c3\u30bf\u30fc\u30ba\u98ef\u7530\u3055\u3093\u597d\u304d\nKANA\u3055\u3093\u00b7\u67f3\u7530\u53f2\u592a\u3055\u3093\u63a8\u3057\u3066\u307e\u3059","translator_type":"none","protected":false,"verified":false,"followers_count":172,"friends_count":330,"listed_count":2,"favourites_count":16022,"statuses_count":34095,"created_at":"Mon Aug 22 11:27:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/860839485625442304\/TvTl15ax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/860839485625442304\/TvTl15ax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359913501\/1494075104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:18 +0000 2017","id":932386327818989568,"id_str":"932386327818989568","text":"\u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898499051,"id_str":"2898499051","name":"\u306e\u3063\u3053","screen_name":"nokko_0409","location":null,"url":null,"description":"\u5c71\uff30\u306e\u767a\u3059\u308b\u6e29\u5ea6\u304c\u582a\u3089\u306a\u304f\u597d\u304d","translator_type":"none","protected":false,"verified":false,"followers_count":81,"friends_count":107,"listed_count":1,"favourites_count":5472,"statuses_count":5618,"created_at":"Thu Nov 13 13:02:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898499051\/1471783413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[94,99]},{"text":"sound_tripper","indices":[100,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:14 +0000 2017","id":932386313197699072,"id_str":"932386313197699072","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":903444541222543360,"id_str":"903444541222543360","name":"tomato","screen_name":"happy042967","location":null,"url":null,"description":"\u30a2\u30e9\u30b5\u30fc\u3067\u3001\u30c9\u30e9\u30de\u3001\u98df\u54c1\u3001\u751f\u6d3b\u7528\u54c1\u3001\u5316\u7ca7\u54c1\u3001\u6d0b\u670d\u306a\u3069\u6700\u65b0\u60c5\u5831\u3092\u8abf\u3079\u308b\u5927\u597d\u304d\u3067\u3059\u2764\ufe0f\u98df\u3092\u3059\u308b\u4e8b\u304c\u5927\u597d\u304d\u2764\ufe0f\u5927\u4eba\u306b\u306a\u3063\u3066\u3082\u307e\u3059\u304c\u3001\u6bce\u65e5\u304a\u3084\u3064\u3092\u98df\u3079\u3066\u3044\u307e\u3059\ud83e\udd5e\u666e\u6bb5\u3001\u30c4\u30a4\u30fc\u30c8\u3092\u305f\u304f\u3055\u3093\u6d41\u3057\u307e\u3059\u306e\u3067\u3001\u3054\u8ff7\u60d1\u304a\u639b\u3051\u3057\u307e\u3059\u304c\u3001\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude47\u203b\u4e0d\u9069\u5207\u306a\u884c\u70ba\u306e\u3042\u308b\u4eba\u3084\u30d3\u30b8\u30cd\u30b9\u3084\u30bb\u30fc\u30eb\u30b9\u306a\u3069\u307f\u3089\u308c\u308b\u4eba\u306f\u3001\u30d6\u30ed\u30c3\u30af\u3044\u305f\u3057\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":115,"friends_count":806,"listed_count":0,"favourites_count":6523,"statuses_count":9168,"created_at":"Fri Sep 01 02:28:58 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903454711746969604\/ytYTlrtS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903454711746969604\/ytYTlrtS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/903444541222543360\/1505828179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:13 +0000 2017","id":932386306902118401,"id_str":"932386306902118401","text":"RT @GabanaMultiespa: Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo x\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459866022,"id_str":"2459866022","name":"Gabana Multiespacio","screen_name":"GabanaMultiespa","location":"Navarro- Buenos Aires","url":null,"description":"Gabana Multiespacio.","translator_type":"none","protected":false,"verified":false,"followers_count":2422,"friends_count":822,"listed_count":0,"favourites_count":1036,"statuses_count":1815,"created_at":"Wed Apr 23 15:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459866022\/1471126180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 14:57:45 +0000 2017","id":931536843358777345,"id_str":"931536843358777345","text":"Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo\u2026 https:\/\/t.co\/t2YkIEF3j5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459866022,"id_str":"2459866022","name":"Gabana Multiespacio","screen_name":"GabanaMultiespa","location":"Navarro- Buenos Aires","url":null,"description":"Gabana Multiespacio.","translator_type":"none","protected":false,"verified":false,"followers_count":2422,"friends_count":822,"listed_count":0,"favourites_count":1036,"statuses_count":1815,"created_at":"Wed Apr 23 15:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459866022\/1471126180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo x FAV y RT para el domingo\ud83c\udf7b\ud83e\udd42\ud83d\ude0e\ud83d\ude18","display_text_range":[0,146],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":84,"favorite_count":127,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t2YkIEF3j5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931536843358777345","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GabanaMultiespa","name":"Gabana Multiespacio","id":2459866022,"id_str":"2459866022","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:12 +0000 2017","id":932386306344214529,"id_str":"932386306344214529","text":"\u5c71P\ud83d\udc95\u7686\u3055\u3093\u304a\u306f\u3088\u30fc\ud83d\udc95\n\n\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u597d\u304d\u306d\u2728\u30d4\u30b6\u4f5c\u3063\u3066\u307f\u305f\u3044\u306e\u301c\u6b21\u56de\u306e\u4f1a\u5831\u3067\u3069\u3046\u2753\n\nparticipate\u2728\u53c2\u52a0\u3059\u308b\n\u5ca1\u7530\u304f\u3093\u3068\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u53c2\u52a0\u3057\u305f\u3093\u3060\ud83d\ude0a\n\u671d\u307e\u3067\u751f\u5c71P\ud83d\udc95\u306b\u53c2\u52a0\u3057\u305f\u3044\u3088\ud83d\udc95\n\u83ef\u9053\u3068\u8336\u9053\u2192\u2026 https:\/\/t.co\/c5U1swLNxT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771889586104590336,"id_str":"771889586104590336","name":"avopp","screen_name":"pyama_dream","location":null,"url":null,"description":"FF\u3067\u5c71P\u306b\u3068\u308a\u3064\u304b\u308c\u3066\u3057\u307e\u3044\u307e\u3057\u305f\uff08\u2267\u2207\u2266\uff09 \u512a\u3057\u3044sweetie\u306e\u65b9\u3068\u304a\u8a71\u51fa\u6765\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\u5e45\u5e83\u3044sweetie\u306e\u7686\u3055\u3093\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044 H29.4.20 \u30fb8.4 ST\u306b\u3066\u304a\u30cf\u30ac\u30ad\u8aad\u307e\u308c\u305f\u5947\u8de1\u2728","translator_type":"none","protected":false,"verified":false,"followers_count":324,"friends_count":144,"listed_count":4,"favourites_count":31213,"statuses_count":28050,"created_at":"Sat Sep 03 01:56:33 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851318494561837058\/QpFCEp_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851318494561837058\/QpFCEp_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771889586104590336\/1487490314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u5c71P\ud83d\udc95\u7686\u3055\u3093\u304a\u306f\u3088\u30fc\ud83d\udc95\n\n\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u597d\u304d\u306d\u2728\u30d4\u30b6\u4f5c\u3063\u3066\u307f\u305f\u3044\u306e\u301c\u6b21\u56de\u306e\u4f1a\u5831\u3067\u3069\u3046\u2753\n\nparticipate\u2728\u53c2\u52a0\u3059\u308b\n\u5ca1\u7530\u304f\u3093\u3068\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u53c2\u52a0\u3057\u305f\u3093\u3060\ud83d\ude0a\n\u671d\u307e\u3067\u751f\u5c71P\ud83d\udc95\u306b\u53c2\u52a0\u3057\u305f\u3044\u3088\ud83d\udc95\n\u83ef\u9053\u3068\u8336\u9053\u2192\u83ef\u9053\u304c\u3044\u3044\n\u30b3\u30f3\u30b5\u30fc\u30c8\u3067\u5c71P\u304c\u83ef\u98fe\u308b\u2049\ufe0f\u7b11\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","display_text_range":[0,161],"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[141,146]},{"text":"sound_tripper","indices":[147,161]}],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c5U1swLNxT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386306344214529","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:09 +0000 2017","id":932386292406480896,"id_str":"932386292406480896","text":"\u4eca\u65e5\u306f\u3001\u3001\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u30a4\u30bf\u30ea\u30a2\u3092\u7d71\u4e00\u3057\u305f\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983\u306b\u3001\u30d4\u30b6\u8077\u4eba\u304c\u30a4\u30bf\u30ea\u30a2\u56fd\u65d7\u8272\u3092\u6a21\u3057\u305f\u30d4\u30b6\u3092\u732e\u4e0a\u3057\u305f\u306e\u304c\u3001\u300e\u30d4\u30c3\u30c4\u30a1\u30fb\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u300f\u306e\u59cb\u307e\u308a\u306a\u3093\u3060\u3063\u3066\u2606\n\u304a\u3082\u3066\u306a\u3057\u3063\u3066\u3001\u3044\u3044\u306d\u3063\u3063\ud83c\udf52\n#\u30d4\u30b6\u306e\u65e5 \n#\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983\n#\u30de\u30eb\u30b2\u30ea\u30fc\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":889323150080651266,"id_str":"889323150080651266","name":"\u3061\u3047\u308a\u30fc\u3061\u3047\u308a\u30fc","screen_name":"cccherry61","location":"JAPAN\ud83c\udf0f\ud83d\uddfe\ud83c\udf8c","url":null,"description":"\u6642\u4ee3\u306e\u6d41\u308c\u306b\u4ed8\u3044\u3066\u3044\u3051\u305a\u3001\u662d\u548c\u3067\u30b9\u30c8\u30c3\u30d7\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u3001\u3001\u3068\u308a\u3042\u3048\u305a\u59cb\u3081\u3066\u307f\u307e\u3057\u305f\ud83c\udf52\n\u5e83\u5cf6\u306e\u304a\u597d\u307f\u713c\u304d\u3092\u3001\u5e83\u5cf6\u98a8\u3067\u306f\u306a\u304f\u3001\u300e\u5e83\u5cf6\u6d41\u300f\u3068\u8a00\u308f\u308c\u308b\u65e5\u3092\u5922\u898b\u3066\u307e\u3059\ud83d\ude0b","translator_type":"none","protected":false,"verified":false,"followers_count":39,"friends_count":51,"listed_count":0,"favourites_count":832,"statuses_count":1174,"created_at":"Mon Jul 24 03:15:36 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912830809794527232\/ZFRd7o8t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912830809794527232\/ZFRd7o8t_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[96,101]},{"text":"\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983","indices":[103,112]},{"text":"\u30de\u30eb\u30b2\u30ea\u30fc\u30bf","indices":[113,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:09 +0000 2017","id":932386291550863360,"id_str":"932386291550863360","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4035738078,"id_str":"4035738078","name":"\u307e\u3086\u304d\u306d\u3053@\u7d75\u304c\u4e0a\u624b\u304f\u306a\u308a\u305f\u3044","screen_name":"mayukineko26","location":"\u3061\u304d\u3085\u3046\u306e\u3069\u3053\u304b","url":null,"description":"\u30b2\u30fc\u30e0\u2192\u30a2\u30a4\u30ca\u30ca\u3000\u767d\u3001\u9ed2\u732b \u30c9\u30e9\u30af\u30a810\u3000\u30d5\u30a7\u30a2\u30c9\u30eb\u3000\u30a8\u30eb\u30d7\u30ea\u3000\u305f\u307e\u306b\u30c7\u30ec\u30b9\u30c6\n\u30a2\u30cb\u30e1\u2192\u30ea\u30eb\u30ea\u30eb\u30d5\u30a7\u30a2\u30ea\u30eb\u3000\u30f4\u30a1\u30f3\u30ac\u3000\uff24\uff22\n\u6ac2\u304f\u3093\u5927\u597d\u304d(*\u00b4-`)\u3000\u63a8\u3057\u306f\u3044\u3063\u3071\u3044\u3002\n\u30ab\u30df\u30e5\u30d9\u30ed\u597d\u304d\uff01\u7d75\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u304f\u308c\u305f\u3089\u6ce3\u3044\u3066\u559c\u3076\u3002\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u2026http:\/\/twpf.jp\/mayukineko26\n\u30ec\u30d9\u30eb\u30e1\u30a2\u3061\u3083\u3093\u306e\u30b0\u30c3\u30ba\u304f\u3060\u3055\u3044","translator_type":"none","protected":false,"verified":false,"followers_count":160,"friends_count":520,"listed_count":1,"favourites_count":6194,"statuses_count":1646,"created_at":"Tue Oct 27 13:24:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909920742887776256\/3vdxKd2d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909920742887776256\/3vdxKd2d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035738078\/1509380590","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:05 +0000 2017","id":932386276690378752,"id_str":"932386276690378752","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405598410,"id_str":"405598410","name":"\u30ea\u30aa\u30ca\u3071\u306f","screen_name":"rionaryusei","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":46,"listed_count":0,"favourites_count":4,"statuses_count":223,"created_at":"Sat Nov 05 14:50:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:05 +0000 2017","id":932386273930518528,"id_str":"932386273930518528","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736536837733285888,"id_str":"736536837733285888","name":"Mitsuru@\u30e9\u30d6\u30a4\u30f3\u30d1\u30af\u30c8\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\u266a","screen_name":"air_326rr","location":"\u300e\u5fc3\u795e\u300f\u8a66\u9a13\u98db\u884c\u5730","url":"http:\/\/www.pixiv.net\/member.php?id=16419769","description":"\u65e5\u3005\u7cbe\u9032\u4e2d\u306e\u540c\u4eba\u7d75\u63cf\u304d\u3002\u30b3\u30d4\u30c3\u30af\u6c11\u266a \u516c\u79c1\u3067\u5275\u4f5c\u6d3b\u52d5\u3092\uff76\uff9e\uff9d\uff8a\uff9e\u3063\u3066\u3089\u3063\u3057\u3083\u308b\u7686\u69d8\u3092\u5fdc\u63f4\u4e2d\u266a\u7a42\u4e43\u679c\u3061\u3083\u3093&\u66dc\u3061\u3083\u3093\u63a8\u3057\u266aRT\u591a\u3081\u3002\u7121\u65ad\u8ee2\u8f09\u7981\u6b62\uff83\uff9e\uff7d\u3002\u30d5\u30a9\u30ed\u30fc\u3001RT\u306f\u304a\u6c17\u8efd\u306b\u266a\u30b3\u30c1\u30e9\u3082\u3069\u30fc\u305e\u2192http:\/\/twpf.jp\/air_326rr\u304a\u984c\u7bb1\u2192https:\/\/odaibako.net\/u\/air_326rr","translator_type":"none","protected":false,"verified":false,"followers_count":598,"friends_count":405,"listed_count":47,"favourites_count":64209,"statuses_count":47883,"created_at":"Sat May 28 12:37:21 +0000 2016","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930641699897929728\/1aXb3xbM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930641699897929728\/1aXb3xbM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736536837733285888\/1507412237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:59 +0000 2017","id":932386249276407808,"id_str":"932386249276407808","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98824360,"id_str":"98824360","name":"\u306a\u304c\u307f\u306d\u307e\u304d","screen_name":"macky_demons","location":"\u5bb6","url":"http:\/\/www.pixiv.net\/member.php?id=1515345","description":"FGO\u3001\u30a2\u30ba\u30ec\u30f3\u3001\u80b2\u5150\uff08 #2014Dec_baby \u3001 #2016Nov_baby \uff09\u3001\u4e0b\u30cd\u30bf\u3001\u611a\u75f4\u3092\u5927\u91cf\u306b\u545f\u304d\u307e\u3059\u3002RT\u591a\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u7d1b\u308c\n#\u606f\u5b50\u3055\u3093\u30ec\u30dd\u30fc\u30c8\n\u30d8\u30c3\u30c0\u30fc\u306f\u00a9sega","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":166,"listed_count":26,"favourites_count":5286,"statuses_count":95731,"created_at":"Wed Dec 23 07:26:50 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158565189\/hEK6oLNx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158565189\/hEK6oLNx.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/765533893311107072\/MSqT-MtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/765533893311107072\/MSqT-MtU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98824360\/1432874508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:57 +0000 2017","id":932386239352852482,"id_str":"932386239352852482","text":"\ud83c\udf55 x30 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:53 +0000 2017","id":932386225352314881,"id_str":"932386225352314881","text":"Thank you mbc2 , this horror movie is on the right time \ud83d\udc7b\ud83c\udf55.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1925287112,"id_str":"1925287112","name":"Mesh\u0645\u0627\u063a\u064a\u0631\u0647\u0627\ud83c\uddf8\ud83c\udde6","screen_name":"mesh_898","location":null,"url":null,"description":"\u203a \u032e \u0627\u0644\u0644\u0647\u0645 \u0633\u0647\u0644 \u062f\u0631\u0628\u064a \u0648\u0627\u063a\u0641\u0631\u0644\u064a \u0648\u0627\u0631\u062d\u0645\u0646\u064a \u064a \u0627\u0631\u062d\u0645 \u0627\u0644\u0631\u0627\u062d\u0645\u064a\u0646 ~ #\u0623\u0645\u064a_\u0648\u0643\u0641\u0649","translator_type":"none","protected":false,"verified":false,"followers_count":892,"friends_count":1025,"listed_count":1,"favourites_count":2012,"statuses_count":5977,"created_at":"Wed Oct 02 01:49:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817757282138263552\/mmjL-f_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817757282138263552\/mmjL-f_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1925287112\/1483803169","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:52 +0000 2017","id":932386220805570560,"id_str":"932386220805570560","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310111541,"id_str":"2310111541","name":"Sachiko\ud83c\udf0825th\u2661","screen_name":"stk_aeo","location":"Osaka","url":null,"description":"\u5948\u7f8e\u6075\u3055\u3093\u3068\u98db\u884c\u6a5f\u304c\u597d\u304d\u3067\u3059\u3002\n\u4eca\u5e74\u306f1\/8\u30689\/16\u306b\u5948\u7f8e\u6075\u3055\u3093\u306b\u4f1a\u3046\u2661\u2661\u2661","translator_type":"none","protected":false,"verified":false,"followers_count":188,"friends_count":345,"listed_count":2,"favourites_count":1210,"statuses_count":20402,"created_at":"Sat Jan 25 14:12:12 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539789255371796480\/H5DBBpte.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539789255371796480\/H5DBBpte.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904120394411524096\/DwpUHO4I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904120394411524096\/DwpUHO4I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310111541\/1506380606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:47 +0000 2017","id":932386200773677056,"id_str":"932386200773677056","text":"RT @SaraBethSimon: @achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (secret)\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925004551127576576,"id_str":"925004551127576576","name":"Soham214","screen_name":"BDS_justice4all","location":"Texas, USA","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":146,"friends_count":49,"listed_count":1,"favourites_count":2204,"statuses_count":4835,"created_at":"Mon Oct 30 14:20:45 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925030534136209409\/4k9mT7uB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925030534136209409\/4k9mT7uB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925004551127576576\/1510773482","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 20:18:16 +0000 2017","id":932342282052947972,"id_str":"932342282052947972","text":"@achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (se\u2026 https:\/\/t.co\/wB4y1Ki254","display_text_range":[81,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":932300588825694209,"in_reply_to_status_id_str":"932300588825694209","in_reply_to_user_id":22408314,"in_reply_to_user_id_str":"22408314","in_reply_to_screen_name":"achariw","user":{"id":947586372,"id_str":"947586372","name":"Sara Elizabeth Sim\u00f6n","screen_name":"SaraBethSimon","location":null,"url":null,"description":"#Psychology \u2022 #Psychiatry \u2022 #Behavior \u2022 #NLP \u2022 #Neuroscience \u2022 Ethical #Vegan https:\/\/t.co\/XiFGS0alKg \u2022 In love with the #Ocean https:\/\/t.co\/5u0v5yuwJp","translator_type":"none","protected":false,"verified":false,"followers_count":2458,"friends_count":450,"listed_count":308,"favourites_count":839,"statuses_count":15765,"created_at":"Wed Nov 14 11:46:16 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/707918880853856257\/jDnXU1NT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/707918880853856257\/jDnXU1NT.jpg","profile_background_tile":true,"profile_link_color":"43A6A5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876522831642800133\/iSxJk_bN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876522831642800133\/iSxJk_bN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947586372\/1478786999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (secret) lavish #AliceInWonderland party or flying $65K worth of \ud83c\udf55 & \ud83c\udf2d from Chicago in the middle of the recession. \n\nhttps:\/\/t.co\/bABFUaJT25 \n\n#QAnon #DownTheRabbitHole #FollowTheWhiteRabbit ; pic via @wikileaks https:\/\/t.co\/CTaigE49zJ","display_text_range":[81,328],"entities":{"hashtags":[{"text":"AliceInWonderland","indices":[128,146]},{"text":"QAnon","indices":[260,266]},{"text":"DownTheRabbitHole","indices":[267,285]},{"text":"FollowTheWhiteRabbit","indices":[286,307]}],"urls":[{"url":"https:\/\/t.co\/bABFUaJT25","expanded_url":"http:\/\/www.dailymail.co.uk\/news\/article-2926312\/Was-Lewis-Carroll-repressed-paedophile-BBC-documentary-examines-relationship-children-uncovers-shocking-naked-photo-real-Alice-s-sister-taken-Alice-Wonderland-creator.html","display_url":"dailymail.co.uk\/news\/article-2\u2026","indices":[234,257]}],"user_mentions":[{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[0,8]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[9,22]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[23,34]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[35,44]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[45,56]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[57,66]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[67,80]},{"screen_name":"wikileaks","name":"WikiLeaks","id":16589206,"id_str":"16589206","indices":[318,328]}],"symbols":[],"media":[{"id":932341712474787840,"id_str":"932341712474787840","indices":[329,352],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","url":"https:\/\/t.co\/CTaigE49zJ","display_url":"pic.twitter.com\/CTaigE49zJ","expanded_url":"https:\/\/twitter.com\/SaraBethSimon\/status\/932342282052947972\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932341712474787840,"id_str":"932341712474787840","indices":[329,352],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","url":"https:\/\/t.co\/CTaigE49zJ","display_url":"pic.twitter.com\/CTaigE49zJ","expanded_url":"https:\/\/twitter.com\/SaraBethSimon\/status\/932342282052947972\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":13,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wB4y1Ki254","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932342282052947972","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[0,8]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[9,22]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[23,34]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[35,44]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[45,56]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[57,66]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[67,80]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SaraBethSimon","name":"Sara Elizabeth Sim\u00f6n","id":947586372,"id_str":"947586372","indices":[3,17]},{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[19,27]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[28,41]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[42,53]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[54,63]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[64,75]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[76,85]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[86,99]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:47 +0000 2017","id":932386200769277952,"id_str":"932386200769277952","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925127550,"id_str":"925127550","name":"MUSASINO\u30e2\u30ea\u30c8","screen_name":"musamorito","location":"\u57fc\u7389\u306e\u65b9","url":"http:\/\/blogs.yahoo.co.jp\/e331tx","description":"\u9244(\u9053\u6210)\u5206\u304c\u591a\u3044\u4eba\u3002 \u4e3b\u306b\u30cb\u30c1\u30a2\u30b5\u3084\u30d7\u30e9\u30ec\u30fc\u30eb\u3001\u30d7\u30ea\u30ad\u30e5\u30a2\u3001N\u30b2\u30fc\u30b8\u3001\u9244\u9053\u3001\u99c5\u30e1\u30e2\u3001TF\u3001\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u30d2\u30ab\u30ea\u30a2\u30f3\u3001\u3054\u3061\u3046\u3055\u3001\u30a2\u30cb\u30e1\u306a\u3069\u304c\u597d\u304d\u306a\u4eba\u3067\u3059\u3002 \u7d50\u69cb\u591a\u8da3\u5473\u3002\n\u8a73\u3057\u3044\u3053\u3068\u306f \u30c4\u30a4\u30d7\u30ed\u3078\u3000http:\/\/twpf.jp\/musamorito","translator_type":"none","protected":false,"verified":false,"followers_count":1995,"friends_count":2136,"listed_count":33,"favourites_count":38179,"statuses_count":117047,"created_at":"Sun Nov 04 11:05:44 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C16543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914490076528119808\/oBHUvRjw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914490076528119808\/oBHUvRjw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925127550\/1502719068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:43 +0000 2017","id":932386181844754433,"id_str":"932386181844754433","text":"\ud83c\udf55 x29 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:42 +0000 2017","id":932386176442310656,"id_str":"932386176442310656","text":"RT @KITKATJapan: \u30d4\u30b6\u3068\u3044\u3048\u3070\ud83c\udf55\n\u3053\u3093\u306a\u5922\u306e\u30b3\u30e9\u30dc\u304c\u3042\u3063\u305f\u306e\u77e5\u3063\u3066\u3044\u307e\u3057\u305f\u304b\uff1f\n\u30b5\u30af\u30c3\u3068\u3057\u305f\u30d4\u30b6\u751f\u5730\u306b\u3001\u9999\u3070\u3057\u3044 #\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8\uff65\uff65\uff65\n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3 https:\/\/t.co\/KKpGi\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141661988,"id_str":"141661988","name":"\u30ab\u30a4","screen_name":"kaimimaa","location":"\u5929\u56fd\u3068\u5730\u7344\u306e\u9593\u3002\u3064\u307e\u308a\u3053\u306e\u4e16\u3001\u73fe\u4e16\u3002","url":null,"description":"\u5bdd\u3066\u3082\u9192\u3081\u3066\u3082\u6709\u9802\u5929\u3063\u3066\u4eba\u9593\u3084\u3063\u3066\u307e\u3057\u305f\u2606 \u7269\u5fc3\u3064\u3044\u305f\u6642\u304b\u3089\u597d\u304d\u306a\u7269\u304c\u5909\u308f\u3063\u3066\u307e\u305b\u3093\u3002 2\u67088\u65e5\u751f\u307e\u308c\uff08\u30b8\u30a7\u30fc\u30e0\u30b9\u30fb\u30c7\u30a3\u30fc\u30f3\u3068\u540c\u3058(\u7b11)\uff09\u6bd2\u5410\u304d\u5996\u602a\u2606","translator_type":"regular","protected":false,"verified":false,"followers_count":496,"friends_count":665,"listed_count":6,"favourites_count":8918,"statuses_count":75250,"created_at":"Sat May 08 17:35:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/854588207647805440\/k3rEkQ6e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/854588207647805440\/k3rEkQ6e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141661988\/1444257125","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:01:01 +0000 2017","id":932383239020281856,"id_str":"932383239020281856","text":"\u30d4\u30b6\u3068\u3044\u3048\u3070\ud83c\udf55\n\u3053\u3093\u306a\u5922\u306e\u30b3\u30e9\u30dc\u304c\u3042\u3063\u305f\u306e\u77e5\u3063\u3066\u3044\u307e\u3057\u305f\u304b\uff1f\n\u30b5\u30af\u30c3\u3068\u3057\u305f\u30d4\u30b6\u751f\u5730\u306b\u3001\u9999\u3070\u3057\u3044 #\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8\uff65\uff65\uff65\n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3 https:\/\/t.co\/KKpGiwj4Rv","display_text_range":[0,103],"source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":17,"favorite_count":46,"entities":{"hashtags":[{"text":"\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8","indices":[48,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931463089534377985,"id_str":"931463089534377985","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","url":"https:\/\/t.co\/KKpGiwj4Rv","display_url":"pic.twitter.com\/KKpGiwj4Rv","expanded_url":"https:\/\/twitter.com\/KITKATJapan\/status\/932383239020281856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":698,"h":508,"resize":"fit"},"large":{"w":698,"h":508,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931463089534377985,"id_str":"931463089534377985","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","url":"https:\/\/t.co\/KKpGiwj4Rv","display_url":"pic.twitter.com\/KKpGiwj4Rv","expanded_url":"https:\/\/twitter.com\/KITKATJapan\/status\/932383239020281856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":698,"h":508,"resize":"fit"},"large":{"w":698,"h":508,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8","indices":[65,74]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:41 +0000 2017","id":932386173577781249,"id_str":"932386173577781249","text":"RT @BlaguesDessins: #CommanderUnePizza \ud83c\udf55 :\nImitez la voix de la personne qui prend les commandes.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120322976,"id_str":"120322976","name":"niiitooo","screen_name":"tonidemantes","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":408,"friends_count":1035,"listed_count":30,"favourites_count":25481,"statuses_count":37895,"created_at":"Sat Mar 06 03:21:45 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034410346412\/ebe8232b8a7d4957ddce28bdab3a0f6a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034410346412\/ebe8232b8a7d4957ddce28bdab3a0f6a.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907362372012167170\/1eLuUX0t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907362372012167170\/1eLuUX0t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120322976\/1502054764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:06 +0000 2017","id":932383005703884801,"id_str":"932383005703884801","text":"#CommanderUnePizza \ud83c\udf55 :\nImitez la voix de la personne qui prend les commandes.","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire - Go Big\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2580787003,"id_str":"2580787003","name":"Blagues et Dessins","screen_name":"BlaguesDessins","location":null,"url":"http:\/\/www.blagues-et-dessins.com","description":"Peut-on rire de tout ? Oui, mais pas avec n'importe qui... Et vous n'\u00eates pas n'importe qui !!!\n#Humour #Blagues","translator_type":"none","protected":false,"verified":false,"followers_count":87306,"friends_count":84477,"listed_count":147,"favourites_count":2381,"statuses_count":14343,"created_at":"Sat Jun 21 17:16:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480399548964032512\/fspSswgP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480399548964032512\/fspSswgP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2580787003\/1408010683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":5,"entities":{"hashtags":[{"text":"CommanderUnePizza","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CommanderUnePizza","indices":[20,38]}],"urls":[],"user_mentions":[{"screen_name":"BlaguesDessins","name":"Blagues et Dessins","id":2580787003,"id_str":"2580787003","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:37 +0000 2017","id":932386157773570049,"id_str":"932386157773570049","text":"\u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","display_text_range":[0,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350712503,"id_str":"350712503","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","screen_name":"JUN_WADS","location":null,"url":"http:\/\/otoloop.com","description":"\u30aa\u30c8\u30eb\u30fc\u30d7\u306e\u30c9\u30e9\u30e0&\u30b3\u30fc\u30e9\u30b9\u3001\u30cb\u30b8\u30de\u30b9\u25fc\ufe0e\u6700\u65b0\u30ea\u30ea\u30c3\u30af\u30e0\u30fc\u30d3\u30fc\u3010\u30ea\u30cf\u30ed\u3011https:\/\/youtu.be\/tqAXgYBZ_Y8\u25fc\ufe0eMV\u3010\u3053\u3068\u3070\u3092\u77e5\u308a\u305f\u3044\u3011https:\/\/youtu.be\/pU7k2raunCo\u3010\u30a2\u30de\u30ce\u30b8\u30e3\u30af\u306e\u72ec\u767d\u3011https:\/\/youtu.be\/2kEpbSRUdVA","translator_type":"none","protected":false,"verified":false,"followers_count":9587,"friends_count":10541,"listed_count":59,"favourites_count":28740,"statuses_count":15646,"created_at":"Mon Aug 08 06:02:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350712503\/1387300819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:36 +0000 2017","id":932386151901683717,"id_str":"932386151901683717","text":"Eating Pizza \ud83c\udf55 and watching the Patriots! @ Oggi's Sports Brewhouse\u2026 https:\/\/t.co\/6brKa3Whtl","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5793962,"id_str":"5793962","name":"Rockedby","screen_name":"rickmoffett","location":"\u00dcT: 33.871559,-117.917107","url":"http:\/\/rockedbythreeshots.com\/","description":"Pod-caster, Disney Cast Member, Music fan and Craft Beer Connoisseur.\nSubmit Music to rickmoffett@gmail.com","translator_type":"none","protected":false,"verified":false,"followers_count":344,"friends_count":1479,"listed_count":14,"favourites_count":482,"statuses_count":6271,"created_at":"Sat May 05 19:05:02 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594367086350114816\/sIkQvxZJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594367086350114816\/sIkQvxZJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5793962\/1430285808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[33.874428,-117.884559]},"coordinates":{"type":"Point","coordinates":[-117.884559,33.874428]},"place":{"id":"2feb76248fd9c581","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2feb76248fd9c581.json","place_type":"city","name":"Fullerton","full_name":"Fullerton, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-117.985941,33.853881],[-117.985941,33.924814],[-117.863844,33.924814],[-117.863844,33.853881]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6brKa3Whtl","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsd_KolDzJjcAyjz_i89mx-VpoVmvbnzKrgtM0\/","display_url":"instagram.com\/p\/Bbsd_KolDzJj\u2026","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:35 +0000 2017","id":932386147887489024,"id_str":"932386147887489024","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1021474712,"id_str":"1021474712","name":"\u307f\u308f","screen_name":"miwakoko_","location":"\u30e9\u30ca\u30f3\u30ad\u30e5\u30e9\u30b9\u306e\u4e2d","url":"http:\/\/twpf.jp\/miwakoko_","description":"\ud83d\udc90\ud83c\udf37\u82b1\u3068\u6d77\u5916\u30a2\u30cb\u30e1\u3068\u6620\u753b\u3068\u304a\u3058\u69d8\u304c\u4e3b\u6210\u5206\ud83c\udf37\ud83d\udc90","translator_type":"none","protected":false,"verified":false,"followers_count":327,"friends_count":325,"listed_count":2,"favourites_count":10454,"statuses_count":15811,"created_at":"Wed Dec 19 06:30:15 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/868751049674244096\/bivBGkN3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/868751049674244096\/bivBGkN3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1021474712\/1493386329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:32 +0000 2017","id":932386138022584320,"id_str":"932386138022584320","text":"@Pz62 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059( \u00b4 \u25bd ` )\uff89\n\u30d4\u30b6\u306e\u65e5\u306a\u3093\u3067\u3059\u306d\u3002\n\u30d3\u30fc\u30eb\ud83c\udf7a\u3068\u30d4\u30b6\ud83c\udf55\u306e\u7d44\u307f\u5408\u308f\u305b\n\u6700\u9ad8\u3067\u3059\u306d\u3002\ud83d\ude04\u2728\n\u571f\u66dc\u65e5\u306f\u3001\u96e8\u964d\u3063\u305f\u308a\u6b62\u3093\u3060\u3059\u308b\u4e2d\n\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\u3068\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\n\u5f92\u6b69\u79fb\u52d5\u3067\u6b69\u6570\u8a08\u30672\u4e078\u5343\u6b69\u8d85\u3048\u3066\u307e\u3057\u305f\u3002\u7d42\u65e5\u6c17\u6e29\u4f4e\u3044\u69d8\u306a\u306e\u3067\u98a8\u90aa\u5f15\u304b\u306a\u3044\u69d8\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","display_text_range":[6,138],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932338951662157824,"in_reply_to_status_id_str":"932338951662157824","in_reply_to_user_id":107998753,"in_reply_to_user_id_str":"107998753","in_reply_to_screen_name":"Pz62","user":{"id":175349671,"id_str":"175349671","name":"\u304a\u307e\u3063\u3059\u30fc","screen_name":"omassu_0927","location":"\u65e5\u672c \u6771\u4eac","url":"http:\/\/ameba.ne.jp\/ommassu0927\/","description":"2005\/05\u304b\u3089\u4ed5\u4e8b\u3057\u306a\u304c\u3089\u3001\u30d5\u30eb\u30fc\u30c8\u6559\u5ba4\u901a\u3063\u3066\u3044\u307e\u3059\u3002Twitter\u4ee5\u5916\u306b\u3082Facebook,Ameba-Blog\u3082\u3057\u3066\u3044\u307e\u3059\u3002 \u6700\u8fd1\u306e\u63a8\u3057\u306f\u3001\u30b0\u30e9\u30d3\u30a2\uff1a\u30df\u30b9\u6771\u30b9\u30dd2016\u30b0\u30e9\u30f3\u30d7\u30ea\u306e\u300c\u685c\u4e95\u5948\u6d25\u300d\u3055\u3093\u3067\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":342,"friends_count":441,"listed_count":11,"favourites_count":8884,"statuses_count":26515,"created_at":"Fri Aug 06 10:42:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/710787773934886912\/DjPZphhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/710787773934886912\/DjPZphhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175349671\/1458737512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pz62","name":"\uff30\uff5a\uff16\uff12 10\u6708\u4f01\u753b\u4e2d\u6b62\u3057\u307e\u3059","id":107998753,"id_str":"107998753","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:32 +0000 2017","id":932386136693067779,"id_str":"932386136693067779","text":"\ud83c\udf55 x28 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:31 +0000 2017","id":932386131810889729,"id_str":"932386131810889729","text":"RT @SafeerAlgharaam: \u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u0644\u0645\u062d\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":733671301307633667,"id_str":"733671301307633667","name":"volkansen1555","screen_name":"volkansen15555","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":29,"friends_count":367,"listed_count":0,"favourites_count":52,"statuses_count":52,"created_at":"Fri May 20 14:50:44 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 28 03:22:42 +0000 2017","id":924114173805629440,"id_str":"924114173805629440","text":"\u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u2026 https:\/\/t.co\/zExISF3db3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":839116898742730753,"id_str":"839116898742730753","name":"\u2660\ufe0f\u24d5\u24d0\u24e1\u24d4\u24e2\u2660\ufe0f","screen_name":"SafeerAlgharaam","location":"\u0641\u0649 \u062d\u0636\u0646\u0643 \u064a\u0627\u0628\u064a\u0628\u0649","url":null,"description":"\u270d\ud83c\udffb...\u0634\u0639\u0651\u0631 \u0645\u064c\u0646\u0633\u062f\u064e\u0644 \u0648 \u0645\u064c\u0624\u062e\u0631\u0629 \u062a\u0647\u0651\u062a\u0632\u064e \u0648 \u0622\u0647\u0627\u062a \u062a\u062a\u064e\u0639\u0627\u0644\u0649 \u0648 \u0642\u0636\u064a\u0651\u0628 \u064a\u0646\u0651\u063a\u0631\u0650\u0633 \u0641\u064a \u0641\u0631\u0651\u062c\u0643 \u0645\u0634\u0651\u0647\u062f \u0645\u062c\u0651\u0646\u0648\u0646\ud83e\udd35\ud83c\udffbA man's lust and a female feeling\ud83d\udc70\ud83c\udf55\ud83c\udf55\u0647\u0646\u0627 \u062a\u062c\u062f\u0648\u0646 \u0645\u0627 \u064a\u0634\u0628\u0639 \u0634\u0647\u0648\u0627\u062a\u0643\u0645\ud83d\udd1e","translator_type":"none","protected":false,"verified":false,"followers_count":53957,"friends_count":409,"listed_count":423,"favourites_count":1671,"statuses_count":4925,"created_at":"Tue Mar 07 14:13:53 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/870348036815409152\/gPKYdgxj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870348036815409152\/gPKYdgxj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839116898742730753\/1492135581","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u0644\u0645\u062d\u0631\u0648\u0645\ud83d\ude08\ud83c\udf55 https:\/\/t.co\/ylzCAqDBtm","display_text_range":[0,123],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":924108926144086016,"id_str":"924108926144086016","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","url":"https:\/\/t.co\/ylzCAqDBtm","display_url":"pic.twitter.com\/ylzCAqDBtm","expanded_url":"https:\/\/twitter.com\/SafeerAlgharaam\/status\/924114173805629440\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":140001,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/pl\/lBIjpCcctsROf3HT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/640x360\/FEr6qzV38mwDqKZX.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/1280x720\/EdiDgvChqLSwLw0a.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/320x180\/lbcLsGZmwYsZJMvx.mp4"}]}}]},"extended_entities":{"media":[{"id":924108926144086016,"id_str":"924108926144086016","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","url":"https:\/\/t.co\/ylzCAqDBtm","display_url":"pic.twitter.com\/ylzCAqDBtm","expanded_url":"https:\/\/twitter.com\/SafeerAlgharaam\/status\/924114173805629440\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":140001,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/pl\/lBIjpCcctsROf3HT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/640x360\/FEr6qzV38mwDqKZX.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/1280x720\/EdiDgvChqLSwLw0a.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/320x180\/lbcLsGZmwYsZJMvx.mp4"}]}}]}},"quote_count":0,"reply_count":6,"retweet_count":232,"favorite_count":462,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zExISF3db3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/924114173805629440","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ar"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SafeerAlgharaam","name":"\u2660\ufe0f\u24d5\u24d0\u24e1\u24d4\u24e2\u2660\ufe0f","id":839116898742730753,"id_str":"839116898742730753","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710200000","toDate":"201711192315"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_next.json b/spec/fixtures/premium_search_next.json new file mode 100644 index 000000000..152425193 --- /dev/null +++ b/spec/fixtures/premium_search_next.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Sun Nov 19 23:15:07 +0000 2017","id":932386786193547264,"id_str":"932386786193547264","text":"RT @KITKATJapan: \u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"http:\/\/www.justsystems.com\/jp\/products\/tweetatok\/\" rel=\"nofollow\"\u003eTweet ATOK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141878728,"id_str":"141878728","name":"\u9b5a\u96ea\u9b3c\u5b50","screen_name":"o_kinon","location":" \u65e5\u672c\u306e\u9685\u3063\u3053","url":null,"description":"\u304f\u305a\u308c\u3002\u9762\u8b58\u3042\u308b\u30ab\u30e2\u306a\u65b9\u306f\u9023\u7d61\u304f\u30fc\u3060\u3055\u3044\u3002\u9762\u8b58\u306a\u3044\u65b9\u3082\u305a\u305a\u3044\u3068\u3002 \u30d8\u30c3\u30c0\u30fc\u753b\u50cf\u306f\u30aa\u30fc\u30c8\u30de\uff08 @557188AT ) \u3055\u3093\u4f5c\u3067\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":613,"friends_count":1342,"listed_count":17,"favourites_count":802076,"statuses_count":81697,"created_at":"Sun May 09 08:42:30 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619828847840616448\/rrPiJFll_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619828847840616448\/rrPiJFll_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141878728\/1465997953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:00 +0000 2017","id":932382983981592581,"id_str":"932382983981592581","text":"\u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":28,"favorite_count":43,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[54,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[71,76]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:05 +0000 2017","id":932386779738513409,"id_str":"932386779738513409","text":"RT @pvckingpizza: Sekarang dah ada PSD tau! PizzaScarf Delivery untuk para wanita diluar sana. RT bagi semua tahu \ud83d\ude0d\ud83c\udf55 https:\/\/t.co\/GwPuKOwzqD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826977896,"id_str":"826977896","name":"Dandelion","screen_name":"aishahhlee","location":"In your heart","url":null,"description":"unpredictable \ud83d\udc83\ud83c\udffb","translator_type":"none","protected":false,"verified":false,"followers_count":1087,"friends_count":708,"listed_count":14,"favourites_count":2357,"statuses_count":54636,"created_at":"Sun Sep 16 11:52:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486367027200684032\/-dTDBbZe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486367027200684032\/-dTDBbZe.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903960877677797376\/Crl4OkCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903960877677797376\/Crl4OkCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826977896\/1476608525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 14:39:05 +0000 2017","id":932256924380282880,"id_str":"932256924380282880","text":"Sekarang dah ada PSD tau! PizzaScarf Delivery untuk para wanita diluar sana. RT bagi semua tahu \ud83d\ude0d\ud83c\udf55 https:\/\/t.co\/GwPuKOwzqD","display_text_range":[0,98],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848587888,"id_str":"2848587888","name":"your pizza boy","screen_name":"pvckingpizza","location":"Johore, Malaysia","url":"http:\/\/Instagram.com\/pucking.pizza","description":"First of all, perempuan tinggi memang bae af.","translator_type":"regular","protected":false,"verified":false,"followers_count":29821,"friends_count":2481,"listed_count":98,"favourites_count":5073,"statuses_count":41245,"created_at":"Thu Oct 09 09:50:42 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921021302659473409\/5-kZybXm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921021302659473409\/5-kZybXm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848587888\/1508428760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":586,"favorite_count":447,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":932256511601938432,"id_str":"932256511601938432","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":270,"resize":"fit"},"large":{"w":360,"h":270,"resize":"fit"}}},{"id":932256511597748224,"id_str":"932256511597748224","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":360,"resize":"fit"},"medium":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}}},{"id":932256511614521345,"id_str":"932256511614521345","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":600,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":751,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pvckingpizza","name":"your pizza boy","id":2848587888,"id_str":"2848587888","indices":[3,16]}],"symbols":[],"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"}]},"extended_entities":{"media":[{"id":932256512612843520,"id_str":"932256512612843520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW-HVQAA1283.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":510,"h":680,"resize":"fit"},"large":{"w":510,"h":680,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511601938432,"id_str":"932256511601938432","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6WUEAA0kEX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":270,"resize":"fit"},"large":{"w":360,"h":270,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511597748224,"id_str":"932256511597748224","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6VUIAAquCj.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":360,"resize":"fit"},"medium":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"},{"id":932256511614521345,"id_str":"932256511614521345","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPAKW6ZUEAEcAbX.jpg","url":"https:\/\/t.co\/GwPuKOwzqD","display_url":"pic.twitter.com\/GwPuKOwzqD","expanded_url":"https:\/\/twitter.com\/pvckingpizza\/status\/932256924380282880\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":600,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":751,"resize":"fit"}},"source_status_id":932256924380282880,"source_status_id_str":"932256924380282880","source_user_id":2848587888,"source_user_id_str":"2848587888"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386775397318659,"id_str":"932386775397318659","text":"@suntory #\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\n\u3092\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u3067\u3059\u306d\uff01\n\ud83c\udf55\ud83c\udf7b\u2728","display_text_range":[9,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932382987873865729,"in_reply_to_status_id_str":"932382987873865729","in_reply_to_user_id":133684052,"in_reply_to_user_id_str":"133684052","in_reply_to_screen_name":"suntory","user":{"id":3513803360,"id_str":"3513803360","name":"\u306b\u3053\u307d\u3093(\u4e0d\u5b9a\u671f\u6d3b\u52d5\u4e2d)","screen_name":"nikopon1115","location":"\u4eac\u90fd","url":null,"description":"2017\u5e74\u3082\u6b4c\u306b\u5143\u6c17\u3092\u8cb0\u3063\u3066\u3001\u7b11\u9854\u591a\u304d\u5e74\u306b\uff01\u6c37\u5ddd\u304d\u3088\u3057\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":117,"listed_count":3,"favourites_count":50277,"statuses_count":33389,"created_at":"Thu Sep 10 09:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513803360\/1444717759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[9,16]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386773459767296,"id_str":"932386773459767296","text":"\ud83c\udf55 x43 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:04 +0000 2017","id":932386772763467777,"id_str":"932386772763467777","text":"Vou comer uma pizza agr nql pique \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818171243262332929,"id_str":"818171243262332929","name":"elice de nova","screen_name":"LcdeNova22","location":"COMPLEXO DE NOVA CIDADE","url":"https:\/\/soundcloud.com\/djlcdenovacidade","description":"A despedida foi repentina e sem volta, hoje a senhora esta na companhia de Deus e vive em nossas lembran\u00e7as !!!\nSaudades eterna v\u00f3 \ud83d\ude2a\ud83d\udc94\n\n09\/05\ud83d\udc91\n04\/11\ud83d\udc8f\ud83c\udfe0","translator_type":"none","protected":false,"verified":false,"followers_count":600,"friends_count":1845,"listed_count":0,"favourites_count":4611,"statuses_count":7609,"created_at":"Sun Jan 08 19:03:20 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930880778069782528\/sXXyujOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930880778069782528\/sXXyujOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818171243262332929\/1506802469","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:02 +0000 2017","id":932386766614536192,"id_str":"932386766614536192","text":"RT @BPPope: @bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quacks Like A Duc\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818605031591026689,"id_str":"818605031591026689","name":"Deb Moses","screen_name":"indiblue2","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1007,"friends_count":1092,"listed_count":2,"favourites_count":31576,"statuses_count":22947,"created_at":"Mon Jan 09 23:47:03 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:45:17 +0000 2017","id":932333982041169926,"id_str":"932333982041169926","text":"@bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quack\u2026 https:\/\/t.co\/Kh3GwnokUH","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4175166177,"in_reply_to_user_id_str":"4175166177","in_reply_to_screen_name":"bocavista2016","user":{"id":563997163,"id_str":"563997163","name":"BPPope.com","screen_name":"BPPope","location":null,"url":"http:\/\/www.BPPope.com","description":"TRUMP2020","translator_type":"none","protected":false,"verified":false,"followers_count":7594,"friends_count":2678,"listed_count":354,"favourites_count":259927,"statuses_count":270304,"created_at":"Thu Apr 26 19:57:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/689203975380320257\/KrzDdTei_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/689203975380320257\/KrzDdTei_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":931015440201068545,"quoted_status_id_str":"931015440201068545","quoted_status":{"created_at":"Thu Nov 16 04:25:53 +0000 2017","id":931015440201068545,"id_str":"931015440201068545","text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAn\u2026 https:\/\/t.co\/XaWmEF9ME7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4175166177,"id_str":"4175166177","name":"Boca Vista","screen_name":"bocavista2016","location":"Raleigh, NC","url":null,"description":"Trump or NONE!","translator_type":"none","protected":false,"verified":false,"followers_count":30744,"friends_count":28,"listed_count":373,"favourites_count":36719,"statuses_count":38420,"created_at":"Fri Nov 13 00:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4175166177\/1455066437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAnd what he does to little girls is no laughing matter\ud83d\ude20\n\nhttps:\/\/t.co\/nxuW0hPQlg\n@realDonaldTrump #MAGA #Hannity #IngrahamAngle #QAnon\n#FollowTheWhiteRabbit #TheStorm","display_text_range":[0,279],"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]},{"text":"MAGA","indices":[211,216]},{"text":"Hannity","indices":[217,225]},{"text":"IngrahamAngle","indices":[226,240]},{"text":"QAnon","indices":[241,247]},{"text":"FollowTheWhiteRabbit","indices":[248,269]},{"text":"TheStorm","indices":[270,279]}],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[194,210]}],"symbols":[],"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]},"extended_entities":{"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]}},"quote_count":0,"reply_count":499,"retweet_count":3963,"favorite_count":3987,"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]}],"urls":[{"url":"https:\/\/t.co\/XaWmEF9ME7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931015440201068545","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"extended_tweet":{"full_text":"@bocavista2016 @realDonaldTrump \ud83c\udf55\u274cYes Let\u2019s All Call It What It Is\ud83d\udd3aIf It L\ud83d\udc40Ks Like A Duck\ud83d\udd3a\ud83c\udf55Swims Like A Duck\ud83d\udd3a\ud83c\udf55Quacks Like A Duck\ud83c\udf55\ud83d\udd3aIt\u2019s A Duck\ud83d\udd3aOr Rather A Pedofile\u274c\u274cSTOP The Lies Expose The Villains\u274c\u274cJustice\ud83d\ude82\u203c\ufe0f\ud83d\ude0e https:\/\/t.co\/YMGtpNqBpF","display_text_range":[0,211],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YMGtpNqBpF","expanded_url":"https:\/\/twitter.com\/bocavista2016\/status\/931015440201068545","display_url":"twitter.com\/bocavista2016\/\u2026","indices":[212,235]}],"user_mentions":[{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[0,14]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[15,31]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":35,"favorite_count":39,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Kh3GwnokUH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932333982041169926","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[0,14]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[15,31]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"quoted_status_id":931015440201068545,"quoted_status_id_str":"931015440201068545","quoted_status":{"created_at":"Thu Nov 16 04:25:53 +0000 2017","id":931015440201068545,"id_str":"931015440201068545","text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAn\u2026 https:\/\/t.co\/XaWmEF9ME7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4175166177,"id_str":"4175166177","name":"Boca Vista","screen_name":"bocavista2016","location":"Raleigh, NC","url":null,"description":"Trump or NONE!","translator_type":"none","protected":false,"verified":false,"followers_count":30744,"friends_count":28,"listed_count":373,"favourites_count":36719,"statuses_count":38420,"created_at":"Fri Nov 13 00:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664981777849585664\/mXHlVpSJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4175166177\/1455066437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"JOE BIDEN\n\nHe isn't #CreepyJoe\n\nHe isn't #UncleJoe\n\nThose monikers make light of his SICKNESS\n\nHe's a PEDOPHILE\n\nAnd what he does to little girls is no laughing matter\ud83d\ude20\n\nhttps:\/\/t.co\/nxuW0hPQlg\n@realDonaldTrump #MAGA #Hannity #IngrahamAngle #QAnon\n#FollowTheWhiteRabbit #TheStorm","display_text_range":[0,279],"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]},{"text":"MAGA","indices":[211,216]},{"text":"Hannity","indices":[217,225]},{"text":"IngrahamAngle","indices":[226,240]},{"text":"QAnon","indices":[241,247]},{"text":"FollowTheWhiteRabbit","indices":[248,269]},{"text":"TheStorm","indices":[270,279]}],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[194,210]}],"symbols":[],"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]},"extended_entities":{"media":[{"id":929580709060026368,"id_str":"929580709060026368","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/929580709060026368\/pu\/img\/hvMAoyiZkn7WEA9Q.jpg","url":"https:\/\/t.co\/nxuW0hPQlg","display_url":"pic.twitter.com\/nxuW0hPQlg","expanded_url":"https:\/\/twitter.com\/SLandinSoCal\/status\/929581831363559425\/video\/1","type":"video","sizes":{"small":{"w":640,"h":360,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":360,"resize":"fit"}},"source_status_id":929581831363559425,"source_status_id_str":"929581831363559425","source_user_id":757731953281904640,"source_user_id_str":"757731953281904640","video_info":{"aspect_ratio":[16,9],"duration_millis":80714,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/pl\/dJ1F_1WB9zk-yg43.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/320x180\/IaGC-g3QZiyyhLcT.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/929580709060026368\/pu\/vid\/640x360\/MCbLydluZ-2eq6LW.mp4"}]}}]}},"quote_count":0,"reply_count":499,"retweet_count":3963,"favorite_count":3987,"entities":{"hashtags":[{"text":"CreepyJoe","indices":[20,30]},{"text":"UncleJoe","indices":[41,50]}],"urls":[{"url":"https:\/\/t.co\/XaWmEF9ME7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931015440201068545","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BPPope","name":"BPPope.com","id":563997163,"id_str":"563997163","indices":[3,10]},{"screen_name":"bocavista2016","name":"Boca Vista","id":4175166177,"id_str":"4175166177","indices":[12,26]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:15:00 +0000 2017","id":932386759282790400,"id_str":"932386759282790400","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4555964174,"id_str":"4555964174","name":"\u304e\u308b\u3066\u3044\u3059","screen_name":"ultrafightnexus","location":null,"url":null,"description":"\u30cd\u30af\u30b5\u30b9\u3068\u30a8\u30c3\u30af\u30b9\u304c\u597d\u304d\u306a\u30a6\u30eb\u30c8\u30e9\u30de\u30f3\u30d5\u30e5\u30fc\u30b8\u30e7\u30f3\u30d5\u30a1\u30a4\u30c8\u6c11\u3002\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u3068\u304b\u30a2\u30cb\u30e1\u3082\u898b\u3066\u307e\u3059\u3002\u6700\u8fd1\u30ac\u30f3\u30d7\u30e9\u71b1\u304c\u518d\u71c3\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":267,"friends_count":389,"listed_count":0,"favourites_count":10172,"statuses_count":4588,"created_at":"Mon Dec 14 11:18:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907972598822199296\/stf4J1dJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907972598822199296\/stf4J1dJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4555964174\/1488404033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:59 +0000 2017","id":932386753226215424,"id_str":"932386753226215424","text":"RT @fuwa0409p: \u30d4\u30b6\u4f5c\u308a\u306b\u6311\u6226\u3057\u3066\u307f\u305f\u3044\u5c71P\ud83c\udf55\n\u96d1\u8a8c\u306e\u4f01\u753b\u3068\u304b\u3067\u30be\u30d2\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:09:06 +0000 2017","id":932385273425440768,"id_str":"932385273425440768","text":"\u30d4\u30b6\u4f5c\u308a\u306b\u6311\u6226\u3057\u3066\u307f\u305f\u3044\u5c71P\ud83c\udf55\n\u96d1\u8a8c\u306e\u4f01\u753b\u3068\u304b\u3067\u30be\u30d2\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":729979007395991552,"id_str":"729979007395991552","name":"\u3068\u304d\u3053","screen_name":"fuwa0409p","location":"\u95a2\u897f","url":null,"description":"\u5c71\u4e0b\u667a\u4e45\u541b\u304c\u5927\u597d\u304d\u2764\ufe0f\u5c71P only\u306e\u30ad\u30a6\u30a4\u4e16\u4ee3\u306esweetie\u3067\u3059^ ^\u6ca2\u5c71\u306esweetie\u306e\u65b9\u3068\u304a\u53cb\u9054\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u2728\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044\u266a\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u9802\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\ud83d\ude0a","translator_type":"none","protected":false,"verified":false,"followers_count":420,"friends_count":345,"listed_count":1,"favourites_count":6708,"statuses_count":17866,"created_at":"Tue May 10 10:18:52 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851298865701462016\/t-3yKGj__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851298865701462016\/t-3yKGj__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729979007395991552\/1505912050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[38,43]},{"text":"sound_tripper","indices":[45,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[53,58]},{"text":"sound_tripper","indices":[60,74]}],"urls":[],"user_mentions":[{"screen_name":"fuwa0409p","name":"\u3068\u304d\u3053","id":729979007395991552,"id_str":"729979007395991552","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:57 +0000 2017","id":932386746314231808,"id_str":"932386746314231808","text":"@xTrisarahtops Breakfast, lunch, snacks, brunch, dinner.\nThere. We even have got the customized categories. \ud83c\udf5e\ud83c\udf5c\ud83c\udf72\ud83c\udf55","display_text_range":[15,112],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932386173632294914,"in_reply_to_status_id_str":"932386173632294914","in_reply_to_user_id":835143218450874368,"in_reply_to_user_id_str":"835143218450874368","in_reply_to_screen_name":"xTrisarahtops","user":{"id":24408793,"id_str":"24408793","name":"\ud83c\uddfb\ud83c\udde6gab.ai\/Fabs\ud83d\udc38\ud83e\udd81","screen_name":"Eutrapelico","location":"S\u00e3o Paulo","url":"http:\/\/eutrapelia.com.br","description":"Cat\u00f3lico.\n\ud83d\udc92\ud83d\udcff\nFilosofia.\nDesenvolvimento de jogos.","translator_type":"none","protected":false,"verified":false,"followers_count":384,"friends_count":1476,"listed_count":9,"favourites_count":21795,"statuses_count":28607,"created_at":"Sat Mar 14 18:35:57 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1D2E2F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/712938048825257984\/95LUhT2L.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/712938048825257984\/95LUhT2L.jpg","profile_background_tile":false,"profile_link_color":"D029E0","profile_sidebar_border_color":"EEF72B","profile_sidebar_fill_color":"16DF55","profile_text_color":"171711","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921524959691923456\/DcOG85l__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921524959691923456\/DcOG85l__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24408793\/1458812683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xTrisarahtops","name":"trisarahtops \ud83e\udd83","id":835143218450874368,"id_str":"835143218450874368","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:55 +0000 2017","id":932386734876262400,"id_str":"932386734876262400","text":"\ud83c\udf55 x42 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:50 +0000 2017","id":932386714185879552,"id_str":"932386714185879552","text":"RT @LizCrokin: Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referenced this\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2735669277,"id_str":"2735669277","name":"dor","screen_name":"DorCavegrrl","location":"earth walker","url":null,"description":"water bearer","translator_type":"none","protected":false,"verified":false,"followers_count":40,"friends_count":60,"listed_count":8,"favourites_count":3522,"statuses_count":1533,"created_at":"Thu Aug 07 01:14:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867036943326031874\/-4VxSW--_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867036943326031874\/-4VxSW--_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2735669277\/1411917119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 23:21:04 +0000 2017","id":932025897258856448,"id_str":"932025897258856448","text":"Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referen\u2026 https:\/\/t.co\/nDDqOAFYfS","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18279320,"id_str":"18279320","name":"LIZ THE\ud83c\udf2aIS HERE\u203c\ufe0f\ud83c\udf55","screen_name":"LizCrokin","location":"Los Angeles, CA","url":"https:\/\/www.paypal.me\/LIZCROKIN","description":"Malice author, sex crime survivor & investigative journalist censored by MSM for covering Clinton corruption, sex trafficking & Seth Rich. Pedogate is REAL\u203c\ufe0f\ud83c\udf55","translator_type":"none","protected":false,"verified":true,"followers_count":34022,"friends_count":1649,"listed_count":306,"favourites_count":55906,"statuses_count":19257,"created_at":"Sun Dec 21 04:47:30 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/9326842\/LizSlashRocks-18-43-38.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/9326842\/LizSlashRocks-18-43-38.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926554896450560000\/SMcUNLrc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926554896450560000\/SMcUNLrc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18279320\/1473489330","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Obama's Alice in Wonderland party had $65K worth of \ud83c\udf55 & \ud83c\udf2d!\n\nTim Burton did the \"decorations\".\ud83d\udc07\n\nFred Burton referenced this party in Wiki!\ud83d\udc47\ud83c\udffc https:\/\/t.co\/qrxIt4pSH4","display_text_range":[0,144],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932025892062208001,"id_str":"932025892062208001","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":747,"h":1066,"resize":"fit"},"small":{"w":477,"h":680,"resize":"fit"},"large":{"w":747,"h":1066,"resize":"fit"}}},{"id":932025892066299904,"id_str":"932025892066299904","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":684,"resize":"fit"},"large":{"w":748,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":622,"resize":"fit"}}},{"id":932025892057923589,"id_str":"932025892057923589","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932025892062208001,"id_str":"932025892062208001","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFnVoAE0S20.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":747,"h":1066,"resize":"fit"},"small":{"w":477,"h":680,"resize":"fit"},"large":{"w":747,"h":1066,"resize":"fit"}}},{"id":932025892066299904,"id_str":"932025892066299904","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFoUEAAfmLC.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":684,"resize":"fit"},"large":{"w":748,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":622,"resize":"fit"}}},{"id":932025892057923589,"id_str":"932025892057923589","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO84nFmUQAUiyK9.jpg","url":"https:\/\/t.co\/qrxIt4pSH4","display_url":"pic.twitter.com\/qrxIt4pSH4","expanded_url":"https:\/\/twitter.com\/LizCrokin\/status\/932025897258856448\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]}},"quote_count":0,"reply_count":29,"retweet_count":370,"favorite_count":338,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nDDqOAFYfS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932025897258856448","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[121,144]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LizCrokin","name":"LIZ THE\ud83c\udf2aIS HERE\u203c\ufe0f\ud83c\udf55","id":18279320,"id_str":"18279320","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:50 +0000 2017","id":932386714047229952,"id_str":"932386714047229952","text":"RT @ree_na_chan: \u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u3055\u3093ww\u307e\u305f\u304a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:07:53 +0000 2017","id":932384966406635520,"id_str":"932384966406635520","text":"\u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u2026 https:\/\/t.co\/t48iyyoS2n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215464736,"id_str":"215464736","name":"\u9ece\u7f8e","screen_name":"ree_na_chan","location":"Fukui,Japan","url":null,"description":"\u798f\u4e95\u306e\u7a7a\u306e\u4e0b\u3001\u5c71\u4e0b\u667a\u4e45\uff78\uff9d\u5fdc\u63f4\u4e2d\uff01 Sweeties\u3001\u30b8\u30e3\u30cbLOVE\u029a\u2764\u025e\uff7b\uff9d\u4ef2\u826f\u304f\u3057\u307e\u3057\u3087\u266a\u266a\u266a \u2606\u597d\u7269\u306f\u3001\u2729\u4fee\u4e8c\u3068\u5f70\u2729\u4e80\u3068\u5c71P\u2729\u500b\u4eba\u7684\u2190\u4e80\u3061\u3083\u3093\ud83d\udc22\u3082\u304a\u8336\u306e\u9593\u3067\u5fdc\u63f4\u4e2d\u3002\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u2606(*^^)v","translator_type":"none","protected":false,"verified":false,"followers_count":199,"friends_count":163,"listed_count":2,"favourites_count":3850,"statuses_count":11920,"created_at":"Sun Nov 14 00:57:28 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/839782249\/560dab98c53524761a369a949900b3c4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/839782249\/560dab98c53524761a369a949900b3c4.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875741464679948288\/EJiPyCPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875741464679948288\/EJiPyCPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215464736\/1475887643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u30b0\u30c3\u30e2\u30fc\u30cb\u30f3 \u5c71P\u2764\ufe0f\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u261d\ufe0f\n\u4f1a\u5831\u3001\u4eca\u5ea6\u306f\u30d4\u30b6\u4f5c\u308a\u3067\ud83d\ude2c\n\u5ca1\u7530\u5148\u8f29\u306b\u8a98\u3063\u3066\u8cb0\u3063\u3066\u3001\u30a2\u30fc\u30c8\u306e\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u306e\u306d\u3002\n\u50d5\u306f\u2026\u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u304b\u907f\u3051\u305f\u3044(\u7b11)\u4e0a\u5c64\u90e8\u3068\u306e\u4f1a\u8b70or\u671d\u307e\u3067\u751f\u30c6\u30ec\u30d3\u3002\u4ed5\u4e8b\u3060\u304b\u3089\u751f\u30c6\u30ec\u30d3\u261d\ufe0f\u677e\u5ca1\u4fee\u9020\u3055\u3093ww\u307e\u305f\u304a\u540d\u524d\u304c\u51fa\u305f\u306d\ud83d\ude2c\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","display_text_range":[0,151],"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[131,136]},{"text":"sound_tripper","indices":[137,151]}],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t48iyyoS2n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932384966406635520","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ree_na_chan","name":"\u9ece\u7f8e","id":215464736,"id_str":"215464736","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:47 +0000 2017","id":932386703079301126,"id_str":"932386703079301126","text":"\ud83c\udf55 x41 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:46 +0000 2017","id":932386700629864449,"id_str":"932386700629864449","text":"Holiday Gift Ideas \u2764 Recipes \ud83c\udf72 Pizza delivery \ud83c\udf55 https:\/\/t.co\/70xfVjTPJM","source":"\u003ca href=\"http:\/\/www.mailchimp.com\" rel=\"nofollow\"\u003eMailChimp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196703758,"id_str":"196703758","name":"Italian Centre Shop","screen_name":"ItalianCentre","location":"Edmonton, AB","url":"http:\/\/www.italiancentre.ca","description":"Where the language of love is great food. We love feeding you specialty European products, Deli & Bakery. Come step into Italy.","translator_type":"none","protected":false,"verified":false,"followers_count":6541,"friends_count":4003,"listed_count":141,"favourites_count":3892,"statuses_count":7161,"created_at":"Wed Sep 29 18:31:14 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590337084033933312\/7XGdsb4E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590337084033933312\/7XGdsb4E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196703758\/1405959805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/70xfVjTPJM","expanded_url":"http:\/\/eepurl.com\/c_3DZ9","display_url":"eepurl.com\/c_3DZ9","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:45 +0000 2017","id":932386692488744961,"id_str":"932386692488744961","text":"s\u00f3 queria uma pizza \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875142604551315462,"id_str":"875142604551315462","name":"Marri","screen_name":"gabii_marrii","location":"ZO","url":"https:\/\/www.instagram.com\/gabiimarrii\/","description":"arte dan\u00e7ante","translator_type":"none","protected":false,"verified":false,"followers_count":205,"friends_count":200,"listed_count":0,"favourites_count":1445,"statuses_count":804,"created_at":"Thu Jun 15 00:07:11 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910176721093185537\/GuH5Xd5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910176721093185537\/GuH5Xd5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875142604551315462\/1507840570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:36 +0000 2017","id":932386658699243521,"id_str":"932386658699243521","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2380511910,"id_str":"2380511910","name":"\u51ac\u83ef","screen_name":"touka10477","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":57,"listed_count":0,"favourites_count":779,"statuses_count":56,"created_at":"Sun Mar 09 14:03:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661308473397784576\/--UnEuzS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661308473397784576\/--UnEuzS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380511910\/1487597577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:36 +0000 2017","id":932386658359660551,"id_str":"932386658359660551","text":"\ud83c\udf55 x40 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:35 +0000 2017","id":932386652932247552,"id_str":"932386652932247552","text":"I\u2019m watching Nik\u2019s basketball game, but all I can really think about is the large pepperoni pizza I\u2019m going to buy\u2026 https:\/\/t.co\/fx7Kj4NNVs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29093534,"id_str":"29093534","name":"Mariah","screen_name":"mariahsutt","location":"Somewhere in DC","url":null,"description":"Future Madam President","translator_type":"none","protected":false,"verified":false,"followers_count":474,"friends_count":363,"listed_count":8,"favourites_count":10602,"statuses_count":26947,"created_at":"Sun Apr 05 23:30:46 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903750227496226817\/cEtNYTbk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903750227496226817\/cEtNYTbk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29093534\/1449543953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"I\u2019m watching Nik\u2019s basketball game, but all I can really think about is the large pepperoni pizza I\u2019m going to buy solely for myself after this.\ud83d\ude0b\ud83c\udf55","display_text_range":[0,146],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fx7Kj4NNVs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386652932247552","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:33 +0000 2017","id":932386644950319104,"id_str":"932386644950319104","text":"@silvana4687 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\uff5e\uff5e\u30d4\u30b6\u306e\u65e5\u304c\u3042\u308b\u3093\u3067\u3059\u306d\uff01\uff01\ud83c\udf55\u4eca\u65e5\u306f\u30d4\u30b6\u30d1\u30fc\u30c6\u30a3\u3067\u3059\u304b\uff1f\uff1f","display_text_range":[13,52],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932371041174745088,"in_reply_to_status_id_str":"932371041174745088","in_reply_to_user_id":1672814137,"in_reply_to_user_id_str":"1672814137","in_reply_to_screen_name":"silvana4687","user":{"id":2984318178,"id_str":"2984318178","name":"\u307d\u3093\u3058\u3085\u30fc\u3059\ud83c\udf79\u306e\u3080\uff1f","screen_name":"pomjuice__","location":null,"url":null,"description":"@silvana4687 @biribiristockin","translator_type":"none","protected":false,"verified":false,"followers_count":10,"friends_count":67,"listed_count":0,"favourites_count":1479,"statuses_count":3079,"created_at":"Thu Jan 15 16:21:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869212207925428224\/xPmrJUoy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869212207925428224\/xPmrJUoy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984318178\/1495962035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"silvana4687","name":"\u3057\u308b\u3070\u30fc\u306a@\u3069\u3089\u307e\u3064\u308b\u304e\u30fc","id":1672814137,"id_str":"1672814137","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:31 +0000 2017","id":932386637018947584,"id_str":"932386637018947584","text":"RT @shchimya: \ud83d\udc39\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\u30cf\u30e0\n\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83d\udc7f\ud83c\udf55\u4f1a\u8b70\u3060\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\ud83d\udc37\u3076\u3072\u30fc\n\n\ud83d\udc39\u4f1a\u8b70\u3067\u30d4\u30b6\u306e\u51fa\u524d\u305f\u306e\u3093\u3060\u305d\u3046\u3067\u3059\u30cf\u30e0\n\ud83d\udc30\u30d6\u30e9\u30c3\u30af\u793e\u9577\u304c\u3072\u3068\u308a\u98df\u3079\u3066\u308b\u3074\u3087\u3093\uff1f\n\n\u5927\u4f1a\u8b70\u5ba4\uff08\u30b6\u2606\u65c5\u884c\u8a18\u2163\u3000\u30ab\u30aa\u30b9\u30fb\u30b9\u30da\u30b7\u30e3\u30eb\uff09\nhttps:\/\/t.co\/0zMB286C2\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1637271468,"id_str":"1637271468","name":"\u82b1\u5ca1\u3000\u67ca","screen_name":"9hiiragi","location":"\u8133\u5185","url":"https:\/\/www.novelabo.com\/authors\/568","description":"\u30d3\u30fc\u30ba\u30ed\u30b0\u6587\u5eab\u604b\u611b\u5c0f\u8aac\u30b3\u30f3\u30c6\u30b9\u30c8\u300c\u30de\u30a4\u30da\u30fc\u30b9\u306a\u541b\u300d\u5968\u52b1\u8cde\u3002\u30ce\u30d9\u30e9\u30dc\u30b0\u30e9\u30f3\u30d7\u30ea\u7b2c4\u56de\u6700\u512a\u79c0\u5019\u88dc\u300c\u541b\u304c\u6b4c\u3092\u6b4c\u3046\u6642\u300d\u7b2c17\u56de\u300c\u6e29\u304b\u3044\u80cc\u4e2d\u300d\u6700\u512a\u79c0\u5019\u88dchttps:\/\/www.novelabo.com\/author\/568 https:\/\/kakuyomu.jp\/works\/1177354054880908643","translator_type":"none","protected":false,"verified":false,"followers_count":1126,"friends_count":1005,"listed_count":21,"favourites_count":14739,"statuses_count":30546,"created_at":"Thu Aug 01 06:31:03 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000223872107\/20776b255420dd78a9e9c48481524351_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000223872107\/20776b255420dd78a9e9c48481524351_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637271468\/1395793765","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:03:33 +0000 2017","id":932383874193154048,"id_str":"932383874193154048","text":"\ud83d\udc39\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\u30cf\u30e0\n\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83d\udc7f\ud83c\udf55\u4f1a\u8b70\u3060\n\u3000\ud83c\udf55\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\ud83d\udc37\u3076\u3072\u30fc\n\n\ud83d\udc39\u4f1a\u8b70\u3067\u30d4\u30b6\u306e\u51fa\u524d\u305f\u306e\u3093\u3060\u305d\u3046\u3067\u3059\u30cf\u30e0\n\ud83d\udc30\u30d6\u30e9\u30c3\u30af\u793e\u9577\u304c\u3072\u3068\u308a\u98df\u3079\u3066\u308b\u3074\u3087\u3093\uff1f\n\n\u5927\u4f1a\u8b70\u5ba4\uff08\u30b6\u2606\u65c5\u884c\u8a18\u2163\u3000\u30ab\u30aa\u30b9\u30fb\u30b9\u30da\u30b7\u30e3\u30eb\uff09\nhttps:\/\/t.co\/0zMB286C2D\n#narou","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102112981,"id_str":"102112981","name":"\u5c0f\u5bae\u767b\u5fd7\u5b50\uff20\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","screen_name":"shchimya","location":"\u795e\u5948\u5ddd\u770c","url":"http:\/\/mypage.syosetu.com\/705372\/","description":"\u4ee5\u524d\u306fyahoo\u30d6\u30ed\u30b0\u3067\u3001\u5c02\u9580\u306f\u6cd5\u5b66\u3001\u4ed6\u306b\u653f\u6cbb\u5b66\u3068\u7d4c\u6e08\u5b66\u304c\u5c11\u3057\u2026\u2026\u3067\u3057\u305f\u304c\u3001\u6700\u8fd1\u306f\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u5c0f\u8aac\u30e1\u30a4\u30f3\u306b\u79fb\u884c\u3057\u307e\u3057\u305f\u3002\u6570\u5e74\u3076\u308a\u306b\u51ac\u7720\u304b\u3089\u899a\u3081\u3001\u5f97\u4f53\u306e\u77e5\u308c\u306a\u3044\u6d3b\u52d5\uff08\u3068\u8a00\u3046\u307b\u3069\u5927\u8888\u88df\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\uff09\u3092\u518d\u958b\u3057\u3066\u3044\u307e\u3059\u3002\u73fe\u5728\u3001\u300c\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046\u300d\u304c\u6839\u57ce\u307f\u305f\u3044\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":2943,"friends_count":2626,"listed_count":33,"favourites_count":198,"statuses_count":21503,"created_at":"Tue Jan 05 17:18:45 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971167378\/Zwitter_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971167378\/Zwitter_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102112981\/1462110993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"narou","indices":[127,133]}],"urls":[{"url":"https:\/\/t.co\/0zMB286C2D","expanded_url":"https:\/\/ncode.syosetu.com\/n5067db\/72\/","display_url":"ncode.syosetu.com\/n5067db\/72\/","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shchimya","name":"\u5c0f\u5bae\u767b\u5fd7\u5b50\uff20\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","id":102112981,"id_str":"102112981","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:30 +0000 2017","id":932386632761794560,"id_str":"932386632761794560","text":"Lol. I think I ate to much pizza. \ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83d\ude0b\ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2781486675,"id_str":"2781486675","name":"\ud83c\udf57MONTE\ud83c\udf57","screen_name":"Biggboyy2017","location":null,"url":null,"description":"Im a young handsome dude who's addicted to playing sports, and video games. Just on Twitter for the fun of it. It's not my life. SIGN: LEO. \ud83d\udc2f","translator_type":"none","protected":false,"verified":false,"followers_count":212,"friends_count":290,"listed_count":4,"favourites_count":457,"statuses_count":520,"created_at":"Tue Sep 23 16:50:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877651704027762689\/jwj4rnxF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877651704027762689\/jwj4rnxF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781486675\/1489327932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:29 +0000 2017","id":932386626025619456,"id_str":"932386626025619456","text":"RT @Suwa_Ayaka: \u30c8\u30fc\u30af\u3067\u5927\u9808\u3067\u98df\u3079\u305f\u30d4\u30b6\u306e\u8a71\u3057\u3066\u305f\u3089\u3001\u7121\u6027\u306b\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u7d42\u308f\u308a\u306b2\u4eba\u3067\u884c\u3063\u3061\u3083\u3063\u305f\ud83c\udf55\u7b11\ud83d\udc93\u30dc\u30fc\u30ce\u3060\u3063\u305f\u3088\uff08\u7b11\uff09\u2764\ufe0f\n\u307e\u305f\u3048\u30fc\u3067\u3061\u3083\u3093\u3068\u4f55\u304b\u4e00\u7dd2\u306b\u3067\u304d\u308b\u3068\u3044\u3044\u306a\u30fc\uff01 https:\/\/t.co\/4hHy6ysoJi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16334367,"id_str":"16334367","name":"\u6728\u306e\u8449\u71c3\u6717\uff08\u3053\u306e\u306f\u3082\uff09","screen_name":"konohamoero","location":"East side of Tokyo, Japan \u6771\u4eac","url":"http:\/\/konohamoero.web.fc2.com\/","description":"\u30e9\u30b8\u30aa\u306e\u5b9f\u6cc1\u3068\u30ea\u30c4\u30a4\u30fc\u30c8\u591a\u3044\u3067\u3059\u3002\u4ed6\u306b\u672c\u3084\u97f3\u697d\u3084\u30b5\u30c3\u30ab\u30fc\u3084\u6620\u753b\u3084\u6587\u623f\u5177\u3084\u30ac\u30b8\u30a7\u30c3\u30c8\u3084\u30b2\u30fc\u30e0\u306a\u3069\u306a\u3069\u3002\u300c\u795e\u51fa\u9b3c\u6ca1\u306e\u30de\u30fc\u30b8\u30ca\u30eb\u30fb\u30de\u30f3\u300d\u3082\u3057\u304f\u306f\u300c\u30df\u30b9\u30bf\u30fc\u7aef\u3063\u5b50\u300d\u3002\u300c\u304a\u3082\u3057\u308d\u304b\u308f\u3044\u3044\u300d\u4eba\u304c\u597d\u304d\u3067\u3059\u3002\u300c\u3042\u306a\u305f\u306b\u306f\u7b11\u9854\u3067\u3044\u3066\u6b32\u3057\u3044\u306e\u3067\u3059\u300d\uff0f360x365. LRLR(Listen to the Radio,Love Radio)","translator_type":"none","protected":false,"verified":false,"followers_count":1374,"friends_count":1571,"listed_count":55,"favourites_count":487,"statuses_count":90334,"created_at":"Wed Sep 17 18:53:11 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/79513050\/room02.PNG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/79513050\/room02.PNG","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/843378560144363521\/X8PUwT2c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/843378560144363521\/X8PUwT2c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16334367\/1398766301","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 13:37:13 +0000 2017","id":932241353865535488,"id_str":"932241353865535488","text":"\u30c8\u30fc\u30af\u3067\u5927\u9808\u3067\u98df\u3079\u305f\u30d4\u30b6\u306e\u8a71\u3057\u3066\u305f\u3089\u3001\u7121\u6027\u306b\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u7d42\u308f\u308a\u306b2\u4eba\u3067\u884c\u3063\u3061\u3083\u3063\u305f\ud83c\udf55\u7b11\ud83d\udc93\u30dc\u30fc\u30ce\u3060\u3063\u305f\u3088\uff08\u7b11\uff09\u2764\ufe0f\n\u307e\u305f\u3048\u30fc\u3067\u3061\u3083\u3093\u3068\u4f55\u304b\u4e00\u7dd2\u306b\u3067\u304d\u308b\u3068\u3044\u3044\u306a\u30fc\uff01 https:\/\/t.co\/4hHy6ysoJi","display_text_range":[0,85],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232229151,"id_str":"232229151","name":"\u8acf\u8a2a\u5f69\u82b1","screen_name":"Suwa_Ayaka","location":"\u6771\u4eac","url":null,"description":"\u30a2\u30fc\u30c4\u30d3\u30b8\u30e7\u30f3\u6240\u5c5e\u3001\u58f0\u512a\u306e\u8acf\u8a2a\u5f69\u82b1\u3067\u3059\uff01\u5730\u5143\u306f\u611b\u77e5\u770c\u3060\u3063\u305f\u308a\u3057\u307e\u3059(^\u03c9^) \u307e\u3060\u307e\u3060\u672a\u719f\u8005\u3067\u3059\u304c\u3001\u5fdc\u63f4\u3057\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\uff01\uff01 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059**","translator_type":"none","protected":false,"verified":false,"followers_count":88065,"friends_count":552,"listed_count":3470,"favourites_count":1176,"statuses_count":12393,"created_at":"Thu Dec 30 15:51:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923760749725474816\/xQD9YyLw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923760749725474816\/xQD9YyLw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232229151\/1428344676","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":8,"retweet_count":218,"favorite_count":701,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}},{"id":932241345019645953,"id_str":"932241345019645953","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Suwa_Ayaka","name":"\u8acf\u8a2a\u5f69\u82b1","id":232229151,"id_str":"232229151","indices":[3,14]}],"symbols":[],"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"}]},"extended_entities":{"media":[{"id":932241345015570432,"id_str":"932241345015570432","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGaV4AAU8hy.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1799,"h":1352,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"},{"id":932241345019645953,"id_str":"932241345019645953","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO_8kGbUEAE26PG.jpg","url":"https:\/\/t.co\/4hHy6ysoJi","display_url":"pic.twitter.com\/4hHy6ysoJi","expanded_url":"https:\/\/twitter.com\/Suwa_Ayaka\/status\/932241353865535488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":960,"resize":"fit"}},"source_status_id":932241353865535488,"source_status_id_str":"932241353865535488","source_user_id":232229151,"source_user_id_str":"232229151"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:25 +0000 2017","id":932386611622330368,"id_str":"932386611622330368","text":"RT @SensiblePost: What I need now: \n\n1. Bed. \ud83d\udce6\ud83d\udc4f\ud83d\udcab\n\n2. Aircon. \ud83d\udcb3\ud83d\udca8\n\n3. Fries. \ud83c\udf5f\n\n4. Pizza. \ud83c\udf55\n\n5. Fast Internet Connection. \ud83d\udcf6\ud83d\udcbb\ud83d\udcf1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784693631793836032,"id_str":"784693631793836032","name":"ft","screen_name":"nurfitrihelmi","location":null,"url":"http:\/\/instagram.com\/nr.fitrihelmi","description":"am selene\ud83c\udf12","translator_type":"none","protected":false,"verified":false,"followers_count":156,"friends_count":155,"listed_count":0,"favourites_count":442,"statuses_count":1782,"created_at":"Sat Oct 08 09:55:15 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929518063816392704\/cWutQ4WK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929518063816392704\/cWutQ4WK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784693631793836032\/1506051263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 11:02:03 +0000 2017","id":931839914894692354,"id_str":"931839914894692354","text":"What I need now: \n\n1. Bed. \ud83d\udce6\ud83d\udc4f\ud83d\udcab\n\n2. Aircon. \ud83d\udcb3\ud83d\udca8\n\n3. Fries. \ud83c\udf5f\n\n4. Pizza. \ud83c\udf55\n\n5. Fast Internet Connection. \ud83d\udcf6\ud83d\udcbb\ud83d\udcf1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2609001092,"id_str":"2609001092","name":"SENSIBLE POST","screen_name":"SensiblePost","location":"United Kingdom","url":null,"description":"http:\/\/instagram.com\/SensiblePost600","translator_type":"none","protected":false,"verified":false,"followers_count":286043,"friends_count":264875,"listed_count":399,"favourites_count":7,"statuses_count":1961,"created_at":"Mon Jul 07 05:43:29 +0000 2014","utc_offset":-25200,"time_zone":"Chihuahua","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518226938448457728\/ED_OuHwP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518226938448457728\/ED_OuHwP.jpeg","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/748346855784755200\/EawPPbX6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/748346855784755200\/EawPPbX6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2609001092\/1484617668","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":134,"favorite_count":149,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SensiblePost","name":"SENSIBLE POST","id":2609001092,"id_str":"2609001092","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:24 +0000 2017","id":932386605058461697,"id_str":"932386605058461697","text":"\ud83c\udf55 x39 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:23 +0000 2017","id":932386600599748608,"id_str":"932386600599748608","text":"\u4eca\u65e5\u306f\u300c\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u300d\u3067\u3059\u304c\u3001\u3082\u3046\u4e00\u3064\u4eca\u5e74\u6c7a\u307e\u3063\u305f\u8a18\u5ff5\u65e5\n\n \ud83c\udf8a\u6bdb\u5e03\u306e\u65e5\ud83c\udf8a\n\n\u3067\u3059\uff01\uff01\uff01\uff01\uff01\u5f53\u5e97\u306f\u30d4\u30b6\u306e\u304a\u53d6\u308a\u6271\u3044\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u304c\u3001\u304a\u3072\u3068\u308a\u3055\u307e\u70ac\u71f5\u306b\u3082\u306a\u308b\u6bdb\u5e03\u304c\u3054\u3056\u3044\u307e\u3059(\u0e07 \u2022\u0300_\u2022\u0301)\u0e07\u4eca\u65e5\u306e\u3088\u3046\u306a\u5bd2\u3055\u306e\u6642\u306b\u5927\u6d3b\u2026 https:\/\/t.co\/vgO2K43hU3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137587404,"id_str":"137587404","name":"\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\u300a\u516c\u5f0f\u300b","screen_name":"ts_nakamura","location":"\u795e\u5948\u5ddd\u770c\u6a2a\u6d5c\u5e02","url":"http:\/\/www.rakuten.co.jp\/ts-nakamura\/","description":"\u6a2a\u6d5c\u306b\u3042\u308b\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\ud83d\ude9a\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u304a\u5e97\u306e\u4e8b\u304b\u3089\u304a\u5e97\u306b\u5168\u304f\u95a2\u4fc2\u306a\u3044\u4e8b\u307e\u3067\u3086\u308b\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u7686\u3055\u307e\u306e\u30d5\u30a9\u30ed\u30fc\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\ud83d\udc9e\u203b\u5546\u54c1\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306f\u304a\u53d7\u3051\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u5b9f\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002\u203b\u753b\u50cf\u8ee2\u8f09\u306f\u304a\u65ad\u308a\u3057\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":162,"friends_count":112,"listed_count":5,"favourites_count":174,"statuses_count":1767,"created_at":"Tue Apr 27 05:03:59 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137587404\/1493256965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":928209771185893377,"quoted_status_id_str":"928209771185893377","quoted_status":{"created_at":"Wed Nov 08 10:37:09 +0000 2017","id":928209771185893377,"id_str":"928209771185893377","text":"\u3010\u5965\u69d8\u30aa\u30b9\u30b9\u30e1\u3011\n\u30a6\u30a9\u30fc\u30e0\u6bdb\u5e03 \u3061\u3087\u3063\u3068\u306d\u30fc\u308b DC24V(\u00a59936 \u7a0e\u8fbc)\n\n\u51b7\u3048\u6027\u306a\u30c9\u30e9\u30a4\u30d0\u30fc\u3055\u3093\u306b\u30aa\u30b9\u30b9\u30e1\uff01\u5bdd\u888b\u30bf\u30a4\u30d7\u3067\u4fdd\u6e29\u6027\u629c\u7fa4\u306e\u6bdb\u5e03\u3067\u3059\u3002\u30b5\u30fc\u30e2\u30d2\u30fc\u30bf\u30fc\u3067\u8db3\u5143\u3092\u3057\u3063\u304b\u308a\u6e29\u3081\u3066\u304f\u308c\u307e\u3059\uff01\n(24V\u5c02\u7528\u3067\u3059)\u2026 https:\/\/t.co\/sVyVztfxwz","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137587404,"id_str":"137587404","name":"\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\u300a\u516c\u5f0f\u300b","screen_name":"ts_nakamura","location":"\u795e\u5948\u5ddd\u770c\u6a2a\u6d5c\u5e02","url":"http:\/\/www.rakuten.co.jp\/ts-nakamura\/","description":"\u6a2a\u6d5c\u306b\u3042\u308b\u30c8\u30e9\u30c3\u30af\u30b7\u30e7\u30c3\u30d7\u306a\u304b\u3080\u3089\ud83d\ude9a\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u304a\u5e97\u306e\u4e8b\u304b\u3089\u304a\u5e97\u306b\u5168\u304f\u95a2\u4fc2\u306a\u3044\u4e8b\u307e\u3067\u3086\u308b\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u7686\u3055\u307e\u306e\u30d5\u30a9\u30ed\u30fc\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\ud83d\udc9e\u203b\u5546\u54c1\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306f\u304a\u53d7\u3051\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u5b9f\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002\u203b\u753b\u50cf\u8ee2\u8f09\u306f\u304a\u65ad\u308a\u3057\u3066\u3044\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":162,"friends_count":112,"listed_count":5,"favourites_count":174,"statuses_count":1767,"created_at":"Tue Apr 27 05:03:59 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876326445882105856\/tbb2CFlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137587404\/1493256965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u3010\u5965\u69d8\u30aa\u30b9\u30b9\u30e1\u3011\n\u30a6\u30a9\u30fc\u30e0\u6bdb\u5e03 \u3061\u3087\u3063\u3068\u306d\u30fc\u308b DC24V(\u00a59936 \u7a0e\u8fbc)\n\n\u51b7\u3048\u6027\u306a\u30c9\u30e9\u30a4\u30d0\u30fc\u3055\u3093\u306b\u30aa\u30b9\u30b9\u30e1\uff01\u5bdd\u888b\u30bf\u30a4\u30d7\u3067\u4fdd\u6e29\u6027\u629c\u7fa4\u306e\u6bdb\u5e03\u3067\u3059\u3002\u30b5\u30fc\u30e2\u30d2\u30fc\u30bf\u30fc\u3067\u8db3\u5143\u3092\u3057\u3063\u304b\u308a\u6e29\u3081\u3066\u304f\u308c\u307e\u3059\uff01\n(24V\u5c02\u7528\u3067\u3059)\n\nhttps:\/\/t.co\/m0WzHZqIoG https:\/\/t.co\/CnkaJJKgSf","display_text_range":[0,133],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m0WzHZqIoG","expanded_url":"https:\/\/item.rakuten.co.jp\/ts-nakamura\/x-44\/","display_url":"item.rakuten.co.jp\/ts-nakamura\/x-\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[],"media":[{"id":928209763246080000,"id_str":"928209763246080000","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","url":"https:\/\/t.co\/CnkaJJKgSf","display_url":"pic.twitter.com\/CnkaJJKgSf","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":928209763246080000,"id_str":"928209763246080000","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOGp3J9VAAAQQYc.jpg","url":"https:\/\/t.co\/CnkaJJKgSf","display_url":"pic.twitter.com\/CnkaJJKgSf","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sVyVztfxwz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/928209771185893377","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"extended_tweet":{"full_text":"\u4eca\u65e5\u306f\u300c\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u300d\u3067\u3059\u304c\u3001\u3082\u3046\u4e00\u3064\u4eca\u5e74\u6c7a\u307e\u3063\u305f\u8a18\u5ff5\u65e5\n\n \ud83c\udf8a\u6bdb\u5e03\u306e\u65e5\ud83c\udf8a\n\n\u3067\u3059\uff01\uff01\uff01\uff01\uff01\u5f53\u5e97\u306f\u30d4\u30b6\u306e\u304a\u53d6\u308a\u6271\u3044\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u304c\u3001\u304a\u3072\u3068\u308a\u3055\u307e\u70ac\u71f5\u306b\u3082\u306a\u308b\u6bdb\u5e03\u304c\u3054\u3056\u3044\u307e\u3059(\u0e07 \u2022\u0300_\u2022\u0301)\u0e07\u4eca\u65e5\u306e\u3088\u3046\u306a\u5bd2\u3055\u306e\u6642\u306b\u5927\u6d3b\u8e8d\uff01\uff01\uff01\u9811\u5f35\u308b\u7686\u3055\u307e\u3092\u6696\u304b\u304f\u5305\u307f\u8fbc\u307f\u307e\u3059\uff01\uff01\uff01 https:\/\/t.co\/216X4Rs4SN","display_text_range":[0,138],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/216X4Rs4SN","expanded_url":"https:\/\/twitter.com\/ts_nakamura\/status\/928209771185893377","display_url":"twitter.com\/ts_nakamura\/st\u2026","indices":[139,162]}],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vgO2K43hU3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386600599748608","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:23 +0000 2017","id":932386600423710720,"id_str":"932386600423710720","text":"Muito boa noite! \ud83d\udc8f\ud83c\udf55\ud83c\udf41\ud83c\udf6b\ud83d\udca4\ud83c\udf19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302571987,"id_str":"2302571987","name":"Jully Schaurich \u00ae","screen_name":"JullySchaurich","location":"Minas Gerais, Brasil ","url":null,"description":"N\u00e3o posso reclamar da vida que vou levando, tenho tudo que quero e o que faltar t\u00f4 conquistando!\u270c\ud83c\udffb\ud83d\ude01\ud83c\udf40\u2764\ufe0f \ud83d\udc69\ud83c\udffb\ud83d\udc68\ud83c\udffb\ud83d\udc66\ud83c\udffb\ud83d\udc76\ud83c\udffb","translator_type":"none","protected":false,"verified":false,"followers_count":20,"friends_count":184,"listed_count":0,"favourites_count":1572,"statuses_count":8631,"created_at":"Sat Jan 25 01:18:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932226654210019329\/QCPbQpST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932226654210019329\/QCPbQpST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302571987\/1510093965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:20 +0000 2017","id":932386587492700160,"id_str":"932386587492700160","text":"To numa pizzaria encima da boombar \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude0d\ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":863235451313942528,"id_str":"863235451313942528","name":"Julia Ramos","screen_name":"Uma_vitoriaa","location":null,"url":"https:\/\/juliaramos102.sarahah.com\/","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":38,"friends_count":160,"listed_count":0,"favourites_count":122,"statuses_count":391,"created_at":"Sat May 13 03:32:24 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/920103074139705344\/9TQ6CVGU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/920103074139705344\/9TQ6CVGU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"66a72011ed6d4853","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/66a72011ed6d4853.json","place_type":"city","name":"Gravata\u00ed","full_name":"Gravata\u00ed, Brasil","country_code":"BR","country":"Brazil","bounding_box":{"type":"Polygon","coordinates":[[[-51.101365,-30.015653],[-51.101365,-29.765763],[-50.811151,-29.765763],[-50.811151,-30.015653]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:19 +0000 2017","id":932386585051463681,"id_str":"932386585051463681","text":"\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3063\u3066\u898b\u3066\u5f53\u7136\u306e\u5982\u304f\u30d4\u30b6\u98df\u3079\u305f\u304f\u306a\u3063\u305f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4831930791,"id_str":"4831930791","name":"\u308a\u3044","screen_name":"ree_1116","location":"\u5317\u306e\u65b9\u3002","url":"http:\/\/privatter.net\/u\/ree_1116","description":"\u6210\u4eba\u6e08\u3002\u30eb\u30ed\u30fc\u306b\u5922\u4e2d\u3002\u30ed\u30fc\u53f3\u306a\u3089\u306a\u3093\u3067\u3082\u597d\u304d\u3002\u672c\u8a8c\u6d3e\u3002\u65e5\u5e38\u3068\u304b\u597d\u304d\u306a\u3053\u3068\u3092\u597d\u304d\u52dd\u624b\u306b\u545f\u3044\u3066\u307e\u3059\u3002 \u7d20\u6575\u30a2\u30a4\u30b3\u30f3\u306f\u304b\u3089\u3055\u3061\u3055\u3093\ud83d\udc95\u3053\u305d\u308a\u3068\u304a\u8a71\u3057\u7db4\u3063\u3066\u307e\u3059\u2026http:\/\/pixiv.me\/ree11161116 \u30ea\u30b9\u30a4\u30f3\u7b49\u3005\u306e\u3053\u3068\u306f\u3053\u3061\u3089\u306b\u3066\u2192http:\/\/privatter.net\/p\/1293798","translator_type":"none","protected":false,"verified":false,"followers_count":221,"friends_count":110,"listed_count":4,"favourites_count":5456,"statuses_count":35578,"created_at":"Thu Jan 21 07:08:55 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925385022781001728\/usLHM3WU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925385022781001728\/usLHM3WU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4831930791\/1496213353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:17 +0000 2017","id":932386577883340800,"id_str":"932386577883340800","text":"RT @daniellachavezc: Cuando te sorprenden comiendo Pizza \ud83c\udf55\ud83d\ude31\ud83d\ude02 \n\n Instagram @DaniellaChavezOfficial https:\/\/t.co\/JIAbePFxHs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406046763,"id_str":"406046763","name":"\u2606T\u2606","screen_name":"t_t_t72","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1596,"friends_count":2550,"listed_count":251,"favourites_count":199016,"statuses_count":231419,"created_at":"Sun Nov 06 05:18:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602611543583240192\/WuGz2mXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602611543583240192\/WuGz2mXC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 10 00:52:57 +0000 2017","id":928787528026607619,"id_str":"928787528026607619","text":"Cuando te sorprenden comiendo Pizza \ud83c\udf55\ud83d\ude31\ud83d\ude02 \n\n Instagram @DaniellaChavezOfficial https:\/\/t.co\/JIAbePFxHs","display_text_range":[0,76],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284570882,"id_str":"284570882","name":"Daniella Chavez","screen_name":"daniellachavezc","location":"Chile","url":"http:\/\/www.daniellachavez.com","description":"3 Portadas Playboy, ex Conductora de Televisi\u00f3n en #PonteFit #TDN Televisa Deportes, CEA Televisa M\u00e9xico,Actriz: http:\/\/www.instagram.com\/DaniellaChavezOfficial","translator_type":"none","protected":false,"verified":true,"followers_count":506445,"friends_count":1931,"listed_count":1081,"favourites_count":279256,"statuses_count":15928,"created_at":"Tue Apr 19 14:48:43 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597150804965871616\/Wo5HjDST.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597150804965871616\/Wo5HjDST.png","profile_background_tile":true,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930563948855914497\/wWf8S6hR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930563948855914497\/wWf8S6hR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284570882\/1510698682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00c4b64e7affea25","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c4b64e7affea25.json","place_type":"city","name":"Las Condes","full_name":"Las Condes, Chile","country_code":"CL","country":"Chile","bounding_box":{"type":"Polygon","coordinates":[[[-70.608694,-33.486182],[-70.608694,-33.364619],[-70.429141,-33.364619],[-70.429141,-33.486182]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":219,"retweet_count":484,"favorite_count":5872,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":928787446514487297,"id_str":"928787446514487297","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","url":"https:\/\/t.co\/JIAbePFxHs","display_url":"pic.twitter.com\/JIAbePFxHs","expanded_url":"https:\/\/twitter.com\/daniellachavezc\/status\/928787528026607619\/video\/1","type":"photo","sizes":{"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":928787446514487297,"id_str":"928787446514487297","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/928787446514487297\/pu\/img\/S5eYd_AooCh6KWW8.jpg","url":"https:\/\/t.co\/JIAbePFxHs","display_url":"pic.twitter.com\/JIAbePFxHs","expanded_url":"https:\/\/twitter.com\/daniellachavezc\/status\/928787528026607619\/video\/1","type":"video","sizes":{"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}},"video_info":{"aspect_ratio":[30,53],"duration_millis":4067,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/vid\/362x640\/CjbBRWX0Er4ERRuC.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/vid\/180x320\/XvZq0k9mtCp9jtkn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/928787446514487297\/pu\/pl\/3CUjky8cO3NqaUjA.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"daniellachavezc","name":"Daniella Chavez","id":284570882,"id_str":"284570882","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:16 +0000 2017","id":932386573265637376,"id_str":"932386573265637376","text":"RT @arian_FOLLOW: Follow ME and everyone who RETWEETS and FAV this \u2705\ud83c\udf55\n#1DDRIVE\u2705\ud83c\udf55\n#TRAPADRIVE\u2705\ud83c\udf55\n#NEWGAINS\u2705\ud83c\udf55\nTURN MY NOTIFICATION ON \n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3078540509,"id_str":"3078540509","name":"HIGHEST \u2795","screen_name":"Sark_son","location":"WORLD ","url":"http:\/\/highestalbum.com","description":"the love for SarkCess music is deep | like my FB page : @son_of_sarkodie | @Sarkodie #Rapgod | IG: augustime | FB: Nana Augustine | SC: paugustine37","translator_type":"none","protected":false,"verified":false,"followers_count":8153,"friends_count":2788,"listed_count":20,"favourites_count":10562,"statuses_count":56702,"created_at":"Sun Mar 08 01:37:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898933781050077184\/LL3rFLSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898933781050077184\/LL3rFLSL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3078540509\/1503157613","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:30:04 +0000 2017","id":932330151005876225,"id_str":"932330151005876225","text":"Follow ME and everyone who RETWEETS and FAV this \u2705\ud83c\udf55\n#1DDRIVE\u2705\ud83c\udf55\n#TRAPADRIVE\u2705\ud83c\udf55\n#NEWGAINS\u2705\ud83c\udf55\nTURN MY NOTIFICATION ON \n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55","source":"\u003ca href=\"https:\/\/statusbrew.com\" rel=\"nofollow\"\u003eStatusbrew\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153773270,"id_str":"3153773270","name":"Follow Help\u2734\ufe0f","screen_name":"arian_FOLLOW","location":"TURN ON MY NOTIFICATION","url":null,"description":"TURN MY NOTIFICATIONS ON \ud83d\udd1b for daily gain tweets\n STAY ACTIVE\ud83c\udfc3to GAIN #TheGainTeam #GabberHubDotComGain #1DDrive","translator_type":"none","protected":false,"verified":false,"followers_count":18161,"friends_count":8508,"listed_count":132,"favourites_count":15903,"statuses_count":3091,"created_at":"Mon Apr 13 22:07:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923103360462532608\/ZUQB3z0o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923103360462532608\/ZUQB3z0o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153773270\/1511048165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":4,"retweet_count":50,"favorite_count":123,"entities":{"hashtags":[{"text":"1DDRIVE","indices":[52,60]},{"text":"TRAPADRIVE","indices":[63,74]},{"text":"NEWGAINS","indices":[77,86]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1DDRIVE","indices":[70,78]},{"text":"TRAPADRIVE","indices":[81,92]},{"text":"NEWGAINS","indices":[95,104]}],"urls":[],"user_mentions":[{"screen_name":"arian_FOLLOW","name":"Follow Help\u2734\ufe0f","id":3153773270,"id_str":"3153773270","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:16 +0000 2017","id":932386571248160769,"id_str":"932386571248160769","text":"\ud83c\udf55 x38 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:15 +0000 2017","id":932386569616363520,"id_str":"932386569616363520","text":"RT @JUN_WADS: \u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1935629022,"id_str":"1935629022","name":"\u3055\u304f\u3089","screen_name":"koiseyo0422","location":null,"url":null,"description":"\u3072\u3068\u308a\u306e\u6642\u9593\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059 \u3072\u3068\u308a\u306e\u6642\u9593\u3067\u5143\u6c17\u306b\u306a\u3063\u3066\u307e\u3059 \u8a00\u8449\u306e\u66b4\u529b\u306b\u8ca0\u3051\u306a\u3044\u3088\u3046\u306b\u306a\u308a\u305f\u3044 \u8ab0\u304b\u306e\u671f\u5f85\u306b\u306f\u5fdc\u3048\u3089\u308c\u306a\u3044 \u597d\u304d\u306a\u3082\u306e\u3092\u597d\u304d\u306b\u597d\u304d\u3067\u3044\u305f\u3044","translator_type":"none","protected":false,"verified":false,"followers_count":1386,"friends_count":1146,"listed_count":63,"favourites_count":108319,"statuses_count":488904,"created_at":"Fri Oct 04 22:27:17 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433821542221242368\/QZ5yngsa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433821542221242368\/QZ5yngsa.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/764489482590576640\/5qvcNZhE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/764489482590576640\/5qvcNZhE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1935629022\/1472844349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:12:37 +0000 2017","id":932386157773570049,"id_str":"932386157773570049","text":"\u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","display_text_range":[0,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350712503,"id_str":"350712503","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","screen_name":"JUN_WADS","location":null,"url":"http:\/\/otoloop.com","description":"\u30aa\u30c8\u30eb\u30fc\u30d7\u306e\u30c9\u30e9\u30e0&\u30b3\u30fc\u30e9\u30b9\u3001\u30cb\u30b8\u30de\u30b9\u25fc\ufe0e\u6700\u65b0\u30ea\u30ea\u30c3\u30af\u30e0\u30fc\u30d3\u30fc\u3010\u30ea\u30cf\u30ed\u3011https:\/\/youtu.be\/tqAXgYBZ_Y8\u25fc\ufe0eMV\u3010\u3053\u3068\u3070\u3092\u77e5\u308a\u305f\u3044\u3011https:\/\/youtu.be\/pU7k2raunCo\u3010\u30a2\u30de\u30ce\u30b8\u30e3\u30af\u306e\u72ec\u767d\u3011https:\/\/youtu.be\/2kEpbSRUdVA","translator_type":"none","protected":false,"verified":false,"followers_count":9587,"friends_count":10541,"listed_count":59,"favourites_count":28740,"statuses_count":15646,"created_at":"Mon Aug 08 06:02:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350712503\/1387300819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[43,50]}],"urls":[],"user_mentions":[{"screen_name":"JUN_WADS","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","id":350712503,"id_str":"350712503","indices":[3,12]}],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}},"source_status_id":932386157773570049,"source_status_id_str":"932386157773570049","source_user_id":350712503,"source_user_id_str":"350712503"}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}},"source_status_id":932386157773570049,"source_status_id_str":"932386157773570049","source_user_id":350712503,"source_user_id_str":"350712503"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:14 +0000 2017","id":932386563744501760,"id_str":"932386563744501760","text":"Football Sunday fat kid mozzarella waffle pizza! \ud83c\udf55 https:\/\/t.co\/2PRxF4rFFn https:\/\/t.co\/hL2VF5SGsI","display_text_range":[0,74],"source":"\u003ca href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14316456,"id_str":"14316456","name":"Mark Perez","screen_name":"faceofbass","location":"Aurora, Colorado","url":"http:\/\/www.faceofbass.com","description":"A little bit of this, a little bit of that. Bassist, Podcaster and sometimes even a decent DJ. Championing all that is Colorado","translator_type":"none","protected":false,"verified":false,"followers_count":1821,"friends_count":1994,"listed_count":99,"favourites_count":2018,"statuses_count":17341,"created_at":"Sun Apr 06 17:08:21 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110684","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D66A29","profile_text_color":"110684","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14316456\/1420515214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2PRxF4rFFn","expanded_url":"http:\/\/ift.tt\/2zW8hwI","display_url":"ift.tt\/2zW8hwI","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":932386561479634946,"id_str":"932386561479634946","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","url":"https:\/\/t.co\/hL2VF5SGsI","display_url":"pic.twitter.com\/hL2VF5SGsI","expanded_url":"https:\/\/twitter.com\/faceofbass\/status\/932386563744501760\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386561479634946,"id_str":"932386561479634946","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAoz5XcAIvbyQ.jpg","url":"https:\/\/t.co\/hL2VF5SGsI","display_url":"pic.twitter.com\/hL2VF5SGsI","expanded_url":"https:\/\/twitter.com\/faceofbass\/status\/932386563744501760\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:11 +0000 2017","id":932386552436604928,"id_str":"932386552436604928","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910071524991762433,"id_str":"910071524991762433","name":"\u307f\u304d\u307e\u308b","screen_name":"mikimaru1122","location":null,"url":"https:\/\/ameblo.jp\/mikimaru1122","description":"Instagram\u30e1\u30a4\u30f3\u3067\u3059\u304cTwitter\u3082\u306f\u3058\u3081\u3066\u307f\u307e\u3057\u305f\ud83d\ude0a\u2728\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059(^^)\u61f8\u8cde\u3001\u30e2\u30cb\u30bf\u30fc\u7cfb\u306b\u306f\u307e\u3063\u3066\u307e\u3059\uff01\u540c\u3058\u8da3\u5473\u306e\u304b\u305f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2764\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":106,"friends_count":329,"listed_count":1,"favourites_count":876,"statuses_count":897,"created_at":"Tue Sep 19 09:22:14 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922058688860364800\/2KUuGVT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922058688860364800\/2KUuGVT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910071524991762433\/1506925834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386549047574528,"id_str":"932386549047574528","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420527430,"id_str":"2420527430","name":"FooMa@\u3046\u308c\u3057\u30fc\u3069\u306e\u6c11","screen_name":"FooMa5648","location":"\u6e58\u5357\u3042\u305f\u308a","url":"https:\/\/plus.google.com\/collection\/csybaB","description":"\u3069\u3053\u306b\u3067\u3082\u3044\u308b\u3088\u3046\u306a\u7a2e\u7530\u68a8\u6c99\u3055\u3093\u306e\u30d5\u30a1\u30f3\u3067\u3059 \u3086\u3063\u304f\u308a\u7126\u3089\u305a\u5fdc\u63f4\u3057\u3066\u3044\u304d\u305f\u3044\u306a \/\u300c\u304d\u3089\u304d\u3089\u2605\u30b9\u30bf\u30c7\u30a3\u30fc\uff5e\u7d76\u5bfe\u5408\u683c\u5ba3\u8a00\uff5e\u300d(\u8457:\u83ef\u3005\u3064\u307c\u307f)\u306f\u307e\u3093\u304c\u30bf\u30a4\u30e0\u304d\u3089\u3089\u3067\u597d\u8a55\u9023\u8f09\u4e2d\uff01\/\u30d7\u30ea\u30f3\u30bb\u30b9\u30ca\u30a4\u30c8(\u304a\u307e\u3058\u306a\u3044\u306e\u76f8\u624b\/\u30d7\u30ea\u30b3\u30cd\u8349\u91ce\u306d\u6d3b\u52d5\u968a)\/\u7279\u52d9\u6a5f\u95a2\u6240\u5c5e\u306e\u53ec\u559a\u5e2b(FEH)","translator_type":"none","protected":false,"verified":false,"followers_count":1405,"friends_count":1561,"listed_count":49,"favourites_count":29899,"statuses_count":132094,"created_at":"Mon Mar 31 13:17:33 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9966CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492688343344246788\/RHnvSOYD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492688343344246788\/RHnvSOYD.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924307711000420352\/Q7ahooQn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924307711000420352\/Q7ahooQn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2420527430\/1476088105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386547327836160,"id_str":"932386547327836160","text":"follow,RT,\u30a4\u30a4\u306d\ud83c\udfb5\u3042\u308a\u304c\u3068\u3046\u305e\u306aww\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u3068\u3001\u3044\u3046\u3053\u3068\u3067\uff1f\ud83d\ude05\u3044\u3063\u3066\u304d\u307e\u3059\u30fc\ud83c\udfc3\ud83d\udca6\ud83d\udc4b\n#\u30d4\u30b6\u306e\u65e5 https:\/\/t.co\/EZ9SzBm0Ie","display_text_range":[0,57],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3445491914,"id_str":"3445491914","name":"\u3086\u304d\u3072\u3068","screen_name":"yukihito1967","location":"Japan-Matuyama","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\uff5e\uff01\ud83d\ude4c\u3044\u305f\u3063\u3066\u5e73\u51e1\u306a\u4eba\u3060\u3051\u3069\u3082\u3088\u308d\u3057\u304f\u305e\u306a\u3082\u3057~\ud83d\udc50Nice to meet\u3000you\uff01plz\u3000follow\u3000Me\u270c\ud83d\ude09My faves\ud83d\udc31\ud83d\udc36\ud83d\udc30\ud83d\udc39\ud83d\udc2c\ud83d\udc25\ud83c\udfa5\ud83c\udfae\ud83d\ude99\u26fa\u26be\ud83c\udfb3\ud83c\udf6b\ud83c\udfa7\ud83c\udfbc\u2668","translator_type":"none","protected":false,"verified":false,"followers_count":4735,"friends_count":4535,"listed_count":42,"favourites_count":51726,"statuses_count":12383,"created_at":"Fri Sep 04 07:07:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/855636912127713284\/_PmAudv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/855636912127713284\/_PmAudv3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3445491914\/1507560384","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[52,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386525865639936,"id_str":"932386525865639936","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","url":"https:\/\/t.co\/EZ9SzBm0Ie","display_url":"pic.twitter.com\/EZ9SzBm0Ie","expanded_url":"https:\/\/twitter.com\/yukihito1967\/status\/932386547327836160\/photo\/1","type":"photo","sizes":{"large":{"w":731,"h":321,"resize":"fit"},"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":731,"h":321,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386525865639936,"id_str":"932386525865639936","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAmvOVAAAHQTr.jpg","url":"https:\/\/t.co\/EZ9SzBm0Ie","display_url":"pic.twitter.com\/EZ9SzBm0Ie","expanded_url":"https:\/\/twitter.com\/yukihito1967\/status\/932386547327836160\/photo\/1","type":"photo","sizes":{"large":{"w":731,"h":321,"resize":"fit"},"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":731,"h":321,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386546447089664,"id_str":"932386546447089664","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133205524,"id_str":"133205524","name":"\u30a4\u30cc\u597d\u304d\u306a\u30cd\u30b3\u578b","screen_name":"chamcham00","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":49,"friends_count":270,"listed_count":0,"favourites_count":10,"statuses_count":3834,"created_at":"Thu Apr 15 08:10:27 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:10 +0000 2017","id":932386545511944192,"id_str":"932386545511944192","text":"S\u00f3 uma \ud83c\udf55 mesmo meu amigo rs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":837075163933978624,"id_str":"837075163933978624","name":"Lucas Nascimento! \ud83d\ude0e","screen_name":"metebala06","location":"seu novinho rs ","url":null,"description":"com Deus t\u00f4 sempre andando \ud83d\ude4c\ud83c\udffd ..","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":238,"listed_count":0,"favourites_count":2704,"statuses_count":3617,"created_at":"Wed Mar 01 23:00:45 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932336451248943104\/sV3vt9j3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932336451248943104\/sV3vt9j3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/837075163933978624\/1503027545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:08 +0000 2017","id":932386538490613760,"id_str":"932386538490613760","text":"\ud83c\udf55 x37 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:07 +0000 2017","id":932386535386656768,"id_str":"932386535386656768","text":"RT @plovepgon: \u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158568399,"id_str":"158568399","name":"\u30b9\u30c3\u30ad\u2606","screen_name":"LovelyYamapi","location":"\u97d3\u56fd - \u30bd\u30a6\u30eb","url":null,"description":"\u2606\u5c71\u4e0b\u667a\u4e45\u2606 \u5927\u597d\u304d\u3067\u3059( ^_^)\/","translator_type":"none","protected":false,"verified":false,"followers_count":3918,"friends_count":1029,"listed_count":24,"favourites_count":3868,"statuses_count":88398,"created_at":"Wed Jun 23 01:43:49 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912292769715986432\/CDHpYA5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912292769715986432\/CDHpYA5V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158568399\/1500301417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386455581626368,"id_str":"932386455581626368","text":"\u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211350474,"id_str":"211350474","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","screen_name":"plovepgon","location":"tokyo\u266a","url":null,"description":"\u3053\u306e\u4ef2\u9593\u3068\u306a\u3089\u3001\u307e\u305f\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u308b\u3002\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc \u30c9\u30af\u30bf\u30fc\u30d8\u30ea\u7dca\u6025\u6551\u547d \uff0dTHE THIRD SEASON\uff0d\u6bce\u9031\u6708\u66dc\u3088\u308b9\u6642\u30a8\u30f3\u30b8\u30f3\u30b9\u30bf\u30fc\u30c8\u2728\u2728\n\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u5168\u529b\u5fdc\u63f4\u4e2d\ud83c\udfb5\n\u30aa\u30f3\u30ea\u30fc\u3084\u307e\u3074\u30fc\u2764\n\u6642\u3005\u30de\u30de\u3055\u3093\u30d0\u30ec\u30fc\u306b\u51fa\u304b\u3051\u3066\u3044\u307e\u3059\u2757\n\u30d5\u30a9\u30ed\u30fc\u306f\u3072\u3068\u58f0\u304b\u3051\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u306a\ud83c\udfb6","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":269,"listed_count":3,"favourites_count":1920,"statuses_count":35970,"created_at":"Wed Nov 03 00:47:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211350474\/1500861182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[70,75]},{"text":"sound_tripper","indices":[76,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[85,90]},{"text":"sound_tripper","indices":[91,105]}],"urls":[],"user_mentions":[{"screen_name":"plovepgon","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","id":211350474,"id_str":"211350474","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:07 +0000 2017","id":932386533532778496,"id_str":"932386533532778496","text":"RT @moon_disco49: \u4eca\u65e5\u306f\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u2757\ufe0f\n\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\n\n\u7f8e\u5473\u3057\u3044\u3088\u306d\uff5e\ud83c\udfb6\n\u79c1\u3082\u597d\u304d\ud83d\ude03\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327711965,"id_str":"327711965","name":"rei\u2606P\u2661sweetie(\u2661\u02d9\u1d55\u02d9\u2661)","screen_name":"rei_tomo0409p","location":"\u3044\u3064\u3082\u667a\u306e\u5074\u306b","url":"http:\/\/ameblo.jp\/tomorei0409\/","description":"\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u3092\u5446\u308c\u308b\u304f\u3089\u3044\u5927\u597d\u304d\u2661only\u62c5\u266c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u95a2\u897f\u5728\u4f4f","translator_type":"none","protected":false,"verified":false,"followers_count":247,"friends_count":281,"listed_count":4,"favourites_count":2358,"statuses_count":54145,"created_at":"Sat Jul 02 01:08:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414325734\/back4902960667255306926.JPEG","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924782868504518656\/rnBxZtBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327711965\/1465660577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:17 +0000 2017","id":932383557355372544,"id_str":"932383557355372544","text":"\u4eca\u65e5\u306f\u30d4\u30b6\ud83c\udf55\u306e\u65e5\u3067\u3059\u2757\ufe0f\n\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\n\n\u7f8e\u5473\u3057\u3044\u3088\u306d\uff5e\ud83c\udfb6\n\u79c1\u3082\u597d\u304d\ud83d\ude03\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163260018,"id_str":"3163260018","name":"\u3044\u3061\u3054","screen_name":"moon_disco49","location":null,"url":"http:\/\/ameblo.jp\/13ichigop\/entry-12138918149.html","description":"\u5c71P\u306e\u3053\u3068\u4ee5\u5916\u3001\u8208\u5473\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u9375\u57a2\u3001\u304a\u4eba\u67c4\u304c\u5168\u304f\u898b\u3048\u306a\u3044\u65b9\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\n\u5c71P\u304c\u6b69\u3044\u3066\u3044\u304f\u9053\u3092\u6c38\u9060\u306b\u5fdc\u63f4\u3057\u307e\u3059(\u0e51\u2022\u0300\u1d17- )\u2729","translator_type":"none","protected":false,"verified":false,"followers_count":779,"friends_count":277,"listed_count":5,"favourites_count":3752,"statuses_count":28747,"created_at":"Sun Apr 19 04:21:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163260018\/1502440752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[45,50]},{"text":"sound_tripper","indices":[56,70]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[63,68]},{"text":"sound_tripper","indices":[74,88]}],"urls":[],"user_mentions":[{"screen_name":"moon_disco49","name":"\u3044\u3061\u3054","id":3163260018,"id_str":"3163260018","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:06 +0000 2017","id":932386532874440705,"id_str":"932386532874440705","text":"Pizzeria Hollywood \ud83c\udf55 en Hollywood pizzer\u00eda https:\/\/t.co\/lacs7xwcI5","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1449713558,"id_str":"1449713558","name":"Juan Pablo\ud83d\udc3a","screen_name":"Juanchosescobar","location":"Bogot\u00e1, D.C., Colombia","url":null,"description":"Solo otra persona mas \ud83e\udd14","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":41,"listed_count":0,"favourites_count":22,"statuses_count":8,"created_at":"Wed May 22 19:21:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917383377149456384\/gHTPLTce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917383377149456384\/gHTPLTce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1449713558\/1507556214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lacs7xwcI5","expanded_url":"https:\/\/www.instagram.com\/p\/BbseKY_gDNF\/","display_url":"instagram.com\/p\/BbseKY_gDNF\/","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"is","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:05 +0000 2017","id":932386528084615174,"id_str":"932386528084615174","text":"RT @ladyfata: Stasera pizza \ud83c\udf55 \ud83d\ude0b\ud83c\udf77\ud83c\udf7d\n#pizzafattaincasa #pizza#amici #carnotzet #cranssursierre #valais #cook\u2026 https:\/\/t.co\/YAjKz7m3H3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":841289941,"id_str":"841289941","name":"Massimo Nascioli","screen_name":"massimonascioli","location":"Roma, Lazio","url":null,"description":"Intermediario Assicurativo - Appassionato di fotografia, arte e cinema - #Sfigatidelsabatosera","translator_type":"none","protected":false,"verified":false,"followers_count":3521,"friends_count":4918,"listed_count":147,"favourites_count":66395,"statuses_count":66721,"created_at":"Sun Sep 23 08:21:28 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914149777830481921\/nf6pH5Rj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914149777830481921\/nf6pH5Rj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/841289941\/1509794787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:07:52 +0000 2017","id":932384963755937793,"id_str":"932384963755937793","text":"Stasera pizza \ud83c\udf55 \ud83d\ude0b\ud83c\udf77\ud83c\udf7d\n#pizzafattaincasa #pizza#amici #carnotzet #cranssursierre #valais #cook\u2026 https:\/\/t.co\/YAjKz7m3H3","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":605801932,"id_str":"605801932","name":"Lady Fata","screen_name":"ladyfata","location":null,"url":null,"description":"Se un granello di sabbia vuol dire ti amo..allora ti regalo il Sahara. Roma -Crans-sur-Sierre -Puglia. #sfigatidelsabatosera Nm001129","translator_type":"none","protected":false,"verified":false,"followers_count":3363,"friends_count":1142,"listed_count":57,"favourites_count":219855,"statuses_count":68893,"created_at":"Mon Jun 11 22:28:09 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"13C2CF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171201545\/5Fx9fcSA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171201545\/5Fx9fcSA.jpeg","profile_background_tile":true,"profile_link_color":"007BFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"29469D","profile_text_color":"15FB2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/777269443915345920\/zNdwHY14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/777269443915345920\/zNdwHY14_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/605801932\/1473717986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[46.3,7.46667]},"coordinates":{"type":"Point","coordinates":[7.46667,46.3]},"place":{"id":"b41fd612ae56fda3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b41fd612ae56fda3.json","place_type":"city","name":"Chermignon","full_name":"Chermignon, Suisse","country_code":"CH","country":"Switzerland","bounding_box":{"type":"Polygon","coordinates":[[[7.459197,46.271999],[7.459197,46.310406],[7.498618,46.310406],[7.498618,46.271999]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"pizzafattaincasa","indices":[20,37]},{"text":"carnotzet","indices":[51,61]},{"text":"cranssursierre","indices":[62,77]},{"text":"valais","indices":[78,85]},{"text":"cook","indices":[86,91]}],"urls":[{"url":"https:\/\/t.co\/YAjKz7m3H3","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsdc0bBN79\/","display_url":"instagram.com\/p\/Bbsdc0bBN79\/","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pizzafattaincasa","indices":[34,51]},{"text":"carnotzet","indices":[65,75]},{"text":"cranssursierre","indices":[76,91]},{"text":"valais","indices":[92,99]},{"text":"cook","indices":[100,105]}],"urls":[{"url":"https:\/\/t.co\/YAjKz7m3H3","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsdc0bBN79\/","display_url":"instagram.com\/p\/Bbsdc0bBN79\/","indices":[107,130]}],"user_mentions":[{"screen_name":"ladyfata","name":"Lady Fata","id":605801932,"id_str":"605801932","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:05 +0000 2017","id":932386525144260608,"id_str":"932386525144260608","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192171529,"id_str":"3192171529","name":"\u9759\u9999","screen_name":"T19830321s","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":5,"friends_count":131,"listed_count":0,"favourites_count":62,"statuses_count":755,"created_at":"Mon May 11 13:10:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386514041843712,"id_str":"932386514041843712","text":"#\u304a\u304a\u307e\u3048\n\n\u5927\u524d\u3055\u3093\u306e\u30d4\u30b6\ud83c\udf55\u98df\u3079\u305f\u3044\ud83d\ude0d\n\u3082\u3061\u308d\u3093\u3001\u30a2\u30bd\u30b3\u304b\u3089\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284159821,"id_str":"3284159821","name":"\uff33\uff21\uff32\uff35","screen_name":"Ia4kwPleHptWWqI","location":" \u540d\u53e4\u5c4b\u5e02 ","url":null,"description":"\u3010\u89b3\u89a7\u6ce8\u610f\u3011SARU\u306a\u306e\u3067\u565b\u307f\u3064\u3044\u3061\u3083\u3044\u307e\u3059\u3088\ud83d\udc12\ud83d\udc35\u52dd\u624b\u306b\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u3061\u3083\u3044\u307e\u3059\ud83c\udfb5\u5acc\u3044\u306a\u65b9\u306f\u304a\u624b\u6570\u3067\u3059\u304c\u3001\u3001\u3001\u3001You\u30d6\u30ed\u30c3\u30af\u3057\u3061\u3083\u3044\u306a\u3088\ud83d\udc95\u3088\u308d\u3061\u304f\u30d3\u30fc\u30c1\ud83c\udf34\ud83d\ude4b","translator_type":"none","protected":false,"verified":false,"followers_count":818,"friends_count":700,"listed_count":8,"favourites_count":99482,"statuses_count":34587,"created_at":"Sun Jul 19 07:42:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930414273771253760\/sMk4t455_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930414273771253760\/sMk4t455_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284159821\/1510664944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u304a\u307e\u3048","indices":[0,5]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386513974837249,"id_str":"932386513974837249","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173137208,"id_str":"173137208","name":"\u6751\u4e0a\u7fa9\u96c4","screen_name":"sutabania","location":null,"url":null,"description":"\u30b9\u30bf\u30fc\u30d0\u30c3\u30af\u30b9\u3068\u30b3\u30fc\u30d2\u30fc\u5927\u597d\u304d\u3067\u3059\u3002\n\u5143\u7a7a\u306e\u4eba","translator_type":"none","protected":false,"verified":false,"followers_count":83,"friends_count":500,"listed_count":1,"favourites_count":6675,"statuses_count":2457,"created_at":"Sat Jul 31 14:55:12 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/692712507996139520\/6EpnHkoj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/692712507996139520\/6EpnHkoj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173137208\/1453990418","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:02 +0000 2017","id":932386513739902976,"id_str":"932386513739902976","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4670692334,"id_str":"4670692334","name":"bbb","screen_name":"bbbbbabccc","location":"\u65e5\u672c","url":null,"description":"\u6b32\u3057\u304f","translator_type":"none","protected":false,"verified":false,"followers_count":51,"friends_count":167,"listed_count":0,"favourites_count":1504,"statuses_count":1107,"created_at":"Tue Dec 29 02:52:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879970939663810560\/4vDnn11f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879970939663810560\/4vDnn11f_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:01 +0000 2017","id":932386510409797635,"id_str":"932386510409797635","text":"Football Sunday fat kid mozzarella waffle pizza! \ud83c\udf55 https:\/\/t.co\/zlrC29X4Ap","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14316456,"id_str":"14316456","name":"Mark Perez","screen_name":"faceofbass","location":"Aurora, Colorado","url":"http:\/\/www.faceofbass.com","description":"A little bit of this, a little bit of that. Bassist, Podcaster and sometimes even a decent DJ. Championing all that is Colorado","translator_type":"none","protected":false,"verified":false,"followers_count":1821,"friends_count":1994,"listed_count":99,"favourites_count":2018,"statuses_count":17341,"created_at":"Sun Apr 06 17:08:21 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110684","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D66A29","profile_text_color":"110684","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924417146087661569\/ATGRFouc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14316456\/1420515214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zlrC29X4Ap","expanded_url":"https:\/\/www.instagram.com\/p\/BbseJ-fHStI\/","display_url":"instagram.com\/p\/BbseJ-fHStI\/","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:14:00 +0000 2017","id":932386507264090113,"id_str":"932386507264090113","text":"\ud83c\udf55 x36 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:58 +0000 2017","id":932386499114520578,"id_str":"932386499114520578","text":"#boanoitegente \ud83d\ude04\nEsta chuva e friooooo\ud83d\ude28\nMas tem #pizzaboa \ud83c\udf55\ud83c\udf77\ud83c\udf7a em S\u00e3o Vicente, Brazil https:\/\/t.co\/uChK2BRIKv","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48846769,"id_str":"48846769","name":"Duarte Marques","screen_name":"DuarteMMarques","location":"Funchal-Hoje estou em Santos.","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":456,"friends_count":1789,"listed_count":3,"favourites_count":36,"statuses_count":4876,"created_at":"Fri Jun 19 22:12:43 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/523704971733123072\/nA_7pSp2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/523704971733123072\/nA_7pSp2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526497919625461760\/9SlGPUcr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526497919625461760\/9SlGPUcr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48846769\/1414362485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-23.9667,-46.3833]},"coordinates":{"type":"Point","coordinates":[-46.3833,-23.9667]},"place":{"id":"d1638a3be6a9ed61","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d1638a3be6a9ed61.json","place_type":"city","name":"S\u00e3o Vicente","full_name":"S\u00e3o Vicente, Brasil","country_code":"BR","country":"Brazil","bounding_box":{"type":"Polygon","coordinates":[[[-46.658389,-24.011484],[-46.658389,-23.899444],[-46.356622,-23.899444],[-46.356622,-24.011484]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"boanoitegente","indices":[0,14]},{"text":"pizzaboa","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/uChK2BRIKv","expanded_url":"https:\/\/www.instagram.com\/p\/BbseEngDOJo\/","display_url":"instagram.com\/p\/BbseEngDOJo\/","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:58 +0000 2017","id":932386495532474368,"id_str":"932386495532474368","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780021822641217536,"id_str":"780021822641217536","name":"\u3069\u3093","screen_name":"ddddddddon017","location":null,"url":null,"description":"\u5fa1\u98ef\u306f\u5927\u76db\u308a\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":18,"friends_count":84,"listed_count":0,"favourites_count":71,"statuses_count":1938,"created_at":"Sun Sep 25 12:31:09 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897394202106929153\/UoxY3bsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897394202106929153\/UoxY3bsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780021822641217536\/1504701157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:56 +0000 2017","id":932386489878511616,"id_str":"932386489878511616","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3113139169,"id_str":"3113139169","name":"\u30b1\u30f3","screen_name":"kentarosuz8","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":17,"friends_count":78,"listed_count":0,"favourites_count":375,"statuses_count":996,"created_at":"Sat Mar 28 14:28:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/769555293508210688\/-bvdQD5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/769555293508210688\/-bvdQD5w_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:56 +0000 2017","id":932386488209117184,"id_str":"932386488209117184","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3513803360,"id_str":"3513803360","name":"\u306b\u3053\u307d\u3093(\u4e0d\u5b9a\u671f\u6d3b\u52d5\u4e2d)","screen_name":"nikopon1115","location":"\u4eac\u90fd","url":null,"description":"2017\u5e74\u3082\u6b4c\u306b\u5143\u6c17\u3092\u8cb0\u3063\u3066\u3001\u7b11\u9854\u591a\u304d\u5e74\u306b\uff01\u6c37\u5ddd\u304d\u3088\u3057\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":117,"listed_count":3,"favourites_count":50277,"statuses_count":33389,"created_at":"Thu Sep 10 09:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683126057076047873\/uIv9Jrhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513803360\/1444717759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:53 +0000 2017","id":932386476721098753,"id_str":"932386476721098753","text":"RT @k_kichitsu: \u65e9\u4e0a\u9192\u4f86\u5f8c\u89ba\u5f97\u81ea\u5df1\u534a\u591c\u8b1b\u90a3\u4ec0\u9ebc\u4e00\u4eba\u4e2d\u734e\u5168\u5bb6\u540c\u884cwwwww\u5bb3\u6211\u767d\u5929\u6eff\u8166\u5b50\u6230\u58eb\u968a\u7684Pizza Party\u756b\u9762 \ud83c\udf55\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/2N4GEaHNAy","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771816346413830144,"id_str":"771816346413830144","name":"bowlcut ryoasuka","screen_name":"akira1love","location":null,"url":null,"description":"formerly SoniaWinchente. 22, female, italian, a mess","translator_type":"none","protected":false,"verified":false,"followers_count":312,"friends_count":476,"listed_count":4,"favourites_count":90922,"statuses_count":42081,"created_at":"Fri Sep 02 21:05:31 +0000 2016","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905867141177647106\/aNbXj7pk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905867141177647106\/aNbXj7pk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771816346413830144\/1472896577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 07:57:08 +0000 2017","id":931430993881206784,"id_str":"931430993881206784","text":"\u65e9\u4e0a\u9192\u4f86\u5f8c\u89ba\u5f97\u81ea\u5df1\u534a\u591c\u8b1b\u90a3\u4ec0\u9ebc\u4e00\u4eba\u4e2d\u734e\u5168\u5bb6\u540c\u884cwwwww\u5bb3\u6211\u767d\u5929\u6eff\u8166\u5b50\u6230\u58eb\u968a\u7684Pizza Party\u756b\u9762 \ud83c\udf55\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/2N4GEaHNAy","display_text_range":[0,56],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":871082222576558080,"id_str":"871082222576558080","name":"\ud83c\udf7f\u9b3c\u79e9\ud83c\udf2d","screen_name":"k_kichitsu","location":"Taiwan","url":null,"description":"\u9032\u6483\u57a2 \uff08\u30d9\u30eb\u30e9\u30a4\u3001\u540c\u90f7\u30c8\u30ea\u30aa\u3001\u53f3\u30e9\u30a4etc.\uff09\u3001\u30cd\u30bf\u30d0\u30ec\u6709 \uff0f 20\u2191 \u8150 \uff0f \u53f0\u6e7e\u4eba\u3001\u4e2d\u56fd\u8a9e\u66f8\u3051\u307e\u3059\uff0f \u5c11\u3057\u3060\u3051\u65e5\u672c\u8a9e\u7406\u89e3\u51fa\u6765\u307e\u3059(\u8aad\u89e3\u306e\u307f) \uff0f\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059","translator_type":"none","protected":false,"verified":false,"followers_count":26,"friends_count":0,"listed_count":0,"favourites_count":3,"statuses_count":56,"created_at":"Sat Jun 03 19:12:40 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/919125827857481728\/ENYSGwLM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/919125827857481728\/ENYSGwLM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/871082222576558080\/1507971679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":24,"favorite_count":46,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k_kichitsu","name":"\ud83c\udf7f\u9b3c\u79e9\ud83c\udf2d","id":871082222576558080,"id_str":"871082222576558080","indices":[3,14]}],"symbols":[],"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}},"source_status_id":931430993881206784,"source_status_id_str":"931430993881206784","source_user_id":871082222576558080,"source_user_id_str":"871082222576558080"}]},"extended_entities":{"media":[{"id":931430414421450753,"id_str":"931430414421450753","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0bBuiV4AEocNp.jpg","url":"https:\/\/t.co\/2N4GEaHNAy","display_url":"pic.twitter.com\/2N4GEaHNAy","expanded_url":"https:\/\/twitter.com\/k_kichitsu\/status\/931430993881206784\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":622,"resize":"fit"},"medium":{"w":650,"h":622,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":650,"h":622,"resize":"fit"}},"source_status_id":931430993881206784,"source_status_id_str":"931430993881206784","source_user_id":871082222576558080,"source_user_id_str":"871082222576558080"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386474078691328,"id_str":"932386474078691328","text":"\ud83c\udf55 x35 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386472832802816,"id_str":"932386472832802816","text":"RT @KITKATJapan: \u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784125290,"id_str":"784125290","name":"\u3164\u30bc\u30ce","screen_name":"168_doc","location":null,"url":"http:\/\/twpf.jp\/168_doc","description":"\u5143\u30b2\u30fc\u30bb\u30f3\u5e97\u54e1\u3002\u30db\u30fc\u30e0\u3060\u3063\u305f\u3051\u3069\u9589\u5e97\u3057\u305f\u306e\u3067\u97f3\u30b2\u30fc\u306f\u307b\u307c\u5f15\u9000\u3002\u30b9\u30ed\u30ab\u30b9\u3002\u4eca\u6301\u3063\u3066\u308b\u5b9f\u6a5f\u306f\u30ae\u30a2\u30b9\u521d\u4ee3\u306e\u307f\u3002\u97f3\u30b2\u30fc\u306e\u30c7\u30fc\u30bf\u306f\u30c4\u30a4\u30d7\u30ed\u3002\u5ac1(@nagi_doc)","translator_type":"none","protected":false,"verified":false,"followers_count":270,"friends_count":475,"listed_count":20,"favourites_count":6324,"statuses_count":129351,"created_at":"Mon Aug 27 08:02:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540694761946873859\/fEGmPhri.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540694761946873859\/fEGmPhri.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/803594398348939265\/aQGg_T3o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/803594398348939265\/aQGg_T3o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784125290\/1509054842","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:00 +0000 2017","id":932382983981592581,"id_str":"932382983981592581","text":"\u3052\u3063\u305d\u308a\u3052\u305d\u3052\u305d\u3052\u3064\u3088\u3046\u3073\uff5e\u266a\n\n\u256d\u25dc\u25dd \u0361 \u25dc\u25dd \u256e\n( \u30fd\u00b4\u03c9` )\ud83c\udf55\n\u2570\u25df\u25de \u035c \u25df\u25de \u256f\n\n\u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5\uff01\uff01\n(\uff40\u30fb\u03c9\u30fb\u00b4)\ud83c\udf55\ud83c\udf6b\uff7c\uff6c\uff77\uff70\uff9d","source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":28,"favorite_count":43,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[54,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[71,76]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:52 +0000 2017","id":932386469993312256,"id_str":"932386469993312256","text":"RT @6Etsuko: 11\u670820\u65e5\uff08\u6708\uff09\n\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n1\u9031\u9593\u306e\u59cb\u307e\u308a\u2026\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\ud83d\udc9a\n#\ud0dd\uc5f0 #\ud654\uc774\ud305 https:\/\/t.co\/PqPWbz30DP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":792033589558784000,"id_str":"792033589558784000","name":"\u307f\u307b","screen_name":"arVH8YFfEqsRxVb","location":null,"url":null,"description":"\u30c6\u30ae\u30e7\u30f3\u2764\u3055\u3089\u3093\u3078\uff5e\u2764\u3042\u3042\u3063\u3001\u30bd\u30ed\u30b3\u30f3\u697d\u3057\u304b\u3063\u305f\u306a\u3041\u2026\ud83d\ude22","translator_type":"none","protected":false,"verified":false,"followers_count":11,"friends_count":49,"listed_count":0,"favourites_count":11917,"statuses_count":2563,"created_at":"Fri Oct 28 16:01:37 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913444564530110464\/Imz2YLrL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913444564530110464\/Imz2YLrL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792033589558784000\/1508254780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 21:23:41 +0000 2017","id":932358742233956352,"id_str":"932358742233956352","text":"11\u670820\u65e5\uff08\u6708\uff09\n\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n1\u9031\u9593\u306e\u59cb\u307e\u308a\u2026\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\ud83d\udc9a\n#\ud0dd\uc5f0 #\ud654\uc774\ud305 https:\/\/t.co\/PqPWbz30DP","display_text_range":[0,43],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1590650528,"id_str":"1590650528","name":"\u3048\u3063\u3061\u3083\u3093\ud83d\udc9aETSUKO\ud83d\udc9a","screen_name":"6Etsuko","location":"Japan Aichi","url":null,"description":"\u30c6\u30ae\u30e7\u30f3\u6eba\u611b\u30a2\u30b8\u30e5\u30f3\u30de\u3067\u3059\u266a \u53ea\u4ecaTL\u8ffd\u3048\u305a\u3067\u30d5\u30a9\u30ed\u30d0\u304a\u4f11\u307f\u4e2d\u2026\u30d5\u30a9\u30ed\u30fc\u5916\u3055\u308c\u305f\u65b9\u30fb\u9375\u4ed8\u304d\u3055\u3093\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002\u7d61\u307f\u306e\u306a\u3044\u76f8\u4e92\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u2026\u4e0d\u5b9a\u671f\u3067\u6574\u7406\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u306e\u3067\u30df\u30a2\u30cd\u3002 6\/9\u2661\u5ff5\u9858\u306e\u30bd\u30a6\u30eb\u30b3\u30f3\u304c\u79c1\u306e\u30bb\u30f3\u30a4\u30eb\u2661\u305d\u3057\u3066\u5947\u8de1\u304c\u2661 \u52d5\u753b\u3092\u4f5c\u3063\u3066\u3044\u308b\u6642\u304c\u79c1\u306e\u7652\u3057\u266a\u6c17\u8efd\u306b\u7d61\u3093\u3067\u4e0b\u3055\u3044\u306d~\u2764\ufe0e@taeccool","translator_type":"none","protected":false,"verified":false,"followers_count":976,"friends_count":183,"listed_count":3,"favourites_count":15758,"statuses_count":86421,"created_at":"Sat Jul 13 10:00:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931288950383116288\/FnOax_kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931288950383116288\/FnOax_kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1590650528\/1505919323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":8,"favorite_count":15,"entities":{"hashtags":[{"text":"\ud0dd\uc5f0","indices":[35,38]},{"text":"\ud654\uc774\ud305","indices":[39,43]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":60000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/1280x720\/11tXMJvyweryi8LW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/pl\/7Zb5RB08B4odt6ot.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/320x180\/BwjplEmg-3i1JNEK.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/640x360\/DAazgG9RfhuSgm1c.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ud0dd\uc5f0","indices":[48,51]},{"text":"\ud654\uc774\ud305","indices":[52,56]}],"urls":[],"user_mentions":[{"screen_name":"6Etsuko","name":"\u3048\u3063\u3061\u3083\u3093\ud83d\udc9aETSUKO\ud83d\udc9a","id":1590650528,"id_str":"1590650528","indices":[3,11]}],"symbols":[],"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":932358742233956352,"source_status_id_str":"932358742233956352","source_user_id":1590650528,"source_user_id_str":"1590650528"}]},"extended_entities":{"media":[{"id":932358298145210369,"id_str":"932358298145210369","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932358298145210369\/pu\/img\/GxrU9lGMwCJ2r9Wg.jpg","url":"https:\/\/t.co\/PqPWbz30DP","display_url":"pic.twitter.com\/PqPWbz30DP","expanded_url":"https:\/\/twitter.com\/6Etsuko\/status\/932358742233956352\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":932358742233956352,"source_status_id_str":"932358742233956352","source_user_id":1590650528,"source_user_id_str":"1590650528","video_info":{"aspect_ratio":[16,9],"duration_millis":60000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/1280x720\/11tXMJvyweryi8LW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/pl\/7Zb5RB08B4odt6ot.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/320x180\/BwjplEmg-3i1JNEK.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932358298145210369\/pu\/vid\/640x360\/DAazgG9RfhuSgm1c.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:49 +0000 2017","id":932386460606406656,"id_str":"932386460606406656","text":"RT @nokko_0409: \u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800634234792603648,"id_str":"800634234792603648","name":"Suzu","screen_name":"Suzu98536234","location":"\u65e5\u672c \u5343\u8449","url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\u263a\u5c71P\u5927\u597d\u304d\u304a\u3070\u30d5\u30a1\u30f3\u3067\u3059\u2665\uff11\u304b\u3089\u3084\u308a\u76f4\u3057\u305f\u70ba\u307e\u305f\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(_ _)m\u30c7\u30a3\u30ba\u30cb\u30fc\u3082\u597d\u304d\u2665\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u30fc\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":447,"friends_count":357,"listed_count":5,"favourites_count":16896,"statuses_count":34107,"created_at":"Mon Nov 21 09:37:31 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800634234792603648\/1482012167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:13:18 +0000 2017","id":932386327818989568,"id_str":"932386327818989568","text":"\u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898499051,"id_str":"2898499051","name":"\u306e\u3063\u3053","screen_name":"nokko_0409","location":null,"url":null,"description":"\u5c71\uff30\u306e\u767a\u3059\u308b\u6e29\u5ea6\u304c\u582a\u3089\u306a\u304f\u597d\u304d","translator_type":"none","protected":false,"verified":false,"followers_count":81,"friends_count":107,"listed_count":1,"favourites_count":5472,"statuses_count":5618,"created_at":"Thu Nov 13 13:02:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898499051\/1471783413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[94,99]},{"text":"sound_tripper","indices":[100,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[110,115]},{"text":"sound_tripper","indices":[116,130]}],"urls":[],"user_mentions":[{"screen_name":"nokko_0409","name":"\u306e\u3063\u3053","id":2898499051,"id_str":"2898499051","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386456059838464,"id_str":"932386456059838464","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1373720448,"id_str":"1373720448","name":"marieee0520\uff08\u8d64\u798f\u52df\u96c6\u4e2d","screen_name":"marieee0520","location":"\u4e88\u5b9a\u306e\u306a\u3044\u65e5\u306f\u7d76\u597d\u8abf","url":null,"description":"Maya\/C4D\/AE\/PS\/iL 3DCG Animator. TV\u30b7\u30ea\u30fc\u30ba\u3001\u30cb\u30f3\u30b8\u30e3\u30bf\u30fc\u30c8\u30eb\u30ba\u30b7\u30fc\u30ba\u30f34,5\u53c2\u52a0\u3002\u8077\u696d\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u30de\u30cb\u30a2\u3002\u6d77\u5916\u3068\u65e5\u672c\u3092\u653e\u6d6a\u4e2d\u3002\u8d64\u798f\u304c\u98df\u3079\u305f\u3044\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":440,"friends_count":584,"listed_count":11,"favourites_count":2229,"statuses_count":5284,"created_at":"Tue Apr 23 03:51:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480275447205203968\/lRIvgGZm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480275447205203968\/lRIvgGZm.png","profile_background_tile":true,"profile_link_color":"FF0066","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620114948522295296\/emSNgESZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620114948522295296\/emSNgESZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1373720448\/1403341725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:48 +0000 2017","id":932386455581626368,"id_str":"932386455581626368","text":"\u50d5\u306f\n\u30d4\u30b6\u81ea\u4f53\u306a\u3044\u3067\u3059\u306d\u4f5c\u3063\u305f\u4e8b\u2755\n\u56de\u3057\u3066\u307f\u305f\u3044\u306a\u3063\u3066\u3044\u3046\n\u305d\u3046\u3044\u3046\u601d\u3044\u306f\u3042\u308a\u307e\u3059\ud83c\udf55\n\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046 \u3084\u307e\u3074\u30fc\u2764\n\u7d20\u6575\u306a\uff11\u65e5\u3092\uff5e\u2728\u2728\n\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211350474,"id_str":"211350474","name":"\u2661\u304b\u3063\u3061\u3083\u3093\u266a\u2661\u2606:.*.\u00b0\u2606:.*.\u00b0","screen_name":"plovepgon","location":"tokyo\u266a","url":null,"description":"\u3053\u306e\u4ef2\u9593\u3068\u306a\u3089\u3001\u307e\u305f\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u308b\u3002\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc \u30c9\u30af\u30bf\u30fc\u30d8\u30ea\u7dca\u6025\u6551\u547d \uff0dTHE THIRD SEASON\uff0d\u6bce\u9031\u6708\u66dc\u3088\u308b9\u6642\u30a8\u30f3\u30b8\u30f3\u30b9\u30bf\u30fc\u30c8\u2728\u2728\n\u5c71\u4e0b\u667a\u4e45\u304f\u3093\u5168\u529b\u5fdc\u63f4\u4e2d\ud83c\udfb5\n\u30aa\u30f3\u30ea\u30fc\u3084\u307e\u3074\u30fc\u2764\n\u6642\u3005\u30de\u30de\u3055\u3093\u30d0\u30ec\u30fc\u306b\u51fa\u304b\u3051\u3066\u3044\u307e\u3059\u2757\n\u30d5\u30a9\u30ed\u30fc\u306f\u3072\u3068\u58f0\u304b\u3051\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u306a\ud83c\udfb6","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":269,"listed_count":3,"favourites_count":1920,"statuses_count":35970,"created_at":"Wed Nov 03 00:47:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915003287417397248\/RmGw1t6x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211350474\/1500861182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[70,75]},{"text":"sound_tripper","indices":[76,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:45 +0000 2017","id":932386444127166464,"id_str":"932386444127166464","text":"\ud83c\udf55 x34 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:42 +0000 2017","id":932386431716257793,"id_str":"932386431716257793","text":"Pineapple Skies \ud83c\udf55","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752743155267608576,"id_str":"752743155267608576","name":"\u3030","screen_name":"bajomiroca","location":"5th Dimension","url":null,"description":"\u2615\ufe0f | YOLO | NAMASTE |","translator_type":"none","protected":false,"verified":false,"followers_count":338,"friends_count":575,"listed_count":4,"favourites_count":8106,"statuses_count":5994,"created_at":"Tue Jul 12 05:55:28 +0000 2016","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931480734849798145\/tE9eW1an_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931480734849798145\/tE9eW1an_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752743155267608576\/1510917323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:41 +0000 2017","id":932386426141884416,"id_str":"932386426141884416","text":"RT @528yp: \u5c71\uff30\u304a\u306f\u3088\u3046\ud83d\udc95\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u7167\u308a\u713c\u304d\u306e\u30d4\u30b6\ud83c\udf55\u304c\u597d\u304d\u306a\u5c71\uff30\ud83c\udfb5\u7f8e\u5473\u3057\u3044\u3088\u306d\ud83d\ude0a\n\u5ca1\u7530\u541b\u3068\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u304a\u8a71\u3082\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u4eca\u65e5\u3082\u5bd2\u304f\u3066\u64ae\u5f71\u5927\u5909\u3060\u3068\u601d\u3044\u307e\u3059\u304c\u9811\u5f35\u3063\u3066\u4e0b\u3055\u3044\ud83c\udf40\n\u4eca\u9031\u3082\u9811\u5f35\u308a\u307e\u3059\ud83c\udfb5\n\u5c71\uff30\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800634234792603648,"id_str":"800634234792603648","name":"Suzu","screen_name":"Suzu98536234","location":"\u65e5\u672c \u5343\u8449","url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\u263a\u5c71P\u5927\u597d\u304d\u304a\u3070\u30d5\u30a1\u30f3\u3067\u3059\u2665\uff11\u304b\u3089\u3084\u308a\u76f4\u3057\u305f\u70ba\u307e\u305f\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(_ _)m\u30c7\u30a3\u30ba\u30cb\u30fc\u3082\u597d\u304d\u2665\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u30fc\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":447,"friends_count":357,"listed_count":5,"favourites_count":16896,"statuses_count":34107,"created_at":"Mon Nov 21 09:37:31 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851083055628337152\/u-utUVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800634234792603648\/1482012167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:12:28 +0000 2017","id":932386120926507009,"id_str":"932386120926507009","text":"\u5c71\uff30\u304a\u306f\u3088\u3046\ud83d\udc95\n\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u7167\u308a\u713c\u304d\u306e\u30d4\u30b6\ud83c\udf55\u304c\u597d\u304d\u306a\u5c71\uff30\ud83c\udfb5\u7f8e\u5473\u3057\u3044\u3088\u306d\ud83d\ude0a\n\u5ca1\u7530\u541b\u3068\u4f5c\u54c1\u5c55\u306b\u884c\u3063\u305f\u304a\u8a71\u3082\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83c\udf38\n\u4eca\u65e5\u3082\u5bd2\u304f\u3066\u64ae\u5f71\u5927\u5909\u3060\u3068\u601d\u3044\u307e\u3059\u304c\u9811\u5f35\u3063\u3066\u4e0b\u3055\u3044\ud83c\udf40\n\u4eca\u9031\u3082\u9811\u5f35\u308a\u307e\u3059\ud83c\udfb5\n\u5c71\uff30\n#\u5c71\u4e0b\u667a\u4e45 \n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898124986,"id_str":"2898124986","name":"\u3072\u308d\u3053\u2606","screen_name":"528yp","location":null,"url":null,"description":"\u5c71\uff30\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u2728\n\u30b3\u30fc\u30c9\u30fb\u30d6\u30eb\u30fc\u85cd\u6ca2\u5148\u751f\u304c\u5927\u597d\u304d\u3067\u3059\ud83d\udc93\n\u30de\u30a4\u30da\u30fc\u30b9\u306a\u30d0\u30ca\u30casweetie\ud83c\udf40\u3000\u95a2\u897f\u266a","translator_type":"none","protected":false,"verified":false,"followers_count":455,"friends_count":205,"listed_count":2,"favourites_count":9684,"statuses_count":38031,"created_at":"Thu Nov 13 06:29:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851085743514566656\/qxNycfPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851085743514566656\/qxNycfPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898124986\/1497942066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[107,112]},{"text":"sound_tripper","indices":[114,128]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[118,123]},{"text":"sound_tripper","indices":[125,139]}],"urls":[],"user_mentions":[{"screen_name":"528yp","name":"\u3072\u308d\u3053\u2606","id":2898124986,"id_str":"2898124986","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:39 +0000 2017","id":932386418713915392,"id_str":"932386418713915392","text":"\ud83c\udf55 @MartinGarrix the pizza maker https:\/\/t.co\/fbpCQOMBTx","display_text_range":[0,31],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957205621,"id_str":"2957205621","name":"GarrixNews","screen_name":"garrixnews","location":null,"url":"https:\/\/www.instagram.com\/garrixnews\/","description":"Make sure to follow for updates! | Instagram: Garrixnews","translator_type":"none","protected":false,"verified":false,"followers_count":347,"friends_count":155,"listed_count":1,"favourites_count":417,"statuses_count":412,"created_at":"Fri Jan 02 20:24:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904834419353157632\/6bBjyHlp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904834419353157632\/6bBjyHlp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957205621\/1504564314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MartinGarrix","name":"MARTIN GARRIX","id":134234000,"id_str":"134234000","indices":[2,15]}],"symbols":[],"media":[{"id":932385892492292097,"id_str":"932385892492292097","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","url":"https:\/\/t.co\/fbpCQOMBTx","display_url":"pic.twitter.com\/fbpCQOMBTx","expanded_url":"https:\/\/twitter.com\/garrixnews\/status\/932386418713915392\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":900,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":720,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932385892492292097,"id_str":"932385892492292097","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932385892492292097\/pu\/img\/F_5xG0pbV5pCeEKz.jpg","url":"https:\/\/t.co\/fbpCQOMBTx","display_url":"pic.twitter.com\/fbpCQOMBTx","expanded_url":"https:\/\/twitter.com\/garrixnews\/status\/932386418713915392\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":900,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":720,"h":900,"resize":"fit"}},"video_info":{"aspect_ratio":[4,5],"duration_millis":38992,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/vid\/512x640\/tp0_hakzV_4bnvLD.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/pl\/Bt38vi3d2K5z9qzS.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932385892492292097\/pu\/vid\/256x320\/f-PuNW-UVSgIgRqg.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:38 +0000 2017","id":932386414578282498,"id_str":"932386414578282498","text":"RT @TheDIYideas: 6 After-School Pizza Recipes\ud83c\udf55\nhttps:\/\/t.co\/Up9rUnsqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35193096,"id_str":"35193096","name":"Spos-I don't know.","screen_name":"Espo61","location":"Ohio\/St.Lou-now\/beach soon","url":null,"description":"predators keep the balance - the only good day was yesterday-","translator_type":"none","protected":false,"verified":false,"followers_count":407,"friends_count":362,"listed_count":4,"favourites_count":1290,"statuses_count":3391,"created_at":"Sat Apr 25 11:23:44 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897076367682129920\/CXrTkEGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897076367682129920\/CXrTkEGG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35193096\/1500153684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 17:50:13 +0000 2017","id":932305023807062016,"id_str":"932305023807062016","text":"6 After-School Pizza Recipes\ud83c\udf55\nhttps:\/\/t.co\/Up9rUnsqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2323945699,"id_str":"2323945699","name":"Recipes GIFs","screen_name":"TheDIYideas","location":"Snapchat : Thediyideas","url":"https:\/\/Twitter.com\/MedicaIGuide","description":"Recipes in an easy to follow video format! Videos belong to their respective owners ( @BuzzFeed ).","translator_type":"none","protected":false,"verified":false,"followers_count":904773,"friends_count":35,"listed_count":2586,"favourites_count":11,"statuses_count":7334,"created_at":"Sun Feb 02 15:30:31 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446520147465883648\/t4LJxkwl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446520147465883648\/t4LJxkwl.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/685180494179205120\/PawIyXBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/685180494179205120\/PawIyXBl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2323945699\/1477672667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":336,"favorite_count":927,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937"}]},"extended_entities":{"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"video","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937","video_info":{"aspect_ratio":[1,1],"duration_millis":198448,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/480x480\/KSPJDe6YqdWkcVII.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/pl\/s-QpXozGtZJ0Xgjb.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/720x720\/XdUlIhdMUSmvQtGX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/240x240\/tUQfAaP7mvy5qHaX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDIYideas","name":"Recipes GIFs","id":2323945699,"id_str":"2323945699","indices":[3,15]}],"symbols":[],"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937"}]},"extended_entities":{"media":[{"id":930596456905416704,"id_str":"930596456905416704","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOolW4bVwAA9f-1.jpg","url":"https:\/\/t.co\/Up9rUnsqcE","display_url":"pic.twitter.com\/Up9rUnsqcE","expanded_url":"https:\/\/twitter.com\/tasty\/status\/930827742882304001\/video\/1","type":"video","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":930827742882304001,"source_status_id_str":"930827742882304001","source_user_id":4020532937,"source_user_id_str":"4020532937","video_info":{"aspect_ratio":[1,1],"duration_millis":198448,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/480x480\/KSPJDe6YqdWkcVII.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/pl\/s-QpXozGtZJ0Xgjb.m3u8"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/720x720\/XdUlIhdMUSmvQtGX.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/930596456905416704\/vid\/240x240\/tUQfAaP7mvy5qHaX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:38 +0000 2017","id":932386414548934656,"id_str":"932386414548934656","text":"\ud83c\udf55 x33 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:30 +0000 2017","id":932386380621205504,"id_str":"932386380621205504","text":"\ud83c\udf55 x32 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386368940015616,"id_str":"932386368940015616","text":"RT @christinartnd: The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic version\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":625985726,"id_str":"625985726","name":"Chloe \ud83d\udc96","screen_name":"deadringerr_","location":"Scotland, United Kingdom","url":null,"description":"Broken Glass and Broken Bones.","translator_type":"none","protected":false,"verified":false,"followers_count":457,"friends_count":672,"listed_count":1,"favourites_count":14115,"statuses_count":1208,"created_at":"Tue Jul 03 23:38:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455801171962105856\/PY8fwOvq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455801171962105856\/PY8fwOvq.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904792081972985856\/972lEiyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904792081972985856\/972lEiyD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/625985726\/1510776879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 19:01:04 +0000 2017","id":932322853520887810,"id_str":"932322853520887810","text":"The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic ver\u2026 https:\/\/t.co\/LEtG3lTFAb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130603144,"id_str":"130603144","name":"Christina Rotondo \ud83c\udf85\ud83c\udffb\ud83e\udd36\ud83c\udffb","screen_name":"christinartnd","location":"Nottingham, England","url":"https:\/\/www.youtube.com\/christinashoutsout","description":"I make ambienty rock music.\ud83c\udf19 PR & business contact contact christinartnd@gmail.com \ud83d\udda4http:\/\/www.christinartnd.bigcartel.com","translator_type":"none","protected":false,"verified":false,"followers_count":4479,"friends_count":418,"listed_count":41,"favourites_count":47902,"statuses_count":83377,"created_at":"Wed Apr 07 19:47:29 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930567227413319680\/UT472mMj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930567227413319680\/UT472mMj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130603144\/1510699492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"The new @realfriendsband song #GetBy was just so good that I had to immediately cover it. Check out my acoustic version here \ud83c\udf55 https:\/\/t.co\/wbRD5yBoF1 https:\/\/t.co\/pjBFKEjcGn","display_text_range":[0,150],"entities":{"hashtags":[{"text":"GetBy","indices":[30,36]}],"urls":[{"url":"https:\/\/t.co\/wbRD5yBoF1","expanded_url":"https:\/\/youtu.be\/14F7huPK9jM","display_url":"youtu.be\/14F7huPK9jM","indices":[127,150]}],"user_mentions":[{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[8,24]}],"symbols":[],"media":[{"id":932322847384535041,"id_str":"932322847384535041","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","url":"https:\/\/t.co\/pjBFKEjcGn","display_url":"pic.twitter.com\/pjBFKEjcGn","expanded_url":"https:\/\/twitter.com\/christinartnd\/status\/932322853520887810\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932322847384535041,"id_str":"932322847384535041","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBGsKZWAAEoSf8.jpg","url":"https:\/\/t.co\/pjBFKEjcGn","display_url":"pic.twitter.com\/pjBFKEjcGn","expanded_url":"https:\/\/twitter.com\/christinartnd\/status\/932322853520887810\/photo\/1","type":"photo","sizes":{"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":3,"favorite_count":9,"entities":{"hashtags":[{"text":"GetBy","indices":[30,36]}],"urls":[{"url":"https:\/\/t.co\/LEtG3lTFAb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932322853520887810","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[8,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GetBy","indices":[49,55]}],"urls":[],"user_mentions":[{"screen_name":"christinartnd","name":"Christina Rotondo \ud83c\udf85\ud83c\udffb\ud83e\udd36\ud83c\udffb","id":130603144,"id_str":"130603144","indices":[3,17]},{"screen_name":"realfriendsband","name":"Real Friends","id":221952074,"id_str":"221952074","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386368872779779,"id_str":"932386368872779779","text":"\u3046\u308f\u3042\u3042\u3042\u3044\uff01\u30d4\u30b6\u306e\u65e5\uff01\n\u4eca\u65e5\u306f\u30d4\u30b6\u3092\u98df\u3079\u308b\u4e88\u611f\uff01\n\u8584\u3044\u751f\u5730\u3082\u539a\u3044\u30d1\u30f3\u307f\u305f\u3044\u306a\u751f\u5730\u3082\u4f55\u3067\u3082\u597d\u304d\ud83d\ude0b\ud83c\udf55\n\u3068\u308a\u3042\u3048\u305a\u8cbc\u308b\u30ab\u30a4\u30ed\u3092\u80cc\u4e2d\u306b\u88c5\u7740\u3057\u3066\u51fa\u767a\uff01 https:\/\/t.co\/Dqcopr2BdU","display_text_range":[0,71],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308475607,"id_str":"3308475607","name":"\u6d66\u548c\u8d64\u7fbd","screen_name":"odoro8","location":null,"url":null,"description":"\u7d75\u30fb\u52d5\u7269\u30fb\u9eba","translator_type":"none","protected":false,"verified":false,"followers_count":67,"friends_count":66,"listed_count":0,"favourites_count":3552,"statuses_count":5485,"created_at":"Fri Aug 07 04:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/667765077789966336\/4CJk2chR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/667765077789966336\/4CJk2chR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":932378001978818560,"quoted_status_id_str":"932378001978818560","quoted_status":{"created_at":"Sun Nov 19 22:40:13 +0000 2017","id":932378001978818560,"id_str":"932378001978818560","text":"\ud83c\uddee\ud83c\uddf9\u30ca\u30dd\u30ea\u3001\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u767a\u7965\u306e\u5e97\u300e\u30d6\u30e9\u30f3\u30c7\u30a3\u300f\uff08All About\uff09\u30001780\u5e74\u5275\u696d\u3002\u30ca\u30dd\u30ea\u30d4\u30c3\u30c4\u30a1\u3002\u8a18\u5ff5\u306b\u884c\u3063\u3066\u307f\u305f\u3044\u8001\u8217\u306e\u30d4\u30c3\u30c4\u30a7\u30ea\u30a2\u306e\u3072\u3068\u3064\u3067\u3059\u3002\u843d\u3061\u7740\u3044\u3066\u98df\u3079\u3089\u308c\u308b\u5e97\u5185\u306e\u96f0\u56f2\u6c17\u3067\u3001\u89b3\u5149\u5ba2\u3082\u5165\u308a\u3084\u3059\u3044\u306e\u304c\u9b45\u529b\u3002#\u30d4\u30b6\u306e\u65e5\u2026 https:\/\/t.co\/QuITCUfB6z","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110456679,"id_str":"110456679","name":"\u30e8\u30fc\u30ed\u30c3\u30d1\u65c5\u884c\u2708\u60c5\u5831\u90e8","screen_name":"euro_tour","location":"\u5927\u962a\u5e02\u5317\u533a\u540c\u5fc3\uff12\u4e01\u76ee","url":"http:\/\/www.euro-tour.co.jp\/","description":"\u30e8\u30fc\u30ed\u30c3\u30d1\u3001\u77e5\u3063\u30c8\u30af\u60c5\u5831\uff01\u30e8\u30fc\u30ed\u30c3\u30d1\u65c5\u884c\u3084\u8996\u5bdf\u306b\u5f79\u7acb\u3064\u6700\u65b0\u306e\u60c5\u5831\u3092\u53ce\u96c6\u3057\u3001\u7d39\u4ecb\uff01\u2728\u7d76\u666f\u30db\u30c6\u30eb\u3092\u306f\u3058\u3081\u3001\u6cca\u307e\u3063\u3066\u307f\u305f\u3044\u266a \u3068\u3063\u3066\u304a\u304d\u306e\u30db\u30c6\u30eb\u3082\u7d39\u4ecb\uff01\ud83d\udc95http:\/\/www.euro-tour.co.jp\/view-hotel\/","translator_type":"none","protected":false,"verified":false,"followers_count":507212,"friends_count":480454,"listed_count":7715,"favourites_count":805,"statuses_count":31921,"created_at":"Mon Feb 01 16:23:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"1004BD","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/845791107409588224\/0SSh_OOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/845791107409588224\/0SSh_OOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110456679\/1397707059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\ud83c\uddee\ud83c\uddf9\u30ca\u30dd\u30ea\u3001\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u767a\u7965\u306e\u5e97\u300e\u30d6\u30e9\u30f3\u30c7\u30a3\u300f\uff08All About\uff09\u30001780\u5e74\u5275\u696d\u3002\u30ca\u30dd\u30ea\u30d4\u30c3\u30c4\u30a1\u3002\u8a18\u5ff5\u306b\u884c\u3063\u3066\u307f\u305f\u3044\u8001\u8217\u306e\u30d4\u30c3\u30c4\u30a7\u30ea\u30a2\u306e\u3072\u3068\u3064\u3067\u3059\u3002\u843d\u3061\u7740\u3044\u3066\u98df\u3079\u3089\u308c\u308b\u5e97\u5185\u306e\u96f0\u56f2\u6c17\u3067\u3001\u89b3\u5149\u5ba2\u3082\u5165\u308a\u3084\u3059\u3044\u306e\u304c\u9b45\u529b\u3002#\u30d4\u30b6\u306e\u65e5\nhttps:\/\/t.co\/D0rtOyEcbj\n\u27a1\u30a4\u30bf\u30ea\u30a2\u306e\u30db\u30c6\u30eb\uff1ahttps:\/\/t.co\/zUyImIyNTB https:\/\/t.co\/T9cJ7HleAy","display_text_range":[0,171],"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[108,113]}],"urls":[{"url":"https:\/\/t.co\/D0rtOyEcbj","expanded_url":"https:\/\/allabout.co.jp\/gm\/gc\/416340\/","display_url":"allabout.co.jp\/gm\/gc\/416340\/","indices":[114,137]},{"url":"https:\/\/t.co\/zUyImIyNTB","expanded_url":"http:\/\/www.euro-tour.co.jp\/luxury-hotel\/italy.html","display_url":"euro-tour.co.jp\/luxury-hotel\/i\u2026","indices":[148,171]}],"user_mentions":[],"symbols":[],"media":[{"id":932375665613029377,"id_str":"932375665613029377","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":400,"resize":"fit"},"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"}}},{"id":932375689663102976,"id_str":"932375689663102976","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}},{"id":932375709103808512,"id_str":"932375709103808512","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932375665613029377,"id_str":"932375665613029377","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2uloVQAE1th1.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":400,"resize":"fit"},"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"}}},{"id":932375689663102976,"id_str":"932375689663102976","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2v_OUQAADFDT.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}},{"id":932375709103808512,"id_str":"932375709103808512","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB2xHpV4AARzAZ.jpg","url":"https:\/\/t.co\/T9cJ7HleAy","display_url":"pic.twitter.com\/T9cJ7HleAy","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":300,"resize":"fit"},"large":{"w":400,"h":300,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":15,"favorite_count":45,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[108,113]}],"urls":[{"url":"https:\/\/t.co\/QuITCUfB6z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932378001978818560","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Dqcopr2BdU","expanded_url":"https:\/\/twitter.com\/euro_tour\/status\/932378001978818560","display_url":"twitter.com\/euro_tour\/stat\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:27 +0000 2017","id":932386365261733893,"id_str":"932386365261733893","text":"dedicate to he \ud83c\udf54\ud83c\udf55\ud83d\udc8b\r\u2764\u2764\u2764\u2764 \rsolo\ud83d\udc9b\u2764","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2155480668,"id_str":"2155480668","name":"$#$\u21ad#$#","screen_name":"iceBleuCheetah","location":null,"url":null,"description":"$$MOLDERINGBOMBSHELL && \u00bf\u00bf %% ## \u007b\u007blovealways\u007d\u007d [xoxo] 9|27|2015 \u2728\u270c\ud83d\udc44\r\r-unhappy","translator_type":"none","protected":false,"verified":false,"followers_count":500,"friends_count":105,"listed_count":1,"favourites_count":118,"statuses_count":861,"created_at":"Fri Oct 25 19:10:43 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512261452330065920\/pQs3u4MY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512261452330065920\/pQs3u4MY.jpeg","profile_background_tile":true,"profile_link_color":"0792B5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489202317850607616\/cfylTBLm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489202317850607616\/cfylTBLm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2155480668\/1405461396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:26 +0000 2017","id":932386365034991617,"id_str":"932386365034991617","text":"RT @tyweezy_: On a pizza date with the prettiest girl ever \ud83c\udf55 https:\/\/t.co\/qTiEjR6C6q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703715598526578688,"id_str":"703715598526578688","name":"karlit!!","screen_name":"karlitaylor_","location":null,"url":"http:\/\/rainymood.com","description":"a lil bee-knee baby (who takes rain very seriously)","translator_type":"none","protected":false,"verified":false,"followers_count":407,"friends_count":579,"listed_count":4,"favourites_count":39248,"statuses_count":16521,"created_at":"Sat Feb 27 22:57:27 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931037506904006658\/QHyIiJxY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931037506904006658\/QHyIiJxY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703715598526578688\/1510811752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 18 20:28:13 +0000 2017","id":931982394957189120,"id_str":"931982394957189120","text":"On a pizza date with the prettiest girl ever \ud83c\udf55 https:\/\/t.co\/qTiEjR6C6q","display_text_range":[0,46],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69038189,"id_str":"69038189","name":"shooter mcgavin","screen_name":"tyweezy_","location":null,"url":null,"description":"make america grunge again \u2022 Robbie\u2764\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":233,"friends_count":101,"listed_count":2,"favourites_count":30351,"statuses_count":25751,"created_at":"Wed Aug 26 17:18:02 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545310463026679808\/nAwXNBZj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545310463026679808\/nAwXNBZj.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909825333100244992\/f0qG7Okk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909825333100244992\/f0qG7Okk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69038189\/1510812917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":5,"favorite_count":130,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tyweezy_","name":"shooter mcgavin","id":69038189,"id_str":"69038189","indices":[3,12]}],"symbols":[],"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":931982394957189120,"source_status_id_str":"931982394957189120","source_user_id":69038189,"source_user_id_str":"69038189"}]},"extended_entities":{"media":[{"id":931982388267241472,"id_str":"931982388267241472","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO8RC1WW0AAuRyx.jpg","url":"https:\/\/t.co\/qTiEjR6C6q","display_url":"pic.twitter.com\/qTiEjR6C6q","expanded_url":"https:\/\/twitter.com\/tyweezy_\/status\/931982394957189120\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":931982394957189120,"source_status_id_str":"931982394957189120","source_user_id":69038189,"source_user_id_str":"69038189"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:23 +0000 2017","id":932386348862005248,"id_str":"932386348862005248","text":"\ud83c\udf55 x31 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:22 +0000 2017","id":932386348245295104,"id_str":"932386348245295104","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4414645693,"id_str":"4414645693","name":"\u3055\u307c\u3066\u3093@23.\u9577\u8eab\u77ed\u5200\u64ae\u5f71","screen_name":"Kyolo108","location":"\u798f\u5ca1","url":"http:\/\/twpf.jp\/Kyolo108","description":"20\u2191\u307e\u3060\u307e\u3060\u64ae\u5f71\u529b\u306a\u3044\u672a\u719f\u8005\u3002\u3068\u3046\u3089\u3076\/\u304a\u305d\u677e\u3055\u3093\/\u30ab\u30b2\u30d7\u30ed\/\u6587\u30b9\u30c8\/\u6df1\u591c\u968a\/A3 etc\nF\u304a\u6c17\u8efd\u306b \u304a\u5225\u308c\u306fB \u8150\u3063\u3066\u307e\u3059\u304c\u8150\u767a\u8a00\u63a7\u3048\u3081\u2190 \u64ae\u5f71\u6280\u8853\u5411\u4e0a\u3092\u76ee\u6307\u3059 \uff01\n\n\u4f7f\u3063\u3066\u308b\u30ab\u30e1\u30e9\u306fCanon\u306e8000D\u3068kissx7\u3001powershot SX610 HS","translator_type":"none","protected":false,"verified":false,"followers_count":323,"friends_count":407,"listed_count":29,"favourites_count":5330,"statuses_count":30357,"created_at":"Mon Nov 30 23:31:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928172672390914048\/d-kYjMZ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928172672390914048\/d-kYjMZ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4414645693\/1506128219","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:22 +0000 2017","id":932386344793501697,"id_str":"932386344793501697","text":"Como le hacen para preferir tener alguien con quien estar el s\u00e1bado por la noche\ud83c\udf7b\ud83d\udc83\ud83c\udffb; que el domingo por la tarde\ud83d\ude34\ud83c\udfac\ud83c\udf55\ud83c\udf7f\ud83c\udf79\n\nSigo sin entender\u2019\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344249047,"id_str":"344249047","name":"BMC'\ud83c\udf38\ud83c\udf43","screen_name":"BeatrizMejiaC12","location":"Valledupar-Colombia ","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":544,"friends_count":340,"listed_count":0,"favourites_count":2013,"statuses_count":8587,"created_at":"Thu Jul 28 19:31:02 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBDAEA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584500984\/i3xqgxdjde8uezjzi5td.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584500984\/i3xqgxdjde8uezjzi5td.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"EADAEB","profile_sidebar_fill_color":"F7E6F7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874042972781850625\/K2K2XtXM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874042972781850625\/K2K2XtXM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344249047\/1437176272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"012d9a8d4001c284","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/012d9a8d4001c284.json","place_type":"city","name":"Valledupar","full_name":"Valledupar, Colombia","country_code":"CO","country":"Colombia","bounding_box":{"type":"Polygon","coordinates":[[[-73.857183,9.793337],[-73.857183,10.855564],[-73.069389,10.855564],[-73.069389,9.793337]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:21 +0000 2017","id":932386343849672705,"id_str":"932386343849672705","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416696247,"id_str":"416696247","name":"\u3042\u306e\u307a\u305f\u3093","screen_name":"anopetan","location":"Team\uff7e\uff86\uff7c\uff74\uff9d\uff80","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":297,"friends_count":639,"listed_count":15,"favourites_count":26427,"statuses_count":13051,"created_at":"Sun Nov 20 01:16:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918728234862198785\/mU2DTJsZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918728234862198785\/mU2DTJsZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416696247\/1491215283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:21 +0000 2017","id":932386340594884608,"id_str":"932386340594884608","text":"\u4eca\u65e5\u306f\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u79c1\u3001\u30d4\u30b6\u4f5c\u3063\u305f\u3053\u3068\u3042\u308b\u3088\u270c\ufe0f\n\u56de\u305b\u306a\u3044\u3051\u3069\ud83d\ude05\ud83d\udca6\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\n\u30de\u30e8\u30b8\u30e3\u30ac\ud83c\udf55\n\u98df\u3079\u305f\u304f\u306a\u3063\u3066\u304d\u305f\u306a\u3041\uff5e\n\n\u5c71P\u2764\ufe0f\u3042\u308a\u304c\u3068\u3046\u263a\ufe0f\n\u7d20\u6575\u306a\u4e00\u65e5\u3092\u904e\u3054\u3057\u3066\u30cd\ud83d\ude18\n\n#\u5c71\u4e0b\u667a\u4e45 \u5c71P\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163260018,"id_str":"3163260018","name":"\u3044\u3061\u3054","screen_name":"moon_disco49","location":null,"url":"http:\/\/ameblo.jp\/13ichigop\/entry-12138918149.html","description":"\u5c71P\u306e\u3053\u3068\u4ee5\u5916\u3001\u8208\u5473\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u9375\u57a2\u3001\u304a\u4eba\u67c4\u304c\u5168\u304f\u898b\u3048\u306a\u3044\u65b9\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\n\u5c71P\u304c\u6b69\u3044\u3066\u3044\u304f\u9053\u3092\u6c38\u9060\u306b\u5fdc\u63f4\u3057\u307e\u3059(\u0e51\u2022\u0300\u1d17- )\u2729","translator_type":"none","protected":false,"verified":false,"followers_count":779,"friends_count":277,"listed_count":5,"favourites_count":3752,"statuses_count":28747,"created_at":"Sun Apr 19 04:21:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592297857413058561\/G04joHBH.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927887577624985601\/Fxco3V8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163260018\/1502440752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[88,93]},{"text":"sound_tripper","indices":[99,113]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:20 +0000 2017","id":932386338912944128,"id_str":"932386338912944128","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":359913501,"id_str":"359913501","name":"\u307e\u3086\u3086\u306f\u2665\u6c421114\u2665BEAVER","screen_name":"milky1star","location":"\u3055\u3063\u307d\u308d\u526f\u90fd\u5fc3","url":"http:\/\/ameblo.jp\/maach-milky1star\/","description":"#lovefighters\n\u5ca1\u5927\u6d77\u3001\u6cf0\u793a\u3001\u512a\u5fc3\u3001\u5bae\u897f\u3055\u3093\u3001\u6709\u539f\u304f\u3093\uff01\n\u5143\u9060\u5f81\u3053\u3058\u3089\u305b\u3002aiko\u672c\u547d\nSUPER BEAVER\u304c\u4eca\u304d\u3066\u308b\uff01\uff01\uff01\n\uff3c\u30ab\u30f3\u30d1\u30cd\u30e9\u30fc\u3092\u76ee\u6307\u3059\u4eba\u751f\uff0f\n\u5ca1\u5d0e\u4f53\u80b21028\u3001WANIMA1104\u3001\u30ad\u30e5\u30a6\u30bd\n\u30b2\u30c3\u30bf\u30fc\u30ba\u98ef\u7530\u3055\u3093\u597d\u304d\nKANA\u3055\u3093\u00b7\u67f3\u7530\u53f2\u592a\u3055\u3093\u63a8\u3057\u3066\u307e\u3059","translator_type":"none","protected":false,"verified":false,"followers_count":172,"friends_count":330,"listed_count":2,"favourites_count":16022,"statuses_count":34095,"created_at":"Mon Aug 22 11:27:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/860839485625442304\/TvTl15ax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/860839485625442304\/TvTl15ax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359913501\/1494075104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:18 +0000 2017","id":932386327818989568,"id_str":"932386327818989568","text":"\u5c71P \u304a\u306f\u3088\u3046\n\n\u4eca\u65e5\u306f\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u305f\u307e\u30fc\u306b\u98df\u3079\u308b\n\u51fa\u524d\u3059\u308b\u6642\u306f\n\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u3001\u3058\u3083\u304c\u30de\u30e8\n\u5b50\u4f9b\u306e\u6642\u306e\u601d\u3044\u51fa\u306e\u5473\n\u30d4\u30b6\u4f5c\u308a\u3084\u3063\u3066\u307f\u305f\u3044\n\u4e0a\u306b\u6295\u3052\u3066\u56de\u3057\u3066^_^\n\n\u3048\u3063\u2048\u6295\u3052\u305f\u3044\u306e\ud83d\ude05\n\n#\u5c71\u4e0b\u667a\u4e45\n#sound_tripper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898499051,"id_str":"2898499051","name":"\u306e\u3063\u3053","screen_name":"nokko_0409","location":null,"url":null,"description":"\u5c71\uff30\u306e\u767a\u3059\u308b\u6e29\u5ea6\u304c\u582a\u3089\u306a\u304f\u597d\u304d","translator_type":"none","protected":false,"verified":false,"followers_count":81,"friends_count":107,"listed_count":1,"favourites_count":5472,"statuses_count":5618,"created_at":"Thu Nov 13 13:02:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876746684373401600\/pZJlvEK8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898499051\/1471783413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[94,99]},{"text":"sound_tripper","indices":[100,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:14 +0000 2017","id":932386313197699072,"id_str":"932386313197699072","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":903444541222543360,"id_str":"903444541222543360","name":"tomato","screen_name":"happy042967","location":null,"url":null,"description":"\u30a2\u30e9\u30b5\u30fc\u3067\u3001\u30c9\u30e9\u30de\u3001\u98df\u54c1\u3001\u751f\u6d3b\u7528\u54c1\u3001\u5316\u7ca7\u54c1\u3001\u6d0b\u670d\u306a\u3069\u6700\u65b0\u60c5\u5831\u3092\u8abf\u3079\u308b\u5927\u597d\u304d\u3067\u3059\u2764\ufe0f\u98df\u3092\u3059\u308b\u4e8b\u304c\u5927\u597d\u304d\u2764\ufe0f\u5927\u4eba\u306b\u306a\u3063\u3066\u3082\u307e\u3059\u304c\u3001\u6bce\u65e5\u304a\u3084\u3064\u3092\u98df\u3079\u3066\u3044\u307e\u3059\ud83e\udd5e\u666e\u6bb5\u3001\u30c4\u30a4\u30fc\u30c8\u3092\u305f\u304f\u3055\u3093\u6d41\u3057\u307e\u3059\u306e\u3067\u3001\u3054\u8ff7\u60d1\u304a\u639b\u3051\u3057\u307e\u3059\u304c\u3001\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude47\u203b\u4e0d\u9069\u5207\u306a\u884c\u70ba\u306e\u3042\u308b\u4eba\u3084\u30d3\u30b8\u30cd\u30b9\u3084\u30bb\u30fc\u30eb\u30b9\u306a\u3069\u307f\u3089\u308c\u308b\u4eba\u306f\u3001\u30d6\u30ed\u30c3\u30af\u3044\u305f\u3057\u307e\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":115,"friends_count":806,"listed_count":0,"favourites_count":6523,"statuses_count":9168,"created_at":"Fri Sep 01 02:28:58 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903454711746969604\/ytYTlrtS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903454711746969604\/ytYTlrtS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/903444541222543360\/1505828179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:13 +0000 2017","id":932386306902118401,"id_str":"932386306902118401","text":"RT @GabanaMultiespa: Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo x\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459866022,"id_str":"2459866022","name":"Gabana Multiespacio","screen_name":"GabanaMultiespa","location":"Navarro- Buenos Aires","url":null,"description":"Gabana Multiespacio.","translator_type":"none","protected":false,"verified":false,"followers_count":2422,"friends_count":822,"listed_count":0,"favourites_count":1036,"statuses_count":1815,"created_at":"Wed Apr 23 15:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459866022\/1471126180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 17 14:57:45 +0000 2017","id":931536843358777345,"id_str":"931536843358777345","text":"Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo\u2026 https:\/\/t.co\/t2YkIEF3j5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459866022,"id_str":"2459866022","name":"Gabana Multiespacio","screen_name":"GabanaMultiespa","location":"Navarro- Buenos Aires","url":null,"description":"Gabana Multiespacio.","translator_type":"none","protected":false,"verified":false,"followers_count":2422,"friends_count":822,"listed_count":0,"favourites_count":1036,"statuses_count":1815,"created_at":"Wed Apr 23 15:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736735516649918464\/OnR6iYmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459866022\/1471126180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Este finde el vip abre viernes y domingo. El lunes hay promo de pizzas para terminar el finde \ud83c\udf55 \nLargamos 2 shampoo x FAV y RT para el domingo\ud83c\udf7b\ud83e\udd42\ud83d\ude0e\ud83d\ude18","display_text_range":[0,146],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":84,"favorite_count":127,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t2YkIEF3j5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931536843358777345","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GabanaMultiespa","name":"Gabana Multiespacio","id":2459866022,"id_str":"2459866022","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:12 +0000 2017","id":932386306344214529,"id_str":"932386306344214529","text":"\u5c71P\ud83d\udc95\u7686\u3055\u3093\u304a\u306f\u3088\u30fc\ud83d\udc95\n\n\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u597d\u304d\u306d\u2728\u30d4\u30b6\u4f5c\u3063\u3066\u307f\u305f\u3044\u306e\u301c\u6b21\u56de\u306e\u4f1a\u5831\u3067\u3069\u3046\u2753\n\nparticipate\u2728\u53c2\u52a0\u3059\u308b\n\u5ca1\u7530\u304f\u3093\u3068\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u53c2\u52a0\u3057\u305f\u3093\u3060\ud83d\ude0a\n\u671d\u307e\u3067\u751f\u5c71P\ud83d\udc95\u306b\u53c2\u52a0\u3057\u305f\u3044\u3088\ud83d\udc95\n\u83ef\u9053\u3068\u8336\u9053\u2192\u2026 https:\/\/t.co\/c5U1swLNxT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771889586104590336,"id_str":"771889586104590336","name":"avopp","screen_name":"pyama_dream","location":null,"url":null,"description":"FF\u3067\u5c71P\u306b\u3068\u308a\u3064\u304b\u308c\u3066\u3057\u307e\u3044\u307e\u3057\u305f\uff08\u2267\u2207\u2266\uff09 \u512a\u3057\u3044sweetie\u306e\u65b9\u3068\u304a\u8a71\u51fa\u6765\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\u5e45\u5e83\u3044sweetie\u306e\u7686\u3055\u3093\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044 H29.4.20 \u30fb8.4 ST\u306b\u3066\u304a\u30cf\u30ac\u30ad\u8aad\u307e\u308c\u305f\u5947\u8de1\u2728","translator_type":"none","protected":false,"verified":false,"followers_count":324,"friends_count":144,"listed_count":4,"favourites_count":31213,"statuses_count":28050,"created_at":"Sat Sep 03 01:56:33 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851318494561837058\/QpFCEp_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851318494561837058\/QpFCEp_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771889586104590336\/1487490314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u5c71P\ud83d\udc95\u7686\u3055\u3093\u304a\u306f\u3088\u30fc\ud83d\udc95\n\n\u30d4\u30b6\u306e\u65e5\ud83c\udf55\u7167\u308a\u713c\u304d\u30c1\u30ad\u30f3\u597d\u304d\u306d\u2728\u30d4\u30b6\u4f5c\u3063\u3066\u307f\u305f\u3044\u306e\u301c\u6b21\u56de\u306e\u4f1a\u5831\u3067\u3069\u3046\u2753\n\nparticipate\u2728\u53c2\u52a0\u3059\u308b\n\u5ca1\u7530\u304f\u3093\u3068\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u53c2\u52a0\u3057\u305f\u3093\u3060\ud83d\ude0a\n\u671d\u307e\u3067\u751f\u5c71P\ud83d\udc95\u306b\u53c2\u52a0\u3057\u305f\u3044\u3088\ud83d\udc95\n\u83ef\u9053\u3068\u8336\u9053\u2192\u83ef\u9053\u304c\u3044\u3044\n\u30b3\u30f3\u30b5\u30fc\u30c8\u3067\u5c71P\u304c\u83ef\u98fe\u308b\u2049\ufe0f\u7b11\n\n\u5c71P\n#\u5c71\u4e0b\u667a\u4e45 #sound_tripper","display_text_range":[0,161],"entities":{"hashtags":[{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[141,146]},{"text":"sound_tripper","indices":[147,161]}],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c5U1swLNxT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932386306344214529","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:09 +0000 2017","id":932386292406480896,"id_str":"932386292406480896","text":"\u4eca\u65e5\u306f\u3001\u3001\u3001\u30d4\u30b6\u306e\u65e5\ud83c\udf55\n\u30a4\u30bf\u30ea\u30a2\u3092\u7d71\u4e00\u3057\u305f\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983\u306b\u3001\u30d4\u30b6\u8077\u4eba\u304c\u30a4\u30bf\u30ea\u30a2\u56fd\u65d7\u8272\u3092\u6a21\u3057\u305f\u30d4\u30b6\u3092\u732e\u4e0a\u3057\u305f\u306e\u304c\u3001\u300e\u30d4\u30c3\u30c4\u30a1\u30fb\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u300f\u306e\u59cb\u307e\u308a\u306a\u3093\u3060\u3063\u3066\u2606\n\u304a\u3082\u3066\u306a\u3057\u3063\u3066\u3001\u3044\u3044\u306d\u3063\u3063\ud83c\udf52\n#\u30d4\u30b6\u306e\u65e5 \n#\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983\n#\u30de\u30eb\u30b2\u30ea\u30fc\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":889323150080651266,"id_str":"889323150080651266","name":"\u3061\u3047\u308a\u30fc\u3061\u3047\u308a\u30fc","screen_name":"cccherry61","location":"JAPAN\ud83c\udf0f\ud83d\uddfe\ud83c\udf8c","url":null,"description":"\u6642\u4ee3\u306e\u6d41\u308c\u306b\u4ed8\u3044\u3066\u3044\u3051\u305a\u3001\u662d\u548c\u3067\u30b9\u30c8\u30c3\u30d7\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u3001\u3001\u3068\u308a\u3042\u3048\u305a\u59cb\u3081\u3066\u307f\u307e\u3057\u305f\ud83c\udf52\n\u5e83\u5cf6\u306e\u304a\u597d\u307f\u713c\u304d\u3092\u3001\u5e83\u5cf6\u98a8\u3067\u306f\u306a\u304f\u3001\u300e\u5e83\u5cf6\u6d41\u300f\u3068\u8a00\u308f\u308c\u308b\u65e5\u3092\u5922\u898b\u3066\u307e\u3059\ud83d\ude0b","translator_type":"none","protected":false,"verified":false,"followers_count":39,"friends_count":51,"listed_count":0,"favourites_count":832,"statuses_count":1174,"created_at":"Mon Jul 24 03:15:36 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912830809794527232\/ZFRd7o8t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912830809794527232\/ZFRd7o8t_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[96,101]},{"text":"\u30de\u30eb\u30b2\u30ea\u30fc\u30bf\u738b\u5983","indices":[103,112]},{"text":"\u30de\u30eb\u30b2\u30ea\u30fc\u30bf","indices":[113,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:09 +0000 2017","id":932386291550863360,"id_str":"932386291550863360","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4035738078,"id_str":"4035738078","name":"\u307e\u3086\u304d\u306d\u3053@\u7d75\u304c\u4e0a\u624b\u304f\u306a\u308a\u305f\u3044","screen_name":"mayukineko26","location":"\u3061\u304d\u3085\u3046\u306e\u3069\u3053\u304b","url":null,"description":"\u30b2\u30fc\u30e0\u2192\u30a2\u30a4\u30ca\u30ca\u3000\u767d\u3001\u9ed2\u732b \u30c9\u30e9\u30af\u30a810\u3000\u30d5\u30a7\u30a2\u30c9\u30eb\u3000\u30a8\u30eb\u30d7\u30ea\u3000\u305f\u307e\u306b\u30c7\u30ec\u30b9\u30c6\n\u30a2\u30cb\u30e1\u2192\u30ea\u30eb\u30ea\u30eb\u30d5\u30a7\u30a2\u30ea\u30eb\u3000\u30f4\u30a1\u30f3\u30ac\u3000\uff24\uff22\n\u6ac2\u304f\u3093\u5927\u597d\u304d(*\u00b4-`)\u3000\u63a8\u3057\u306f\u3044\u3063\u3071\u3044\u3002\n\u30ab\u30df\u30e5\u30d9\u30ed\u597d\u304d\uff01\u7d75\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u304f\u308c\u305f\u3089\u6ce3\u3044\u3066\u559c\u3076\u3002\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u2026http:\/\/twpf.jp\/mayukineko26\n\u30ec\u30d9\u30eb\u30e1\u30a2\u3061\u3083\u3093\u306e\u30b0\u30c3\u30ba\u304f\u3060\u3055\u3044","translator_type":"none","protected":false,"verified":false,"followers_count":160,"friends_count":520,"listed_count":1,"favourites_count":6194,"statuses_count":1646,"created_at":"Tue Oct 27 13:24:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909920742887776256\/3vdxKd2d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909920742887776256\/3vdxKd2d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035738078\/1509380590","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:05 +0000 2017","id":932386276690378752,"id_str":"932386276690378752","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405598410,"id_str":"405598410","name":"\u30ea\u30aa\u30ca\u3071\u306f","screen_name":"rionaryusei","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":46,"listed_count":0,"favourites_count":4,"statuses_count":223,"created_at":"Sat Nov 05 14:50:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:13:05 +0000 2017","id":932386273930518528,"id_str":"932386273930518528","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736536837733285888,"id_str":"736536837733285888","name":"Mitsuru@\u30e9\u30d6\u30a4\u30f3\u30d1\u30af\u30c8\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\u266a","screen_name":"air_326rr","location":"\u300e\u5fc3\u795e\u300f\u8a66\u9a13\u98db\u884c\u5730","url":"http:\/\/www.pixiv.net\/member.php?id=16419769","description":"\u65e5\u3005\u7cbe\u9032\u4e2d\u306e\u540c\u4eba\u7d75\u63cf\u304d\u3002\u30b3\u30d4\u30c3\u30af\u6c11\u266a \u516c\u79c1\u3067\u5275\u4f5c\u6d3b\u52d5\u3092\uff76\uff9e\uff9d\uff8a\uff9e\u3063\u3066\u3089\u3063\u3057\u3083\u308b\u7686\u69d8\u3092\u5fdc\u63f4\u4e2d\u266a\u7a42\u4e43\u679c\u3061\u3083\u3093&\u66dc\u3061\u3083\u3093\u63a8\u3057\u266aRT\u591a\u3081\u3002\u7121\u65ad\u8ee2\u8f09\u7981\u6b62\uff83\uff9e\uff7d\u3002\u30d5\u30a9\u30ed\u30fc\u3001RT\u306f\u304a\u6c17\u8efd\u306b\u266a\u30b3\u30c1\u30e9\u3082\u3069\u30fc\u305e\u2192http:\/\/twpf.jp\/air_326rr\u304a\u984c\u7bb1\u2192https:\/\/odaibako.net\/u\/air_326rr","translator_type":"none","protected":false,"verified":false,"followers_count":598,"friends_count":405,"listed_count":47,"favourites_count":64209,"statuses_count":47883,"created_at":"Sat May 28 12:37:21 +0000 2016","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930641699897929728\/1aXb3xbM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930641699897929728\/1aXb3xbM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736536837733285888\/1507412237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:59 +0000 2017","id":932386249276407808,"id_str":"932386249276407808","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98824360,"id_str":"98824360","name":"\u306a\u304c\u307f\u306d\u307e\u304d","screen_name":"macky_demons","location":"\u5bb6","url":"http:\/\/www.pixiv.net\/member.php?id=1515345","description":"FGO\u3001\u30a2\u30ba\u30ec\u30f3\u3001\u80b2\u5150\uff08 #2014Dec_baby \u3001 #2016Nov_baby \uff09\u3001\u4e0b\u30cd\u30bf\u3001\u611a\u75f4\u3092\u5927\u91cf\u306b\u545f\u304d\u307e\u3059\u3002RT\u591a\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u7d1b\u308c\n#\u606f\u5b50\u3055\u3093\u30ec\u30dd\u30fc\u30c8\n\u30d8\u30c3\u30c0\u30fc\u306f\u00a9sega","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":166,"listed_count":26,"favourites_count":5286,"statuses_count":95731,"created_at":"Wed Dec 23 07:26:50 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158565189\/hEK6oLNx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158565189\/hEK6oLNx.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/765533893311107072\/MSqT-MtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/765533893311107072\/MSqT-MtU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98824360\/1432874508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:57 +0000 2017","id":932386239352852482,"id_str":"932386239352852482","text":"\ud83c\udf55 x30 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:53 +0000 2017","id":932386225352314881,"id_str":"932386225352314881","text":"Thank you mbc2 , this horror movie is on the right time \ud83d\udc7b\ud83c\udf55.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1925287112,"id_str":"1925287112","name":"Mesh\u0645\u0627\u063a\u064a\u0631\u0647\u0627\ud83c\uddf8\ud83c\udde6","screen_name":"mesh_898","location":null,"url":null,"description":"\u203a \u032e \u0627\u0644\u0644\u0647\u0645 \u0633\u0647\u0644 \u062f\u0631\u0628\u064a \u0648\u0627\u063a\u0641\u0631\u0644\u064a \u0648\u0627\u0631\u062d\u0645\u0646\u064a \u064a \u0627\u0631\u062d\u0645 \u0627\u0644\u0631\u0627\u062d\u0645\u064a\u0646 ~ #\u0623\u0645\u064a_\u0648\u0643\u0641\u0649","translator_type":"none","protected":false,"verified":false,"followers_count":892,"friends_count":1025,"listed_count":1,"favourites_count":2012,"statuses_count":5977,"created_at":"Wed Oct 02 01:49:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817757282138263552\/mmjL-f_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817757282138263552\/mmjL-f_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1925287112\/1483803169","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:52 +0000 2017","id":932386220805570560,"id_str":"932386220805570560","text":"RT @suntory: \ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310111541,"id_str":"2310111541","name":"Sachiko\ud83c\udf0825th\u2661","screen_name":"stk_aeo","location":"Osaka","url":null,"description":"\u5948\u7f8e\u6075\u3055\u3093\u3068\u98db\u884c\u6a5f\u304c\u597d\u304d\u3067\u3059\u3002\n\u4eca\u5e74\u306f1\/8\u30689\/16\u306b\u5948\u7f8e\u6075\u3055\u3093\u306b\u4f1a\u3046\u2661\u2661\u2661","translator_type":"none","protected":false,"verified":false,"followers_count":188,"friends_count":345,"listed_count":2,"favourites_count":1210,"statuses_count":20402,"created_at":"Sat Jan 25 14:12:12 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539789255371796480\/H5DBBpte.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539789255371796480\/H5DBBpte.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904120394411524096\/DwpUHO4I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904120394411524096\/DwpUHO4I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310111541\/1506380606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:01 +0000 2017","id":932382987873865729,"id_str":"932382987873865729","text":"\ud83c\udf55\ud83c\udf55\ud83c\udf55 \u4eca\u65e5\u306f #\u30d4\u30b6\u306e\u65e5 \ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u30d4\u30b6\u3068\u4e00\u7dd2\u306b\u98f2\u307f\u305f\u3044\u98f2\u307f\u7269\u306f\u3069\u3063\u3061\u2049\ufe0f\n\u3044\u3044\u306d or RT\u3067\u7b54\u3048\u3066\u306d\ud83e\udd24\ud83d\udc95\n\n\u300c#\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc\u300d\u306e\u4eba\ud83d\udc49\u3044\u3044\u306d\u2764\ufe0f\n\u300c#\u30da\u30d7\u30b7\u300d\u306e\u4eba\ud83d\udc49RT\ud83d\udcab https:\/\/t.co\/4iGPClo5Wx","display_text_range":[0,87],"source":"\u003ca href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133684052,"id_str":"133684052","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","screen_name":"suntory","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u53f0\u5834","url":"http:\/\/www.suntory.co.jp\/","description":"\u30b5\u30f3\u30c8\u30ea\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f20\u6b73\u4ee5\u4e0a\u306e\u65b9\u9650\u5b9a\u3067\u3059\u3002 \u3054\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/jop0B3 \u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192http:\/\/goo.gl\/d5V6d","translator_type":"regular","protected":false,"verified":true,"followers_count":603104,"friends_count":31,"listed_count":2258,"favourites_count":542,"statuses_count":2884333,"created_at":"Fri Apr 16 11:16:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850861581\/9a53622d4a718f61cbd952feae09820c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3567001630\/aed0e05a78467be3f08394e65f2aea93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133684052\/1503367267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":5,"retweet_count":111,"favorite_count":84,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[8,13]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[58,65]},{"text":"\u30da\u30d7\u30b7","indices":[76,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d4\u30b6\u306e\u65e5","indices":[21,26]},{"text":"\u30aa\u30fc\u30eb\u30d5\u30ea\u30fc","indices":[71,78]},{"text":"\u30da\u30d7\u30b7","indices":[89,93]}],"urls":[],"user_mentions":[{"screen_name":"suntory","name":"SUNTORY\uff08\u30b5\u30f3\u30c8\u30ea\u30fc\uff09","id":133684052,"id_str":"133684052","indices":[3,11]}],"symbols":[],"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"extended_entities":{"media":[{"id":932382984191270912,"id_str":"932382984191270912","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB9YldW4AA_gMN.jpg","url":"https:\/\/t.co\/4iGPClo5Wx","display_url":"pic.twitter.com\/4iGPClo5Wx","expanded_url":"https:\/\/twitter.com\/suntory\/status\/932382987873865729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":932382987873865729,"source_status_id_str":"932382987873865729","source_user_id":133684052,"source_user_id_str":"133684052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:47 +0000 2017","id":932386200773677056,"id_str":"932386200773677056","text":"RT @SaraBethSimon: @achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (secret)\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925004551127576576,"id_str":"925004551127576576","name":"Soham214","screen_name":"BDS_justice4all","location":"Texas, USA","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":146,"friends_count":49,"listed_count":1,"favourites_count":2204,"statuses_count":4835,"created_at":"Mon Oct 30 14:20:45 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925030534136209409\/4k9mT7uB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925030534136209409\/4k9mT7uB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925004551127576576\/1510773482","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 20:18:16 +0000 2017","id":932342282052947972,"id_str":"932342282052947972","text":"@achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (se\u2026 https:\/\/t.co\/wB4y1Ki254","display_text_range":[81,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":932300588825694209,"in_reply_to_status_id_str":"932300588825694209","in_reply_to_user_id":22408314,"in_reply_to_user_id_str":"22408314","in_reply_to_screen_name":"achariw","user":{"id":947586372,"id_str":"947586372","name":"Sara Elizabeth Sim\u00f6n","screen_name":"SaraBethSimon","location":null,"url":null,"description":"#Psychology \u2022 #Psychiatry \u2022 #Behavior \u2022 #NLP \u2022 #Neuroscience \u2022 Ethical #Vegan https:\/\/t.co\/XiFGS0alKg \u2022 In love with the #Ocean https:\/\/t.co\/5u0v5yuwJp","translator_type":"none","protected":false,"verified":false,"followers_count":2458,"friends_count":450,"listed_count":308,"favourites_count":839,"statuses_count":15765,"created_at":"Wed Nov 14 11:46:16 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/707918880853856257\/jDnXU1NT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/707918880853856257\/jDnXU1NT.jpg","profile_background_tile":true,"profile_link_color":"43A6A5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876522831642800133\/iSxJk_bN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876522831642800133\/iSxJk_bN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947586372\/1478786999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@achariw @ShaunPrince_ @intj_jones @adafitni @insuradude @AmyKinLA @Just_a_Texan Compare it to Obama throwing a (secret) lavish #AliceInWonderland party or flying $65K worth of \ud83c\udf55 & \ud83c\udf2d from Chicago in the middle of the recession. \n\nhttps:\/\/t.co\/bABFUaJT25 \n\n#QAnon #DownTheRabbitHole #FollowTheWhiteRabbit ; pic via @wikileaks https:\/\/t.co\/CTaigE49zJ","display_text_range":[81,328],"entities":{"hashtags":[{"text":"AliceInWonderland","indices":[128,146]},{"text":"QAnon","indices":[260,266]},{"text":"DownTheRabbitHole","indices":[267,285]},{"text":"FollowTheWhiteRabbit","indices":[286,307]}],"urls":[{"url":"https:\/\/t.co\/bABFUaJT25","expanded_url":"http:\/\/www.dailymail.co.uk\/news\/article-2926312\/Was-Lewis-Carroll-repressed-paedophile-BBC-documentary-examines-relationship-children-uncovers-shocking-naked-photo-real-Alice-s-sister-taken-Alice-Wonderland-creator.html","display_url":"dailymail.co.uk\/news\/article-2\u2026","indices":[234,257]}],"user_mentions":[{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[0,8]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[9,22]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[23,34]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[35,44]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[45,56]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[57,66]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[67,80]},{"screen_name":"wikileaks","name":"WikiLeaks","id":16589206,"id_str":"16589206","indices":[318,328]}],"symbols":[],"media":[{"id":932341712474787840,"id_str":"932341712474787840","indices":[329,352],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","url":"https:\/\/t.co\/CTaigE49zJ","display_url":"pic.twitter.com\/CTaigE49zJ","expanded_url":"https:\/\/twitter.com\/SaraBethSimon\/status\/932342282052947972\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932341712474787840,"id_str":"932341712474787840","indices":[329,352],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBX2QVW0AAZLmG.jpg","url":"https:\/\/t.co\/CTaigE49zJ","display_url":"pic.twitter.com\/CTaigE49zJ","expanded_url":"https:\/\/twitter.com\/SaraBethSimon\/status\/932342282052947972\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"medium":{"w":750,"h":706,"resize":"fit"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":13,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wB4y1Ki254","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932342282052947972","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[0,8]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[9,22]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[23,34]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[35,44]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[45,56]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[57,66]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[67,80]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SaraBethSimon","name":"Sara Elizabeth Sim\u00f6n","id":947586372,"id_str":"947586372","indices":[3,17]},{"screen_name":"achariw","name":"Anita Chariw","id":22408314,"id_str":"22408314","indices":[19,27]},{"screen_name":"ShaunPrince_","name":"Shaun Prince","id":813445806,"id_str":"813445806","indices":[28,41]},{"screen_name":"intj_jones","name":"INTJ_Emma","id":912347016646230016,"id_str":"912347016646230016","indices":[42,53]},{"screen_name":"adafitni","name":"forever rose DMT pipe","id":804360691591172096,"id_str":"804360691591172096","indices":[54,63]},{"screen_name":"insuradude","name":"#Deplorable Dan","id":16822681,"id_str":"16822681","indices":[64,75]},{"screen_name":"AmyKinLA","name":"Amy Kaufman","id":24668317,"id_str":"24668317","indices":[76,85]},{"screen_name":"Just_a_Texan","name":"Ulysses","id":884304968,"id_str":"884304968","indices":[86,99]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:47 +0000 2017","id":932386200769277952,"id_str":"932386200769277952","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925127550,"id_str":"925127550","name":"MUSASINO\u30e2\u30ea\u30c8","screen_name":"musamorito","location":"\u57fc\u7389\u306e\u65b9","url":"http:\/\/blogs.yahoo.co.jp\/e331tx","description":"\u9244(\u9053\u6210)\u5206\u304c\u591a\u3044\u4eba\u3002 \u4e3b\u306b\u30cb\u30c1\u30a2\u30b5\u3084\u30d7\u30e9\u30ec\u30fc\u30eb\u3001\u30d7\u30ea\u30ad\u30e5\u30a2\u3001N\u30b2\u30fc\u30b8\u3001\u9244\u9053\u3001\u99c5\u30e1\u30e2\u3001TF\u3001\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u30d2\u30ab\u30ea\u30a2\u30f3\u3001\u3054\u3061\u3046\u3055\u3001\u30a2\u30cb\u30e1\u306a\u3069\u304c\u597d\u304d\u306a\u4eba\u3067\u3059\u3002 \u7d50\u69cb\u591a\u8da3\u5473\u3002\n\u8a73\u3057\u3044\u3053\u3068\u306f \u30c4\u30a4\u30d7\u30ed\u3078\u3000http:\/\/twpf.jp\/musamorito","translator_type":"none","protected":false,"verified":false,"followers_count":1995,"friends_count":2136,"listed_count":33,"favourites_count":38179,"statuses_count":117047,"created_at":"Sun Nov 04 11:05:44 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C16543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914490076528119808\/oBHUvRjw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914490076528119808\/oBHUvRjw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925127550\/1502719068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:43 +0000 2017","id":932386181844754433,"id_str":"932386181844754433","text":"\ud83c\udf55 x29 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:42 +0000 2017","id":932386176442310656,"id_str":"932386176442310656","text":"RT @KITKATJapan: \u30d4\u30b6\u3068\u3044\u3048\u3070\ud83c\udf55\n\u3053\u3093\u306a\u5922\u306e\u30b3\u30e9\u30dc\u304c\u3042\u3063\u305f\u306e\u77e5\u3063\u3066\u3044\u307e\u3057\u305f\u304b\uff1f\n\u30b5\u30af\u30c3\u3068\u3057\u305f\u30d4\u30b6\u751f\u5730\u306b\u3001\u9999\u3070\u3057\u3044 #\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8\uff65\uff65\uff65\n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3 https:\/\/t.co\/KKpGi\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141661988,"id_str":"141661988","name":"\u30ab\u30a4","screen_name":"kaimimaa","location":"\u5929\u56fd\u3068\u5730\u7344\u306e\u9593\u3002\u3064\u307e\u308a\u3053\u306e\u4e16\u3001\u73fe\u4e16\u3002","url":null,"description":"\u5bdd\u3066\u3082\u9192\u3081\u3066\u3082\u6709\u9802\u5929\u3063\u3066\u4eba\u9593\u3084\u3063\u3066\u307e\u3057\u305f\u2606 \u7269\u5fc3\u3064\u3044\u305f\u6642\u304b\u3089\u597d\u304d\u306a\u7269\u304c\u5909\u308f\u3063\u3066\u307e\u305b\u3093\u3002 2\u67088\u65e5\u751f\u307e\u308c\uff08\u30b8\u30a7\u30fc\u30e0\u30b9\u30fb\u30c7\u30a3\u30fc\u30f3\u3068\u540c\u3058(\u7b11)\uff09\u6bd2\u5410\u304d\u5996\u602a\u2606","translator_type":"regular","protected":false,"verified":false,"followers_count":496,"friends_count":665,"listed_count":6,"favourites_count":8918,"statuses_count":75250,"created_at":"Sat May 08 17:35:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/854588207647805440\/k3rEkQ6e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/854588207647805440\/k3rEkQ6e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141661988\/1444257125","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:01:01 +0000 2017","id":932383239020281856,"id_str":"932383239020281856","text":"\u30d4\u30b6\u3068\u3044\u3048\u3070\ud83c\udf55\n\u3053\u3093\u306a\u5922\u306e\u30b3\u30e9\u30dc\u304c\u3042\u3063\u305f\u306e\u77e5\u3063\u3066\u3044\u307e\u3057\u305f\u304b\uff1f\n\u30b5\u30af\u30c3\u3068\u3057\u305f\u30d4\u30b6\u751f\u5730\u306b\u3001\u9999\u3070\u3057\u3044 #\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8\uff65\uff65\uff65\n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3 https:\/\/t.co\/KKpGiwj4Rv","display_text_range":[0,103],"source":"\u003ca href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads Composer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586996049,"id_str":"2586996049","name":"KIT KAT Japan","screen_name":"KITKATJapan","location":"Kobe, Japan","url":"http:\/\/nestle.jp\/brand\/kit\/","description":"\u30cd\u30b9\u30ec\u65e5\u672c(\u682a)KIT KAT\u30d6\u30e9\u30f3\u30c9\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u307f\u306a\u3055\u3093\u306e\u30d6\u30ec\u30a4\u30af\u30bf\u30a4\u30e0\u304c\u3055\u3089\u306b\u697d\u3057\u3044\u3082\u306e\u306b\u306a\u308b\u3088\u3046\u3044\u308d\u3093\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u767a\u4fe1\u7528\u3067\u3059\u304c\u3001\u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u306b\u306f\u601d\u308f\u305a\u300c\u4e2d\u306e\u4eba\u300d\u304c\u8a71\u3057\u304b\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u304a\u554f\u5408\u305b\u306f\uff20NestleVOC\u307e\u3067 \uff03HaveABreak","translator_type":"regular","protected":false,"verified":true,"followers_count":159039,"friends_count":9,"listed_count":459,"favourites_count":846,"statuses_count":1314383,"created_at":"Wed Jun 25 06:18:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875574535868661760\/B1vOgbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586996049\/1507078475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":17,"favorite_count":46,"entities":{"hashtags":[{"text":"\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8","indices":[48,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":931463089534377985,"id_str":"931463089534377985","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","url":"https:\/\/t.co\/KKpGiwj4Rv","display_url":"pic.twitter.com\/KKpGiwj4Rv","expanded_url":"https:\/\/twitter.com\/KITKATJapan\/status\/932383239020281856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":698,"h":508,"resize":"fit"},"large":{"w":698,"h":508,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931463089534377985,"id_str":"931463089534377985","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO04vq0VoAEaVWe.jpg","url":"https:\/\/t.co\/KKpGiwj4Rv","display_url":"pic.twitter.com\/KKpGiwj4Rv","expanded_url":"https:\/\/twitter.com\/KITKATJapan\/status\/932383239020281856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":698,"h":508,"resize":"fit"},"large":{"w":698,"h":508,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u713c\u304d\u30ad\u30c3\u30c8\u30ab\u30c3\u30c8","indices":[65,74]}],"urls":[],"user_mentions":[{"screen_name":"KITKATJapan","name":"KIT KAT Japan","id":2586996049,"id_str":"2586996049","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:41 +0000 2017","id":932386173577781249,"id_str":"932386173577781249","text":"RT @BlaguesDessins: #CommanderUnePizza \ud83c\udf55 :\nImitez la voix de la personne qui prend les commandes.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120322976,"id_str":"120322976","name":"niiitooo","screen_name":"tonidemantes","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":408,"friends_count":1035,"listed_count":30,"favourites_count":25481,"statuses_count":37895,"created_at":"Sat Mar 06 03:21:45 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034410346412\/ebe8232b8a7d4957ddce28bdab3a0f6a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034410346412\/ebe8232b8a7d4957ddce28bdab3a0f6a.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907362372012167170\/1eLuUX0t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907362372012167170\/1eLuUX0t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120322976\/1502054764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:00:06 +0000 2017","id":932383005703884801,"id_str":"932383005703884801","text":"#CommanderUnePizza \ud83c\udf55 :\nImitez la voix de la personne qui prend les commandes.","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire - Go Big\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2580787003,"id_str":"2580787003","name":"Blagues et Dessins","screen_name":"BlaguesDessins","location":null,"url":"http:\/\/www.blagues-et-dessins.com","description":"Peut-on rire de tout ? Oui, mais pas avec n'importe qui... Et vous n'\u00eates pas n'importe qui !!!\n#Humour #Blagues","translator_type":"none","protected":false,"verified":false,"followers_count":87306,"friends_count":84477,"listed_count":147,"favourites_count":2381,"statuses_count":14343,"created_at":"Sat Jun 21 17:16:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480399548964032512\/fspSswgP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480399548964032512\/fspSswgP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2580787003\/1408010683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":1,"favorite_count":5,"entities":{"hashtags":[{"text":"CommanderUnePizza","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CommanderUnePizza","indices":[20,38]}],"urls":[],"user_mentions":[{"screen_name":"BlaguesDessins","name":"Blagues et Dessins","id":2580787003,"id_str":"2580787003","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:37 +0000 2017","id":932386157773570049,"id_str":"932386157773570049","text":"\u30d4\u30b6\ud83c\udf55\n\n\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u597d\u304d\u5f61(^)(^)\n\n#\u4eca\u65e5\u306f\u4f55\u306e\u65e5 https:\/\/t.co\/vWLMlVsjLS","display_text_range":[0,36],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350712503,"id_str":"350712503","name":"\u5c0f\u9e7f\u6df3\u30aa\u30c8\u30eb\u30fc\u30d7(\u9593\u9aea\u5165\u308c\u305a\u306b11\/20(\u6708)\u6e0b\u8c37DESEO)","screen_name":"JUN_WADS","location":null,"url":"http:\/\/otoloop.com","description":"\u30aa\u30c8\u30eb\u30fc\u30d7\u306e\u30c9\u30e9\u30e0&\u30b3\u30fc\u30e9\u30b9\u3001\u30cb\u30b8\u30de\u30b9\u25fc\ufe0e\u6700\u65b0\u30ea\u30ea\u30c3\u30af\u30e0\u30fc\u30d3\u30fc\u3010\u30ea\u30cf\u30ed\u3011https:\/\/youtu.be\/tqAXgYBZ_Y8\u25fc\ufe0eMV\u3010\u3053\u3068\u3070\u3092\u77e5\u308a\u305f\u3044\u3011https:\/\/youtu.be\/pU7k2raunCo\u3010\u30a2\u30de\u30ce\u30b8\u30e3\u30af\u306e\u72ec\u767d\u3011https:\/\/youtu.be\/2kEpbSRUdVA","translator_type":"none","protected":false,"verified":false,"followers_count":9587,"friends_count":10541,"listed_count":59,"favourites_count":28740,"statuses_count":15646,"created_at":"Mon Aug 08 06:02:55 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867035938475708416\/B-iaGvXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350712503\/1387300819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4eca\u65e5\u306f\u4f55\u306e\u65e5","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932386152111259648,"id_str":"932386152111259648","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCAQ-4VwAACgYY.jpg","url":"https:\/\/t.co\/vWLMlVsjLS","display_url":"pic.twitter.com\/vWLMlVsjLS","expanded_url":"https:\/\/twitter.com\/JUN_WADS\/status\/932386157773570049\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":439,"resize":"fit"},"medium":{"w":750,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:36 +0000 2017","id":932386151901683717,"id_str":"932386151901683717","text":"Eating Pizza \ud83c\udf55 and watching the Patriots! @ Oggi's Sports Brewhouse\u2026 https:\/\/t.co\/6brKa3Whtl","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5793962,"id_str":"5793962","name":"Rockedby","screen_name":"rickmoffett","location":"\u00dcT: 33.871559,-117.917107","url":"http:\/\/rockedbythreeshots.com\/","description":"Pod-caster, Disney Cast Member, Music fan and Craft Beer Connoisseur.\nSubmit Music to rickmoffett@gmail.com","translator_type":"none","protected":false,"verified":false,"followers_count":344,"friends_count":1479,"listed_count":14,"favourites_count":482,"statuses_count":6271,"created_at":"Sat May 05 19:05:02 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594367086350114816\/sIkQvxZJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594367086350114816\/sIkQvxZJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5793962\/1430285808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[33.874428,-117.884559]},"coordinates":{"type":"Point","coordinates":[-117.884559,33.874428]},"place":{"id":"2feb76248fd9c581","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2feb76248fd9c581.json","place_type":"city","name":"Fullerton","full_name":"Fullerton, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-117.985941,33.853881],[-117.985941,33.924814],[-117.863844,33.924814],[-117.863844,33.853881]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6brKa3Whtl","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsd_KolDzJjcAyjz_i89mx-VpoVmvbnzKrgtM0\/","display_url":"instagram.com\/p\/Bbsd_KolDzJj\u2026","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:35 +0000 2017","id":932386147887489024,"id_str":"932386147887489024","text":"RT @takaratomytoys: \uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1021474712,"id_str":"1021474712","name":"\u307f\u308f","screen_name":"miwakoko_","location":"\u30e9\u30ca\u30f3\u30ad\u30e5\u30e9\u30b9\u306e\u4e2d","url":"http:\/\/twpf.jp\/miwakoko_","description":"\ud83d\udc90\ud83c\udf37\u82b1\u3068\u6d77\u5916\u30a2\u30cb\u30e1\u3068\u6620\u753b\u3068\u304a\u3058\u69d8\u304c\u4e3b\u6210\u5206\ud83c\udf37\ud83d\udc90","translator_type":"none","protected":false,"verified":false,"followers_count":327,"friends_count":325,"listed_count":2,"favourites_count":10454,"statuses_count":15811,"created_at":"Wed Dec 19 06:30:15 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/868751049674244096\/bivBGkN3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/868751049674244096\/bivBGkN3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1021474712\/1493386329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 19 23:02:01 +0000 2017","id":932383491844579328,"id_str":"932383491844579328","text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\u2026 https:\/\/t.co\/B8wvJCwsqb","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145144333,"id_str":"145144333","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","screen_name":"takaratomytoys","location":"\u6771\u4eac\u90fd\u845b\u98fe\u533a","url":"http:\/\/www.takaratomy.co.jp","description":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc\u306e\u5546\u54c1\u7d39\u4ecb\u3084\u30a4\u30d9\u30f3\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u697d\u3057\u3044\u3053\u3068\u3092\u3042\u308c\u3053\u308c\u304a\u3057\u3089\u305b\u3057\u307e\u3059\u3002\u307f\u306a\u3055\u3093\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\uff01\u5546\u54c1\u30fb\u30b5\u30fc\u30d3\u30b9\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u306e\u304a\u5ba2\u69d8\u76f8\u8ac7\u5ba4\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u21d2 http:\/\/www.takaratomy.co.jp\/support\/other.html","translator_type":"none","protected":false,"verified":true,"followers_count":144135,"friends_count":972,"listed_count":1575,"favourites_count":67379,"statuses_count":42114,"created_at":"Tue May 18 06:38:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663658017766817792\/FwPkByFo.jpg","profile_background_tile":true,"profile_link_color":"024EAB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925607242358956034\/TKvqMrQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145144333\/1475720988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\uff3c\u672c\u65e5\u306f\u30d4\u30b6\u306e\u65e5\uff0f\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\u3000\u3000\u3000\u3000\u3000\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\u3000\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\ud83c\udf55\n\u3000\ud83c\udf55\ud83c\udf55\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55\n\u3000\u3000\u3000\ud83c\udf55\ud83c\udf55 https:\/\/t.co\/wzEHfJKzZJ","display_text_range":[0,141],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932108005256003584,"id_str":"932108005256003584","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO-DStGVAAA-apP.jpg","url":"https:\/\/t.co\/wzEHfJKzZJ","display_url":"pic.twitter.com\/wzEHfJKzZJ","expanded_url":"https:\/\/twitter.com\/takaratomytoys\/status\/932383491844579328\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":817,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":817,"resize":"fit"},"small":{"w":680,"h":463,"resize":"fit"}}}]}},"quote_count":0,"reply_count":6,"retweet_count":75,"favorite_count":120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B8wvJCwsqb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932383491844579328","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takaratomytoys","name":"\u30bf\u30ab\u30e9\u30c8\u30df\u30fc(\u30af\u30ea\u30b9\u30de\u30b9\u307e\u3067\u3042\u306835\u65e5)","id":145144333,"id_str":"145144333","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:32 +0000 2017","id":932386138022584320,"id_str":"932386138022584320","text":"@Pz62 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059( \u00b4 \u25bd ` )\uff89\n\u30d4\u30b6\u306e\u65e5\u306a\u3093\u3067\u3059\u306d\u3002\n\u30d3\u30fc\u30eb\ud83c\udf7a\u3068\u30d4\u30b6\ud83c\udf55\u306e\u7d44\u307f\u5408\u308f\u305b\n\u6700\u9ad8\u3067\u3059\u306d\u3002\ud83d\ude04\u2728\n\u571f\u66dc\u65e5\u306f\u3001\u96e8\u964d\u3063\u305f\u308a\u6b62\u3093\u3060\u3059\u308b\u4e2d\n\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\u3068\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\n\u5f92\u6b69\u79fb\u52d5\u3067\u6b69\u6570\u8a08\u30672\u4e078\u5343\u6b69\u8d85\u3048\u3066\u307e\u3057\u305f\u3002\u7d42\u65e5\u6c17\u6e29\u4f4e\u3044\u69d8\u306a\u306e\u3067\u98a8\u90aa\u5f15\u304b\u306a\u3044\u69d8\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","display_text_range":[6,138],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932338951662157824,"in_reply_to_status_id_str":"932338951662157824","in_reply_to_user_id":107998753,"in_reply_to_user_id_str":"107998753","in_reply_to_screen_name":"Pz62","user":{"id":175349671,"id_str":"175349671","name":"\u304a\u307e\u3063\u3059\u30fc","screen_name":"omassu_0927","location":"\u65e5\u672c \u6771\u4eac","url":"http:\/\/ameba.ne.jp\/ommassu0927\/","description":"2005\/05\u304b\u3089\u4ed5\u4e8b\u3057\u306a\u304c\u3089\u3001\u30d5\u30eb\u30fc\u30c8\u6559\u5ba4\u901a\u3063\u3066\u3044\u307e\u3059\u3002Twitter\u4ee5\u5916\u306b\u3082Facebook,Ameba-Blog\u3082\u3057\u3066\u3044\u307e\u3059\u3002 \u6700\u8fd1\u306e\u63a8\u3057\u306f\u3001\u30b0\u30e9\u30d3\u30a2\uff1a\u30df\u30b9\u6771\u30b9\u30dd2016\u30b0\u30e9\u30f3\u30d7\u30ea\u306e\u300c\u685c\u4e95\u5948\u6d25\u300d\u3055\u3093\u3067\u3059\u3002","translator_type":"none","protected":false,"verified":false,"followers_count":342,"friends_count":441,"listed_count":11,"favourites_count":8884,"statuses_count":26515,"created_at":"Fri Aug 06 10:42:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/710787773934886912\/DjPZphhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/710787773934886912\/DjPZphhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175349671\/1458737512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pz62","name":"\uff30\uff5a\uff16\uff12 10\u6708\u4f01\u753b\u4e2d\u6b62\u3057\u307e\u3059","id":107998753,"id_str":"107998753","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:32 +0000 2017","id":932386136693067779,"id_str":"932386136693067779","text":"\ud83c\udf55 x28 #AriasEdSheeran","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804859942,"id_str":"2804859942","name":"#ARIASEDSHEERAN","screen_name":"SSheensuales","location":null,"url":"https:\/\/www.facebook.com\/groups\/SheeriosSheensuales","description":"http:\/\/facebook.com\/SheeriosLatino...","translator_type":"none","protected":false,"verified":false,"followers_count":114,"friends_count":208,"listed_count":0,"favourites_count":66,"statuses_count":535,"created_at":"Fri Sep 12 04:05:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819581809688088576\/I0dvwL6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804859942\/1484238570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AriasEdSheeran","indices":[6,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:12:31 +0000 2017","id":932386131810889729,"id_str":"932386131810889729","text":"RT @SafeerAlgharaam: \u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u0644\u0645\u062d\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":733671301307633667,"id_str":"733671301307633667","name":"volkansen1555","screen_name":"volkansen15555","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":29,"friends_count":367,"listed_count":0,"favourites_count":52,"statuses_count":52,"created_at":"Fri May 20 14:50:44 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 28 03:22:42 +0000 2017","id":924114173805629440,"id_str":"924114173805629440","text":"\u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u2026 https:\/\/t.co\/zExISF3db3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":839116898742730753,"id_str":"839116898742730753","name":"\u2660\ufe0f\u24d5\u24d0\u24e1\u24d4\u24e2\u2660\ufe0f","screen_name":"SafeerAlgharaam","location":"\u0641\u0649 \u062d\u0636\u0646\u0643 \u064a\u0627\u0628\u064a\u0628\u0649","url":null,"description":"\u270d\ud83c\udffb...\u0634\u0639\u0651\u0631 \u0645\u064c\u0646\u0633\u062f\u064e\u0644 \u0648 \u0645\u064c\u0624\u062e\u0631\u0629 \u062a\u0647\u0651\u062a\u0632\u064e \u0648 \u0622\u0647\u0627\u062a \u062a\u062a\u064e\u0639\u0627\u0644\u0649 \u0648 \u0642\u0636\u064a\u0651\u0628 \u064a\u0646\u0651\u063a\u0631\u0650\u0633 \u0641\u064a \u0641\u0631\u0651\u062c\u0643 \u0645\u0634\u0651\u0647\u062f \u0645\u062c\u0651\u0646\u0648\u0646\ud83e\udd35\ud83c\udffbA man's lust and a female feeling\ud83d\udc70\ud83c\udf55\ud83c\udf55\u0647\u0646\u0627 \u062a\u062c\u062f\u0648\u0646 \u0645\u0627 \u064a\u0634\u0628\u0639 \u0634\u0647\u0648\u0627\u062a\u0643\u0645\ud83d\udd1e","translator_type":"none","protected":false,"verified":false,"followers_count":53957,"friends_count":409,"listed_count":423,"favourites_count":1671,"statuses_count":4925,"created_at":"Tue Mar 07 14:13:53 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/870348036815409152\/gPKYdgxj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870348036815409152\/gPKYdgxj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839116898742730753\/1492135581","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u0627\u0645\u0643 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u062a\u0637\u0644\u0639 \u0627\u0644\u0633\u0648\u0642 \u062a\u0631\u064a\u062d \u0643\u0633\u0647\u0627 \u0641\u0649 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0645\u0639 \u0633\u0648\u0627\u0642\u0643\u0645 \u064a\u0627\u062e\u0646\u064a\u062b \u062f\u0627\u0639\u0633 \u0634\u0631\u0641\u0643 \u0648\u0646\u0627\u064a\u0643 \u0644\u062d\u0645\u0647\u0627 \u0627\u0644\u0631\u062e\u064a\u0635 \u0648\u062a\u0634\u0647\u0642 \u0627\u0644\u0645\u062a\u0646\u0627\u0643\u0647 \u0645\u0646 \u0643\u0633\u0647\u0627 \u0627\u0644\u0645\u062d\u0631\u0648\u0645\ud83d\ude08\ud83c\udf55 https:\/\/t.co\/ylzCAqDBtm","display_text_range":[0,123],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":924108926144086016,"id_str":"924108926144086016","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","url":"https:\/\/t.co\/ylzCAqDBtm","display_url":"pic.twitter.com\/ylzCAqDBtm","expanded_url":"https:\/\/twitter.com\/SafeerAlgharaam\/status\/924114173805629440\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":140001,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/pl\/lBIjpCcctsROf3HT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/640x360\/FEr6qzV38mwDqKZX.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/1280x720\/EdiDgvChqLSwLw0a.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/320x180\/lbcLsGZmwYsZJMvx.mp4"}]}}]},"extended_entities":{"media":[{"id":924108926144086016,"id_str":"924108926144086016","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/924108926144086016\/pu\/img\/Tb0N3FtD5rmYIflf.jpg","url":"https:\/\/t.co\/ylzCAqDBtm","display_url":"pic.twitter.com\/ylzCAqDBtm","expanded_url":"https:\/\/twitter.com\/SafeerAlgharaam\/status\/924114173805629440\/video\/1","type":"video","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":140001,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/pl\/lBIjpCcctsROf3HT.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/640x360\/FEr6qzV38mwDqKZX.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/1280x720\/EdiDgvChqLSwLw0a.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/924108926144086016\/pu\/vid\/320x180\/lbcLsGZmwYsZJMvx.mp4"}]}}]}},"quote_count":0,"reply_count":6,"retweet_count":232,"favorite_count":462,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zExISF3db3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/924114173805629440","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ar"},"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SafeerAlgharaam","name":"\u2660\ufe0f\u24d5\u24d0\u24e1\u24d4\u24e2\u2660\ufe0f","id":839116898742730753,"id_str":"839116898742730753","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","matching_rules":[{"tag":null}]}],"next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ==","requestParameters":{"maxResults":100,"fromDate":"201710200000","toDate":"201711192315"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_point_radius.json b/spec/fixtures/premium_search_point_radius.json new file mode 100644 index 000000000..e5f722a7b --- /dev/null +++ b/spec/fixtures/premium_search_point_radius.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Mon Nov 20 00:53:51 +0000 2017","id":932411632663146498,"id_str":"932411632663146498","text":"@noodlebroths that movie rules","display_text_range":[14,30],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932411314730827777,"in_reply_to_status_id_str":"932411314730827777","in_reply_to_user_id":3034109695,"in_reply_to_user_id_str":"3034109695","in_reply_to_screen_name":"noodlebroths","user":{"id":135206311,"id_str":"135206311","name":"conzor","screen_name":"clynque","location":"co","url":null,"description":"a treasury of birdlore","translator_type":"none","protected":false,"verified":false,"followers_count":562,"friends_count":482,"listed_count":40,"favourites_count":39077,"statuses_count":28709,"created_at":"Tue Apr 20 16:48:41 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0B02","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/395639417\/0106OPEDpoizat-articleLarge.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/395639417\/0106OPEDpoizat-articleLarge.jpg","profile_background_tile":true,"profile_link_color":"0F6B0A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927335875960123392\/KCskoMC9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927335875960123392\/KCskoMC9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135206311\/1416464946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noodlebroths","name":"lamentable wasteman","id":3034109695,"id_str":"3034109695","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:53:06 +0000 2017","id":932411444250918912,"id_str":"932411444250918912","text":"#MyThanksgivingWishWouldBe for everyone to have peace of mind and happiness inside. There is ALWAYS something to be\u2026 https:\/\/t.co\/W2sXDpdDAY","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":581649432,"id_str":"581649432","name":"Marlena Niemann","screen_name":"MoMo_SanDiego","location":"Rancho Santa Fe, CA","url":"http:\/\/momosaan.com","description":"@davidji_com Master Certified #Meditation Instructor, #Mindfulness #Lifestyle Coach, #Yoga #Luxxtura #Travel #Wine #Beachlife #Hockey #Helicopters @BonVegetit","translator_type":"none","protected":false,"verified":false,"followers_count":16265,"friends_count":15245,"listed_count":293,"favourites_count":87080,"statuses_count":34796,"created_at":"Wed May 16 06:07:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581649432\/1510817598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"#MyThanksgivingWishWouldBe for everyone to have peace of mind and happiness inside. There is ALWAYS something to be #grateful for..\n\nThank you @gigirules7 for an amazing session of gratitude on @WGIGNewsTag #Thanksgiving Week. \ud83d\ude4f\ud83d\udc99\n\n#Boulder #SundaySunsets https:\/\/t.co\/gEWpUNT26I","display_text_range":[0,254],"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[0,26]},{"text":"grateful","indices":[116,125]},{"text":"Thanksgiving","indices":[207,220]},{"text":"Boulder","indices":[231,239]},{"text":"SundaySunsets","indices":[240,254]}],"urls":[],"user_mentions":[{"screen_name":"gigirules7","name":"Regina Spacola","id":2979171304,"id_str":"2979171304","indices":[143,154]},{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[194,206]}],"symbols":[],"media":[{"id":932410676504494080,"id_str":"932410676504494080","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCWkfXVAAAzX8V.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCWkfXVAAAzX8V.png","url":"https:\/\/t.co\/gEWpUNT26I","display_url":"pic.twitter.com\/gEWpUNT26I","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932411444250918912\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932410676504494080,"id_str":"932410676504494080","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCWkfXVAAAzX8V.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCWkfXVAAAzX8V.png","url":"https:\/\/t.co\/gEWpUNT26I","display_url":"pic.twitter.com\/gEWpUNT26I","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932411444250918912\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[0,26]}],"urls":[{"url":"https:\/\/t.co\/W2sXDpdDAY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932411444250918912","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:53:03 +0000 2017","id":932411430862602241,"id_str":"932411430862602241","text":"it\u2019s taken me 6 seasons to figure this out but Veep can be... hard to watch","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135206311,"id_str":"135206311","name":"conzor","screen_name":"clynque","location":"co","url":null,"description":"a treasury of birdlore","translator_type":"none","protected":false,"verified":false,"followers_count":562,"friends_count":482,"listed_count":40,"favourites_count":39077,"statuses_count":28709,"created_at":"Tue Apr 20 16:48:41 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0B02","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/395639417\/0106OPEDpoizat-articleLarge.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/395639417\/0106OPEDpoizat-articleLarge.jpg","profile_background_tile":true,"profile_link_color":"0F6B0A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927335875960123392\/KCskoMC9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927335875960123392\/KCskoMC9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135206311\/1416464946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:52:04 +0000 2017","id":932411186506637312,"id_str":"932411186506637312","text":"ImPulse is taking the snacking category by storm, with flavored lentils! Built @SWBoulderFood #TGSW2017 #delicious https:\/\/t.co\/rGVhfBGBCB","display_text_range":[0,114],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156366532,"id_str":"156366532","name":"Jordan Rothenberg","screen_name":"jsrothenberg","location":"Boulder, CO","url":"http:\/\/www.techstars.com\/startup-programs\/","description":"Connector. Facilitator. Leveraging @Techstars Startup Programs to build community across the Western U.S., Canada, and beyond. Snowboarder. Yogi. Namaste.","translator_type":"none","protected":false,"verified":false,"followers_count":833,"friends_count":982,"listed_count":109,"favourites_count":1276,"statuses_count":1172,"created_at":"Wed Jun 16 19:12:10 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446028510650306560\/4deKJW8R_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446028510650306560\/4deKJW8R_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156366532\/1462219839","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TGSW2017","indices":[94,103]},{"text":"delicious","indices":[104,114]}],"urls":[],"user_mentions":[{"screen_name":"SWBoulderFood","name":"SW Boulder Food+Tech","id":902371121772740610,"id_str":"902371121772740610","indices":[79,93]}],"symbols":[],"media":[{"id":932411178915000321,"id_str":"932411178915000321","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCXBu_U8AEiwkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCXBu_U8AEiwkG.jpg","url":"https:\/\/t.co\/rGVhfBGBCB","display_url":"pic.twitter.com\/rGVhfBGBCB","expanded_url":"https:\/\/twitter.com\/jsrothenberg\/status\/932411186506637312\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932411178915000321,"id_str":"932411178915000321","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCXBu_U8AEiwkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCXBu_U8AEiwkG.jpg","url":"https:\/\/t.co\/rGVhfBGBCB","display_url":"pic.twitter.com\/rGVhfBGBCB","expanded_url":"https:\/\/twitter.com\/jsrothenberg\/status\/932411186506637312\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:49:16 +0000 2017","id":932410480856932352,"id_str":"932410480856932352","text":"We need 10k word think piece by @SalenaZito. From a diner and overheard conversations at a gas station. https:\/\/t.co\/yAwBLgwkjc","display_text_range":[0,104],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138550796,"id_str":"138550796","name":"SPR","screen_name":"Intrpdtravlr","location":"Boulder, CO","url":null,"description":"Data evangelist; baseball fan; STL-expat; political junky ... & proud dad and husband ... all thoughts are my own.","translator_type":"none","protected":false,"verified":false,"followers_count":137,"friends_count":475,"listed_count":13,"favourites_count":2285,"statuses_count":3612,"created_at":"Thu Apr 29 21:47:24 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601975514841030656\/epZoSl9T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601975514841030656\/epZoSl9T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138550796\/1382412485","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":932313904096583680,"quoted_status_id_str":"932313904096583680","quoted_status":{"created_at":"Sun Nov 19 18:25:30 +0000 2017","id":932313904096583680,"id_str":"932313904096583680","text":"Are we allowed to call Roy Moore voters deplorable? Or are they suffering from anxiety so we have to understand the\u2026 https:\/\/t.co\/0q1zHAhyh8","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7794142,"id_str":"7794142","name":"digby","screen_name":"digby56","location":"Santa Monica","url":"http:\/\/digbysblog.blogspot.com","description":"DFH\/blogger\/humanoid writer for @Salon","translator_type":"none","protected":false,"verified":false,"followers_count":43580,"friends_count":1255,"listed_count":1610,"favourites_count":1350,"statuses_count":52887,"created_at":"Sun Jul 29 02:17:49 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876878986\/glasses_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876878986\/glasses_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7794142\/1461960943","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Are we allowed to call Roy Moore voters deplorable? Or are they suffering from anxiety so we have to understand their needs and desires? Just asking.","display_text_range":[0,149],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":28,"retweet_count":111,"favorite_count":383,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0q1zHAhyh8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932313904096583680","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yAwBLgwkjc","expanded_url":"https:\/\/twitter.com\/digby56\/status\/932313904096583680","display_url":"twitter.com\/digby56\/status\u2026","indices":[105,128]}],"user_mentions":[{"screen_name":"SalenaZito","name":"SalenaZito","id":16101182,"id_str":"16101182","indices":[32,43]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:47:48 +0000 2017","id":932410110772527109,"id_str":"932410110772527109","text":"@WGIGNewsTag #MyThanksgivingWishWouldBe for everyone to vibrate positivity and light to everyone and everything in\u2026 https:\/\/t.co\/fwKD2lrzSc","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":835365465958531072,"in_reply_to_user_id_str":"835365465958531072","in_reply_to_screen_name":"WGIGNewsTag","user":{"id":581649432,"id_str":"581649432","name":"Marlena Niemann","screen_name":"MoMo_SanDiego","location":"Rancho Santa Fe, CA","url":"http:\/\/momosaan.com","description":"@davidji_com Master Certified #Meditation Instructor, #Mindfulness #Lifestyle Coach, #Yoga #Luxxtura #Travel #Wine #Beachlife #Hockey #Helicopters @BonVegetit","translator_type":"none","protected":false,"verified":false,"followers_count":16265,"friends_count":15245,"listed_count":293,"favourites_count":87080,"statuses_count":34796,"created_at":"Wed May 16 06:07:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581649432\/1510817598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@WGIGNewsTag #MyThanksgivingWishWouldBe for everyone to vibrate positivity and light to everyone and everything in the world.. #BewareThePowerOfYourRipple \ud83d\ude4f\ud83d\udc99\u00a0~Happy #Thanksgiving Week. https:\/\/t.co\/uF1UrP3mr7","display_text_range":[0,184],"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[13,39]},{"text":"BewareThePowerOfYourRipple","indices":[127,154]},{"text":"Thanksgiving","indices":[165,178]}],"urls":[],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[],"media":[{"id":932409385543901184,"id_str":"932409385543901184","indices":[185,208],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCVZWKVoAA-37_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCVZWKVoAA-37_.png","url":"https:\/\/t.co\/uF1UrP3mr7","display_url":"pic.twitter.com\/uF1UrP3mr7","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932410110772527109\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932409385543901184,"id_str":"932409385543901184","indices":[185,208],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCVZWKVoAA-37_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCVZWKVoAA-37_.png","url":"https:\/\/t.co\/uF1UrP3mr7","display_url":"pic.twitter.com\/uF1UrP3mr7","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932410110772527109\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[13,39]}],"urls":[{"url":"https:\/\/t.co\/fwKD2lrzSc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932410110772527109","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:47:07 +0000 2017","id":932409937233313793,"id_str":"932409937233313793","text":"say I\ufe0ft with me people, xanax isn\u2019t a monster \n\nrap music isn\u2019t a monster \n\nADDICTION IS \ud83d\udde3\ud83d\udde3\ud83d\udde3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":744069451771940865,"id_str":"744069451771940865","name":"jengle terror III","screen_name":"asaphobs","location":"Denver, CO","url":"https:\/\/mobile.twitter.com\/ferhobsfinds","description":"wait turn this up bitch, this my jam, where da drums at? \u2022 @AntGot_ parody acct","translator_type":"none","protected":false,"verified":false,"followers_count":1167,"friends_count":1189,"listed_count":18,"favourites_count":17497,"statuses_count":32600,"created_at":"Sat Jun 18 07:29:16 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927004970582454272\/W6OvYtNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927004970582454272\/W6OvYtNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744069451771940865\/1509850188","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5d1bffd975c6ff73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d1bffd975c6ff73.json","place_type":"city","name":"Louisville","full_name":"Louisville, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.183643,39.939576],[-105.183643,39.998224],[-105.099812,39.998224],[-105.099812,39.939576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:42:38 +0000 2017","id":932408809535840257,"id_str":"932408809535840257","text":"On Friday @josilynneises and I celebrated two years of awesomeness. It\u2019s fitting that our meal\u2026 https:\/\/t.co\/JgBMtLdacw","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201628256,"id_str":"201628256","name":"Bry.Kinnear?","screen_name":"Houndsto0th","location":"Westminster!","url":null,"description":"Snow | Sun | Coffee | Code | @josilynneises","translator_type":"none","protected":false,"verified":false,"followers_count":289,"friends_count":679,"listed_count":14,"favourites_count":757,"statuses_count":3060,"created_at":"Tue Oct 12 08:11:58 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/892120511991259136\/JSJ_mWqf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/892120511991259136\/JSJ_mWqf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201628256\/1501533050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.01823,-105.27705]},"coordinates":{"type":"Point","coordinates":[-105.27705,40.01823]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JgBMtLdacw","expanded_url":"https:\/\/www.instagram.com\/p\/BbsoSxCjUXi\/","display_url":"instagram.com\/p\/BbsoSxCjUXi\/","indices":[96,119]}],"user_mentions":[{"screen_name":"JosilynNeises","name":"Josilyn Neises","id":90800520,"id_str":"90800520","indices":[10,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:41:57 +0000 2017","id":932408638865469440,"id_str":"932408638865469440","text":"EatShare enables you to grow fruits and veggies in your own backyard! Built @SWBoulderFood #TGSW2017 https:\/\/t.co\/4xGD0jcefV","display_text_range":[0,100],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156366532,"id_str":"156366532","name":"Jordan Rothenberg","screen_name":"jsrothenberg","location":"Boulder, CO","url":"http:\/\/www.techstars.com\/startup-programs\/","description":"Connector. Facilitator. Leveraging @Techstars Startup Programs to build community across the Western U.S., Canada, and beyond. Snowboarder. Yogi. Namaste.","translator_type":"none","protected":false,"verified":false,"followers_count":833,"friends_count":982,"listed_count":109,"favourites_count":1276,"statuses_count":1172,"created_at":"Wed Jun 16 19:12:10 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446028510650306560\/4deKJW8R_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446028510650306560\/4deKJW8R_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156366532\/1462219839","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TGSW2017","indices":[91,100]}],"urls":[],"user_mentions":[{"screen_name":"SWBoulderFood","name":"SW Boulder Food+Tech","id":902371121772740610,"id_str":"902371121772740610","indices":[76,90]}],"symbols":[],"media":[{"id":932408635602354176,"id_str":"932408635602354176","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCUtsaVwAAjVa1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCUtsaVwAAjVa1.jpg","url":"https:\/\/t.co\/4xGD0jcefV","display_url":"pic.twitter.com\/4xGD0jcefV","expanded_url":"https:\/\/twitter.com\/jsrothenberg\/status\/932408638865469440\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932408635602354176,"id_str":"932408635602354176","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCUtsaVwAAjVa1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCUtsaVwAAjVa1.jpg","url":"https:\/\/t.co\/4xGD0jcefV","display_url":"pic.twitter.com\/4xGD0jcefV","expanded_url":"https:\/\/twitter.com\/jsrothenberg\/status\/932408638865469440\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:41:47 +0000 2017","id":932408597002248192,"id_str":"932408597002248192","text":"@treeThugger69 for real like jfc. Xanax isn\u2019t a monster, addiction is. buncha fucktards","display_text_range":[15,87],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932408472158605313,"in_reply_to_status_id_str":"932408472158605313","in_reply_to_user_id":367487028,"in_reply_to_user_id_str":"367487028","in_reply_to_screen_name":"treeThugger69","user":{"id":744069451771940865,"id_str":"744069451771940865","name":"jengle terror III","screen_name":"asaphobs","location":"Denver, CO","url":"https:\/\/mobile.twitter.com\/ferhobsfinds","description":"wait turn this up bitch, this my jam, where da drums at? \u2022 @AntGot_ parody acct","translator_type":"none","protected":false,"verified":false,"followers_count":1167,"friends_count":1189,"listed_count":18,"favourites_count":17497,"statuses_count":32600,"created_at":"Sat Jun 18 07:29:16 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927004970582454272\/W6OvYtNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927004970582454272\/W6OvYtNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744069451771940865\/1509850188","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5d1bffd975c6ff73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d1bffd975c6ff73.json","place_type":"city","name":"Louisville","full_name":"Louisville, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.183643,39.939576],[-105.183643,39.998224],[-105.099812,39.998224],[-105.099812,39.939576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"treeThugger69","name":"maddy p","id":367487028,"id_str":"367487028","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:41:34 +0000 2017","id":932408542790762502,"id_str":"932408542790762502","text":"Blonde bitches are my type. #blizz @ Boulder, Colorado https:\/\/t.co\/fD0wS2zLhr","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1093922011,"id_str":"1093922011","name":"Sandy Miller","screen_name":"smiller0711","location":"CO","url":null,"description":"CU Boulder '15 \u2728","translator_type":"none","protected":false,"verified":false,"followers_count":125,"friends_count":246,"listed_count":1,"favourites_count":1372,"statuses_count":468,"created_at":"Wed Jan 16 02:45:03 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600511530287792128\/nZxk4WnE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600511530287792128\/nZxk4WnE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1093922011\/1432008634","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"blizz","indices":[28,34]}],"urls":[{"url":"https:\/\/t.co\/fD0wS2zLhr","expanded_url":"https:\/\/www.instagram.com\/p\/BbsoLDTgdCFBzQ_eUsLahHWN8C-3AS2uEVzFlQ0\/","display_url":"instagram.com\/p\/BbsoLDTgdCFB\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:39:17 +0000 2017","id":932407968372609030,"id_str":"932407968372609030","text":"@treeThugger69 lmao fr like think outside of ur safe psychedelic flower box","display_text_range":[15,75],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932407567099355136,"in_reply_to_status_id_str":"932407567099355136","in_reply_to_user_id":367487028,"in_reply_to_user_id_str":"367487028","in_reply_to_screen_name":"treeThugger69","user":{"id":744069451771940865,"id_str":"744069451771940865","name":"jengle terror III","screen_name":"asaphobs","location":"Denver, CO","url":"https:\/\/mobile.twitter.com\/ferhobsfinds","description":"wait turn this up bitch, this my jam, where da drums at? \u2022 @AntGot_ parody acct","translator_type":"none","protected":false,"verified":false,"followers_count":1167,"friends_count":1189,"listed_count":18,"favourites_count":17497,"statuses_count":32600,"created_at":"Sat Jun 18 07:29:16 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927004970582454272\/W6OvYtNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927004970582454272\/W6OvYtNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744069451771940865\/1509850188","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5d1bffd975c6ff73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d1bffd975c6ff73.json","place_type":"city","name":"Louisville","full_name":"Louisville, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.183643,39.939576],[-105.183643,39.998224],[-105.099812,39.998224],[-105.099812,39.939576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"treeThugger69","name":"maddy p","id":367487028,"id_str":"367487028","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:38:57 +0000 2017","id":932407882842226688,"id_str":"932407882842226688","text":"I love fashion nova \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":728089778156019713,"id_str":"728089778156019713","name":"\ud83d\udc8bforeign\u2728","screen_name":"resabih","location":null,"url":null,"description":"I'm a VIRGO! \u264d\ufe0f Spaniard\/Arabian","translator_type":"none","protected":false,"verified":false,"followers_count":496,"friends_count":378,"listed_count":2,"favourites_count":1548,"statuses_count":4272,"created_at":"Thu May 05 05:11:45 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/901295857554919424\/ve5JpeQ-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/901295857554919424\/ve5JpeQ-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/728089778156019713\/1510947568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:38:54 +0000 2017","id":932407873480679425,"id_str":"932407873480679425","text":"Project Supertraining ride. Great initiative and delicious waffles. Thanks Will!! #cycling\u2026 https:\/\/t.co\/iqySI4UCpv","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551066665,"id_str":"551066665","name":"Alessandra Castanho","screen_name":"ALEdemc","location":"Boulder, CO","url":null,"description":"USAT Level I coach, a triathlete and a runner enjoying the snow \u2744\ufe0f","translator_type":"none","protected":false,"verified":false,"followers_count":91,"friends_count":102,"listed_count":7,"favourites_count":242,"statuses_count":803,"created_at":"Wed Apr 11 15:08:54 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654664672818257922\/aI6qtVB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654664672818257922\/aI6qtVB3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551066665\/1483599800","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cycling","indices":[82,90]}],"urls":[{"url":"https:\/\/t.co\/iqySI4UCpv","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsn3P1hza9\/","display_url":"instagram.com\/p\/Bbsn3P1hza9\/","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:34:40 +0000 2017","id":932406805015097344,"id_str":"932406805015097344","text":"The #Broncos are worse than bad; they\u2019re boring.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110002219,"id_str":"110002219","name":"Matt Finnigan","screen_name":"ku92usc2003","location":"Denver\/Boulder, CO","url":null,"description":"Kansas Jayhawks. USC Trojans. Colorado sports teams.","translator_type":"none","protected":false,"verified":false,"followers_count":711,"friends_count":2463,"listed_count":15,"favourites_count":29864,"statuses_count":12512,"created_at":"Sun Jan 31 00:54:30 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020708","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110002219\/1476118263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[{"text":"Broncos","indices":[4,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:34:15 +0000 2017","id":932406702372143107,"id_str":"932406702372143107","text":"@WGIGNewsTag #MyThanksgivingWishWouldBe for you to know that YOU ARE ALREADY A MASTERPIECE. Come to it, KNOW it, re\u2026 https:\/\/t.co\/GKyitR7t1T","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":835365465958531072,"in_reply_to_user_id_str":"835365465958531072","in_reply_to_screen_name":"WGIGNewsTag","user":{"id":581649432,"id_str":"581649432","name":"Marlena Niemann","screen_name":"MoMo_SanDiego","location":"Rancho Santa Fe, CA","url":"http:\/\/momosaan.com","description":"@davidji_com Master Certified #Meditation Instructor, #Mindfulness #Lifestyle Coach, #Yoga #Luxxtura #Travel #Wine #Beachlife #Hockey #Helicopters @BonVegetit","translator_type":"none","protected":false,"verified":false,"followers_count":16265,"friends_count":15245,"listed_count":293,"favourites_count":87080,"statuses_count":34796,"created_at":"Wed May 16 06:07:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581649432\/1510817598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@WGIGNewsTag #MyThanksgivingWishWouldBe for you to know that YOU ARE ALREADY A MASTERPIECE. Come to it, KNOW it, realize it.. #SelfLove Happy #Thanksgiving Week Friends. https:\/\/t.co\/v1tLfAzORz","display_text_range":[0,170],"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[13,39]},{"text":"SelfLove","indices":[127,136]},{"text":"Thanksgiving","indices":[143,156]}],"urls":[],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[],"media":[{"id":932406430606311424,"id_str":"932406430606311424","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCStWKUQAAcZH9.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCStWKUQAAcZH9.png","url":"https:\/\/t.co\/v1tLfAzORz","display_url":"pic.twitter.com\/v1tLfAzORz","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932406702372143107\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932406430606311424,"id_str":"932406430606311424","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCStWKUQAAcZH9.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCStWKUQAAcZH9.png","url":"https:\/\/t.co\/v1tLfAzORz","display_url":"pic.twitter.com\/v1tLfAzORz","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932406702372143107\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[13,39]}],"urls":[{"url":"https:\/\/t.co\/GKyitR7t1T","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932406702372143107","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:34:15 +0000 2017","id":932406701743005696,"id_str":"932406701743005696","text":"Drinito \u2014 You in the Broncos Club Series? @YoungDrini","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2579603287,"id_str":"2579603287","name":"#SupahFam","screen_name":"SupahMT","location":"Colorado, USA","url":"http:\/\/twitch.tv\/SupahMTGaming","description":"Competitive Madden player \ud83c\udfae | 21 Years old | Live in Colorado \ud83d\udc4a | Active streamer on twitch || Miketobia@outlook.com business inquiry.","translator_type":"none","protected":false,"verified":false,"followers_count":196,"friends_count":373,"listed_count":0,"favourites_count":481,"statuses_count":1844,"created_at":"Sat Jun 21 01:30:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/864935143491895296\/BTT-zz6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/864935143491895296\/BTT-zz6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579603287\/1496737823","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"23016fb5892d66ca","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/23016fb5892d66ca.json","place_type":"city","name":"Gunbarrel","full_name":"Gunbarrel, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.225509,40.050950],[-105.225509,40.087547],[-105.160059,40.087547],[-105.160059,40.050950]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YoungDrini","name":"Drini","id":1164138913,"id_str":"1164138913","indices":[42,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:33:00 +0000 2017","id":932406387610607618,"id_str":"932406387610607618","text":"Well, for better or worse, it's Paxton Lynch time for @Broncos. https:\/\/t.co\/TUZti5b3lp","display_text_range":[0,63],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":865042783027032064,"id_str":"865042783027032064","name":"David Gleeson","screen_name":"davidrgleeson","location":"Colorado, USA","url":null,"description":"Progressive. #Atheist. Despise the political extremes. Fierce free speech advocate. I'd probably like your dog more than you.","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":74,"listed_count":0,"favourites_count":23,"statuses_count":757,"created_at":"Thu May 18 03:14:06 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930236865399046144\/LXRmTjZa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930236865399046144\/LXRmTjZa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/865042783027032064\/1495078440","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"72a91b4570317b68","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/72a91b4570317b68.json","place_type":"city","name":"Lafayette","full_name":"Lafayette, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.190246,39.957602],[-105.190246,40.023700],[-105.070651,40.023700],[-105.070651,39.957602]]]},"attributes":{}},"contributors":null,"quoted_status_id":932405057085112320,"quoted_status_id_str":"932405057085112320","quoted_status":{"created_at":"Mon Nov 20 00:27:43 +0000 2017","id":932405057085112320,"id_str":"932405057085112320","text":"Incomplete. Ball game. Broncos season is OVER.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43408626,"id_str":"43408626","name":"Mike Klis","screen_name":"MikeKlis","location":"Denver","url":"http:\/\/9News.com","description":"Mike Klis covers the Broncos for 9News. Graduate of Oswego (Ill) High, 1977 and Murray State (Ky), 1981.","translator_type":"none","protected":false,"verified":true,"followers_count":63948,"friends_count":1141,"listed_count":1913,"favourites_count":39,"statuses_count":20847,"created_at":"Fri May 29 21:00:42 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251093655\/20100929_095536_MikeKlis_CM_1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251093655\/20100929_095536_MikeKlis_CM_1__normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":95,"retweet_count":104,"favorite_count":239,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TUZti5b3lp","expanded_url":"https:\/\/twitter.com\/mikeklis\/status\/932405057085112320","display_url":"twitter.com\/mikeklis\/statu\u2026","indices":[64,87]}],"user_mentions":[{"screen_name":"Broncos","name":"Denver Broncos","id":18734310,"id_str":"18734310","indices":[54,62]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:32:20 +0000 2017","id":932406218269736961,"id_str":"932406218269736961","text":"Broncos players out on the field exhanging jerseys after losing their 6th straight game is just embarrassing- seems\u2026 https:\/\/t.co\/SyRSpsKJFK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17874315,"id_str":"17874315","name":"Abby Krolick","screen_name":"Abbynyc","location":"Colorado","url":null,"description":"Is there still a chance I can be a pro cyclist?","translator_type":"none","protected":false,"verified":false,"followers_count":112,"friends_count":101,"listed_count":8,"favourites_count":2846,"statuses_count":5332,"created_at":"Thu Dec 04 18:43:07 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513803250554785792\/K2yf8kH8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513803250554785792\/K2yf8kH8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17874315\/1485636469","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Broncos players out on the field exhanging jerseys after losing their 6th straight game is just embarrassing- seems their fans care more than players","display_text_range":[0,149],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SyRSpsKJFK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932406218269736961","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:31:07 +0000 2017","id":932405913851387904,"id_str":"932405913851387904","text":"\"Red sky at night, shepherd's delight\".\n\n#NoFilter #Boulder #Sky #Night #ForwardAlways @\u2026 https:\/\/t.co\/Z92JohARRD","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2236894225,"id_str":"2236894225","name":"Alastair Menzies","screen_name":"AlastairTheScot","location":"Boulder, Colorado","url":null,"description":"National Educator - Scotch. Working on behalf of Diageo brands. Must be 21 to follow. Please enjoy responsibly and do not share with anyone under 21.","translator_type":"none","protected":false,"verified":false,"followers_count":284,"friends_count":495,"listed_count":12,"favourites_count":121,"statuses_count":1519,"created_at":"Mon Dec 09 02:39:37 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877404273880875008\/mEg9ESUV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877404273880875008\/mEg9ESUV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236894225\/1498024456","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NoFilter","indices":[41,50]},{"text":"Boulder","indices":[51,59]},{"text":"Sky","indices":[60,64]},{"text":"Night","indices":[65,71]},{"text":"ForwardAlways","indices":[72,86]}],"urls":[{"url":"https:\/\/t.co\/Z92JohARRD","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsm-gXD07A\/","display_url":"instagram.com\/p\/Bbsm-gXD07A\/","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:31:02 +0000 2017","id":932405892733059072,"id_str":"932405892733059072","text":"@whitneymriker Yep. https:\/\/t.co\/a5FmYiIxgi","display_text_range":[15,19],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932396889437278209,"in_reply_to_status_id_str":"932396889437278209","in_reply_to_user_id":3070295959,"in_reply_to_user_id_str":"3070295959","in_reply_to_screen_name":"whitneymriker","user":{"id":165837734,"id_str":"165837734","name":"(\ud83e\udd51_ \ud83c\udf5e)","screen_name":"binary_aaron","location":"Boulder, CO","url":"http:\/\/aarongonzales.net","description":"Data scientist at @twitter. I'm that asshole who has read Infinite Jest twice.","translator_type":"none","protected":false,"verified":false,"followers_count":590,"friends_count":746,"listed_count":25,"favourites_count":4448,"statuses_count":1108,"created_at":"Mon Jul 12 17:33:29 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459424859815034880\/tFqjmc-1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459424859815034880\/tFqjmc-1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165837734\/1500441995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"whitneymriker","name":"Whitney Riker","id":3070295959,"id_str":"3070295959","indices":[0,14]}],"symbols":[],"media":[{"id":932405886496120832,"id_str":"932405886496120832","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCSNrMVoAAYW2z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCSNrMVoAAYW2z.jpg","url":"https:\/\/t.co\/a5FmYiIxgi","display_url":"pic.twitter.com\/a5FmYiIxgi","expanded_url":"https:\/\/twitter.com\/binary_aaron\/status\/932405892733059072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932405886496120832,"id_str":"932405886496120832","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCSNrMVoAAYW2z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCSNrMVoAAYW2z.jpg","url":"https:\/\/t.co\/a5FmYiIxgi","display_url":"pic.twitter.com\/a5FmYiIxgi","expanded_url":"https:\/\/twitter.com\/binary_aaron\/status\/932405892733059072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:30:45 +0000 2017","id":932405819194224642,"id_str":"932405819194224642","text":"Can you recommend anyone for this #job? Assistant Manager - https:\/\/t.co\/6EaKrb66N7 #SONIC #Hospitality #Superior, CO #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64094640,"id_str":"64094640","name":"TMJ-COB HRTA Jobs","screen_name":"tmj_cob_hrta","location":"Boulder, CO","url":"http:\/\/www.careerarc.com\/job-seeker","description":"Follow this account for geo-targeted Hospitality\/Restaurant\/Tourism job tweets in Boulder, CO. Need help? Tweet us at @CareerArc!","translator_type":"none","protected":false,"verified":false,"followers_count":354,"friends_count":292,"listed_count":70,"favourites_count":0,"statuses_count":467,"created_at":"Sun Aug 09 02:39:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64094640\/1454473372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.928455,-105.140174]},"coordinates":{"type":"Point","coordinates":[-105.140174,39.928455]},"place":{"id":"00f8c733400e497a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00f8c733400e497a.json","place_type":"city","name":"Broomfield","full_name":"Broomfield, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.147267,39.894185],[-105.147267,40.000314],[-104.997195,40.000314],[-104.997195,39.894185]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[34,38]},{"text":"SONIC","indices":[84,90]},{"text":"Hospitality","indices":[91,103]},{"text":"Superior","indices":[104,113]},{"text":"Hiring","indices":[118,125]},{"text":"CareerArc","indices":[126,136]}],"urls":[{"url":"https:\/\/t.co\/6EaKrb66N7","expanded_url":"http:\/\/bit.ly\/2yZLcb7","display_url":"bit.ly\/2yZLcb7","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:30:04 +0000 2017","id":932405646418309121,"id_str":"932405646418309121","text":"#bestseatinthehouse #sweetbabyjeezis @ Boulder, Colorado https:\/\/t.co\/2FjttnGmSk","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1623946922,"id_str":"1623946922","name":"Candy Williams","screen_name":"fantasticalmind","location":"Boulder, Colorado","url":"http:\/\/fantasticalmind.com\/","description":"A little of this, a little of that.","translator_type":"none","protected":false,"verified":false,"followers_count":111,"friends_count":167,"listed_count":15,"favourites_count":1076,"statuses_count":1198,"created_at":"Fri Jul 26 21:52:12 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FA0891","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/837838401671991297\/_aOr0C_X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/837838401671991297\/_aOr0C_X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1623946922\/1443149728","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bestseatinthehouse","indices":[0,19]},{"text":"sweetbabyjeezis","indices":[20,36]}],"urls":[{"url":"https:\/\/t.co\/2FjttnGmSk","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsm2rnFr4i\/","display_url":"instagram.com\/p\/Bbsm2rnFr4i\/","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:29:29 +0000 2017","id":932405503099113473,"id_str":"932405503099113473","text":"Yesterday CHP attended the holiday bazaar at All Saints in Loveland. Have you missed us these\u2026 https:\/\/t.co\/kqiT6Ghabm","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":449068834,"id_str":"449068834","name":"ColoradoHaitiProject","screen_name":"COHaitiProject","location":"Louisville, CO","url":"http:\/\/www.coloradohaitiproject.org\/","description":"Working in partnership to achieve development in #Haiti that eliminates extreme poverty through educational opportunities, health, & economic self-sufficiency.","translator_type":"none","protected":false,"verified":false,"followers_count":422,"friends_count":551,"listed_count":15,"favourites_count":22,"statuses_count":470,"created_at":"Wed Dec 28 18:10:23 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/889938891569995776\/DviNu__Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/889938891569995776\/DviNu__Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/449068834\/1420667955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0300484,-105.2594223]},"coordinates":{"type":"Point","coordinates":[-105.2594223,40.0300484]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kqiT6Ghabm","expanded_url":"https:\/\/www.instagram.com\/p\/BbsmeDSDOLw\/","display_url":"instagram.com\/p\/BbsmeDSDOLw\/","indices":[95,118]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:29:16 +0000 2017","id":932405446412976128,"id_str":"932405446412976128","text":"Well, that sucks #DENvsCIN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17874315,"id_str":"17874315","name":"Abby Krolick","screen_name":"Abbynyc","location":"Colorado","url":null,"description":"Is there still a chance I can be a pro cyclist?","translator_type":"none","protected":false,"verified":false,"followers_count":112,"friends_count":101,"listed_count":8,"favourites_count":2846,"statuses_count":5332,"created_at":"Thu Dec 04 18:43:07 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513803250554785792\/K2yf8kH8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513803250554785792\/K2yf8kH8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17874315\/1485636469","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[{"text":"DENvsCIN","indices":[17,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:27:56 +0000 2017","id":932405110604312577,"id_str":"932405110604312577","text":"Why the fuck are white strips so expensive","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4117507572,"id_str":"4117507572","name":"Sierra Rose Cooper","screen_name":"sierrarcoop","location":"Boulder, CO","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":157,"friends_count":202,"listed_count":0,"favourites_count":746,"statuses_count":772,"created_at":"Tue Nov 03 22:50:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/738562656957648896\/kxuPA9v3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/738562656957648896\/kxuPA9v3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4117507572\/1466381687","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:26:22 +0000 2017","id":932404718671945729,"id_str":"932404718671945729","text":"Colorado skies rarely disappoint. @ Niwot Colorado https:\/\/t.co\/XYZvOgRFZc","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14710289,"id_str":"14710289","name":"Rylan Bowers","screen_name":"rylanb","location":"Boulder, CO","url":"http:\/\/www.rylanbowers.com","description":"Developer. Perfectionist. Organizer. Volunteer. Habitual Line Toer. Enabler in the best ways I can. California & Colorado.","translator_type":"none","protected":false,"verified":false,"followers_count":569,"friends_count":502,"listed_count":28,"favourites_count":800,"statuses_count":3877,"created_at":"Fri May 09 05:45:38 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E5C6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/245530858\/threadlessWorldRecord_872_64637.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/245530858\/threadlessWorldRecord_872_64637.jpg","profile_background_tile":false,"profile_link_color":"648464","profile_sidebar_border_color":"C6E5C6","profile_sidebar_fill_color":"242824","profile_text_color":"C6E5C6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1704637806\/djin_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1704637806\/djin_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14710289\/1416167946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.10117503,-105.16899699]},"coordinates":{"type":"Point","coordinates":[-105.16899699,40.10117503]},"place":{"id":"bdcaff9caa1201c6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bdcaff9caa1201c6.json","place_type":"city","name":"Niwot","full_name":"Niwot, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.216339,40.086894],[-105.216339,40.116100],[-105.131459,40.116100],[-105.131459,40.086894]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XYZvOgRFZc","expanded_url":"https:\/\/www.instagram.com\/p\/BbsmUOwAhfa\/","display_url":"instagram.com\/p\/BbsmUOwAhfa\/","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:23:03 +0000 2017","id":932403882017173505,"id_str":"932403882017173505","text":"I love when there is a beautiful sunset in Colorado and it is like everyone discovered social media for the fist time","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148861798,"id_str":"148861798","name":"Meaghan","screen_name":"megzzie55","location":"Colorado, USA","url":null,"description":"\"allow yourself to breath, kick back, relax, & dream so many good things come to those who love relentlessly\"","translator_type":"none","protected":false,"verified":false,"followers_count":175,"friends_count":335,"listed_count":3,"favourites_count":1876,"statuses_count":2518,"created_at":"Thu May 27 20:16:01 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/855335871863599104\/1D_6ZqGr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/855335871863599104\/1D_6ZqGr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148861798\/1456092864","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5d1bffd975c6ff73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d1bffd975c6ff73.json","place_type":"city","name":"Louisville","full_name":"Louisville, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.183643,39.939576],[-105.183643,39.998224],[-105.099812,39.998224],[-105.099812,39.939576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:22:24 +0000 2017","id":932403717055246336,"id_str":"932403717055246336","text":"#Rehearsal vibing! Lots of dancing, training, costumes and fun! We\u2026 https:\/\/t.co\/exrIC3vBhb","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2926046724,"id_str":"2926046724","name":"Samba Colorado","screen_name":"Sambacolorado","location":"Boulder, Denver CO","url":"http:\/\/www.SambaColorado.com","description":"Samba Colorado is Colorado's Premier Brazilian Dance School & Entertainment Company, specializing in all styles of Brazilian dance. Visit our web for info :)","translator_type":"none","protected":false,"verified":false,"followers_count":112,"friends_count":255,"listed_count":25,"favourites_count":41,"statuses_count":1266,"created_at":"Wed Dec 10 18:50:03 +0000 2014","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695407550087335936\/oXQEW7Us_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695407550087335936\/oXQEW7Us_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926046724\/1454633029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0172501,-105.252388]},"coordinates":{"type":"Point","coordinates":[-105.252388,40.0172501]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Rehearsal","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/exrIC3vBhb","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsl-muhX91HJT8Q6VhLUkyxLUtFrCccrXuMog0\/","display_url":"instagram.com\/p\/Bbsl-muhX91H\u2026","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:22:09 +0000 2017","id":932403656980185090,"id_str":"932403656980185090","text":"@chelliehylton @davidfrum It's not like he has anything else to do, like run the country or anything.","display_text_range":[26,101],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932395599315505152,"in_reply_to_status_id_str":"932395599315505152","in_reply_to_user_id":2766993342,"in_reply_to_user_id_str":"2766993342","in_reply_to_screen_name":"chelliehylton","user":{"id":14565571,"id_str":"14565571","name":"Heather","screen_name":"SweetGeekling","location":"Boulder, CO","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":292,"friends_count":305,"listed_count":2,"favourites_count":12443,"statuses_count":8282,"created_at":"Mon Apr 28 04:38:20 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_tile":true,"profile_link_color":"EAA852","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD66B","profile_text_color":"0F2941","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14565571\/1478903561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chelliehylton","name":"Michelle Hylton","id":2766993342,"id_str":"2766993342","indices":[0,14]},{"screen_name":"davidfrum","name":"David Frum","id":18686907,"id_str":"18686907","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:21:46 +0000 2017","id":932403560075051008,"id_str":"932403560075051008","text":"@joan8904 @davidfrum https:\/\/t.co\/4Ghclp5I37","display_text_range":[21,21],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932397433824391170,"in_reply_to_status_id_str":"932397433824391170","in_reply_to_user_id":19990035,"in_reply_to_user_id_str":"19990035","in_reply_to_screen_name":"joan8904","user":{"id":14565571,"id_str":"14565571","name":"Heather","screen_name":"SweetGeekling","location":"Boulder, CO","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":292,"friends_count":305,"listed_count":2,"favourites_count":12443,"statuses_count":8282,"created_at":"Mon Apr 28 04:38:20 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_tile":true,"profile_link_color":"EAA852","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD66B","profile_text_color":"0F2941","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14565571\/1478903561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"joan8904","name":"joan o'reilly","id":19990035,"id_str":"19990035","indices":[0,9]},{"screen_name":"davidfrum","name":"David Frum","id":18686907,"id_str":"18686907","indices":[10,20]}],"symbols":[],"media":[{"id":932403549966811138,"id_str":"932403549966811138","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCQFq8VwAIFJtu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCQFq8VwAIFJtu.jpg","url":"https:\/\/t.co\/4Ghclp5I37","display_url":"pic.twitter.com\/4Ghclp5I37","expanded_url":"https:\/\/twitter.com\/SweetGeekling\/status\/932403560075051008\/photo\/1","type":"photo","sizes":{"large":{"w":372,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":372,"h":280,"resize":"fit"},"small":{"w":372,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932403549966811138,"id_str":"932403549966811138","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCQFq8VwAIFJtu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCQFq8VwAIFJtu.jpg","url":"https:\/\/t.co\/4Ghclp5I37","display_url":"pic.twitter.com\/4Ghclp5I37","expanded_url":"https:\/\/twitter.com\/SweetGeekling\/status\/932403560075051008\/photo\/1","type":"animated_gif","sizes":{"large":{"w":372,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":372,"h":280,"resize":"fit"},"small":{"w":372,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[93,70],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/DPCQFq8VwAIFJtu.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:21:02 +0000 2017","id":932403375248834560,"id_str":"932403375248834560","text":"@WGIGNewsTag\n\u201cYou may say I'm a dreamer..\nBut I'm not the only one..\nI hope someday you'll join us..\nAnd the world\u2026 https:\/\/t.co\/tCDNGe9DjX","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":835365465958531072,"in_reply_to_user_id_str":"835365465958531072","in_reply_to_screen_name":"WGIGNewsTag","user":{"id":581649432,"id_str":"581649432","name":"Marlena Niemann","screen_name":"MoMo_SanDiego","location":"Rancho Santa Fe, CA","url":"http:\/\/momosaan.com","description":"@davidji_com Master Certified #Meditation Instructor, #Mindfulness #Lifestyle Coach, #Yoga #Luxxtura #Travel #Wine #Beachlife #Hockey #Helicopters @BonVegetit","translator_type":"none","protected":false,"verified":false,"followers_count":16265,"friends_count":15245,"listed_count":293,"favourites_count":87080,"statuses_count":34796,"created_at":"Wed May 16 06:07:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581649432\/1510817598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@WGIGNewsTag\n\u201cYou may say I'm a dreamer..\nBut I'm not the only one..\nI hope someday you'll join us..\nAnd the world will be as one.\u201d\n#MyThanksgivingWishWouldBe for the world to embrace each other as one in gratitude, peace, harmony and love.\nHappy #Thanksgiving Week. \ud83d\ude4f\ud83d\udc99 #oneness https:\/\/t.co\/frjMQ7zRkW","display_text_range":[0,278],"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[132,158]},{"text":"Thanksgiving","indices":[247,260]},{"text":"oneness","indices":[270,278]}],"urls":[],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[],"media":[{"id":932403023900315648,"id_str":"932403023900315648","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCPnDMUEAAu_Eu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCPnDMUEAAu_Eu.png","url":"https:\/\/t.co\/frjMQ7zRkW","display_url":"pic.twitter.com\/frjMQ7zRkW","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932403375248834560\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932403023900315648,"id_str":"932403023900315648","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCPnDMUEAAu_Eu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCPnDMUEAAu_Eu.png","url":"https:\/\/t.co\/frjMQ7zRkW","display_url":"pic.twitter.com\/frjMQ7zRkW","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932403375248834560\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":6,"favorite_count":9,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tCDNGe9DjX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932403375248834560","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:19:09 +0000 2017","id":932402901690990594,"id_str":"932402901690990594","text":"@davidfrum Yes, we know. The question is: what do we do about it?","display_text_range":[11,66],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932394351942164483,"in_reply_to_status_id_str":"932394351942164483","in_reply_to_user_id":18686907,"in_reply_to_user_id_str":"18686907","in_reply_to_screen_name":"davidfrum","user":{"id":14565571,"id_str":"14565571","name":"Heather","screen_name":"SweetGeekling","location":"Boulder, CO","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":292,"friends_count":305,"listed_count":2,"favourites_count":12443,"statuses_count":8282,"created_at":"Mon Apr 28 04:38:20 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_tile":true,"profile_link_color":"EAA852","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD66B","profile_text_color":"0F2941","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14565571\/1478903561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"davidfrum","name":"David Frum","id":18686907,"id_str":"18686907","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:15:23 +0000 2017","id":932401953224630272,"id_str":"932401953224630272","text":"Colorado Sunsets... @ Niwot Colorado https:\/\/t.co\/SswvmGThvf","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402223320,"id_str":"402223320","name":"Brent Wood","screen_name":"BJABAW","location":"Denver, CO","url":"http:\/\/www.driveautonetwork.com","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":603,"friends_count":1818,"listed_count":6,"favourites_count":1629,"statuses_count":1435,"created_at":"Mon Oct 31 18:52:26 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1738544169\/1325910256722_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1738544169\/1325910256722_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.10117503,-105.16899699]},"coordinates":{"type":"Point","coordinates":[-105.16899699,40.10117503]},"place":{"id":"bdcaff9caa1201c6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bdcaff9caa1201c6.json","place_type":"city","name":"Niwot","full_name":"Niwot, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.216339,40.086894],[-105.216339,40.116100],[-105.131459,40.116100],[-105.131459,40.086894]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SswvmGThvf","expanded_url":"https:\/\/www.instagram.com\/p\/BbslLGSF3u6\/","display_url":"instagram.com\/p\/BbslLGSF3u6\/","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:14:35 +0000 2017","id":932401753839910912,"id_str":"932401753839910912","text":"@doug_oliver11 cfb all day though https:\/\/t.co\/M7xh2lf7wR","display_text_range":[15,33],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932401087226585088,"in_reply_to_status_id_str":"932401087226585088","in_reply_to_user_id":2790206746,"in_reply_to_user_id_str":"2790206746","in_reply_to_screen_name":"doug_oliver11","user":{"id":704144899655004161,"id_str":"704144899655004161","name":"Ren","screen_name":"rensch025","location":null,"url":null,"description":"Husband + Licensed Funeral Director and Embalmer. Enjoyer of all things CU football, soccer, snowboarding, and bourbon. #gobuffs","translator_type":"none","protected":false,"verified":false,"followers_count":41,"friends_count":114,"listed_count":3,"favourites_count":3244,"statuses_count":4396,"created_at":"Mon Feb 29 03:23:21 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/882292159201681408\/ynBXABiO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882292159201681408\/ynBXABiO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704144899655004161\/1508388182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"doug_oliver11","name":"Doug Oliver","id":2790206746,"id_str":"2790206746","indices":[0,14]}],"symbols":[],"media":[{"id":932401598348890113,"id_str":"932401598348890113","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCOUEmXkAEG2xf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCOUEmXkAEG2xf.jpg","url":"https:\/\/t.co\/M7xh2lf7wR","display_url":"pic.twitter.com\/M7xh2lf7wR","expanded_url":"https:\/\/twitter.com\/rensch025\/status\/932401753839910912\/photo\/1","type":"photo","sizes":{"small":{"w":360,"h":202,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":202,"resize":"fit"},"large":{"w":360,"h":202,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932401598348890113,"id_str":"932401598348890113","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCOUEmXkAEG2xf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/DPCOUEmXkAEG2xf.jpg","url":"https:\/\/t.co\/M7xh2lf7wR","display_url":"pic.twitter.com\/M7xh2lf7wR","expanded_url":"https:\/\/twitter.com\/rensch025\/status\/932401753839910912\/photo\/1","type":"animated_gif","sizes":{"small":{"w":360,"h":202,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":202,"resize":"fit"},"large":{"w":360,"h":202,"resize":"fit"}},"video_info":{"aspect_ratio":[180,101],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/DPCOUEmXkAEG2xf.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:13:39 +0000 2017","id":932401515234332672,"id_str":"932401515234332672","text":"No filter needed for this velvet sky. Grateful for such beauty.\n#boulder #sunset #coloradical @\u2026 https:\/\/t.co\/yXUdDZm2H1","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85410364,"id_str":"85410364","name":"Kari Sullivan","screen_name":"303fitchick","location":"Massachusetts!","url":"http:\/\/gettinwickedtight.wordpress.com","description":"CPT NASM. Spin Inst. Love moving my body! Love cooking. Food.Fitness.Fun. Making my debut as a Figure Competitor! #FitFluential Ambassador #Sweatpink","translator_type":"none","protected":false,"verified":false,"followers_count":192,"friends_count":216,"listed_count":29,"favourites_count":31,"statuses_count":2588,"created_at":"Mon Oct 26 20:45:09 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5EC4C9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/835155424\/c437ba63d581261e62767db096e28f7a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/835155424\/c437ba63d581261e62767db096e28f7a.png","profile_background_tile":true,"profile_link_color":"494987","profile_sidebar_border_color":"F4DB08","profile_sidebar_fill_color":"874FF8","profile_text_color":"ADC4ED","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1514342349\/281851_2226258496641_1253158199_32629046_785740_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1514342349\/281851_2226258496641_1253158199_32629046_785740_n_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.98297,-105.24844]},"coordinates":{"type":"Point","coordinates":[-105.24844,39.98297]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"boulder","indices":[65,73]},{"text":"sunset","indices":[74,81]},{"text":"coloradical","indices":[82,94]}],"urls":[{"url":"https:\/\/t.co\/yXUdDZm2H1","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsk-M8F0Tb\/","display_url":"instagram.com\/p\/Bbsk-M8F0Tb\/","indices":[98,121]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:12:12 +0000 2017","id":932401151986884608,"id_str":"932401151986884608","text":"This is our president? \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/bSY2r57r4O","display_text_range":[0,26],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2364710755,"id_str":"2364710755","name":"Paul Munn","screen_name":"paulywoggg","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":91,"friends_count":147,"listed_count":0,"favourites_count":1155,"statuses_count":752,"created_at":"Thu Feb 27 22:22:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/920859871096070144\/Y8DL2XrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/920859871096070144\/Y8DL2XrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2364710755\/1494868392","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":932303108146892801,"quoted_status_id_str":"932303108146892801","quoted_status":{"created_at":"Sun Nov 19 17:42:36 +0000 2017","id":932303108146892801,"id_str":"932303108146892801","text":"Now that the three basketball players are out of China and saved from years in jail, LaVar Ball, the father of LiAn\u2026 https:\/\/t.co\/371qJ1biwh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25073877,"id_str":"25073877","name":"Donald J. Trump","screen_name":"realDonaldTrump","location":"Washington, DC","url":"https:\/\/t.co\/OMxB0x7xC5","description":"45th President of the United States of America\ud83c\uddfa\ud83c\uddf8","translator_type":"regular","protected":false,"verified":true,"followers_count":42992916,"friends_count":45,"listed_count":81062,"favourites_count":23,"statuses_count":36414,"created_at":"Wed Mar 18 13:46:38 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6D5C18","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530021613\/trump_scotland__43_of_70_cc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530021613\/trump_scotland__43_of_70_cc.jpg","profile_background_tile":true,"profile_link_color":"1B95E0","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"C5CEC0","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874276197357596672\/kUuht00m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874276197357596672\/kUuht00m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25073877\/1510650006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Now that the three basketball players are out of China and saved from years in jail, LaVar Ball, the father of LiAngelo, is unaccepting of what I did for his son and that shoplifting is no big deal. I should have left them in jail!","display_text_range":[0,231],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":78282,"retweet_count":62467,"favorite_count":205572,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/371qJ1biwh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932303108146892801","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bSY2r57r4O","expanded_url":"https:\/\/twitter.com\/realdonaldtrump\/status\/932303108146892801","display_url":"twitter.com\/realdonaldtrum\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:11:56 +0000 2017","id":932401083904864256,"id_str":"932401083904864256","text":"Sunday Evening, Nov 19, 2017 Sunset Above Boulder, CO @ Dakota Ridge\u2026 https:\/\/t.co\/okyDikYSSa","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33067087,"id_str":"33067087","name":"Liz Mandel","screen_name":"LizRealtor","location":"Boulder, Colorado","url":"http:\/\/www.coloradohomes.com\/Associate\/AgentProfile.aspx?AgentID=1292","description":"Realtor\/Massage Therapist-If you sell or buy a home with me I will give you a complementary massage after we close!!! Please check StorcknestTeam!","translator_type":"none","protected":false,"verified":false,"followers_count":258,"friends_count":661,"listed_count":11,"favourites_count":31,"statuses_count":616,"created_at":"Sun Apr 19 00:33:19 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1559452599\/Mandel_5366_high_res_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1559452599\/Mandel_5366_high_res_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33067087\/1510989397","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.06853408,-105.28838398]},"coordinates":{"type":"Point","coordinates":[-105.28838398,40.06853408]},"place":{"id":"e21c8e4914eef2b3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e21c8e4914eef2b3.json","place_type":"admin","name":"Colorado","full_name":"Colorado, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-109.060257,36.992427],[-109.060257,41.003445],[-102.041524,41.003445],[-102.041524,36.992427]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/okyDikYSSa","expanded_url":"https:\/\/www.instagram.com\/p\/BbskxzfF97xTNRPs9dIHiBMRKqDxUMSLVRN5d80\/","display_url":"instagram.com\/p\/BbskxzfF97xT\u2026","indices":[70,93]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:09:01 +0000 2017","id":932400352447614977,"id_str":"932400352447614977","text":"2017\/12\/16: Boulder, CO, United States: Afrobeat Holiday BASH https:\/\/t.co\/ucnZMboDrH https:\/\/t.co\/r3HAthf5UV","display_text_range":[0,85],"source":"\u003ca href=\"http:\/\/www.dancedeets.com\" rel=\"nofollow\"\u003eDanceDeets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203930370,"id_str":"203930370","name":"DanceDeets","screen_name":"dancedeets","location":"Worldwide","url":"https:\/\/www.dancedeets.com\/","description":"Street Dance Events. Worldwide.","translator_type":"none","protected":false,"verified":false,"followers_count":1520,"friends_count":896,"listed_count":433,"favourites_count":199,"statuses_count":99134,"created_at":"Sun Oct 17 14:36:45 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555407935581339649\/3jwJEEvx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555407935581339649\/3jwJEEvx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203930370\/1425633346","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.02583,-105.2523029]},"coordinates":{"type":"Point","coordinates":[-105.2523029,40.02583]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ucnZMboDrH","expanded_url":"https:\/\/www.dancedeets.com\/events\/536521206697012\/afrobeat-holiday-bash?utm_campaign=autopost&utm_medium=share&utm_source=twitter_feed","display_url":"dancedeets.com\/events\/5365212\u2026","indices":[62,85]}],"user_mentions":[],"symbols":[],"media":[{"id":932400349133942785,"id_str":"932400349133942785","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCNLW6UMAE7hNv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCNLW6UMAE7hNv.jpg","url":"https:\/\/t.co\/r3HAthf5UV","display_url":"pic.twitter.com\/r3HAthf5UV","expanded_url":"https:\/\/twitter.com\/dancedeets\/status\/932400352447614977\/photo\/1","type":"photo","sizes":{"small":{"w":507,"h":680,"resize":"fit"},"large":{"w":852,"h":1142,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":852,"h":1142,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932400349133942785,"id_str":"932400349133942785","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCNLW6UMAE7hNv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCNLW6UMAE7hNv.jpg","url":"https:\/\/t.co\/r3HAthf5UV","display_url":"pic.twitter.com\/r3HAthf5UV","expanded_url":"https:\/\/twitter.com\/dancedeets\/status\/932400352447614977\/photo\/1","type":"photo","sizes":{"small":{"w":507,"h":680,"resize":"fit"},"large":{"w":852,"h":1142,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":852,"h":1142,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:08:13 +0000 2017","id":932400151775281153,"id_str":"932400151775281153","text":"My kids wanted to trail run on our family hike. I said of course! Because I can. I love being\u2026 https:\/\/t.co\/vw0VEdAubx","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3976318392,"id_str":"3976318392","name":"Gerald Rhodes","screen_name":"GRInstitute","location":"Boulder, CO","url":"http:\/\/geraldrhodes.com","description":"Motivational Speaker & Sobriety Coach. Find out how I lost over 40lbs on the bike for good. See the new content I produce everyday!","translator_type":"none","protected":false,"verified":false,"followers_count":364,"friends_count":687,"listed_count":34,"favourites_count":2066,"statuses_count":1306,"created_at":"Thu Oct 22 04:27:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657273795728666624\/udi5JvO-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657273795728666624\/udi5JvO-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3976318392\/1445543545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.02083,-105.29127]},"coordinates":{"type":"Point","coordinates":[-105.29127,40.02083]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vw0VEdAubx","expanded_url":"https:\/\/www.instagram.com\/p\/BbskWn7jElh\/","display_url":"instagram.com\/p\/BbskWn7jElh\/","indices":[95,118]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:07:37 +0000 2017","id":932399997210869760,"id_str":"932399997210869760","text":"Watch me glow","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528762392,"id_str":"528762392","name":"HESSA","screen_name":"hessaalkhaldii","location":"Boulder, CO & Saudi Arabia ","url":null,"description":"#CPP16 Saudi Aramco student , Computer &Electrical Engineer at UCB","translator_type":"none","protected":false,"verified":false,"followers_count":703,"friends_count":194,"listed_count":3,"favourites_count":1832,"statuses_count":18651,"created_at":"Sun Mar 18 19:07:53 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923094790169874432\/YNXZ6FvZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923094790169874432\/YNXZ6FvZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528762392\/1503759830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:07:17 +0000 2017","id":932399913597620224,"id_str":"932399913597620224","text":"Anyone headed back to boulder from DEN?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35633966,"id_str":"35633966","name":"Cheryl Fellows","screen_name":"cheryl303","location":"Boulder, CO","url":null,"description":"Finance exec, inner geek, love mah jongg, knitting, baking old world style. #nerdnation. Would live on froyo & ice cream.","translator_type":"none","protected":false,"verified":false,"followers_count":1259,"friends_count":1399,"listed_count":116,"favourites_count":17929,"statuses_count":26037,"created_at":"Mon Apr 27 01:54:58 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593222279\/bi9zz4d34fgpygma7rsz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593222279\/bi9zz4d34fgpygma7rsz.jpeg","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/892587410101477376\/p3obwfH3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/892587410101477376\/p3obwfH3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35633966\/1399833151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:06:48 +0000 2017","id":932399791773851648,"id_str":"932399791773851648","text":"@realDonaldTrump shows he hires the scum that rises to the top of his swamp https:\/\/t.co\/WF8YipcMrY","display_text_range":[0,75],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","user":{"id":756534445998477313,"id_str":"756534445998477313","name":"PO","screen_name":"pamnyco","location":"USA","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":19,"friends_count":77,"listed_count":0,"favourites_count":665,"statuses_count":4117,"created_at":"Fri Jul 22 17:00:42 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927016032899776513\/yWh9f-T-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927016032899776513\/yWh9f-T-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"quoted_status_id":932254821226135553,"quoted_status_id_str":"932254821226135553","quoted_status":{"created_at":"Sun Nov 19 14:30:44 +0000 2017","id":932254821226135553,"id_str":"932254821226135553","text":"Hey Donald Trump, whatever happened to that thing you said a year ago about hiring \u201cthe best people for the job?\u201d\u2026 https:\/\/t.co\/fss4sMNbbD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242797085,"id_str":"242797085","name":"\u26d3AstroCreepXL\u26d3","screen_name":"CreepyXL","location":"New York, NY","url":null,"description":"You belong in the dark with me \u2022 Check out the garbage I am listening to at http:\/\/www.last.fm\/user\/SpotifyOnly","translator_type":"none","protected":false,"verified":false,"followers_count":3148,"friends_count":2971,"listed_count":59,"favourites_count":5471,"statuses_count":40570,"created_at":"Tue Jan 25 16:32:53 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/688973405\/fc732d03a0d73eca9596cc994e30b9d4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/688973405\/fc732d03a0d73eca9596cc994e30b9d4.jpeg","profile_background_tile":false,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/892846041573212160\/wh3uxjD1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/892846041573212160\/wh3uxjD1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242797085\/1509143614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Hey Donald Trump, whatever happened to that thing you said a year ago about hiring \u201cthe best people for the job?\u201d @realDonaldTrump nominates man whose firm tripled price of insulin to regulate drug companies. https:\/\/t.co\/bQfX8cTSuy","display_text_range":[0,232],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bQfX8cTSuy","expanded_url":"http:\/\/www.independent.co.uk\/news\/world\/americas\/us-politics\/donald-trump-nominates-alex-azar-eli-lilley-who-tripled-price-of-insulin-to-regulate-drug-companies-a8062886.html","display_url":"independent.co.uk\/news\/world\/ame\u2026","indices":[209,232]}],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[114,130]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fss4sMNbbD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932254821226135553","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WF8YipcMrY","expanded_url":"https:\/\/twitter.com\/creepyxl\/status\/932254821226135553","display_url":"twitter.com\/creepyxl\/statu\u2026","indices":[76,99]}],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:06:21 +0000 2017","id":932399679798525954,"id_str":"932399679798525954","text":"B'H: Trumplethinskin is such a wimpy whiny baby. If it wasn't so tragic and frightening, it would be funny. https:\/\/t.co\/YxRMV7dmBU","display_text_range":[0,107],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244236869,"id_str":"244236869","name":"Rabbi Davis","screen_name":"Rebahir","location":null,"url":"http:\/\/rockymountainhai.com","description":"Rabbi beyond movements. How do you Jew? Finding the Infinte within the Finite. Good conversation and laughter. Breathe\/Daven\/meditate. Connect mind\/body\/soul.","translator_type":"none","protected":false,"verified":false,"followers_count":253,"friends_count":527,"listed_count":6,"favourites_count":869,"statuses_count":1060,"created_at":"Fri Jan 28 21:16:20 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2EEEF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/202211366\/xa056db72a1fbdeaa18d07a10f55fe7e.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/202211366\/xa056db72a1fbdeaa18d07a10f55fe7e.jpg","profile_background_tile":false,"profile_link_color":"8F2E2E","profile_sidebar_border_color":"8BA7C4","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"7B8894","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228439920\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228439920\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"72a91b4570317b68","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/72a91b4570317b68.json","place_type":"city","name":"Lafayette","full_name":"Lafayette, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.190246,39.957602],[-105.190246,40.023700],[-105.070651,40.023700],[-105.070651,39.957602]]]},"attributes":{}},"contributors":null,"quoted_status_id":932388590344196096,"quoted_status_id_str":"932388590344196096","quoted_status":{"created_at":"Sun Nov 19 23:22:17 +0000 2017","id":932388590344196096,"id_str":"932388590344196096","text":"Sen. Jeff Flake(y), who is unelectable in the Great State of Arizona (quit race, anemic polls) was caught (purposel\u2026 https:\/\/t.co\/ch8x9i4qN7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":932303108146892801,"in_reply_to_status_id_str":"932303108146892801","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","user":{"id":25073877,"id_str":"25073877","name":"Donald J. Trump","screen_name":"realDonaldTrump","location":"Washington, DC","url":"https:\/\/t.co\/OMxB0x7xC5","description":"45th President of the United States of America\ud83c\uddfa\ud83c\uddf8","translator_type":"regular","protected":false,"verified":true,"followers_count":42992916,"friends_count":45,"listed_count":81062,"favourites_count":23,"statuses_count":36414,"created_at":"Wed Mar 18 13:46:38 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6D5C18","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530021613\/trump_scotland__43_of_70_cc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530021613\/trump_scotland__43_of_70_cc.jpg","profile_background_tile":true,"profile_link_color":"1B95E0","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"C5CEC0","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874276197357596672\/kUuht00m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874276197357596672\/kUuht00m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25073877\/1510650006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Sen. Jeff Flake(y), who is unelectable in the Great State of Arizona (quit race, anemic polls) was caught (purposely) on \u201cmike\u201d saying bad things about your favorite President. He\u2019ll be a NO on tax cuts because his political career anyway is \u201ctoast.\u201d","display_text_range":[0,250],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":19315,"retweet_count":6850,"favorite_count":27127,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ch8x9i4qN7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932388590344196096","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YxRMV7dmBU","expanded_url":"https:\/\/twitter.com\/realDonaldTrump\/status\/932388590344196096","display_url":"twitter.com\/realDonaldTrum\u2026","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:05:57 +0000 2017","id":932399577851764736,"id_str":"932399577851764736","text":"@WGIGNewsTag #MyThanksgivingWishWouldBe that every single person feels that they are ENOUGH. May you feel the fulln\u2026 https:\/\/t.co\/zCVRizgU4A","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":835365465958531072,"in_reply_to_user_id_str":"835365465958531072","in_reply_to_screen_name":"WGIGNewsTag","user":{"id":581649432,"id_str":"581649432","name":"Marlena Niemann","screen_name":"MoMo_SanDiego","location":"Rancho Santa Fe, CA","url":"http:\/\/momosaan.com","description":"@davidji_com Master Certified #Meditation Instructor, #Mindfulness #Lifestyle Coach, #Yoga #Luxxtura #Travel #Wine #Beachlife #Hockey #Helicopters @BonVegetit","translator_type":"none","protected":false,"verified":false,"followers_count":16265,"friends_count":15245,"listed_count":293,"favourites_count":87080,"statuses_count":34796,"created_at":"Wed May 16 06:07:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444327812556533760\/iGOID4vR.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/678279471590346753\/MlHPJKV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581649432\/1510817598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@WGIGNewsTag #MyThanksgivingWishWouldBe that every single person feels that they are ENOUGH. May you feel the fullness and PEACE of life. Happy #Thanksgiving week. #selflove \ud83d\ude4f\ud83d\udc99 #gratitude https:\/\/t.co\/U60YqFOFzS","display_text_range":[0,187],"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[13,39]},{"text":"Thanksgiving","indices":[144,157]},{"text":"selflove","indices":[164,173]},{"text":"gratitude","indices":[177,187]}],"urls":[],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[],"media":[{"id":932399170886844416,"id_str":"932399170886844416","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCMGxmUQAAxlEH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCMGxmUQAAxlEH.png","url":"https:\/\/t.co\/U60YqFOFzS","display_url":"pic.twitter.com\/U60YqFOFzS","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932399577851764736\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932399170886844416,"id_str":"932399170886844416","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCMGxmUQAAxlEH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCMGxmUQAAxlEH.png","url":"https:\/\/t.co\/U60YqFOFzS","display_url":"pic.twitter.com\/U60YqFOFzS","expanded_url":"https:\/\/twitter.com\/MoMo_SanDiego\/status\/932399577851764736\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":8,"favorite_count":11,"entities":{"hashtags":[{"text":"MyThanksgivingWishWouldBe","indices":[13,39]}],"urls":[{"url":"https:\/\/t.co\/zCVRizgU4A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932399577851764736","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"WGIGNewsTag","name":"WGIGNewsTag","id":835365465958531072,"id_str":"835365465958531072","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:04:42 +0000 2017","id":932399263442722818,"id_str":"932399263442722818","text":"Ooooh. @TwilightBeasts https:\/\/t.co\/MWcBR4uUaD","display_text_range":[0,22],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14045465,"id_str":"14045465","name":"Zane Selvans","screen_name":"ZaneSelvans","location":"Boulder, Colorado, USA","url":"http:\/\/zaneselvans.org","description":"Amateur Earthling, PhD. Climate & energy wonk. Bright green urbanist. Rider of bikes. Student of cooperation. Planetary geophysicist.","translator_type":"none","protected":false,"verified":false,"followers_count":1340,"friends_count":870,"listed_count":109,"favourites_count":3806,"statuses_count":21854,"created_at":"Wed Feb 27 03:23:55 +0000 2008","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180276458\/vjzUwxEp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180276458\/vjzUwxEp.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925730921382215681\/TZcyVtl9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925730921382215681\/TZcyVtl9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14045465\/1494047560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":932041896146407425,"quoted_status_id_str":"932041896146407425","quoted_status":{"created_at":"Sun Nov 19 00:24:39 +0000 2017","id":932041896146407425,"id_str":"932041896146407425","text":"I love these character studies of Neanderthals by the artist Tom Bj\u00f6rklund. So rarely are they pictured as if they\u2026 https:\/\/t.co\/BkGBAflBBb","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":856951508,"id_str":"856951508","name":"Matthew Dalby, PhD","screen_name":"MatthewJDalby","location":"Saltaire, England.","url":"http:\/\/honey-guide.com","description":"PhD. Interested in nutritional science, obesity, food, microbiota, health, history, human evolution, and many other interesting things.","translator_type":"none","protected":false,"verified":false,"followers_count":2011,"friends_count":1104,"listed_count":72,"favourites_count":13751,"statuses_count":10430,"created_at":"Mon Oct 01 20:10:08 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/872894946461855749\/m5ZdTRnw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/872894946461855749\/m5ZdTRnw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/856951508\/1474968596","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"I love these character studies of Neanderthals by the artist Tom Bj\u00f6rklund. So rarely are they pictured as if they were real people.\n\nSee his blog and Facebook for more.\nhttps:\/\/t.co\/TjJzKjTJV9\nhttps:\/\/t.co\/xs1ToCYlzu https:\/\/t.co\/EAnbWpgHiD","display_text_range":[0,217],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TjJzKjTJV9","expanded_url":"https:\/\/www.facebook.com\/tombjorklundart\/","display_url":"facebook.com\/tombjorklundar\u2026","indices":[170,193]},{"url":"https:\/\/t.co\/xs1ToCYlzu","expanded_url":"http:\/\/www.tombjorklund.fi","display_url":"tombjorklund.fi","indices":[194,217]}],"user_mentions":[],"symbols":[],"media":[{"id":932041864907296775,"id_str":"932041864907296775","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/DO9HI1GXkAcJ2tY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO9HI1GXkAcJ2tY.jpg","url":"https:\/\/t.co\/EAnbWpgHiD","display_url":"pic.twitter.com\/EAnbWpgHiD","expanded_url":"https:\/\/twitter.com\/MatthewJDalby\/status\/932041896146407425\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":707,"h":1000,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":707,"h":1000,"resize":"fit"}}},{"id":932041868677976066,"id_str":"932041868677976066","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/DO9HJDJXkAIW41y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO9HJDJXkAIW41y.jpg","url":"https:\/\/t.co\/EAnbWpgHiD","display_url":"pic.twitter.com\/EAnbWpgHiD","expanded_url":"https:\/\/twitter.com\/MatthewJDalby\/status\/932041896146407425\/photo\/1","type":"photo","sizes":{"large":{"w":1076,"h":1084,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1084,"resize":"fit"},"small":{"w":675,"h":680,"resize":"fit"}}},{"id":932041882548482048,"id_str":"932041882548482048","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/DO9HJ20WsAAqb6Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO9HJ20WsAAqb6Y.jpg","url":"https:\/\/t.co\/EAnbWpgHiD","display_url":"pic.twitter.com\/EAnbWpgHiD","expanded_url":"https:\/\/twitter.com\/MatthewJDalby\/status\/932041896146407425\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":1079,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1079,"h":1079,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932041864907296775,"id_str":"932041864907296775","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/DO9HI1GXkAcJ2tY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO9HI1GXkAcJ2tY.jpg","url":"https:\/\/t.co\/EAnbWpgHiD","display_url":"pic.twitter.com\/EAnbWpgHiD","expanded_url":"https:\/\/twitter.com\/MatthewJDalby\/status\/932041896146407425\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":707,"h":1000,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":707,"h":1000,"resize":"fit"}}},{"id":932041868677976066,"id_str":"932041868677976066","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/DO9HJDJXkAIW41y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO9HJDJXkAIW41y.jpg","url":"https:\/\/t.co\/EAnbWpgHiD","display_url":"pic.twitter.com\/EAnbWpgHiD","expanded_url":"https:\/\/twitter.com\/MatthewJDalby\/status\/932041896146407425\/photo\/1","type":"photo","sizes":{"large":{"w":1076,"h":1084,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1084,"resize":"fit"},"small":{"w":675,"h":680,"resize":"fit"}}},{"id":932041882548482048,"id_str":"932041882548482048","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/DO9HJ20WsAAqb6Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO9HJ20WsAAqb6Y.jpg","url":"https:\/\/t.co\/EAnbWpgHiD","display_url":"pic.twitter.com\/EAnbWpgHiD","expanded_url":"https:\/\/twitter.com\/MatthewJDalby\/status\/932041896146407425\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":1079,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1079,"h":1079,"resize":"fit"}}}]}},"quote_count":0,"reply_count":103,"retweet_count":4489,"favorite_count":10049,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BkGBAflBBb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932041896146407425","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MWcBR4uUaD","expanded_url":"https:\/\/twitter.com\/matthewjdalby\/status\/932041896146407425","display_url":"twitter.com\/matthewjdalby\/\u2026","indices":[23,46]}],"user_mentions":[{"screen_name":"TwilightBeasts","name":"TwilightBeasts","id":2413216260,"id_str":"2413216260","indices":[7,22]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:04:29 +0000 2017","id":932399208836956160,"id_str":"932399208836956160","text":"It's only 5pm but feels like 10pm, WHYYYYYY!!!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223576549,"id_str":"223576549","name":"Ethan Greenberg","screen_name":"TheEman22","location":"Boulder, CO","url":null,"description":"Diehard Mets, Giants, Islanders, Nets & DMB fan, TV\/Movie buff, Fantasy Sports addict, lover of my dog Stella.","translator_type":"none","protected":false,"verified":false,"followers_count":557,"friends_count":1766,"listed_count":21,"favourites_count":12409,"statuses_count":27128,"created_at":"Mon Dec 06 19:33:04 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"14799E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/797915209079762945\/BliYMcES_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/797915209079762945\/BliYMcES_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223576549\/1477194477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:04:17 +0000 2017","id":932399159532908544,"id_str":"932399159532908544","text":"pathetic (pat\u2022he\u2022tic) : living in a different state for ten months and not making a single friend","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214797614,"id_str":"214797614","name":"Hubert J. Farnsworth","screen_name":"ArianaCiorciari","location":"Boulder, CO","url":null,"description":"I currently live in a Bob Ross painting","translator_type":"none","protected":false,"verified":false,"followers_count":274,"friends_count":576,"listed_count":1,"favourites_count":11408,"statuses_count":2041,"created_at":"Fri Nov 12 07:34:34 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/711124332\/c486e6d443dff3582375989008336276.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/711124332\/c486e6d443dff3582375989008336276.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899339867133497344\/s8oXy8Wj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899339867133497344\/s8oXy8Wj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214797614\/1503755110","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:03:52 +0000 2017","id":932399056743292930,"id_str":"932399056743292930","text":"140PT6 in 7:54:10 \u2014 AMAZING ! OUTSTANDING! https:\/\/t.co\/QNIICZL673","display_text_range":[0,42],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601983599,"id_str":"601983599","name":"Kevin Lee Rens","screen_name":"KLR_rens","location":"Boulder, CO","url":null,"description":"Professor - BS MS PhD Iowa State University - College of Engineering. Professional Engineer. 70PT3 & 140PT6 Ironman Triathlete. GOP NRA tri140pt6@gmail.com","translator_type":"none","protected":false,"verified":false,"followers_count":3543,"friends_count":4188,"listed_count":15,"favourites_count":11905,"statuses_count":2241,"created_at":"Thu Jun 07 15:59:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/751615330162733058\/-A-bby9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/751615330162733058\/-A-bby9x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601983599\/1413050723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"72a91b4570317b68","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/72a91b4570317b68.json","place_type":"city","name":"Lafayette","full_name":"Lafayette, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.190246,39.957602],[-105.190246,40.023700],[-105.070651,40.023700],[-105.070651,39.957602]]]},"attributes":{}},"contributors":null,"quoted_status_id":932362758796009472,"quoted_status_id_str":"932362758796009472","quoted_status":{"created_at":"Sun Nov 19 21:39:38 +0000 2017","id":932362758796009472,"id_str":"932362758796009472","text":"#IMAZ @LSandersTri is your 2017 IRONMAN Arizona Champion! https:\/\/t.co\/0vW2Us2Xrn","display_text_range":[0,57],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12512092,"id_str":"12512092","name":"IRONMAN Triathlon","screen_name":"IRONMANtri","location":"Around the world","url":"http:\/\/ironman.com","description":"Official account of IRONMAN Triathlon. Swim 2.4 miles...Bike 112 miles...Run 26.2 miles...Brag for the rest of your life. Share photos using #IRONMANTraining","translator_type":"none","protected":false,"verified":true,"followers_count":237301,"friends_count":4635,"listed_count":3218,"favourites_count":7398,"statuses_count":21180,"created_at":"Mon Jan 21 22:22:20 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2A2A2A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000090556218\/b4c5957406bbe0135127675bd3cd3157.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000090556218\/b4c5957406bbe0135127675bd3cd3157.jpeg","profile_background_tile":true,"profile_link_color":"2D1EB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"857D85","profile_text_color":"FCF7FC","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/816685825811484672\/wvPl0sGu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816685825811484672\/wvPl0sGu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12512092\/1505503978","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":35,"favorite_count":151,"entities":{"hashtags":[{"text":"IMAZ","indices":[0,5]}],"urls":[],"user_mentions":[{"screen_name":"LSandersTri","name":"Lionel Sanders","id":42348486,"id_str":"42348486","indices":[6,18]}],"symbols":[],"media":[{"id":932362690097430528,"id_str":"932362690097430528","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932362690097430528\/pu\/img\/XhCXzT3zdw9VvHJX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932362690097430528\/pu\/img\/XhCXzT3zdw9VvHJX.jpg","url":"https:\/\/t.co\/0vW2Us2Xrn","display_url":"pic.twitter.com\/0vW2Us2Xrn","expanded_url":"https:\/\/twitter.com\/IRONMANtri\/status\/932362758796009472\/video\/1","type":"photo","sizes":{"medium":{"w":848,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":385,"resize":"fit"},"large":{"w":848,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932362690097430528,"id_str":"932362690097430528","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932362690097430528\/pu\/img\/XhCXzT3zdw9VvHJX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/932362690097430528\/pu\/img\/XhCXzT3zdw9VvHJX.jpg","url":"https:\/\/t.co\/0vW2Us2Xrn","display_url":"pic.twitter.com\/0vW2Us2Xrn","expanded_url":"https:\/\/twitter.com\/IRONMANtri\/status\/932362758796009472\/video\/1","type":"video","sizes":{"medium":{"w":848,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":385,"resize":"fit"},"large":{"w":848,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[53,30],"duration_millis":13700,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/932362690097430528\/pu\/pl\/oPJYyoTYPhMVN1xP.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932362690097430528\/pu\/vid\/318x180\/1dcXp8UWdKb6rL3q.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/932362690097430528\/pu\/vid\/636x360\/36BoPSM09EwKxynw.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QNIICZL673","expanded_url":"https:\/\/twitter.com\/ironmantri\/status\/932362758796009472","display_url":"twitter.com\/ironmantri\/sta\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:03:41 +0000 2017","id":932399008974233600,"id_str":"932399008974233600","text":"the nfl is merde","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":704144899655004161,"id_str":"704144899655004161","name":"Ren","screen_name":"rensch025","location":null,"url":null,"description":"Husband + Licensed Funeral Director and Embalmer. Enjoyer of all things CU football, soccer, snowboarding, and bourbon. #gobuffs","translator_type":"none","protected":false,"verified":false,"followers_count":41,"friends_count":114,"listed_count":3,"favourites_count":3244,"statuses_count":4396,"created_at":"Mon Feb 29 03:23:21 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/882292159201681408\/ynBXABiO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882292159201681408\/ynBXABiO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704144899655004161\/1508388182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:03:40 +0000 2017","id":932399002628354048,"id_str":"932399002628354048","text":"\u062d\u0628\u064a\u0628\u062a\u064a \u0648\u0627\u0644\u0644\u0647\ud83d\ude3b\ud83d\ude3b\ud83d\ude3b https:\/\/t.co\/4LA0I1tdiN","display_text_range":[0,15],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2615064194,"id_str":"2615064194","name":"\u200f\u0645\u064e.\u0627\u0644\u0635\u0631\u0627\u0641\u2691","screen_name":"MAl9arraf","location":"Colorado, USA","url":"https:\/\/mal9arraf.sarahah.com","description":"Petroleum Engineer To Be\ud83c\uddfa\ud83c\uddf8 | Piano\ud83c\udfb9 | Mom\u2764\ufe0f.","translator_type":"none","protected":false,"verified":false,"followers_count":2156,"friends_count":291,"listed_count":17,"favourites_count":207,"statuses_count":106460,"created_at":"Thu Jul 10 08:19:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929514109346889729\/w6jijyQa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929514109346889729\/w6jijyQa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2615064194\/1507850766","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":921026658798325760,"quoted_status_id_str":"921026658798325760","quoted_status":{"created_at":"Thu Oct 19 14:54:01 +0000 2017","id":921026658798325760,"id_str":"921026658798325760","text":"\u0645\u0648\u0644\u0648\u062f\u0629 \u0635\u0645\u0651\u0627\u0621 \u0645\u0627 \u062a\u0633\u0645\u0639\u060c \u0642\u0627\u0645 \u0627\u0644\u0623\u0637\u0628\u0627\u0621 \u0628\u062a\u0631\u0643\u064a\u0628 \u0633\u0645\u0651\u0627\u0639\u0629 \u062a\u0633\u0627\u0639\u062f\u0647\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0645\u0639\u060c \u0648\u0647\u0630\u0647 \u0631\u062f\u0629 \u0641\u0639\u0644 \u0627\u0644\u0631\u0636\u064a\u0639\u0629 \u0644\u0645\u0627 \u0633\u0645\u0639\u062a \u0635\u0648\u062a \u0648\u0627\u0644\u062f\u062a\u0647\u0627 \u0623\u0648\u0644 \u0645\u0631\u2026 https:\/\/t.co\/pLdo6TLu23","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":617121078,"id_str":"617121078","name":"\u062e\u0648\u064a\u0644\u062f","screen_name":"k_alk54","location":null,"url":null,"description":"\u0648\u0644\u0627\u064a\u062a\u064a \u0644\u0623\u0645\u064a\u0631 \u0627\u0644\u0646\u062d\u0644 \u062a\u0643\u0641\u064a\u0646\u064a \ud83d\udc99! #HalaMadrid https:\/\/khs54.sarahah.com\/","translator_type":"none","protected":false,"verified":false,"followers_count":7423,"friends_count":1426,"listed_count":44,"favourites_count":233,"statuses_count":114031,"created_at":"Sun Jun 24 11:37:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932293971434381312\/e9CNMjzA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932293971434381312\/e9CNMjzA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/617121078\/1500480271","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"\u0645\u0648\u0644\u0648\u062f\u0629 \u0635\u0645\u0651\u0627\u0621 \u0645\u0627 \u062a\u0633\u0645\u0639\u060c \u0642\u0627\u0645 \u0627\u0644\u0623\u0637\u0628\u0627\u0621 \u0628\u062a\u0631\u0643\u064a\u0628 \u0633\u0645\u0651\u0627\u0639\u0629 \u062a\u0633\u0627\u0639\u062f\u0647\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0645\u0639\u060c \u0648\u0647\u0630\u0647 \u0631\u062f\u0629 \u0641\u0639\u0644 \u0627\u0644\u0631\u0636\u064a\u0639\u0629 \u0644\u0645\u0627 \u0633\u0645\u0639\u062a \u0635\u0648\u062a \u0648\u0627\u0644\u062f\u062a\u0647\u0627 \u0623\u0648\u0644 \u0645\u0631\u0629 \ud83d\ude0d\ud83d\ude0d\ud83d\ude2d https:\/\/t.co\/gxTyArUufp","display_text_range":[0,120],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":921026311513976832,"id_str":"921026311513976832","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/921026311513976832\/pu\/img\/ORw9x2pBuXR-D42o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/921026311513976832\/pu\/img\/ORw9x2pBuXR-D42o.jpg","url":"https:\/\/t.co\/gxTyArUufp","display_url":"pic.twitter.com\/gxTyArUufp","expanded_url":"https:\/\/twitter.com\/k_alk54\/status\/921026658798325760\/video\/1","type":"video","sizes":{"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":65715,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/921026311513976832\/pu\/pl\/BQTnyd5xmkbhd8XI.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/921026311513976832\/pu\/vid\/360x640\/6FckPYUNAvSnXEVH.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/921026311513976832\/pu\/vid\/180x320\/ezRPcsipPQcMjC7T.mp4"}]}}]},"extended_entities":{"media":[{"id":921026311513976832,"id_str":"921026311513976832","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/921026311513976832\/pu\/img\/ORw9x2pBuXR-D42o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/921026311513976832\/pu\/img\/ORw9x2pBuXR-D42o.jpg","url":"https:\/\/t.co\/gxTyArUufp","display_url":"pic.twitter.com\/gxTyArUufp","expanded_url":"https:\/\/twitter.com\/k_alk54\/status\/921026658798325760\/video\/1","type":"video","sizes":{"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":65715,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/921026311513976832\/pu\/pl\/BQTnyd5xmkbhd8XI.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/921026311513976832\/pu\/vid\/360x640\/6FckPYUNAvSnXEVH.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/921026311513976832\/pu\/vid\/180x320\/ezRPcsipPQcMjC7T.mp4"}]}}]}},"quote_count":0,"reply_count":2,"retweet_count":81,"favorite_count":65,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pLdo6TLu23","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/921026658798325760","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4LA0I1tdiN","expanded_url":"https:\/\/twitter.com\/k_alk54\/status\/921026658798325760","display_url":"twitter.com\/k_alk54\/status\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:02:52 +0000 2017","id":932398804799594497,"id_str":"932398804799594497","text":"100% unedited photos from my front yard :\u2019) @ Boulder, Colorado https:\/\/t.co\/6W86CQMdo1","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324165654,"id_str":"324165654","name":"Colonel Lingus","screen_name":"devaughntris","location":"Boulder, CO","url":null,"description":"talos guide u","translator_type":"none","protected":false,"verified":false,"followers_count":1092,"friends_count":108,"listed_count":10,"favourites_count":38288,"statuses_count":56123,"created_at":"Sun Jun 26 03:41:48 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A090A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124424046\/1932036427166b2d16c1243b6c676d7b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124424046\/1932036427166b2d16c1243b6c676d7b.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"21EDED","profile_text_color":"050405","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/909489522919997445\/SErfoRn__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/909489522919997445\/SErfoRn__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324165654\/1509591760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6W86CQMdo1","expanded_url":"https:\/\/www.instagram.com\/p\/BbsjvbGA6Fn\/","display_url":"instagram.com\/p\/BbsjvbGA6Fn\/","indices":[64,87]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:02:20 +0000 2017","id":932398668157718534,"id_str":"932398668157718534","text":"Great Colorado sunset tonight. https:\/\/t.co\/Hs5QR718Mt","display_text_range":[0,30],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":724416436781752320,"id_str":"724416436781752320","name":"Xander Martin","screen_name":"XanderMartinCO","location":"Colorado","url":null,"description":"CU Alumni \u2022 Environmental & Social Policy \u2022 I'm somewhere between the Colorado Capitol and the mountains \u2022 (tweets are my own)","translator_type":"none","protected":false,"verified":false,"followers_count":202,"friends_count":193,"listed_count":7,"favourites_count":302,"statuses_count":62,"created_at":"Mon Apr 25 01:55:12 +0000 2016","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912148204480634881\/R547Dms4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912148204480634881\/R547Dms4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/724416436781752320\/1507703360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932398648637382656,"id_str":"932398648637382656","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLoYEV4AA516e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLoYEV4AA516e.jpg","url":"https:\/\/t.co\/Hs5QR718Mt","display_url":"pic.twitter.com\/Hs5QR718Mt","expanded_url":"https:\/\/twitter.com\/XanderMartinCO\/status\/932398668157718534\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932398648637382656,"id_str":"932398648637382656","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLoYEV4AA516e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLoYEV4AA516e.jpg","url":"https:\/\/t.co\/Hs5QR718Mt","display_url":"pic.twitter.com\/Hs5QR718Mt","expanded_url":"https:\/\/twitter.com\/XanderMartinCO\/status\/932398668157718534\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:02:20 +0000 2017","id":932398667683606529,"id_str":"932398667683606529","text":"Opera for families opens in just two weeks! https:\/\/t.co\/Nyq1bFUidL","display_text_range":[0,43],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219817228,"id_str":"1219817228","name":"Boulder Opera","screen_name":"boulderopera","location":null,"url":"http:\/\/www.boulderoperacompany.com","description":"Boulder Opera is committed to producing three Operas a year; on full length and two abridged versions adapted for children.","translator_type":"none","protected":false,"verified":false,"followers_count":409,"friends_count":472,"listed_count":9,"favourites_count":200,"statuses_count":426,"created_at":"Mon Feb 25 21:23:03 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B38000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":932372293736468480,"quoted_status_id_str":"932372293736468480","quoted_status":{"created_at":"Sun Nov 19 22:17:32 +0000 2017","id":932372293736468480,"id_str":"932372293736468480","text":"Find some magic at #Boulder Opera\u2019s Cendrillon. Meet the enchanting fairy Godmother @JovannaAnderson Shows open dec\u2026 https:\/\/t.co\/RWINQvnrTy","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219817228,"id_str":"1219817228","name":"Boulder Opera","screen_name":"boulderopera","location":null,"url":"http:\/\/www.boulderoperacompany.com","description":"Boulder Opera is committed to producing three Operas a year; on full length and two abridged versions adapted for children.","translator_type":"none","protected":false,"verified":false,"followers_count":409,"friends_count":472,"listed_count":9,"favourites_count":200,"statuses_count":426,"created_at":"Mon Feb 25 21:23:03 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B38000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Find some magic at #Boulder Opera\u2019s Cendrillon. Meet the enchanting fairy Godmother @JovannaAnderson Shows open dec 3rd- 9th tix\/info: https:\/\/t.co\/YBgtEOkoj5\n#longmont #Boulder #FamilyFriendly #Operaforkids https:\/\/t.co\/qgEMJyUsjP","display_text_range":[0,207],"entities":{"hashtags":[{"text":"Boulder","indices":[19,27]},{"text":"longmont","indices":[159,168]},{"text":"Boulder","indices":[169,177]},{"text":"FamilyFriendly","indices":[178,193]},{"text":"Operaforkids","indices":[194,207]}],"urls":[{"url":"https:\/\/t.co\/YBgtEOkoj5","expanded_url":"http:\/\/www.boulderoperacompany.com\/cendrillon\/","display_url":"boulderoperacompany.com\/cendrillon\/","indices":[135,158]}],"user_mentions":[],"symbols":[],"media":[{"id":932372044544589825,"id_str":"932372044544589825","indices":[208,231],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBzb0GVwAEGOmO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBzb0GVwAEGOmO.jpg","url":"https:\/\/t.co\/qgEMJyUsjP","display_url":"pic.twitter.com\/qgEMJyUsjP","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932372293736468480\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":419,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":419,"resize":"fit"},"large":{"w":640,"h":419,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932372044544589825,"id_str":"932372044544589825","indices":[208,231],"media_url":"http:\/\/pbs.twimg.com\/media\/DPBzb0GVwAEGOmO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPBzb0GVwAEGOmO.jpg","url":"https:\/\/t.co\/qgEMJyUsjP","display_url":"pic.twitter.com\/qgEMJyUsjP","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932372293736468480\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":419,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":419,"resize":"fit"},"large":{"w":640,"h":419,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Boulder","indices":[19,27]}],"urls":[{"url":"https:\/\/t.co\/RWINQvnrTy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932372293736468480","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Nyq1bFUidL","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932372293736468480","display_url":"twitter.com\/boulderopera\/s\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:02:16 +0000 2017","id":932398651711918080,"id_str":"932398651711918080","text":"This sky tho.... @ Boulder, Colorado https:\/\/t.co\/1HnBkv64fC","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16571216,"id_str":"16571216","name":"gohumble","screen_name":"gohumble","location":"Longmont, CO 80501","url":null,"description":"adopted. grown up (mostly). queer. vegan\u24cb. lover. mostly in that order.","translator_type":"none","protected":false,"verified":false,"followers_count":881,"friends_count":1563,"listed_count":112,"favourites_count":504,"statuses_count":13356,"created_at":"Fri Oct 03 01:33:06 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/881235080009531394\/iHb4Pji3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/881235080009531394\/iHb4Pji3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16571216\/1498937791","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1HnBkv64fC","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsjq9kgsYH\/","display_url":"instagram.com\/p\/Bbsjq9kgsYH\/","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:59 +0000 2017","id":932398580312236033,"id_str":"932398580312236033","text":"Gorgeous sunset tonight @ Superior, Colorado https:\/\/t.co\/YxCpW9Jf3F","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14266757,"id_str":"14266757","name":"Reese Lloyd","screen_name":"ReeseLloyd","location":"Boulder, CO","url":"http:\/\/cocktailhacker.com","description":"Cocktails : Food : Randomness : SolidFire Product Manager : Wrangler of Cats : Finder of Delicious Things","translator_type":"none","protected":false,"verified":false,"followers_count":575,"friends_count":376,"listed_count":57,"favourites_count":160,"statuses_count":2639,"created_at":"Mon Mar 31 15:13:54 +0000 2008","utc_offset":-25200,"time_zone":"America\/Denver","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/2392770\/Vines_20070930-High-1-Cropped.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/2392770\/Vines_20070930-High-1-Cropped.jpg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"494949","profile_sidebar_fill_color":"737373","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/708363291588894720\/fr3eB_la_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/708363291588894720\/fr3eB_la_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14266757\/1457722048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.9347,-105.163]},"coordinates":{"type":"Point","coordinates":[-105.163,39.9347]},"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YxCpW9Jf3F","expanded_url":"https:\/\/www.instagram.com\/p\/BbsjpIBB7EM\/","display_url":"instagram.com\/p\/BbsjpIBB7EM\/","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:55 +0000 2017","id":932398563174354945,"id_str":"932398563174354945","text":"Crazy Cool Colorado Sunset! @ Niwot Colorado https:\/\/t.co\/aIEmiXS8DJ","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402223320,"id_str":"402223320","name":"Brent Wood","screen_name":"BJABAW","location":"Denver, CO","url":"http:\/\/www.driveautonetwork.com","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":603,"friends_count":1818,"listed_count":6,"favourites_count":1629,"statuses_count":1435,"created_at":"Mon Oct 31 18:52:26 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1738544169\/1325910256722_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1738544169\/1325910256722_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.10117503,-105.16899699]},"coordinates":{"type":"Point","coordinates":[-105.16899699,40.10117503]},"place":{"id":"bdcaff9caa1201c6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bdcaff9caa1201c6.json","place_type":"city","name":"Niwot","full_name":"Niwot, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.216339,40.086894],[-105.216339,40.116100],[-105.131459,40.116100],[-105.131459,40.086894]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/aIEmiXS8DJ","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsjoc7FBzQ\/","display_url":"instagram.com\/p\/Bbsjoc7FBzQ\/","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:52 +0000 2017","id":932398553556586496,"id_str":"932398553556586496","text":"Lovely sunset in #Boulder this evening. https:\/\/t.co\/czpEu0h9Lj","display_text_range":[0,39],"source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15704927,"id_str":"15704927","name":"Rick Goldstein","screen_name":"rickgoldstein","location":"Boulder, CO 80303","url":"http:\/\/fatmanfittown.com","description":"Center-left political semi-junkie \/\/ Engineer\/recovering physicist \/\/ Jew \/\/ Blind","translator_type":"none","protected":false,"verified":false,"followers_count":267,"friends_count":681,"listed_count":22,"favourites_count":437,"statuses_count":4123,"created_at":"Sat Aug 02 21:26:08 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1761943694\/nAjO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1761943694\/nAjO3_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[{"text":"Boulder","indices":[17,25]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932398541007290373,"id_str":"932398541007290373","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLiHHVAAU47It.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLiHHVAAU47It.jpg","url":"https:\/\/t.co\/czpEu0h9Lj","display_url":"pic.twitter.com\/czpEu0h9Lj","expanded_url":"https:\/\/twitter.com\/rickgoldstein\/status\/932398553556586496\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932398541007290373,"id_str":"932398541007290373","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLiHHVAAU47It.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLiHHVAAU47It.jpg","url":"https:\/\/t.co\/czpEu0h9Lj","display_url":"pic.twitter.com\/czpEu0h9Lj","expanded_url":"https:\/\/twitter.com\/rickgoldstein\/status\/932398553556586496\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:40 +0000 2017","id":932398500704219136,"id_str":"932398500704219136","text":"Cinderella opens in 2 weeks! https:\/\/t.co\/nfYHQMbtEV","display_text_range":[0,28],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219817228,"id_str":"1219817228","name":"Boulder Opera","screen_name":"boulderopera","location":null,"url":"http:\/\/www.boulderoperacompany.com","description":"Boulder Opera is committed to producing three Operas a year; on full length and two abridged versions adapted for children.","translator_type":"none","protected":false,"verified":false,"followers_count":409,"friends_count":472,"listed_count":9,"favourites_count":200,"statuses_count":426,"created_at":"Mon Feb 25 21:23:03 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B38000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":932373785948360704,"quoted_status_id_str":"932373785948360704","quoted_status":{"created_at":"Sun Nov 19 22:23:27 +0000 2017","id":932373785948360704,"id_str":"932373785948360704","text":"Oh My! Cinderella is coming to the Opera! #Boulder Opera\u2019s Cendrillon. #familyfriendly- tix\/info:\u2026 https:\/\/t.co\/mAgRbNpvrt","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219817228,"id_str":"1219817228","name":"Boulder Opera","screen_name":"boulderopera","location":null,"url":"http:\/\/www.boulderoperacompany.com","description":"Boulder Opera is committed to producing three Operas a year; on full length and two abridged versions adapted for children.","translator_type":"none","protected":false,"verified":false,"followers_count":409,"friends_count":472,"listed_count":9,"favourites_count":200,"statuses_count":426,"created_at":"Mon Feb 25 21:23:03 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B38000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Oh My! Cinderella is coming to the Opera! #Boulder Opera\u2019s Cendrillon. #familyfriendly- tix\/info: https:\/\/t.co\/YBgtEOBZHF\nShows open Dec 3rd-9th #Longmont #Boulder #FamilyFriendly https:\/\/t.co\/cSBnq2j8tY","display_text_range":[0,180],"entities":{"hashtags":[{"text":"Boulder","indices":[42,50]},{"text":"familyfriendly","indices":[71,86]},{"text":"Longmont","indices":[146,155]},{"text":"Boulder","indices":[156,164]},{"text":"FamilyFriendly","indices":[165,180]}],"urls":[{"url":"https:\/\/t.co\/YBgtEOBZHF","expanded_url":"http:\/\/www.boulderoperacompany.com\/cendrillon\/","display_url":"boulderoperacompany.com\/cendrillon\/","indices":[98,121]}],"user_mentions":[],"symbols":[],"media":[{"id":932373706042589184,"id_str":"932373706042589184","indices":[181,204],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB08hqVQAAe_Ah.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB08hqVQAAe_Ah.jpg","url":"https:\/\/t.co\/cSBnq2j8tY","display_url":"pic.twitter.com\/cSBnq2j8tY","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932373785948360704\/photo\/1","type":"photo","sizes":{"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1365,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932373706042589184,"id_str":"932373706042589184","indices":[181,204],"media_url":"http:\/\/pbs.twimg.com\/media\/DPB08hqVQAAe_Ah.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPB08hqVQAAe_Ah.jpg","url":"https:\/\/t.co\/cSBnq2j8tY","display_url":"pic.twitter.com\/cSBnq2j8tY","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932373785948360704\/photo\/1","type":"photo","sizes":{"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1365,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Boulder","indices":[42,50]},{"text":"familyfriendly","indices":[71,86]}],"urls":[{"url":"https:\/\/t.co\/mAgRbNpvrt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932373785948360704","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nfYHQMbtEV","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932373785948360704","display_url":"twitter.com\/boulderopera\/s\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:27 +0000 2017","id":932398445943500801,"id_str":"932398445943500801","text":"Boulder CO Sun Nov 19th PM Forecast: TONIGHT Partly Cloudy Lo 37 MONDAY Partly Cloudy Hi 65","source":"\u003ca href=\"http:\/\/towntweet.com\/\" rel=\"nofollow\"\u003eTownTweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":337516885,"id_str":"337516885","name":"Boulder, Colorado","screen_name":"BoulderCO_","location":"Boulder, CO","url":"http:\/\/countyco.net\/boulder\/boulder\/","description":"Follow us for the latest news, weather, events and emergency notices for Boulder, CO","translator_type":"none","protected":false,"verified":false,"followers_count":45,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":2241,"created_at":"Mon Jul 18 04:31:55 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476859770\/countyco.net_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476859770\/countyco.net_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0440,-105.1940]},"coordinates":{"type":"Point","coordinates":[-105.1940,40.0440]},"place":{"id":"e21c8e4914eef2b3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e21c8e4914eef2b3.json","place_type":"admin","name":"Colorado","full_name":"Colorado, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-109.060257,36.992427],[-109.060257,41.003445],[-102.041524,41.003445],[-102.041524,36.992427]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:19 +0000 2017","id":932398411973881857,"id_str":"932398411973881857","text":"Three weeks in a row https:\/\/t.co\/sfqLeyfwJK","display_text_range":[0,20],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110002219,"id_str":"110002219","name":"Matt Finnigan","screen_name":"ku92usc2003","location":"Denver\/Boulder, CO","url":null,"description":"Kansas Jayhawks. USC Trojans. Colorado sports teams.","translator_type":"none","protected":false,"verified":false,"followers_count":711,"friends_count":2463,"listed_count":15,"favourites_count":29864,"statuses_count":12512,"created_at":"Sun Jan 31 00:54:30 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020708","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110002219\/1476118263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"quoted_status_id":929917751648387073,"quoted_status_id_str":"929917751648387073","quoted_status":{"created_at":"Mon Nov 13 03:44:03 +0000 2017","id":929917751648387073,"id_str":"929917751648387073","text":"And, again... https:\/\/t.co\/492op9cxB7","display_text_range":[0,13],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110002219,"id_str":"110002219","name":"Matt Finnigan","screen_name":"ku92usc2003","location":"Denver\/Boulder, CO","url":null,"description":"Kansas Jayhawks. USC Trojans. Colorado sports teams.","translator_type":"none","protected":false,"verified":false,"followers_count":711,"friends_count":2463,"listed_count":15,"favourites_count":29864,"statuses_count":12512,"created_at":"Sun Jan 31 00:54:30 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020708","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110002219\/1476118263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"quoted_status_id":927273654748037120,"quoted_status_id_str":"927273654748037120","is_quote_status":true,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/492op9cxB7","expanded_url":"https:\/\/twitter.com\/ku92usc2003\/status\/927273654748037120","display_url":"twitter.com\/ku92usc2003\/st\u2026","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sfqLeyfwJK","expanded_url":"https:\/\/twitter.com\/ku92usc2003\/status\/929917751648387073","display_url":"twitter.com\/ku92usc2003\/st\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:01:03 +0000 2017","id":932398345259225094,"id_str":"932398345259225094","text":"And scene: https:\/\/t.co\/etTp75ouj2","display_text_range":[0,10],"source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932392871377981440,"in_reply_to_status_id_str":"932392871377981440","in_reply_to_user_id":14288890,"in_reply_to_user_id_str":"14288890","in_reply_to_screen_name":"looserooster","user":{"id":14288890,"id_str":"14288890","name":"Ben Klaus","screen_name":"looserooster","location":"Boulder, CO","url":"http:\/\/klausphotos.com","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":526,"friends_count":276,"listed_count":58,"favourites_count":12415,"statuses_count":22356,"created_at":"Thu Apr 03 00:19:05 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"112233","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/89472244\/BlogBG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/89472244\/BlogBG.jpg","profile_background_tile":true,"profile_link_color":"BD570A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8C8888","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910243059471921153\/3-X1GTD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910243059471921153\/3-X1GTD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14288890\/1402534893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5d1bffd975c6ff73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d1bffd975c6ff73.json","place_type":"city","name":"Louisville","full_name":"Louisville, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.183643,39.939576],[-105.183643,39.998224],[-105.099812,39.998224],[-105.099812,39.939576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932398335180161025,"id_str":"932398335180161025","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLWIWUQAEy6KN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLWIWUQAEy6KN.jpg","url":"https:\/\/t.co\/etTp75ouj2","display_url":"pic.twitter.com\/etTp75ouj2","expanded_url":"https:\/\/twitter.com\/looserooster\/status\/932398345259225094\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932398335180161025,"id_str":"932398335180161025","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLWIWUQAEy6KN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLWIWUQAEy6KN.jpg","url":"https:\/\/t.co\/etTp75ouj2","display_url":"pic.twitter.com\/etTp75ouj2","expanded_url":"https:\/\/twitter.com\/looserooster\/status\/932398345259225094\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 20 00:00:37 +0000 2017","id":932398236131778560,"id_str":"932398236131778560","text":"We're #hiring! Read about our latest #job opening here: Journeyman Lineman - https:\/\/t.co\/2ODV0Yh4pw #Utilities #Boulder, CO #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22153682,"id_str":"22153682","name":"TMJ-COB Util Jobs","screen_name":"tmj_cob_util1","location":"Boulder, CO","url":"http:\/\/www.careerarc.com\/job-seeker","description":"Follow this account for geo-targeted Utilities job tweets in Boulder, CO. Need help? Tweet us at @CareerArc!","translator_type":"none","protected":false,"verified":false,"followers_count":306,"friends_count":300,"listed_count":3,"favourites_count":0,"statuses_count":2,"created_at":"Fri Feb 27 15:57:58 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315432851\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315432851\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694702453179068416\/FY5D0oV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694702453179068416\/FY5D0oV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22153682\/1454464948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0406506,-105.2077798]},"coordinates":{"type":"Point","coordinates":[-105.2077798,40.0406506]},"place":{"id":"e21c8e4914eef2b3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e21c8e4914eef2b3.json","place_type":"admin","name":"Colorado","full_name":"Colorado, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-109.060257,36.992427],[-109.060257,41.003445],[-102.041524,41.003445],[-102.041524,36.992427]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hiring","indices":[6,13]},{"text":"job","indices":[37,41]},{"text":"Utilities","indices":[101,111]},{"text":"Boulder","indices":[112,120]},{"text":"CareerArc","indices":[125,135]}],"urls":[{"url":"https:\/\/t.co\/2ODV0Yh4pw","expanded_url":"http:\/\/bit.ly\/2Adrhtx","display_url":"bit.ly\/2Adrhtx","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:59:45 +0000 2017","id":932398017029664768,"id_str":"932398017029664768","text":"What a way to end the day\u2600\ufe0f https:\/\/t.co\/cinsxEv2uW","display_text_range":[0,27],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25364858,"id_str":"25364858","name":"Beth Goltz, REALTOR\u00ae","screen_name":"ecgoltz","location":"Boulder, CO","url":"http:\/\/bethgoltz.com","description":"Real Estate Broker Associate with Goodacre & Company | Mom | Wife | Passionate about making a house a home","translator_type":"none","protected":false,"verified":false,"followers_count":34,"friends_count":158,"listed_count":0,"favourites_count":11,"statuses_count":25,"created_at":"Thu Mar 19 19:18:27 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923792774947790848\/BDFVO1Xf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923792774947790848\/BDFVO1Xf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25364858\/1502386520","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"23016fb5892d66ca","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/23016fb5892d66ca.json","place_type":"city","name":"Gunbarrel","full_name":"Gunbarrel, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.225509,40.050950],[-105.225509,40.087547],[-105.160059,40.087547],[-105.160059,40.050950]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932397975363502080,"id_str":"932397975363502080","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLBL7VwAAwfVc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLBL7VwAAwfVc.jpg","url":"https:\/\/t.co\/cinsxEv2uW","display_url":"pic.twitter.com\/cinsxEv2uW","expanded_url":"https:\/\/twitter.com\/ecgoltz\/status\/932398017029664768\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932397975363502080,"id_str":"932397975363502080","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCLBL7VwAAwfVc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCLBL7VwAAwfVc.jpg","url":"https:\/\/t.co\/cinsxEv2uW","display_url":"pic.twitter.com\/cinsxEv2uW","expanded_url":"https:\/\/twitter.com\/ecgoltz\/status\/932398017029664768\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:59:28 +0000 2017","id":932397947047829505,"id_str":"932397947047829505","text":"Waves of orange https:\/\/t.co\/GTgrPNAKk1","display_text_range":[0,15],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30875292,"id_str":"30875292","name":"Will Cooper","screen_name":"cwc_ii","location":"Boulder, CO","url":null,"description":"Chair of BoCo Young Dems \u2013 DULYP Social media chair \u2014 @EchoChamberCO \u2014 Aggressive Progressive \u2014 meet me http:\/\/doodle.com\/cwc_ii","translator_type":"none","protected":false,"verified":false,"followers_count":289,"friends_count":462,"listed_count":7,"favourites_count":119,"statuses_count":3426,"created_at":"Mon Apr 13 14:35:12 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435406165502353408\/wPHZSyWo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435406165502353408\/wPHZSyWo.jpeg","profile_background_tile":false,"profile_link_color":"FAB81E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"222222","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932140688681996288\/35q1gmHl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932140688681996288\/35q1gmHl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30875292\/1454477630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932397937069506560,"id_str":"932397937069506560","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCK-9RVwAAwgKv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCK-9RVwAAwgKv.jpg","url":"https:\/\/t.co\/GTgrPNAKk1","display_url":"pic.twitter.com\/GTgrPNAKk1","expanded_url":"https:\/\/twitter.com\/cwc_ii\/status\/932397947047829505\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932397937069506560,"id_str":"932397937069506560","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCK-9RVwAAwgKv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCK-9RVwAAwgKv.jpg","url":"https:\/\/t.co\/GTgrPNAKk1","display_url":"pic.twitter.com\/GTgrPNAKk1","expanded_url":"https:\/\/twitter.com\/cwc_ii\/status\/932397947047829505\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}},{"id":932397937077862400,"id_str":"932397937077862400","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCK-9TVQAAm4lo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCK-9TVQAAm4lo.jpg","url":"https:\/\/t.co\/GTgrPNAKk1","display_url":"pic.twitter.com\/GTgrPNAKk1","expanded_url":"https:\/\/twitter.com\/cwc_ii\/status\/932397947047829505\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:58:44 +0000 2017","id":932397764264075264,"id_str":"932397764264075264","text":"Get up high, #inversion\n#Colorado @ChrisCBS4 #weather https:\/\/t.co\/6Ezd3lKvPY","display_text_range":[0,53],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2260711387,"id_str":"2260711387","name":"Greg Cocks","screen_name":"gregcocks_kiwi","location":"Eldorado Springs, CO","url":"http:\/\/www.linkedin.com\/in\/gregcocks","description":"Data Scientist | Geospatial Data Architect | Licensed Geologist working with the @USGS (Any tweets, etc are mine alone...)","translator_type":"none","protected":false,"verified":false,"followers_count":321,"friends_count":553,"listed_count":50,"favourites_count":2961,"statuses_count":1028,"created_at":"Tue Dec 24 21:06:26 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896059492575485956\/6odFBkOa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896059492575485956\/6odFBkOa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2260711387\/1510082692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"07d9dc2785c85004","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9dc2785c85004.json","place_type":"poi","name":"Switzerland Trail","full_name":"Switzerland Trail","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.275944,40.018625],[-105.275944,40.018625],[-105.275944,40.018625],[-105.275944,40.018625]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[{"text":"inversion","indices":[13,23]},{"text":"Colorado","indices":[24,33]},{"text":"weather","indices":[45,53]}],"urls":[],"user_mentions":[{"screen_name":"ChrisCBS4","name":"Chris Spears","id":124556472,"id_str":"124556472","indices":[34,44]}],"symbols":[],"media":[{"id":932397735273144322,"id_str":"932397735273144322","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCKzNhVoAIEIpo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCKzNhVoAIEIpo.jpg","url":"https:\/\/t.co\/6Ezd3lKvPY","display_url":"pic.twitter.com\/6Ezd3lKvPY","expanded_url":"https:\/\/twitter.com\/gregcocks_kiwi\/status\/932397764264075264\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":498,"resize":"fit"},"medium":{"w":1200,"h":879,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932397735273144322,"id_str":"932397735273144322","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCKzNhVoAIEIpo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCKzNhVoAIEIpo.jpg","url":"https:\/\/t.co\/6Ezd3lKvPY","display_url":"pic.twitter.com\/6Ezd3lKvPY","expanded_url":"https:\/\/twitter.com\/gregcocks_kiwi\/status\/932397764264075264\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":498,"resize":"fit"},"medium":{"w":1200,"h":879,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:55:28 +0000 2017","id":932396941098414081,"id_str":"932396941098414081","text":"On the plus side, at least I didn\u2019t spend hours of my life in the Meadowlands today, watching the KC-NYG 9-6 game. #thriller","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110002219,"id_str":"110002219","name":"Matt Finnigan","screen_name":"ku92usc2003","location":"Denver\/Boulder, CO","url":null,"description":"Kansas Jayhawks. USC Trojans. Colorado sports teams.","translator_type":"none","protected":false,"verified":false,"followers_count":711,"friends_count":2463,"listed_count":15,"favourites_count":29864,"statuses_count":12512,"created_at":"Sun Jan 31 00:54:30 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020708","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/71248319\/Scoreboard_with_Michael.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922660131925409792\/lkkxuBpu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110002219\/1476118263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[{"text":"thriller","indices":[115,124]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:55:01 +0000 2017","id":932396826665279488,"id_str":"932396826665279488","text":"sky rn https:\/\/t.co\/b6c1am5aKr","display_text_range":[0,6],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33524254,"id_str":"33524254","name":"elisabeth patterson","screen_name":"elispat","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":100,"friends_count":358,"listed_count":5,"favourites_count":2226,"statuses_count":205,"created_at":"Mon Apr 20 14:14:02 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581507785801641984\/2efxdDjF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581507785801641984\/2efxdDjF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33524254\/1427474692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932396767542472710,"id_str":"932396767542472710","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ64cXcAY1IER.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ64cXcAY1IER.jpg","url":"https:\/\/t.co\/b6c1am5aKr","display_url":"pic.twitter.com\/b6c1am5aKr","expanded_url":"https:\/\/twitter.com\/elispat\/status\/932396826665279488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932396767542472710,"id_str":"932396767542472710","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ64cXcAY1IER.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ64cXcAY1IER.jpg","url":"https:\/\/t.co\/b6c1am5aKr","display_url":"pic.twitter.com\/b6c1am5aKr","expanded_url":"https:\/\/twitter.com\/elispat\/status\/932396826665279488\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"}}},{"id":932396790392946694,"id_str":"932396790392946694","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ8NkWAAYxj4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ8NkWAAYxj4o.jpg","url":"https:\/\/t.co\/b6c1am5aKr","display_url":"pic.twitter.com\/b6c1am5aKr","expanded_url":"https:\/\/twitter.com\/elispat\/status\/932396826665279488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:54:57 +0000 2017","id":932396810974330881,"id_str":"932396810974330881","text":"Not usually one for filters...\n@BMWMotorrad #Colorado #DualSport #Motorcycle #BMW #DualSportLife #dirtroads https:\/\/t.co\/uzdFThB8Nq","display_text_range":[0,107],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2260711387,"id_str":"2260711387","name":"Greg Cocks","screen_name":"gregcocks_kiwi","location":"Eldorado Springs, CO","url":"http:\/\/www.linkedin.com\/in\/gregcocks","description":"Data Scientist | Geospatial Data Architect | Licensed Geologist working with the @USGS (Any tweets, etc are mine alone...)","translator_type":"none","protected":false,"verified":false,"followers_count":321,"friends_count":553,"listed_count":50,"favourites_count":2961,"statuses_count":1028,"created_at":"Tue Dec 24 21:06:26 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896059492575485956\/6odFBkOa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896059492575485956\/6odFBkOa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2260711387\/1510082692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"07d9df9f62c88000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9df9f62c88000.json","place_type":"poi","name":"Gold Hill General Store","full_name":"Gold Hill General Store","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.410180,40.059289],[-105.410180,40.059289],[-105.410180,40.059289],[-105.410180,40.059289]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Colorado","indices":[44,53]},{"text":"DualSport","indices":[54,64]},{"text":"Motorcycle","indices":[65,76]},{"text":"BMW","indices":[77,81]},{"text":"DualSportLife","indices":[82,96]},{"text":"dirtroads","indices":[97,107]}],"urls":[],"user_mentions":[{"screen_name":"BMWMotorrad","name":"BMW Motorrad","id":108613975,"id_str":"108613975","indices":[31,43]}],"symbols":[],"media":[{"id":932396787368783873,"id_str":"932396787368783873","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ8CTU8AEDq7s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ8CTU8AEDq7s.jpg","url":"https:\/\/t.co\/uzdFThB8Nq","display_url":"pic.twitter.com\/uzdFThB8Nq","expanded_url":"https:\/\/twitter.com\/gregcocks_kiwi\/status\/932396810974330881\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932396787368783873,"id_str":"932396787368783873","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ8CTU8AEDq7s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ8CTU8AEDq7s.jpg","url":"https:\/\/t.co\/uzdFThB8Nq","display_url":"pic.twitter.com\/uzdFThB8Nq","expanded_url":"https:\/\/twitter.com\/gregcocks_kiwi\/status\/932396810974330881\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:54:55 +0000 2017","id":932396800597790720,"id_str":"932396800597790720","text":"#sky #colorado @ Lafayette, Colorado https:\/\/t.co\/onaFHAnl3e","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36874547,"id_str":"36874547","name":"Christopher","screen_name":"cbg1973","location":"iPhone: 39.984538,-105.116603","url":null,"description":"father, husband, chef, Ironman, triathlete, road cyclist, mountainbiker, snowboarder, hiker, camper who is trying to live life to the fullest in Colorado!!!!","translator_type":"none","protected":false,"verified":false,"followers_count":50,"friends_count":108,"listed_count":12,"favourites_count":48,"statuses_count":1941,"created_at":"Fri May 01 03:46:53 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1721019514\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1721019514\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36874547\/1473995083","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.9951,-105.101]},"coordinates":{"type":"Point","coordinates":[-105.101,39.9951]},"place":{"id":"72a91b4570317b68","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/72a91b4570317b68.json","place_type":"city","name":"Lafayette","full_name":"Lafayette, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.190246,39.957602],[-105.190246,40.023700],[-105.070651,40.023700],[-105.070651,39.957602]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sky","indices":[0,4]},{"text":"colorado","indices":[5,14]}],"urls":[{"url":"https:\/\/t.co\/onaFHAnl3e","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsi1FzjcPTuvY2E4tQZyRJ57vVfKQDaCsh36E0\/","display_url":"instagram.com\/p\/Bbsi1FzjcPTu\u2026","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:54:51 +0000 2017","id":932396785896710144,"id_str":"932396785896710144","text":"Awesome sunset in Superior, CO today. @MattMakens https:\/\/t.co\/L0u81oNLzx","display_text_range":[0,49],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305187042,"id_str":"305187042","name":"Cathryn Marsh","screen_name":"cathryn_marsh","location":"Colorado, USA","url":null,"description":"Leader, PwC's Financial Services Institute. @PwC_LLP Econ Ph.D., food blogger, wife, mom, amateur astronomer, camping enthusiast, writer\/editor. Views my own.","translator_type":"none","protected":false,"verified":false,"followers_count":733,"friends_count":519,"listed_count":169,"favourites_count":691,"statuses_count":3518,"created_at":"Wed May 25 19:57:22 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896524387213393920\/ir-1GVVO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896524387213393920\/ir-1GVVO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/305187042\/1505828677","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7b9254d3f3763854","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7b9254d3f3763854.json","place_type":"city","name":"Superior","full_name":"Superior, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.180287,39.889067],[-105.180287,39.963057],[-105.136695,39.963057],[-105.136695,39.889067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":2,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MattMakens","name":"Matt Makens","id":229999442,"id_str":"229999442","indices":[38,49]}],"symbols":[],"media":[{"id":932396777134735360,"id_str":"932396777134735360","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ7cLVwAAl5cT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ7cLVwAAl5cT.jpg","url":"https:\/\/t.co\/L0u81oNLzx","display_url":"pic.twitter.com\/L0u81oNLzx","expanded_url":"https:\/\/twitter.com\/cathryn_marsh\/status\/932396785896710144\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932396777134735360,"id_str":"932396777134735360","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJ7cLVwAAl5cT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJ7cLVwAAl5cT.jpg","url":"https:\/\/t.co\/L0u81oNLzx","display_url":"pic.twitter.com\/L0u81oNLzx","expanded_url":"https:\/\/twitter.com\/cathryn_marsh\/status\/932396785896710144\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:53:31 +0000 2017","id":932396451459559424,"id_str":"932396451459559424","text":"@Biznezwitch ARE YOU GOING TO BE HERE. i practice in Louisville and Lafayette. i don't know of a specific place in Denver itself :-\/","display_text_range":[13,134],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932363319536640000,"in_reply_to_status_id_str":"932363319536640000","in_reply_to_user_id":14602321,"in_reply_to_user_id_str":"14602321","in_reply_to_screen_name":"Biznezwitch","user":{"id":15754268,"id_str":"15754268","name":"lauren","screen_name":"edatrix","location":"Colorado","url":"http:\/\/about.me\/edatrix","description":"software dev, feminist, food lover, environmentalist, girly girl, book enthusiast, summertime fanatic. mom to the world's best baby & champion sweets-eater.","translator_type":"none","protected":false,"verified":false,"followers_count":940,"friends_count":1163,"listed_count":79,"favourites_count":8448,"statuses_count":20903,"created_at":"Wed Aug 06 19:54:28 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/812529917\/13ce0aada18cb2b52b6dd9a0d8b819a0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/812529917\/13ce0aada18cb2b52b6dd9a0d8b819a0.jpeg","profile_background_tile":true,"profile_link_color":"551A8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1742606226\/images_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1742606226\/images_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15754268\/1414531573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"72a91b4570317b68","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/72a91b4570317b68.json","place_type":"city","name":"Lafayette","full_name":"Lafayette, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.190246,39.957602],[-105.190246,40.023700],[-105.070651,40.023700],[-105.070651,39.957602]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Biznezwitch","name":"\ud83d\udc80 business witch \ud83d\udc80","id":14602321,"id_str":"14602321","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:52:36 +0000 2017","id":932396219942428672,"id_str":"932396219942428672","text":"Who needs filters? https:\/\/t.co\/MxcHkPEtK7","display_text_range":[0,18],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":515629507,"id_str":"515629507","name":"Jake Shapiro","screen_name":"Shapalicious","location":"Boulder, Colorado \/ \u2736\u2736\u2736\u2736","url":"http:\/\/BSNDenver.com","description":"Colorado Rockies beat reporter and Colorado Basketball for @BSNDenver. Voice of the Buffs on KVCU\/@BuffSportsLive.","translator_type":"regular","protected":false,"verified":false,"followers_count":2748,"friends_count":1562,"listed_count":110,"favourites_count":62413,"statuses_count":64882,"created_at":"Mon Mar 05 16:35:16 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/725793960728240130\/HaxHlwpa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/725793960728240130\/HaxHlwpa.jpg","profile_background_tile":true,"profile_link_color":"9E0F0F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898336980487909378\/AZKTBpHP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898336980487909378\/AZKTBpHP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/515629507\/1502926054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"07d9f5b787482003","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9f5b787482003.json","place_type":"poi","name":"University of Colorado Boulder","full_name":"University of Colorado Boulder","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.265199,40.007605],[-105.265199,40.007605],[-105.265199,40.007605],[-105.265199,40.007605]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":2,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932396213118234624,"id_str":"932396213118234624","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJanDU8AAUDey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJanDU8AAUDey.jpg","url":"https:\/\/t.co\/MxcHkPEtK7","display_url":"pic.twitter.com\/MxcHkPEtK7","expanded_url":"https:\/\/twitter.com\/Shapalicious\/status\/932396219942428672\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":219,"resize":"fit"},"large":{"w":2048,"h":660,"resize":"fit"},"medium":{"w":1200,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":932396213118234624,"id_str":"932396213118234624","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJanDU8AAUDey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJanDU8AAUDey.jpg","url":"https:\/\/t.co\/MxcHkPEtK7","display_url":"pic.twitter.com\/MxcHkPEtK7","expanded_url":"https:\/\/twitter.com\/Shapalicious\/status\/932396219942428672\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":219,"resize":"fit"},"large":{"w":2048,"h":660,"resize":"fit"},"medium":{"w":1200,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:52:33 +0000 2017","id":932396207833518081,"id_str":"932396207833518081","text":"Legit no filter necessary in Boulder #sunset #flatirons @ Boulder,\u2026 https:\/\/t.co\/cVFLmhAMGt","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400147621,"id_str":"400147621","name":"Anna Norregaard","screen_name":"UnfilteredAnna","location":"Boston to Denver","url":"http:\/\/lnkd.in\/gr9iU6","description":"I get out sometimes and I'm hangry AF. By day, I help agencies & their clients get ridiculous growth w\/ Hubspot.","translator_type":"none","protected":false,"verified":false,"followers_count":872,"friends_count":769,"listed_count":200,"favourites_count":3174,"statuses_count":4007,"created_at":"Fri Oct 28 15:35:49 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905587776799813636\/BMnCYPCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905587776799813636\/BMnCYPCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400147621\/1412307038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sunset","indices":[37,44]},{"text":"flatirons","indices":[45,55]}],"urls":[{"url":"https:\/\/t.co\/cVFLmhAMGt","expanded_url":"https:\/\/www.instagram.com\/p\/BbsijrwHgddQunEaU-8dZ18eQXL7GtTu_BrbbA0\/","display_url":"instagram.com\/p\/BbsijrwHgddQ\u2026","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:51:47 +0000 2017","id":932396012601331714,"id_str":"932396012601331714","text":"Glad to be back! (@ Shanahan Ridge Trail in Boulder, CO) https:\/\/t.co\/a1nnbIkLWE https:\/\/t.co\/do92m3ddOe","display_text_range":[0,80],"source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35633966,"id_str":"35633966","name":"Cheryl Fellows","screen_name":"cheryl303","location":"Boulder, CO","url":null,"description":"Finance exec, inner geek, love mah jongg, knitting, baking old world style. #nerdnation. Would live on froyo & ice cream.","translator_type":"none","protected":false,"verified":false,"followers_count":1259,"friends_count":1399,"listed_count":116,"favourites_count":17929,"statuses_count":26037,"created_at":"Mon Apr 27 01:54:58 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593222279\/bi9zz4d34fgpygma7rsz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593222279\/bi9zz4d34fgpygma7rsz.jpeg","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/892587410101477376\/p3obwfH3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/892587410101477376\/p3obwfH3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35633966\/1399833151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.96527564,-105.28624688]},"coordinates":{"type":"Point","coordinates":[-105.28624688,39.96527564]},"place":{"id":"e21c8e4914eef2b3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e21c8e4914eef2b3.json","place_type":"admin","name":"Colorado","full_name":"Colorado, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-109.060257,36.992427],[-109.060257,41.003445],[-102.041524,41.003445],[-102.041524,36.992427]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a1nnbIkLWE","expanded_url":"https:\/\/www.swarmapp.com\/c\/4arYK2fgJT0","display_url":"swarmapp.com\/c\/4arYK2fgJT0","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":932396009690468352,"id_str":"932396009690468352","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJOxOXkAAPH5g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJOxOXkAAPH5g.jpg","url":"https:\/\/t.co\/do92m3ddOe","display_url":"pic.twitter.com\/do92m3ddOe","expanded_url":"https:\/\/twitter.com\/cheryl303\/status\/932396012601331714\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1440,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932396009690468352,"id_str":"932396009690468352","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJOxOXkAAPH5g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJOxOXkAAPH5g.jpg","url":"https:\/\/t.co\/do92m3ddOe","display_url":"pic.twitter.com\/do92m3ddOe","expanded_url":"https:\/\/twitter.com\/cheryl303\/status\/932396012601331714\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1440,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:51:26 +0000 2017","id":932395927712813056,"id_str":"932395927712813056","text":"you\u2019re lucky if your memory remains","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953561554,"id_str":"2953561554","name":"Cait","screen_name":"heartboyCTE","location":"Colorado State University '21","url":null,"description":"Member of Case of Dilla \ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4\ud83d\udca4Two weeks of laundry means two weeks for me.","translator_type":"none","protected":false,"verified":false,"followers_count":346,"friends_count":399,"listed_count":1,"favourites_count":2257,"statuses_count":11368,"created_at":"Wed Dec 31 12:59:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/920427588216123392\/8v0rQn13_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/920427588216123392\/8v0rQn13_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953561554\/1508282013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:51:05 +0000 2017","id":932395838390730753,"id_str":"932395838390730753","text":"You know a sunset is good when it even looks good in black and white. #Boulder #cowx https:\/\/t.co\/9t55A4TuqC","display_text_range":[0,84],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16878782,"id_str":"16878782","name":"Raymond Johnson","screen_name":"downclimb","location":"Boulder, CO","url":"http:\/\/rcjohnson.me","description":"When I'm not talking education at @MathEdnet, I'm here for news, weather, and sports, like an inconsistent and poorly assembled version of your local newscast.","translator_type":"none","protected":false,"verified":false,"followers_count":171,"friends_count":228,"listed_count":30,"favourites_count":1868,"statuses_count":2869,"created_at":"Tue Oct 21 01:28:03 +0000 2008","utc_offset":-25200,"time_zone":"America\/Boise","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3C9100","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"DEDEDE","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/457726148336562176\/er3gxFrm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/457726148336562176\/er3gxFrm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16878782\/1380035299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Boulder","indices":[70,78]},{"text":"cowx","indices":[79,84]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932395827691008000,"id_str":"932395827691008000","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJELOUMAAOhW_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJELOUMAAOhW_.jpg","url":"https:\/\/t.co\/9t55A4TuqC","display_url":"pic.twitter.com\/9t55A4TuqC","expanded_url":"https:\/\/twitter.com\/downclimb\/status\/932395838390730753\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1616,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":802,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932395827691008000,"id_str":"932395827691008000","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCJELOUMAAOhW_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCJELOUMAAOhW_.jpg","url":"https:\/\/t.co\/9t55A4TuqC","display_url":"pic.twitter.com\/9t55A4TuqC","expanded_url":"https:\/\/twitter.com\/downclimb\/status\/932395838390730753\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1616,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":802,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:48:31 +0000 2017","id":932395191306158081,"id_str":"932395191306158081","text":"I'm at Gee's Casa in Boulder, CO https:\/\/t.co\/KW7VHaW1ik","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339246863,"id_str":"339246863","name":"gina m barajas","screen_name":"ginambarajas","location":"boulder, colorado ","url":"http:\/\/about.me\/geebeemarie","description":"I am no doubt, the girl with the most cake on her face. Instead of me explaining come see for yourself.","translator_type":"none","protected":false,"verified":false,"followers_count":286,"friends_count":872,"listed_count":20,"favourites_count":242,"statuses_count":7672,"created_at":"Wed Jul 20 20:18:26 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537106549215203328\/zB4HmGND.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537106549215203328\/zB4HmGND.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581106610505814016\/Njyxe0uh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581106610505814016\/Njyxe0uh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339246863\/1509073995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.99003199,-105.24873698]},"coordinates":{"type":"Point","coordinates":[-105.24873698,39.99003199]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KW7VHaW1ik","expanded_url":"https:\/\/www.swarmapp.com\/c\/lQw4DXLbxgK","display_url":"swarmapp.com\/c\/lQw4DXLbxgK","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:48:27 +0000 2017","id":932395173514039298,"id_str":"932395173514039298","text":"@Griz Come find me \ud83d\ude2b\ud83d\ude2b secret set??","display_text_range":[6,34],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932374418160082945,"in_reply_to_status_id_str":"932374418160082945","in_reply_to_user_id":290736635,"in_reply_to_user_id_str":"290736635","in_reply_to_screen_name":"Griz","user":{"id":29312916,"id_str":"29312916","name":"kiley","screen_name":"Versace_Cat5","location":"United States","url":null,"description":"lost in the sauce","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":180,"listed_count":3,"favourites_count":6069,"statuses_count":32403,"created_at":"Mon Apr 06 22:36:38 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/415331718\/whaley.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/415331718\/whaley.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921036203293642752\/qPg3sdJF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921036203293642752\/qPg3sdJF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29312916\/1508774419","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Griz","name":"lil cub griz \ud83d\udc3b","id":290736635,"id_str":"290736635","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:48:25 +0000 2017","id":932395165146329088,"id_str":"932395165146329088","text":"Crazy Colorado skies #weather9 #coloradosunsets #coloradoclouds\u2026 https:\/\/t.co\/QY1OIiktiC","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444146811,"id_str":"444146811","name":"Charlie Baltimore","screen_name":"chuk_baltimore","location":"boulder CO","url":"http:\/\/www.tonupboulder.com","description":"i wear leopard speedos, not print, REAL Leopard!! Dont go cheap on the speedos!!","translator_type":"none","protected":false,"verified":false,"followers_count":67,"friends_count":252,"listed_count":5,"favourites_count":83,"statuses_count":1517,"created_at":"Thu Dec 22 23:23:17 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516783065910104064\/h7dr70qu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516783065910104064\/h7dr70qu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444146811\/1416186741","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0194,-105.259]},"coordinates":{"type":"Point","coordinates":[-105.259,40.0194]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"weather9","indices":[21,30]},{"text":"coloradosunsets","indices":[31,47]},{"text":"coloradoclouds","indices":[48,63]}],"urls":[{"url":"https:\/\/t.co\/QY1OIiktiC","expanded_url":"https:\/\/www.instagram.com\/p\/BbsiFaSBgAhGQPjHLjRmvm1KohhLiNpG7WMYtY0\/","display_url":"instagram.com\/p\/BbsiFaSBgAhG\u2026","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:48:11 +0000 2017","id":932395106400796673,"id_str":"932395106400796673","text":"https:\/\/t.co\/zs1sanYw2X","display_text_range":[0,0],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1532562788,"id_str":"1532562788","name":"Joseph D. Marhee","screen_name":"jmarhee","location":"Boulder, CO","url":"https:\/\/zarf.co\/publications\/cloud-enabled-operations","description":"Solutions Engineer at Platform9 Systems. Record Collector sometimes. Historian. Quality Conspiracy Theories\u2122 forever.","translator_type":"none","protected":false,"verified":false,"followers_count":2727,"friends_count":794,"listed_count":68,"favourites_count":38135,"statuses_count":9762,"created_at":"Thu Jun 20 02:14:08 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"505152","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927004642998763520\/x05IJOM1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927004642998763520\/x05IJOM1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1532562788\/1501201273","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932395098049880064,"id_str":"932395098049880064","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCIZtGUIAA1aJW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCIZtGUIAA1aJW.jpg","url":"https:\/\/t.co\/zs1sanYw2X","display_url":"pic.twitter.com\/zs1sanYw2X","expanded_url":"https:\/\/twitter.com\/jmarhee\/status\/932395106400796673\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932395098049880064,"id_str":"932395098049880064","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCIZtGUIAA1aJW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCIZtGUIAA1aJW.jpg","url":"https:\/\/t.co\/zs1sanYw2X","display_url":"pic.twitter.com\/zs1sanYw2X","expanded_url":"https:\/\/twitter.com\/jmarhee\/status\/932395106400796673\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:44:43 +0000 2017","id":932394234287505408,"id_str":"932394234287505408","text":"current weather in Boulder: clear sky, 51\u00b0F\n17% humidity, wind 3mph, pressure 1016mb","source":"\u003ca href=\"http:\/\/twitter.com\/USACities\/cities\" rel=\"nofollow\"\u003eCities\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114053312,"id_str":"114053312","name":"Boulder Weather","screen_name":"_BoulderCO","location":"Boulder, CO","url":null,"description":"Weather updates, forecast, warnings and information for Boulder, CO. Sources: http:\/\/OpenWeatherMap.org, NOAA, USGS.","translator_type":"none","protected":false,"verified":false,"followers_count":193,"friends_count":2,"listed_count":17,"favourites_count":0,"statuses_count":33601,"created_at":"Sat Feb 13 23:42:59 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932394200754036736\/hA6YE_bW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932394200754036736\/hA6YE_bW_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.02,-105.28]},"coordinates":{"type":"Point","coordinates":[-105.28,40.02]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:43:50 +0000 2017","id":932394012610240512,"id_str":"932394012610240512","text":"Can you recommend anyone for this #job in #Boulder, CO? https:\/\/t.co\/Y9QTrDDX2B #MilSpouse #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64094640,"id_str":"64094640","name":"TMJ-COB HRTA Jobs","screen_name":"tmj_cob_hrta","location":"Boulder, CO","url":"http:\/\/www.careerarc.com\/job-seeker","description":"Follow this account for geo-targeted Hospitality\/Restaurant\/Tourism job tweets in Boulder, CO. Need help? Tweet us at @CareerArc!","translator_type":"none","protected":false,"verified":false,"followers_count":354,"friends_count":292,"listed_count":70,"favourites_count":0,"statuses_count":467,"created_at":"Sun Aug 09 02:39:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64094640\/1454473372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[39.9995305,-105.2610911]},"coordinates":{"type":"Point","coordinates":[-105.2610911,39.9995305]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[34,38]},{"text":"Boulder","indices":[42,50]},{"text":"MilSpouse","indices":[80,90]},{"text":"Hiring","indices":[91,98]},{"text":"CareerArc","indices":[99,109]}],"urls":[{"url":"https:\/\/t.co\/Y9QTrDDX2B","expanded_url":"http:\/\/bit.ly\/2Af7DgA","display_url":"bit.ly\/2Af7DgA","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:42:37 +0000 2017","id":932393705478160385,"id_str":"932393705478160385","text":"Maybe one day","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29312916,"id_str":"29312916","name":"kiley","screen_name":"Versace_Cat5","location":"United States","url":null,"description":"lost in the sauce","translator_type":"none","protected":false,"verified":false,"followers_count":599,"friends_count":180,"listed_count":3,"favourites_count":6069,"statuses_count":32403,"created_at":"Mon Apr 06 22:36:38 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/415331718\/whaley.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/415331718\/whaley.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921036203293642752\/qPg3sdJF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921036203293642752\/qPg3sdJF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29312916\/1508774419","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:42:19 +0000 2017","id":932393633289994241,"id_str":"932393633289994241","text":"Been thinking about 2018 for a while now - this looks like a total rebuild to me https:\/\/t.co\/4Cf77DN15T","display_text_range":[0,80],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19052209,"id_str":"19052209","name":"mike brouse","screen_name":"mikebrouse","location":"boulder, co","url":"http:\/\/www.mikebrouse.com","description":"Bold Modern Art - animal lover, woman lover, art lover, and lover of creative tweets. Show me yours!","translator_type":"none","protected":false,"verified":false,"followers_count":1058,"friends_count":748,"listed_count":110,"favourites_count":12,"statuses_count":12121,"created_at":"Fri Jan 16 03:08:21 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/795282281317470208\/2xepAIy6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/795282281317470208\/2xepAIy6_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":932378560240803843,"quoted_status_id_str":"932378560240803843","quoted_status":{"created_at":"Sun Nov 19 22:42:26 +0000 2017","id":932378560240803843,"id_str":"932378560240803843","text":"Time for #Dolphins to think about 2018 after deflating loss to Bucs https:\/\/t.co\/P7w4sDLluW\"-ICYMI.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":476227352,"id_str":"476227352","name":"James Walker","screen_name":"JamesWalkerNFL","location":"Miami...or an NFL stadium","url":"http:\/\/espn.go.com\/blog\/miami-dolphins","description":"ESPN NFL Nation reporter James Walker covers the Miami Dolphins.","translator_type":"none","protected":false,"verified":true,"followers_count":36645,"friends_count":682,"listed_count":1461,"favourites_count":24,"statuses_count":34028,"created_at":"Fri Jan 27 22:22:04 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648906780710436864\/_M3Fqs_7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648906780710436864\/_M3Fqs_7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/476227352\/1497274794","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":9,"retweet_count":7,"favorite_count":14,"entities":{"hashtags":[{"text":"Dolphins","indices":[9,18]}],"urls":[{"url":"https:\/\/t.co\/P7w4sDLluW","expanded_url":"http:\/\/es.pn\/2zQ67AT","display_url":"es.pn\/2zQ67AT","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4Cf77DN15T","expanded_url":"https:\/\/twitter.com\/jameswalkernfl\/status\/932378560240803843","display_url":"twitter.com\/jameswalkernfl\u2026","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:41:09 +0000 2017","id":932393338556125184,"id_str":"932393338556125184","text":"Boulder: 4:40pm: sunset","source":"\u003ca href=\"http:\/\/twitter.com\/USACities\/cities\" rel=\"nofollow\"\u003eCities\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114053312,"id_str":"114053312","name":"Boulder Weather","screen_name":"_BoulderCO","location":"Boulder, CO","url":null,"description":"Weather updates, forecast, warnings and information for Boulder, CO. Sources: http:\/\/OpenWeatherMap.org, NOAA, USGS.","translator_type":"none","protected":false,"verified":false,"followers_count":193,"friends_count":2,"listed_count":17,"favourites_count":0,"statuses_count":33601,"created_at":"Sat Feb 13 23:42:59 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932394200754036736\/hA6YE_bW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932394200754036736\/hA6YE_bW_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.02,-105.28]},"coordinates":{"type":"Point","coordinates":[-105.28,40.02]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:40:39 +0000 2017","id":932393213742129152,"id_str":"932393213742129152","text":"Exploring happened! @ Flagstaff Mountain https:\/\/t.co\/AyNckTTsNG","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40520771,"id_str":"40520771","name":"Stephen Hutt","screen_name":"Stephenhutt","location":null,"url":"http:\/\/thehutt5.blogspot.com","description":"Adventure Seeker. Music Lover. Radio 2 Listener. Harry Potter Adorer. Computer Geek. Shoe Wearer. University Of Notre Dame. PhD Student","translator_type":"none","protected":false,"verified":false,"followers_count":323,"friends_count":660,"listed_count":4,"favourites_count":455,"statuses_count":3021,"created_at":"Sat May 16 18:59:56 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B7AEA5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/211268742\/x05c567b63d7ee8f542361f8d93d9a72.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/211268742\/x05c567b63d7ee8f542361f8d93d9a72.png","profile_background_tile":true,"profile_link_color":"E33C08","profile_sidebar_border_color":"221D21","profile_sidebar_fill_color":"433D3D","profile_text_color":"F77014","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641809711277441024\/jLKQ7aHi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641809711277441024\/jLKQ7aHi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40520771\/1441854493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.00166667,-105.3075]},"coordinates":{"type":"Point","coordinates":[-105.3075,40.00166667]},"place":{"id":"e21c8e4914eef2b3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e21c8e4914eef2b3.json","place_type":"admin","name":"Colorado","full_name":"Colorado, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-109.060257,36.992427],[-109.060257,41.003445],[-102.041524,41.003445],[-102.041524,36.992427]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AyNckTTsNG","expanded_url":"https:\/\/www.instagram.com\/p\/BbshM2olevhx4YvSnf_bDR-EjBWPrznNlngEHk0\/","display_url":"instagram.com\/p\/BbshM2olevhx\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:39:18 +0000 2017","id":932392871377981440,"id_str":"932392871377981440","text":"Update: https:\/\/t.co\/EHfb1evBQw","display_text_range":[0,7],"source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932386041243324416,"in_reply_to_status_id_str":"932386041243324416","in_reply_to_user_id":14288890,"in_reply_to_user_id_str":"14288890","in_reply_to_screen_name":"looserooster","user":{"id":14288890,"id_str":"14288890","name":"Ben Klaus","screen_name":"looserooster","location":"Boulder, CO","url":"http:\/\/klausphotos.com","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":526,"friends_count":276,"listed_count":58,"favourites_count":12415,"statuses_count":22356,"created_at":"Thu Apr 03 00:19:05 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"112233","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/89472244\/BlogBG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/89472244\/BlogBG.jpg","profile_background_tile":true,"profile_link_color":"BD570A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8C8888","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910243059471921153\/3-X1GTD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910243059471921153\/3-X1GTD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14288890\/1402534893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5d1bffd975c6ff73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5d1bffd975c6ff73.json","place_type":"city","name":"Louisville","full_name":"Louisville, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.183643,39.939576],[-105.183643,39.998224],[-105.099812,39.998224],[-105.099812,39.939576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":932392860590080000,"id_str":"932392860590080000","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCGXd6VAAAgZzi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCGXd6VAAAgZzi.jpg","url":"https:\/\/t.co\/EHfb1evBQw","display_url":"pic.twitter.com\/EHfb1evBQw","expanded_url":"https:\/\/twitter.com\/looserooster\/status\/932392871377981440\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932392860590080000,"id_str":"932392860590080000","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCGXd6VAAAgZzi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCGXd6VAAAgZzi.jpg","url":"https:\/\/t.co\/EHfb1evBQw","display_url":"pic.twitter.com\/EHfb1evBQw","expanded_url":"https:\/\/twitter.com\/looserooster\/status\/932392871377981440\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:39:08 +0000 2017","id":932392831934590976,"id_str":"932392831934590976","text":"@CherryKella I mean, you kind of did this to yourself. Never trust the Bills.","display_text_range":[13,77],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932377741198086144,"in_reply_to_status_id_str":"932377741198086144","in_reply_to_user_id":298233505,"in_reply_to_user_id_str":"298233505","in_reply_to_screen_name":"CherryKella","user":{"id":52356300,"id_str":"52356300","name":"Tom","screen_name":"urban_tom","location":"Boulder, CO","url":null,"description":"Navy veteran. Student at @CUBoulder studying Geography, Space, and Arctic Environments. Employed at @NSIDC. Likes most dogs more than most people.","translator_type":"none","protected":false,"verified":false,"followers_count":358,"friends_count":561,"listed_count":27,"favourites_count":540,"statuses_count":17407,"created_at":"Tue Jun 30 09:56:55 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000088","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2865738608\/7dbaa707ec9eb4534effa07a7457dff9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2865738608\/7dbaa707ec9eb4534effa07a7457dff9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52356300\/1440722600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CherryKella","name":"Kerry Chella","id":298233505,"id_str":"298233505","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:38:15 +0000 2017","id":932392606243348480,"id_str":"932392606243348480","text":"@TINGLYTASTEBUDS @realDonaldTrump He's sundowning early today, apparently.","display_text_range":[34,74],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932391964384940033,"in_reply_to_status_id_str":"932391964384940033","in_reply_to_user_id":788156464925999104,"in_reply_to_user_id_str":"788156464925999104","in_reply_to_screen_name":"TINGLYTASTEBUDS","user":{"id":14565571,"id_str":"14565571","name":"Heather","screen_name":"SweetGeekling","location":"Boulder, CO","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":292,"friends_count":305,"listed_count":2,"favourites_count":12443,"statuses_count":8282,"created_at":"Mon Apr 28 04:38:20 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_tile":true,"profile_link_color":"EAA852","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD66B","profile_text_color":"0F2941","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14565571\/1478903561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TINGLYTASTEBUDS","name":"Michelle","id":788156464925999104,"id_str":"788156464925999104","indices":[0,16]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[17,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:38:04 +0000 2017","id":932392561360084992,"id_str":"932392561360084992","text":"The accuracy \ud83d\udc80\ud83d\udc80 https:\/\/t.co\/onixwKcXlU","display_text_range":[0,15],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1184183810,"id_str":"1184183810","name":"G Scott","screen_name":"gabbyscott13","location":null,"url":null,"description":"CU Track & Field. Leave a Legacy","translator_type":"none","protected":false,"verified":false,"followers_count":875,"friends_count":543,"listed_count":6,"favourites_count":37184,"statuses_count":9988,"created_at":"Sat Feb 16 00:29:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932393260672204800\/UMEXH96u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932393260672204800\/UMEXH96u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1184183810\/1507661082","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"quoted_status_id":931729885948608512,"quoted_status_id_str":"931729885948608512","quoted_status":{"created_at":"Sat Nov 18 03:44:50 +0000 2017","id":931729885948608512,"id_str":"931729885948608512","text":"Thanksgiving break aka its time for those \"I'm back in SD \ud83d\udc40\" texts, lol okay and","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1112619559,"id_str":"1112619559","name":"sam","screen_name":"_sdott_","location":"San Diego","url":null,"description":"a weirdo but I'm real doe","translator_type":"none","protected":false,"verified":false,"followers_count":711,"friends_count":315,"listed_count":1,"favourites_count":17915,"statuses_count":10634,"created_at":"Tue Jan 22 20:53:46 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/782282502\/c8ad253f01953a0eed7c49a028344513.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/782282502\/c8ad253f01953a0eed7c49a028344513.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910026238462324736\/t1ywDpXR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910026238462324736\/t1ywDpXR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1112619559\/1482140941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":3,"retweet_count":70,"favorite_count":333,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/onixwKcXlU","expanded_url":"https:\/\/twitter.com\/_sdott_\/status\/931729885948608512","display_url":"twitter.com\/_sdott_\/status\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:37:46 +0000 2017","id":932392486336479232,"id_str":"932392486336479232","text":"@realDonaldTrump My favorite President? What did he say about Obama?!","display_text_range":[17,70],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":932388590344196096,"in_reply_to_status_id_str":"932388590344196096","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","user":{"id":14565571,"id_str":"14565571","name":"Heather","screen_name":"SweetGeekling","location":"Boulder, CO","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":292,"friends_count":305,"listed_count":2,"favourites_count":12443,"statuses_count":8282,"created_at":"Mon Apr 28 04:38:20 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483095538858864641\/n5VQxug4.png","profile_background_tile":true,"profile_link_color":"EAA852","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD66B","profile_text_color":"0F2941","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918490119031603201\/RI50xicN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14565571\/1478903561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:37:32 +0000 2017","id":932392429617106945,"id_str":"932392429617106945","text":"Exploring happened! @ Flagstaff Mountain https:\/\/t.co\/jr2yzf1PBl","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40520771,"id_str":"40520771","name":"Stephen Hutt","screen_name":"Stephenhutt","location":null,"url":"http:\/\/thehutt5.blogspot.com","description":"Adventure Seeker. Music Lover. Radio 2 Listener. Harry Potter Adorer. Computer Geek. Shoe Wearer. University Of Notre Dame. PhD Student","translator_type":"none","protected":false,"verified":false,"followers_count":323,"friends_count":660,"listed_count":4,"favourites_count":455,"statuses_count":3021,"created_at":"Sat May 16 18:59:56 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B7AEA5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/211268742\/x05c567b63d7ee8f542361f8d93d9a72.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/211268742\/x05c567b63d7ee8f542361f8d93d9a72.png","profile_background_tile":true,"profile_link_color":"E33C08","profile_sidebar_border_color":"221D21","profile_sidebar_fill_color":"433D3D","profile_text_color":"F77014","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641809711277441024\/jLKQ7aHi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641809711277441024\/jLKQ7aHi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40520771\/1441854493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.00166667,-105.3075]},"coordinates":{"type":"Point","coordinates":[-105.3075,40.00166667]},"place":{"id":"e21c8e4914eef2b3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e21c8e4914eef2b3.json","place_type":"admin","name":"Colorado","full_name":"Colorado, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-109.060257,36.992427],[-109.060257,41.003445],[-102.041524,41.003445],[-102.041524,36.992427]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jr2yzf1PBl","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsg14gl-Xt8n8a9EH72CloFZrVajRCtdzPMIE0\/","display_url":"instagram.com\/p\/Bbsg14gl-Xt8\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:37:01 +0000 2017","id":932392298670735361,"id_str":"932392298670735361","text":"The #Boulder Opera presents Cendrillon. The timeless fairytale turned into Opera. Why are the step sisters so mean\u2026 https:\/\/t.co\/u6XXcLOpD3","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219817228,"id_str":"1219817228","name":"Boulder Opera","screen_name":"boulderopera","location":null,"url":"http:\/\/www.boulderoperacompany.com","description":"Boulder Opera is committed to producing three Operas a year; on full length and two abridged versions adapted for children.","translator_type":"none","protected":false,"verified":false,"followers_count":409,"friends_count":472,"listed_count":9,"favourites_count":200,"statuses_count":426,"created_at":"Mon Feb 25 21:23:03 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B38000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3308072498\/3f4b2a68c65e856c45a14ea864bda48e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"The #Boulder Opera presents Cendrillon. The timeless fairytale turned into Opera. Why are the step sisters so mean to Cinderella? Find out Dec 3rd-9th For tix & info: https:\/\/t.co\/YBgtEOkoj5 #Longmont #Boulder #FamilyFriendly #Operaforkids #Singing https:\/\/t.co\/KsEFhVw94W","display_text_range":[0,256],"entities":{"hashtags":[{"text":"Boulder","indices":[4,12]},{"text":"Longmont","indices":[199,208]},{"text":"Boulder","indices":[209,217]},{"text":"FamilyFriendly","indices":[218,233]},{"text":"Operaforkids","indices":[234,247]},{"text":"Singing","indices":[248,256]}],"urls":[{"url":"https:\/\/t.co\/YBgtEOkoj5","expanded_url":"http:\/\/www.boulderoperacompany.com\/cendrillon\/","display_url":"boulderoperacompany.com\/cendrillon\/","indices":[174,197]}],"user_mentions":[],"symbols":[],"media":[{"id":932392106844348417,"id_str":"932392106844348417","indices":[257,280],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCFrl_V4AE5-uu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCFrl_V4AE5-uu.jpg","url":"https:\/\/t.co\/KsEFhVw94W","display_url":"pic.twitter.com\/KsEFhVw94W","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932392298670735361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932392106844348417,"id_str":"932392106844348417","indices":[257,280],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCFrl_V4AE5-uu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCFrl_V4AE5-uu.jpg","url":"https:\/\/t.co\/KsEFhVw94W","display_url":"pic.twitter.com\/KsEFhVw94W","expanded_url":"https:\/\/twitter.com\/boulderopera\/status\/932392298670735361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"Boulder","indices":[4,12]}],"urls":[{"url":"https:\/\/t.co\/u6XXcLOpD3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932392298670735361","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:35:58 +0000 2017","id":932392034043805696,"id_str":"932392034043805696","text":"Interested in a #job in #Boulder, CO? This could be a great fit: https:\/\/t.co\/XOeG9gh8mz #MilSpouse #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64094640,"id_str":"64094640","name":"TMJ-COB HRTA Jobs","screen_name":"tmj_cob_hrta","location":"Boulder, CO","url":"http:\/\/www.careerarc.com\/job-seeker","description":"Follow this account for geo-targeted Hospitality\/Restaurant\/Tourism job tweets in Boulder, CO. Need help? Tweet us at @CareerArc!","translator_type":"none","protected":false,"verified":false,"followers_count":354,"friends_count":292,"listed_count":70,"favourites_count":0,"statuses_count":467,"created_at":"Sun Aug 09 02:39:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64094640\/1454473372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0260623,-105.2813573]},"coordinates":{"type":"Point","coordinates":[-105.2813573,40.0260623]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[16,20]},{"text":"Boulder","indices":[24,32]},{"text":"MilSpouse","indices":[89,99]},{"text":"Hiring","indices":[100,107]},{"text":"CareerArc","indices":[108,118]}],"urls":[{"url":"https:\/\/t.co\/XOeG9gh8mz","expanded_url":"http:\/\/bit.ly\/2yYCU3g","display_url":"bit.ly\/2yYCU3g","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:34:33 +0000 2017","id":932391678559756288,"id_str":"932391678559756288","text":"couldn\u2019t someone just be my friend out here","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214797614,"id_str":"214797614","name":"Hubert J. Farnsworth","screen_name":"ArianaCiorciari","location":"Boulder, CO","url":null,"description":"I currently live in a Bob Ross painting","translator_type":"none","protected":false,"verified":false,"followers_count":274,"friends_count":576,"listed_count":1,"favourites_count":11408,"statuses_count":2041,"created_at":"Fri Nov 12 07:34:34 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/711124332\/c486e6d443dff3582375989008336276.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/711124332\/c486e6d443dff3582375989008336276.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899339867133497344\/s8oXy8Wj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899339867133497344\/s8oXy8Wj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214797614\/1503755110","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":2,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:29:59 +0000 2017","id":932390526866694144,"id_str":"932390526866694144","text":"#ThankyouDonnie for having such a big heart and sharing your love with all of us @DonnieWahlberg https:\/\/t.co\/xGa9cTbkQp","display_text_range":[0,96],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2429434159,"id_str":"2429434159","name":"JonGirlFrom'89\u2764\ufe0f","screen_name":"rosewillow201","location":null,"url":null,"description":"I have and will always NKOTB! Followed by Dan McCarthy, JoJo McCarthy, Jenny McCarthy, Danny Wood (4\/5\/15), Amy Carlson (6\/14\/15), Donnie Wahlberg(8\/4\/15)#7,745","translator_type":"none","protected":false,"verified":false,"followers_count":806,"friends_count":1206,"listed_count":15,"favourites_count":14180,"statuses_count":11240,"created_at":"Sat Apr 05 20:36:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/804162230468087809\/_iW2SC-G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/804162230468087809\/_iW2SC-G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2429434159\/1444702088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[{"text":"ThankyouDonnie","indices":[0,15]}],"urls":[],"user_mentions":[{"screen_name":"DonnieWahlberg","name":"Donnie Wahlberg","id":24776235,"id_str":"24776235","indices":[81,96]}],"symbols":[],"media":[{"id":932390519841292288,"id_str":"932390519841292288","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCEPN8VAAAiM5Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCEPN8VAAAiM5Y.jpg","url":"https:\/\/t.co\/xGa9cTbkQp","display_url":"pic.twitter.com\/xGa9cTbkQp","expanded_url":"https:\/\/twitter.com\/rosewillow201\/status\/932390526866694144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":932390519841292288,"id_str":"932390519841292288","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/DPCEPN8VAAAiM5Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DPCEPN8VAAAiM5Y.jpg","url":"https:\/\/t.co\/xGa9cTbkQp","display_url":"pic.twitter.com\/xGa9cTbkQp","expanded_url":"https:\/\/twitter.com\/rosewillow201\/status\/932390526866694144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":360,"resize":"fit"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:28:09 +0000 2017","id":932390068123082752,"id_str":"932390068123082752","text":"If you're looking for work in #Boulder, CO, check out this #job: https:\/\/t.co\/cgJFpMcuK2 #MilSpouse #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64094640,"id_str":"64094640","name":"TMJ-COB HRTA Jobs","screen_name":"tmj_cob_hrta","location":"Boulder, CO","url":"http:\/\/www.careerarc.com\/job-seeker","description":"Follow this account for geo-targeted Hospitality\/Restaurant\/Tourism job tweets in Boulder, CO. Need help? Tweet us at @CareerArc!","translator_type":"none","protected":false,"verified":false,"followers_count":354,"friends_count":292,"listed_count":70,"favourites_count":0,"statuses_count":467,"created_at":"Sun Aug 09 02:39:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315432716\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694737786419548160\/3Hgpxeiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64094640\/1454473372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0159855,-105.2578594]},"coordinates":{"type":"Point","coordinates":[-105.2578594,40.0159855]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Boulder","indices":[30,38]},{"text":"job","indices":[59,63]},{"text":"MilSpouse","indices":[89,99]},{"text":"Hiring","indices":[100,107]},{"text":"CareerArc","indices":[108,118]}],"urls":[{"url":"https:\/\/t.co\/cgJFpMcuK2","expanded_url":"http:\/\/bit.ly\/2Ah3852","display_url":"bit.ly\/2Ah3852","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:27:39 +0000 2017","id":932389941736366080,"id_str":"932389941736366080","text":"Here at Roots, we are thankful for our community of amazing athletes!\n\nJoin us to celebrate the\u2026 https:\/\/t.co\/CgYb7O5ozI","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20810704,"id_str":"20810704","name":"CrossFit Roots","screen_name":"CrossFitRoots","location":"Boulder, Colorado","url":"http:\/\/www.crossfitroots.com","description":"CrossFit Roots is an official CrossFit affiliate in Boulder, Colorado. We believe in putting the heart and soul back into health and fitness.","translator_type":"none","protected":false,"verified":false,"followers_count":9085,"friends_count":244,"listed_count":148,"favourites_count":65,"statuses_count":2836,"created_at":"Fri Feb 13 21:53:54 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3409389843\/60472c846d2d08c9ba484d2bb27c0170_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3409389843\/60472c846d2d08c9ba484d2bb27c0170_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.0150719,-105.2457886]},"coordinates":{"type":"Point","coordinates":[-105.2457886,40.0150719]},"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CgYb7O5ozI","expanded_url":"https:\/\/www.instagram.com\/p\/Bbsftn6D9-m\/","display_url":"instagram.com\/p\/Bbsftn6D9-m\/","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 23:25:28 +0000 2017","id":932389391665807360,"id_str":"932389391665807360","text":"Really wish these things had a different name so we didn\u2019t have to reference the downfall of society with \u201cdid you see that tweet?\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89137546,"id_str":"89137546","name":"jamie","screen_name":"jamiealquiza","location":"Boulder, CO","url":"https:\/\/github.com\/jamiealquiza","description":"Scaling data @datadoghq. Makes software, photos, stir fry. Likes mountains, bikes, things designed well.","translator_type":"none","protected":false,"verified":false,"followers_count":507,"friends_count":156,"listed_count":22,"favourites_count":473,"statuses_count":6360,"created_at":"Wed Nov 11 08:16:35 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"363232","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459367219479080960\/42yhbCoN.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459367219479080960\/42yhbCoN.png","profile_background_tile":true,"profile_link_color":"222244","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"000544","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931688271628836864\/5Gn7sH7N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931688271628836864\/5Gn7sH7N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89137546\/1510966828","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"fd70c22040963ac7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fd70c22040963ac7.json","place_type":"city","name":"Boulder","full_name":"Boulder, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.301776,39.953552],[-105.301776,40.094411],[-105.183597,40.094411],[-105.183597,39.953552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710210000","toDate":"201711200054"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_to.json b/spec/fixtures/premium_search_to.json new file mode 100644 index 000000000..3fc750ad4 --- /dev/null +++ b/spec/fixtures/premium_search_to.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Sun Nov 19 17:32:25 +0000 2017","id":932300541324955648,"id_str":"932300541324955648","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":812836095226421248,"id_str":"812836095226421248","name":"Neeraj Pathak","screen_name":"96179198np","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":4,"friends_count":43,"listed_count":0,"favourites_count":2,"statuses_count":10,"created_at":"Sun Dec 25 01:43:21 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 16:38:44 +0000 2017","id":932287034013749251,"id_str":"932287034013749251","text":"@TwitterDev <a href=\"https:\/\/t.co\/KJz38P6WHg\" class=\"twitter-mention-button\" data-show-count=\"false\">Tweet to\u2026 https:\/\/t.co\/6MLgj1o7bo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":269625638,"id_str":"269625638","name":"BALTASAR [O BAIXO]","screen_name":"ROBERTOBALTASAR","location":"Buenos Aires, Argentina","url":"http:\/\/www.wrtur.org","description":"CONSULTOR DE TURISMO EM BUENOS AIRES COM RACHEL, ESPOSA. http:\/\/www.wrtur.org \ud83d\ude1cEXCELENTE SUPORTE A EMPRESAS E TURISTAS","translator_type":"none","protected":false,"verified":false,"followers_count":98,"friends_count":500,"listed_count":1,"favourites_count":135,"statuses_count":2139,"created_at":"Mon Mar 21 04:33:16 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/672970433956847616\/IBtMg87b.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/672970433956847616\/IBtMg87b.jpg","profile_background_tile":true,"profile_link_color":"19CF86","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932314994062086144\/855XQ4DZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932314994062086144\/855XQ4DZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269625638\/1511116473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev <a href=\"https:\/\/t.co\/KJz38P6WHg\" class=\"twitter-mention-button\" data-show-count=\"false\">Tweet to @TwitterDev<\/a><script async src=\"https:\/\/t.co\/9VSK2DMC8P\" charset=\"utf-8\"><\/script>","display_text_range":[0,218],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KJz38P6WHg","expanded_url":"https:\/\/twitter.com\/intent\/tweet?screen_name=TwitterDev&ref_src=twsrc%5Etfw","display_url":"twitter.com\/intent\/tweet?s\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/9VSK2DMC8P","expanded_url":"https:\/\/platform.twitter.com\/widgets.js","display_url":"platform.twitter.com\/widgets.js","indices":[159,182]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[116,127]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KJz38P6WHg","expanded_url":"https:\/\/twitter.com\/intent\/tweet?screen_name=TwitterDev&ref_src=twsrc%5Etfw","display_url":"twitter.com\/intent\/tweet?s\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/6MLgj1o7bo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932287034013749251","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 14:34:59 +0000 2017","id":932255891096731648,"id_str":"932255891096731648","text":"@TwitterDev https:\/\/t.co\/sIiBIyLv6N","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":922218056113410048,"id_str":"922218056113410048","name":"sofi safi","screen_name":"sofisofiane449","location":"Alg\u00e9rie","url":"http:\/\/www.to3alamnet.com\/","description":"happy new year 2018","translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":127,"listed_count":0,"favourites_count":3,"statuses_count":35,"created_at":"Sun Oct 22 21:48:13 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924018586481561601\/axEkVHDO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924018586481561601\/axEkVHDO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922218056113410048\/1509138215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sIiBIyLv6N","expanded_url":"http:\/\/www.to3alamnet.com","display_url":"to3alamnet.com","indices":[12,35]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 13:54:43 +0000 2017","id":932245757008134146,"id_str":"932245757008134146","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":927785955922083840,"id_str":"927785955922083840","name":"Chaudhari pankaj","screen_name":"Chaudharipank15","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Tue Nov 07 06:33:04 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 08:57:52 +0000 2017","id":932171050720354304,"id_str":"932171050720354304","text":"@TwitterDev MR VOTRE CONSTAT SUR UN MAL ETRE ALIMENTAIRE.AVANT DE DEPLOYER POLITIQUE DE BESOINS. CONCENTRONS-NOUS\u2026 https:\/\/t.co\/XnALu4a62e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":902954930176221186,"id_str":"902954930176221186","name":"FONT Jacques","screen_name":"Fontjacques120","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":2,"friends_count":38,"listed_count":0,"favourites_count":0,"statuses_count":23,"created_at":"Wed Aug 30 18:03:26 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev MR VOTRE CONSTAT SUR UN MAL ETRE ALIMENTAIRE.AVANT DE DEPLOYER POLITIQUE DE BESOINS. CONCENTRONS-NOUS SUR UN JEU EXTERNE ET INTERNE NOURRIRA CERTES A REPENSER LE PROBLEME PHILOSOPHIE INTERNE JACQUES FONT pyzalee@orange.fr","display_text_range":[0,235],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XnALu4a62e","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932171050720354304","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 05:23:19 +0000 2017","id":932117057679667200,"id_str":"932117057679667200","text":"@TwitterDev @TwitterOfficial you should persist night mode feature across the devices.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":1550750996,"id_str":"1550750996","name":"s.shivasurya","screen_name":"sshivasurya","location":"INDA","url":"http:\/\/www.i-visionblog.com","description":"Avid Coder - Tech Blogger - Product Engineer - ML and AI Enthusiast","translator_type":"none","protected":false,"verified":false,"followers_count":451,"friends_count":427,"listed_count":118,"favourites_count":601,"statuses_count":2439,"created_at":"Thu Jun 27 14:25:46 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B3E9E1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533196231174918144\/Q7wK0qA2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533196231174918144\/Q7wK0qA2.jpeg","profile_background_tile":true,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/906892783327207424\/N2WaRWll_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/906892783327207424\/N2WaRWll_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1550750996\/1494263793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterOfficial","name":"Twitter Official","id":1965639398,"id_str":"1965639398","indices":[12,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 19 04:10:10 +0000 2017","id":932098651513671680,"id_str":"932098651513671680","text":"@TwitterDev lady teresa looking for products to integrate in our eccomere page on our website. Need the newest digi\u2026 https:\/\/t.co\/XdZJHPM02J","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":915223007576158210,"id_str":"915223007576158210","name":"Lady Teresa","screen_name":"LadyTeresa8","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":2,"friends_count":96,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Tue Oct 03 14:32:23 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev lady teresa looking for products to integrate in our eccomere page on our website. Need the newest digital products trending on google and amazon.","display_text_range":[0,158],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XdZJHPM02J","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/932098651513671680","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 20:16:19 +0000 2017","id":931979402606395392,"id_str":"931979402606395392","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":926309782100893696,"id_str":"926309782100893696","name":"Babar Khan","screen_name":"BabarKh01299281","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":128,"listed_count":0,"favourites_count":4,"statuses_count":4,"created_at":"Fri Nov 03 04:47:16 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926310683574071298\/x6JYbqn9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926310683574071298\/x6JYbqn9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 16:11:28 +0000 2017","id":931917783683796992,"id_str":"931917783683796992","text":"@TwitterDev I'm using the card update page but it's updating to information from the day before. I'm updating my tw\u2026 https:\/\/t.co\/HBzzrs81Wj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":735500236274204672,"id_str":"735500236274204672","name":"The Angry Hulk","screen_name":"OGAngryHulk","location":"United States","url":"http:\/\/twitch.tv\/the_angry_hulk","description":"Twitch streamer and video editing amateur. I have a serious love for games and a serious bad attitude for losing. Send inquiries to theangryhulk.tv@gmail.com","translator_type":"none","protected":false,"verified":false,"followers_count":85,"friends_count":223,"listed_count":3,"favourites_count":603,"statuses_count":1211,"created_at":"Wed May 25 15:58:16 +0000 2016","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4DBD33","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930477941913542656\/XV2KDxru_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930477941913542656\/XV2KDxru_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735500236274204672\/1483567953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev I'm using the card update page but it's updating to information from the day before. I'm updating my twitch summary. If my summary is \"A\" one day, then I change it to \"B\" the next, then validate, it shows \"A\".","display_text_range":[0,221],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HBzzrs81Wj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931917783683796992","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 15:28:19 +0000 2017","id":931906924672667648,"id_str":"931906924672667648","text":"@TwitterDev https:\/\/t.co\/Aixz8eLRaE","display_text_range":[0,11],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":784852724454162432,"id_str":"784852724454162432","name":"\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0439 \u041b\u0435\u0449\u0435\u043d\u043a\u043e","screen_name":"OtW5czt8cjP9BSE","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":46,"listed_count":0,"favourites_count":12,"statuses_count":28,"created_at":"Sat Oct 08 20:27:26 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/850273478846455808\/hDGzmAZJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/850273478846455808\/hDGzmAZJ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":931906912299421696,"id_str":"931906912299421696","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/DO7MZjdWkAA52p3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO7MZjdWkAA52p3.jpg","url":"https:\/\/t.co\/Aixz8eLRaE","display_url":"pic.twitter.com\/Aixz8eLRaE","expanded_url":"https:\/\/twitter.com\/OtW5czt8cjP9BSE\/status\/931906924672667648\/photo\/1","type":"photo","sizes":{"small":{"w":480,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":606,"resize":"fit"},"medium":{"w":480,"h":606,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931906912299421696,"id_str":"931906912299421696","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/DO7MZjdWkAA52p3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO7MZjdWkAA52p3.jpg","url":"https:\/\/t.co\/Aixz8eLRaE","display_url":"pic.twitter.com\/Aixz8eLRaE","expanded_url":"https:\/\/twitter.com\/OtW5czt8cjP9BSE\/status\/931906924672667648\/photo\/1","type":"photo","sizes":{"small":{"w":480,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":606,"resize":"fit"},"medium":{"w":480,"h":606,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 11:48:18 +0000 2017","id":931851555678162946,"id_str":"931851555678162946","text":"@TwitterDev urse ala hazarat imam ahamed raza khan alaihirehma bareli sharif","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3011552833,"id_str":"3011552833","name":"Mohammed ArmaanNoori","screen_name":"armaan_noori","location":" Hubli Karnataka","url":"http:\/\/www.sunnidawateislami.net","description":"Armaan Raza Noori Barkati Razvi Ashrafi Mubalige Sunni Dawate Islami","translator_type":"none","protected":false,"verified":false,"followers_count":140,"friends_count":205,"listed_count":0,"favourites_count":876,"statuses_count":763,"created_at":"Fri Feb 06 17:17:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879755039283093504\/iTUxcnr6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879755039283093504\/iTUxcnr6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3011552833\/1487241220","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 11:23:24 +0000 2017","id":931845287831789568,"id_str":"931845287831789568","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":906441743423258624,"id_str":"906441743423258624","name":"phamvanhung","screen_name":"phamvan26808099","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":62,"listed_count":0,"favourites_count":3,"statuses_count":31,"created_at":"Sat Sep 09 08:58:47 +0000 2017","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914975853020200960\/ZtmWeni3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914975853020200960\/ZtmWeni3_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 09:04:12 +0000 2017","id":931810258565021696,"id_str":"931810258565021696","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":927605664070885376,"id_str":"927605664070885376","name":"\u0921\u092e\u094d\u092e\u0930 \u0915\u0920\u093e\u092f\u092c\u094b\u0917\u091f\u093e\u0928\u093f","screen_name":"tPPgrrWLBd6tN1R","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":20,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 06 18:36:39 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 06:07:49 +0000 2017","id":931765871210528768,"id_str":"931765871210528768","text":"@TwitterDev Android twitter app is not showing all the updates. I missed so many after checking on web versions. Please fix.","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":122512220,"id_str":"122512220","name":"Amit Nagpal","screen_name":"amit_nagpal","location":null,"url":null,"description":"Software Developer #BitwiseInc #Discover","translator_type":"none","protected":false,"verified":false,"followers_count":8,"friends_count":41,"listed_count":0,"favourites_count":131,"statuses_count":112,"created_at":"Fri Mar 12 23:59:15 +0000 2010","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623288889957089281\/h_IlPoDn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623288889957089281\/h_IlPoDn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122512220\/1434858209","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 18 02:50:17 +0000 2017","id":931716160839487488,"id_str":"931716160839487488","text":"@TwitterDev \nHi guys, \nPlease add the option of edit tweet which we are posting. If any anything went wrong while t\u2026 https:\/\/t.co\/b72EldKK80","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":222443620,"id_str":"222443620","name":"kiran.vempatapu","screen_name":"kirru487","location":"Hyderabad, India","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":140,"friends_count":815,"listed_count":0,"favourites_count":733,"statuses_count":312,"created_at":"Fri Dec 03 12:49:59 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/839435650\/0dfb0875df30623f7769123498383569.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/839435650\/0dfb0875df30623f7769123498383569.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/708294198353481729\/ZDvpK9R__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/708294198353481729\/ZDvpK9R__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/222443620\/1457705553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev \nHi guys, \nPlease add the option of edit tweet which we are posting. If any anything went wrong while tweeting we have to to delete tweet and want to retweet again. It takes long time","display_text_range":[0,196],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/b72EldKK80","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931716160839487488","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 18:14:56 +0000 2017","id":931586465586229248,"id_str":"931586465586229248","text":"@TwitterDev https:\/\/t.co\/HFRstFU0JE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":862765228269776896,"id_str":"862765228269776896","name":"Nguy\u1ec5n D\u01b0\u01a1ng Tr\u01b0\u1eddng To\u00e0n","screen_name":"truongtoan1993","location":"Vi\u1ec7t Nam","url":"https:\/\/m.youtube.com\/my_videos","description":"NARUTO- l\u1ec5 nh\u1eadn ch\u1ee9c HOKAGE \u0110\u1ec7 th\u1ea5t","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":87,"listed_count":0,"favourites_count":9,"statuses_count":69,"created_at":"Thu May 11 20:23:54 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931536278121615362\/SzrsyWgq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931536278121615362\/SzrsyWgq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HFRstFU0JE","expanded_url":"https:\/\/twitter.com\/truongtoan1993","display_url":"twitter.com\/truongtoan1993","indices":[12,35]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 17:26:03 +0000 2017","id":931574167421554688,"id_str":"931574167421554688","text":"@TwitterDev Quiero que salgan en automatico mis twiteers","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":18333926,"id_str":"18333926","name":"Gustavo Var\u00f3n U","screen_name":"GustavoVaronU","location":"Bogota","url":"https:\/\/pinturaartisticas.com","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":96,"friends_count":373,"listed_count":0,"favourites_count":13,"statuses_count":31,"created_at":"Tue Dec 23 14:38:43 +0000 2008","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"11503B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468823447976411136\/6b5kquMW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468823447976411136\/6b5kquMW.jpeg","profile_background_tile":true,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8B4D98","profile_text_color":"E6AA9F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466649506742677504\/v6auHlR6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466649506742677504\/v6auHlR6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18333926\/1487616623","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 15:57:48 +0000 2017","id":931551954769031168,"id_str":"931551954769031168","text":"@TwitterDev Hi","display_text_range":[12,14],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":897954312822767616,"in_reply_to_status_id_str":"897954312822767616","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":931550296743882752,"id_str":"931550296743882752","name":"Anandmishra","screen_name":"Anandmi02842194","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Fri Nov 17 15:51:12 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 15:56:59 +0000 2017","id":931551751773106177,"id_str":"931551751773106177","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":931550296743882752,"id_str":"931550296743882752","name":"Anandmishra","screen_name":"Anandmi02842194","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Fri Nov 17 15:51:12 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 15:19:14 +0000 2017","id":931542251624419328,"id_str":"931542251624419328","text":"@TwitterDev toomihkikkkmih kjkkmom me kjkkmom me\u200bo9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3431533523,"id_str":"3431533523","name":"Mellissa","screen_name":"2NY4EVR","location":"London, England","url":"https:\/\/inkbunny.net\/White66","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":49,"friends_count":77,"listed_count":0,"favourites_count":1,"statuses_count":231,"created_at":"Wed Aug 19 14:07:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/688813807548919809\/rCbKFGZe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/688813807548919809\/rCbKFGZe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3431533523\/1453061004","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 10:51:16 +0000 2017","id":931474816107814913,"id_str":"931474816107814913","text":"@TwitterDev: How do we publish an APP which is created from https:\/\/t.co\/HUazChIQqS\n@NParimala @nareshanagoni @TwitterLive","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":169136636,"id_str":"169136636","name":"siddhartha reddy","screen_name":"dwaramsiddharth","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":7,"friends_count":39,"listed_count":0,"favourites_count":2,"statuses_count":19,"created_at":"Wed Jul 21 16:49:55 +0000 2010","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3601509448\/2b2ba9399f82ca284c7b2fd0af57a32c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3601509448\/2b2ba9399f82ca284c7b2fd0af57a32c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HUazChIQqS","expanded_url":"https:\/\/app.twitter.com","display_url":"app.twitter.com","indices":[60,83]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"NParimala","name":"N ParimalaDeepika","id":1168446330,"id_str":"1168446330","indices":[84,94]},{"screen_name":"nareshanagoni","name":"Anagoni Naresh","id":2187942138,"id_str":"2187942138","indices":[96,110]},{"screen_name":"TwitterLive","name":"Twitter Live","id":130649891,"id_str":"130649891","indices":[111,123]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 06:17:16 +0000 2017","id":931405862610096128,"id_str":"931405862610096128","text":"@TwitterDev @Twitter @Google @godtributes @sengineland @Cristiano @SamiYusuf @Neilsonagain @ezoic @9tN4tGi72j1z4Qe\u2026 https:\/\/t.co\/HpwBkwHsTp","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3608122933,"id_str":"3608122933","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0631\u0627\u062c\u062d \u0633\u0639\u064a\u062f","screen_name":"9tN4tGi72j1z4Qe","location":"Yemen","url":"https:\/\/Twitter.com","description":"Sports stemmed from huge benefits, each subdivided into seven branches and origin reaches to 50 usefulness and so on.","translator_type":"none","protected":false,"verified":false,"followers_count":3372,"friends_count":4076,"listed_count":38,"favourites_count":536,"statuses_count":48335,"created_at":"Fri Sep 18 19:17:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/799664472868737024\/oHr5flvz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/799664472868737024\/oHr5flvz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3608122933\/1494255091","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev @Twitter @Google @godtributes @sengineland @Cristiano @SamiYusuf @Neilsonagain @ezoic @9tN4tGi72j1z4Qe @BarackObama @KuwaitFund https:\/\/t.co\/IKy9mzjYH8","display_text_range":[0,139],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"Twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[12,20]},{"screen_name":"Google","name":"Google","id":20536157,"id_str":"20536157","indices":[21,28]},{"screen_name":"godtributes","name":"Appropriate Tributes","id":2566358196,"id_str":"2566358196","indices":[29,41]},{"screen_name":"sengineland","name":"Search Engine Land","id":1059801,"id_str":"1059801","indices":[42,54]},{"screen_name":"Cristiano","name":"Cristiano Ronaldo","id":155659213,"id_str":"155659213","indices":[55,65]},{"screen_name":"SamiYusuf","name":"Sami Yusuf","id":8510412,"id_str":"8510412","indices":[66,76]},{"screen_name":"Neilsonagain","name":"Kathryn Neilson","id":2925684203,"id_str":"2925684203","indices":[77,90]},{"screen_name":"ezoic","name":"Ezoic","id":239472412,"id_str":"239472412","indices":[91,97]},{"screen_name":"9tN4tGi72j1z4Qe","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0631\u0627\u062c\u062d \u0633\u0639\u064a\u062f","id":3608122933,"id_str":"3608122933","indices":[98,114]},{"screen_name":"BarackObama","name":"Barack Obama","id":813286,"id_str":"813286","indices":[115,127]},{"screen_name":"KuwaitFund","name":"\u0627\u0644\u0635\u0646\u062f\u0648\u0642 \u0627\u0644\u0643\u0648\u064a\u062a\u064a","id":155274019,"id_str":"155274019","indices":[128,139]}],"symbols":[],"media":[{"id":931405526369480705,"id_str":"931405526369480705","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EZDUWsAETTbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EZDUWsAETTbt.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1500,"h":1500,"resize":"fit"}}},{"id":931405675372138496,"id_str":"931405675372138496","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EhuZW0AAS9jm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EhuZW0AAS9jm.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"large":{"w":1500,"h":1500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}},{"id":931405752052445184,"id_str":"931405752052445184","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EmMDXcAAT-FB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EmMDXcAAT-FB.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"}}},{"id":931405795547328512,"id_str":"931405795547328512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EouFWsAAU1T_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EouFWsAAU1T_.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"large":{"w":605,"h":806,"resize":"fit"},"medium":{"w":605,"h":806,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931405526369480705,"id_str":"931405526369480705","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EZDUWsAETTbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EZDUWsAETTbt.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1500,"h":1500,"resize":"fit"}}},{"id":931405675372138496,"id_str":"931405675372138496","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EhuZW0AAS9jm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EhuZW0AAS9jm.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"large":{"w":1500,"h":1500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}},{"id":931405752052445184,"id_str":"931405752052445184","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EmMDXcAAT-FB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EmMDXcAAT-FB.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"}}},{"id":931405795547328512,"id_str":"931405795547328512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/DO0EouFWsAAU1T_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DO0EouFWsAAU1T_.jpg","url":"https:\/\/t.co\/IKy9mzjYH8","display_url":"pic.twitter.com\/IKy9mzjYH8","expanded_url":"https:\/\/twitter.com\/9tN4tGi72j1z4Qe\/status\/931405862610096128\/photo\/1","type":"photo","sizes":{"large":{"w":605,"h":806,"resize":"fit"},"medium":{"w":605,"h":806,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HpwBkwHsTp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931405862610096128","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"Twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[12,20]},{"screen_name":"Google","name":"Google","id":20536157,"id_str":"20536157","indices":[21,28]},{"screen_name":"godtributes","name":"Appropriate Tributes","id":2566358196,"id_str":"2566358196","indices":[29,41]},{"screen_name":"sengineland","name":"Search Engine Land","id":1059801,"id_str":"1059801","indices":[42,54]},{"screen_name":"Cristiano","name":"Cristiano Ronaldo","id":155659213,"id_str":"155659213","indices":[55,65]},{"screen_name":"SamiYusuf","name":"Sami Yusuf","id":8510412,"id_str":"8510412","indices":[66,76]},{"screen_name":"Neilsonagain","name":"Kathryn Neilson","id":2925684203,"id_str":"2925684203","indices":[77,90]},{"screen_name":"ezoic","name":"Ezoic","id":239472412,"id_str":"239472412","indices":[91,97]},{"screen_name":"9tN4tGi72j1z4Qe","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0631\u0627\u062c\u062d \u0633\u0639\u064a\u062f","id":3608122933,"id_str":"3608122933","indices":[98,114]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Fri Nov 17 02:35:12 +0000 2017","id":931349973698011138,"id_str":"931349973698011138","text":"@TwitterDev Hey, I think it would be cool if you allowed editing tweets with regexs:\n\ns\/allowed\/developed\/\n\nShow th\u2026 https:\/\/t.co\/SQwhbVXkDt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3346789361,"id_str":"3346789361","name":"\u03b1 Leonis","screen_name":"Cynecin","location":"Houston, TX","url":"http:\/\/gab.ai\/spica","description":"Part-time Investigator, full-time #Patriot. #Linux and #CyberSecurity professional. #CypherPunk Snowflake follows strongly discouraged.","translator_type":"none","protected":false,"verified":false,"followers_count":1791,"friends_count":1447,"listed_count":225,"favourites_count":26977,"statuses_count":14452,"created_at":"Fri Jun 26 18:34:30 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918248581525487616\/Pc5lZXEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918248581525487616\/Pc5lZXEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3346789361\/1506156852","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Hey, I think it would be cool if you allowed editing tweets with regexs:\n\ns\/allowed\/developed\/\n\nShow the subtweet as a record of what was changed.\n\nJust an idea. :)","display_text_range":[0,176],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SQwhbVXkDt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931349973698011138","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 18:14:49 +0000 2017","id":931224048029392896,"id_str":"931224048029392896","text":"@TwitterDev ccet","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930095896242606081,"id_str":"930095896242606081","name":"Larissa Garcette","screen_name":"LarissaGarcette","location":"canad","url":null,"description":"je suis Larissa personnage tr\u00e8s dr\u00f4le et surtout ambitieuse. Je m\u2019int\u00e9resse assez au fleurs car la nature est ma passion. Hangouts larissagarcette@gmail.com\ud83c\udfc8","translator_type":"none","protected":false,"verified":false,"followers_count":38,"friends_count":298,"listed_count":1,"favourites_count":1186,"statuses_count":129,"created_at":"Mon Nov 13 15:31:56 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930096883694997504\/MgYzBrSQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930096883694997504\/MgYzBrSQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930095896242606081\/1510766901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 17:15:04 +0000 2017","id":931209015446695938,"id_str":"931209015446695938","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930745010697527296,"id_str":"930745010697527296","name":"RACHIMAY","screen_name":"rachida444","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":2,"friends_count":109,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Wed Nov 15 10:31:17 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930746743125356544\/7K-5ySpB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930746743125356544\/7K-5ySpB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 16:35:38 +0000 2017","id":931199090460938241,"id_str":"931199090460938241","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":782798546898718720,"id_str":"782798546898718720","name":"\u0646\u0630\u064a\u0631\u0639\u0628\u062f\u0647 \u0627\u0644\u062d\u0637\u0627\u0645\u064a","screen_name":"nm_ri0mo","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":26,"listed_count":0,"favourites_count":12,"statuses_count":3,"created_at":"Mon Oct 03 04:24:52 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/782854648730357760\/6K0vR9bh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/782854648730357760\/6K0vR9bh_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 10:38:31 +0000 2017","id":931109216491921408,"id_str":"931109216491921408","text":"@TwitterDev #MELISSASHARMANARAYANANSHETTY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":924286124511715328,"id_str":"924286124511715328","name":"Melissa S.N. Shetty","screen_name":"MelissaShetty","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":95,"listed_count":0,"favourites_count":8,"statuses_count":15,"created_at":"Sat Oct 28 14:45:59 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MELISSASHARMANARAYANANSHETTY","indices":[12,41]}],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 09:22:44 +0000 2017","id":931090145968902144,"id_str":"931090145968902144","text":"@TwitterDev Also when trying to send you an image about the previous bug, Twitter managed to crash the chrome tab.\u2026 https:\/\/t.co\/YlCw6lHAwM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":283183995,"id_str":"283183995","name":"Greg Myers","screen_name":"BookOfGreg","location":"Glasgow, Scotland","url":null,"description":"MSci(First, Aberdeen) Ruby on Rails - Java -JS - TDD - Agile","translator_type":"none","protected":false,"verified":false,"followers_count":117,"friends_count":309,"listed_count":5,"favourites_count":23,"statuses_count":530,"created_at":"Sat Apr 16 19:17:07 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370281277\/twitter-face_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370281277\/twitter-face_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283183995\/1398280851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Also when trying to send you an image about the previous bug, Twitter managed to crash the chrome tab. Have a Bug report with your Bug report.","display_text_range":[0,154],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YlCw6lHAwM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/931090145968902144","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 09:22:03 +0000 2017","id":931089976086941696,"id_str":"931089976086941696","text":"@TwitterDev Can't click any link in your docs: https:\/\/t.co\/VS39jhsfd4","display_text_range":[0,46],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":283183995,"id_str":"283183995","name":"Greg Myers","screen_name":"BookOfGreg","location":"Glasgow, Scotland","url":null,"description":"MSci(First, Aberdeen) Ruby on Rails - Java -JS - TDD - Agile","translator_type":"none","protected":false,"verified":false,"followers_count":117,"friends_count":309,"listed_count":5,"favourites_count":23,"statuses_count":530,"created_at":"Sat Apr 16 19:17:07 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370281277\/twitter-face_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370281277\/twitter-face_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283183995\/1398280851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":931089957044871169,"id_str":"931089957044871169","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOvlYf-X4AEccD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOvlYf-X4AEccD2.jpg","url":"https:\/\/t.co\/VS39jhsfd4","display_url":"pic.twitter.com\/VS39jhsfd4","expanded_url":"https:\/\/twitter.com\/BookOfGreg\/status\/931089976086941696\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":328,"resize":"fit"},"medium":{"w":1200,"h":579,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1642,"h":792,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":931089957044871169,"id_str":"931089957044871169","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/DOvlYf-X4AEccD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOvlYf-X4AEccD2.jpg","url":"https:\/\/t.co\/VS39jhsfd4","display_url":"pic.twitter.com\/VS39jhsfd4","expanded_url":"https:\/\/twitter.com\/BookOfGreg\/status\/931089976086941696\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":328,"resize":"fit"},"medium":{"w":1200,"h":579,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1642,"h":792,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 09:20:21 +0000 2017","id":931089548603482112,"id_str":"931089548603482112","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":842147451003887616,"id_str":"842147451003887616","name":"\u0433\u0440\u0438\u0433\u043e\u0440\u0438\u0439","screen_name":"gogi20175","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Wed Mar 15 22:56:13 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 03:08:03 +0000 2017","id":930995853975851008,"id_str":"930995853975851008","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930991204724105216,"id_str":"930991204724105216","name":"sebaaaaastiao souza ramos","screen_name":"sebaaaaastiao","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":35,"listed_count":0,"favourites_count":0,"statuses_count":5,"created_at":"Thu Nov 16 02:49:34 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930993452199923712\/_4XcgDV5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930993452199923712\/_4XcgDV5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 00:58:48 +0000 2017","id":930963326015811584,"id_str":"930963326015811584","text":"@TwitterDev hola amigos compa\u00f1eros de twitter","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":820710374332919809,"id_str":"820710374332919809","name":"cesar ariel","screen_name":"cegundo2","location":"Buenos Aires, Argentina","url":null,"description":"\u270c\ufe0f","translator_type":"regular","protected":false,"verified":false,"followers_count":11,"friends_count":95,"listed_count":0,"favourites_count":1004,"statuses_count":1074,"created_at":"Sun Jan 15 19:12:56 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820716289840844800\/mhiRO2yQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820716289840844800\/mhiRO2yQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/820710374332919809\/1511130347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 00:53:14 +0000 2017","id":930961925822992384,"id_str":"930961925822992384","text":"@TwitterDev <a href=\"https:\/\/t.co\/BiJu3uiRUG\" class=\"twitter-mention-button\" data-show-count=\"false\">Tweet to\u2026 https:\/\/t.co\/lHk420GqQC","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":820710374332919809,"id_str":"820710374332919809","name":"cesar ariel","screen_name":"cegundo2","location":"Buenos Aires, Argentina","url":null,"description":"\u270c\ufe0f","translator_type":"regular","protected":false,"verified":false,"followers_count":11,"friends_count":95,"listed_count":0,"favourites_count":1004,"statuses_count":1074,"created_at":"Sun Jan 15 19:12:56 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820716289840844800\/mhiRO2yQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820716289840844800\/mhiRO2yQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/820710374332919809\/1511130347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev <a href=\"https:\/\/t.co\/BiJu3uiRUG\" class=\"twitter-mention-button\" data-show-count=\"false\">Tweet to @TwitterDev<\/a><script async src=\"https:\/\/t.co\/nzFe3afBVc\" charset=\"utf-8\"><\/script>","display_text_range":[0,218],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BiJu3uiRUG","expanded_url":"https:\/\/twitter.com\/intent\/tweet?screen_name=TwitterDev&ref_src=twsrc%5Etfw","display_url":"twitter.com\/intent\/tweet?s\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/nzFe3afBVc","expanded_url":"https:\/\/platform.twitter.com\/widgets.js","display_url":"platform.twitter.com\/widgets.js","indices":[159,182]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[116,127]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BiJu3uiRUG","expanded_url":"https:\/\/twitter.com\/intent\/tweet?screen_name=TwitterDev&ref_src=twsrc%5Etfw","display_url":"twitter.com\/intent\/tweet?s\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/lHk420GqQC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930961925822992384","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 00:52:56 +0000 2017","id":930961851688644608,"id_str":"930961851688644608","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":820710374332919809,"id_str":"820710374332919809","name":"cesar ariel","screen_name":"cegundo2","location":"Buenos Aires, Argentina","url":null,"description":"\u270c\ufe0f","translator_type":"regular","protected":false,"verified":false,"followers_count":11,"friends_count":95,"listed_count":0,"favourites_count":1004,"statuses_count":1074,"created_at":"Sun Jan 15 19:12:56 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820716289840844800\/mhiRO2yQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820716289840844800\/mhiRO2yQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/820710374332919809\/1511130347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Thu Nov 16 00:07:55 +0000 2017","id":930950524609863680,"id_str":"930950524609863680","text":"@TwitterDev I need help! I want to embed a video source to my twitter, can this be done?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":926963225228320768,"id_str":"926963225228320768","name":"My Gaming TV","screen_name":"My_Gaming_TV","location":"Las Vegas, NV","url":"https:\/\/www.twitch.tv\/My_Gaming_TV","description":"Just a regular guy making YouTube and Twitch videos!","translator_type":"none","protected":false,"verified":false,"followers_count":63,"friends_count":183,"listed_count":0,"favourites_count":26,"statuses_count":113,"created_at":"Sun Nov 05 00:03:49 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/926966621813465089\/0PTBYt8M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/926966621813465089\/0PTBYt8M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/926963225228320768\/1510908413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5c2b5e46ab891f07","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5c2b5e46ab891f07.json","place_type":"city","name":"Las Vegas","full_name":"Las Vegas, NV","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-115.384091,36.129459],[-115.384091,36.336371],[-115.062159,36.336371],[-115.062159,36.129459]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 22:08:58 +0000 2017","id":930920587173814272,"id_str":"930920587173814272","text":"@TwitterDev we have some issues getting the site crawled, but https:\/\/t.co\/2NCddXIjAY is set up correctly... Can yo\u2026 https:\/\/t.co\/clKZzkBO7D","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":843197162934554624,"id_str":"843197162934554624","name":"Songwhip","screen_name":"songwhip","location":"Every Music Streaming Service","url":"https:\/\/songwhip.com","description":"Music links everyone can play. A single link to every music platform. Create free universal music links instantly at http:\/\/songwhip.com.","translator_type":"none","protected":false,"verified":false,"followers_count":1992,"friends_count":2714,"listed_count":13,"favourites_count":1234,"statuses_count":659,"created_at":"Sat Mar 18 20:27:24 +0000 2017","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF4277","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/861938070979059715\/0_4xATAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/861938070979059715\/0_4xATAV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843197162934554624\/1502435086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev we have some issues getting the site crawled, but https:\/\/t.co\/2NCddXIjAY is set up correctly... Can you help? https:\/\/t.co\/DMEYNycwW9","display_text_range":[0,122],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2NCddXIjAY","expanded_url":"https:\/\/songwhip.com\/robots.txt","display_url":"songwhip.com\/robots.txt","indices":[62,85]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":930920569679302656,"id_str":"930920569679302656","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOtLU23W0AAfhVF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOtLU23W0AAfhVF.jpg","url":"https:\/\/t.co\/DMEYNycwW9","display_url":"pic.twitter.com\/DMEYNycwW9","expanded_url":"https:\/\/twitter.com\/songwhip\/status\/930920587173814272\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":528,"resize":"fit"},"large":{"w":2048,"h":901,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":930920569679302656,"id_str":"930920569679302656","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOtLU23W0AAfhVF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOtLU23W0AAfhVF.jpg","url":"https:\/\/t.co\/DMEYNycwW9","display_url":"pic.twitter.com\/DMEYNycwW9","expanded_url":"https:\/\/twitter.com\/songwhip\/status\/930920587173814272\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":528,"resize":"fit"},"large":{"w":2048,"h":901,"resize":"fit"}}}]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2NCddXIjAY","expanded_url":"https:\/\/songwhip.com\/robots.txt","display_url":"songwhip.com\/robots.txt","indices":[62,85]},{"url":"https:\/\/t.co\/clKZzkBO7D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930920587173814272","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 21:24:00 +0000 2017","id":930909273067945985,"id_str":"930909273067945985","text":"@TwitterDev @TwitterAPI @sunnat629 @TwitterDev @TwitterAPI check updates in https:\/\/t.co\/Xus0aHSWtt","display_text_range":[35,99],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930556310139162627,"in_reply_to_status_id_str":"930556310139162627","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":2384689789,"id_str":"2384689789","name":"vinoth cl","screen_name":"vinothcl","location":"Bengaluru, India","url":"http:\/\/www.freshersgo.com","description":"Founder at http:\/\/www.FreshersGo.com","translator_type":"none","protected":false,"verified":false,"followers_count":64,"friends_count":92,"listed_count":0,"favourites_count":511,"statuses_count":408,"created_at":"Wed Mar 12 04:46:12 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819499236773470208\/vvA4DiRO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819499236773470208\/vvA4DiRO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2384689789\/1484222593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Xus0aHSWtt","expanded_url":"http:\/\/www.laraphp.com","display_url":"laraphp.com","indices":[76,99]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]},{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[24,34]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[35,46]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[47,58]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 19:59:21 +0000 2017","id":930887968591462400,"id_str":"930887968591462400","text":"@TwitterDev @timburks @TwitterAPI @atornes @OpenApiSpec is this your functional spec, though? https:\/\/t.co\/k0mNt3ktBY","display_text_range":[56,117],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930469812182159360,"in_reply_to_status_id_str":"930469812182159360","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":2366499296,"id_str":"2366499296","name":"The Art Of \ud83c\uddfa\ud83c\uddf8","screen_name":"theartofrain","location":"United States","url":null,"description":"Engineer k\u03a9","translator_type":"none","protected":false,"verified":false,"followers_count":256,"friends_count":2239,"listed_count":6,"favourites_count":15778,"statuses_count":10629,"created_at":"Sat Mar 01 04:16:20 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567944897286504448\/kDQahpsP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567944897286504448\/kDQahpsP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366499296\/1486947702","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/k0mNt3ktBY","expanded_url":"https:\/\/www.rand.org\/pubs\/perspectives\/PE198.html","display_url":"rand.org\/pubs\/perspecti\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"timburks","name":"@timburks","id":7305712,"id_str":"7305712","indices":[12,21]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[22,33]},{"screen_name":"atornes","name":"Adam Tornes","id":16453479,"id_str":"16453479","indices":[34,42]},{"screen_name":"OpenApiSpec","name":"OpenAPI Spec","id":4855039169,"id_str":"4855039169","indices":[43,55]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 18:44:08 +0000 2017","id":930869041799057421,"id_str":"930869041799057421","text":"@TwitterDev so for $149 I can make 500 requests monthly?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":908296237576749056,"id_str":"908296237576749056","name":"Mariusz Dzikowski","screen_name":"MariuszDzikows1","location":"Warsaw ","url":null,"description":"Java Developer","translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":77,"listed_count":0,"favourites_count":2,"statuses_count":7,"created_at":"Thu Sep 14 11:47:53 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908300995503017985\/iOsJdz4K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908300995503017985\/iOsJdz4K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908296237576749056\/1505391452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 14:33:23 +0000 2017","id":930805935877980161,"id_str":"930805935877980161","text":"@TwitterDev @Twitter @TwitterSupport FIX YOUR ANDROID APP !","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":24501851,"id_str":"24501851","name":"Taylan Bilal","screen_name":"taylanbil","location":"Seattle, WA","url":null,"description":"Butun kutsal degerlere gicigim. Dropping logic bombs & counterexamples. pwning noobs.","translator_type":"none","protected":false,"verified":false,"followers_count":259,"friends_count":828,"listed_count":11,"favourites_count":977,"statuses_count":2839,"created_at":"Sun Mar 15 08:10:08 +0000 2009","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"051C26","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/855995001\/484ee5f4018ccbd009a18f0086ad5d69.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/855995001\/484ee5f4018ccbd009a18f0086ad5d69.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/770057485411647489\/kyU46vHZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/770057485411647489\/kyU46vHZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24501851\/1437784046","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"Twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[12,20]},{"screen_name":"TwitterSupport","name":"Twitter Support","id":17874544,"id_str":"17874544","indices":[21,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 13:56:34 +0000 2017","id":930796672229232640,"id_str":"930796672229232640","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":846355122573709312,"id_str":"846355122573709312","name":"Maria dibenedetto","screen_name":"Mariadibenede17","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":30,"listed_count":0,"favourites_count":1,"statuses_count":6,"created_at":"Mon Mar 27 13:36:00 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930427882790445056\/_2Ru-cxF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930427882790445056\/_2Ru-cxF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 15 12:07:46 +0000 2017","id":930769292035010560,"id_str":"930769292035010560","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":910258567961350146,"id_str":"910258567961350146","name":"\u0410\u041d\u0410\u0421\u0422\u0410\u0421\u0418\u042f \u0410\u041b\u0415\u041a\u0421\u0415\u0415\u041d\u041a\u041e","screen_name":"9S3KisMX7N1JUzP","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":214,"statuses_count":285,"created_at":"Tue Sep 19 21:45:29 +0000 2017","utc_offset":10800,"time_zone":"Volgograd","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910264930338791427\/WRPJOS3T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910264930338791427\/WRPJOS3T_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 23:41:12 +0000 2017","id":930581412977131520,"id_str":"930581412977131520","text":"@TwitterDev @Javi @iCONLinux @TwitterAPI \ud83e\udd14\ud83d\ude36\ud83d\ude44","display_text_range":[41,44],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930468938550513665,"in_reply_to_status_id_str":"930468938550513665","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":43915380,"id_str":"43915380","name":"Nacho Soto","screen_name":"NachoSoto","location":"San Francisco, CA","url":"https:\/\/youtube.com\/user\/n4x3t3","description":"That perfection is unattainable is no excuse not to strive for it. @KhanAcademy @ElevateLabs @watch_chess \ud83d\udcf1\uf8ff's 2014 App of the Year \ud83d\udee9 Instrument Rated Pilot","translator_type":"regular","protected":false,"verified":false,"followers_count":6030,"friends_count":759,"listed_count":420,"favourites_count":83817,"statuses_count":54419,"created_at":"Mon Jun 01 16:31:37 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/888820890917588992\/UHo8-kEo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/888820890917588992\/UHo8-kEo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43915380\/1497395959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5a110d312052166f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5a110d312052166f.json","place_type":"city","name":"San Francisco","full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"Javi","name":"Javi","id":7213362,"id_str":"7213362","indices":[12,17]},{"screen_name":"iCONLinux","name":"Andreas","id":1633992354,"id_str":"1633992354","indices":[18,28]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[29,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 22:58:27 +0000 2017","id":930570651638808576,"id_str":"930570651638808576","text":"@TwitterDev @WeSabio @TwitterLA @ryan_a_bell @Jorge_Distress awesome, will share with our large, and ever growing,\u2026 https:\/\/t.co\/pfJ7m7Mwmb","display_text_range":[61,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":930550970668462081,"in_reply_to_status_id_str":"930550970668462081","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":243665363,"id_str":"243665363","name":"Liliana Aide Monge","screen_name":"mongeliliana","location":"Earth","url":null,"description":"Co-Founder of the best coding bootcamp @wesabio #LearnToCode #CodingBootcamp #longLA","translator_type":"none","protected":false,"verified":false,"followers_count":2965,"friends_count":5001,"listed_count":539,"favourites_count":49685,"statuses_count":51857,"created_at":"Thu Jan 27 15:10:03 +0000 2011","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829032549141749760\/hUBzvPxp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829032549141749760\/hUBzvPxp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243665363\/1501109505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev @WeSabio @TwitterLA @ryan_a_bell @Jorge_Distress awesome, will share with our large, and ever growing, developer community at @WeSabio @g8rojas @VicAtSabio","display_text_range":[61,169],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"WeSabio","name":"Sabio","id":874394695,"id_str":"874394695","indices":[12,20]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[21,31]},{"screen_name":"ryan_a_bell","name":"Ryan A Bell Ai AR VR","id":2984872862,"id_str":"2984872862","indices":[32,44]},{"screen_name":"Jorge_Distress","name":"B2C Intern, Sign My Yearbook","id":536960317,"id_str":"536960317","indices":[45,60]},{"screen_name":"WeSabio","name":"Sabio","id":874394695,"id_str":"874394695","indices":[138,146]},{"screen_name":"g8rojas","name":"Gregorio Rojas","id":426155280,"id_str":"426155280","indices":[148,156]},{"screen_name":"VicAtSabio","name":"Victor Campos","id":887102371058171904,"id_str":"887102371058171904","indices":[158,169]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pfJ7m7Mwmb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930570651638808576","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"WeSabio","name":"Sabio","id":874394695,"id_str":"874394695","indices":[12,20]},{"screen_name":"TwitterLA","name":"Twitter LA","id":484495045,"id_str":"484495045","indices":[21,31]},{"screen_name":"ryan_a_bell","name":"Ryan A Bell Ai AR VR","id":2984872862,"id_str":"2984872862","indices":[32,44]},{"screen_name":"Jorge_Distress","name":"B2C Intern, Sign My Yearbook","id":536960317,"id_str":"536960317","indices":[45,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:27:04 +0000 2017","id":930517456682213377,"id_str":"930517456682213377","text":"@TwitterDev @MAJIDADI_KARAMI @TwitterAPI Hey need your help got locked out my other account please","display_text_range":[41,98],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930479119124615168,"in_reply_to_status_id_str":"930479119124615168","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":917562789731938305,"id_str":"917562789731938305","name":"Proud 2 Be American","screen_name":"DoIMakeUWet","location":"SmallTownUSA","url":null,"description":"Proud American\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","translator_type":"none","protected":false,"verified":false,"followers_count":90,"friends_count":259,"listed_count":0,"favourites_count":2206,"statuses_count":222,"created_at":"Tue Oct 10 01:29:51 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925466209994362880\/TiuHzYi8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925466209994362880\/TiuHzYi8_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"MAJIDADI_KARAMI","name":"Usman Idris","id":413672658,"id_str":"413672658","indices":[12,28]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[29,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:12:09 +0000 2017","id":930513702209458176,"id_str":"930513702209458176","text":"@TwitterDev Clicking the Pricing url in the premium APIs email takes me to this page with random user profiles at t\u2026 https:\/\/t.co\/Bhu2Gsxjpz","display_text_range":[0,140],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":47008069,"id_str":"47008069","name":"Russ","screen_name":"Rgre1","location":"San Francisco","url":"http:\/\/grbk.co","description":"Design & photography person \u2728","translator_type":"regular","protected":false,"verified":false,"followers_count":8969,"friends_count":782,"listed_count":41,"favourites_count":4160,"statuses_count":12966,"created_at":"Sun Jun 14 01:48:55 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852788559949946880\/_jP_tMbP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852788559949946880\/_jP_tMbP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47008069\/1443169491","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Clicking the Pricing url in the premium APIs email takes me to this page with random user profiles at the top. https:\/\/t.co\/C7rrRhNDT6","display_text_range":[0,122],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":930513681523335169,"id_str":"930513681523335169","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnZQ2XW4AEpAQ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnZQ2XW4AEpAQ5.jpg","url":"https:\/\/t.co\/C7rrRhNDT6","display_url":"pic.twitter.com\/C7rrRhNDT6","expanded_url":"https:\/\/twitter.com\/Rgre1\/status\/930513702209458176\/photo\/1","type":"photo","sizes":{"small":{"w":314,"h":680,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":2048,"resize":"fit"}}},{"id":930513681523322880,"id_str":"930513681523322880","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnZQ2XWsAAfHrW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnZQ2XWsAAfHrW.jpg","url":"https:\/\/t.co\/C7rrRhNDT6","display_url":"pic.twitter.com\/C7rrRhNDT6","expanded_url":"https:\/\/twitter.com\/Rgre1\/status\/930513702209458176\/photo\/1","type":"photo","sizes":{"small":{"w":314,"h":680,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":930513681523335169,"id_str":"930513681523335169","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnZQ2XW4AEpAQ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnZQ2XW4AEpAQ5.jpg","url":"https:\/\/t.co\/C7rrRhNDT6","display_url":"pic.twitter.com\/C7rrRhNDT6","expanded_url":"https:\/\/twitter.com\/Rgre1\/status\/930513702209458176\/photo\/1","type":"photo","sizes":{"small":{"w":314,"h":680,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":2048,"resize":"fit"}}},{"id":930513681523322880,"id_str":"930513681523322880","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnZQ2XWsAAfHrW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnZQ2XWsAAfHrW.jpg","url":"https:\/\/t.co\/C7rrRhNDT6","display_url":"pic.twitter.com\/C7rrRhNDT6","expanded_url":"https:\/\/twitter.com\/Rgre1\/status\/930513702209458176\/photo\/1","type":"photo","sizes":{"small":{"w":314,"h":680,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":2048,"resize":"fit"}}}]}},"quote_count":0,"reply_count":2,"retweet_count":0,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Bhu2Gsxjpz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930513702209458176","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:10:19 +0000 2017","id":930513239322054656,"id_str":"930513239322054656","text":"@TwitterDev @TwitterAPI Thanks for the quick fix! \ud83d\ude4c","display_text_range":[24,51],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930512511912341504,"in_reply_to_status_id_str":"930512511912341504","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":45462250,"id_str":"45462250","name":"Leah Becerra","screen_name":"LeahBecerra","location":"Kansas City, MO","url":"http:\/\/leahbecerra.com\/blog","description":"Techy person. Digital empath at @KCStar. Co-host of @IntegrateFM. Formerly @NewsyVideos, @Gizmodo, @OWHnews and @springfieldNL. Mizzou grad. ~Ignores trolls~","translator_type":"none","protected":false,"verified":true,"followers_count":1904,"friends_count":990,"listed_count":104,"favourites_count":4884,"statuses_count":10385,"created_at":"Mon Jun 08 00:42:29 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2395B8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890377453222363136\/X59A5Sbh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890377453222363136\/X59A5Sbh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45462250\/1461366816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"9a974dfc8efb32a0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/9a974dfc8efb32a0.json","place_type":"city","name":"Kansas City","full_name":"Kansas City, MO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-94.733122,38.868002],[-94.733122,39.332095],[-94.385441,39.332095],[-94.385441,38.868002]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:09:19 +0000 2017","id":930512988032962561,"id_str":"930512988032962561","text":"@TwitterDev no worries, thanks!","display_text_range":[12,31],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930512365430427648,"in_reply_to_status_id_str":"930512365430427648","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930508975833051136,"id_str":"930508975833051136","name":"Legendary Analytics Developers","screen_name":"leg_dev","location":"Boston, MA","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Tue Nov 14 18:53:22 +0000 2017","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930510518313541633\/zndhxneD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930510518313541633\/zndhxneD_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:04:58 +0000 2017","id":930511895177629697,"id_str":"930511895177629697","text":"@TwitterDev FYI, bug in widgets.js - undefined \"tfw-preflight\" started showing up in https:\/\/t.co\/2FSbRtnl6e today\u2026 https:\/\/t.co\/CnGT8aD0l0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930508975833051136,"id_str":"930508975833051136","name":"Legendary Analytics Developers","screen_name":"leg_dev","location":"Boston, MA","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Tue Nov 14 18:53:22 +0000 2017","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930510518313541633\/zndhxneD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930510518313541633\/zndhxneD_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev FYI, bug in widgets.js - undefined \"tfw-preflight\" started showing up in https:\/\/t.co\/2FSbRtnl6e today at the top of the file outside of the self executing function, throws \"ReferenceError: tfw is not defined\".","display_text_range":[0,222],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2FSbRtnl6e","expanded_url":"https:\/\/platform.twitter.com\/widgets.js","display_url":"platform.twitter.com\/widgets.js","indices":[85,108]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2FSbRtnl6e","expanded_url":"https:\/\/platform.twitter.com\/widgets.js","display_url":"platform.twitter.com\/widgets.js","indices":[85,108]},{"url":"https:\/\/t.co\/CnGT8aD0l0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930511895177629697","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 19:02:30 +0000 2017","id":930511274034778118,"id_str":"930511274034778118","text":"@TwitterDev Twitter embed isn't working..has anything changed?\n'tfw is not defined'- is that supposed to be comment\u2026 https:\/\/t.co\/2ESBoH8Dgr","display_text_range":[0,140],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":182096686,"id_str":"182096686","name":"Joseph Bona","screen_name":"josephbona","location":"Astoria, Queens","url":"http:\/\/josephbona.com","description":"Front-End Engineer @barstoolsports","translator_type":"none","protected":false,"verified":false,"followers_count":83,"friends_count":74,"listed_count":1,"favourites_count":240,"statuses_count":666,"created_at":"Mon Aug 23 20:39:44 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/885316717630685184\/UUNWdJCS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/885316717630685184\/UUNWdJCS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182096686\/1499910964","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Twitter embed isn't working..has anything changed?\n'tfw is not defined'- is that supposed to be commented out? https:\/\/t.co\/W8t5UiL2aq","display_text_range":[0,122],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":930510887600971779,"id_str":"930510887600971779","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnWuOMW4AMGUdc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnWuOMW4AMGUdc.jpg","url":"https:\/\/t.co\/W8t5UiL2aq","display_url":"pic.twitter.com\/W8t5UiL2aq","expanded_url":"https:\/\/twitter.com\/josephbona\/status\/930511274034778118\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":423,"h":202,"resize":"fit"},"medium":{"w":423,"h":202,"resize":"fit"},"small":{"w":423,"h":202,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":930510887600971779,"id_str":"930510887600971779","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnWuOMW4AMGUdc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnWuOMW4AMGUdc.jpg","url":"https:\/\/t.co\/W8t5UiL2aq","display_url":"pic.twitter.com\/W8t5UiL2aq","expanded_url":"https:\/\/twitter.com\/josephbona\/status\/930511274034778118\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":423,"h":202,"resize":"fit"},"medium":{"w":423,"h":202,"resize":"fit"},"small":{"w":423,"h":202,"resize":"fit"}}}]}},"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2ESBoH8Dgr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930511274034778118","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 18:53:37 +0000 2017","id":930509039523344384,"id_str":"930509039523344384","text":"@TwitterDev @AustinTDC @coderinheels @hector_borras @ImKarthikK @skjsaurabh @sunnat629 @JohnCalistro @abraham Thank you so much","display_text_range":[110,127],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":913123436326658048,"in_reply_to_status_id_str":"913123436326658048","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":784468184304803840,"id_str":"784468184304803840","name":"My new home Au","screen_name":"susan_alicanda","location":"MelbourneVic Australia","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":41,"friends_count":398,"listed_count":0,"favourites_count":74,"statuses_count":367,"created_at":"Fri Oct 07 18:59:24 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/784470164293025792\/egNyVJ8y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/784470164293025792\/egNyVJ8y_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"AustinTDC","name":"Austin TDC","id":834124389671133184,"id_str":"834124389671133184","indices":[12,22]},{"screen_name":"coderinheels","name":"Gen Ashley","id":32330308,"id_str":"32330308","indices":[23,36]},{"screen_name":"hector_borras","name":"H\u00e9ctor Borr\u00e1s \u26a1","id":2814511544,"id_str":"2814511544","indices":[37,51]},{"screen_name":"ImKarthikK","name":"Karthik K","id":18989498,"id_str":"18989498","indices":[52,63]},{"screen_name":"skjsaurabh","name":"skjsaurabh","id":82807465,"id_str":"82807465","indices":[64,75]},{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[76,86]},{"screen_name":"JohnCalistro","name":"John Calistro","id":61053048,"id_str":"61053048","indices":[87,100]},{"screen_name":"abraham","name":"Abraham Williams","id":9436992,"id_str":"9436992","indices":[101,109]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 18:45:42 +0000 2017","id":930507044691492864,"id_str":"930507044691492864","text":"@TwitterDev @AustinTDC @coderinheels @hector_borras @ImKarthikK @skjsaurabh @sunnat629 @JohnCalistro @abraham Wow t\u2026 https:\/\/t.co\/WjgRtapFH4","display_text_range":[110,140],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":913123436326658048,"in_reply_to_status_id_str":"913123436326658048","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":784468184304803840,"id_str":"784468184304803840","name":"My new home Au","screen_name":"susan_alicanda","location":"MelbourneVic Australia","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":41,"friends_count":398,"listed_count":0,"favourites_count":74,"statuses_count":367,"created_at":"Fri Oct 07 18:59:24 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/784470164293025792\/egNyVJ8y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/784470164293025792\/egNyVJ8y_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev @AustinTDC @coderinheels @hector_borras @ImKarthikK @skjsaurabh @sunnat629 @JohnCalistro @abraham Wow thank you \nIm thingking for this new twitter Dev.. lots of things you can learned here As Developer \nThank you","display_text_range":[110,227],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"AustinTDC","name":"Austin TDC","id":834124389671133184,"id_str":"834124389671133184","indices":[12,22]},{"screen_name":"coderinheels","name":"Gen Ashley","id":32330308,"id_str":"32330308","indices":[23,36]},{"screen_name":"hector_borras","name":"H\u00e9ctor Borr\u00e1s \u26a1","id":2814511544,"id_str":"2814511544","indices":[37,51]},{"screen_name":"ImKarthikK","name":"Karthik K","id":18989498,"id_str":"18989498","indices":[52,63]},{"screen_name":"skjsaurabh","name":"skjsaurabh","id":82807465,"id_str":"82807465","indices":[64,75]},{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[76,86]},{"screen_name":"JohnCalistro","name":"John Calistro","id":61053048,"id_str":"61053048","indices":[87,100]},{"screen_name":"abraham","name":"Abraham Williams","id":9436992,"id_str":"9436992","indices":[101,109]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WjgRtapFH4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930507044691492864","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"AustinTDC","name":"Austin TDC","id":834124389671133184,"id_str":"834124389671133184","indices":[12,22]},{"screen_name":"coderinheels","name":"Gen Ashley","id":32330308,"id_str":"32330308","indices":[23,36]},{"screen_name":"hector_borras","name":"H\u00e9ctor Borr\u00e1s \u26a1","id":2814511544,"id_str":"2814511544","indices":[37,51]},{"screen_name":"ImKarthikK","name":"Karthik K","id":18989498,"id_str":"18989498","indices":[52,63]},{"screen_name":"skjsaurabh","name":"skjsaurabh","id":82807465,"id_str":"82807465","indices":[64,75]},{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[76,86]},{"screen_name":"JohnCalistro","name":"John Calistro","id":61053048,"id_str":"61053048","indices":[87,100]},{"screen_name":"abraham","name":"Abraham Williams","id":9436992,"id_str":"9436992","indices":[101,109]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 18:40:03 +0000 2017","id":930505623619301376,"id_str":"930505623619301376","text":"@TwitterDev","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":784468184304803840,"id_str":"784468184304803840","name":"My new home Au","screen_name":"susan_alicanda","location":"MelbourneVic Australia","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":41,"friends_count":398,"listed_count":0,"favourites_count":74,"statuses_count":367,"created_at":"Fri Oct 07 18:59:24 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/784470164293025792\/egNyVJ8y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/784470164293025792\/egNyVJ8y_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:52:48 +0000 2017","id":930493732083859456,"id_str":"930493732083859456","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":1004728604,"id_str":"1004728604","name":"darek kuczwar","screen_name":"kuczwar","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":16,"listed_count":0,"favourites_count":1,"statuses_count":48,"created_at":"Tue Dec 11 19:34:51 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:49:42 +0000 2017","id":930492951872049154,"id_str":"930492951872049154","text":"@TwitterDev Your docs are broken \u2014 a bad `overflow:hidden` somewhere?\nhttps:\/\/t.co\/ZAohcDFCo0 https:\/\/t.co\/gVHH2tf0yk","display_text_range":[0,93],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":18492435,"id_str":"18492435","name":"iest","screen_name":"_iest","location":"Foggy London Town","url":"http:\/\/iest.co","description":"drink coffee, drive fast, make internet for @citymapper","translator_type":"none","protected":false,"verified":false,"followers_count":744,"friends_count":547,"listed_count":64,"favourites_count":6872,"statuses_count":10689,"created_at":"Tue Dec 30 23:36:35 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/774218912\/5dacd004927da04b74e271b176c3dee0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/774218912\/5dacd004927da04b74e271b176c3dee0.png","profile_background_tile":true,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/761493050535342081\/hnblJjZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/761493050535342081\/hnblJjZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18492435\/1491318508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZAohcDFCo0","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/tweets\/data-dictionary\/overview\/tweet-object","display_url":"developer.twitter.com\/en\/docs\/tweets\u2026","indices":[70,93]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":930492842497204225,"id_str":"930492842497204225","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnGT28W4AEvghc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnGT28W4AEvghc.jpg","url":"https:\/\/t.co\/gVHH2tf0yk","display_url":"pic.twitter.com\/gVHH2tf0yk","expanded_url":"https:\/\/twitter.com\/_iest\/status\/930492951872049154\/photo\/1","type":"photo","sizes":{"large":{"w":702,"h":176,"resize":"fit"},"medium":{"w":702,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":930492842497204225,"id_str":"930492842497204225","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/DOnGT28W4AEvghc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOnGT28W4AEvghc.jpg","url":"https:\/\/t.co\/gVHH2tf0yk","display_url":"pic.twitter.com\/gVHH2tf0yk","expanded_url":"https:\/\/twitter.com\/_iest\/status\/930492951872049154\/photo\/1","type":"photo","sizes":{"large":{"w":702,"h":176,"resize":"fit"},"medium":{"w":702,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:43:55 +0000 2017","id":930491497937559553,"id_str":"930491497937559553","text":"@TwitterDev A suggestion for you... a automatic scrolling page button to see our twitter feed without hands","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":4845793036,"id_str":"4845793036","name":"Benoit Taillon","screen_name":"BenoitTaillon","location":null,"url":null,"description":"Observer, lire et surtout respecter ce que les autres ont \u00e0 dire...et ce \u00e0 temps partiel.\nTemps plein: agriculteur certifi\u00e9 bio et fier de l'\u00eatre !","translator_type":"none","protected":false,"verified":false,"followers_count":32,"friends_count":205,"listed_count":1,"favourites_count":1057,"statuses_count":1889,"created_at":"Mon Jan 25 14:38:01 +0000 2016","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775858237694414848\/jIVbUh9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775858237694414848\/jIVbUh9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4845793036\/1485810483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:36:48 +0000 2017","id":930489705413693440,"id_str":"930489705413693440","text":"@TwitterDev So no polls for people using blind-friendly Twitter clients like @theqube_dev and @tw_blue2? @TwitterAPI","display_text_range":[12,116],"source":"\u003ca href=\"http:\/\/theqube.oire.org\/\" rel=\"nofollow\"\u003eTheQube\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930488817475256320,"in_reply_to_status_id_str":"930488817475256320","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":44681458,"id_str":"44681458","name":"Menelion Elens\u00fal\u00eb","screen_name":"m_elensule","location":"Cherkassy, Ukraine","url":"http:\/\/oire.me\/","description":"Married, happy. Geek; i18n and a11y specialist; Pagan\/Heathen; like languages, magic, books and my country. \u0441\u043b\u0430\u0432\u0430 \u0423\u043a\u0440\u0430\u0457\u043d\u0456!","translator_type":"regular","protected":false,"verified":false,"followers_count":1379,"friends_count":1441,"listed_count":105,"favourites_count":88,"statuses_count":38811,"created_at":"Thu Jun 04 18:26:04 +0000 2009","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"uk","contributors_enabled":false,"is_translator":false,"profile_background_color":"08457E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/68300983\/black17.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/68300983\/black17.jpg","profile_background_tile":true,"profile_link_color":"212121","profile_sidebar_border_color":"08457E","profile_sidebar_fill_color":"636363","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505093929365037056\/QZoGmsHl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505093929365037056\/QZoGmsHl_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"theqube_dev","name":"TheQube Client","id":2788900323,"id_str":"2788900323","indices":[77,89]},{"screen_name":"tw_blue2","name":"TWBlue Official","id":2265337470,"id_str":"2265337470","indices":[94,103]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[105,116]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 17:26:56 +0000 2017","id":930487225246027776,"id_str":"930487225246027776","text":"@TwitterDev @anonshiv @TwitterAPI Hah hah no.","display_text_range":[34,45],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930485035127500800,"in_reply_to_status_id_str":"930485035127500800","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":4254951,"id_str":"4254951","name":"Jef Poskanzer","screen_name":"jef_poskanzer","location":"Berkeley CA","url":"http:\/\/acme.com\/jef\/","description":"It was on fire when I got here.","translator_type":"none","protected":false,"verified":false,"followers_count":1442,"friends_count":2696,"listed_count":116,"favourites_count":25134,"statuses_count":63843,"created_at":"Wed Apr 11 22:38:47 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"99CC99","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/2701324\/a.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/2701324\/a.gif","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"00FF00","profile_sidebar_fill_color":"CDCD99","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848036990796812288\/Kfj3s5OL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848036990796812288\/Kfj3s5OL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4254951\/1369245275","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5ef5b7f391e30aff","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5ef5b7f391e30aff.json","place_type":"city","name":"Berkeley","full_name":"Berkeley, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.324818,37.845953],[-122.324818,37.905738],[-122.234225,37.905738],[-122.234225,37.845953]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"anonshiv","name":"Anon Shiv","id":137814652,"id_str":"137814652","indices":[12,21]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[22,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:39:27 +0000 2017","id":930475275464429568,"id_str":"930475275464429568","text":"@TwitterDev Hi thank you for your e-mail\n\nCAN YOU DO SOMETHING GREAT FOR A TINY GROUP ?\nhttps:\/\/t.co\/Okw1436by4\u2026 https:\/\/t.co\/3IV8bQ2Tjn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3296404864,"id_str":"3296404864","name":"Heliotorr SpaceXR","screen_name":"AlliedSpaceXR","location":"Pasadena, CA","url":"http:\/\/www.glycanspacexr-agency.com","description":"High temperature plasma chemistry","translator_type":"none","protected":false,"verified":false,"followers_count":104,"friends_count":719,"listed_count":4,"favourites_count":3,"statuses_count":696,"created_at":"Sun May 24 10:10:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/701727387176849409\/cMHx8OcW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/701727387176849409\/cMHx8OcW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3296404864\/1435163818","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Hi thank you for your e-mail\n\nCAN YOU DO SOMETHING GREAT FOR A TINY GROUP ?\nhttps:\/\/t.co\/Okw1436by4 \nin order to capt the attention of ESA and NASA JPL-DARPA-IARPA-NIAC\nthanks a lot\nChristian Daniel \nPresident \nGlycanSpaceXR-HeliotorrLLC CA","display_text_range":[0,258],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Okw1436by4","expanded_url":"http:\/\/www.glycanspaceXR-Agency.com","display_url":"glycanspaceXR-Agency.com","indices":[91,114]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Okw1436by4","expanded_url":"http:\/\/www.glycanspaceXR-Agency.com","display_url":"glycanspaceXR-Agency.com","indices":[91,114]},{"url":"https:\/\/t.co\/3IV8bQ2Tjn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930475275464429568","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 16:25:26 +0000 2017","id":930471745424850944,"id_str":"930471745424850944","text":"@TwitterDev @TwitterAPI This is ridiculous...","display_text_range":[24,45],"source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930468938550513665,"in_reply_to_status_id_str":"930468938550513665","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":1633992354,"id_str":"1633992354","name":"Andreas","screen_name":"iCONLinux","location":"Bayern, Deutschland","url":"http:\/\/wiidatabase.de","description":"Creator of the @WiiDatabase, Germany's #1 Nintendo homebrew site. This is a private account.","translator_type":"none","protected":false,"verified":false,"followers_count":176,"friends_count":415,"listed_count":7,"favourites_count":4344,"statuses_count":8949,"created_at":"Tue Jul 30 23:01:53 +0000 2013","utc_offset":3600,"time_zone":"Bern","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"4D7AB1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/431897441109950464\/D2k4-sFd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/431897441109950464\/D2k4-sFd.jpeg","profile_background_tile":false,"profile_link_color":"1C437E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488306538394554368\/vvd-BF93_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488306538394554368\/vvd-BF93_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1633992354\/1464533739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":1,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 15:40:21 +0000 2017","id":930460400377876480,"id_str":"930460400377876480","text":"@TwitterDev @bmacias93 Good","display_text_range":[23,27],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930102825710903298,"in_reply_to_status_id_str":"930102825710903298","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":929629175270473728,"id_str":"929629175270473728","name":"maisala zandy","screen_name":"maisala8","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":60,"friends_count":196,"listed_count":0,"favourites_count":6,"statuses_count":32,"created_at":"Sun Nov 12 08:37:21 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929942465632710656\/KbRXDqPE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929942465632710656\/KbRXDqPE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"bmacias93","name":"Bryan","id":210671989,"id_str":"210671989","indices":[12,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 09:01:43 +0000 2017","id":930360083569168385,"id_str":"930360083569168385","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3396413740,"id_str":"3396413740","name":"herik dannehl","screen_name":"kogamanem","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":744,"friends_count":3081,"listed_count":1,"favourites_count":120,"statuses_count":302,"created_at":"Fri Jul 31 00:07:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626907844768591873\/NYZisfT__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626907844768591873\/NYZisfT__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 07:07:15 +0000 2017","id":930331276338327553,"id_str":"930331276338327553","text":"@TwitterDev So, I cannot login with the username... Please let me know how to find my username.. I can give you my\u2026 https:\/\/t.co\/sxgm51PPJn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":67545576,"id_str":"67545576","name":"chris","screen_name":"chriskim777","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":7,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":4,"created_at":"Fri Aug 21 06:39:11 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev So, I cannot login with the username... Please let me know how to find my username.. I can give you my api key (api key : U6w1BzEeeeDKEmEz8KReQ). Please help me asap.","display_text_range":[0,179],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sxgm51PPJn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930331276338327553","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 07:07:04 +0000 2017","id":930331230867881986,"id_str":"930331230867881986","text":"@TwitterDev Hi, I'm developer. I have a problem. I lost my username. The username is for development, different\u2026 https:\/\/t.co\/xjamUEI2Lh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":67545576,"id_str":"67545576","name":"chris","screen_name":"chriskim777","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":7,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":4,"created_at":"Fri Aug 21 06:39:11 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Hi, I'm developer. I have a problem. I lost my username. The username is for development, different with current username(chriskim17).","display_text_range":[0,150],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xjamUEI2Lh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930331230867881986","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 04:24:39 +0000 2017","id":930290355953717248,"id_str":"930290355953717248","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":910908038495723520,"id_str":"910908038495723520","name":"\u5353\u5de7\u8587","screen_name":"cw120818","location":"\u6843\u5712\u7e23, \u53f0\u7063","url":null,"description":"\u6b61\u8fce\u6709\u5c0f\u5c0f\u5b69\u7684\u5abd\u54aa\u4f86\u591a\u591a\u4ea4\u6d41\u80b2\u5152\u7d93","translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":140,"listed_count":0,"favourites_count":2,"statuses_count":5,"created_at":"Thu Sep 21 16:46:15 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930559689674420225\/1XVcQZ1L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930559689674420225\/1XVcQZ1L_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Tue Nov 14 02:37:24 +0000 2017","id":930263366421090305,"id_str":"930263366421090305","text":"@TwitterDev is there any official channel for issues on Twitter libraries?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":15359622,"id_str":"15359622","name":"Gus Fune","screen_name":"gusfune","location":"on tour.","url":"http:\/\/epicawesome.co\/","description":"tech savvy, early-adopter, killer panda, party-hunter, bleak, underground, apparently alive and constantly sleepless. Game Journalist, Developer & Coffee Addict","translator_type":"none","protected":false,"verified":false,"followers_count":2250,"friends_count":327,"listed_count":96,"favourites_count":83,"statuses_count":26439,"created_at":"Tue Jul 08 23:33:26 +0000 2008","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/57976860\/080702_winning_plaid.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/57976860\/080702_winning_plaid.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/870018973898874881\/PNGcoGuq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870018973898874881\/PNGcoGuq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15359622\/1399520761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 21:25:20 +0000 2017","id":930184831929081862,"id_str":"930184831929081862","text":"@TwitterDev Change is a coming!!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":71748229,"id_str":"71748229","name":"duncan burgess","screen_name":"duncanburgess","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":23,"friends_count":381,"listed_count":0,"favourites_count":7,"statuses_count":20,"created_at":"Sat Sep 05 07:06:19 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/886101510861590528\/hT5om0Oz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/886101510861590528\/hT5om0Oz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71748229\/1500098076","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 21:15:32 +0000 2017","id":930182363572817921,"id_str":"930182363572817921","text":"@TwitterDev Could you explain why most of my tweets don't have a media entity in the API even though all my tweets\u2026 https:\/\/t.co\/6ZnZwiB7sZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":2365667288,"id_str":"2365667288","name":"Jake P","screen_name":"pleth42","location":"Maine","url":"http:\/\/jakeparis.com","description":"Web Developer, Musician, more...","translator_type":"none","protected":false,"verified":false,"followers_count":39,"friends_count":80,"listed_count":3,"favourites_count":37,"statuses_count":220,"created_at":"Fri Feb 28 14:15:54 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461637941773627393\/FCdz8sal_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461637941773627393\/FCdz8sal_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2365667288\/1395360231","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev Could you explain why most of my tweets don't have a media entity in the API even though all my tweets have media? This is for BatesCollege, not me. Don't see anything applicable in the Docs. Thanks!","display_text_range":[0,211],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6ZnZwiB7sZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/930182363572817921","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 16:01:06 +0000 2017","id":930103233732923392,"id_str":"930103233732923392","text":"@TwitterDev oh, cool... thank you for your kind response","display_text_range":[12,56],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":930102825710903298,"in_reply_to_status_id_str":"930102825710903298","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":210671989,"id_str":"210671989","name":"Bryan","screen_name":"bmacias93","location":"Guayaquil, Ecuador","url":"https:\/\/www.instagram.com\/chachos93","description":"Cristiano. Desarrollador de software. Hijo. Amigo.","translator_type":"regular","protected":false,"verified":false,"followers_count":268,"friends_count":205,"listed_count":8,"favourites_count":423,"statuses_count":15383,"created_at":"Mon Nov 01 01:26:32 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928120389892562944\/IDfdiOmP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928120389892562944\/IDfdiOmP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210671989\/1510628344","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 15:43:24 +0000 2017","id":930098780539559936,"id_str":"930098780539559936","text":"@TwitterDev @sunnat629 https:\/\/t.co\/gPBQUf8Wjz","display_text_range":[23,23],"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":929066446583418880,"in_reply_to_status_id_str":"929066446583418880","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930094627197132806,"id_str":"930094627197132806","name":"Hosombat","screen_name":"Hosombat3","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":1,"statuses_count":8,"created_at":"Mon Nov 13 15:26:54 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"sunnat629","name":"S M Mohi Us Sunnat","id":130175843,"id_str":"130175843","indices":[12,22]}],"symbols":[],"media":[{"id":930098762696966145,"id_str":"930098762696966145","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/DOhf5ZSVQAEQ5Rr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOhf5ZSVQAEQ5Rr.jpg","url":"https:\/\/t.co\/gPBQUf8Wjz","display_url":"pic.twitter.com\/gPBQUf8Wjz","expanded_url":"https:\/\/twitter.com\/Hosombat3\/status\/930098780539559936\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":930098762696966145,"id_str":"930098762696966145","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/DOhf5ZSVQAEQ5Rr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOhf5ZSVQAEQ5Rr.jpg","url":"https:\/\/t.co\/gPBQUf8Wjz","display_url":"pic.twitter.com\/gPBQUf8Wjz","expanded_url":"https:\/\/twitter.com\/Hosombat3\/status\/930098780539559936\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 14:42:11 +0000 2017","id":930083376954003457,"id_str":"930083376954003457","text":"@TwitterDev blog: https:\/\/t.co\/asFo8BuOjx https:\/\/t.co\/OO3zRdLQ6x","display_text_range":[0,42],"source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":919124369644969984,"id_str":"919124369644969984","name":"Multiservice_Zaouya","screen_name":"Multiservices_Z","location":"F\u00e8s M\u00e9dina, Royaume du Maroc","url":"http:\/\/www.multiservices-zaouya-08.webself.net","description":"\ud83d\ude98Transport Touristique","translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":5,"statuses_count":13,"created_at":"Sat Oct 14 08:55:01 +0000 2017","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/919136079470628864\/8DimoSpl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/919136079470628864\/8DimoSpl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/919124369644969984\/1507974454","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"81c3b72db6ba66ed","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/81c3b72db6ba66ed.json","place_type":"city","name":"Fez Medina","full_name":"Fez Medina, Morocco","country_code":"MA","country":"Morocco","bounding_box":{"type":"Polygon","coordinates":[[[-4.991033,34.050369],[-4.991033,34.071534],[-4.959614,34.071534],[-4.959614,34.050369]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/asFo8BuOjx","expanded_url":"http:\/\/www.multeservices-zaouya-08.webself.net","display_url":"multeservices-zaouya-08.webself.net","indices":[19,42]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[],"media":[{"id":930083151317295104,"id_str":"930083151317295104","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/DOhRssXX4AAN64Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOhRssXX4AAN64Q.jpg","url":"https:\/\/t.co\/OO3zRdLQ6x","display_url":"pic.twitter.com\/OO3zRdLQ6x","expanded_url":"https:\/\/twitter.com\/Multiservices_Z\/status\/930083376954003457\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":421,"resize":"fit"},"large":{"w":1110,"h":688,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1110,"h":688,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":930083151317295104,"id_str":"930083151317295104","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/DOhRssXX4AAN64Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/DOhRssXX4AAN64Q.jpg","url":"https:\/\/t.co\/OO3zRdLQ6x","display_url":"pic.twitter.com\/OO3zRdLQ6x","expanded_url":"https:\/\/twitter.com\/Multiservices_Z\/status\/930083376954003457\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":421,"resize":"fit"},"large":{"w":1110,"h":688,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1110,"h":688,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 14:24:48 +0000 2017","id":930078999396671489,"id_str":"930078999396671489","text":"@TwitterDev @juanshishido Please help! https:\/\/t.co\/u8rN1aKc1q","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":85592723,"id_str":"85592723","name":"Pushkr","screen_name":"Pushkr","location":null,"url":"https:\/\/www.flickr.com\/photos\/pushkargujar\/","description":"Programmer, Photographer, Books & Art lover.","translator_type":"regular","protected":false,"verified":false,"followers_count":115,"friends_count":137,"listed_count":2,"favourites_count":231,"statuses_count":247,"created_at":"Tue Oct 27 15:30:51 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/481458553715052545\/uTRtyhi6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/481458553715052545\/uTRtyhi6.jpeg","profile_background_tile":true,"profile_link_color":"0AB6C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461694904033214465\/XHHPypqR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461694904033214465\/XHHPypqR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85592723\/1397437605","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/u8rN1aKc1q","expanded_url":"https:\/\/twittercommunity.com\/t\/discrepancy-in-stats-in-webui-and-apis\/96430","display_url":"twittercommunity.com\/t\/discrepancy-\u2026","indices":[39,62]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"juanshishido","name":"this mf","id":2417045708,"id_str":"2417045708","indices":[12,25]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 13:17:16 +0000 2017","id":930062006685716480,"id_str":"930062006685716480","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930057231546159104,"id_str":"930057231546159104","name":"Billy Sullind","screen_name":"BSullind","location":"Clemmons nc","url":null,"description":"Love my wife","translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":1,"statuses_count":4,"created_at":"Mon Nov 13 12:58:18 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930058114979762177\/z4sCrkV7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930058114979762177\/z4sCrkV7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930057231546159104\/1510578110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 10:45:55 +0000 2017","id":930023918936535040,"id_str":"930023918936535040","text":"@TwitterDev @TwitterAPI https:\/\/t.co\/rc5tkaeINY","display_text_range":[24,47],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":928004856455090176,"in_reply_to_status_id_str":"928004856455090176","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":894315860021485568,"id_str":"894315860021485568","name":"WarnOfTheLeftAgenda","screen_name":"warn_of","location":"Pacific NW","url":null,"description":"A working married father middle class human just like most of us, just want us all to be free secure happy. @TruthFactoryCat","translator_type":"none","protected":false,"verified":false,"followers_count":432,"friends_count":983,"listed_count":0,"favourites_count":85,"statuses_count":2287,"created_at":"Sun Aug 06 21:54:51 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897386319306932224\/pVe9I5OE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897386319306932224\/pVe9I5OE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/894315860021485568\/1502788775","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rc5tkaeINY","expanded_url":"https:\/\/youtu.be\/20Bqyv7XCOo","display_url":"youtu.be\/20Bqyv7XCOo","indices":[24,47]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 09:52:23 +0000 2017","id":930010446937120773,"id_str":"930010446937120773","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":930009256224546816,"id_str":"930009256224546816","name":"hatim mxa","screen_name":"hmixa07","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":44,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 13 09:47:40 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 02:01:14 +0000 2017","id":929891878031503360,"id_str":"929891878031503360","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":854892739456106496,"id_str":"854892739456106496","name":"El Mundo La MyE","screen_name":"ElleLawlietL1","location":"Ciudad Aut\u00f3noma de Buenos Aire","url":"https:\/\/zipsalinasmarketing.blogspot.com.ar\/","description":"FacebooK: El Mundo, La Musica y El Expectaculo \/ Instagram: elmundo.lamusicayelexpectaculo Formulario de consultas : (En el Blog)","translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":9,"created_at":"Thu Apr 20 03:01:27 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925103130844520452\/582G8m8I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925103130844520452\/582G8m8I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/854892739456106496\/1510863013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 13 01:58:32 +0000 2017","id":929891195106545664,"id_str":"929891195106545664","text":"@TwitterDev how can i edit list's members in android?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":74797902,"id_str":"74797902","name":"duartedrumond","screen_name":"duartedrumond","location":"omnipresente","url":null,"description":"12\/7\/1995 - ...","translator_type":"none","protected":false,"verified":false,"followers_count":189,"friends_count":226,"listed_count":16,"favourites_count":258,"statuses_count":8061,"created_at":"Wed Sep 16 18:19:57 +0000 2009","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/902289826921283588\/29vEAXbD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/902289826921283588\/29vEAXbD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74797902\/1483925838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 22:56:52 +0000 2017","id":929845480669962240,"id_str":"929845480669962240","text":"@TwitterDev is there going to be an update to the Mac app? I still have the old character limits","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":950230838,"id_str":"950230838","name":"Serign Jobe","screen_name":"onemancipher","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":872,"friends_count":1302,"listed_count":8,"favourites_count":995,"statuses_count":2886,"created_at":"Thu Nov 15 18:22:03 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2853157547\/eb980d762da13e6fded34ef19edd9d2f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2853157547\/eb980d762da13e6fded34ef19edd9d2f_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 21:38:00 +0000 2017","id":929825631860293635,"id_str":"929825631860293635","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":891031207286276096,"id_str":"891031207286276096","name":"\u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u0411\u044b\u0447\u043a\u043e\u0432","screen_name":"a8468579","location":"\u0423\u043a\u0440\u0430\u0438\u043d\u0430","url":"https:\/\/www.youtube.com\/channel\/UCWQqNB4uLsB8F1qxeYPYAlw","description":"\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u043b \u041a\u042d\u041c\u0422, \u043f\u043e\u0441\u0442\u0443\u043f\u0438\u043b \u041c\u0410\u0423\u041f","translator_type":"none","protected":false,"verified":false,"followers_count":20,"friends_count":169,"listed_count":1,"favourites_count":313,"statuses_count":767,"created_at":"Fri Jul 28 20:22:49 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/895020023407935488\/AR-SnkrR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/895020023407935488\/AR-SnkrR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891031207286276096\/1502218734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 21:30:50 +0000 2017","id":929823829538541568,"id_str":"929823829538541568","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":923287130939502592,"id_str":"923287130939502592","name":"quentin","screen_name":"quentinsnipes","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":3,"friends_count":59,"listed_count":0,"favourites_count":0,"statuses_count":43,"created_at":"Wed Oct 25 20:36:20 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 20:53:25 +0000 2017","id":929814410452963329,"id_str":"929814410452963329","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":881229018883907585,"id_str":"881229018883907585","name":"Hana\u010dka","screen_name":"hanacka_shop","location":"Olomouck\u00fd, \u010cesk\u00e1 republika","url":"http:\/\/www.hanacka-shop.cz","description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":76,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Sat Jul 01 19:12:25 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"cs","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929807015702155264\/X1VlR2a8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929807015702155264\/X1VlR2a8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881229018883907585\/1510518224","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 20:44:38 +0000 2017","id":929812201334026240,"id_str":"929812201334026240","text":"@TwitterDev \u0644\u0627 \u0634\u064a\u0621","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":929728884467273730,"id_str":"929728884467273730","name":"right way","screen_name":"rightJ_K6way","location":"Turkey","url":null,"description":"\ud83e\udd32\ud83d\uded0","translator_type":"none","protected":false,"verified":false,"followers_count":5,"friends_count":82,"listed_count":0,"favourites_count":0,"statuses_count":8,"created_at":"Sun Nov 12 15:13:34 +0000 2017","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/932015314392551424\/LSeONv-4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/932015314392551424\/LSeONv-4_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 20:34:28 +0000 2017","id":929809643743870977,"id_str":"929809643743870977","text":"@TwitterDev","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":928707889333760000,"id_str":"928707889333760000","name":"djouablia","screen_name":"djouablia6","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":106,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Thu Nov 09 19:36:30 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 19:20:12 +0000 2017","id":929790952025284609,"id_str":"929790952025284609","text":"@TwitterDev <a href=\"https:\/\/t.co\/Xd3KKLQ6m0\" class=\"twitter-mention-button\" data-show-count=\"false\">Tweet to\u2026 https:\/\/t.co\/qYv5cQ428A","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":883402550094872576,"id_str":"883402550094872576","name":"Rafek","screen_name":"Blumennektar","location":"Egypt","url":null,"description":null,"translator_type":"regular","protected":false,"verified":false,"followers_count":1,"friends_count":19,"listed_count":0,"favourites_count":54,"statuses_count":24,"created_at":"Fri Jul 07 19:09:15 +0000 2017","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929157689216774144\/Z5QqCN8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929157689216774144\/Z5QqCN8q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/883402550094872576\/1510365063","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev <a href=\"https:\/\/t.co\/Xd3KKLQ6m0\" class=\"twitter-mention-button\" data-show-count=\"false\">Tweet to @TwitterDev<\/a><script async src=\"https:\/\/t.co\/hZzyhwEp8X\" charset=\"utf-8\"><\/script>","display_text_range":[0,218],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Xd3KKLQ6m0","expanded_url":"https:\/\/twitter.com\/intent\/tweet?screen_name=TwitterDev&ref_src=twsrc%5Etfw","display_url":"twitter.com\/intent\/tweet?s\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/hZzyhwEp8X","expanded_url":"https:\/\/platform.twitter.com\/widgets.js","display_url":"platform.twitter.com\/widgets.js","indices":[159,182]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[116,127]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Xd3KKLQ6m0","expanded_url":"https:\/\/twitter.com\/intent\/tweet?screen_name=TwitterDev&ref_src=twsrc%5Etfw","display_url":"twitter.com\/intent\/tweet?s\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/qYv5cQ428A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/929790952025284609","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 16:50:49 +0000 2017","id":929753359279632386,"id_str":"929753359279632386","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":929752034596806656,"id_str":"929752034596806656","name":"CarnitaYT","screen_name":"CarnitaSergiu","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":117,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Sun Nov 12 16:45:33 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ro","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 15:36:15 +0000 2017","id":929734593594392578,"id_str":"929734593594392578","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":2981201014,"id_str":"2981201014","name":"\u0421\u0435\u0440\u0433\u0435\u0439 \u041c\u0435\u043b\u044c\u043d\u0438\u043a","screen_name":"serj00072","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":4,"friends_count":24,"listed_count":0,"favourites_count":1,"statuses_count":19,"created_at":"Fri Jan 16 14:19:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 15:35:29 +0000 2017","id":929734400807387136,"id_str":"929734400807387136","text":"@TwitterDev","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":929728289823866881,"id_str":"929728289823866881","name":"Ta xuan thieu","screen_name":"Taxuanthieu1","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":2,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":4,"created_at":"Sun Nov 12 15:11:12 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":1,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 09:35:35 +0000 2017","id":929643828868296704,"id_str":"929643828868296704","text":"@TwitterDev @TwitterAPI We love peace.","display_text_range":[24,38],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":928004856455090176,"in_reply_to_status_id_str":"928004856455090176","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":913270740606058496,"id_str":"913270740606058496","name":"Actress","screen_name":"girl_cute___","location":"Sydney, New South Wales","url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":11,"friends_count":78,"listed_count":0,"favourites_count":3,"statuses_count":75,"created_at":"Thu Sep 28 05:14:47 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-CN","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930950677534195712\/ATnL5bZ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930950677534195712\/ATnL5bZ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913270740606058496\/1509718402","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"TwitterAPI","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 07:44:51 +0000 2017","id":929615960742309888,"id_str":"929615960742309888","text":"@TwitterDev please let us edit tweets. Tnx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":3179186528,"id_str":"3179186528","name":"Ronald Austria","screen_name":"pilosopuds","location":"National Capital Region","url":"http:\/\/ph.phonebooky.com","description":"I'm crazy enough to think I can change the world, but even crazier to think I can't.","translator_type":"none","protected":false,"verified":false,"followers_count":18,"friends_count":75,"listed_count":1,"favourites_count":166,"statuses_count":221,"created_at":"Wed Apr 29 10:31:21 +0000 2015","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877046580053811200\/jJQV7cv8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877046580053811200\/jJQV7cv8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3179186528\/1490433537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"003d47f62835a9f1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/003d47f62835a9f1.json","place_type":"city","name":"Baguio City","full_name":"Baguio City, Cordillera Admin Region","country_code":"PH","country":"Republic of the Philippines","bounding_box":{"type":"Polygon","coordinates":[[[120.542369,16.365619],[120.542369,16.438941],[120.634512,16.438941],[120.634512,16.365619]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 07:28:10 +0000 2017","id":929611763091492864,"id_str":"929611763091492864","text":"@TwitterDev #FAMBAM!$$$$$$$$$","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":924286124511715328,"id_str":"924286124511715328","name":"Melissa S.N. Shetty","screen_name":"MelissaShetty","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":95,"listed_count":0,"favourites_count":8,"statuses_count":15,"created_at":"Sat Oct 28 14:45:59 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FAMBAM","indices":[12,19]}],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sun Nov 12 02:53:51 +0000 2017","id":929542731390767104,"id_str":"929542731390767104","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":929540631168417792,"id_str":"929540631168417792","name":"maria ines elias","screen_name":"turca789456","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":17,"listed_count":0,"favourites_count":0,"statuses_count":7,"created_at":"Sun Nov 12 02:45:31 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929555005836857345\/jA2faTKh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929555005836857345\/jA2faTKh_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 23:52:56 +0000 2017","id":929497202392748033,"id_str":"929497202392748033","text":"@TwitterDev @Twitter \nThe latest version of #Twitter for #Android is cashing.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":2428091041,"id_str":"2428091041","name":"Tejas Kadaskar","screen_name":"TejasKadaskar","location":"Pune,India","url":null,"description":"Tweets=personal thoughts|Tech enthusiast|Nature lover|Aspiring counsellor\n|Snapchat\/Instagram ID- tejaskadaskar|\n#MUFC for life","translator_type":"none","protected":false,"verified":false,"followers_count":540,"friends_count":363,"listed_count":15,"favourites_count":4045,"statuses_count":3017,"created_at":"Sat Apr 05 01:20:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/854313540399878144\/63AYpmSR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/854313540399878144\/63AYpmSR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2428091041\/1494201400","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twitter","indices":[44,52]},{"text":"Android","indices":[57,65]}],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"Twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[12,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 20:35:21 +0000 2017","id":929447478130237441,"id_str":"929447478130237441","text":"@TwitterDev","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":928555743409684481,"id_str":"928555743409684481","name":"Noploy","screen_name":"noploy_noploy3","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":68,"listed_count":0,"favourites_count":4,"statuses_count":6,"created_at":"Thu Nov 09 09:31:55 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 18:05:56 +0000 2017","id":929409873787400193,"id_str":"929409873787400193","text":"@TwitterDev https:\/\/t.co\/sIiBIyLv6N","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":922218056113410048,"id_str":"922218056113410048","name":"sofi safi","screen_name":"sofisofiane449","location":"Alg\u00e9rie","url":"http:\/\/www.to3alamnet.com\/","description":"happy new year 2018","translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":127,"listed_count":0,"favourites_count":3,"statuses_count":35,"created_at":"Sun Oct 22 21:48:13 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924018586481561601\/axEkVHDO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924018586481561601\/axEkVHDO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922218056113410048\/1509138215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sIiBIyLv6N","expanded_url":"http:\/\/www.to3alamnet.com","display_url":"to3alamnet.com","indices":[12,35]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 16:51:06 +0000 2017","id":929391043656732676,"id_str":"929391043656732676","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":1004728604,"id_str":"1004728604","name":"darek kuczwar","screen_name":"kuczwar","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":0,"friends_count":16,"listed_count":0,"favourites_count":1,"statuses_count":48,"created_at":"Tue Dec 11 19:34:51 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 15:29:04 +0000 2017","id":929370396566024193,"id_str":"929370396566024193","text":"@TwitterDev @skjsaurabh https:\/\/t.co\/cffzjOqLTg","display_text_range":[24,47],"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":917867461688541184,"in_reply_to_status_id_str":"917867461688541184","in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":929346946090770440,"id_str":"929346946090770440","name":"Ravindra goswami","screen_name":"Ravindra8758","location":"Gujarat, India","url":null,"description":"RV is Death","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":275,"listed_count":0,"favourites_count":0,"statuses_count":69,"created_at":"Sat Nov 11 13:55:53 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929349997274869760\/2XwVTUUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929349997274869760\/2XwVTUUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/929346946090770440\/1510409281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":929351141065760769,"quoted_status_id_str":"929351141065760769","quoted_status":{"created_at":"Sat Nov 11 14:12:33 +0000 2017","id":929351141065760769,"id_str":"929351141065760769","text":"N.1 Me aap ko ye batana chahta hoon k me pollution door kar Sakta hoon aap muje ek chance jarur de sirf ek chance K\u2026 https:\/\/t.co\/AoYokU55zt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":929346946090770440,"id_str":"929346946090770440","name":"Ravindra goswami","screen_name":"Ravindra8758","location":"Gujarat, India","url":null,"description":"RV is Death","translator_type":"none","protected":false,"verified":false,"followers_count":6,"friends_count":275,"listed_count":0,"favourites_count":0,"statuses_count":69,"created_at":"Sat Nov 11 13:55:53 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929349997274869760\/2XwVTUUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929349997274869760\/2XwVTUUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/929346946090770440\/1510409281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"N.1 Me aap ko ye batana chahta hoon k me pollution door kar Sakta hoon aap muje ek chance jarur de sirf ek chance Kya aap pollution door Karna chahte hain to mujhe ek chance jarur de sirf Ek Koshish share jarur kare","display_text_range":[0,216],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AoYokU55zt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/929351141065760769","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cffzjOqLTg","expanded_url":"https:\/\/twitter.com\/Ravindra8758\/status\/929351141065760769","display_url":"twitter.com\/Ravindra8758\/s\u2026","indices":[24,47]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]},{"screen_name":"skjsaurabh","name":"skjsaurabh","id":82807465,"id_str":"82807465","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 05:18:36 +0000 2017","id":929216767485972480,"id_str":"929216767485972480","text":"@TwitterDev https:\/\/t.co\/r0fG8srj8A I can't get this to work at all. It used to work, but I just don't get any resp\u2026 https:\/\/t.co\/omm0aChGxM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":81803040,"id_str":"81803040","name":"lookapanda","screen_name":"loookapanda","location":"\u00d6sterreich","url":"https:\/\/www.lookapanda.de","description":"Software Engineer and Streamer at @smashcast_tv","translator_type":"none","protected":false,"verified":false,"followers_count":161,"friends_count":92,"listed_count":4,"favourites_count":2472,"statuses_count":4810,"created_at":"Mon Oct 12 09:25:35 +0000 2009","utc_offset":3600,"time_zone":"Vienna","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"021F41","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/60951683\/bg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/60951683\/bg.png","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913513672684785665\/-TQtEX3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913513672684785665\/-TQtEX3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81803040\/1498411240","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev https:\/\/t.co\/r0fG8srj8A I can't get this to work at all. It used to work, but I just don't get any response...Is this still up2date? (Using https:\/\/t.co\/3f1Tq09GdG)","display_text_range":[0,176],"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r0fG8srj8A","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/tweets\/filter-realtime\/api-reference\/post-statuses-filter.html","display_url":"developer.twitter.com\/en\/docs\/tweets\u2026","indices":[12,35]},{"url":"https:\/\/t.co\/3f1Tq09GdG","expanded_url":"https:\/\/www.npmjs.com\/package\/twit","display_url":"npmjs.com\/package\/twit","indices":[152,175]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r0fG8srj8A","expanded_url":"https:\/\/developer.twitter.com\/en\/docs\/tweets\/filter-realtime\/api-reference\/post-statuses-filter.html","display_url":"developer.twitter.com\/en\/docs\/tweets\u2026","indices":[12,35]},{"url":"https:\/\/t.co\/omm0aChGxM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/929216767485972480","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 00:26:02 +0000 2017","id":929143141646651398,"id_str":"929143141646651398","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":921653390270193664,"id_str":"921653390270193664","name":"Lester","screen_name":"Lester72992451","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1,"friends_count":92,"listed_count":0,"favourites_count":3,"statuses_count":7,"created_at":"Sat Oct 21 08:24:26 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"","profile_background_image_url_https":"","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 00:23:11 +0000 2017","id":929142423405694976,"id_str":"929142423405694976","text":"@TwitterDev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":904297265971548161,"id_str":"904297265971548161","name":"WBT","screen_name":"WBT86254126","location":"Nigeria","url":"http:\/\/mywealthbuilders.org","description":"Creating Legal Wealth To Eradicate Poverty http:\/\/bit.ly\/2xYVGpS","translator_type":"none","protected":false,"verified":false,"followers_count":68,"friends_count":321,"listed_count":0,"favourites_count":9,"statuses_count":81,"created_at":"Sun Sep 03 10:57:24 +0000 2017","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904320885766672384\/0QEHj6dd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904320885766672384\/0QEHj6dd_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Sat Nov 11 00:15:12 +0000 2017","id":929140416443584512,"id_str":"929140416443584512","text":"@TwitterDev cant figure out who to contact: verify email has a lot of broken links repeating the same text multiple\u2026 https:\/\/t.co\/4SsjkpgO7q","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2244994945,"in_reply_to_user_id_str":"2244994945","in_reply_to_screen_name":"TwitterDev","user":{"id":20359720,"id_str":"20359720","name":"Kyle Keith","screen_name":"kylewkeith","location":"Gresham Oregon","url":"https:\/\/ascendents.net\/ascend.php","description":"Hello! #Ascend With Us! \ud83d\ude80\ud83d\udd1d","translator_type":"none","protected":false,"verified":false,"followers_count":2087,"friends_count":4136,"listed_count":6,"favourites_count":5131,"statuses_count":8225,"created_at":"Sun Feb 08 10:34:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"333333","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/818688686095093760\/kudThzTJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818688686095093760\/kudThzTJ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"@TwitterDev cant figure out who to contact: verify email has a lot of broken links repeating the same text multiple times. Link that works is at the bottom saying click any link. Request and I'll dm\/fwd u the email. Also, create account errored saying I needed to enter all info.","display_text_range":[0,279],"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]}},"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4SsjkpgO7q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/929140416443584512","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"TwitterDev","name":"Twitter Dev","id":2244994945,"id_str":"2244994945","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710210000","toDate":"201711200003"}} \ No newline at end of file diff --git a/spec/fixtures/premium_search_url.json b/spec/fixtures/premium_search_url.json new file mode 100644 index 000000000..70827a599 --- /dev/null +++ b/spec/fixtures/premium_search_url.json @@ -0,0 +1 @@ +{"results":[{"created_at":"Fri Nov 10 04:49:23 +0000 2017","id":928847027336646656,"id_str":"928847027336646656","text":"@pubkugyo \u307e\u305f\u7701\u7565\u3055\u308c\u3066\u307e\u3059\u306d\uff0e\u3053\u308c\uff0cTwitter\u306fAPI\u3092\u3061\u3083\u3093\u3068\u63d0\u4f9b\u3057\u3066\u3044\u308b\u306e\u3067\uff0c\u5404\u7a2e\u30b5\u30fc\u30f4\u30a3\u30b9\u304c\u4f7f\u3063\u3066\u308b\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u5bfe\u5fdc\u3057\u3066\u304f\u308c\u308b\u306e\u3092\u5f85\u3064\u304b\uff0c\u79c1\u304c\u4f5c\u308b\u3057\u304b\u306a\u3044\uff0e\u305f\u3068\u3048\u3070Ruby Gem\u306e\u5834\u5408\u306f\u3053\u3046\u3044\u3046PR\u304c\u51fa\u3066\u308b\nhttps:\/\/t.co\/5ei30Efome","display_text_range":[10,139],"source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":928419034294468608,"in_reply_to_status_id_str":"928419034294468608","in_reply_to_user_id":15861296,"in_reply_to_user_id_str":"15861296","in_reply_to_screen_name":"pubkugyo","user":{"id":281645570,"id_str":"281645570","name":"K WATANABE","screen_name":"hackugyo","location":null,"url":"http:\/\/d.hatena.ne.jp\/hackugyo","description":"2017\u5e74\u5ea6\u306f\u6a5f\u68b0\u5b66\u7fd2\u306b\u95a2\u5fc3\u3092\u5b9a\u3081\u305f\u65e5\u672c\u306e\u6280\u8853\u8005(7\u5e74\u3081)\uff0e\u30ea\u30ea\u30fc\u30b9\u7d4c\u9a13\u8a00\u8a9e\u306fRuby\u306e\u307b\u304bJava, Obj-C, C#, CS(AngularJS), Swift, Kotlin\uff0e\u30a8\u30c7\u30a3\u30bf\u306fEmacs. Ruby\u6280\u8853\u8005Silver\u30fb\u30b7\u30b9\u30c6\u30e0\u30a2\u30fc\u30ad\u30c6\u30af\u30c8 https:\/\/t.co\/GYwIkewx17","translator_type":"none","protected":false,"verified":false,"followers_count":249,"friends_count":622,"listed_count":15,"favourites_count":246,"statuses_count":806,"created_at":"Wed Apr 13 17:48:26 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310410213\/beholder_aprilfools_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310410213\/beholder_aprilfools_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5ei30Efome","expanded_url":"https:\/\/github.com\/sferik\/twitter\/pull\/864\/commits","display_url":"github.com\/sferik\/twitter\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"pubkugyo","name":"kugyo W","id":15861296,"id_str":"15861296","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Wed Nov 08 23:29:28 +0000 2017","id":928404132498612225,"id_str":"928404132498612225","text":"https:\/\/t.co\/boYhvxkd4F","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213747670,"id_str":"213747670","name":"The Ruby Gem","screen_name":"gem","location":null,"url":null,"description":null,"translator_type":"none","protected":false,"verified":false,"followers_count":1722,"friends_count":10,"listed_count":128,"favourites_count":335,"statuses_count":120,"created_at":"Tue Nov 09 18:03:22 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531994916181012480\/EBap51cO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531994916181012480\/EBap51cO_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/boYhvxkd4F","expanded_url":"https:\/\/github.com\/sferik\/twitter\/commit\/2912a67c7ec5b733ddd01531b91a9ff5fd3b3012","display_url":"github.com\/sferik\/twitter\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","matching_rules":[{"tag":null}]},{"created_at":"Mon Nov 06 08:08:05 +0000 2017","id":927447480832212992,"id_str":"927447480832212992","text":"Twitter gem \u306e\nhttps:\/\/t.co\/5BkXTAgLDi\nhttps:\/\/t.co\/vPre4iQluw\n\u3053\u306e\u8fba\u308a\u306e\u4f8b\u5916\u3069\u3046\u634c\u304f\u304b\u306a\u30fc\u3002","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Lite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":193008438,"id_str":"193008438","name":"\u51fa\u529b\u30bc\u30ed","screen_name":"s_of_p","location":"OVER THE ATMOSPHERE","url":"http:\/\/0xbd.cf","description":"\u308f\u305f\u3057\u305f\u3061\u306f\u547d\u3092\u501f\u308a\u3066\u611b\u306e\u306a\u304b\u306b\u751f\u304d\u3066\u3044\u308b","translator_type":"none","protected":false,"verified":false,"followers_count":267,"friends_count":2177,"listed_count":16,"favourites_count":8008,"statuses_count":8191,"created_at":"Mon Sep 20 18:59:08 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C5CAE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3F51B5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2212542813\/ico_normal.PNG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2212542813\/ico_normal.PNG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193008438\/1487096821","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5BkXTAgLDi","expanded_url":"https:\/\/github.com\/sferik\/twitter\/issues\/401","display_url":"github.com\/sferik\/twitter\u2026","indices":[14,37]},{"url":"https:\/\/t.co\/vPre4iQluw","expanded_url":"https:\/\/github.com\/sferik\/twitter\/issues\/535","display_url":"github.com\/sferik\/twitter\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]},{"created_at":"Wed Oct 25 08:46:12 +0000 2017","id":923108418931507202,"id_str":"923108418931507202","text":"\u306a\u308b\u307b\u3069 \/ \u201cPlease expose id_str, in_reply_to_id_str etc by stve \u00b7 Pull Request #380 \u00b7 sferik\/twitter \u00b7 GitHub\u201d https:\/\/t.co\/vBuM4GRbae","source":"\u003ca href=\"http:\/\/www.hatena.ne.jp\/guide\/twitter\" rel=\"nofollow\"\u003eHatena\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303846231,"id_str":"303846231","name":"\u30ad\u30af\u30ca\u30f3\u30c8\u30ab","screen_name":"kikunantoka","location":null,"url":"https:\/\/kikunantoka.com","description":"\u6771\u4eac\u3067Web\u958b\u767a\u3057\u3066\u307e\u3059_(:3\u300d\u2220)_","translator_type":"none","protected":false,"verified":false,"followers_count":283,"friends_count":261,"listed_count":7,"favourites_count":3199,"statuses_count":6269,"created_at":"Mon May 23 14:28:36 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000738355373\/e0dc5694d9810df16cf62c7529098942_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000738355373\/e0dc5694d9810df16cf62c7529098942_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/303846231\/1415541363","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vBuM4GRbae","expanded_url":"http:\/\/htn.to\/M1FDoBhr","display_url":"htn.to\/M1FDoBhr","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","matching_rules":[{"tag":null}]}],"requestParameters":{"maxResults":100,"fromDate":"201710210000","toDate":"201711201720"}} \ No newline at end of file diff --git a/spec/twitter/premium_search_results_spec.rb b/spec/twitter/premium_search_results_spec.rb new file mode 100644 index 000000000..995cd638b --- /dev/null +++ b/spec/twitter/premium_search_results_spec.rb @@ -0,0 +1,62 @@ +require 'helper' + +describe Twitter::PremiumSearchResults do + describe '#each' do + before do + @client = Twitter::REST::Client.new(consumer_key: 'CK', consumer_secret: 'CS', access_token: 'AT', access_token_secret: 'AS', dev_environment: 'DE') + end + it 'requests the correct resources' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}').to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('#freebandnames').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'supports GET requests' do + stub_get('/1.1/tweets/search/30day/DE.json').with(query: {query: '#freebandnames', maxResults: '100'}).to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('#freebandnames', request_method: :get).each {} + expect(a_get('/1.1/tweets/search/30day/DE.json').with(query: {query: '#freebandnames', maxResults: '100'})).to have_been_made + end + it 'supports POST requests' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}').to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('#freebandnames', request_method: :post).each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'iterates' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}').to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + count = 0 + @client.premium_search('#freebandnames').each { count += 1 } + expect(count).to eq(1) + end + it 'paginates' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza"}').to_return(body: fixture('premium_search_next.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza","next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ=="}').to_return(body: fixture('premium_search_last.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('pizza').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza","next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ=="}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'supports emoji' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"🍕"}').to_return(body: fixture('premium_search_emoji.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('🍕').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"🍕"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'supports from operator' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"from:twitterdev"}').to_return(body: fixture('premium_search_from.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('from:twitterdev').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"from:twitterdev"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'supports to operator' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"to:twitterdev"}').to_return(body: fixture('premium_search_to.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('to:twitterdev').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"to:twitterdev"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'supports point_radius operator' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"point_radius:[-105.27346517 40.01924738 10.0mi]"}').to_return(body: fixture('premium_search_point_radius.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('point_radius:[-105.27346517 40.01924738 10.0mi]').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"point_radius:[-105.27346517 40.01924738 10.0mi]"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + it 'supports url operator' do + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"url:github.com/sferik/twitter"}').to_return(body: fixture('premium_search_url.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('url:github.com/sferik/twitter').each {} + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"url:github.com/sferik/twitter"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end + end +end From bdb44fc7dd89425efdef6d6f57e316267975f4a9 Mon Sep 17 00:00:00 2001 From: bergamo Date: Sat, 2 Mar 2019 22:24:23 -0300 Subject: [PATCH 15/29] Include product option, fix tests and pagination --- lib/twitter/premium_search_results.rb | 9 ++++---- lib/twitter/rest/premium_search.rb | 14 ++++++------ lib/twitter/rest/request.rb | 10 --------- spec/twitter/premium_search_results_spec.rb | 24 +++++++++++++++++---- spec/twitter/rest/request_spec.rb | 8 ------- 5 files changed, 33 insertions(+), 32 deletions(-) diff --git a/lib/twitter/premium_search_results.rb b/lib/twitter/premium_search_results.rb index c3a0738fb..5c031d3bd 100644 --- a/lib/twitter/premium_search_results.rb +++ b/lib/twitter/premium_search_results.rb @@ -17,11 +17,12 @@ class PremiumSearchResults # # @param request [Twitter::REST::Request] # @return [Twitter::PremiumSearchResults] - def initialize(request) + def initialize(request, request_config = {}) @client = request.client @request_method = request.verb @path = request.path @options = request.options + @request_config = request_config @collection = [] self.attrs = request.perform end @@ -48,9 +49,9 @@ def next_page # @return [Hash] def fetch_next_page - @options[:request_body] = :json if @request_method == :post - response = Twitter::REST::Request.new(@client, @request_method, @path, @options.merge(next_page)).perform - self.attrs = response + request = @client.premium_search(@options[:query], (@options.reject{ |k| k == :query } || {}).merge(next_page), @request_config) + + self.attrs = request.attrs end # @param attrs [Hash] diff --git a/lib/twitter/rest/premium_search.rb b/lib/twitter/rest/premium_search.rb index e80982dd5..d51c9598c 100644 --- a/lib/twitter/rest/premium_search.rb +++ b/lib/twitter/rest/premium_search.rb @@ -18,14 +18,16 @@ module PremiumSearch # @option options [Integer] :maxResults The maximum number of search results to be returned by a request. A number between 10 and the system limit (currently 500, 100 for Sandbox environments). By default, a request response will return 100 results # @option options [String] :fromDate The oldest UTC timestamp (from most recent 30 days) from which the Tweets will be provided. Date should be formatted as yyyymmddhhmm. # @option options [String] :toDate The latest, most recent UTC timestamp to which the activities will be provided. Date should be formatted as yyyymmddhhmm. + # @option request_config [String] :product Indicates the search endpoint you are making requests to, either 30day or fullarchive. Default 30day # @return [Twitter::PremiumSearchResults] Return tweets that match a specified query with search metadata - def premium_search(query, options = {}) - options = options.dup + def premium_search(query, options = {}, request_config = {}) + options = options.clone options[:maxResults] ||= MAX_TWEETS_PER_REQUEST - options[:request_method] ||= :post - options[:request_body] = :json if options[:request_method] == :post - request = Twitter::REST::Request.new(self, options.delete(:request_method), "/1.1/tweets/search/30day/#{dev_environment}.json", options.merge(query: query)) - Twitter::PremiumSearchResults.new(request) + request_config[:request_method] = :json_post if request_config[:request_method].nil? || request_config[:request_method] == :post + request_config[:product] ||= '30day' + path = "/1.1/tweets/search/#{request_config[:product]}/#{dev_environment}.json" + request = Twitter::REST::Request.new(self, request_config[:request_method], path, options.merge(query: query)) + Twitter::PremiumSearchResults.new(request, request_config) end end end diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 7d0ee6378..9824e7806 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -76,16 +76,6 @@ def content_type(basename) end end - def options_key - if @request_method == :get - :params - elsif @options.delete(:request_body) == :json - :json - else - :form - end - end - def fail_or_return_response_body(code, body, headers) error = error(code, body, headers) raise(error) if error diff --git a/spec/twitter/premium_search_results_spec.rb b/spec/twitter/premium_search_results_spec.rb index 995cd638b..93d766898 100644 --- a/spec/twitter/premium_search_results_spec.rb +++ b/spec/twitter/premium_search_results_spec.rb @@ -5,58 +5,74 @@ before do @client = Twitter::REST::Client.new(consumer_key: 'CK', consumer_secret: 'CS', access_token: 'AT', access_token_secret: 'AS', dev_environment: 'DE') end + it 'requests the correct resources' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}').to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('#freebandnames').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'supports GET requests' do stub_get('/1.1/tweets/search/30day/DE.json').with(query: {query: '#freebandnames', maxResults: '100'}).to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) - @client.premium_search('#freebandnames', request_method: :get).each {} + @client.premium_search('#freebandnames', {} ,request_method: :get).each {} expect(a_get('/1.1/tweets/search/30day/DE.json').with(query: {query: '#freebandnames', maxResults: '100'})).to have_been_made end + it 'supports POST requests' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}').to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) - @client.premium_search('#freebandnames', request_method: :post).each {} + @client.premium_search('#freebandnames', {}, request_method: :post).each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'iterates' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"#freebandnames"}').to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) count = 0 @client.premium_search('#freebandnames').each { count += 1 } expect(count).to eq(1) end + it 'paginates' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza"}').to_return(body: fixture('premium_search_next.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) - stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza","next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ=="}').to_return(body: fixture('premium_search_last.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ==","query":"pizza"}').to_return(body: fixture('premium_search_last.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('pizza').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made - expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"pizza","next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ=="}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"next":"eyJhdXRoZW50aWNpdHkiOiI3MzdlZGI5ZjMwNDcwZjlhMWU1OGFhNWVkNzEyOGI4NGIyMWY2YTA3NTE3NTlhNWQxZGYxMjRiOGQ2ZmM5MjQwIiwiZnJvbURhdGUiOiIyMDE3MTAyMDAwMDAiLCJ0b0RhdGUiOiIyMDE3MTExOTIzMTUiLCJuZXh0IjoiMjAxNzExMTkyMzEyMzEtOTMyMzg2MTMxODEwODg5NzI4LTAifQ==","query":"pizza"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'supports emoji' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"🍕"}').to_return(body: fixture('premium_search_emoji.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('🍕').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"🍕"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'supports from operator' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"from:twitterdev"}').to_return(body: fixture('premium_search_from.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('from:twitterdev').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"from:twitterdev"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'supports to operator' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"to:twitterdev"}').to_return(body: fixture('premium_search_to.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('to:twitterdev').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"to:twitterdev"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'supports point_radius operator' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"point_radius:[-105.27346517 40.01924738 10.0mi]"}').to_return(body: fixture('premium_search_point_radius.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('point_radius:[-105.27346517 40.01924738 10.0mi]').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"point_radius:[-105.27346517 40.01924738 10.0mi]"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + it 'supports url operator' do stub_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"url:github.com/sferik/twitter"}').to_return(body: fixture('premium_search_url.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) @client.premium_search('url:github.com/sferik/twitter').each {} expect(a_post('/1.1/tweets/search/30day/DE.json').with(body: '{"maxResults":100,"query":"url:github.com/sferik/twitter"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made end + + it 'supports product fullarchive' do + stub_post('/1.1/tweets/search/fullarchive/DE.json').with(body: '{"maxResults":100,"query":"url:github.com/sferik/twitter"}').to_return(body: fixture('premium_search_url.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) + @client.premium_search('url:github.com/sferik/twitter', {}, product: 'fullarchive').each {} + expect(a_post('/1.1/tweets/search/fullarchive/DE.json').with(body: '{"maxResults":100,"query":"url:github.com/sferik/twitter"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made + end end end diff --git a/spec/twitter/rest/request_spec.rb b/spec/twitter/rest/request_spec.rb index 302c7ab38..31a0103e9 100644 --- a/spec/twitter/rest/request_spec.rb +++ b/spec/twitter/rest/request_spec.rb @@ -19,14 +19,6 @@ expect(a_post('/1.1/statuses/update.json').with(body: {status: 'Update', media_ids: '470030289822314497'})).to have_been_made end - context 'when request body is json' do - it 'adds content-type header' do - stub_post('/1.1/statuses/update.json').with(body: '{"status":"Update"}').to_return(body: fixture('status.json'), headers: {content_type: 'application/json; charset=utf-8'}) - @client.update('Update', request_body: :json) - expect(a_post('/1.1/statuses/update.json').with(body: '{"status":"Update"}', headers: {'Content-Type' => 'application/json; charset=UTF-8'})).to have_been_made - end - end - context 'when using a proxy' do before do @client = Twitter::REST::Client.new(consumer_key: 'CK', consumer_secret: 'CS', access_token: 'AT', access_token_secret: 'AS', proxy: {host: '127.0.0.1', port: 3328}) From df7f3869b503458500a91b2c5992727851ac95e7 Mon Sep 17 00:00:00 2001 From: bergamo Date: Sat, 2 Mar 2019 22:33:27 -0300 Subject: [PATCH 16/29] fix spaces, ident, rubocop warning --- lib/twitter/premium_search_results.rb | 2 +- spec/twitter/premium_search_results_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter/premium_search_results.rb b/lib/twitter/premium_search_results.rb index 5c031d3bd..67669df71 100644 --- a/lib/twitter/premium_search_results.rb +++ b/lib/twitter/premium_search_results.rb @@ -49,7 +49,7 @@ def next_page # @return [Hash] def fetch_next_page - request = @client.premium_search(@options[:query], (@options.reject{ |k| k == :query } || {}).merge(next_page), @request_config) + request = @client.premium_search(@options[:query], (@options.reject { |k| k == :query } || {}).merge(next_page), @request_config) self.attrs = request.attrs end diff --git a/spec/twitter/premium_search_results_spec.rb b/spec/twitter/premium_search_results_spec.rb index 93d766898..ffcc52c6d 100644 --- a/spec/twitter/premium_search_results_spec.rb +++ b/spec/twitter/premium_search_results_spec.rb @@ -14,7 +14,7 @@ it 'supports GET requests' do stub_get('/1.1/tweets/search/30day/DE.json').with(query: {query: '#freebandnames', maxResults: '100'}).to_return(body: fixture('premium_search.json'), headers: {content_type: 'application/json; charset=UTF-8; charset=utf-8'}) - @client.premium_search('#freebandnames', {} ,request_method: :get).each {} + @client.premium_search('#freebandnames', {}, request_method: :get).each {} expect(a_get('/1.1/tweets/search/30day/DE.json').with(query: {query: '#freebandnames', maxResults: '100'})).to have_been_made end From 04544a39c31e674f7a0dd1a52591abd5ef2a0748 Mon Sep 17 00:00:00 2001 From: bergamo Date: Sat, 2 Mar 2019 22:40:46 -0300 Subject: [PATCH 17/29] fix readme with new interface --- examples/Configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Configuration.md b/examples/Configuration.md index 9e9dbfe62..8b8f1e15b 100644 --- a/examples/Configuration.md +++ b/examples/Configuration.md @@ -107,10 +107,10 @@ client = Twitter::REST::Client.new do |config| end ``` -You can use this client to make a REST 30-Day Search API request. For example: +You can use this client to make a REST 30-Day or Fullarchive Search API request. For example: ```ruby -client.premium_search("#ruby", { maxResults: 100 }) +client.premium_search("#ruby", { maxResults: 100 }, { product: 'fullarchive' }) ``` ## Streaming Clients From 743f629b3f07bc8ee083065dc129095715db7899 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 10:23:42 +0100 Subject: [PATCH 18/29] Basic calls returning hashes to handle welcome messages. --- lib/twitter/rest/direct_messages.rb | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/lib/twitter/rest/direct_messages.rb b/lib/twitter/rest/direct_messages.rb index 1ca620142..c20898ed9 100644 --- a/lib/twitter/rest/direct_messages.rb +++ b/lib/twitter/rest/direct_messages.rb @@ -216,6 +216,47 @@ def create_direct_message_event_with_media(user, text, media, options = {}) Twitter::DirectMessageEvent.new(response[:event]) end + def create_welcome_message(text, name: nil) + options = { + welcome_message: { + message_data: { + text: text + } + } + } + options[:welcome_message][:name] = name if name + response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/new.json', options).perform + response + end + + def welcome_message_list + response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/list.json').perform + response + end + + def create_welcome_message_rule(welcome_message_id) + options = { + welcome_message_rule: { + welcome_message_id: welcome_message_id + } + } + response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', options).perform + response + end + + def delete_welcome_message_rule(welcome_message_rule_id) + options = { + id: welcome_message_rule_id + } + response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/rules/destroy.json', options).perform + response + end + + def welcome_message_rule_list + response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/list.json').perform + response + end + private def format_json_options(user_id, text, options) From 907612de35303d4d915d68ab65e4aa02436bd464 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 11:48:39 +0100 Subject: [PATCH 19/29] Move to a separate file. Add welcome message update. --- lib/twitter/rest/api.rb | 2 + lib/twitter/rest/direct_messages.rb | 41 ---------- .../rest/direct_messages/welcome_messages.rb | 80 +++++++++++++++++++ lib/twitter/rest/request.rb | 5 +- 4 files changed, 86 insertions(+), 42 deletions(-) create mode 100644 lib/twitter/rest/direct_messages/welcome_messages.rb diff --git a/lib/twitter/rest/api.rb b/lib/twitter/rest/api.rb index e4dd0e2ea..e0e6d19ae 100644 --- a/lib/twitter/rest/api.rb +++ b/lib/twitter/rest/api.rb @@ -1,4 +1,5 @@ require 'twitter/rest/direct_messages' +require 'twitter/rest/direct_messages/welcome_messages' require 'twitter/rest/favorites' require 'twitter/rest/friends_and_followers' require 'twitter/rest/help' @@ -22,6 +23,7 @@ module REST # @see https://dev.twitter.com/overview/general/things-every-developer-should-know module API include Twitter::REST::DirectMessages + include Twitter::REST::DirectMessages::WelcomeMessages include Twitter::REST::Favorites include Twitter::REST::FriendsAndFollowers include Twitter::REST::Help diff --git a/lib/twitter/rest/direct_messages.rb b/lib/twitter/rest/direct_messages.rb index c20898ed9..1ca620142 100644 --- a/lib/twitter/rest/direct_messages.rb +++ b/lib/twitter/rest/direct_messages.rb @@ -216,47 +216,6 @@ def create_direct_message_event_with_media(user, text, media, options = {}) Twitter::DirectMessageEvent.new(response[:event]) end - def create_welcome_message(text, name: nil) - options = { - welcome_message: { - message_data: { - text: text - } - } - } - options[:welcome_message][:name] = name if name - response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/new.json', options).perform - response - end - - def welcome_message_list - response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/list.json').perform - response - end - - def create_welcome_message_rule(welcome_message_id) - options = { - welcome_message_rule: { - welcome_message_id: welcome_message_id - } - } - response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', options).perform - response - end - - def delete_welcome_message_rule(welcome_message_rule_id) - options = { - id: welcome_message_rule_id - } - response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/rules/destroy.json', options).perform - response - end - - def welcome_message_rule_list - response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/list.json').perform - response - end - private def format_json_options(user_id, text, options) diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb new file mode 100644 index 000000000..9757e1536 --- /dev/null +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -0,0 +1,80 @@ +require 'twitter/arguments' +require 'twitter/rest/upload_utils' +require 'twitter/rest/utils' +require 'twitter/utils' + +module Twitter + module REST + module DirectMessages + module WelcomeMessages + include Twitter::REST::UploadUtils + include Twitter::REST::Utils + include Twitter::Utils + + # Welcome Message + + def create_welcome_message(text, name: nil) + options = { + welcome_message: { + message_data: { + text: text + } + } + } + options[:welcome_message][:name] = name if name + response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/new.json', options).perform + response + end + + def delete_welcome_message(welcome_message_id) + options = { + id: welcome_message_id + } + response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/destroy.json', options).perform + response + end + + def update_welcome_message(welcome_message_id, text, name: nil) + options = { + message_data: { + text: text + } + } + options[:welcome_message][:name] = name if name + response = Twitter::REST::Request.new(self, :json_put, "/1.1/direct_messages/welcome_messages/update.json?id=#{welcome_message_id}", options).perform + response + end + + def welcome_message_list + response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/list.json').perform + response + end + + # Welcome Message Rule + + def create_welcome_message_rule(welcome_message_id) + options = { + welcome_message_rule: { + welcome_message_id: welcome_message_id + } + } + response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', options).perform + response + end + + def delete_welcome_message_rule(welcome_message_rule_id) + options = { + id: welcome_message_rule_id + } + response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/rules/destroy.json', options).perform + response + end + + def welcome_message_rule_list + response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/list.json').perform + response + end + end + end + end +end diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index 9824e7806..ccc734b4f 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -28,7 +28,7 @@ def initialize(client, request_method, path, options = {}) set_multipart_options!(request_method, options) @path = uri.path @options = options - @options_key = {get: :params, json_post: :json, delete: :params}[request_method] || :form + @options_key = {get: :params, json_post: :json, delete: :params, json_put: :json}[request_method] || :form end # @return [Array, Hash] @@ -57,6 +57,9 @@ def set_multipart_options!(request_method, options) merge_multipart_file!(options) if request_method == :multipart_post @request_method = :post @headers = Twitter::Headers.new(@client, @request_method, @uri).request_headers + elsif %i[json_put].include?(request_method) + @request_method = :put + @headers = Twitter::Headers.new(@client, @request_method, @uri).request_headers else @request_method = request_method @headers = Twitter::Headers.new(@client, @request_method, @uri, options).request_headers From 1db13102c5b984b4afe5b4ea3653f6b2f786bc7d Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 14:02:34 +0100 Subject: [PATCH 20/29] Allow sending params and options in Twitter::REST::Request --- .../rest/direct_messages/welcome_messages.rb | 5 ++++- lib/twitter/rest/request.rb | 22 +++++++++++++++---- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb index 9757e1536..38cb11b71 100644 --- a/lib/twitter/rest/direct_messages/welcome_messages.rb +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -35,13 +35,16 @@ def delete_welcome_message(welcome_message_id) end def update_welcome_message(welcome_message_id, text, name: nil) + params = { + id: welcome_message_id + } options = { message_data: { text: text } } options[:welcome_message][:name] = name if name - response = Twitter::REST::Request.new(self, :json_put, "/1.1/direct_messages/welcome_messages/update.json?id=#{welcome_message_id}", options).perform + response = Twitter::REST::Request.new(self, :json_put, "/1.1/direct_messages/welcome_messages/update.json", options, params).perform response end diff --git a/lib/twitter/rest/request.rb b/lib/twitter/rest/request.rb index ccc734b4f..dc6b29a49 100644 --- a/lib/twitter/rest/request.rb +++ b/lib/twitter/rest/request.rb @@ -22,18 +22,20 @@ class Request # @param path [String] # @param options [Hash] # @return [Twitter::REST::Request] - def initialize(client, request_method, path, options = {}) + def initialize(client, request_method, path, options = {}, params = nil) @client = client @uri = Addressable::URI.parse(path.start_with?('http') ? path : BASE_URL + path) - set_multipart_options!(request_method, options) + multipart_options = params ? params : options + set_multipart_options!(request_method, multipart_options) @path = uri.path @options = options @options_key = {get: :params, json_post: :json, delete: :params, json_put: :json}[request_method] || :form + @params = params end # @return [Array, Hash] def perform - response = http_client.headers(@headers).public_send(@request_method, @uri.to_s, @options_key => @options) + response = http_client.headers(@headers).public_send(@request_method, @uri.to_s, request_options) response_body = response.body.empty? ? '' : symbolize_keys!(response.parse) response_headers = response.headers fail_or_return_response_body(response.code, response_body, response_headers) @@ -41,6 +43,18 @@ def perform private + def request_options + options = {@options_key => @options} + if @params + if options[:params] + options[:params].merge(@params) + else + options[:params] = @params + end + end + options + end + def merge_multipart_file!(options) key = options.delete(:key) file = options.delete(:file) @@ -59,7 +73,7 @@ def set_multipart_options!(request_method, options) @headers = Twitter::Headers.new(@client, @request_method, @uri).request_headers elsif %i[json_put].include?(request_method) @request_method = :put - @headers = Twitter::Headers.new(@client, @request_method, @uri).request_headers + @headers = Twitter::Headers.new(@client, @request_method, @uri, options || {}).request_headers else @request_method = request_method @headers = Twitter::Headers.new(@client, @request_method, @uri, options).request_headers From 7e02f32cc3f76de2f6a3d7205877a65b16b7ec3a Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 14:42:51 +0100 Subject: [PATCH 21/29] Add show endpoints. Formating. --- .../rest/direct_messages/welcome_messages.rb | 54 ++++++++++++------- 1 file changed, 35 insertions(+), 19 deletions(-) diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb index 38cb11b71..1ffe6d87e 100644 --- a/lib/twitter/rest/direct_messages/welcome_messages.rb +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -15,12 +15,12 @@ module WelcomeMessages def create_welcome_message(text, name: nil) options = { - welcome_message: { - message_data: { - text: text - } - } - } + welcome_message: { + message_data: { + text: text + } + } + } options[:welcome_message][:name] = name if name response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/new.json', options).perform response @@ -28,26 +28,34 @@ def create_welcome_message(text, name: nil) def delete_welcome_message(welcome_message_id) options = { - id: welcome_message_id - } + id: welcome_message_id + } response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/destroy.json', options).perform response end def update_welcome_message(welcome_message_id, text, name: nil) params = { - id: welcome_message_id + id: welcome_message_id } options = { - message_data: { - text: text - } - } + message_data: { + text: text + } + } options[:welcome_message][:name] = name if name response = Twitter::REST::Request.new(self, :json_put, "/1.1/direct_messages/welcome_messages/update.json", options, params).perform response end + def welcome_message(welcome_message_id) + params = { + id: welcome_message_id + } + response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/show.json', params).perform + response + end + def welcome_message_list response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/list.json').perform response @@ -57,22 +65,30 @@ def welcome_message_list def create_welcome_message_rule(welcome_message_id) options = { - welcome_message_rule: { - welcome_message_id: welcome_message_id - } - } + welcome_message_rule: { + welcome_message_id: welcome_message_id + } + } response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', options).perform response end def delete_welcome_message_rule(welcome_message_rule_id) options = { - id: welcome_message_rule_id - } + id: welcome_message_rule_id + } response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/rules/destroy.json', options).perform response end + def welcome_message_rule(welcome_message_rule_id) + params = { + id: welcome_message_rule_id + } + response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/show.json', params).perform + response + end + def welcome_message_rule_list response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/list.json').perform response From 2bd70054922763f2ee8bb83cbe53800b2252f42c Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 17:30:27 +0100 Subject: [PATCH 22/29] Return objects instead of hashes. --- lib/twitter.rb | 4 + .../rest/direct_messages/welcome_messages.rb | 79 ++++++++----------- lib/twitter/rest/utils.rb | 8 +- lib/twitter/welcome_message.rb | 15 ++++ lib/twitter/welcome_message_rule.rb | 10 +++ lib/twitter/welcome_message_rule_wrapper.rb | 34 ++++++++ lib/twitter/welcome_message_wrapper.rb | 39 +++++++++ 7 files changed, 141 insertions(+), 48 deletions(-) create mode 100644 lib/twitter/welcome_message.rb create mode 100644 lib/twitter/welcome_message_rule.rb create mode 100644 lib/twitter/welcome_message_rule_wrapper.rb create mode 100644 lib/twitter/welcome_message_wrapper.rb diff --git a/lib/twitter.rb b/lib/twitter.rb index d3c1f88e5..eb792dd23 100644 --- a/lib/twitter.rb +++ b/lib/twitter.rb @@ -30,3 +30,7 @@ require 'twitter/trend' require 'twitter/tweet' require 'twitter/user' +require 'twitter/welcome_message' +require 'twitter/welcome_message_rule' +require 'twitter/welcome_message_rule_wrapper' +require 'twitter/welcome_message_wrapper' diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb index 1ffe6d87e..262eb9fd2 100644 --- a/lib/twitter/rest/direct_messages/welcome_messages.rb +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -13,85 +13,76 @@ module WelcomeMessages # Welcome Message - def create_welcome_message(text, name: nil) - options = { + def create_welcome_message(text, name = nil, options = {}) + json_options = { welcome_message: { message_data: { text: text } } } - options[:welcome_message][:name] = name if name - response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/new.json', options).perform - response + json_options[:welcome_message][:name] = name if name + event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/new.json', json_options.merge!(options), Twitter::WelcomeMessageWrapper) + event.welcome_message end - def delete_welcome_message(welcome_message_id) - options = { - id: welcome_message_id - } - response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/destroy.json', options).perform - response + def destroy_welcome_message(*ids) + perform_requests(:delete, '/1.1/direct_messages/welcome_messages/destroy.json', ids) end - def update_welcome_message(welcome_message_id, text, name: nil) + def update_welcome_message(welcome_message_id, text, options = {}) params = { id: welcome_message_id } - options = { + json_options = { message_data: { text: text } } - options[:welcome_message][:name] = name if name - response = Twitter::REST::Request.new(self, :json_put, "/1.1/direct_messages/welcome_messages/update.json", options, params).perform - response + event = perform_request_with_object(:json_put, '/1.1/direct_messages/welcome_messages/update.json', json_options.merge!(options), Twitter::WelcomeMessageWrapper, params) + event.welcome_message end - def welcome_message(welcome_message_id) - params = { - id: welcome_message_id - } - response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/show.json', params).perform - response + def welcome_message(id, options = {}) + options = options.dup + options[:id] = id + event = perform_get_with_object('/1.1/direct_messages/welcome_messages/show.json', options, Twitter::WelcomeMessageWrapper) + event.welcome_message end - def welcome_message_list - response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/list.json').perform - response + def welcome_message_list(options = {}) + limit = options.fetch(:count, 20) + events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_messages, Twitter::WelcomeMessageWrapper) + events.collect(&:welcome_message) end # Welcome Message Rule - def create_welcome_message_rule(welcome_message_id) - options = { + def create_welcome_message_rule(welcome_message_id, options = {}) + json_options = { welcome_message_rule: { welcome_message_id: welcome_message_id } } - response = Twitter::REST::Request.new(self, :json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', options).perform - response + event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', json_options.merge!(options), Twitter::WelcomeMessageRuleWrapper) + event.welcome_message_rule end - def delete_welcome_message_rule(welcome_message_rule_id) - options = { - id: welcome_message_rule_id - } - response = Twitter::REST::Request.new(self, :delete, '/1.1/direct_messages/welcome_messages/rules/destroy.json', options).perform - response + def destroy_welcome_message_rule(*ids) + perform_requests(:delete, '/1.1/direct_messages/welcome_messages/rules/destroy.json', ids) end - def welcome_message_rule(welcome_message_rule_id) - params = { - id: welcome_message_rule_id - } - response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/show.json', params).perform - response + def welcome_message_rule(id, options = {}) + options = options.dup + options[:id] = id + event = perform_get_with_object('/1.1/direct_messages/welcome_messages/rules/show.json', options, Twitter::WelcomeMessageRuleWrapper) + event.welcome_message_rule end - def welcome_message_rule_list - response = Twitter::REST::Request.new(self, :get, '/1.1/direct_messages/welcome_messages/rules/list.json').perform - response + def welcome_message_rule_list(options = {}) + limit = options.fetch(:count, 20) + events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/rules/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_message_rules, Twitter::WelcomeMessageRuleWrapper) + events.collect(&:welcome_message_rule) end end end diff --git a/lib/twitter/rest/utils.rb b/lib/twitter/rest/utils.rb index c962a0749..2f51c7a4b 100644 --- a/lib/twitter/rest/utils.rb +++ b/lib/twitter/rest/utils.rb @@ -46,8 +46,8 @@ def perform_post(path, options = {}) # @param request_method [Symbol] # @param path [String] # @param options [Hash] - def perform_request(request_method, path, options = {}) - Twitter::REST::Request.new(self, request_method, path, options).perform + def perform_request(request_method, path, options = {}, params = nil) + Twitter::REST::Request.new(self, request_method, path, options, params).perform end # @param path [String] @@ -68,8 +68,8 @@ def perform_post_with_object(path, options, klass) # @param path [String] # @param options [Hash] # @param klass [Class] - def perform_request_with_object(request_method, path, options, klass) - response = perform_request(request_method, path, options) + def perform_request_with_object(request_method, path, options, klass, params = nil) + response = perform_request(request_method, path, options, params) klass.new(response) end diff --git a/lib/twitter/welcome_message.rb b/lib/twitter/welcome_message.rb new file mode 100644 index 000000000..2b4a13d85 --- /dev/null +++ b/lib/twitter/welcome_message.rb @@ -0,0 +1,15 @@ +require 'twitter/creatable' +require 'twitter/entities' +require 'twitter/identity' + +module Twitter + class WelcomeMessage < Twitter::Identity + include Twitter::Creatable + include Twitter::Entities + # @return [String] + attr_reader :text + # @return [String] + attr_reader :name + alias full_text text + end +end diff --git a/lib/twitter/welcome_message_rule.rb b/lib/twitter/welcome_message_rule.rb new file mode 100644 index 000000000..70cfd34ce --- /dev/null +++ b/lib/twitter/welcome_message_rule.rb @@ -0,0 +1,10 @@ +require 'twitter/creatable' +require 'twitter/identity' + +module Twitter + class WelcomeMessageRule < Twitter::Identity + include Twitter::Creatable + # @return [Integer] + attr_reader :welcome_message_id + end +end diff --git a/lib/twitter/welcome_message_rule_wrapper.rb b/lib/twitter/welcome_message_rule_wrapper.rb new file mode 100644 index 000000000..f94005b65 --- /dev/null +++ b/lib/twitter/welcome_message_rule_wrapper.rb @@ -0,0 +1,34 @@ +require 'twitter/creatable' +require 'twitter/identity' + +module Twitter + class WelcomeMessageRuleWrapper < Twitter::Identity + + attr_reader :created_timestamp + + object_attr_reader :WelcomeMessageRule, :welcome_message_rule + + def initialize(attrs) + attrs = read_from_response(attrs) + + attrs[:welcome_message_rule] = build_welcome_message_rule(attrs) + super + end + + private + + # @return [Hash] Normalized hash of attrs + def read_from_response(attrs) + return attrs[:welcome_message_rule] unless attrs[:welcome_message_rule].nil? + attrs + end + + def build_welcome_message_rule(attrs) + { + id: attrs[:id].to_i, + created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), + welcome_message_id: attrs[:welcome_message_id].to_i + } + end + end +end diff --git a/lib/twitter/welcome_message_wrapper.rb b/lib/twitter/welcome_message_wrapper.rb new file mode 100644 index 000000000..ef4725484 --- /dev/null +++ b/lib/twitter/welcome_message_wrapper.rb @@ -0,0 +1,39 @@ +require 'twitter/creatable' +require 'twitter/identity' + +module Twitter + class WelcomeMessageWrapper < Twitter::Identity + + attr_reader :created_timestamp + + object_attr_reader :WelcomeMessage, :welcome_message + + def initialize(attrs) + attrs = read_from_response(attrs) + text = attrs.dig(:message_data, :text) + urls = attrs.dig(:message_data, :entities, :urls) + + text.gsub!(urls[0][:url], urls[0][:expanded_url]) if urls.any? + + attrs[:welcome_message] = build_welcome_message(attrs, text) + super + end + + private + + # @return [Hash] Normalized hash of attrs + def read_from_response(attrs) + return attrs[:welcome_message] unless attrs[:welcome_message].nil? + attrs + end + + def build_welcome_message(attrs, text) + { + id: attrs[:id].to_i, + created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), + text: text, + name: attrs[:name] + } + end + end +end From 8b64a31cb8911c36bf3277cacfe9256304ef32fa Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 17:49:09 +0100 Subject: [PATCH 23/29] Move WelcomeMessage classe into a DirectMessages module. --- lib/twitter.rb | 8 ++-- .../direct_messages/welcome_message.rb | 17 ++++++++ .../direct_messages/welcome_message_rule.rb | 12 ++++++ .../welcome_message_rule_wrapper.rb | 36 ++++++++++++++++ .../welcome_message_wrapper.rb | 41 +++++++++++++++++++ .../rest/direct_messages/welcome_messages.rb | 14 +++---- lib/twitter/welcome_message.rb | 15 ------- lib/twitter/welcome_message_rule.rb | 10 ----- lib/twitter/welcome_message_rule_wrapper.rb | 34 --------------- lib/twitter/welcome_message_wrapper.rb | 39 ------------------ 10 files changed, 117 insertions(+), 109 deletions(-) create mode 100644 lib/twitter/direct_messages/welcome_message.rb create mode 100644 lib/twitter/direct_messages/welcome_message_rule.rb create mode 100644 lib/twitter/direct_messages/welcome_message_rule_wrapper.rb create mode 100644 lib/twitter/direct_messages/welcome_message_wrapper.rb delete mode 100644 lib/twitter/welcome_message.rb delete mode 100644 lib/twitter/welcome_message_rule.rb delete mode 100644 lib/twitter/welcome_message_rule_wrapper.rb delete mode 100644 lib/twitter/welcome_message_wrapper.rb diff --git a/lib/twitter.rb b/lib/twitter.rb index eb792dd23..572bf4c94 100644 --- a/lib/twitter.rb +++ b/lib/twitter.rb @@ -30,7 +30,7 @@ require 'twitter/trend' require 'twitter/tweet' require 'twitter/user' -require 'twitter/welcome_message' -require 'twitter/welcome_message_rule' -require 'twitter/welcome_message_rule_wrapper' -require 'twitter/welcome_message_wrapper' +require 'twitter/direct_messages/welcome_message' +require 'twitter/direct_messages/welcome_message_rule' +require 'twitter/direct_messages/welcome_message_rule_wrapper' +require 'twitter/direct_messages/welcome_message_wrapper' diff --git a/lib/twitter/direct_messages/welcome_message.rb b/lib/twitter/direct_messages/welcome_message.rb new file mode 100644 index 000000000..aa0147d56 --- /dev/null +++ b/lib/twitter/direct_messages/welcome_message.rb @@ -0,0 +1,17 @@ +require 'twitter/creatable' +require 'twitter/entities' +require 'twitter/identity' + +module Twitter + module DirectMessages + class WelcomeMessage < Twitter::Identity + include Twitter::Creatable + include Twitter::Entities + # @return [String] + attr_reader :text + # @return [String] + attr_reader :name + alias full_text text + end + end +end diff --git a/lib/twitter/direct_messages/welcome_message_rule.rb b/lib/twitter/direct_messages/welcome_message_rule.rb new file mode 100644 index 000000000..d07e09108 --- /dev/null +++ b/lib/twitter/direct_messages/welcome_message_rule.rb @@ -0,0 +1,12 @@ +require 'twitter/creatable' +require 'twitter/identity' + +module Twitter + module DirectMessages + class WelcomeMessageRule < Twitter::Identity + include Twitter::Creatable + # @return [Integer] + attr_reader :welcome_message_id + end + end +end diff --git a/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb b/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb new file mode 100644 index 000000000..c667ddc95 --- /dev/null +++ b/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb @@ -0,0 +1,36 @@ +require 'twitter/creatable' +require 'twitter/identity' + +module Twitter + module DirectMessages + class WelcomeMessageRuleWrapper < Twitter::Identity + + attr_reader :created_timestamp + + object_attr_reader 'DirectMessages::WelcomeMessageRule', :welcome_message_rule + + def initialize(attrs) + attrs = read_from_response(attrs) + + attrs[:welcome_message_rule] = build_welcome_message_rule(attrs) + super + end + + private + + # @return [Hash] Normalized hash of attrs + def read_from_response(attrs) + return attrs[:welcome_message_rule] unless attrs[:welcome_message_rule].nil? + attrs + end + + def build_welcome_message_rule(attrs) + { + id: attrs[:id].to_i, + created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), + welcome_message_id: attrs[:welcome_message_id].to_i + } + end + end + end +end diff --git a/lib/twitter/direct_messages/welcome_message_wrapper.rb b/lib/twitter/direct_messages/welcome_message_wrapper.rb new file mode 100644 index 000000000..22a1c762a --- /dev/null +++ b/lib/twitter/direct_messages/welcome_message_wrapper.rb @@ -0,0 +1,41 @@ +require 'twitter/creatable' +require 'twitter/identity' + +module Twitter + module DirectMessages + class WelcomeMessageWrapper < Twitter::Identity + + attr_reader :created_timestamp + + object_attr_reader 'DirectMessages::WelcomeMessage', :welcome_message + + def initialize(attrs) + attrs = read_from_response(attrs) + text = attrs.dig(:message_data, :text) + urls = attrs.dig(:message_data, :entities, :urls) + + text.gsub!(urls[0][:url], urls[0][:expanded_url]) if urls.any? + + attrs[:welcome_message] = build_welcome_message(attrs, text) + super + end + + private + + # @return [Hash] Normalized hash of attrs + def read_from_response(attrs) + return attrs[:welcome_message] unless attrs[:welcome_message].nil? + attrs + end + + def build_welcome_message(attrs, text) + { + id: attrs[:id].to_i, + created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), + text: text, + name: attrs[:name] + } + end + end + end +end diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb index 262eb9fd2..cff61704b 100644 --- a/lib/twitter/rest/direct_messages/welcome_messages.rb +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -22,7 +22,7 @@ def create_welcome_message(text, name = nil, options = {}) } } json_options[:welcome_message][:name] = name if name - event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/new.json', json_options.merge!(options), Twitter::WelcomeMessageWrapper) + event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper) event.welcome_message end @@ -39,20 +39,20 @@ def update_welcome_message(welcome_message_id, text, options = {}) text: text } } - event = perform_request_with_object(:json_put, '/1.1/direct_messages/welcome_messages/update.json', json_options.merge!(options), Twitter::WelcomeMessageWrapper, params) + event = perform_request_with_object(:json_put, '/1.1/direct_messages/welcome_messages/update.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper, params) event.welcome_message end def welcome_message(id, options = {}) options = options.dup options[:id] = id - event = perform_get_with_object('/1.1/direct_messages/welcome_messages/show.json', options, Twitter::WelcomeMessageWrapper) + event = perform_get_with_object('/1.1/direct_messages/welcome_messages/show.json', options, Twitter::DirectMessages::WelcomeMessageWrapper) event.welcome_message end def welcome_message_list(options = {}) limit = options.fetch(:count, 20) - events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_messages, Twitter::WelcomeMessageWrapper) + events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_messages, Twitter::DirectMessages::WelcomeMessageWrapper) events.collect(&:welcome_message) end @@ -64,7 +64,7 @@ def create_welcome_message_rule(welcome_message_id, options = {}) welcome_message_id: welcome_message_id } } - event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', json_options.merge!(options), Twitter::WelcomeMessageRuleWrapper) + event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageRuleWrapper) event.welcome_message_rule end @@ -75,13 +75,13 @@ def destroy_welcome_message_rule(*ids) def welcome_message_rule(id, options = {}) options = options.dup options[:id] = id - event = perform_get_with_object('/1.1/direct_messages/welcome_messages/rules/show.json', options, Twitter::WelcomeMessageRuleWrapper) + event = perform_get_with_object('/1.1/direct_messages/welcome_messages/rules/show.json', options, Twitter::DirectMessages::WelcomeMessageRuleWrapper) event.welcome_message_rule end def welcome_message_rule_list(options = {}) limit = options.fetch(:count, 20) - events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/rules/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_message_rules, Twitter::WelcomeMessageRuleWrapper) + events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/rules/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_message_rules, Twitter::DirectMessages::WelcomeMessageRuleWrapper) events.collect(&:welcome_message_rule) end end diff --git a/lib/twitter/welcome_message.rb b/lib/twitter/welcome_message.rb deleted file mode 100644 index 2b4a13d85..000000000 --- a/lib/twitter/welcome_message.rb +++ /dev/null @@ -1,15 +0,0 @@ -require 'twitter/creatable' -require 'twitter/entities' -require 'twitter/identity' - -module Twitter - class WelcomeMessage < Twitter::Identity - include Twitter::Creatable - include Twitter::Entities - # @return [String] - attr_reader :text - # @return [String] - attr_reader :name - alias full_text text - end -end diff --git a/lib/twitter/welcome_message_rule.rb b/lib/twitter/welcome_message_rule.rb deleted file mode 100644 index 70cfd34ce..000000000 --- a/lib/twitter/welcome_message_rule.rb +++ /dev/null @@ -1,10 +0,0 @@ -require 'twitter/creatable' -require 'twitter/identity' - -module Twitter - class WelcomeMessageRule < Twitter::Identity - include Twitter::Creatable - # @return [Integer] - attr_reader :welcome_message_id - end -end diff --git a/lib/twitter/welcome_message_rule_wrapper.rb b/lib/twitter/welcome_message_rule_wrapper.rb deleted file mode 100644 index f94005b65..000000000 --- a/lib/twitter/welcome_message_rule_wrapper.rb +++ /dev/null @@ -1,34 +0,0 @@ -require 'twitter/creatable' -require 'twitter/identity' - -module Twitter - class WelcomeMessageRuleWrapper < Twitter::Identity - - attr_reader :created_timestamp - - object_attr_reader :WelcomeMessageRule, :welcome_message_rule - - def initialize(attrs) - attrs = read_from_response(attrs) - - attrs[:welcome_message_rule] = build_welcome_message_rule(attrs) - super - end - - private - - # @return [Hash] Normalized hash of attrs - def read_from_response(attrs) - return attrs[:welcome_message_rule] unless attrs[:welcome_message_rule].nil? - attrs - end - - def build_welcome_message_rule(attrs) - { - id: attrs[:id].to_i, - created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), - welcome_message_id: attrs[:welcome_message_id].to_i - } - end - end -end diff --git a/lib/twitter/welcome_message_wrapper.rb b/lib/twitter/welcome_message_wrapper.rb deleted file mode 100644 index ef4725484..000000000 --- a/lib/twitter/welcome_message_wrapper.rb +++ /dev/null @@ -1,39 +0,0 @@ -require 'twitter/creatable' -require 'twitter/identity' - -module Twitter - class WelcomeMessageWrapper < Twitter::Identity - - attr_reader :created_timestamp - - object_attr_reader :WelcomeMessage, :welcome_message - - def initialize(attrs) - attrs = read_from_response(attrs) - text = attrs.dig(:message_data, :text) - urls = attrs.dig(:message_data, :entities, :urls) - - text.gsub!(urls[0][:url], urls[0][:expanded_url]) if urls.any? - - attrs[:welcome_message] = build_welcome_message(attrs, text) - super - end - - private - - # @return [Hash] Normalized hash of attrs - def read_from_response(attrs) - return attrs[:welcome_message] unless attrs[:welcome_message].nil? - attrs - end - - def build_welcome_message(attrs, text) - { - id: attrs[:id].to_i, - created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), - text: text, - name: attrs[:name] - } - end - end -end From bf22120b75142a2fa0387d084eef76b7250d0cc7 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Thu, 13 Dec 2018 17:54:00 +0100 Subject: [PATCH 24/29] Rubocop. --- .../welcome_message_rule_wrapper.rb | 3 +-- .../direct_messages/welcome_message_wrapper.rb | 3 +-- .../rest/direct_messages/welcome_messages.rb | 18 +++++++++--------- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb b/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb index c667ddc95..341c9c25d 100644 --- a/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb +++ b/lib/twitter/direct_messages/welcome_message_rule_wrapper.rb @@ -4,7 +4,6 @@ module Twitter module DirectMessages class WelcomeMessageRuleWrapper < Twitter::Identity - attr_reader :created_timestamp object_attr_reader 'DirectMessages::WelcomeMessageRule', :welcome_message_rule @@ -28,7 +27,7 @@ def build_welcome_message_rule(attrs) { id: attrs[:id].to_i, created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), - welcome_message_id: attrs[:welcome_message_id].to_i + welcome_message_id: attrs[:welcome_message_id].to_i, } end end diff --git a/lib/twitter/direct_messages/welcome_message_wrapper.rb b/lib/twitter/direct_messages/welcome_message_wrapper.rb index 22a1c762a..b5d58049b 100644 --- a/lib/twitter/direct_messages/welcome_message_wrapper.rb +++ b/lib/twitter/direct_messages/welcome_message_wrapper.rb @@ -4,7 +4,6 @@ module Twitter module DirectMessages class WelcomeMessageWrapper < Twitter::Identity - attr_reader :created_timestamp object_attr_reader 'DirectMessages::WelcomeMessage', :welcome_message @@ -33,7 +32,7 @@ def build_welcome_message(attrs, text) id: attrs[:id].to_i, created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), text: text, - name: attrs[:name] + name: attrs[:name], } end end diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb index cff61704b..717d6f50c 100644 --- a/lib/twitter/rest/direct_messages/welcome_messages.rb +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -17,9 +17,9 @@ def create_welcome_message(text, name = nil, options = {}) json_options = { welcome_message: { message_data: { - text: text - } - } + text: text, + }, + }, } json_options[:welcome_message][:name] = name if name event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper) @@ -32,12 +32,12 @@ def destroy_welcome_message(*ids) def update_welcome_message(welcome_message_id, text, options = {}) params = { - id: welcome_message_id + id: welcome_message_id, } json_options = { message_data: { - text: text - } + text: text, + }, } event = perform_request_with_object(:json_put, '/1.1/direct_messages/welcome_messages/update.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper, params) event.welcome_message @@ -60,9 +60,9 @@ def welcome_message_list(options = {}) def create_welcome_message_rule(welcome_message_id, options = {}) json_options = { - welcome_message_rule: { - welcome_message_id: welcome_message_id - } + welcome_message_rule: { + welcome_message_id: welcome_message_id, + }, } event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageRuleWrapper) event.welcome_message_rule From 327d11fb345bed162c54f17cecda67a77e208c96 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Fri, 14 Dec 2018 11:11:01 +0100 Subject: [PATCH 25/29] Add specs. --- spec/fixtures/welcome_message.json | 31 +++ spec/fixtures/welcome_message_rule.json | 7 + spec/fixtures/welcome_message_rules.json | 9 + spec/fixtures/welcome_message_with_name.json | 32 +++ spec/fixtures/welcome_messages.json | 56 ++++++ .../direct_messages/welcome_messages_spec.rb | 184 ++++++++++++++++++ 6 files changed, 319 insertions(+) create mode 100644 spec/fixtures/welcome_message.json create mode 100644 spec/fixtures/welcome_message_rule.json create mode 100644 spec/fixtures/welcome_message_rules.json create mode 100644 spec/fixtures/welcome_message_with_name.json create mode 100644 spec/fixtures/welcome_messages.json create mode 100644 spec/twitter/rest/direct_messages/welcome_messages_spec.rb diff --git a/spec/fixtures/welcome_message.json b/spec/fixtures/welcome_message.json new file mode 100644 index 000000000..ab452704a --- /dev/null +++ b/spec/fixtures/welcome_message.json @@ -0,0 +1,31 @@ +{ + "welcome_message": { + "id": "1073273784206012421", + "created_timestamp": "1544723385274", + "message_data": { + "text": "Welcome message text", + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "user_mentions": [ + + ], + "urls": [ + + ] + } + }, + "source_app_id": "1111111" + }, + "apps": { + "1111111": { + "id": "1111111", + "name": "Foobar", + "url": "http://example.com" + } + } +} diff --git a/spec/fixtures/welcome_message_rule.json b/spec/fixtures/welcome_message_rule.json new file mode 100644 index 000000000..7d74912d0 --- /dev/null +++ b/spec/fixtures/welcome_message_rule.json @@ -0,0 +1,7 @@ +{ + "welcome_message_rule": { + "id": "1073279057817731072", + "created_timestamp": "1544724642601", + "welcome_message_id": "1073273784206012421" + } +} diff --git a/spec/fixtures/welcome_message_rules.json b/spec/fixtures/welcome_message_rules.json new file mode 100644 index 000000000..1b81910b5 --- /dev/null +++ b/spec/fixtures/welcome_message_rules.json @@ -0,0 +1,9 @@ +{ + "welcome_message_rules": [ + { + "id": "1073279057817731072", + "created_timestamp": "1544724642601", + "welcome_message_id": "1073273784206012421" + } + ] +} diff --git a/spec/fixtures/welcome_message_with_name.json b/spec/fixtures/welcome_message_with_name.json new file mode 100644 index 000000000..5855de203 --- /dev/null +++ b/spec/fixtures/welcome_message_with_name.json @@ -0,0 +1,32 @@ +{ + "welcome_message": { + "id": "1073276982106996741", + "created_timestamp": "1544724147713", + "message_data": { + "text": "A second welcome message with a name", + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "user_mentions": [ + + ], + "urls": [ + + ] + } + }, + "source_app_id": "1111111", + "name": "welcome_message_name" + }, + "apps": { + "1111111": { + "id": "1111111", + "name": "Foobar", + "url": "http://example.com" + } + } +} diff --git a/spec/fixtures/welcome_messages.json b/spec/fixtures/welcome_messages.json new file mode 100644 index 000000000..2fc74bbac --- /dev/null +++ b/spec/fixtures/welcome_messages.json @@ -0,0 +1,56 @@ +{ + "welcome_messages": [ + { + "id": "1073273784206012421", + "created_timestamp": "1544723385274", + "message_data": { + "text": "Welcome message text updated", + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "user_mentions": [ + + ], + "urls": [ + + ] + } + }, + "source_app_id": "1111111" + }, + { + "id": "1073276982106996741", + "created_timestamp": "1544724147713", + "message_data": { + "text": "A second welcome message with a name", + "entities": { + "hashtags": [ + + ], + "symbols": [ + + ], + "user_mentions": [ + + ], + "urls": [ + + ] + } + }, + "source_app_id": "1111111", + "name": "welcome_message_name" + } + ], + "apps": { + "1111111": { + "id": "1111111", + "name": "Foobar", + "url": "http://example.com" + } + } +} diff --git a/spec/twitter/rest/direct_messages/welcome_messages_spec.rb b/spec/twitter/rest/direct_messages/welcome_messages_spec.rb new file mode 100644 index 000000000..5fed87b2a --- /dev/null +++ b/spec/twitter/rest/direct_messages/welcome_messages_spec.rb @@ -0,0 +1,184 @@ +require 'helper' + +describe Twitter::REST::DirectMessages::WelcomeMessages do + before do + @client = Twitter::REST::Client.new(consumer_key: 'CK', consumer_secret: 'CS', access_token: 'AT', access_token_secret: 'AS') + allow(@client).to receive(:user_id).and_return(22_095_868) + end + + context 'Welcome Messages' do + describe '#create_welcome_message' do + before do + stub_post('/1.1/direct_messages/welcome_messages/new.json').to_return(body: fixture('welcome_message.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.create_welcome_message('Welcome message text') + expect(a_post('/1.1/direct_messages/welcome_messages/new.json')).to have_been_made + end + + it 'returns the created welcome message' do + welcome_message = @client.create_welcome_message('Welcome message text') + expect(welcome_message).to be_a Twitter::DirectMessages::WelcomeMessage + expect(welcome_message.text).to eq('Welcome message text') + expect(welcome_message.id).to eq(1_073_273_784_206_012_421) + end + + it 'can set the welcome message name' do + stub_post('/1.1/direct_messages/welcome_messages/new.json').to_return(body: fixture('welcome_message_with_name.json'), headers: {content_type: 'application/json; charset=utf-8'}) + + welcome_message = @client.create_welcome_message('A second welcome message with a name', 'welcome_message_name') + expect(welcome_message).to be_a Twitter::DirectMessages::WelcomeMessage + expect(welcome_message.text).to eq('A second welcome message with a name') + expect(welcome_message.id).to eq(1_073_276_982_106_996_741) + expect(welcome_message.name).to eq('welcome_message_name') + end + end + + describe '#destroy_welcome_message' do + before do + stub_delete('/1.1/direct_messages/welcome_messages/destroy.json?id=1073273784206012421').to_return(status: 204, body: '', headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.destroy_welcome_message(1_073_273_784_206_012_421) + expect(a_delete('/1.1/direct_messages/welcome_messages/destroy.json?id=1073273784206012421')).to have_been_made + end + + it 'returns nil' do + response = @client.destroy_welcome_message(1_073_273_784_206_012_421) + expect(response).to be_nil + end + end + + describe '#update_welcome_message' do + before do + stub_put('/1.1/direct_messages/welcome_messages/update.json?id=1073273784206012421').to_return(body: fixture('welcome_message.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.update_welcome_message(1_073_273_784_206_012_421, 'Welcome message text') + expect(a_put('/1.1/direct_messages/welcome_messages/update.json?id=1073273784206012421')).to have_been_made + end + + it 'returns the updated welcome message' do + welcome_message = @client.update_welcome_message(1_073_273_784_206_012_421, 'Welcome message text') + expect(welcome_message).to be_a Twitter::DirectMessages::WelcomeMessage + expect(welcome_message.text).to eq('Welcome message text') + expect(welcome_message.id).to eq(1_073_273_784_206_012_421) + end + end + + describe '#welcome_message' do + before do + stub_get('/1.1/direct_messages/welcome_messages/show.json?id=1073273784206012421').to_return(body: fixture('welcome_message.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.welcome_message(1_073_273_784_206_012_421) + expect(a_get('/1.1/direct_messages/welcome_messages/show.json?id=1073273784206012421')).to have_been_made + end + + it 'returns the updated welcome message' do + welcome_message = @client.welcome_message(1_073_273_784_206_012_421) + expect(welcome_message).to be_a Twitter::DirectMessages::WelcomeMessage + expect(welcome_message.text).to eq('Welcome message text') + expect(welcome_message.id).to eq(1_073_273_784_206_012_421) + end + end + + describe '#welcome_message_list' do + before do + stub_get('/1.1/direct_messages/welcome_messages/list.json?count=50').to_return(body: fixture('welcome_messages.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.welcome_message_list + expect(a_get('/1.1/direct_messages/welcome_messages/list.json?count=50')).to have_been_made + end + + it 'returns the updated welcome message' do + welcome_messages = @client.welcome_message_list + expect(welcome_messages).to be_an Array + expect(welcome_messages.size).to eq 2 + expect(welcome_messages.first).to be_a Twitter::DirectMessages::WelcomeMessage + expect(welcome_messages.first.text).to eq('Welcome message text updated') + expect(welcome_messages.first.id).to eq(1_073_273_784_206_012_421) + end + end + end + + context 'Welcome Message Rules' do + describe '#create_welcome_message_rule' do + before do + stub_post('/1.1/direct_messages/welcome_messages/rules/new.json').to_return(body: fixture('welcome_message_rule.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.create_welcome_message_rule(1_073_273_784_206_012_421) + expect(a_post('/1.1/direct_messages/welcome_messages/rules/new.json')).to have_been_made + end + + it 'returns the created welcome message' do + welcome_message_rule = @client.create_welcome_message_rule(1_073_273_784_206_012_421) + expect(welcome_message_rule).to be_a Twitter::DirectMessages::WelcomeMessageRule + expect(welcome_message_rule.id).to eq(1_073_279_057_817_731_072) + expect(welcome_message_rule.welcome_message_id).to eq(1_073_273_784_206_012_421) + end + end + + describe '#destroy_welcome_message_rule' do + before do + stub_delete('/1.1/direct_messages/welcome_messages/rules/destroy.json?id=1073279057817731072').to_return(status: 204, body: '', headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.destroy_welcome_message_rule(1_073_279_057_817_731_072) + expect(a_delete('/1.1/direct_messages/welcome_messages/rules/destroy.json?id=1073279057817731072')).to have_been_made + end + + it 'returns nil' do + response = @client.destroy_welcome_message_rule(1_073_279_057_817_731_072) + expect(response).to be_nil + end + end + + describe '#welcome_message_rule' do + before do + stub_get('/1.1/direct_messages/welcome_messages/rules/show.json?id=1073279057817731072').to_return(body: fixture('welcome_message_rule.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.welcome_message_rule(1_073_279_057_817_731_072) + expect(a_get('/1.1/direct_messages/welcome_messages/rules/show.json?id=1073279057817731072')).to have_been_made + end + + it 'returns the created welcome message' do + welcome_message_rule = @client.welcome_message_rule(1_073_279_057_817_731_072) + expect(welcome_message_rule).to be_a Twitter::DirectMessages::WelcomeMessageRule + expect(welcome_message_rule.id).to eq(1_073_279_057_817_731_072) + expect(welcome_message_rule.welcome_message_id).to eq(1_073_273_784_206_012_421) + end + end + + describe '#welcome_message_rule_list' do + before do + stub_get('/1.1/direct_messages/welcome_messages/rules/list.json?count=50').to_return(body: fixture('welcome_message_rules.json'), headers: {content_type: 'application/json; charset=utf-8'}) + end + + it 'requests the correct resource' do + @client.welcome_message_rule_list + expect(a_get('/1.1/direct_messages/welcome_messages/rules/list.json?count=50')).to have_been_made + end + + it 'returns the updated welcome message' do + welcome_message_rules = @client.welcome_message_rule_list + expect(welcome_message_rules).to be_an Array + expect(welcome_message_rules.size).to eq 1 + expect(welcome_message_rules.first).to be_a Twitter::DirectMessages::WelcomeMessageRule + expect(welcome_message_rules.first.id).to eq(1_073_279_057_817_731_072) + expect(welcome_message_rules.first.welcome_message_id).to eq(1_073_273_784_206_012_421) + end + end + end +end From 472e3b7f99ee299d4cb64bef34b71930e702ddc5 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Fri, 14 Dec 2018 11:45:05 +0100 Subject: [PATCH 26/29] Support entities. --- .../welcome_message_wrapper.rb | 1 + .../welcome_message_with_entities.json | 54 +++++++++++++++++++ .../direct_messages/welcome_messages_spec.rb | 28 ++++++++-- 3 files changed, 78 insertions(+), 5 deletions(-) create mode 100644 spec/fixtures/welcome_message_with_entities.json diff --git a/lib/twitter/direct_messages/welcome_message_wrapper.rb b/lib/twitter/direct_messages/welcome_message_wrapper.rb index b5d58049b..9b17274b8 100644 --- a/lib/twitter/direct_messages/welcome_message_wrapper.rb +++ b/lib/twitter/direct_messages/welcome_message_wrapper.rb @@ -33,6 +33,7 @@ def build_welcome_message(attrs, text) created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), text: text, name: attrs[:name], + entities: attrs.dig(:message_data, :entities) } end end diff --git a/spec/fixtures/welcome_message_with_entities.json b/spec/fixtures/welcome_message_with_entities.json new file mode 100644 index 000000000..bd86c5b58 --- /dev/null +++ b/spec/fixtures/welcome_message_with_entities.json @@ -0,0 +1,54 @@ +{ + "welcome_message": { + "id": "1073522416838733829", + "created_timestamp": "1544782663913", + "message_data": { + "text": "Url: https://t.co/Fv7l28yris and #hashtag and @TwitterSupport", + "entities": { + "hashtags": [ + { + "text": "hashtag", + "indices": [ + 33, + 41 + ] + } + ], + "symbols": [ + + ], + "user_mentions": [ + { + "screen_name": "TwitterSupport", + "name": "Twitter Support", + "id": 17874544, + "id_str": "17874544", + "indices": [ + 46, + 61 + ] + } + ], + "urls": [ + { + "url": "https://t.co/Fv7l28yris", + "expanded_url": "http://example.com/expanded", + "display_url": "example.com/expanded", + "indices": [ + 5, + 28 + ] + } + ] + } + }, + "source_app_id": "1111111" + }, + "apps": { + "1111111": { + "id": "1111111", + "name": "Foobar", + "url": "http://example.com" + } + } +} diff --git a/spec/twitter/rest/direct_messages/welcome_messages_spec.rb b/spec/twitter/rest/direct_messages/welcome_messages_spec.rb index 5fed87b2a..35bc90077 100644 --- a/spec/twitter/rest/direct_messages/welcome_messages_spec.rb +++ b/spec/twitter/rest/direct_messages/welcome_messages_spec.rb @@ -33,6 +33,24 @@ expect(welcome_message.id).to eq(1_073_276_982_106_996_741) expect(welcome_message.name).to eq('welcome_message_name') end + + it 'sets the entities' do + stub_post('/1.1/direct_messages/welcome_messages/new.json').to_return(body: fixture('welcome_message_with_entities.json'), headers: {content_type: 'application/json; charset=utf-8'}) + welcome_message = @client.create_welcome_message('Url: http://example.com/expanded and #hashtag and @TwitterSupport') + expect(welcome_message.hashtags).to be_an(Array) + expect(welcome_message.hashtags.first).to be_a(Twitter::Entity::Hashtag) + expect(welcome_message.hashtags.first.indices).to eq([33,41]) + expect(welcome_message.hashtags.first.text).to eq('hashtag') + expect(welcome_message.user_mentions).to be_an(Array) + expect(welcome_message.user_mentions.first).to be_a(Twitter::Entity::UserMention) + expect(welcome_message.user_mentions.first.indices).to eq([46,61]) + expect(welcome_message.user_mentions.first.id).to eq(17_874_544) + expect(welcome_message.user_mentions.first.name).to eq('Twitter Support') + expect(welcome_message.uris).to be_an(Array) + expect(welcome_message.uris.first).to be_a(Twitter::Entity::URI) + expect(welcome_message.uris.first.indices).to eq([5,28]) + expect(welcome_message.uris.first.display_url).to eq('example.com/expanded') + end end describe '#destroy_welcome_message' do @@ -79,7 +97,7 @@ expect(a_get('/1.1/direct_messages/welcome_messages/show.json?id=1073273784206012421')).to have_been_made end - it 'returns the updated welcome message' do + it 'returns the requested welcome message' do welcome_message = @client.welcome_message(1_073_273_784_206_012_421) expect(welcome_message).to be_a Twitter::DirectMessages::WelcomeMessage expect(welcome_message.text).to eq('Welcome message text') @@ -97,7 +115,7 @@ expect(a_get('/1.1/direct_messages/welcome_messages/list.json?count=50')).to have_been_made end - it 'returns the updated welcome message' do + it 'returns the welcome message list' do welcome_messages = @client.welcome_message_list expect(welcome_messages).to be_an Array expect(welcome_messages.size).to eq 2 @@ -119,7 +137,7 @@ expect(a_post('/1.1/direct_messages/welcome_messages/rules/new.json')).to have_been_made end - it 'returns the created welcome message' do + it 'returns the created welcome message rule' do welcome_message_rule = @client.create_welcome_message_rule(1_073_273_784_206_012_421) expect(welcome_message_rule).to be_a Twitter::DirectMessages::WelcomeMessageRule expect(welcome_message_rule.id).to eq(1_073_279_057_817_731_072) @@ -153,7 +171,7 @@ expect(a_get('/1.1/direct_messages/welcome_messages/rules/show.json?id=1073279057817731072')).to have_been_made end - it 'returns the created welcome message' do + it 'returns the requested welcome message rule' do welcome_message_rule = @client.welcome_message_rule(1_073_279_057_817_731_072) expect(welcome_message_rule).to be_a Twitter::DirectMessages::WelcomeMessageRule expect(welcome_message_rule.id).to eq(1_073_279_057_817_731_072) @@ -171,7 +189,7 @@ expect(a_get('/1.1/direct_messages/welcome_messages/rules/list.json?count=50')).to have_been_made end - it 'returns the updated welcome message' do + it 'returns the welcome message rule list' do welcome_message_rules = @client.welcome_message_rule_list expect(welcome_message_rules).to be_an Array expect(welcome_message_rules.size).to eq 1 From 528b0129e7aba3336c84fc3e48ddab2a5a07466f Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Fri, 14 Dec 2018 11:48:40 +0100 Subject: [PATCH 27/29] Rubocop. --- lib/twitter/direct_messages/welcome_message_wrapper.rb | 2 +- spec/twitter/rest/direct_messages/welcome_messages_spec.rb | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/twitter/direct_messages/welcome_message_wrapper.rb b/lib/twitter/direct_messages/welcome_message_wrapper.rb index 9b17274b8..ee23b671c 100644 --- a/lib/twitter/direct_messages/welcome_message_wrapper.rb +++ b/lib/twitter/direct_messages/welcome_message_wrapper.rb @@ -33,7 +33,7 @@ def build_welcome_message(attrs, text) created_at: Time.at(attrs[:created_timestamp].to_i / 1000.0), text: text, name: attrs[:name], - entities: attrs.dig(:message_data, :entities) + entities: attrs.dig(:message_data, :entities), } end end diff --git a/spec/twitter/rest/direct_messages/welcome_messages_spec.rb b/spec/twitter/rest/direct_messages/welcome_messages_spec.rb index 35bc90077..afae115a8 100644 --- a/spec/twitter/rest/direct_messages/welcome_messages_spec.rb +++ b/spec/twitter/rest/direct_messages/welcome_messages_spec.rb @@ -39,16 +39,16 @@ welcome_message = @client.create_welcome_message('Url: http://example.com/expanded and #hashtag and @TwitterSupport') expect(welcome_message.hashtags).to be_an(Array) expect(welcome_message.hashtags.first).to be_a(Twitter::Entity::Hashtag) - expect(welcome_message.hashtags.first.indices).to eq([33,41]) + expect(welcome_message.hashtags.first.indices).to eq([33, 41]) expect(welcome_message.hashtags.first.text).to eq('hashtag') expect(welcome_message.user_mentions).to be_an(Array) expect(welcome_message.user_mentions.first).to be_a(Twitter::Entity::UserMention) - expect(welcome_message.user_mentions.first.indices).to eq([46,61]) + expect(welcome_message.user_mentions.first.indices).to eq([46, 61]) expect(welcome_message.user_mentions.first.id).to eq(17_874_544) expect(welcome_message.user_mentions.first.name).to eq('Twitter Support') expect(welcome_message.uris).to be_an(Array) expect(welcome_message.uris.first).to be_a(Twitter::Entity::URI) - expect(welcome_message.uris.first.indices).to eq([5,28]) + expect(welcome_message.uris.first.indices).to eq([5, 28]) expect(welcome_message.uris.first.display_url).to eq('example.com/expanded') end end From 830fcdff62a8e2c907973f3dd8ca4c2078f77c14 Mon Sep 17 00:00:00 2001 From: Fabien Chaynes Date: Mon, 17 Dec 2018 11:02:30 +0100 Subject: [PATCH 28/29] Change variable names. --- .../rest/direct_messages/welcome_messages.rb | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/twitter/rest/direct_messages/welcome_messages.rb b/lib/twitter/rest/direct_messages/welcome_messages.rb index 717d6f50c..22b44d447 100644 --- a/lib/twitter/rest/direct_messages/welcome_messages.rb +++ b/lib/twitter/rest/direct_messages/welcome_messages.rb @@ -22,8 +22,8 @@ def create_welcome_message(text, name = nil, options = {}) }, } json_options[:welcome_message][:name] = name if name - event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper) - event.welcome_message + welcome_message_wrapper = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper) + welcome_message_wrapper.welcome_message end def destroy_welcome_message(*ids) @@ -39,21 +39,21 @@ def update_welcome_message(welcome_message_id, text, options = {}) text: text, }, } - event = perform_request_with_object(:json_put, '/1.1/direct_messages/welcome_messages/update.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper, params) - event.welcome_message + welcome_message_wrapper = perform_request_with_object(:json_put, '/1.1/direct_messages/welcome_messages/update.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageWrapper, params) + welcome_message_wrapper.welcome_message end def welcome_message(id, options = {}) options = options.dup options[:id] = id - event = perform_get_with_object('/1.1/direct_messages/welcome_messages/show.json', options, Twitter::DirectMessages::WelcomeMessageWrapper) - event.welcome_message + welcome_message_wrapper = perform_get_with_object('/1.1/direct_messages/welcome_messages/show.json', options, Twitter::DirectMessages::WelcomeMessageWrapper) + welcome_message_wrapper.welcome_message end def welcome_message_list(options = {}) limit = options.fetch(:count, 20) - events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_messages, Twitter::DirectMessages::WelcomeMessageWrapper) - events.collect(&:welcome_message) + welcome_message_wrappers = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_messages, Twitter::DirectMessages::WelcomeMessageWrapper) + welcome_message_wrappers.collect(&:welcome_message) end # Welcome Message Rule @@ -64,8 +64,8 @@ def create_welcome_message_rule(welcome_message_id, options = {}) welcome_message_id: welcome_message_id, }, } - event = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageRuleWrapper) - event.welcome_message_rule + rule_wrapper = perform_request_with_object(:json_post, '/1.1/direct_messages/welcome_messages/rules/new.json', json_options.merge!(options), Twitter::DirectMessages::WelcomeMessageRuleWrapper) + rule_wrapper.welcome_message_rule end def destroy_welcome_message_rule(*ids) @@ -75,14 +75,14 @@ def destroy_welcome_message_rule(*ids) def welcome_message_rule(id, options = {}) options = options.dup options[:id] = id - event = perform_get_with_object('/1.1/direct_messages/welcome_messages/rules/show.json', options, Twitter::DirectMessages::WelcomeMessageRuleWrapper) - event.welcome_message_rule + rule_wrapper = perform_get_with_object('/1.1/direct_messages/welcome_messages/rules/show.json', options, Twitter::DirectMessages::WelcomeMessageRuleWrapper) + rule_wrapper.welcome_message_rule end def welcome_message_rule_list(options = {}) limit = options.fetch(:count, 20) - events = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/rules/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_message_rules, Twitter::DirectMessages::WelcomeMessageRuleWrapper) - events.collect(&:welcome_message_rule) + rule_wrappers = perform_get_with_cursor('/1.1/direct_messages/welcome_messages/rules/list.json', options.merge!(no_default_cursor: true, count: 50, limit: limit), :welcome_message_rules, Twitter::DirectMessages::WelcomeMessageRuleWrapper) + rule_wrappers.collect(&:welcome_message_rule) end end end From b6dc83ae8f84b7de2764a6775279ee63f59650c5 Mon Sep 17 00:00:00 2001 From: kondo takeshi Date: Fri, 2 Nov 2018 01:31:26 +0900 Subject: [PATCH 29/29] Update the maximum available favorites ref: https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-favorites-list --- lib/twitter/rest/favorites.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twitter/rest/favorites.rb b/lib/twitter/rest/favorites.rb index 339d64822..e47d4f0c7 100644 --- a/lib/twitter/rest/favorites.rb +++ b/lib/twitter/rest/favorites.rb @@ -20,14 +20,14 @@ module Favorites # Returns the 20 most recent favorite Tweets for the authenticating user # # @param options [Hash] A customizable set of options. - # @option options [Integer] :count Specifies the number of records to retrieve. Must be less than or equal to 100. + # @option options [Integer] :count Specifies the number of records to retrieve. Must be less than or equal to 200. # @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. # @overload favorites(user, options = {}) # Returns the 20 most recent favorite Tweets for the specified user # # @param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. # @param options [Hash] A customizable set of options. - # @option options [Integer] :count Specifies the number of records to retrieve. Must be less than or equal to 100. + # @option options [Integer] :count Specifies the number of records to retrieve. Must be less than or equal to 200. # @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. def favorites(*args) arguments = Twitter::Arguments.new(args)