27  Web Scraping Part 1 — Workbook

Author

Melanie Walsh

Inspired by web scraping lessons from Lauren Klein and Allison Parrish

In this lesson, we’re going to introduce how to “scrape” data from the internet with the Python libraries requests and BeautifulSoup.

😺 Kittens toy website: http://static.decontextualize.com/kittens.html

27.1 Responses and Requests

To programmatically access the text data attached to every URL, we can use a Python library called requests.

When you type in a URL in your search address bar, you’re sending an HTTP request for a web page, and the server which stores that web page will accordingly send back a response, some web page data that your browser will render.

27.2 Import Requests

import requests

27.3 Get HTML Data

With the .get() method, we can request to “get” web page data for a specific URL, which we will store in a varaible called response.

response = requests.get("https://www.dailyscript.com/scripts/Juno.txt")

27.4 HTTP Status Code

If we check out response, it will simply tell us its HTTP response code, aka whether the request was successful or not.

“200” is a successful response, while “404” is a common “Page Not Found” error.

response
<Response [200]>

Let’s see what happens if we change the title of the movie from Juno to Guno in the URL…

bad_response = requests.get("http://www.scifiscripts.com/scripts/Guno.txt")
bad_response
<Response [404]>

27.4.1 Extract Text From Web Page

To actually get at the text data in the reponse, we need to use .text, which we will save in a variable called html_string. The text data that we’re getting is formatted in the HTML markup language, which we will talk more about in the BeautifulSoup section below.

html_string = response.text
print(html_string)

27.5 Extract Text From Multiple Web Pages

urls = ['https://www.dailyscript.com/scripts/Juno.txt',
        'https://www.dailyscript.com/scripts/Titanic.txt',
        'http://www.scifiscripts.com/scripts/Ghostbusters.txt']

We can use a for loop and iterate through a list of screenplay urls called urls and then print out the first 500 characters for each screenplay.

for url in urls:
    response = requests.get(url)
    html_string = response.text
    print(html_string[:500])

27.6 HTML & BeautifulSoup

Not all web pages will be as easy to scrape as these screenplay files, however. If web pages are messy and complicated, how can we extract just the things that we want?

Well, we can use a Python library called BeautifulSoup, but first we need to learn a little about how web pages are written.

Poet and professor Allison Parrish made a toy website called “Kittens and the TV Shows They Love.” It can be found at the following URL: http://static.decontextualize.com/kittens.html

If we use our requests library on this Kittens TV website, this is what we get:

response = requests.get("http://static.decontextualize.com/kittens.html")
html_string = response.text
print(html_string)

This is an HTML document. HTML stands for HyperText Markup Language. It is the standard language for writing web page documents. The most important thing you need to know about HTML is that the language uses HTML “tags” to represent different elements, such as a main header <h1>.

HTML Tag Explanation
<!DOCTYPE>  Defines document type
<html> Defines HTML document
<head> Main information about document
<title> Title for document
<body> Document body
<h1> to <h6> Headings
<p> Paragraph
<br> Line break
<!--comment here--> Comment
<img> Image
<a> Hyperlink
<ul> Unordered list
<ol> Ordered list
<li> List item
<style> Style information for a document
<div> Section in a document
<span> Section in a document
class= Certain kind of element, can apply to multiple elements
id= Unique identifier for an element

HTML tags often, but not always, require a “closing” tag. For example, the main header “Kittens and the TV Shows They Love” will be surrounded by <h1> (opening tag) and </h1> (closing tag) on either side: <h1>Kittens and the TV Shows They Love</h1>

27.7 Extract HTML Elements

To use BeautifulSoup, we need to import it.

from bs4 import BeautifulSoup

To make a BeautifulSoup document, we call BeautifulSoup() with two parameters: the html_string from our HTTP request and the kind of parser that we want to use, which will always be "html.parser" for our purposes.

response = requests.get("http://static.decontextualize.com/kittens.html")
html_string = response.text

document = BeautifulSoup(html_string, "html.parser")

We can use the .find() method to find and extract certain elements, such as a main header.

document.find("h1")

If we want only the text contained between those tags, we can use .text to extract just the text.

document.find("h1").text

Find the HTML element that contains an image.

document.find("img")

You can also extract multiple HTML elements at a time with .find_all()

document.find_all("img")

You can extract elements that are only of a certain class:

document.find_all("div", attrs={"class": "kitten"})

27.7.1 Your Turn!

Find the name of one of the kittens and then return the text of the name (either “Fluffy” or “Monsieur Whiskers”).

To do so, open the web page (http://static.decontextualize.com/kittens.html) and then use your Developer Tools to find the HTML tag associated with the kitten names.

# Your code here

27.7.2 Extract Multiple HTML Elements

Let’s try to extract the text from all the header2 elements:

document.find_all("h2").text

Uh oh. That didn’t work! In order to extract text data from multiple HTML elements, we need a for loop and some list-building.

all_h2_headers = document.find_all("h2")
all_h2_headers

First we will make an empty list called h2_headers.

We will loop through the headers, grab the .text, put it into a variable called header_contents, then .append() it to our h2_headers list.

h2_headers = []
for header in all_h2_headers:
    header_contents = header.text
    h2_headers.append(header_contents)
h2_headers

🚨 Heads up! New Python concept!🚨

You can also use something called a list comprehension to make a new Python list in a single line of code.

h2_headers = [header.text for header in all_h2_headers]
h2_headers

27.8 Your Turn!

Ok so now we’ve learned a little bit about how to use BeautifulSoup to parse HTML documents. So how would we apply what we’ve learned to extract Missy Elliott lyrics?

response = requests.get("https://genius.com/Missy-elliott-work-it-lyrics")
html_str = response.text

document = BeautifulSoup(html_str, "html.parser")
document

<!DOCTYPE html>

<html class="snarly apple_music_player--enabled bagon_song_page--enabled song_stories_public_launch--enabled react_forums--disabled" lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<base href="//genius.com/" target="_top"/>
<script type="text/javascript">
//<![CDATA[

  var _sf_startpt=(new Date()).getTime();
  if (window.performance && performance.mark) {
    window.performance.mark('parse_start');
  }

//]]>
</script>
<title>Missy Elliott – Work It Lyrics | Genius Lyrics</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width=device-width,initial-scale=1" name="viewport"/>
<meta content="app-id=709482991" name="apple-itunes-app"/>
<link href="https://assets.genius.com/images/apple-touch-icon.png?1616532842" rel="apple-touch-icon"/>
<link href="https://assets.genius.com/images/apple-touch-icon.png?1616532842" rel="apple-touch-icon"/>
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
<meta content="on" http-equiv="cleartype"/>
<meta content="f63347d284f184b0" name="y_key"/>
<meta content="Genius" property="og:site_name">
<meta content="265539304824" property="fb:app_id">
<meta content="308252472676410" property="fb:pages">
<link href="https://genius.com/opensearch.xml" rel="search" title="Genius" type="application/opensearchdescription+xml"/>
<script>
!function(){if('PerformanceLongTaskTiming' in window){var g=window.__tti={e:[]};
g.o=new PerformanceObserver(function(l){g.e=g.e.concat(l.getEntries())});
g.o.observe({entryTypes:['longtask']})}}();
</script>
<script>
  var CURRENT_USER = null;
  var CANONICAL_DOMAIN = "genius.com";
  var CANONICAL_DOMAIN_PARTS_LENGTH = 2;
  var CURRENT_TAG = {"tag":{"always_allow_personal_annotation":null,"beefy":true,"created_at":"2014-05-15T20:10:15Z","deleted_at":null,"description":"Rap Genius is dedicated to crowd-sourced (and [artist](http://rapgenius.com/Nas)/[producer](http://rapgenius.com/youngchopbeatz)-sourced) annotation of rap lyrics/[beats](/tags/producer-genius), from [\"Rapper's Delight\"](http://rapgenius.com/Sugar-hill-gang-rappers-delight-lyrics) to [*To Pimp A Butterfly.*](http://genius.com/Kendrick-lamar-to-pimp-a-butterfly-album-art-track-list-lyrics) Fan favorites [Rap Stats](http://genius.com/rapstats) & [The Rap Map](http://genius.com/map/) also call Rap Genius home. \r\n\r\nFind out all the latest on [Twitter](https://twitter.com/Genius) and [Facebook.](https://www.facebook.com/geniusdotcom)","designation":"featured_music","google_analytics_table_id":"ga:88245212","id":1434,"image_url":"https://images.rapgenius.com/922b8f934a36ecffb07c4cd83ecfbf2d.600x600x1.png","languages_store":{},"logical_name":"rap","music":true,"name":"Rap Genius","slug":"rap","taggings_count":1857277,"twitter_name":"Genius","updated_at":"2021-03-25T16:44:40Z"}};
  var TRACKING_DATA = {"Song ID":4176,"Title":"Work It","Primary Artist":"Missy Elliott","Primary Artist ID":1529,"Primary Album":"Under Construction","Primary Album ID":6639,"Tag":"rap","Primary Tag":"rap","Primary Tag ID":1434,"Music?":true,"Annotatable Type":"Song","Annotatable ID":4176,"featured_video":true,"cohort_ids":[],"has_verified_callout":false,"has_featured_annotation":true,"created_at":"2011-02-08T07:55:31Z","created_month":"2011-02-01","created_year":2011,"song_tier":"C","Has Recirculated Articles":true,"Lyrics Language":"en","Has Song Story":false,"Song Story ID":null,"Has Apple Match":true,"Release Date":"2002-09-01","NRM Tier":null,"NRM Target Date":null,"Has Description":true,"Has Youtube URL":true,"Has Translation Q&A":false,"Comment Count":7};
  var VALID_SUBDOMAINS = ["non-music","rap","rock","country","r-b","pop"];
  var EMBEDLY_KEY = "fc778e44915911e088ae4040f9f86dcd";
  var MOBILE_DEVICE = false;
  var APP_CONFIG = {"env":"production","api_root_url":"/api","genius_live_launched":true,"genius_live_launch_link":"https://live.genius.com","microsite_label":"Collective Sounds","microsite_url":"http://so.genius.com/SXlZXUT","transform_domain":"transform.genius.com","facebook_app_id":"265539304824","facebook_opengraph_api_version":"8.0","pusher_app_key":"6d893fcc6a0c695853ac","embedly_key":"fc778e44915911e088ae4040f9f86dcd","a9_pub_id":"3459","app_store_url":"https://itunes.apple.com/us/app/genius-by-rap-genius-search/id709482991?ls=1&mt=8","play_store_url":"https://play.google.com/store/apps/details?id=com.genius.android","soundcloud_client_id":"632c544d1c382f82526f369877aab5c0","annotator_context_length":32,"comment_reasons":[{"_type":"comment_reason","context_url":"https://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"R","handle":"Restates the line","id":1,"name":"restates-the-line","raw_name":"restates the line","requires_body":false,"slug":"restates_the_line"},{"_type":"comment_reason","context_url":"https://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"S","handle":"It’s a stretch","id":2,"name":"its-a-stretch","raw_name":"it’s a stretch","requires_body":false,"slug":"its_a_stretch"},{"_type":"comment_reason","context_url":"https://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"M","handle":"Missing something","id":3,"name":"missing-something","raw_name":"missing something","requires_body":false,"slug":"missing_something"},{"_type":"comment_reason","context_url":"https://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"…","handle":"Other","id":4,"name":"other","raw_name":"other","requires_body":true,"slug":"other"}],"comment_reasons_help_url":"https://genius.com/8846441/Genius-how-genius-works/More-on-annotations","filepicker_api_key":"Ar03MDs73TQm241ZgLwfjz","filepicker_policy":"eyJleHBpcnkiOjIzNTEwOTE1NTgsImNhbGwiOlsicGljayIsInJlYWQiLCJzdG9yZSIsInN0YXQiLCJjb252ZXJ0Il19","filepicker_signature":"68597b455e6c09bce0bfd73f758e299c95d49a5d5c8e808aaf4877da7801c4da","filepicker_s3_image_bucket":"filepicker-images-rapgenius","available_roles":["moderator","mega_boss","in_house_staff","verified_artist","meme_artist","engineer","editor","educator","staff","whitehat","tech_liaison","mediator"],"canonical_domain":"genius.com","enable_angular_debug":false,"fact_track_launch_article_url":"https://genius.com/a/genius-and-spotify-together","user_authority_roles":["moderator","editor","mediator"],"user_verification_roles":["community_artist","verified_artist","meme_artist"],"user_vote_types_for_delete":["votes","upvotes","downvotes"],"brightcove_account_id":"4863540648001","mixpanel_delayed_events_timeout":"86400","unreviewed_annotation_tooltip_info_url":"https://genius.com/8846524/Genius-how-genius-works/More-on-editorial-review","video_placements":{"desktop_song_page":[{"name":"sidebar","min_relevance":"high","fringe_min_relevance":"low","max_videos":0},{"name":"sidebar_thumb","min_relevance":"medium","fringe_min_relevance":"low","max_videos":0},{"name":"recirculated","min_relevance":"low","max_videos":3}],"mobile_song_page":[{"name":"footer","min_relevance":"medium","max_videos":1},{"name":"recirculated","min_relevance":"low","max_videos":3}],"desktop_artist_page":[{"name":"sidebar","min_relevance":"medium","fringe_min_relevance":"low","max_videos":2}],"mobile_artist_page":[{"name":"carousel","min_relevance":"medium","fringe_min_relevance":"low","max_videos":5}],"amp_song_page":[{"name":"footer","min_relevance":"medium","max_videos":1}],"amp_video_page":[{"name":"related","min_relevance":"low","max_videos":8}],"desktop_video_page":[{"name":"series_related","min_relevance":"low","max_videos":8,"series":true},{"name":"related","min_relevance":"low","max_videos":8}],"desktop_article_page":[{"name":"carousel","min_relevance":"low","max_videos":5}],"mobile_article_page":[{"name":"carousel","min_relevance":"low","max_videos":5}],"desktop_album_page":[{"name":"sidebar","min_relevance":"medium","fringe_min_relevance":"low","max_videos":1}],"amp_album_page":[{"name":"carousel","min_relevance":"low","max_videos":5}]},"app_name":"rapgenius-cedar","vttp_parner_id":"719c82b0-266e-11e7-827d-7f7dc47f6bc0","default_cover_art_url":"https://assets.genius.com/images/default_cover_art.png?1616532842","sizies_base_url":"https://t2.genius.com/unsafe","max_line_item_event_count":10,"dmp_match_threshold":0.05,"ab_tests":[],"external_song_match_purposes":["streaming_service_lyrics","streaming_service_player"],"release_version":"Production 836a3e90","react_bugsnag_api_key":"a3ab84a89baa4ee509c9e3f71b9296e0","mixpanel_token":"77967c52dc38186cc1aadebdd19e2a82","mixpanel_enabled":true,"get_involved_page_url":"https://genius.com/Genius-getting-involved-with-genius-projects-annotated","zapier_ccpa_webhook":"https://hooks.zapier.com/hooks/catch/6262628/o6ekdxm/","solidarity_text":"","solidarity_url":"http://so.genius.com/aroYTdx","track_gdpr_banner_shown_event":true,"show_cmp_modal":true,"react_song_page_survey_url":"https://forms.gle/eKWggGyv2qKojycd8","brightcove_mobile_thumbnail_web_player_id":"SyGQSOxol","brightcove_modal_web_player_id":"S1LI5bh0","brightcove_song_story_web_player_id":"SkfSovRVf","brightcove_standard_web_player_id":"S1ZcmcOC1x","brightcove_standard_no_autoplay_web_player_id":"ByRtIUBvx","brightcove_sitemap_player_id":"BJfoOE1ol"};
  var SESSION_CONFIG = {"current_user":null,"taboola_enabled":false,"fringe_enabled":true,"log_client_metrics":false,"show_ads":true,"ccpaEnabled":true};
  var AD_CONFIG = {"ad_placements":{"amp_article_sticky":{"sizes":[[300,50],[320,50]],"a9":true,"kv":{"is_atf":false}},"amp_article_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_article_footer_prebid"}}]},"amp_album_sticky":{"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_album_sticky_prebid"}}]},"amp_album_footer":{"sizes":[[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_album_footer_prebid"}}]},"amp_song_annotation":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294868"}},{"bidder":"ix","params":{"id":10,"siteID":194719}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613918"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_annotation_prebid"}}]},"amp_song_below_player":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_song_below_player_prebid"}}]},"amp_song_below_song_bio":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294916"}},{"bidder":"ix","params":{"id":8,"siteID":194716}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613910"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_below_song_bio_prebid"}}]},"amp_song_leaderboard":{"sizes":[[320,50]],"a9":true,"kv":{"is_atf":true},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"13937404"}},{"bidder":"ix","params":{"id":25,"siteID":300787}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"1051268"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_leaderboard_prebid"}}]},"amp_song_medium1":{"sizes":[[300,250],[320,480]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294891"}},{"bidder":"ix","params":{"id":1,"siteID":194712}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613900"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium1_prebid"}}]},"amp_song_medium2":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294897"}},{"bidder":"ix","params":{"id":5,"siteID":194713}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613902"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium2_prebid"}}]},"amp_song_medium3":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294900"}},{"bidder":"ix","params":{"id":6,"siteID":194714}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613906"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium3_prebid"}}]},"amp_song_medium_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294876"}},{"bidder":"ix","params":{"id":7,"siteID":194715}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613908"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium_footer_prebid"}}]},"amp_song_q_and_a":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294908"}},{"bidder":"ix","params":{"id":11,"siteID":194720}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613920"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_q_and_a_prebid"}}]},"amp_song_sticky":{"sizes":[[300,50],[320,50]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294881"}},{"bidder":"ix","params":{"id":3,"siteID":194711}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613898"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_sticky_prebid"}}]},"amp_song_interstitial":{"sizes":[[320,480]],"kv":{"is_atf":true}},"amp_song_medium1_interscroller":{"sizes":[[320,480]],"kv":{"is_atf":false}},"amp_video_leaderboard":{"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_video_leaderboard_prebid"}}]},"android_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"android_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"android_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"brightcove_article_web_player":{"sizes":[[640,360]]},"brightcove_modal_web_player":{"sizes":[[640,360]]},"brightcove_article_list_web_player":{"sizes":[[640,360]]},"brightcove_mobile_thumbnail_web_player":{"sizes":[[640,360]]},"desktop_album_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"kv":{"is_atf":true},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_album_leaderboard_prebid"}}]},"desktop_album_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":true},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_album_sidebar_prebid"}}]},"desktop_article_sidebar":{"sizes":[[300,600],[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_article_sidebar_prebid"}}]},"desktop_article_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"kv":{"is_atf":true}},"desktop_article_skin":{"sizes":[[1700,800],[1700,1200]],"kv":{"is_atf":true}},"desktop_artist_leaderboard":{"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_artist_leaderboard_prebid"}}]},"desktop_artist_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_artist_sidebar_prebid"}}]},"desktop_discussion_leaderboard":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_discussion_leaderboard_prebid"}}]},"desktop_discussion_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250]},"desktop_forum_leaderboard":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90]},"desktop_forum_medium1":{"sizes":[[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_forum_medium1_prebid"}}]},"desktop_home_footer":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90]},"desktop_home_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,1],[4,1]],"a9":true,"kv":{"is_atf":true}},"desktop_home_promo_unit":{"refresh_unsafe":true,"sizes":[[2,1]]},"mobile_home_promo_unit":{"refresh_unsafe":true,"sizes":[[2,1]]},"desktop_home_skin":{"sizes":[[1700,800],[1700,1200]],"kv":{"is_atf":true}},"desktop_search_leaderboard":{"sizes":[[970,250],[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_search_leaderboard_prebid"}}]},"desktop_search_sidebar":{"sizes":[[300,250],[300,600]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_search_sidebar_prebid"}}]},"desktop_song_about_leaderboard":{"sizes":[[970,250],[728,90]],"placeholder_size":[728,90],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783318"}}]},"desktop_song_about_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783319"}}]},"desktop_song_annotation":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"has_only_dynamic_placements":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294796"}},{"bidder":"ix","params":{"siteId":194718,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639856"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"399321791"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_annotation_prebid"}}]},"desktop_song_comments":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"has_only_dynamic_placements":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294806"}},{"bidder":"ix","params":{"siteId":194722,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639858"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703511"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_comments_prebid"}}]},"desktop_song_comments_leaderboard":{"sizes":[[970,250],[728,90]],"placeholder_size":[728,90],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783321"}}]},"desktop_song_comments_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true},"desktop_song_inread":{"sizes":[[1,1],[1,2],[300,250],[336,280],[320,480],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476342"}},{"bidder":"ix","params":{"siteId":201300,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660418"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"351297791"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread_prebid"}}]},"desktop_song_inread2":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476344"}},{"bidder":"ix","params":{"siteId":201301,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660420"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464408951"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread2_prebid"}}]},"desktop_song_inread3":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476345"}},{"bidder":"ix","params":{"id":21,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660424"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464409071"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread3_prebid"}}]},"desktop_song_lyrics_inread":{"sizes":[[300,250],[728,90],[970,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783309"}}]},"desktop_song_lyrics_inread2":{"sizes":[[300,250],[728,90],[970,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783310"}}]},"desktop_song_lyrics_inread3":{"sizes":[[300,250],[728,90],[970,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783314"}}]},"desktop_song_leaderboard":{"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"kv":{"is_atf":true},"master_on_page":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294811"}},{"bidder":"ix","params":{"siteId":197229,"size":[728,90]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639864"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_leaderboard_prebid"}}]},"desktop_song_combined_leaderboard":{"sizes":[[728,90],[970,250],[4,1]],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783264"}}]},"desktop_song_lyrics_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783298"}}]},"desktop_song_lyrics_sidebar2":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783301"}}]},"desktop_song_lyrics_sidebar3":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783306"}}]},"desktop_song_lyrics_sidebar4":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783307"}}]},"desktop_song_lyrics_footer":{"sizes":[[300,250],[300,600],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294823"}},{"bidder":"ix","params":{"siteId":194710,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639860"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"397849871"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_lyrics_footer_prebid"}}]},"desktop_song_marquee":{"sizes":[[4,1]],"refresh_unsafe":true,"kv":{"is_atf":true}},"desktop_song_medium1":{"sizes":[[300,600],[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294830"}},{"bidder":"ix","params":{"siteId":194709,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639862"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346199471"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_medium1_prebid"}}]},"desktop_song_q_and_a":{"sizes":[[300,250]],"a9":true,"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11474887"}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660286"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464408711"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_q_and_a_prebid"}}]},"desktop_song_sidebar_top":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11621942"}},{"bidder":"ix","params":{"siteId":221945,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"682610"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"21615783137"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_sidebar_top_prebid"}}]},"desktop_user_leaderboard":{"master_on_page":true,"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_user_leaderboard_prebid"}}]},"desktop_user_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250]},"desktop_video_sidebar":{"sizes":[[300,250],[300,600]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_video_sidebar_prebid"}}]},"mobile_artist_leaderboard":{"master_on_page":true,"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_artist_leaderboard_prebid"}}]},"mobile_artist_footer":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_artist_footer_prebid"}}]},"mobile_discussion_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_discussion_leaderboard_prebid"}}]},"mobile_home_adhesion":{"master_on_page":true,"sizes":[[320,50],[320,100]],"a9":true,"kv":{"is_atf":true}},"mobile_home_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false}},"mobile_forum_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50]},"mobile_search_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_search_leaderboard_prebid"}}]},"mobile_search_footer":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_search_footer_prebid"}}]},"mobile_song_annotation":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294868"}},{"bidder":"ix","params":{"siteId":194719,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613918"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"399321431"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_annotation_prebid"}}]},"mobile_song_interstitial":{"out_of_page":true,"sizes":[[1,1]],"kv":{"is_atf":true}},"mobile_song_comments":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294870"}},{"bidder":"ix","params":{"siteId":194721,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613922"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703391"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_comments_prebid"}}]},"mobile_song_footer":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294876"}},{"bidder":"ix","params":{"siteId":194715,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613908"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"395129471"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_footer_prebid"}}]},"mobile_song_lyrics_header":{"sizes":[[320,50],[320,100]],"a9":true,"kv":{"is_atf":true},"master_on_page":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"13937403"}},{"bidder":"ix","params":{"id":26,"siteID":300788}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"1051274"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_lyrics_header_prebid"}}]},"mobile_song_lyrics_header_adhesion":{"sizes":[[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":true},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294881"}},{"bidder":"ix","params":{"siteId":194711,"size":[300,50]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613898"}}]},"mobile_song_medium1":{"sizes":[[1,1],[1,2],[300,250],[320,480]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294891"}},{"bidder":"ix","params":{"siteId":194712,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613900"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346200911"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium1_prebid"}}]},"mobile_song_medium2":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294897"}},{"bidder":"ix","params":{"siteId":194713,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613902"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346201631"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium2_prebid"}}]},"mobile_song_medium3":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294900"}},{"bidder":"ix","params":{"siteId":194714,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613906"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703151"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium3_prebid"}}]},"mobile_song_q_and_a":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294908"}},{"bidder":"ix","params":{"siteId":194720,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613920"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703271"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_q_and_a_prebid"}}]},"mobile_song_song_bio":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294916"}},{"bidder":"ix","params":{"siteId":194716,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613910"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703991"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_song_bio_prebid"}}]},"mobile_user_leaderboard":{"master_on_page":true,"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_user_leaderboard_prebid"}}]},"mobile_user_footer":{"sizes":[[300,250]],"a9":true},"web_annotator_annotation":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false}}},"dfp_network_id":"342026871","a9_pub_id":"3459","prebid":{"priceGranularity":{"buckets":[{"max":1.0,"increment":0.01},{"max":5.0,"increment":0.02},{"max":20.0,"increment":0.1}]},"bidderSettings":{"districtmDMX":{"bidCpmAdjustment":0.9}},"sizes":[[970,250],[970,90],[728,90],[468,60],[336,280],[300,50],[300,250],[300,600],[320,100],[320,50],[1,2]],"experimental_bidders":[]},"platform":"desktop","prebid_timeout":1000,"prebid_terminal_timeout":1500,"header_bidding_enabled":true,"prebid_server_enabled":false,"prebid_server_timeout":400,"prebid_server":{"appnexus":{"account_id":"c438d9e0-0182-4737-8ad7-68bcaf49d76e","endpoint":"https://prebid.adnxs.com/pbs/v1/openrtb2/auction","sync_endpoint":"https://prebid.adnxs.com/pbs/v1/cookie_sync"},"rubicon":{"account_id":"15874","endpoint":"https://prebid-server.rubiconproject.com/openrtb2/auction","sync_endpoint":"https://prebid-server.rubiconproject.com/cookie_sync"}},"ias_enabled":true,"ias_pubid":"927569","cmp_enabled":false,"consent_timeout":10000}
  var ANALYTICS_CONFIG = {"enabled":true,"mixpanel_enabled":true,"comscore_client_id":"17151659","quantcast_account":"p-f3CPQ6vHckedE","librato_web_client_host":"librato-collector.genius.com"}
  var TOP_LEVEL_BLOCK_CONTAINERS = ["address","article","aside","blockquote","div","dl","fieldset","footer","form","h1","h2","h3","h4","h5","h6","header","menu","nav","ol","p","pre","section","table","ul"];
  var TOP_LEVEL_STANDALONE_BLOCKS = ["img","hr"];
</script>
<script async="" src="https://www.youtube.com/iframe_api"></script>
<script defer="" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
  window['Genius.cmp'] = window['Genius.cmp'] || [];
</script>
<!--sse-->
<script>window['Genius.ads'] = window['Genius.ads'] || [];</script>
<script defer="true" src="https://assets.genius.com/javascripts/compiled/ads-39ae9f8425226eac63b1.js" type="text/javascript"></script>
<script async="true" src="https://www.googletagservices.com/tag/js/gpt.js" type="text/javascript"></script>
<script>
!function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
</script>
<script>
    window['Genius.ads'].push(function(ads) {
      var config = {"ad_placements":{"amp_article_sticky":{"sizes":[[300,50],[320,50]],"a9":true,"kv":{"is_atf":false}},"amp_article_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_article_footer_prebid"}}]},"amp_album_sticky":{"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_album_sticky_prebid"}}]},"amp_album_footer":{"sizes":[[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_album_footer_prebid"}}]},"amp_song_annotation":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294868"}},{"bidder":"ix","params":{"id":10,"siteID":194719}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613918"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_annotation_prebid"}}]},"amp_song_below_player":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_song_below_player_prebid"}}]},"amp_song_below_song_bio":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294916"}},{"bidder":"ix","params":{"id":8,"siteID":194716}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613910"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_below_song_bio_prebid"}}]},"amp_song_leaderboard":{"sizes":[[320,50]],"a9":true,"kv":{"is_atf":true},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"13937404"}},{"bidder":"ix","params":{"id":25,"siteID":300787}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"1051268"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_leaderboard_prebid"}}]},"amp_song_medium1":{"sizes":[[300,250],[320,480]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294891"}},{"bidder":"ix","params":{"id":1,"siteID":194712}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613900"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium1_prebid"}}]},"amp_song_medium2":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294897"}},{"bidder":"ix","params":{"id":5,"siteID":194713}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613902"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium2_prebid"}}]},"amp_song_medium3":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294900"}},{"bidder":"ix","params":{"id":6,"siteID":194714}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613906"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium3_prebid"}}]},"amp_song_medium_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294876"}},{"bidder":"ix","params":{"id":7,"siteID":194715}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613908"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium_footer_prebid"}}]},"amp_song_q_and_a":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294908"}},{"bidder":"ix","params":{"id":11,"siteID":194720}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613920"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_q_and_a_prebid"}}]},"amp_song_sticky":{"sizes":[[300,50],[320,50]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294881"}},{"bidder":"ix","params":{"id":3,"siteID":194711}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613898"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_sticky_prebid"}}]},"amp_song_interstitial":{"sizes":[[320,480]],"kv":{"is_atf":true}},"amp_song_medium1_interscroller":{"sizes":[[320,480]],"kv":{"is_atf":false}},"amp_video_leaderboard":{"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_video_leaderboard_prebid"}}]},"android_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"android_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"android_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"brightcove_article_web_player":{"sizes":[[640,360]]},"brightcove_modal_web_player":{"sizes":[[640,360]]},"brightcove_article_list_web_player":{"sizes":[[640,360]]},"brightcove_mobile_thumbnail_web_player":{"sizes":[[640,360]]},"desktop_album_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"kv":{"is_atf":true},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_album_leaderboard_prebid"}}]},"desktop_album_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":true},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_album_sidebar_prebid"}}]},"desktop_article_sidebar":{"sizes":[[300,600],[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_article_sidebar_prebid"}}]},"desktop_article_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"kv":{"is_atf":true}},"desktop_article_skin":{"sizes":[[1700,800],[1700,1200]],"kv":{"is_atf":true}},"desktop_artist_leaderboard":{"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_artist_leaderboard_prebid"}}]},"desktop_artist_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_artist_sidebar_prebid"}}]},"desktop_discussion_leaderboard":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_discussion_leaderboard_prebid"}}]},"desktop_discussion_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250]},"desktop_forum_leaderboard":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90]},"desktop_forum_medium1":{"sizes":[[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_forum_medium1_prebid"}}]},"desktop_home_footer":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90]},"desktop_home_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,1],[4,1]],"a9":true,"kv":{"is_atf":true}},"desktop_home_promo_unit":{"refresh_unsafe":true,"sizes":[[2,1]]},"mobile_home_promo_unit":{"refresh_unsafe":true,"sizes":[[2,1]]},"desktop_home_skin":{"sizes":[[1700,800],[1700,1200]],"kv":{"is_atf":true}},"desktop_search_leaderboard":{"sizes":[[970,250],[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_search_leaderboard_prebid"}}]},"desktop_search_sidebar":{"sizes":[[300,250],[300,600]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_search_sidebar_prebid"}}]},"desktop_song_about_leaderboard":{"sizes":[[970,250],[728,90]],"placeholder_size":[728,90],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783318"}}]},"desktop_song_about_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783319"}}]},"desktop_song_annotation":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"has_only_dynamic_placements":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294796"}},{"bidder":"ix","params":{"siteId":194718,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639856"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"399321791"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_annotation_prebid"}}]},"desktop_song_comments":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"has_only_dynamic_placements":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294806"}},{"bidder":"ix","params":{"siteId":194722,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639858"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703511"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_comments_prebid"}}]},"desktop_song_comments_leaderboard":{"sizes":[[970,250],[728,90]],"placeholder_size":[728,90],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783321"}}]},"desktop_song_comments_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true},"desktop_song_inread":{"sizes":[[1,1],[1,2],[300,250],[336,280],[320,480],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476342"}},{"bidder":"ix","params":{"siteId":201300,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660418"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"351297791"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread_prebid"}}]},"desktop_song_inread2":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476344"}},{"bidder":"ix","params":{"siteId":201301,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660420"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464408951"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread2_prebid"}}]},"desktop_song_inread3":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476345"}},{"bidder":"ix","params":{"id":21,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660424"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464409071"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread3_prebid"}}]},"desktop_song_lyrics_inread":{"sizes":[[300,250],[728,90],[970,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783309"}}]},"desktop_song_lyrics_inread2":{"sizes":[[300,250],[728,90],[970,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783310"}}]},"desktop_song_lyrics_inread3":{"sizes":[[300,250],[728,90],[970,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783314"}}]},"desktop_song_leaderboard":{"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"kv":{"is_atf":true},"master_on_page":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294811"}},{"bidder":"ix","params":{"siteId":197229,"size":[728,90]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639864"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_leaderboard_prebid"}}]},"desktop_song_combined_leaderboard":{"sizes":[[728,90],[970,250],[4,1]],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783264"}}]},"desktop_song_lyrics_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783298"}}]},"desktop_song_lyrics_sidebar2":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783301"}}]},"desktop_song_lyrics_sidebar3":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783306"}}]},"desktop_song_lyrics_sidebar4":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783307"}}]},"desktop_song_lyrics_footer":{"sizes":[[300,250],[300,600],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294823"}},{"bidder":"ix","params":{"siteId":194710,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639860"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"397849871"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_lyrics_footer_prebid"}}]},"desktop_song_marquee":{"sizes":[[4,1]],"refresh_unsafe":true,"kv":{"is_atf":true}},"desktop_song_medium1":{"sizes":[[300,600],[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294830"}},{"bidder":"ix","params":{"siteId":194709,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639862"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346199471"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_medium1_prebid"}}]},"desktop_song_q_and_a":{"sizes":[[300,250]],"a9":true,"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11474887"}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660286"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464408711"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_q_and_a_prebid"}}]},"desktop_song_sidebar_top":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11621942"}},{"bidder":"ix","params":{"siteId":221945,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"682610"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"21615783137"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_sidebar_top_prebid"}}]},"desktop_user_leaderboard":{"master_on_page":true,"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_user_leaderboard_prebid"}}]},"desktop_user_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250]},"desktop_video_sidebar":{"sizes":[[300,250],[300,600]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_video_sidebar_prebid"}}]},"mobile_artist_leaderboard":{"master_on_page":true,"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_artist_leaderboard_prebid"}}]},"mobile_artist_footer":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_artist_footer_prebid"}}]},"mobile_discussion_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_discussion_leaderboard_prebid"}}]},"mobile_home_adhesion":{"master_on_page":true,"sizes":[[320,50],[320,100]],"a9":true,"kv":{"is_atf":true}},"mobile_home_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false}},"mobile_forum_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50]},"mobile_search_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_search_leaderboard_prebid"}}]},"mobile_search_footer":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_search_footer_prebid"}}]},"mobile_song_annotation":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294868"}},{"bidder":"ix","params":{"siteId":194719,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613918"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"399321431"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_annotation_prebid"}}]},"mobile_song_interstitial":{"out_of_page":true,"sizes":[[1,1]],"kv":{"is_atf":true}},"mobile_song_comments":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294870"}},{"bidder":"ix","params":{"siteId":194721,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613922"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703391"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_comments_prebid"}}]},"mobile_song_footer":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294876"}},{"bidder":"ix","params":{"siteId":194715,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613908"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"395129471"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_footer_prebid"}}]},"mobile_song_lyrics_header":{"sizes":[[320,50],[320,100]],"a9":true,"kv":{"is_atf":true},"master_on_page":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"13937403"}},{"bidder":"ix","params":{"id":26,"siteID":300788}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"1051274"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_lyrics_header_prebid"}}]},"mobile_song_lyrics_header_adhesion":{"sizes":[[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":true},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294881"}},{"bidder":"ix","params":{"siteId":194711,"size":[300,50]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613898"}}]},"mobile_song_medium1":{"sizes":[[1,1],[1,2],[300,250],[320,480]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294891"}},{"bidder":"ix","params":{"siteId":194712,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613900"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346200911"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium1_prebid"}}]},"mobile_song_medium2":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294897"}},{"bidder":"ix","params":{"siteId":194713,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613902"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346201631"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium2_prebid"}}]},"mobile_song_medium3":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294900"}},{"bidder":"ix","params":{"siteId":194714,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613906"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703151"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium3_prebid"}}]},"mobile_song_q_and_a":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294908"}},{"bidder":"ix","params":{"siteId":194720,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613920"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703271"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_q_and_a_prebid"}}]},"mobile_song_song_bio":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294916"}},{"bidder":"ix","params":{"siteId":194716,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613910"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703991"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_song_bio_prebid"}}]},"mobile_user_leaderboard":{"master_on_page":true,"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_user_leaderboard_prebid"}}]},"mobile_user_footer":{"sizes":[[300,250]],"a9":true},"web_annotator_annotation":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false}}},"dfp_network_id":"342026871","a9_pub_id":"3459","prebid":{"priceGranularity":{"buckets":[{"max":1.0,"increment":0.01},{"max":5.0,"increment":0.02},{"max":20.0,"increment":0.1}]},"bidderSettings":{"districtmDMX":{"bidCpmAdjustment":0.9}},"sizes":[[970,250],[970,90],[728,90],[468,60],[336,280],[300,50],[300,250],[300,600],[320,100],[320,50],[1,2]],"experimental_bidders":[]},"platform":"desktop","prebid_timeout":1000,"prebid_terminal_timeout":1500,"header_bidding_enabled":true,"prebid_server_enabled":false,"prebid_server_timeout":400,"prebid_server":{"appnexus":{"account_id":"c438d9e0-0182-4737-8ad7-68bcaf49d76e","endpoint":"https://prebid.adnxs.com/pbs/v1/openrtb2/auction","sync_endpoint":"https://prebid.adnxs.com/pbs/v1/cookie_sync"},"rubicon":{"account_id":"15874","endpoint":"https://prebid-server.rubiconproject.com/openrtb2/auction","sync_endpoint":"https://prebid-server.rubiconproject.com/cookie_sync"}},"ias_enabled":true,"ias_pubid":"927569","cmp_enabled":false,"consent_timeout":10000};
      var targeting_list = [{"name":"song_id","values":["4176"]},{"name":"song_title","values":["Work It"]},{"name":"artist_id","values":["1529"]},{"name":"artist_name","values":["Missy Elliott"]},{"name":"is_explicit","values":["true"]},{"name":"pageviews","values":["1164465"]},{"name":"primary_tag_id","values":["1434"]},{"name":"primary_tag","values":["rap"]},{"name":"tag_id","values":["16","2381","2757","1434"]},{"name":"song_tier","values":["C"]},{"name":"topic","values":[]},{"name":"has_song_story","values":["false"]},{"name":"in_top_10","values":["false"]},{"name":"artist_in_top_10","values":["false"]},{"name":"album_in_top_10","values":["false"]},{"name":"new_release","values":["false"]},{"name":"release_month","values":["200209"]},{"name":"release_year","values":["2002"]},{"name":"release_decade","values":["2000"]},{"name":"in_top_10_rap","values":["false"]},{"name":"in_top_10_rock","values":["false"]},{"name":"in_top_10_country","values":["false"]},{"name":"in_top_10_r_and_b","values":["false"]},{"name":"in_top_10_pop","values":["false"]},{"name":"template","values":["song"]},{"name":"environment","values":["production"]},{"name":"platform","values":["web"]},{"name":"ad_page_type","values":["song"]}];
      var initial_units = ["desktop_song_inread","desktop_song_inread2","desktop_song_inread3","desktop_song_leaderboard","desktop_song_lyrics_footer","desktop_song_marquee","desktop_song_medium1","desktop_song_sidebar_top"];
      var targeting = {};
      targeting_list.forEach(function(pair) {
        targeting[pair.name] = pair.values;
      });
      var initial_last_reset_at = undefined || Date.now();

      ads.initialize({config: config, targeting: targeting, initial_units: initial_units, initial_last_reset_at: initial_last_reset_at});
      
    });
  </script>
<script async="" src="https://cdn.adsafeprotected.com/iasPET.1.js"></script>
<!--/sse-->
<link href="https://assets.genius.com/stylesheets/compiled/bagon_desktop-eb47c221f4b326980892ade92f82c551.css" media="screen" rel="stylesheet" type="text/css">
<link as="script" href="https://assets.genius.com/javascripts/compiled/bagon_desktop-3b01e1df32d64fbd53a5.js" rel="preload"/><script defer="true" src="https://assets.genius.com/javascripts/compiled/bagon_desktop-3b01e1df32d64fbd53a5.js" type="text/javascript"></script>
<style>
  @font-face {
    font-family: 'Programme';
    src: url(data:font/woff2;base64,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) format('woff2'),
      url(https://assets.genius.com/fonts/programme_bold.woff?1616532842) format('woff');
    font-style: normal;
    font-weight: bold;
  }

  @font-face {
    font-family: 'Programme';
    src: url(https://assets.genius.com/fonts/programme_normal.woff2?1616532842) format('woff2'),
      url(https://assets.genius.com/fonts/programme_normal.woff?1616532842) format('woff');
    font-style: normal;
    font-weight: normal;
  }

  @font-face {
    font-family: 'Programme';
    src: url(https://assets.genius.com/fonts/programme_normal_italic.woff2?1616532842) format('woff2'),
      url(https://assets.genius.com/fonts/programme_normal_italic.woff?1616532842) format('woff');
    font-style: italic;
    font-weight: normal;
  }

  @font-face {
    font-family: 'Programme';
    src: url(https://assets.genius.com/fonts/programme_light.woff2?1616532842) format('woff2'),
      url(https://assets.genius.com/fonts/programme_light.woff?1616532842) format('woff');
    font-style: normal;
    font-weight: 100;
  }

  @font-face {
    font-family: 'Programme';
    src: url(https://assets.genius.com/fonts/programme_light_italic.woff2?1616532842) format('woff2'),
      url(https://assets.genius.com/fonts/programme_light_italic.woff?1616532842) format('woff');
    font-style: italic;
    font-weight: 100;
  }
</style>
<meta content="https://genius.com/Missy-elliott-work-it-lyrics" property="og:url">
<meta content="music.song" property="og:type"/>
<meta content="Missy Elliott – Work It" property="og:title"/>
<meta content="“Work It' is the first single from Missy’s 2002 album Under Construction. The song was both a commercial and critical hit: It peaked at No. 2 on Billboard’s Hot 100 (making it" property="og:description"/>
<meta content="https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg" property="og:image"/>
<meta content="https://genius.com/Missy-elliott-work-it-lyrics" property="twitter:url"/>
<meta content="music.song" property="twitter:type"/>
<meta content="Missy Elliott – Work It" property="twitter:title"/>
<meta content="“Work It' is the first single from Missy’s 2002 album Under Construction. The song was both a commercial and critical hit: It peaked at No. 2 on Billboard’s Hot 100 (making it" property="twitter:description"/>
<meta content="https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg" property="twitter:image"/>
<meta content="@Genius" property="twitter:site"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Genius" property="twitter:app:name:iphone"/>
<meta content="709482991" property="twitter:app:id:iphone"/>
<meta content="genius://songs/4176" property="twitter:app:url:iphone"/>
<meta content="Work It Lyrics: DJ, please pick up your phone, I'm on the request line / This is a Missy Elliott one-time exclusive, come on / Is it worth it? Let me work it / I put my thing down, flip it and" name="description"/>
<link href="ios-app://709482991/genius/songs/4176" rel="alternate"/>
<meta content="/songs/4176" name="newrelic-resource-path"/>
<link href="https://genius.com/Missy-elliott-work-it-lyrics" rel="canonical"/>
<link href="https://genius.com/amp/Missy-elliott-work-it-lyrics" rel="amphtml"/>
<script type="text/javascript">
  var _qevents = _qevents || [];
  (function() {
    var elem = document.createElement('script');
    elem.src = (document.location.protocol == 'https:' ? 'https://secure' : 'http://edge') + '.quantserve.com/quant.js';
    elem.async = true;
    elem.type = 'text/javascript';
    var scpt = document.getElementsByTagName('script')[0];
    scpt.parentNode.insertBefore(elem, scpt);
  })();
</script>
<script type="text/javascript">
  window.ga = window.ga || function() {
    (window.ga.q = window.ga.q || []).push(arguments);
  };

  
    (function(g, e, n, i, u, s) {
      g['GoogleAnalyticsObject'] = 'ga';
      g.ga.l = Date.now();
      u = e.createElement(n);
      s = e.getElementsByTagName(n)[0];
      u.async = true;
      u.src = i;
      s.parentNode.insertBefore(u, s);
    })(window, document, 'script', 'https://www.google-analytics.com/analytics.js');

    ga('create', "UA-10346621-1", 'auto', {'useAmpClientId': true});
    ga('set', 'dimension1', "false");
    ga('set', 'dimension2', "songs#show");
    ga('set', 'dimension3', "rap");
    ga('set', 'dimension4', "true");
    ga('set', 'dimension5', 'false');
    ga('set', 'dimension6', "none");
    ga('send', 'pageview');
  
</script>
<meta content="{&quot;chartbeat&quot;:{&quot;authors&quot;:&quot;Missy Elliott&quot;,&quot;sections&quot;:&quot;songs,tag:pop,tag:rap&quot;,&quot;title&quot;:&quot;Missy Elliott – Work It Lyrics | Genius Lyrics&quot;},&quot;controller_and_action&quot;:&quot;songs#show&quot;,&quot;dmp_data_layer&quot;:{&quot;page&quot;:{&quot;type&quot;:&quot;song&quot;,&quot;artists&quot;:[&quot;Missy Elliott&quot;],&quot;artist_ids&quot;:[&quot;[1529]&quot;],&quot;albums&quot;:[&quot;Under Construction&quot;,&quot;Respect M.E.&quot;],&quot;album_ids&quot;:[&quot;[6639]&quot;,&quot;[335070]&quot;],&quot;genres&quot;:[&quot;Pop Genius&quot;,&quot;Experimental&quot;,&quot;Alternative&quot;,&quot;Rap Genius&quot;],&quot;genre_ids&quot;:[&quot;[16]&quot;,&quot;[2381]&quot;,&quot;[2757]&quot;,&quot;[1434]&quot;],&quot;in_top_10&quot;:false,&quot;artist_in_top_10&quot;:false,&quot;album_in_top_10&quot;:false,&quot;new_release&quot;:false,&quot;release_month&quot;:&quot;200209&quot;,&quot;release_year&quot;:2002,&quot;release_decade&quot;:2000}},&quot;header_bid_placements&quot;:[[&quot;desktop_song_leaderboard&quot;,&quot;desktop_song_leaderboard&quot;],[&quot;desktop_song_sidebar_top&quot;,&quot;desktop_song_sidebar_top&quot;],[&quot;desktop_song_medium1&quot;,&quot;desktop_song_medium1&quot;]],&quot;initial_ad_units&quot;:[&quot;desktop_song_inread&quot;,&quot;desktop_song_inread2&quot;,&quot;desktop_song_inread3&quot;,&quot;desktop_song_leaderboard&quot;,&quot;desktop_song_lyrics_footer&quot;,&quot;desktop_song_marquee&quot;,&quot;desktop_song_medium1&quot;,&quot;desktop_song_sidebar_top&quot;],&quot;page_type&quot;:&quot;song&quot;,&quot;path&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;,&quot;probably_spam&quot;:false,&quot;title&quot;:&quot;Missy Elliott – Work It Lyrics | Genius Lyrics&quot;,&quot;tracking_data&quot;:[{&quot;key&quot;:&quot;Song ID&quot;,&quot;value&quot;:4176},{&quot;key&quot;:&quot;Title&quot;,&quot;value&quot;:&quot;Work It&quot;},{&quot;key&quot;:&quot;Primary Artist&quot;,&quot;value&quot;:&quot;Missy Elliott&quot;},{&quot;key&quot;:&quot;Primary Artist ID&quot;,&quot;value&quot;:1529},{&quot;key&quot;:&quot;Primary Album&quot;,&quot;value&quot;:&quot;Under Construction&quot;},{&quot;key&quot;:&quot;Primary Album ID&quot;,&quot;value&quot;:6639},{&quot;key&quot;:&quot;Tag&quot;,&quot;value&quot;:&quot;rap&quot;},{&quot;key&quot;:&quot;Primary Tag&quot;,&quot;value&quot;:&quot;rap&quot;},{&quot;key&quot;:&quot;Primary Tag ID&quot;,&quot;value&quot;:1434},{&quot;key&quot;:&quot;Music?&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Annotatable Type&quot;,&quot;value&quot;:&quot;Song&quot;},{&quot;key&quot;:&quot;Annotatable ID&quot;,&quot;value&quot;:4176},{&quot;key&quot;:&quot;featured_video&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;cohort_ids&quot;,&quot;value&quot;:[]},{&quot;key&quot;:&quot;has_verified_callout&quot;,&quot;value&quot;:false},{&quot;key&quot;:&quot;has_featured_annotation&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;created_at&quot;,&quot;value&quot;:&quot;2011-02-08T07:55:31Z&quot;},{&quot;key&quot;:&quot;created_month&quot;,&quot;value&quot;:&quot;2011-02-01&quot;},{&quot;key&quot;:&quot;created_year&quot;,&quot;value&quot;:2011},{&quot;key&quot;:&quot;song_tier&quot;,&quot;value&quot;:&quot;C&quot;},{&quot;key&quot;:&quot;Has Recirculated Articles&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Lyrics Language&quot;,&quot;value&quot;:&quot;en&quot;},{&quot;key&quot;:&quot;Has Song Story&quot;,&quot;value&quot;:false},{&quot;key&quot;:&quot;Song Story ID&quot;,&quot;value&quot;:null},{&quot;key&quot;:&quot;Has Apple Match&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Release Date&quot;,&quot;value&quot;:&quot;2002-09-01&quot;},{&quot;key&quot;:&quot;NRM Tier&quot;,&quot;value&quot;:null},{&quot;key&quot;:&quot;NRM Target Date&quot;,&quot;value&quot;:null},{&quot;key&quot;:&quot;Has Description&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Has Youtube URL&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Has Translation Q&amp;A&quot;,&quot;value&quot;:false},{&quot;key&quot;:&quot;Comment Count&quot;,&quot;value&quot;:7}],&quot;answered_pending_question_count&quot;:0,&quot;dfp_kv&quot;:[{&quot;name&quot;:&quot;song_id&quot;,&quot;values&quot;:[&quot;4176&quot;]},{&quot;name&quot;:&quot;song_title&quot;,&quot;values&quot;:[&quot;Work It&quot;]},{&quot;name&quot;:&quot;artist_id&quot;,&quot;values&quot;:[&quot;1529&quot;]},{&quot;name&quot;:&quot;artist_name&quot;,&quot;values&quot;:[&quot;Missy Elliott&quot;]},{&quot;name&quot;:&quot;is_explicit&quot;,&quot;values&quot;:[&quot;true&quot;]},{&quot;name&quot;:&quot;pageviews&quot;,&quot;values&quot;:[&quot;1164465&quot;]},{&quot;name&quot;:&quot;primary_tag_id&quot;,&quot;values&quot;:[&quot;1434&quot;]},{&quot;name&quot;:&quot;primary_tag&quot;,&quot;values&quot;:[&quot;rap&quot;]},{&quot;name&quot;:&quot;tag_id&quot;,&quot;values&quot;:[&quot;16&quot;,&quot;2381&quot;,&quot;2757&quot;,&quot;1434&quot;]},{&quot;name&quot;:&quot;song_tier&quot;,&quot;values&quot;:[&quot;C&quot;]},{&quot;name&quot;:&quot;topic&quot;,&quot;values&quot;:[]},{&quot;name&quot;:&quot;has_song_story&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;in_top_10&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;artist_in_top_10&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;album_in_top_10&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;new_release&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;release_month&quot;,&quot;values&quot;:[&quot;200209&quot;]},{&quot;name&quot;:&quot;release_year&quot;,&quot;values&quot;:[&quot;2002&quot;]},{&quot;name&quot;:&quot;release_decade&quot;,&quot;values&quot;:[&quot;2000&quot;]},{&quot;name&quot;:&quot;in_top_10_rap&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;in_top_10_rock&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;in_top_10_country&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;in_top_10_r_and_b&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;in_top_10_pop&quot;,&quot;values&quot;:[&quot;false&quot;]},{&quot;name&quot;:&quot;template&quot;,&quot;values&quot;:[&quot;song&quot;]},{&quot;name&quot;:&quot;environment&quot;,&quot;values&quot;:[&quot;production&quot;]},{&quot;name&quot;:&quot;platform&quot;,&quot;values&quot;:[&quot;web&quot;]},{&quot;name&quot;:&quot;ad_page_type&quot;,&quot;values&quot;:[&quot;song&quot;]}],&quot;pending_question_count&quot;:0,&quot;show_edit_form&quot;:false,&quot;show_featured_question&quot;:false,&quot;spotify_referral&quot;:false,&quot;annotation_previews&quot;:[],&quot;default_questions&quot;:[],&quot;featured_question&quot;:null,&quot;lyrics_data&quot;:{&quot;client_timestamps&quot;:{&quot;lyrics_updated_at&quot;:1615583226,&quot;updated_by_human_at&quot;:1615583226},&quot;body&quot;:{&quot;html&quot;:&quot;&lt;p&gt;[Intro]&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-115498\&quot; data-id=\&quot;115498\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;115498\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;DJ, please pick up your phone, I'm on the request line&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-2769316\&quot; data-id=\&quot;2769316\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;2769316\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;This is a Missy Elliott one-time exclusive, come on&lt;/a&gt;&lt;br&gt;\n&lt;br&gt;\n[Chorus]&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-19108321\&quot; data-id=\&quot;19108321\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;19108321\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;Is it worth it? Let me work it&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;I put my thing down, flip it and reverse it&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-125501\&quot; data-id=\&quot;125501\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;125501\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;1\&quot;&gt;If you got a big &lt;i&gt;*elephant trumpet*&lt;/i&gt;, let me search ya&lt;br&gt;\nAnd find out how hard I gotta work ya&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;Ti esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;/a&gt;&lt;br&gt;\nC'mon&lt;br&gt;\n&lt;br&gt;\n[Verse 1]&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-2001253\&quot; data-id=\&quot;2001253\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;2001253\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;I'd like to get to know ya so I could show ya&lt;/a&gt;&lt;br&gt;\nPut the pussy on ya like I told ya&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1748930\&quot; data-id=\&quot;1748930\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1748930\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Give me all your numbers so I can phone ya&lt;/a&gt;&lt;br&gt;\nYour girl acting stank, then call me over&lt;br&gt;\nNot on the bed, lay me on your sofa&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-115499\&quot; data-id=\&quot;115499\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;115499\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Call before you come, I need to shave my chocha&lt;/a&gt;&lt;br&gt;\nYou do or you don't or you will or won't ya?&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-142698\&quot; data-id=\&quot;142698\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;142698\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Go downtown and eat it like a vulture&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227306\&quot; data-id=\&quot;1227306\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227306\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;See my hips and my tips, don't ya?&lt;br&gt;\nSee my ass and my lips, don't ya?&lt;br&gt;\nLost a few pounds and my waist for ya&lt;/a&gt;&lt;br&gt;\nThis the kinda beat that go ra-ta-ta&lt;br&gt;\nRa-ta-ta-ta-ta-ta-ta-ta-ta-ta&lt;br&gt;\nSex me so good I say blah-blah-blah&lt;br&gt;\nWork it, I need a glass of water&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-2355254\&quot; data-id=\&quot;2355254\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;2355254\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Boy, oh boy,&lt;/a&gt; it's good to know ya&lt;br&gt;\nC'mon&lt;br&gt;\n&lt;br&gt;\n[Chorus]&lt;br&gt;\nIs it worth it? Let me work it&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;I put my thing down, flip it and reverse it&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-125501\&quot; data-id=\&quot;125501\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;125501\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;1\&quot;&gt;If you got a big &lt;i&gt;*elephant trumpet*&lt;/i&gt;, let me search ya&lt;br&gt;\nAnd find out how hard I gotta work ya&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;Ti esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;/a&gt;&lt;br&gt;\nC'mon&lt;br&gt;\n&lt;br&gt;\n[Bridge]&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1619441\&quot; data-id=\&quot;1619441\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1619441\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;If you a fly gal, get your nails done&lt;br&gt;\nGet a pedicure, get your hair did&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-2622866\&quot; data-id=\&quot;2622866\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;2622866\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Boy, lift it up, let's make a toast-a&lt;br&gt;\nLet's get drunk, that's gonna bring us closer (Okay)&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-115501\&quot; data-id=\&quot;115501\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;115501\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Don't I look like a Halle Berry poster?&lt;br&gt;\nSee the Belvedere playing tricks on ya (Ah)&lt;/a&gt;&lt;br&gt;\nGirlfriend wanna be like me, never&lt;br&gt;\nYou won't find a bitch that's even better (Ah)&lt;br&gt;\nI make you hot as Las Vegas weather&lt;br&gt;\nListen up close while I take it backwards&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1734311\&quot; data-id=\&quot;1734311\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1734311\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;​sdrawkcab ti ekat ot ekil yssiM yaw eht hctaW&lt;/a&gt;&lt;br&gt;\nI'm not a prostitute, but I could give you what you want&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-20649750\&quot; data-id=\&quot;20649750\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;20649750\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;unreviewed\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;I love your braids&lt;/a&gt; &lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1748931\&quot; data-id=\&quot;1748931\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1748931\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;1\&quot;&gt;and your mouth full of fronts&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1449559\&quot; data-id=\&quot;1449559\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1449559\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Love the way my ass go bum-bum-bum-bum (Huh)&lt;br&gt;\nKeep your eyes on my bum-bum-bum-bum-bum (Okay)&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-115502\&quot; data-id=\&quot;115502\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;115502\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;You think you can handle this badonka-donk-donk (Woo)&lt;/a&gt;&lt;br&gt;\nTake my thong off and my ass go boom (Ugh)&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1706472\&quot; data-id=\&quot;1706472\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1706472\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Cut the lights on so you see what I could do (C'mon)&lt;/a&gt;&lt;br&gt;\n&lt;br&gt;\n[Chorus]&lt;br&gt;\nIs it worth it? Let me work it&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;I put my thing down, flip it and reverse it&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup (Ooh)&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-125501\&quot; data-id=\&quot;125501\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;125501\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;1\&quot;&gt;If you got a big &lt;i&gt;*elephant trumpet*&lt;/i&gt;, let me search ya&lt;br&gt;\nAnd find out how hard I gotta work ya&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;Ti esrever dna ti pilf, nwod gniht ym tup (Huh)&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup (C'mon)&lt;/a&gt;&lt;br&gt;\nC'mon&lt;br&gt;\n&lt;br&gt;\n[Bridge]&lt;br&gt;\nBoys, boys, all type of boys&lt;br&gt;\nBlack, White, Puerto Rican, Chinese boys (C'mon)&lt;br&gt;\nWhy-thai, thai-o-toy-o-thai-thai&lt;br&gt;\nRock-thai, thai-o-toy-o-thai-thai (C'mon)&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-115503\&quot; data-id=\&quot;115503\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;115503\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Girls, girls, get that cash&lt;br&gt;\nIf it's 9 to 5 or shaking your ass (Aha)&lt;br&gt;\nAin't no shame, ladies do your thing (C'mon)&lt;br&gt;\nJust make sure you ahead of the game&lt;/a&gt;&lt;br&gt;\n&lt;br&gt;\n[Verse 3]&lt;br&gt;\nJust 'cause I got a lot of fame super&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1434475\&quot; data-id=\&quot;1434475\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1434475\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Prince couldn't get me change my name, papa&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-115504\&quot; data-id=\&quot;115504\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;115504\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Kunta Kinte a slave again, no sir&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-7837934\&quot; data-id=\&quot;7837934\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;7837934\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Picture Blacks saying, “Oh yes'a, massa”&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1434486\&quot; data-id=\&quot;1434486\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1434486\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Picture Lil' Kim dating a pastor&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-4931228\&quot; data-id=\&quot;4931228\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;4931228\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Minute Man, Big Red could outlast ya&lt;/a&gt;&lt;br&gt;\nWho is the best? I don't have to ask ya&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-7838303\&quot; data-id=\&quot;7838303\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;7838303\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;When I come out, you won't even matter (Ugh)&lt;/a&gt;&lt;br&gt;\nWhy you act dumb like, uhhhh, duh?&lt;br&gt;\nSo you act dumb like, uhhhhh, duh&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1434500\&quot; data-id=\&quot;1434500\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1434500\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;As the drummer boy go ba-rom-pop-pom-pom (Ooh)&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1434489\&quot; data-id=\&quot;1434489\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1434489\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;Give you some-some-some of this Cinnabun (C'mon)&lt;/a&gt;&lt;br&gt;\n&lt;br&gt;\n[Chorus]&lt;br&gt;\nIs it worth it? Let me work it&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;I put my thing down, flip it and reverse it&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup (Ooh)&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-125501\&quot; data-id=\&quot;125501\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;125501\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;1\&quot;&gt;If you got a big &lt;i&gt;*elephant trumpet*&lt;/i&gt;, let me search ya&lt;br&gt;\nAnd find out how hard I gotta work ya&lt;/a&gt;&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-1227305\&quot; data-id=\&quot;1227305\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;1227305\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;2\&quot;&gt;Ti esrever dna ti pilf, nwod gniht ym tup&lt;br&gt;\nTi esrever dna ti pilf, nwod gniht ym tup&lt;/a&gt;&lt;br&gt;\nC'mon&lt;br&gt;\n&lt;br&gt;\n[Break]&lt;br&gt;\nTo my fellas (Ooh, good god!)&lt;br&gt;\nI like the way you work that (Uh-huh, la-la-la-la)&lt;br&gt;\n&lt;a href=\&quot;/Missy-elliott-work-it-lyrics#note-2740290\&quot; data-id=\&quot;2740290\&quot; class=\&quot;referent\&quot; ng-click=\&quot;open()\&quot; ng-class=\&quot;{\n          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n        }\&quot; prevent-default-click=\&quot;\&quot; annotation-fragment=\&quot;2740290\&quot; on-hover-with-no-digest=\&quot;set_current_hover_and_digest(hover ? fragment_id : undefined)\&quot; classification=\&quot;accepted\&quot; image=\&quot;false\&quot; pending-editorial-actions-count=\&quot;0\&quot;&gt;To my ladies (Whoo! Good god!)&lt;br&gt;\nYou sure know how to work that&lt;/a&gt;&lt;br&gt;\n&lt;br&gt;\n[Outro]&lt;br&gt;\nYeah, it's Missy Elliott!&lt;br&gt;\nI hope y'all enjoying what y'all heard so far&lt;br&gt;\nI was sittin' here thinkin' like&lt;br&gt;\nBig Daddy Kane and Public Enemy&lt;br&gt;\nSalt n Pepa, Lyte, EPMD, LL, Run-DMC&lt;br&gt;\nKRS-One, Rakim&lt;br&gt;\nMost of them artists used to dance&lt;br&gt;\nAnd still get respected in the street&lt;br&gt;\nDon't be scared to Bankhead or Bogo&lt;br&gt;\nOr move as far as sold Michael Jackson 43 million&lt;br&gt;\nShoot, errbody have the zipper jacket&lt;br&gt;\nAnd half of these thugs have the glove to match, ya feel me?&lt;br&gt;\nYo, it's ok though, if you wanna be hard and ice grill&lt;br&gt;\nAnd Harlem Shake at the same time, whatever&lt;br&gt;\nLet's just have fun, it's hip-hop man, this is hip-hop!&lt;/p&gt;\n\n&quot;}},&quot;next_track&quot;:{&quot;number&quot;:5,&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:22,&quot;api_path&quot;:&quot;/songs/33249&quot;,&quot;full_title&quot;:&quot;Back in the Day by Missy Elliott (Ft. JAY-Z)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg&quot;,&quot;id&quot;:33249,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:50,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1607348315,&quot;path&quot;:&quot;/Missy-elliott-back-in-the-day-lyrics&quot;,&quot;pyongs_count&quot;:1,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:1,&quot;hot&quot;:false,&quot;pageviews&quot;:7721},&quot;title&quot;:&quot;Back in the Day&quot;,&quot;title_with_featured&quot;:&quot;Back in the Day (Ft. JAY-Z)&quot;,&quot;updated_by_human_at&quot;:1610079797,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-back-in-the-day-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}}},&quot;pinned_questions&quot;:[{&quot;_type&quot;:&quot;question&quot;,&quot;body&quot;:&quot;What have the artists said about the song?&quot;,&quot;contributors_count&quot;:1,&quot;created_at&quot;:1559605326,&quot;default_key&quot;:null,&quot;has_voters&quot;:false,&quot;id&quot;:414429,&quot;pin_order&quot;:8192.0,&quot;state&quot;:&quot;pinned&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics/questions/414429&quot;,&quot;votes_total&quot;:0,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;add_answer&quot;,&quot;update_answer_source&quot;,&quot;edit&quot;,&quot;archive&quot;,&quot;pin&quot;,&quot;unpin&quot;,&quot;move&quot;,&quot;add_verified_answer&quot;],&quot;iq_by_action&quot;:{},&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer&quot;:{&quot;_type&quot;:&quot;answer&quot;,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;blockquote&gt;&lt;p&gt;A fun fact about the song “Work It” is Tim and I would get on each other’s last nerves because we are truly like brother and sister. I remember I begged him to go to some mom and pop stores to get some break beats because we had been in the studio two weeks straight and had a block; we couldn’t think of anything. He finally got some records and caught this vibe and when I heard the worm sound, I was jumping up like, “That’s it!” So I would record in another room because I never record in front of anyone, and I ran and did my rap. Then I ran back and said, “Yo play it to him” and he said, “Nah, that ain’t it.” Then I went back again [and] brought it back and he said, “Nope, that ain’t it.” Then a third time, the same thing. By this time I thought he was being funny, so I’m pissed! By the fifth time he said, “Yes, that’s it! That shit hot!” But guess what? I got him back on the [Miss E…] So Addictive album, he thought we was done and I said, “Nope, that ain’t it!” about three times. Then he did “Get Ur Freak On” and I said, “Yup, that’s it!” Lol.&lt;/p&gt;&lt;/blockquote&gt;\n\n&lt;p&gt;Via &lt;a href=\&quot;https://www.billboard.com/articles/columns/hip-hop/8514326/missy-elliott-songwriters-hall-of-fame-interview\&quot; rel=\&quot;noopener nofollow\&quot;&gt;MTV&lt;/a&gt;&lt;/p&gt;&quot;,&quot;markdown&quot;:&quot;&gt;A fun fact about the song \&quot;Work It\&quot; is Tim and I would get on each other's last nerves because we are truly like brother and sister. I remember I begged him to go to some mom and pop stores to get some break beats because we had been in the studio two weeks straight and had a block; we couldn't think of anything. He finally got some records and caught this vibe and when I heard the worm sound, I was jumping up like, \&quot;That's it!\&quot; So I would record in another room because I never record in front of anyone, and I ran and did my rap. Then I ran back and said, \&quot;Yo play it to him\&quot; and he said, \&quot;Nah, that ain't it.\&quot; Then I went back again [and] brought it back and he said, \&quot;Nope, that ain't it.\&quot; Then a third time, the same thing. By this time I thought he was being funny, so I'm pissed! By the fifth time he said, \&quot;Yes, that's it! That shit hot!\&quot; But guess what? I got him back on the [Miss E…] So Addictive album, he thought we was done and I said, \&quot;Nope, that ain't it!\&quot; about three times. Then he did \&quot;Get Ur Freak On\&quot; and I said, \&quot;Yup, that's it!\&quot; Lol.\n\nVia [MTV](https://www.billboard.com/articles/columns/hip-hop/8514326/missy-elliott-songwriters-hall-of-fame-interview)&quot;},&quot;created_at&quot;:1559605426,&quot;editorial_state&quot;:&quot;normal&quot;,&quot;has_voters&quot;:true,&quot;id&quot;:204122,&quot;votes_total&quot;:1,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;edit&quot;,&quot;destroy&quot;],&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer_source&quot;:null,&quot;authors&quot;:[{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:1.0,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Hey, my name is Alexander, but you can call me Alex! I’m 30 years old, born on July 8, 1990. My favorite type of music is pop, but I also enjoy rock, country, dance, and a little bit of rap as well.\n\nI became a member on Genius in 2016, but officially became active in 2017. The same year in 2017, I was given the role as Editor by EwokABdevito.\n\nMost of my work on here has consisted of song transcriptions, album/song bios, and editing metadata throughout Genius!\n\nAccomplishments\n#11 dance scholar of all time\n#9 pop scholar of all time\n#7 country scholar of all time&quot;,&quot;api_path&quot;:&quot;/users/3499648&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/5409e988fe3af98ed4c12f0c8d8b5375.1000x750x1.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:3499648,&quot;iq&quot;:928880,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;AlexanderJamesM&quot;,&quot;name&quot;:&quot;AlexanderJamesM&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/AlexanderJamesM&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}]},&quot;author&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Hey, my name is Alexander, but you can call me Alex! I’m 30 years old, born on July 8, 1990. My favorite type of music is pop, but I also enjoy rock, country, dance, and a little bit of rap as well.\n\nI became a member on Genius in 2016, but officially became active in 2017. The same year in 2017, I was given the role as Editor by EwokABdevito.\n\nMost of my work on here has consisted of song transcriptions, album/song bios, and editing metadata throughout Genius!\n\nAccomplishments\n#11 dance scholar of all time\n#9 pop scholar of all time\n#7 country scholar of all time&quot;,&quot;api_path&quot;:&quot;/users/3499648&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/5409e988fe3af98ed4c12f0c8d8b5375.1000x750x1.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:3499648,&quot;iq&quot;:928880,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;AlexanderJamesM&quot;,&quot;name&quot;:&quot;AlexanderJamesM&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/AlexanderJamesM&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;question&quot;,&quot;body&quot;:&quot;What has Missy Elliott said about the reversed part in the song?&quot;,&quot;contributors_count&quot;:1,&quot;created_at&quot;:1552424180,&quot;default_key&quot;:&quot;artist_comment&quot;,&quot;has_voters&quot;:false,&quot;id&quot;:379669,&quot;pin_order&quot;:16384.0,&quot;state&quot;:&quot;pinned&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics/questions/379669&quot;,&quot;votes_total&quot;:0,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;add_answer&quot;,&quot;update_answer_source&quot;,&quot;edit&quot;,&quot;archive&quot;,&quot;pin&quot;,&quot;unpin&quot;,&quot;move&quot;,&quot;add_verified_answer&quot;],&quot;iq_by_action&quot;:{},&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer&quot;:{&quot;_type&quot;:&quot;answer&quot;,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;blockquote&gt;&lt;p&gt;“The reverse thing, that was a mistake,” she said. “The engineer happened to hit something, and it just went backward, and I was like, ‘Oh that’s kind of crazy’ because it went backward on the beat.”&lt;/p&gt;&lt;/blockquote&gt;\n\n&lt;p&gt;Elliott added:&lt;/p&gt;\n\n&lt;blockquote&gt;&lt;p&gt;So, after that happened, I said, ‘Yo, keep that in there and I’m going to write around it.’\&quot;&lt;/p&gt;&lt;/blockquote&gt;&quot;,&quot;markdown&quot;:&quot;&gt; \&quot;The reverse thing, that was a mistake,\&quot; she said. \&quot;The engineer happened to hit something, and it just went backward, and I was like, 'Oh that's kind of crazy' because it went backward on the beat.\&quot;\n\nElliott added: \n&gt; So, after that happened, I said, 'Yo, keep that in there and I'm going to write around it.'\&quot;&quot;},&quot;created_at&quot;:1552424180,&quot;editorial_state&quot;:&quot;normal&quot;,&quot;has_voters&quot;:true,&quot;id&quot;:182574,&quot;votes_total&quot;:2,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;edit&quot;,&quot;destroy&quot;],&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer_source&quot;:null,&quot;authors&quot;:[{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:1.0,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;México. Pop listener.&quot;,&quot;api_path&quot;:&quot;/users/7296789&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/zimrnozmcs&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:7296789,&quot;iq&quot;:8173,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;julianslg&quot;,&quot;name&quot;:&quot;julianslg&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/julianslg&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}]},&quot;author&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;México. Pop listener.&quot;,&quot;api_path&quot;:&quot;/users/7296789&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/duve94vyax7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/zimrnozmcs&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:7296789,&quot;iq&quot;:8173,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;julianslg&quot;,&quot;name&quot;:&quot;julianslg&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/julianslg&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;question&quot;,&quot;body&quot;:&quot;How did this song chart?&quot;,&quot;contributors_count&quot;:1,&quot;created_at&quot;:1503962956,&quot;default_key&quot;:null,&quot;has_voters&quot;:false,&quot;id&quot;:106427,&quot;pin_order&quot;:65536.0,&quot;state&quot;:&quot;pinned&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics/questions/106427&quot;,&quot;votes_total&quot;:0,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;add_answer&quot;,&quot;update_answer_source&quot;,&quot;edit&quot;,&quot;archive&quot;,&quot;pin&quot;,&quot;unpin&quot;,&quot;move&quot;,&quot;add_verified_answer&quot;],&quot;iq_by_action&quot;:{},&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer&quot;:{&quot;_type&quot;:&quot;answer&quot;,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;p&gt;This song peaked at &lt;strong&gt;#1&lt;/strong&gt; on &lt;em&gt;Billboard’s&lt;/em&gt; Top  R&amp;amp;B/Hip-Hop Songs and Hot Rap Songs and &lt;strong&gt;#2&lt;/strong&gt; on the &lt;em&gt;Billboard Hot 100&lt;/em&gt;.&lt;/p&gt;\n\n&lt;p&gt;This song also peaked at &lt;strong&gt;#3&lt;/strong&gt; on &lt;em&gt;Billboard’s&lt;/em&gt; Mainstream Top 40, &lt;strong&gt;#2&lt;/strong&gt; in Belgium, &lt;strong&gt;#3&lt;/strong&gt; in New Zealand and &lt;strong&gt;#6&lt;/strong&gt; in Australia and the UK.&lt;/p&gt;&quot;,&quot;markdown&quot;:&quot;This song peaked at **#1** on *Billboard’s* Top  R&amp;B/Hip-Hop Songs and Hot Rap Songs and **#2** on the *Billboard Hot 100*.\n\nThis song also peaked at **#3** on *Billboard's* Mainstream Top 40, **#2** in Belgium, **#3** in New Zealand and **#6** in Australia and the UK.&quot;},&quot;created_at&quot;:1503963230,&quot;editorial_state&quot;:&quot;normal&quot;,&quot;has_voters&quot;:true,&quot;id&quot;:50325,&quot;votes_total&quot;:5,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;edit&quot;,&quot;destroy&quot;],&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer_source&quot;:null,&quot;authors&quot;:[{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:1.0,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;TWO-TIME GENIUS OLYMPIC GOLD MEDALIST\n\nTHREE-TIME RED REMOVERS CHAMPION\n\nHead of Basketball Reporting\n\nBest Web Annotator of 2016 (never forget the GWA)\n\nPlease contact zacharymahabir16@gmail.com for broadcast/journalistic/non-site inquiries&quot;,&quot;api_path&quot;:&quot;/users/53993&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/572af9af9aa1c6aff4ad0512c961d911.850x365x1.png&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:53993,&quot;iq&quot;:359956,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;ZacharyMahabir&quot;,&quot;name&quot;:&quot;Zachary Mahabir (BLM)&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/ZacharyMahabir&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}]},&quot;author&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;TWO-TIME GENIUS OLYMPIC GOLD MEDALIST\n\nTHREE-TIME RED REMOVERS CHAMPION\n\nHead of Basketball Reporting\n\nBest Web Annotator of 2016 (never forget the GWA)\n\nPlease contact zacharymahabir16@gmail.com for broadcast/journalistic/non-site inquiries&quot;,&quot;api_path&quot;:&quot;/users/53993&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/40a6af5b511a7cd2ec5a755a872fdbb5&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/572af9af9aa1c6aff4ad0512c961d911.850x365x1.png&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:53993,&quot;iq&quot;:359956,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;ZacharyMahabir&quot;,&quot;name&quot;:&quot;Zachary Mahabir (BLM)&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/ZacharyMahabir&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;question&quot;,&quot;body&quot;:&quot;What has she said about having Alyson Stoner featured in her VMA medley?&quot;,&quot;contributors_count&quot;:1,&quot;created_at&quot;:1567134157,&quot;default_key&quot;:null,&quot;has_voters&quot;:false,&quot;id&quot;:446674,&quot;pin_order&quot;:131072.0,&quot;state&quot;:&quot;pinned&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics/questions/446674&quot;,&quot;votes_total&quot;:0,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;add_answer&quot;,&quot;update_answer_source&quot;,&quot;edit&quot;,&quot;archive&quot;,&quot;pin&quot;,&quot;unpin&quot;,&quot;move&quot;,&quot;add_verified_answer&quot;],&quot;iq_by_action&quot;:{},&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer&quot;:{&quot;_type&quot;:&quot;answer&quot;,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;blockquote&gt;&lt;p&gt;It’s been 17 years since we shot that video. I couldn’t have done it without (Alyson). I was like, ’I’ve got to have Alyson in here because everywhere I went since then people have always been like, ‘What happened to that little girl that used to be in your ‘Work It’ video?’”&lt;/p&gt;&lt;/blockquote&gt;\n\n&lt;p&gt;Via &lt;a href=\&quot;https://www.billboard.com/articles/columns/hip-hop/8528640/missy-elliott-recalls-craziest-moments-iconic-videos\&quot; rel=\&quot;noopener nofollow\&quot;&gt;MTV&lt;/a&gt;&lt;/p&gt;&quot;,&quot;markdown&quot;:&quot;&gt;It’s been 17 years since we shot that video. I couldn’t have done it without (Alyson). I was like, ’I’ve got to have Alyson in here because everywhere I went since then people have always been like, ‘What happened to that little girl that used to be in your ‘Work It’ video?’”\n\nVia [MTV](https://www.billboard.com/articles/columns/hip-hop/8528640/missy-elliott-recalls-craziest-moments-iconic-videos)&quot;},&quot;created_at&quot;:1567134228,&quot;editorial_state&quot;:&quot;normal&quot;,&quot;has_voters&quot;:true,&quot;id&quot;:225812,&quot;votes_total&quot;:1,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;edit&quot;,&quot;destroy&quot;],&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;answer_source&quot;:null,&quot;authors&quot;:[{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:1.0,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Hey, my name is Alexander, but you can call me Alex! I’m 30 years old, born on July 8, 1990. My favorite type of music is pop, but I also enjoy rock, country, dance, and a little bit of rap as well.\n\nI became a member on Genius in 2016, but officially became active in 2017. The same year in 2017, I was given the role as Editor by EwokABdevito.\n\nMost of my work on here has consisted of song transcriptions, album/song bios, and editing metadata throughout Genius!\n\nAccomplishments\n#11 dance scholar of all time\n#9 pop scholar of all time\n#7 country scholar of all time&quot;,&quot;api_path&quot;:&quot;/users/3499648&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/5409e988fe3af98ed4c12f0c8d8b5375.1000x750x1.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:3499648,&quot;iq&quot;:928880,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;AlexanderJamesM&quot;,&quot;name&quot;:&quot;AlexanderJamesM&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/AlexanderJamesM&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}]},&quot;author&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Hey, my name is Alexander, but you can call me Alex! I’m 30 years old, born on July 8, 1990. My favorite type of music is pop, but I also enjoy rock, country, dance, and a little bit of rap as well.\n\nI became a member on Genius in 2016, but officially became active in 2017. The same year in 2017, I was given the role as Editor by EwokABdevito.\n\nMost of my work on here has consisted of song transcriptions, album/song bios, and editing metadata throughout Genius!\n\nAccomplishments\n#11 dance scholar of all time\n#9 pop scholar of all time\n#7 country scholar of all time&quot;,&quot;api_path&quot;:&quot;/users/3499648&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/8f90836aa8f074aed33d47df84796d76&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/5409e988fe3af98ed4c12f0c8d8b5375.1000x750x1.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:3499648,&quot;iq&quot;:928880,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;AlexanderJamesM&quot;,&quot;name&quot;:&quot;AlexanderJamesM&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/AlexanderJamesM&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}],&quot;preloaded_referents&quot;:[{&quot;_type&quot;:&quot;referent&quot;,&quot;annotator_id&quot;:158387,&quot;annotator_login&quot;:&quot;FurFighter&quot;,&quot;api_path&quot;:&quot;/referents/1227305&quot;,&quot;classification&quot;:&quot;accepted&quot;,&quot;fragment&quot;:&quot;I put my thing down, flip it and reverse it\n Ti esrever dna ti pilf, nwod gniht ym tup\n Ti esrever dna ti pilf, nwod gniht ym tup&quot;,&quot;id&quot;:1227305,&quot;ios_app_url&quot;:&quot;genius://referents/1227305&quot;,&quot;is_description&quot;:false,&quot;is_image&quot;:false,&quot;path&quot;:&quot;/1227305/Missy-elliott-work-it/I-put-my-thing-down-flip-it-and-reverse-it-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup&quot;,&quot;range&quot;:{&quot;content&quot;:&quot;I put my thing down, flip it and reverse it\n Ti esrever dna ti pilf, nwod gniht ym tup\n Ti esrever dna ti pilf, nwod gniht ym tup&quot;},&quot;song_id&quot;:4176,&quot;url&quot;:&quot;https://genius.com/1227305/Missy-elliott-work-it/I-put-my-thing-down-flip-it-and-reverse-it-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup&quot;,&quot;verified_annotator_ids&quot;:[],&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;add_pinned_annotation_to&quot;,&quot;add_community_annotation_to&quot;],&quot;relationships&quot;:{}},&quot;tracking_paths&quot;:{&quot;aggregate&quot;:&quot;/1227305/Missy-elliott-work-it/I-put-my-thing-down-flip-it-and-reverse-it-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup&quot;,&quot;concurrent&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;},&quot;twitter_share_message&quot;:&quot;“When she says she puts her thing down, flips it and reverses it, she means it literally–the line…” —@Genius&quot;,&quot;annotatable&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/4176&quot;,&quot;client_timestamps&quot;:{&quot;updated_by_human_at&quot;:1615583226,&quot;lyrics_updated_at&quot;:1615583226},&quot;context&quot;:&quot;Missy Elliott&quot;,&quot;id&quot;:4176,&quot;image_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg&quot;,&quot;link_title&quot;:&quot;Work It by Missy Elliott&quot;,&quot;title&quot;:&quot;Work It&quot;,&quot;type&quot;:&quot;Song&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics&quot;},&quot;annotations&quot;:[{&quot;_type&quot;:&quot;annotation&quot;,&quot;api_path&quot;:&quot;/annotations/1227305&quot;,&quot;being_created&quot;:false,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;p&gt;When she says she puts her thing down, flips it and reverses it, she means it literally–the line is subsequently played backward twice (and the video experiments with various visual reversal gimmicks).&lt;/p&gt;\n\n&lt;p&gt;Given the sexually explicit nature of the latter part of the verse, Missy is also talking here about her own virtuosic switching of sexual positions during intercourse.&lt;br&gt;\nShe also flips the rap tradition of men talking about what they want to do with women.&lt;/p&gt;\n\n&lt;p&gt;&lt;img src=\&quot;https://images.rapgenius.com/ab767332bd1211cc29ee7d26394173dd.642x314x12.gif\&quot; alt=\&quot;\&quot; width=\&quot;642\&quot; height=\&quot;314\&quot; data-animated=\&quot;true\&quot;&gt;&lt;/p&gt;&quot;,&quot;plain&quot;:&quot;When she says she puts her thing down, flips it and reverses it, she means it literally–the line is subsequently played backward twice (and the video experiments with various visual reversal gimmicks).\n\nGiven the sexually explicit nature of the latter part of the verse, Missy is also talking here about her own virtuosic switching of sexual positions during intercourse.\nShe also flips the rap tradition of men talking about what they want to do with women.&quot;,&quot;markdown&quot;:&quot;When she says she puts her thing down, flips it and reverses it, she means it literally--the line is subsequently played backward twice (and the video experiments with various visual reversal gimmicks). \n\nGiven the sexually explicit nature of the latter part of the verse, Missy is also talking here about her own virtuosic switching of sexual positions during intercourse. \nShe also flips the rap tradition of men talking about what they want to do with women.\n\nhttp://images.rapgenius.com/ab767332bd1211cc29ee7d26394173dd.642x314x12.gif&quot;},&quot;comment_count&quot;:2,&quot;community&quot;:true,&quot;created_at&quot;:1353223043,&quot;custom_preview&quot;:null,&quot;deleted&quot;:false,&quot;embed_content&quot;:&quot;&lt;blockquote class='rg_standalone_container' data-src='//genius.com/annotations/1227305/standalone_embed'&gt;&lt;a href='https://genius.com/1227305/Missy-elliott-work-it/I-put-my-thing-down-flip-it-and-reverse-it-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup'&gt;I put my thing down, flip it and reverse it&amp;lt;br&amp;gt; Ti esrever dna ti pilf, nwod gniht ym tup&amp;lt;br&amp;gt; Ti esrever dna ti pilf, nwod gniht ym tup&lt;/a&gt;&lt;br&gt;&lt;a href='https://genius.com/Missy-elliott-work-it-lyrics'&gt;&amp;#8213; Missy Elliott – Work It&lt;/a&gt;&lt;/blockquote&gt;&lt;script async crossorigin src='//genius.com/annotations/load_standalone_embeds.js'&gt;&lt;/script&gt;&quot;,&quot;has_voters&quot;:true,&quot;id&quot;:1227305,&quot;needs_exegesis&quot;:false,&quot;pinned&quot;:false,&quot;proposed_edit_count&quot;:0,&quot;pyongs_count&quot;:null,&quot;referent_id&quot;:1227305,&quot;share_url&quot;:&quot;https://genius.com/1227305&quot;,&quot;source&quot;:null,&quot;state&quot;:&quot;accepted&quot;,&quot;twitter_share_message&quot;:&quot;“When she says she puts her thing down, flips it and reverses it, she means it literally–the line is subs…” —@Genius&quot;,&quot;url&quot;:&quot;https://genius.com/1227305/Missy-elliott-work-it/I-put-my-thing-down-flip-it-and-reverse-it-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup&quot;,&quot;verified&quot;:false,&quot;votes_total&quot;:122,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;create_comment&quot;],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;edit&quot;,&quot;cosign&quot;,&quot;uncosign&quot;,&quot;destroy&quot;,&quot;accept&quot;,&quot;reject&quot;,&quot;see_unreviewed&quot;,&quot;clear_votes&quot;,&quot;propose_edit_to&quot;,&quot;pin_to_profile&quot;,&quot;unpin_from_profile&quot;,&quot;update_source&quot;,&quot;edit_custom_preview&quot;],&quot;interactions&quot;:{&quot;cosign&quot;:false,&quot;pyong&quot;:false,&quot;vote&quot;:null},&quot;iq_by_action&quot;:{}},&quot;accepted_by&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;http://rapgenius.com/discussions/78086-Ben-devlin-january-april-2014-bandcamp-compilation\n\nhttps://www.youtube.com/watch?v=Kmys4LH9jTE\n\n\n\n“1234; hardworking and fair, bizarre”\n\n\n\n\n\nI’m somewhere quite high on here\n\nRIP Mary Devlin\n04/06/1943 – 14/03/2013\n\nIn no particular order, my favourite 10 producers are;\n\n\n\nDJ Premier\n\n\nEl-P\n\n\nJ Dilla\n\n\nKanye West\n\n\nMadlib\n\n\nPete Rock\n\n\nRZA\n\n\nThe Neptunes\n\n\nTimbaland\n\n\nWiley\n\n\n\n\n#GOAT song ever\n\nChris: Today’s historic trade agreement between Australia and Hong Kong marks a new season of hope for the future of world trade. The two countries have been at each other’s throats for years but now the hatchet’s been buried by a treaty which allows unrestricted trading between all parties at all levels. I’m joined now by Martin Craste, the British minister with special responsibility for the Commonwealth, and Gavin Hawtrey, the Australian foreign secretary, on camera. Gentlemen, this is pretty historic stuff, well done. A future of unbridled harmony then, Australia?\n\nGavin: Yes, I think Martin Craste and I can be pretty satisfied. It’s a good day\n\nChris: And if, as in the past, Australia exceed their agreement, what will you do about it?\n\nMartin: This is a very satisfactory treaty which I’m sure will work, well naturally if the limits were exceeded then this would be met with a firm line but I can’t see this being necessary\n\nChris: Mr. Hawtrey, he’s knocking a firm line in your direction. What are you going to do about that?\n\nGavin: Well, in that case we’d just reimpose sanctions as we did last year and then we’d-\n\nChris: Sanctions? Hold on a second, they’ve only just swallowed their sanctions and now they’re burping them back up in your face\n\nMartin: I think sanctions is rather premature talk, certainly. If sanctions were imposed we should have to retaliate with appropriate measures, but I can’t see-\n\nChris: I think “appropriate measures” is a euphemism, Mr. Hawtrey. You know what it means, what are you going to do about that?\n\nGavin: Well, I’d just have to go back to cabinet\n\nChris: And ask them about what?\n\nGavin: Well, I don’t know. Maybe it’s a matter for the military\n\nChris: The military?\n\nMartin: I think military measures is totally inappropriate reaction and I think this is way, way over the top\n\nChris: Sounds like you’re being inappropriate, are you?\n\nGavin: Of course I’m not being inappropriate, Martin Craste knows that full well\n\nMartin: This is the sort of misunderstanding that I thought we’d laid to rest during our negotiating period\n\nChris: Misunderstanding it certainly is, it’s certainly not a treaty, is it? You’re both at each other’s throats, you’re backing yourselfs up with arms, what are you going to do about it? Mr. Hawtrey, let me give you a hint; bang\n\nGavin: What are you asking me to say?\n\nChris: You know damn well what I’m asking you to say. You’re putting yourself in a situation of armed conflict, what are you plunging yourself into?\n\nGavin: You’d like me to say it?\n\nChris: I want you to say it, yes\n\nGavin: You want the word?\n\nChris: The word\n\nGavin: I will not flinch-\n\nChris: You will not flinch from?\n\nGavin: War\n\nChris: War. Gentlemen, I’ll put you on hold. If fighting did break out it would probably occur in Eastman’s Town in the upper cataracts on the Australio-Hong Kong border. Our reporter Donald Bethlehem is there now; Donald, what’s the atmosphere like?\n\nDonald: Tension here is very high, Chris. The stretched twig of peace is at melting point, people here are literally bursting with war. This is very much a country that’s going to blow up in its face\n\nChris: Well, gentlemen, it seems we have little option now but to declare war immediately\n\nMartin: Well, this is quite impossible. I couldn’t take such a decision without referring to my superior, Chris Patten, he’s in Hong Kong\n\nChris: Good, because he’s on the line now via satellite. Mr. Patten, what do you think of the idea of a war now? … I’ll take that as a yes\n\nMartin: Very well, it’s war\n\nGavin: War it is\n\nDonald: That’s it, Chris. It’s war, war has broken out, this is a war\n\nChris: That’s it, yes, it’s war\n\n#1 IANAHB2 scholar\n\nFavourite 5 albums:\n- Fever\n- Boy In Da Corner\n- Ultravisitor\n- YoYoYoYoYo\n- Paul’s Boutique\n\nShout out to HailTheKing, who editored me, I think it was March 2nd 2013 but can’t be sure&quot;,&quot;api_path&quot;:&quot;/users/141291&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/tiny/845fd01203157969bce194cbc8065f03&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/thumb/845fd01203157969bce194cbc8065f03&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/small/845fd01203157969bce194cbc8065f03&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/medium/845fd01203157969bce194cbc8065f03&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.rapgenius.com/avatars/medium/845fd01203157969bce194cbc8065f03&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:141291,&quot;iq&quot;:84521,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;123andtotha4&quot;,&quot;name&quot;:&quot;123andtotha4&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/123andtotha4&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}},&quot;authors&quot;:[{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.33035714285714285,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;AKA Jeremy Dean, Ph.D.\nEducation Czar, Rap Genius\njeremy@rapgenius.com\nTwitter: @dr_jdean&quot;,&quot;api_path&quot;:&quot;/users/113876&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/tiny/c8d88aa942add2006b7ff9cb8805f329&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/thumb/c8d88aa942add2006b7ff9cb8805f329&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/small/c8d88aa942add2006b7ff9cb8805f329&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/medium/c8d88aa942add2006b7ff9cb8805f329&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.rapgenius.com/avatars/medium/c8d88aa942add2006b7ff9cb8805f329&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:113876,&quot;iq&quot;:106222,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;Lucky_Desperado&quot;,&quot;name&quot;:&quot;Dr. Jeremy Dean&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/Lucky_Desperado&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.26785714285714285,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;2016-17 weren’t great. Let’s try this again.\n\n\n\n11/7/2015 -\n\n\n\n10/26/2015 –&quot;,&quot;api_path&quot;:&quot;/users/1507469&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/avatars/medium/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:1507469,&quot;iq&quot;:13031,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;MarrissaPatterson&quot;,&quot;name&quot;:&quot;MarrissaPatterson&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/MarrissaPatterson&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.14285714285714288,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;FurFighter is being loud for now&quot;,&quot;api_path&quot;:&quot;/users/158387&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:158387,&quot;iq&quot;:2284,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;FurFighter&quot;,&quot;name&quot;:&quot;FurFighter&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/FurFighter&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.13392857142857142,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Community. Content. Fun things.&quot;,&quot;api_path&quot;:&quot;/users/143119&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/avatars/medium/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;human_readable_role_for_display&quot;:&quot;Moderator&quot;,&quot;id&quot;:143119,&quot;iq&quot;:187239,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;TheScrivener&quot;,&quot;name&quot;:&quot;Elizabeth Milch&quot;,&quot;role_for_display&quot;:&quot;moderator&quot;,&quot;url&quot;:&quot;https://genius.com/TheScrivener&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.08928571428571429,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Hi I’m Kris,\n\nI am interested in Electronic Experimental Music. I guess that’s what lets me tie in to Rap.\n\nI think Lil B is a good rapper. But not in the same way I think Eminem is a good rapper.\n\nThings that make me smile are, Drums, Progressive Metal, Computers, Thunder Storms, Geography.&quot;,&quot;api_path&quot;:&quot;/users/14033&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/14033_I%20look%20Sexy.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/1358288293_14033_I%20look%20Sexy.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/1358288293_14033_I%20look%20Sexy.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1358288292_14033_I%20look%20Sexy.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1358288292_14033_I%20look%20Sexy.jpg&quot;,&quot;human_readable_role_for_display&quot;:null,&quot;id&quot;:14033,&quot;iq&quot;:172,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;Gundament&quot;,&quot;name&quot;:&quot;Gundament&quot;,&quot;role_for_display&quot;:null,&quot;url&quot;:&quot;https://genius.com/Gundament&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.03571428571428572,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Quality over quantity\n\nHuge proponent of giving producers their just due\n\nReal recognize real&quot;,&quot;api_path&quot;:&quot;/users/205320&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/a6daec522ab67899dd7624783d02d9e4&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/a6daec522ab67899dd7624783d02d9e4&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/a6daec522ab67899dd7624783d02d9e4&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/a6daec522ab67899dd7624783d02d9e4&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/filepicker-images-rapgenius/o9GtkFnLTxm0NuxhJbog_wallace-sky080905.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:205320,&quot;iq&quot;:91613,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;2Gatz&quot;,&quot;name&quot;:&quot;2Gatz&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/2Gatz&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}],&quot;cosigned_by&quot;:[],&quot;created_by&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;FurFighter is being loud for now&quot;,&quot;api_path&quot;:&quot;/users/158387&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1dI3Jep3SLa2LKGla6GR.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:158387,&quot;iq&quot;:2284,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;FurFighter&quot;,&quot;name&quot;:&quot;FurFighter&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/FurFighter&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}},&quot;rejection_comment&quot;:null,&quot;top_comment&quot;:{&quot;_type&quot;:&quot;comment&quot;,&quot;api_path&quot;:&quot;/comments/7486009&quot;,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;p&gt;she said in an interview that the tape played backwards so she said “Keep it but i’m a make words around it&lt;/p&gt;&quot;,&quot;plain&quot;:&quot;she said in an interview that the tape played backwards so she said “Keep it but i’m a make words around it&quot;,&quot;markdown&quot;:&quot;she said in an interview that the tape played backwards so she said \&quot;Keep it but i'm a make words around it&quot;},&quot;created_at&quot;:1578354326,&quot;has_voters&quot;:true,&quot;id&quot;:7486009,&quot;pinned_role&quot;:null,&quot;votes_total&quot;:8,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;accept&quot;,&quot;reject&quot;,&quot;mark_spam&quot;,&quot;integrate&quot;,&quot;archive&quot;,&quot;destroy&quot;],&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;anonymous_author&quot;:{&quot;_type&quot;:&quot;anonymous_user&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_16.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_32.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_100.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;login&quot;:&quot;harmoni&quot;,&quot;name&quot;:&quot;Harmoni&quot;},&quot;author&quot;:null,&quot;reason&quot;:{&quot;_type&quot;:&quot;comment_reason&quot;,&quot;context_url&quot;:&quot;https://genius.com/8846441/Genius-how-genius-works/More-on-annotations&quot;,&quot;display_character&quot;:&quot;M&quot;,&quot;handle&quot;:&quot;Missing something&quot;,&quot;id&quot;:3,&quot;name&quot;:&quot;missing-something&quot;,&quot;raw_name&quot;:&quot;missing something&quot;,&quot;requires_body&quot;:false,&quot;slug&quot;:&quot;missing_something&quot;}},&quot;verified_by&quot;:null}]}],&quot;primary_album_tracks&quot;:[{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:1,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/1804505&quot;,&quot;id&quot;:1804505,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-intro-go-to-the-floor-lyrics&quot;,&quot;title&quot;:&quot;Intro/Go To The Floor&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-intro-go-to-the-floor-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:2,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33257&quot;,&quot;id&quot;:33257,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-bring-the-pain-lyrics&quot;,&quot;title&quot;:&quot;Bring the Pain&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-bring-the-pain-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:3,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/4173&quot;,&quot;id&quot;:4173,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-gossip-folks-lyrics&quot;,&quot;title&quot;:&quot;Gossip Folks&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-gossip-folks-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:4,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/4176&quot;,&quot;id&quot;:4176,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;,&quot;title&quot;:&quot;Work It&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:5,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33249&quot;,&quot;id&quot;:33249,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-back-in-the-day-lyrics&quot;,&quot;title&quot;:&quot;Back in the Day&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-back-in-the-day-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:6,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33256&quot;,&quot;id&quot;:33256,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-funky-fresh-dressed-lyrics&quot;,&quot;title&quot;:&quot;Funky Fresh Dressed&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-funky-fresh-dressed-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:7,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33254&quot;,&quot;id&quot;:33254,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-pussycat-lyrics&quot;,&quot;title&quot;:&quot;Pussycat&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-pussycat-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:8,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33252&quot;,&quot;id&quot;:33252,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-nothing-out-there-for-me-lyrics&quot;,&quot;title&quot;:&quot;Nothing Out There for Me&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-nothing-out-there-for-me-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:9,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33253&quot;,&quot;id&quot;:33253,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-slide-lyrics&quot;,&quot;title&quot;:&quot;Slide&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-slide-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:10,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33259&quot;,&quot;id&quot;:33259,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-play-that-beat-lyrics&quot;,&quot;title&quot;:&quot;Play That Beat&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-play-that-beat-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:11,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33246&quot;,&quot;id&quot;:33246,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-aint-that-funny-lyrics&quot;,&quot;title&quot;:&quot;Ain’t That Funny&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-aint-that-funny-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:12,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33251&quot;,&quot;id&quot;:33251,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-hot-lyrics&quot;,&quot;title&quot;:&quot;Hot&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-hot-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:13,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33248&quot;,&quot;id&quot;:33248,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-can-you-hear-me-lyrics&quot;,&quot;title&quot;:&quot;Can You Hear Me&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-can-you-hear-me-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:14,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33212&quot;,&quot;id&quot;:33212,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-work-it-remix-lyrics&quot;,&quot;title&quot;:&quot;Work It (Remix)&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-remix-lyrics&quot;}},{&quot;_type&quot;:&quot;album_appearance&quot;,&quot;number&quot;:15,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;view_song&quot;],&quot;excluded_permissions&quot;:[]},&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/33250&quot;,&quot;id&quot;:33250,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;path&quot;:&quot;/Missy-elliott-drop-the-bomb-lyrics&quot;,&quot;title&quot;:&quot;Drop the Bomb&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-drop-the-bomb-lyrics&quot;}}],&quot;recirculated_content&quot;:[{&quot;metadata&quot;:{&quot;target&quot;:&quot;article&quot;,&quot;type&quot;:&quot;news&quot;,&quot;id&quot;:9487},&quot;appearance&quot;:{&quot;attribution&quot;:&quot;Caitlin Kelley&quot;,&quot;image_url&quot;:&quot;https://images.genius.com/ba79e06db43a809f062a13503685eb31.1440x650x1.jpg&quot;,&quot;label&quot;:&quot;news&quot;,&quot;overlay_compatible_image_url&quot;:&quot;https://images.genius.com/ba79e06db43a809f062a13503685eb31.1440x650x1.jpg&quot;,&quot;publish_date&quot;:1573575000,&quot;title&quot;:&quot;Knowledge Drop: Timbaland Made Missy Elliott Rewrite Her “Work It” Verse Four Times&quot;},&quot;behavior&quot;:{&quot;attributes&quot;:{&quot;api_path&quot;:&quot;/articles/9487&quot;,&quot;url&quot;:&quot;https://genius.com/a/timbaland-made-missy-elliott-rewrite-her-work-it-verse-four-times&quot;},&quot;classification&quot;:&quot;link&quot;,&quot;video&quot;:null}},{&quot;metadata&quot;:{&quot;target&quot;:&quot;article&quot;,&quot;type&quot;:&quot;news&quot;,&quot;id&quot;:8936},&quot;appearance&quot;:{&quot;attribution&quot;:&quot;Chris Mench&quot;,&quot;image_url&quot;:&quot;https://images.genius.com/1291e4e097649d1ae5bc3e819285428b.900x500x1.jpg&quot;,&quot;label&quot;:&quot;news&quot;,&quot;overlay_compatible_image_url&quot;:&quot;https://images.genius.com/1291e4e097649d1ae5bc3e819285428b.900x500x1.jpg&quot;,&quot;publish_date&quot;:1566918720,&quot;title&quot;:&quot;Missy Elliott Reunites With Alyson Stoner During Career-Spanning VMA Video Vanguard Performance&quot;},&quot;behavior&quot;:{&quot;attributes&quot;:{&quot;api_path&quot;:&quot;/articles/8936&quot;,&quot;url&quot;:&quot;https://genius.com/a/missy-elliott-reunites-with-alyson-stoner-during-career-spanning-vma-video-vanguard-performance-work-it&quot;},&quot;classification&quot;:&quot;link&quot;,&quot;video&quot;:null}},{&quot;metadata&quot;:{&quot;target&quot;:&quot;article&quot;,&quot;type&quot;:&quot;news&quot;,&quot;id&quot;:7328},&quot;appearance&quot;:{&quot;attribution&quot;:&quot;Caitlin Kelley&quot;,&quot;image_url&quot;:&quot;https://images.genius.com/73e231fce854fab0fc798276f5846014.900x500x1.png&quot;,&quot;label&quot;:&quot;news&quot;,&quot;overlay_compatible_image_url&quot;:&quot;https://images.genius.com/73e231fce854fab0fc798276f5846014.900x500x1.png&quot;,&quot;publish_date&quot;:1552678440,&quot;title&quot;:&quot;Missy Elliott Will Be The First Female Rapper To Earn An Honorary Doctorate From Berklee&quot;},&quot;behavior&quot;:{&quot;attributes&quot;:{&quot;api_path&quot;:&quot;/articles/7328&quot;,&quot;url&quot;:&quot;https://genius.com/a/missy-elliott-will-be-the-first-female-rapper-to-earn-an-honorary-doctorate-from-berklee&quot;},&quot;classification&quot;:&quot;link&quot;,&quot;video&quot;:null}}],&quot;song&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:31,&quot;api_path&quot;:&quot;/songs/4176&quot;,&quot;apple_music_id&quot;:&quot;254167909&quot;,&quot;apple_music_player_url&quot;:&quot;https://genius.com/songs/4176/apple_music_player&quot;,&quot;comment_count&quot;:7,&quot;custom_header_image_url&quot;:null,&quot;custom_song_art_image_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg&quot;,&quot;description&quot;:{&quot;html&quot;:&quot;&lt;p&gt;“Work It' is the first single from Missy’s 2002 album &lt;em&gt;Under Construction.&lt;/em&gt; The song was both a commercial and critical hit: It peaked at &lt;a href=\&quot;https://www.billboard.com/music/Missy-Elliott/chart-history/hot-100\&quot; rel=\&quot;noopener nofollow\&quot;&gt;No. 2 on &lt;em&gt;Billboard&lt;/em&gt;’s Hot 100&lt;/a&gt; (making it Missy’s biggest hit) and was named the best single of 2002 in &lt;a href=\&quot;http://www.robertchristgau.com/xg/pnj/pjres02.php\&quot; rel=\&quot;noopener nofollow\&quot;&gt;The Village Voice’s Pazz &amp;amp; Jop poll&lt;/a&gt;. The song memorably features backward lyrics and an elephant trumpting. It also helped popularize the term \&quot;badonkadonk.” The song is a raunchy ode where Missy raps about sexing up guys. In his review of &lt;em&gt;Under Construction&lt;/em&gt;, &lt;a href=\&quot;http://www.allmusic.com/album/under-construction-mw0000231192\&quot; rel=\&quot;noopener nofollow\&quot;&gt;allmusic’s John Bush&lt;/a&gt; said the song, “turns the tables on male rappers, taking charge of the sex game, matching their lewdest, rudest rhymes.”&lt;/p&gt;\n\n&lt;p&gt;This music video features the young hip hop dancer, &lt;a href=\&quot;https://en.wikipedia.org/wiki/Alyson_Stoner\&quot; rel=\&quot;noopener nofollow\&quot;&gt;Alyson Stoner&lt;/a&gt;, who in 2015 choreographed &lt;a href=\&quot;http://www.people.com/article/alyson-stoner-missy-elliott-work-it-video-tribute\&quot; rel=\&quot;noopener nofollow\&quot;&gt;a tribute to Missy Elliott&lt;/a&gt; for “the opportunity to dance for [her] and now carve a path of [her] own.”&lt;/p&gt;\n\n&lt;p&gt;&lt;img src=\&quot;https://images.rapgenius.com/e1a10abf24f96a0fd9f2358aeb6e4b50.500x245x17.gif\&quot; alt=\&quot;\&quot; width=\&quot;500\&quot; height=\&quot;245\&quot; data-animated=\&quot;true\&quot;&gt;&lt;/p&gt;&quot;,&quot;markdown&quot;:&quot;\&quot;Work It' is the first single from Missy's 2002 album *Under Construction.* The song was both a commercial and critical hit: It peaked at [No. 2 on *Billboard*'s Hot 100](https://www.billboard.com/music/Missy-Elliott/chart-history/hot-100) (making it Missy's biggest hit) and was named the best single of 2002 in [The Village Voice's Pazz &amp; Jop poll](http://www.robertchristgau.com/xg/pnj/pjres02.php). The song memorably features backward lyrics and an elephant trumpting. It also helped popularize the term \&quot;badonkadonk.\&quot; The song is a raunchy ode where Missy raps about sexing up guys. In his review of *Under Construction*, [allmusic's John Bush](http://www.allmusic.com/album/under-construction-mw0000231192) said the song, \&quot;turns the tables on male rappers, taking charge of the sex game, matching their lewdest, rudest rhymes.\&quot; \n\nThis music video features the young hip hop dancer, [Alyson Stoner](https://en.wikipedia.org/wiki/Alyson_Stoner), who in 2015 choreographed [a tribute to Missy Elliott](http://www.people.com/article/alyson-stoner-missy-elliott-work-it-video-tribute) for \&quot;the opportunity to dance for [her] and now carve a path of [her] own.\&quot;\n\nhttp://images.rapgenius.com/e1a10abf24f96a0fd9f2358aeb6e4b50.500x245x17.gif&quot;},&quot;description_preview&quot;:&quot;“Work It' is the first single from Missy’s 2002 album Under Construction. The song was both a commercial and critical  It peaked at No. 2 on Billboard’s Hot 100 (making it Missy’s biggest hit) and was named the best single of 2002 in The Village Voice’s Pazz &amp; Jop poll. The song memorably features backward lyrics and an elephant trumpting. It also helped popularize the term \&quot;badonkadonk.” The song is a raunchy ode where Missy raps about sexing up guys. In his review of Under Construction, allmusic’s John Bush said the song, “turns the tables on male rappers, taking charge of the sex game, matching their lewdest, rudest rhymes.”\n\nThis music video features the young hip hop dancer, Alyson Stoner, who in 2015 choreographed a tribute to Missy Elliott for “the opportunity to dance for [her] and now carve a path of [her] own.”&quot;,&quot;embed_content&quot;:&quot;&lt;div id='rg_embed_link_4176' class='rg_embed_link' data-song-id='4176'&gt;Read &lt;a href='https://genius.com/Missy-elliott-work-it-lyrics'&gt;“Work It” by Missy Elliott&lt;/a&gt; on Genius&lt;/div&gt; &lt;script crossorigin src='//genius.com/songs/4176/embed.js'&gt;&lt;/script&gt;&quot;,&quot;featured_video&quot;:true,&quot;full_title&quot;:&quot;Work It by Missy Elliott&quot;,&quot;has_instagram_reel_annotations&quot;:null,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.300x311x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg&quot;,&quot;hidden&quot;:false,&quot;id&quot;:4176,&quot;instrumental&quot;:false,&quot;is_music&quot;:true,&quot;lyrics_owner_id&quot;:6654,&quot;lyrics_placeholder_reason&quot;:null,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1615583226,&quot;path&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;,&quot;pending_lyrics_edits_count&quot;:0,&quot;published&quot;:false,&quot;pusher_channel&quot;:&quot;song-4176&quot;,&quot;pyongs_count&quot;:38,&quot;recording_location&quot;:&quot;The Hit Factory Criteria (Miami)&quot;,&quot;release_date&quot;:&quot;2002-09-01&quot;,&quot;release_date_components&quot;:{&quot;year&quot;:2002,&quot;month&quot;:9,&quot;day&quot;:1},&quot;release_date_for_display&quot;:&quot;September 1, 2002&quot;,&quot;share_url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics&quot;,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.300x311x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;soundcloud_url&quot;:null,&quot;spotify_uuid&quot;:&quot;3jagJCUbdqhDSPuxP8cAqF&quot;,&quot;stats&quot;:{&quot;accepted_annotations&quot;:29,&quot;contributors&quot;:99,&quot;iq_earners&quot;:99,&quot;transcribers&quot;:0,&quot;unreviewed_annotations&quot;:1,&quot;verified_annotations&quot;:0,&quot;concurrents&quot;:2,&quot;hot&quot;:false,&quot;pageviews&quot;:1164466},&quot;title&quot;:&quot;Work It&quot;,&quot;title_with_featured&quot;:&quot;Work It&quot;,&quot;tracking_data&quot;:[{&quot;key&quot;:&quot;Song ID&quot;,&quot;value&quot;:4176},{&quot;key&quot;:&quot;Title&quot;,&quot;value&quot;:&quot;Work It&quot;},{&quot;key&quot;:&quot;Primary Artist&quot;,&quot;value&quot;:&quot;Missy Elliott&quot;},{&quot;key&quot;:&quot;Primary Artist ID&quot;,&quot;value&quot;:1529},{&quot;key&quot;:&quot;Primary Album&quot;,&quot;value&quot;:&quot;Under Construction&quot;},{&quot;key&quot;:&quot;Primary Album ID&quot;,&quot;value&quot;:6639},{&quot;key&quot;:&quot;Tag&quot;,&quot;value&quot;:&quot;rap&quot;},{&quot;key&quot;:&quot;Primary Tag&quot;,&quot;value&quot;:&quot;rap&quot;},{&quot;key&quot;:&quot;Primary Tag ID&quot;,&quot;value&quot;:1434},{&quot;key&quot;:&quot;Music?&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Annotatable Type&quot;,&quot;value&quot;:&quot;Song&quot;},{&quot;key&quot;:&quot;Annotatable ID&quot;,&quot;value&quot;:4176},{&quot;key&quot;:&quot;featured_video&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;cohort_ids&quot;,&quot;value&quot;:[]},{&quot;key&quot;:&quot;has_verified_callout&quot;,&quot;value&quot;:false},{&quot;key&quot;:&quot;has_featured_annotation&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;created_at&quot;,&quot;value&quot;:&quot;2011-02-08T07:55:31Z&quot;},{&quot;key&quot;:&quot;created_month&quot;,&quot;value&quot;:&quot;2011-02-01&quot;},{&quot;key&quot;:&quot;created_year&quot;,&quot;value&quot;:2011},{&quot;key&quot;:&quot;song_tier&quot;,&quot;value&quot;:&quot;C&quot;},{&quot;key&quot;:&quot;Has Recirculated Articles&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Lyrics Language&quot;,&quot;value&quot;:&quot;en&quot;},{&quot;key&quot;:&quot;Has Song Story&quot;,&quot;value&quot;:false},{&quot;key&quot;:&quot;Song Story ID&quot;,&quot;value&quot;:null},{&quot;key&quot;:&quot;Has Apple Match&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Release Date&quot;,&quot;value&quot;:&quot;2002-09-01&quot;},{&quot;key&quot;:&quot;NRM Tier&quot;,&quot;value&quot;:null},{&quot;key&quot;:&quot;NRM Target Date&quot;,&quot;value&quot;:null},{&quot;key&quot;:&quot;Has Description&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Has Youtube URL&quot;,&quot;value&quot;:true},{&quot;key&quot;:&quot;Has Translation Q&amp;A&quot;,&quot;value&quot;:false},{&quot;key&quot;:&quot;Comment Count&quot;,&quot;value&quot;:7}],&quot;tracking_paths&quot;:{&quot;aggregate&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;,&quot;concurrent&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;},&quot;twitter_share_message&quot;:&quot;Missy Elliott – Work It @MissyElliott https://genius.com/Missy-elliott-work-it-lyrics&quot;,&quot;twitter_share_message_without_url&quot;:&quot;Missy Elliott – Work It @MissyElliott&quot;,&quot;updated_by_human_at&quot;:1615583226,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics&quot;,&quot;viewable_by_roles&quot;:[],&quot;vttp_id&quot;:null,&quot;youtube_start&quot;:&quot;0&quot;,&quot;youtube_url&quot;:&quot;http://www.youtube.com/watch?v=cjIvu7e6Wq8&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;see_pageviews&quot;,&quot;view_apple_music_player&quot;,&quot;create_comment&quot;,&quot;view_song_story_gallery&quot;],&quot;excluded_permissions&quot;:[&quot;follow&quot;,&quot;award_transcription_iq&quot;,&quot;remove_transcription_iq&quot;,&quot;pyong&quot;,&quot;edit_lyrics&quot;,&quot;view_annotation_engagement_data&quot;,&quot;publish&quot;,&quot;unpublish&quot;,&quot;edit_spotify_details&quot;,&quot;hide&quot;,&quot;unhide&quot;,&quot;toggle_featured_video&quot;,&quot;add_pinned_annotation_to&quot;,&quot;add_community_annotation_to&quot;,&quot;destroy&quot;,&quot;mark_as_not_spam&quot;,&quot;edit_spotify_annotations_for&quot;,&quot;verify_lyrics&quot;,&quot;unverify_lyrics&quot;,&quot;edit_anything&quot;,&quot;edit_any_media&quot;,&quot;edit&quot;,&quot;rename&quot;,&quot;edit_tags&quot;,&quot;watch_fact_track&quot;,&quot;reindex&quot;,&quot;view_lyrics_synchronization&quot;,&quot;enable_media&quot;,&quot;disable_media&quot;,&quot;edit_lyrics_or_annotation_brackets&quot;,&quot;see_editorial_indicators&quot;,&quot;view_attribution_visualization&quot;,&quot;edit_annotation_brackets&quot;,&quot;preview_lyrics_for_export&quot;,&quot;hide_apple_player&quot;,&quot;unhide_apple_player&quot;,&quot;trigger_apple_match&quot;,&quot;mark_lyrics_evaluation_as_approved&quot;,&quot;mark_lyrics_evaluation_as_staff_approved&quot;,&quot;mark_lyrics_evaluation_as_unapproved&quot;,&quot;mark_lyrics_evaluation_as_un_staff_approved&quot;,&quot;view_transcriber_media_player&quot;,&quot;override_apple_match&quot;,&quot;set_song_color_gradient&quot;,&quot;edit_youtube_url&quot;,&quot;edit_soundcloud_url&quot;,&quot;edit_spotify_uuid&quot;,&quot;edit_vevo_url&quot;,&quot;moderate_annotations&quot;,&quot;create_annotation&quot;,&quot;see_short_id&quot;,&quot;manage_chart_item&quot;,&quot;create_tag&quot;,&quot;propose_lyrics_edit&quot;,&quot;moderate_lyrics_edit_proposals&quot;,&quot;preview_react_song_page&quot;],&quot;interactions&quot;:{&quot;pyong&quot;:false,&quot;following&quot;:false},&quot;relationships&quot;:{},&quot;iq_by_action&quot;:{}},&quot;album&quot;:{&quot;_type&quot;:&quot;album&quot;,&quot;api_path&quot;:&quot;/albums/6639&quot;,&quot;cover_art_thumbnail_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.300x300x1.jpg&quot;,&quot;cover_art_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg&quot;,&quot;full_title&quot;:&quot;Under Construction by Missy Elliott&quot;,&quot;id&quot;:6639,&quot;name&quot;:&quot;Under Construction&quot;,&quot;name_with_artist&quot;:&quot;Under Construction (artist: Missy Elliott)&quot;,&quot;release_date_components&quot;:{&quot;year&quot;:2002,&quot;month&quot;:11,&quot;day&quot;:12},&quot;url&quot;:&quot;https://genius.com/albums/Missy-elliott/Under-construction&quot;,&quot;artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}},&quot;albums&quot;:[{&quot;_type&quot;:&quot;album&quot;,&quot;api_path&quot;:&quot;/albums/6639&quot;,&quot;cover_art_thumbnail_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.300x300x1.jpg&quot;,&quot;cover_art_url&quot;:&quot;https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg&quot;,&quot;full_title&quot;:&quot;Under Construction by Missy Elliott&quot;,&quot;id&quot;:6639,&quot;name&quot;:&quot;Under Construction&quot;,&quot;name_with_artist&quot;:&quot;Under Construction (artist: Missy Elliott)&quot;,&quot;release_date_components&quot;:{&quot;year&quot;:2002,&quot;month&quot;:11,&quot;day&quot;:12},&quot;url&quot;:&quot;https://genius.com/albums/Missy-elliott/Under-construction&quot;,&quot;artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}},{&quot;_type&quot;:&quot;album&quot;,&quot;api_path&quot;:&quot;/albums/335070&quot;,&quot;cover_art_thumbnail_url&quot;:&quot;https://images.genius.com/75cfb85ca9e5a85370891a511a97b3d5.300x300x1.jpg&quot;,&quot;cover_art_url&quot;:&quot;https://images.genius.com/75cfb85ca9e5a85370891a511a97b3d5.640x640x1.jpg&quot;,&quot;full_title&quot;:&quot;Respect M.E. by Missy Elliott&quot;,&quot;id&quot;:335070,&quot;name&quot;:&quot;Respect M.E.&quot;,&quot;name_with_artist&quot;:&quot;Respect M.E. (artist: Missy Elliott)&quot;,&quot;release_date_components&quot;:{&quot;year&quot;:2006,&quot;month&quot;:9,&quot;day&quot;:4},&quot;url&quot;:&quot;https://genius.com/albums/Missy-elliott/Respect-m-e&quot;,&quot;artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}}],&quot;custom_performances&quot;:[{&quot;label&quot;:&quot;Recording Engineer&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1113933&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:1113933,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;c&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Carlos Bedoya&quot;,&quot;slug&quot;:&quot;Carlos-bedoya&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Carlos-bedoya&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/647617&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/eef1b6dafb5dbcb8440612bc29199033.700x441x1.jpg&quot;,&quot;id&quot;:647617,&quot;image_url&quot;:&quot;https://images.genius.com/79649ddb983d8763f845bcd910f418ba.323x323x1.jpg&quot;,&quot;index_character&quot;:&quot;j&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Jimmy Douglass&quot;,&quot;slug&quot;:&quot;Jimmy-douglass&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Jimmy-douglass&quot;}]},{&quot;label&quot;:&quot;Assistant Recording Engineer&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1124667&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/a1119e972a4bd1d92a1a1a388abd874b.326x326x1.jpg&quot;,&quot;id&quot;:1124667,&quot;image_url&quot;:&quot;https://images.genius.com/a1119e972a4bd1d92a1a1a388abd874b.326x326x1.jpg&quot;,&quot;index_character&quot;:&quot;d&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Demacio “Demo” Castellon&quot;,&quot;slug&quot;:&quot;Demacio-demo-castellon&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Demacio-demo-castellon&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/264658&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:264658,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Marc Lee&quot;,&quot;slug&quot;:&quot;Marc-lee&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Marc-lee&quot;}]},{&quot;label&quot;:&quot;Mixing Engineer&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/647617&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/eef1b6dafb5dbcb8440612bc29199033.700x441x1.jpg&quot;,&quot;id&quot;:647617,&quot;image_url&quot;:&quot;https://images.genius.com/79649ddb983d8763f845bcd910f418ba.323x323x1.jpg&quot;,&quot;index_character&quot;:&quot;j&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Jimmy Douglass&quot;,&quot;slug&quot;:&quot;Jimmy-douglass&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Jimmy-douglass&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/112&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/e50135b935c14cecfee2a6ef1b84d9af.960x532x1.png&quot;,&quot;id&quot;:112,&quot;image_url&quot;:&quot;https://images.genius.com/4510e34916379b2473ddd8392cb4d5db.563x563x1.png&quot;,&quot;index_character&quot;:&quot;t&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Timbaland&quot;,&quot;slug&quot;:&quot;Timbaland&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Timbaland&quot;}]},{&quot;label&quot;:&quot;Assistant Mixing Engineer&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1138473&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:1138473,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;s&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Steamy&quot;,&quot;slug&quot;:&quot;Steamy&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Steamy&quot;}]},{&quot;label&quot;:&quot;Mastering Engineer&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/666532&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/ef80b6414df4eefc8ca33b129c9fdafd.1000x664x1.jpg&quot;,&quot;id&quot;:666532,&quot;image_url&quot;:&quot;https://images.genius.com/ef80b6414df4eefc8ca33b129c9fdafd.1000x664x1.jpg&quot;,&quot;index_character&quot;:&quot;h&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Herb Powers&quot;,&quot;slug&quot;:&quot;Herb-powers&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Herb-powers&quot;}]},{&quot;label&quot;:&quot;Label&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1774931&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:1774931,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;g&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;The Goldmind&quot;,&quot;slug&quot;:&quot;The-goldmind&quot;,&quot;url&quot;:&quot;https://genius.com/artists/The-goldmind&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/96082&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/3f9c5c405c1d4e502e86f879e7574cef.1000x397x1.jpg&quot;,&quot;id&quot;:96082,&quot;image_url&quot;:&quot;https://images.genius.com/ba087ec9521763c4053837734c0cf4c8.528x528x1.jpg&quot;,&quot;index_character&quot;:&quot;e&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Elektra Records&quot;,&quot;slug&quot;:&quot;Elektra-records&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Elektra-records&quot;}]},{&quot;label&quot;:&quot;Copyright ©&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/647621&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/89e374bc1e76b04f45640373a0e4329f.275x275x1.jpg&quot;,&quot;id&quot;:647621,&quot;image_url&quot;:&quot;https://images.genius.com/89e374bc1e76b04f45640373a0e4329f.275x275x1.jpg&quot;,&quot;index_character&quot;:&quot;e&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Elektra Entertainment Group&quot;,&quot;slug&quot;:&quot;Elektra-entertainment-group&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Elektra-entertainment-group&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1112276&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/159917d9c26b9cfe66c0b04493a1f05a.900x900x1.png&quot;,&quot;id&quot;:1112276,&quot;image_url&quot;:&quot;https://images.genius.com/340e19086e9ebeae265e6e4947b0ffcb.900x900x1.png&quot;,&quot;index_character&quot;:&quot;w&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Warner Music Group&quot;,&quot;slug&quot;:&quot;Warner-music-group&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Warner-music-group&quot;}]},{&quot;label&quot;:&quot;Phonographic Copyright ℗&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/647621&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/89e374bc1e76b04f45640373a0e4329f.275x275x1.jpg&quot;,&quot;id&quot;:647621,&quot;image_url&quot;:&quot;https://images.genius.com/89e374bc1e76b04f45640373a0e4329f.275x275x1.jpg&quot;,&quot;index_character&quot;:&quot;e&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Elektra Entertainment Group&quot;,&quot;slug&quot;:&quot;Elektra-entertainment-group&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Elektra-entertainment-group&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1112276&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/159917d9c26b9cfe66c0b04493a1f05a.900x900x1.png&quot;,&quot;id&quot;:1112276,&quot;image_url&quot;:&quot;https://images.genius.com/340e19086e9ebeae265e6e4947b0ffcb.900x900x1.png&quot;,&quot;index_character&quot;:&quot;w&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Warner Music Group&quot;,&quot;slug&quot;:&quot;Warner-music-group&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Warner-music-group&quot;}]},{&quot;label&quot;:&quot;Performance Rights&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/551598&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/067d9bccf2ab6e5eded129861b73d9dc.851x315x1.jpg&quot;,&quot;id&quot;:551598,&quot;image_url&quot;:&quot;https://images.genius.com/5f24e8e67904faef419d736f2ade3f78.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;a&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;ASCAP&quot;,&quot;slug&quot;:&quot;Ascap&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Ascap&quot;}]},{&quot;label&quot;:&quot;Publisher&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/2481188&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:2481188,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Mass Confusion Music&quot;,&quot;slug&quot;:&quot;Mass-confusion-music&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Mass-confusion-music&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/649033&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:649033,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;v&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Virginia Beach Music&quot;,&quot;slug&quot;:&quot;Virginia-beach-music&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Virginia-beach-music&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1112276&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/159917d9c26b9cfe66c0b04493a1f05a.900x900x1.png&quot;,&quot;id&quot;:1112276,&quot;image_url&quot;:&quot;https://images.genius.com/340e19086e9ebeae265e6e4947b0ffcb.900x900x1.png&quot;,&quot;index_character&quot;:&quot;w&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Warner Music Group&quot;,&quot;slug&quot;:&quot;Warner-music-group&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Warner-music-group&quot;}]},{&quot;label&quot;:&quot;Mixed At&quot;,&quot;artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1417247&quot;,&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;id&quot;:1417247,&quot;image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Manhattan Center Studios, New York, NY&quot;,&quot;slug&quot;:&quot;Manhattan-center-studios-new-york-ny&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Manhattan-center-studios-new-york-ny&quot;}]}],&quot;description_annotation&quot;:{&quot;_type&quot;:&quot;referent&quot;,&quot;annotator_id&quot;:174913,&quot;annotator_login&quot;:&quot;loloMTL&quot;,&quot;api_path&quot;:&quot;/referents/3494966&quot;,&quot;classification&quot;:&quot;accepted&quot;,&quot;fragment&quot;:&quot;Work It&quot;,&quot;id&quot;:3494966,&quot;ios_app_url&quot;:&quot;genius://referents/3494966&quot;,&quot;is_description&quot;:true,&quot;is_image&quot;:false,&quot;path&quot;:&quot;/3494966/Missy-elliott-work-it/Work-it&quot;,&quot;range&quot;:{&quot;content&quot;:&quot;Work It&quot;},&quot;song_id&quot;:4176,&quot;url&quot;:&quot;https://genius.com/3494966/Missy-elliott-work-it/Work-it&quot;,&quot;verified_annotator_ids&quot;:[],&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;add_pinned_annotation_to&quot;,&quot;add_community_annotation_to&quot;],&quot;relationships&quot;:{}},&quot;tracking_paths&quot;:{&quot;aggregate&quot;:&quot;/3494966/Missy-elliott-work-it/Work-it&quot;,&quot;concurrent&quot;:&quot;/Missy-elliott-work-it-lyrics&quot;},&quot;twitter_share_message&quot;:&quot;““Work It' is the first single from Missy’s 2002 album Under Construction. The song was both a co…” —@Genius&quot;,&quot;annotatable&quot;:{&quot;_type&quot;:&quot;song&quot;,&quot;api_path&quot;:&quot;/songs/4176&quot;,&quot;client_timestamps&quot;:{&quot;updated_by_human_at&quot;:1615583226,&quot;lyrics_updated_at&quot;:1615583226},&quot;context&quot;:&quot;Missy Elliott&quot;,&quot;id&quot;:4176,&quot;image_url&quot;:&quot;https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg&quot;,&quot;link_title&quot;:&quot;Work It by Missy Elliott&quot;,&quot;title&quot;:&quot;Work It&quot;,&quot;type&quot;:&quot;Song&quot;,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-lyrics&quot;},&quot;annotations&quot;:[{&quot;_type&quot;:&quot;annotation&quot;,&quot;api_path&quot;:&quot;/annotations/3494966&quot;,&quot;being_created&quot;:false,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;p&gt;“Work It' is the first single from Missy’s 2002 album &lt;em&gt;Under Construction.&lt;/em&gt; The song was both a commercial and critical hit: It peaked at &lt;a href=\&quot;https://www.billboard.com/music/Missy-Elliott/chart-history/hot-100\&quot; rel=\&quot;noopener nofollow\&quot;&gt;No. 2 on &lt;em&gt;Billboard&lt;/em&gt;’s Hot 100&lt;/a&gt; (making it Missy’s biggest hit) and was named the best single of 2002 in &lt;a href=\&quot;http://www.robertchristgau.com/xg/pnj/pjres02.php\&quot; rel=\&quot;noopener nofollow\&quot;&gt;The Village Voice’s Pazz &amp;amp; Jop poll&lt;/a&gt;. The song memorably features backward lyrics and an elephant trumpting. It also helped popularize the term \&quot;badonkadonk.” The song is a raunchy ode where Missy raps about sexing up guys. In his review of &lt;em&gt;Under Construction&lt;/em&gt;, &lt;a href=\&quot;http://www.allmusic.com/album/under-construction-mw0000231192\&quot; rel=\&quot;noopener nofollow\&quot;&gt;allmusic’s John Bush&lt;/a&gt; said the song, “turns the tables on male rappers, taking charge of the sex game, matching their lewdest, rudest rhymes.”&lt;/p&gt;\n\n&lt;p&gt;This music video features the young hip hop dancer, &lt;a href=\&quot;https://en.wikipedia.org/wiki/Alyson_Stoner\&quot; rel=\&quot;noopener nofollow\&quot;&gt;Alyson Stoner&lt;/a&gt;, who in 2015 choreographed &lt;a href=\&quot;http://www.people.com/article/alyson-stoner-missy-elliott-work-it-video-tribute\&quot; rel=\&quot;noopener nofollow\&quot;&gt;a tribute to Missy Elliott&lt;/a&gt; for “the opportunity to dance for [her] and now carve a path of [her] own.”&lt;/p&gt;\n\n&lt;p&gt;&lt;img src=\&quot;https://images.rapgenius.com/e1a10abf24f96a0fd9f2358aeb6e4b50.500x245x17.gif\&quot; alt=\&quot;\&quot; width=\&quot;500\&quot; height=\&quot;245\&quot; data-animated=\&quot;true\&quot;&gt;&lt;/p&gt;&quot;,&quot;markdown&quot;:&quot;\&quot;Work It' is the first single from Missy's 2002 album *Under Construction.* The song was both a commercial and critical hit: It peaked at [No. 2 on *Billboard*'s Hot 100](https://www.billboard.com/music/Missy-Elliott/chart-history/hot-100) (making it Missy's biggest hit) and was named the best single of 2002 in [The Village Voice's Pazz &amp; Jop poll](http://www.robertchristgau.com/xg/pnj/pjres02.php). The song memorably features backward lyrics and an elephant trumpting. It also helped popularize the term \&quot;badonkadonk.\&quot; The song is a raunchy ode where Missy raps about sexing up guys. In his review of *Under Construction*, [allmusic's John Bush](http://www.allmusic.com/album/under-construction-mw0000231192) said the song, \&quot;turns the tables on male rappers, taking charge of the sex game, matching their lewdest, rudest rhymes.\&quot; \n\nThis music video features the young hip hop dancer, [Alyson Stoner](https://en.wikipedia.org/wiki/Alyson_Stoner), who in 2015 choreographed [a tribute to Missy Elliott](http://www.people.com/article/alyson-stoner-missy-elliott-work-it-video-tribute) for \&quot;the opportunity to dance for [her] and now carve a path of [her] own.\&quot;\n\nhttp://images.rapgenius.com/e1a10abf24f96a0fd9f2358aeb6e4b50.500x245x17.gif&quot;},&quot;comment_count&quot;:3,&quot;community&quot;:true,&quot;created_at&quot;:1429573614,&quot;custom_preview&quot;:null,&quot;deleted&quot;:false,&quot;embed_content&quot;:&quot;&lt;blockquote class='rg_standalone_container' data-src='//genius.com/annotations/3494966/standalone_embed'&gt;&lt;a href='https://genius.com/3494966/Missy-elliott-work-it/Work-it'&gt;Work It&lt;/a&gt;&lt;br&gt;&lt;a href='https://genius.com/Missy-elliott-work-it-lyrics'&gt;&amp;#8213; Missy Elliott – Work It&lt;/a&gt;&lt;/blockquote&gt;&lt;script async crossorigin src='//genius.com/annotations/load_standalone_embeds.js'&gt;&lt;/script&gt;&quot;,&quot;has_voters&quot;:true,&quot;id&quot;:3494966,&quot;needs_exegesis&quot;:false,&quot;pinned&quot;:false,&quot;proposed_edit_count&quot;:0,&quot;pyongs_count&quot;:null,&quot;referent_id&quot;:3494966,&quot;share_url&quot;:&quot;https://genius.com/3494966&quot;,&quot;source&quot;:null,&quot;state&quot;:&quot;accepted&quot;,&quot;twitter_share_message&quot;:&quot;““Work It' is the first single from Missy’s 2002 album Under Construction. The song was both a commercial…” —@Genius&quot;,&quot;url&quot;:&quot;https://genius.com/3494966/Missy-elliott-work-it/Work-it&quot;,&quot;verified&quot;:false,&quot;votes_total&quot;:27,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[&quot;create_comment&quot;],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;edit&quot;,&quot;cosign&quot;,&quot;uncosign&quot;,&quot;destroy&quot;,&quot;accept&quot;,&quot;reject&quot;,&quot;see_unreviewed&quot;,&quot;clear_votes&quot;,&quot;propose_edit_to&quot;,&quot;pin_to_profile&quot;,&quot;unpin_from_profile&quot;,&quot;update_source&quot;,&quot;edit_custom_preview&quot;],&quot;interactions&quot;:{&quot;cosign&quot;:false,&quot;pyong&quot;:false,&quot;vote&quot;:null},&quot;iq_by_action&quot;:{}},&quot;accepted_by&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;I have a big thing for female rappers, what can I say.&quot;,&quot;api_path&quot;:&quot;/users/6654&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/1358288125_6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/1358288125_6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1358288125_6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1358288125_6654_Picture%209.png&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:6654,&quot;iq&quot;:918,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;HKAndy&quot;,&quot;name&quot;:&quot;HKAndy&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/HKAndy&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}},&quot;authors&quot;:[{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.5363128491620112,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Insanul is a life long hip-hop fan who hails from The Bronx, where he spent the majority of his life. He spent six years working at Complex covering music. At Complex he wrote cover stories on Wiz Khalifa, Mac Miller, and Kendrick Lamar. He got Lupe Fiasco to admit he hates Lasers, got Method Man to admit RZA and GZA ghostwrote ODB’s rhymes, and did Making ofs on albums like Nas' It Was Written, The Game’s The Documentary, and Kendrick Lamar’s good kid, m.a.a.d. city. He’s also the guy Wale yelled at on the phone that one time.&quot;,&quot;api_path&quot;:&quot;/users/325189&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/e4c300054daec5c64f107d687e2b5648&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/e4c300054daec5c64f107d687e2b5648&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/e4c300054daec5c64f107d687e2b5648&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/e4c300054daec5c64f107d687e2b5648&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/avatars/medium/e4c300054daec5c64f107d687e2b5648&quot;,&quot;human_readable_role_for_display&quot;:&quot;Staff&quot;,&quot;id&quot;:325189,&quot;iq&quot;:79290,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;Incilin&quot;,&quot;name&quot;:&quot;Insanul Ahmed&quot;,&quot;role_for_display&quot;:&quot;staff&quot;,&quot;url&quot;:&quot;https://genius.com/Incilin&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.35754189944134074,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;2016-17 weren’t great. Let’s try this again.\n\n\n\n11/7/2015 -\n\n\n\n10/26/2015 –&quot;,&quot;api_path&quot;:&quot;/users/1507469&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/avatars/medium/bdb71b0ededdd0ac16433f85ff0f982e&quot;,&quot;human_readable_role_for_display&quot;:&quot;Editor&quot;,&quot;id&quot;:1507469,&quot;iq&quot;:13031,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;MarrissaPatterson&quot;,&quot;name&quot;:&quot;MarrissaPatterson&quot;,&quot;role_for_display&quot;:&quot;editor&quot;,&quot;url&quot;:&quot;https://genius.com/MarrissaPatterson&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.04469273743016759,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;&quot;,&quot;api_path&quot;:&quot;/users/1761430&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_16.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_32.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_100.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://assets.genius.com/images/default_avatar_300.png?1616532842&quot;,&quot;human_readable_role_for_display&quot;:null,&quot;id&quot;:1761430,&quot;iq&quot;:5,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;Cocile&quot;,&quot;name&quot;:&quot;Cocile&quot;,&quot;role_for_display&quot;:null,&quot;url&quot;:&quot;https://genius.com/Cocile&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.03910614525139665,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;Community. Content. Fun things.&quot;,&quot;api_path&quot;:&quot;/users/143119&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/tiny/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/thumb/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/small/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.genius.com/avatars/medium/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.genius.com/avatars/medium/435bf4128688f7daf8886838ca43fdb7&quot;,&quot;human_readable_role_for_display&quot;:&quot;Moderator&quot;,&quot;id&quot;:143119,&quot;iq&quot;:187239,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;TheScrivener&quot;,&quot;name&quot;:&quot;Elizabeth Milch&quot;,&quot;role_for_display&quot;:&quot;moderator&quot;,&quot;url&quot;:&quot;https://genius.com/TheScrivener&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution&quot;:0.022346368715083796,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;coming from the mountains of REAL y'all know the deal, got the green sticky in the ziploc sealed!&quot;,&quot;api_path&quot;:&quot;/users/174913&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:174913,&quot;iq&quot;:5455,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;loloMTL&quot;,&quot;name&quot;:&quot;loloMTL&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/loloMTL&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}}],&quot;cosigned_by&quot;:[],&quot;created_by&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;coming from the mountains of REAL y'all know the deal, got the green sticky in the ziploc sealed!&quot;,&quot;api_path&quot;:&quot;/users/174913&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/i5OQ4SjGSE9SjAgDhSpa.jpg&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:174913,&quot;iq&quot;:5455,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;loloMTL&quot;,&quot;name&quot;:&quot;loloMTL&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/loloMTL&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}},&quot;rejection_comment&quot;:null,&quot;top_comment&quot;:{&quot;_type&quot;:&quot;comment&quot;,&quot;api_path&quot;:&quot;/comments/3275594&quot;,&quot;body&quot;:{&quot;html&quot;:&quot;&lt;p&gt;“Supa Dupa Fly” was one of those rap albums that helped Missy Elliott become a dominant force in a male-dominated music industry.  The songs that I associate from this rapper are “Get Ur Freak On” and “Lose Control”.&lt;/p&gt;&quot;,&quot;markdown&quot;:&quot;\&quot;Supa Dupa Fly\&quot; was one of those rap albums that helped Missy Elliott become a dominant force in a male-dominated music industry.  The songs that I associate from this rapper are \&quot;Get Ur Freak On\&quot; and \&quot;Lose Control\&quot;.  &quot;},&quot;created_at&quot;:1443450283,&quot;has_voters&quot;:true,&quot;id&quot;:3275594,&quot;pinned_role&quot;:null,&quot;votes_total&quot;:1,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;vote&quot;,&quot;accept&quot;,&quot;reject&quot;,&quot;mark_spam&quot;,&quot;integrate&quot;,&quot;archive&quot;,&quot;destroy&quot;],&quot;interactions&quot;:{&quot;vote&quot;:null}},&quot;anonymous_author&quot;:null,&quot;author&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;&quot;,&quot;api_path&quot;:&quot;/users/2271822&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/tiny/2674c2ca9fee325602214d7a0d5ecd2a&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/thumb/2674c2ca9fee325602214d7a0d5ecd2a&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/small/2674c2ca9fee325602214d7a0d5ecd2a&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://images.rapgenius.com/avatars/medium/2674c2ca9fee325602214d7a0d5ecd2a&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://images.rapgenius.com/avatars/medium/2674c2ca9fee325602214d7a0d5ecd2a&quot;,&quot;human_readable_role_for_display&quot;:null,&quot;id&quot;:2271822,&quot;iq&quot;:103,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;KevinStallman&quot;,&quot;name&quot;:&quot;KevinStallman&quot;,&quot;role_for_display&quot;:null,&quot;url&quot;:&quot;https://genius.com/KevinStallman&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}},&quot;reason&quot;:null},&quot;verified_by&quot;:null}]},&quot;featured_artists&quot;:[],&quot;lyrics_marked_complete_by&quot;:null,&quot;media&quot;:[{&quot;provider&quot;:&quot;youtube&quot;,&quot;start&quot;:0,&quot;type&quot;:&quot;video&quot;,&quot;url&quot;:&quot;http://www.youtube.com/watch?v=cjIvu7e6Wq8&quot;},{&quot;native_uri&quot;:&quot;spotify:track:3jagJCUbdqhDSPuxP8cAqF&quot;,&quot;provider&quot;:&quot;spotify&quot;,&quot;type&quot;:&quot;audio&quot;,&quot;url&quot;:&quot;https://open.spotify.com/track/3jagJCUbdqhDSPuxP8cAqF&quot;}],&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;},&quot;primary_tag&quot;:{&quot;_type&quot;:&quot;tag&quot;,&quot;id&quot;:1434,&quot;name&quot;:&quot;Rap&quot;,&quot;primary&quot;:true,&quot;url&quot;:&quot;https://genius.com/tags/rap&quot;},&quot;producer_artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/112&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/e50135b935c14cecfee2a6ef1b84d9af.960x532x1.png&quot;,&quot;id&quot;:112,&quot;image_url&quot;:&quot;https://images.genius.com/4510e34916379b2473ddd8392cb4d5db.563x563x1.png&quot;,&quot;index_character&quot;:&quot;t&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Timbaland&quot;,&quot;slug&quot;:&quot;Timbaland&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Timbaland&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}],&quot;song_relationships&quot;:[{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;samples&quot;,&quot;type&quot;:&quot;samples&quot;,&quot;songs&quot;:[{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:25,&quot;api_path&quot;:&quot;/songs/3543&quot;,&quot;full_title&quot;:&quot;Peter Piper by Run-DMC&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/52f755f604d9998c58dbdcc75a4285bf.300x304x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/52f755f604d9998c58dbdcc75a4285bf.494x500x1.jpg&quot;,&quot;id&quot;:3543,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:5465,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1611681287,&quot;path&quot;:&quot;/Run-dmc-peter-piper-lyrics&quot;,&quot;pyongs_count&quot;:8,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/52f755f604d9998c58dbdcc75a4285bf.300x304x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/52f755f604d9998c58dbdcc75a4285bf.494x500x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false,&quot;pageviews&quot;:80304},&quot;title&quot;:&quot;Peter Piper&quot;,&quot;title_with_featured&quot;:&quot;Peter Piper&quot;,&quot;updated_by_human_at&quot;:1611681288,&quot;url&quot;:&quot;https://genius.com/Run-dmc-peter-piper-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1124&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/c725421437d139c487aa8f8ff84ae169.1000x667x1.jpg&quot;,&quot;id&quot;:1124,&quot;image_url&quot;:&quot;https://images.genius.com/63df3e6293cfcc8c85e004eae35f81f2.580x580x1.jpg&quot;,&quot;index_character&quot;:&quot;r&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Run-DMC&quot;,&quot;slug&quot;:&quot;Run-dmc&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Run-dmc&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:1,&quot;api_path&quot;:&quot;/songs/2797523&quot;,&quot;full_title&quot;:&quot;Take Me To The Mardi Gras by Bob James&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/3999ebdcf6d9cfc0e216d968459083f6.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/3999ebdcf6d9cfc0e216d968459083f6.500x500x1.jpg&quot;,&quot;id&quot;:2797523,&quot;instrumental&quot;:true,&quot;lyrics_owner_id&quot;:292095,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1467301557,&quot;path&quot;:&quot;/Bob-james-take-me-to-the-mardi-gras-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/3999ebdcf6d9cfc0e216d968459083f6.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/3999ebdcf6d9cfc0e216d968459083f6.500x500x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;Take Me To The Mardi Gras&quot;,&quot;title_with_featured&quot;:&quot;Take Me To The Mardi Gras&quot;,&quot;updated_by_human_at&quot;:1543592309,&quot;url&quot;:&quot;https://genius.com/Bob-james-take-me-to-the-mardi-gras-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1547&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/ed75ff91d0ca34420ab1b540b25481d0.1000x660x1.jpg&quot;,&quot;id&quot;:1547,&quot;image_url&quot;:&quot;https://images.genius.com/1b492acfda443d5e468d4c971154dfb8.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;b&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Bob James&quot;,&quot;slug&quot;:&quot;Bob-james&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Bob-james&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:1,&quot;api_path&quot;:&quot;/songs/2413932&quot;,&quot;full_title&quot;:&quot;Request Line by Rock Master Scott &amp; the Dynamic Three&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.rapgenius.com/9ae81af56bd0a79980e788fc9a93f93d.300x306x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.rapgenius.com/9ae81af56bd0a79980e788fc9a93f93d.979x1000x1.jpg&quot;,&quot;id&quot;:2413932,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:2540007,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1588476663,&quot;path&quot;:&quot;/Rock-master-scott-and-the-dynamic-three-request-line-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.rapgenius.com/9ae81af56bd0a79980e788fc9a93f93d.300x306x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.rapgenius.com/9ae81af56bd0a79980e788fc9a93f93d.979x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:1,&quot;hot&quot;:false,&quot;pageviews&quot;:5148},&quot;title&quot;:&quot;Request Line&quot;,&quot;title_with_featured&quot;:&quot;Request Line&quot;,&quot;updated_by_human_at&quot;:1588476663,&quot;url&quot;:&quot;https://genius.com/Rock-master-scott-and-the-dynamic-three-request-line-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/404567&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/6db9ce0d97189cea7c38b8edf369cc00.274x274x1.jpg&quot;,&quot;id&quot;:404567,&quot;image_url&quot;:&quot;https://images.genius.com/6db9ce0d97189cea7c38b8edf369cc00.274x274x1.jpg&quot;,&quot;index_character&quot;:&quot;r&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Rock Master Scott &amp; the Dynamic Three&quot;,&quot;slug&quot;:&quot;Rock-master-scott-and-the-dynamic-three&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Rock-master-scott-and-the-dynamic-three&quot;}}]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;sampled_in&quot;,&quot;type&quot;:&quot;sampled_in&quot;,&quot;songs&quot;:[{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:1,&quot;api_path&quot;:&quot;/songs/12742&quot;,&quot;full_title&quot;:&quot;The Brainstream by Canibus&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/adcb0609ab97cadcb1d698ababd16a9d.300x289x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/adcb0609ab97cadcb1d698ababd16a9d.350x337x1.jpg&quot;,&quot;id&quot;:12742,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:50,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1475224424,&quot;path&quot;:&quot;/Canibus-the-brainstream-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/adcb0609ab97cadcb1d698ababd16a9d.300x289x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/adcb0609ab97cadcb1d698ababd16a9d.350x337x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;The Brainstream&quot;,&quot;title_with_featured&quot;:&quot;The Brainstream&quot;,&quot;updated_by_human_at&quot;:1496184618,&quot;url&quot;:&quot;https://genius.com/Canibus-the-brainstream-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/209&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/2160d5ad9820a044669e1f77cac84dbc.640x306x1.jpg&quot;,&quot;id&quot;:209,&quot;image_url&quot;:&quot;https://images.genius.com/86dfaf46c1f97aa0d3bdebf581f58529.1000x1000x1.png&quot;,&quot;index_character&quot;:&quot;c&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Canibus&quot;,&quot;slug&quot;:&quot;Canibus&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Canibus&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:7,&quot;api_path&quot;:&quot;/songs/129839&quot;,&quot;full_title&quot;:&quot;History of Rap 1 by Jimmy Fallon (Ft. Justin Timberlake)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/a99c082cf0cddf765a78f138bea9666c.300x169x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/a99c082cf0cddf765a78f138bea9666c.1000x562x1.jpg&quot;,&quot;id&quot;:129839,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:1553,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1556426442,&quot;path&quot;:&quot;/Jimmy-fallon-history-of-rap-1-lyrics&quot;,&quot;pyongs_count&quot;:6,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/a99c082cf0cddf765a78f138bea9666c.300x169x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/a99c082cf0cddf765a78f138bea9666c.1000x562x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false,&quot;pageviews&quot;:45425},&quot;title&quot;:&quot;History of Rap 1&quot;,&quot;title_with_featured&quot;:&quot;History of Rap 1 (Ft. Justin Timberlake)&quot;,&quot;updated_by_human_at&quot;:1556426442,&quot;url&quot;:&quot;https://genius.com/Jimmy-fallon-history-of-rap-1-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/41925&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d4ed528c80bfe1b6d2e040d9573cd558.1000x563x1.jpg&quot;,&quot;id&quot;:41925,&quot;image_url&quot;:&quot;https://images.genius.com/ac567e710bd8a256e5c82907ae451ed7.563x563x1.png&quot;,&quot;index_character&quot;:&quot;j&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Jimmy Fallon&quot;,&quot;slug&quot;:&quot;Jimmy-fallon&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Jimmy-fallon&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:1,&quot;api_path&quot;:&quot;/songs/977351&quot;,&quot;full_title&quot;:&quot;No Pause by Girl Talk&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/536452ce3d4a86da3170d6d8fe73750f.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/536452ce3d4a86da3170d6d8fe73750f.640x640x1.jpg&quot;,&quot;id&quot;:977351,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:1549345,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1495179997,&quot;path&quot;:&quot;/Girl-talk-no-pause-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/536452ce3d4a86da3170d6d8fe73750f.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/536452ce3d4a86da3170d6d8fe73750f.640x640x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:1,&quot;hot&quot;:false},&quot;title&quot;:&quot;No Pause&quot;,&quot;title_with_featured&quot;:&quot;No Pause&quot;,&quot;updated_by_human_at&quot;:1589230128,&quot;url&quot;:&quot;https://genius.com/Girl-talk-no-pause-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/928&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d8d897c8aa4269e0035eb18faffd52ce.770x616x1.jpg&quot;,&quot;id&quot;:928,&quot;image_url&quot;:&quot;https://images.genius.com/5951c5c6da66bc7fc4ae35c95a578766.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;g&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Girl Talk&quot;,&quot;slug&quot;:&quot;Girl-talk&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Girl-talk&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:30,&quot;api_path&quot;:&quot;/songs/1784930&quot;,&quot;full_title&quot;:&quot;TI esreveR dnA tI pilF nwoD gnihT yM tuP I by Bugatti Beez&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/101cecc9cdc65e38f6e1c96f7136f7b1.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/101cecc9cdc65e38f6e1c96f7136f7b1.500x500x1.jpg&quot;,&quot;id&quot;:1784930,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:770138,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1499995222,&quot;path&quot;:&quot;/Bugatti-beez-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-i-lyrics&quot;,&quot;pyongs_count&quot;:2,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/101cecc9cdc65e38f6e1c96f7136f7b1.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/101cecc9cdc65e38f6e1c96f7136f7b1.500x500x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:28,&quot;hot&quot;:false},&quot;title&quot;:&quot;TI esreveR dnA tI pilF nwoD gnihT yM tuP I&quot;,&quot;title_with_featured&quot;:&quot;TI esreveR dnA tI pilF nwoD gnihT yM tuP I&quot;,&quot;updated_by_human_at&quot;:1502128761,&quot;url&quot;:&quot;https://genius.com/Bugatti-beez-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-i-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/168690&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d5c099043b8082577657f4d5016d0b37.194x259x1.jpg&quot;,&quot;id&quot;:168690,&quot;image_url&quot;:&quot;https://images.genius.com/58fb153cf4527fb4868f91e4547928f7.900x900x1.jpg&quot;,&quot;index_character&quot;:&quot;b&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Bugatti Beez&quot;,&quot;slug&quot;:&quot;Bugatti-beez&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Bugatti-beez&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:17,&quot;api_path&quot;:&quot;/songs/3790260&quot;,&quot;full_title&quot;:&quot;TECH it NO it LO it GIC it by Duuzu&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/6ca8eaf7b9e0631bc419e967ec50b4d6.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/6ca8eaf7b9e0631bc419e967ec50b4d6.1000x1000x1.jpg&quot;,&quot;id&quot;:3790260,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:5268330,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1604679900,&quot;path&quot;:&quot;/Duuzu-tech-it-no-it-lo-it-gic-it-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/6ca8eaf7b9e0631bc419e967ec50b4d6.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/6ca8eaf7b9e0631bc419e967ec50b4d6.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:17,&quot;hot&quot;:false},&quot;title&quot;:&quot;TECH it NO it LO it GIC it&quot;,&quot;title_with_featured&quot;:&quot;TECH it NO it LO it GIC it&quot;,&quot;updated_by_human_at&quot;:1604679900,&quot;url&quot;:&quot;https://genius.com/Duuzu-tech-it-no-it-lo-it-gic-it-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1504682&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/f72bc4027fc6bfcd171a37616e7b3011.975x180x1.png&quot;,&quot;id&quot;:1504682,&quot;image_url&quot;:&quot;https://images.genius.com/6ca8eaf7b9e0631bc419e967ec50b4d6.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;d&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Duuzu&quot;,&quot;slug&quot;:&quot;Duuzu&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Duuzu&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:9,&quot;api_path&quot;:&quot;/songs/4312315&quot;,&quot;full_title&quot;:&quot;Tempo by Lizzo (Ft. Missy Elliott)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/da186cc0f5cc68e0e448bbab0f0eaeeb.300x300x1.png&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/da186cc0f5cc68e0e448bbab0f0eaeeb.1000x1000x1.png&quot;,&quot;id&quot;:4312315,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:104344,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1580265593,&quot;path&quot;:&quot;/Lizzo-tempo-lyrics&quot;,&quot;pyongs_count&quot;:12,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/b735aaf3ce3992f757e42b3525e805fc.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/b735aaf3ce3992f757e42b3525e805fc.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:2,&quot;hot&quot;:false,&quot;pageviews&quot;:190415},&quot;title&quot;:&quot;Tempo&quot;,&quot;title_with_featured&quot;:&quot;Tempo (Ft. Missy Elliott)&quot;,&quot;updated_by_human_at&quot;:1602564032,&quot;url&quot;:&quot;https://genius.com/Lizzo-tempo-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/84514&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/b2cb32312c5bd157d3913755ec4e4bb8.1000x397x1.jpg&quot;,&quot;id&quot;:84514,&quot;image_url&quot;:&quot;https://images.genius.com/f5ab6722a4c9021ff63946e16289fd22.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;l&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:true,&quot;name&quot;:&quot;Lizzo&quot;,&quot;slug&quot;:&quot;Lizzo&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Lizzo&quot;,&quot;iq&quot;:329}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:10,&quot;api_path&quot;:&quot;/songs/4739760&quot;,&quot;full_title&quot;:&quot;Jackin' Foe Beats by Violent J&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/f62f4e750f3bcf9f859d86438ab43f3b.300x269x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/f62f4e750f3bcf9f859d86438ab43f3b.1000x897x1.jpg&quot;,&quot;id&quot;:4739760,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:8577466,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1612825185,&quot;path&quot;:&quot;/Violent-j-jackin-foe-beats-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/f62f4e750f3bcf9f859d86438ab43f3b.300x269x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/f62f4e750f3bcf9f859d86438ab43f3b.1000x897x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:10,&quot;hot&quot;:false},&quot;title&quot;:&quot;Jackin’ Foe Beats&quot;,&quot;title_with_featured&quot;:&quot;Jackin' Foe Beats&quot;,&quot;updated_by_human_at&quot;:1612825185,&quot;url&quot;:&quot;https://genius.com/Violent-j-jackin-foe-beats-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/3147&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/815919561bae5cc0b9da4b1e4dd46b83.960x540x1.jpg&quot;,&quot;id&quot;:3147,&quot;image_url&quot;:&quot;https://images.genius.com/399850918a6108814b05e0a78d9513ed.609x609x1.jpg&quot;,&quot;index_character&quot;:&quot;v&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Violent J&quot;,&quot;slug&quot;:&quot;Violent-j&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Violent-j&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:5,&quot;api_path&quot;:&quot;/songs/5137594&quot;,&quot;full_title&quot;:&quot;Testlines 2 by Celo &amp; Abdi&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/53888f4041559bd0d917370c220de622.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/53888f4041559bd0d917370c220de622.1000x1000x1.jpg&quot;,&quot;id&quot;:5137594,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:7651968,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1582909700,&quot;path&quot;:&quot;/Celo-and-abdi-testlines-2-lyrics&quot;,&quot;pyongs_count&quot;:1,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/53888f4041559bd0d917370c220de622.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/53888f4041559bd0d917370c220de622.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:4,&quot;hot&quot;:false},&quot;title&quot;:&quot;Testlines 2&quot;,&quot;title_with_featured&quot;:&quot;Testlines 2&quot;,&quot;updated_by_human_at&quot;:1594365900,&quot;url&quot;:&quot;https://genius.com/Celo-and-abdi-testlines-2-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/19125&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/7960843eda7c1da592a2fb6e472d5a33.1000x1000x1.jpg&quot;,&quot;id&quot;:19125,&quot;image_url&quot;:&quot;https://images.genius.com/53888f4041559bd0d917370c220de622.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;c&quot;,&quot;is_meme_verified&quot;:true,&quot;is_verified&quot;:true,&quot;name&quot;:&quot;Celo &amp; Abdi&quot;,&quot;slug&quot;:&quot;Celo-and-abdi&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Celo-and-abdi&quot;,&quot;iq&quot;:4947}}]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;interpolates&quot;,&quot;type&quot;:&quot;interpolates&quot;,&quot;songs&quot;:[]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;interpolated_by&quot;,&quot;type&quot;:&quot;interpolated_by&quot;,&quot;songs&quot;:[{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:1,&quot;api_path&quot;:&quot;/songs/800266&quot;,&quot;full_title&quot;:&quot;My Dickie by Beenie Man&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/cb99a96c112600ed6638e43823166abf.300x307x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/cb99a96c112600ed6638e43823166abf.487x498x1.jpg&quot;,&quot;id&quot;:800266,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:3024693,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1509026023,&quot;path&quot;:&quot;/Beenie-man-my-dickie-lyrics&quot;,&quot;pyongs_count&quot;:1,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/cb99a96c112600ed6638e43823166abf.300x307x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/cb99a96c112600ed6638e43823166abf.487x498x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;My Dickie&quot;,&quot;title_with_featured&quot;:&quot;My Dickie&quot;,&quot;updated_by_human_at&quot;:1595187213,&quot;url&quot;:&quot;https://genius.com/Beenie-man-my-dickie-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/8550&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/fe0bed4838b46f7c9f15c8b320e8eac1.668x359x1.png&quot;,&quot;id&quot;:8550,&quot;image_url&quot;:&quot;https://images.genius.com/b32c23227d1261eac85227d5867eab2e.788x788x1.jpg&quot;,&quot;index_character&quot;:&quot;b&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Beenie Man&quot;,&quot;slug&quot;:&quot;Beenie-man&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Beenie-man&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:4,&quot;api_path&quot;:&quot;/songs/3248602&quot;,&quot;full_title&quot;:&quot;Reverse Live vs The Saurus by Counter Productive (Ft. Reverse Live &amp; The Saurus)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/9ab9817d047ee83bb9c72344e1b34f8f.300x169x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/9ab9817d047ee83bb9c72344e1b34f8f.1000x563x1.jpg&quot;,&quot;id&quot;:3248602,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:303,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1507778473,&quot;path&quot;:&quot;/Counter-productive-reverse-live-vs-the-saurus-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/9ab9817d047ee83bb9c72344e1b34f8f.300x169x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/9ab9817d047ee83bb9c72344e1b34f8f.1000x563x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;Reverse Live vs The Saurus&quot;,&quot;title_with_featured&quot;:&quot;Reverse Live vs The Saurus (Ft. Reverse Live &amp; The Saurus)&quot;,&quot;updated_by_human_at&quot;:1515044278,&quot;url&quot;:&quot;https://genius.com/Counter-productive-reverse-live-vs-the-saurus-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/328669&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/85d82800c3d342d7018e56d94e152b3f.1000x563x1.jpg&quot;,&quot;id&quot;:328669,&quot;image_url&quot;:&quot;https://images.genius.com/85d82800c3d342d7018e56d94e152b3f.1000x563x1.jpg&quot;,&quot;index_character&quot;:&quot;c&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Counter Productive&quot;,&quot;slug&quot;:&quot;Counter-productive&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Counter-productive&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:10,&quot;api_path&quot;:&quot;/songs/3962203&quot;,&quot;full_title&quot;:&quot;UNTITLED by SwaVay&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/d97f047828c5f6d7cbc3e0bc99d0a298.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d97f047828c5f6d7cbc3e0bc99d0a298.1000x1000x1.jpg&quot;,&quot;id&quot;:3962203,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:427740,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1551905897,&quot;path&quot;:&quot;/Swavay-untitled-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/d97f047828c5f6d7cbc3e0bc99d0a298.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/d97f047828c5f6d7cbc3e0bc99d0a298.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;UNTITLED&quot;,&quot;title_with_featured&quot;:&quot;UNTITLED&quot;,&quot;updated_by_human_at&quot;:1551905897,&quot;url&quot;:&quot;https://genius.com/Swavay-untitled-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/222802&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/468cf3e0e9c2ff32c28e106ac1743236.714x396x1.jpg&quot;,&quot;id&quot;:222802,&quot;image_url&quot;:&quot;https://images.genius.com/d1bf6b4ec9b9c5e6a6ad0621ba48a91b.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;s&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:true,&quot;name&quot;:&quot;SwaVay&quot;,&quot;slug&quot;:&quot;Swavay&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Swavay&quot;,&quot;iq&quot;:944}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:6,&quot;api_path&quot;:&quot;/songs/4707498&quot;,&quot;full_title&quot;:&quot;Rapapapa by Rich Brian (Ft. RZA)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/983cb065bc5486d5cdfe0f9329303baf.300x300x1.png&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/983cb065bc5486d5cdfe0f9329303baf.1000x1000x1.png&quot;,&quot;id&quot;:4707498,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:6612308,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1612982640,&quot;path&quot;:&quot;/Rich-brian-rapapapa-lyrics&quot;,&quot;pyongs_count&quot;:11,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/983cb065bc5486d5cdfe0f9329303baf.300x300x1.png&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/983cb065bc5486d5cdfe0f9329303baf.1000x1000x1.png&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:1,&quot;hot&quot;:false,&quot;pageviews&quot;:124367},&quot;title&quot;:&quot;Rapapapa&quot;,&quot;title_with_featured&quot;:&quot;Rapapapa (Ft. RZA)&quot;,&quot;updated_by_human_at&quot;:1612982640,&quot;url&quot;:&quot;https://genius.com/Rich-brian-rapapapa-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/566912&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/e87a38aa12b5db943012ec7280eb3c6e.800x400x1.jpg&quot;,&quot;id&quot;:566912,&quot;image_url&quot;:&quot;https://images.genius.com/c11605364e3d79975ba5b3caf6813d33.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;r&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:true,&quot;name&quot;:&quot;Rich Brian&quot;,&quot;slug&quot;:&quot;Rich-brian&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Rich-brian&quot;,&quot;iq&quot;:13606}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:10,&quot;api_path&quot;:&quot;/songs/4774643&quot;,&quot;full_title&quot;:&quot;QUICKSTAND! by Ski Mask the Slump God&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/af70545ba1257fca94c9958f9797aa34.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/af70545ba1257fca94c9958f9797aa34.1000x1000x1.jpg&quot;,&quot;id&quot;:4774643,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:1599419,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1611272523,&quot;path&quot;:&quot;/Ski-mask-the-slump-god-quickstand-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/af70545ba1257fca94c9958f9797aa34.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/af70545ba1257fca94c9958f9797aa34.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:4,&quot;hot&quot;:false,&quot;pageviews&quot;:7715},&quot;title&quot;:&quot;QUICKSTAND!&quot;,&quot;title_with_featured&quot;:&quot;QUICKSTAND!&quot;,&quot;updated_by_human_at&quot;:1611272522,&quot;url&quot;:&quot;https://genius.com/Ski-mask-the-slump-god-quickstand-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/396531&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/1a1bda4d9c9e90b7a71947154573757c.640x358x140.gif&quot;,&quot;id&quot;:396531,&quot;image_url&quot;:&quot;https://images.genius.com/dcd375b9914f1d133c0c22f19b1aeeb0.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;s&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:true,&quot;name&quot;:&quot;Ski Mask the Slump God&quot;,&quot;slug&quot;:&quot;Ski-mask-the-slump-god&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Ski-mask-the-slump-god&quot;,&quot;iq&quot;:9156}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:12,&quot;api_path&quot;:&quot;/songs/4805110&quot;,&quot;full_title&quot;:&quot;Throw It Back by Missy Elliott&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/7b5d04c939fd07fc8eab05400e8194aa.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/7b5d04c939fd07fc8eab05400e8194aa.1000x1000x1.jpg&quot;,&quot;id&quot;:4805110,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:54639,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1567889129,&quot;path&quot;:&quot;/Missy-elliott-throw-it-back-lyrics&quot;,&quot;pyongs_count&quot;:3,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/7b5d04c939fd07fc8eab05400e8194aa.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/7b5d04c939fd07fc8eab05400e8194aa.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false,&quot;pageviews&quot;:26667},&quot;title&quot;:&quot;Throw It Back&quot;,&quot;title_with_featured&quot;:&quot;Throw It Back&quot;,&quot;updated_by_human_at&quot;:1615738268,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-throw-it-back-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:9,&quot;api_path&quot;:&quot;/songs/4832591&quot;,&quot;full_title&quot;:&quot;Sounds of the Skeng by Stormzy&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/50b1f254bef6a97e66ee77e3eba473ae.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/50b1f254bef6a97e66ee77e3eba473ae.500x500x1.jpg&quot;,&quot;id&quot;:4832591,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:5748418,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1609874454,&quot;path&quot;:&quot;/Stormzy-sounds-of-the-skeng-lyrics&quot;,&quot;pyongs_count&quot;:4,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/50b1f254bef6a97e66ee77e3eba473ae.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/50b1f254bef6a97e66ee77e3eba473ae.500x500x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false,&quot;pageviews&quot;:75882},&quot;title&quot;:&quot;Sounds of the Skeng&quot;,&quot;title_with_featured&quot;:&quot;Sounds of the Skeng&quot;,&quot;updated_by_human_at&quot;:1610050996,&quot;url&quot;:&quot;https://genius.com/Stormzy-sounds-of-the-skeng-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/212456&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/925c337ea36d586b01dcb6e96b5962f9.615x409x1.jpg&quot;,&quot;id&quot;:212456,&quot;image_url&quot;:&quot;https://images.genius.com/5d4029bddbadca403b78dae3fce1f184.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;s&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Stormzy&quot;,&quot;slug&quot;:&quot;Stormzy&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Stormzy&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:7,&quot;api_path&quot;:&quot;/songs/5494608&quot;,&quot;full_title&quot;:&quot;HOES UP G'S DOWN by SHIRIN DAVID&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/9763b51e5f515ce471c4f2ad9cb6b51a.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/9763b51e5f515ce471c4f2ad9cb6b51a.1000x1000x1.jpg&quot;,&quot;id&quot;:5494608,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:2171344,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1615326098,&quot;path&quot;:&quot;/Shirin-david-hoes-up-gs-down-lyrics&quot;,&quot;pyongs_count&quot;:2,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/9763b51e5f515ce471c4f2ad9cb6b51a.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/9763b51e5f515ce471c4f2ad9cb6b51a.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:5,&quot;hot&quot;:false,&quot;pageviews&quot;:70596},&quot;title&quot;:&quot;HOES UP G’S DOWN&quot;,&quot;title_with_featured&quot;:&quot;HOES UP G'S DOWN&quot;,&quot;updated_by_human_at&quot;:1615326098,&quot;url&quot;:&quot;https://genius.com/Shirin-david-hoes-up-gs-down-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/308692&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/18e18d82bc4bcf4879b1ec649c1fdf38.1000x730x1.jpg&quot;,&quot;id&quot;:308692,&quot;image_url&quot;:&quot;https://images.genius.com/18e18d82bc4bcf4879b1ec649c1fdf38.1000x730x1.jpg&quot;,&quot;index_character&quot;:&quot;s&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;SHIRIN DAVID&quot;,&quot;slug&quot;:&quot;Shirin-david&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Shirin-david&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:3,&quot;api_path&quot;:&quot;/songs/6150648&quot;,&quot;full_title&quot;:&quot;OKAY by ​tobi lou (Ft. Dreezy)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/fc6a4d24f5c8f8a56e1c1583a2ffa3bf.300x300x1.png&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/fc6a4d24f5c8f8a56e1c1583a2ffa3bf.1000x1000x1.png&quot;,&quot;id&quot;:6150648,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:498964,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1605398571,&quot;path&quot;:&quot;/Tobi-lou-okay-lyrics&quot;,&quot;pyongs_count&quot;:1,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/fc6a4d24f5c8f8a56e1c1583a2ffa3bf.300x300x1.png&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/fc6a4d24f5c8f8a56e1c1583a2ffa3bf.1000x1000x1.png&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:3,&quot;hot&quot;:false},&quot;title&quot;:&quot;OKAY&quot;,&quot;title_with_featured&quot;:&quot;OKAY (Ft. Dreezy)&quot;,&quot;updated_by_human_at&quot;:1605735759,&quot;url&quot;:&quot;https://genius.com/Tobi-lou-okay-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/566681&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/92eeead98f9fc382f1d78d34ff08c1e5.1000x563x1.png&quot;,&quot;id&quot;:566681,&quot;image_url&quot;:&quot;https://images.genius.com/8c2a3e694f8e3d4f4998001066431daa.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;t&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:true,&quot;name&quot;:&quot;​tobi lou&quot;,&quot;slug&quot;:&quot;Tobi-lou&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Tobi-lou&quot;,&quot;iq&quot;:325}}]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;cover_of&quot;,&quot;type&quot;:&quot;cover_of&quot;,&quot;songs&quot;:[]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;covered_by&quot;,&quot;type&quot;:&quot;covered_by&quot;,&quot;songs&quot;:[{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:0,&quot;api_path&quot;:&quot;/songs/5763563&quot;,&quot;full_title&quot;:&quot;Work it by Robyn Adele Anderson (Ft. Mark Martin)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/ea7c50f43ff171a7c6d6c7390993e6b1.225x225x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/ea7c50f43ff171a7c6d6c7390993e6b1.225x225x1.jpg&quot;,&quot;id&quot;:5763563,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:269182,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1609394950,&quot;path&quot;:&quot;/Robyn-adele-anderson-work-it-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/ea7c50f43ff171a7c6d6c7390993e6b1.225x225x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/ea7c50f43ff171a7c6d6c7390993e6b1.225x225x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;Work it&quot;,&quot;title_with_featured&quot;:&quot;Work it (Ft. Mark Martin)&quot;,&quot;updated_by_human_at&quot;:1609394950,&quot;url&quot;:&quot;https://genius.com/Robyn-adele-anderson-work-it-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/392185&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/095a47f68bd479fe5c412e3b2716ff14.1000x669x1.jpg&quot;,&quot;id&quot;:392185,&quot;image_url&quot;:&quot;https://images.genius.com/471b51adf2bda378f0c22719feb29aaf.584x584x1.jpg&quot;,&quot;index_character&quot;:&quot;r&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Robyn Adele Anderson&quot;,&quot;slug&quot;:&quot;Robyn-adele-anderson&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Robyn-adele-anderson&quot;}}]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;remix_of&quot;,&quot;type&quot;:&quot;remix_of&quot;,&quot;songs&quot;:[]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;remixed_by&quot;,&quot;type&quot;:&quot;remixed_by&quot;,&quot;songs&quot;:[{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:7,&quot;api_path&quot;:&quot;/songs/33212&quot;,&quot;full_title&quot;:&quot;Work It (Remix) by Missy Elliott (Ft. 50 Cent)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/490e9e271e99d6b5c4adbd4dd6e47971.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/490e9e271e99d6b5c4adbd4dd6e47971.1000x1000x1.jpg&quot;,&quot;id&quot;:33212,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:50,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1609374868,&quot;path&quot;:&quot;/Missy-elliott-work-it-remix-lyrics&quot;,&quot;pyongs_count&quot;:2,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/490e9e271e99d6b5c4adbd4dd6e47971.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/490e9e271e99d6b5c4adbd4dd6e47971.1000x1000x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:3,&quot;hot&quot;:false,&quot;pageviews&quot;:29371},&quot;title&quot;:&quot;Work It (Remix)&quot;,&quot;title_with_featured&quot;:&quot;Work It (Remix) (Ft. 50 Cent)&quot;,&quot;updated_by_human_at&quot;:1610084226,&quot;url&quot;:&quot;https://genius.com/Missy-elliott-work-it-remix-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:0,&quot;api_path&quot;:&quot;/songs/4854859&quot;,&quot;full_title&quot;:&quot;Worth It/ Is This Love? by VR (Ft. LA)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/0d9b4f9c550b9df7714cf4a20def7477.300x300x1.jpg&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/0d9b4f9c550b9df7714cf4a20def7477.500x500x1.jpg&quot;,&quot;id&quot;:4854859,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:3394584,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1568060540,&quot;path&quot;:&quot;/Vr-worth-it-is-this-love-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/0d9b4f9c550b9df7714cf4a20def7477.300x300x1.jpg&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/0d9b4f9c550b9df7714cf4a20def7477.500x500x1.jpg&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;Worth It/ Is This Love?&quot;,&quot;title_with_featured&quot;:&quot;Worth It/ Is This Love? (Ft. LA)&quot;,&quot;updated_by_human_at&quot;:1568060653,&quot;url&quot;:&quot;https://genius.com/Vr-worth-it-is-this-love-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/28577&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/avatars/medium/f5f5057b71279e8e9877ed6a66593d86&quot;,&quot;id&quot;:28577,&quot;image_url&quot;:&quot;https://images.genius.com/avatars/medium/f5f5057b71279e8e9877ed6a66593d86&quot;,&quot;index_character&quot;:&quot;v&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;VR&quot;,&quot;slug&quot;:&quot;Vr&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Vr&quot;,&quot;iq&quot;:270}},{&quot;_type&quot;:&quot;song&quot;,&quot;annotation_count&quot;:2,&quot;api_path&quot;:&quot;/songs/5532117&quot;,&quot;full_title&quot;:&quot;Work It (Remix)* by Danny Towers (Ft. Ski Mask the Slump God)&quot;,&quot;header_image_thumbnail_url&quot;:&quot;https://images.genius.com/d49afd8e6c5457bc6d0121ed264a7fef.300x300x1.png&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d49afd8e6c5457bc6d0121ed264a7fef.1000x1000x1.png&quot;,&quot;id&quot;:5532117,&quot;instrumental&quot;:false,&quot;lyrics_owner_id&quot;:1599419,&quot;lyrics_state&quot;:&quot;complete&quot;,&quot;lyrics_updated_at&quot;:1596862149,&quot;path&quot;:&quot;/Danny-towers-work-it-remix-lyrics&quot;,&quot;pyongs_count&quot;:null,&quot;song_art_image_thumbnail_url&quot;:&quot;https://images.genius.com/d49afd8e6c5457bc6d0121ed264a7fef.300x300x1.png&quot;,&quot;song_art_image_url&quot;:&quot;https://images.genius.com/d49afd8e6c5457bc6d0121ed264a7fef.1000x1000x1.png&quot;,&quot;song_art_primary_color&quot;:null,&quot;song_art_secondary_color&quot;:null,&quot;song_art_text_color&quot;:null,&quot;stats&quot;:{&quot;unreviewed_annotations&quot;:0,&quot;hot&quot;:false},&quot;title&quot;:&quot;Work It (Remix)*&quot;,&quot;title_with_featured&quot;:&quot;Work It (Remix)* (Ft. Ski Mask the Slump God)&quot;,&quot;updated_by_human_at&quot;:1604817741,&quot;url&quot;:&quot;https://genius.com/Danny-towers-work-it-remix-lyrics&quot;,&quot;primary_artist&quot;:{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/124117&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/4721c745f43615a727b835896f27c2fd.500x500x1.jpg&quot;,&quot;id&quot;:124117,&quot;image_url&quot;:&quot;https://images.genius.com/4721c745f43615a727b835896f27c2fd.500x500x1.jpg&quot;,&quot;index_character&quot;:&quot;d&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Danny Towers&quot;,&quot;slug&quot;:&quot;Danny-towers&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Danny-towers&quot;}}]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;live_version_of&quot;,&quot;type&quot;:&quot;live_version_of&quot;,&quot;songs&quot;:[]},{&quot;_type&quot;:&quot;song_relationship&quot;,&quot;relationship_type&quot;:&quot;performed_live_as&quot;,&quot;type&quot;:&quot;performed_live_as&quot;,&quot;songs&quot;:[]}],&quot;tags&quot;:[{&quot;_type&quot;:&quot;tag&quot;,&quot;id&quot;:16,&quot;name&quot;:&quot;Pop&quot;,&quot;primary&quot;:true,&quot;url&quot;:&quot;https://genius.com/tags/pop&quot;},{&quot;_type&quot;:&quot;tag&quot;,&quot;id&quot;:2381,&quot;name&quot;:&quot;Experimental&quot;,&quot;primary&quot;:false,&quot;url&quot;:&quot;https://genius.com/tags/experimental&quot;},{&quot;_type&quot;:&quot;tag&quot;,&quot;id&quot;:2757,&quot;name&quot;:&quot;Alternative&quot;,&quot;primary&quot;:false,&quot;url&quot;:&quot;https://genius.com/tags/alternative&quot;},{&quot;_type&quot;:&quot;tag&quot;,&quot;id&quot;:1434,&quot;name&quot;:&quot;Rap&quot;,&quot;primary&quot;:true,&quot;url&quot;:&quot;https://genius.com/tags/rap&quot;}],&quot;top_scholar&quot;:{&quot;_type&quot;:&quot;user_attribution&quot;,&quot;attribution_value&quot;:286.7,&quot;pinned_role&quot;:null,&quot;user&quot;:{&quot;_type&quot;:&quot;user&quot;,&quot;about_me_summary&quot;:&quot;I have a big thing for female rappers, what can I say.&quot;,&quot;api_path&quot;:&quot;/users/6654&quot;,&quot;avatar&quot;:{&quot;tiny&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/tiny/6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:16,&quot;height&quot;:16}},&quot;thumb&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/thumb/1358288125_6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:32,&quot;height&quot;:32}},&quot;small&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/small/1358288125_6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:100,&quot;height&quot;:100}},&quot;medium&quot;:{&quot;url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1358288125_6654_Picture%209.png&quot;,&quot;bounding_box&quot;:{&quot;width&quot;:300,&quot;height&quot;:400}}},&quot;header_image_url&quot;:&quot;https://s3.amazonaws.com/rapgenius/avatars/medium/1358288125_6654_Picture%209.png&quot;,&quot;human_readable_role_for_display&quot;:&quot;Contributor&quot;,&quot;id&quot;:6654,&quot;iq&quot;:918,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;login&quot;:&quot;HKAndy&quot;,&quot;name&quot;:&quot;HKAndy&quot;,&quot;role_for_display&quot;:&quot;contributor&quot;,&quot;url&quot;:&quot;https://genius.com/HKAndy&quot;,&quot;current_user_metadata&quot;:{&quot;permissions&quot;:[],&quot;excluded_permissions&quot;:[&quot;follow&quot;],&quot;interactions&quot;:{&quot;following&quot;:false}}}},&quot;verified_annotations_by&quot;:[],&quot;verified_contributors&quot;:[],&quot;verified_lyrics_by&quot;:[],&quot;writer_artists&quot;:[{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/1529&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/d91c82fa4ae2f1016fadc1c24fbbc59e.1000x333x1.jpg&quot;,&quot;id&quot;:1529,&quot;image_url&quot;:&quot;https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg&quot;,&quot;index_character&quot;:&quot;m&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Missy Elliott&quot;,&quot;slug&quot;:&quot;Missy-elliott&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Missy-elliott&quot;},{&quot;_type&quot;:&quot;artist&quot;,&quot;api_path&quot;:&quot;/artists/112&quot;,&quot;header_image_url&quot;:&quot;https://images.genius.com/e50135b935c14cecfee2a6ef1b84d9af.960x532x1.png&quot;,&quot;id&quot;:112,&quot;image_url&quot;:&quot;https://images.genius.com/4510e34916379b2473ddd8392cb4d5db.563x563x1.png&quot;,&quot;index_character&quot;:&quot;t&quot;,&quot;is_meme_verified&quot;:false,&quot;is_verified&quot;:false,&quot;name&quot;:&quot;Timbaland&quot;,&quot;slug&quot;:&quot;Timbaland&quot;,&quot;url&quot;:&quot;https://genius.com/artists/Timbaland&quot;}]}}" itemprop="page_data"/>
</meta></link></meta></meta></meta></head>
<body class="act-show cont-songs snarly">
<preload ng-non-bindable=""><preload-content data-preload_data='{"iq_by_event_type":{"accepted_a_lyrics_edit":3.0,"annotation_downvote_by_contrib":-1.0,"annotation_downvote_by_default":-1.0,"annotation_downvote_by_editor":-1.0,"annotation_downvote_by_high_iq_user":-1.0,"annotation_downvote_by_moderator":-1.0,"annotation_upvote_by_contrib":4.0,"annotation_upvote_by_default":2.0,"annotation_upvote_by_editor":6.0,"annotation_upvote_by_high_iq_user":4.0,"annotation_upvote_by_moderator":10.0,"answer_downvote_by_contrib":-1.0,"answer_downvote_by_default":-1.0,"answer_downvote_by_editor":-1.0,"answer_downvote_by_high_iq_user":-1.0,"answer_downvote_by_moderator":-1.0,"answered_a_question":5.0,"answered_a_question_meme":25.0,"answered_a_question_verified":10.0,"answer_upvote_by_contrib":4.0,"answer_upvote_by_default":2.0,"answer_upvote_by_editor":6.0,"answer_upvote_by_high_iq_user":4.0,"answer_upvote_by_moderator":10.0,"archived_a_question":1.0,"article_downvote":-1.0,"article_upvote":1.0,"asked_a_question":1.0,"auto_accepted_explanation":15.0,"comment_downvote":-0.5,"comment_upvote":0.5,"created_a_lyrics_edit":2.0,"created_a_real_song":40.0,"created_a_song":5.0,"forum_post_downvote":-0.5,"forum_post_upvote":0.5,"historical_you_published_a_song":60.0,"metadata_update_or_addition":2.0,"pending_explanation":5.0,"pinned_a_question_not_your_own":2.0,"question_downvote":-2.0,"question_upvote":2.0,"rejected_a_lyrics_edit":2.0,"song_metadata_update_or_addition":2.0,"song_pageviews_1000":25.0,"song_pageviews_10000":50.0,"song_pageviews_100000":125.0,"song_pageviews_1000000":500.0,"song_pageviews_2500":30.0,"song_pageviews_25000":75.0,"song_pageviews_250000":150.0,"song_pageviews_2500000":1000.0,"song_pageviews_500":20.0,"song_pageviews_5000":35.0,"song_pageviews_50000":100.0,"song_pageviews_500000":200.0,"song_pageviews_5000000":2000.0,"suggestion_downvote_by_contrib":-1.0,"suggestion_downvote_by_default":-0.5,"suggestion_downvote_by_editor":-1.0,"suggestion_downvote_by_high_iq_user":-1.0,"suggestion_downvote_by_moderator":-1.0,"suggestion_upvote_by_contrib":2.0,"suggestion_upvote_by_default":1.0,"suggestion_upvote_by_editor":3.0,"suggestion_upvote_by_high_iq_user":2.0,"suggestion_upvote_by_moderator":4.0,"verified_explanation_by_meme":100.0,"verified_explanation_by_non_meme":15.0,"verified_lyrics_by_meme_featured":50.0,"verified_lyrics_by_meme_primary":75.0,"verified_lyrics_by_meme_writer":75.0,"verified_lyrics_by_non_meme_featured":10.0,"verified_lyrics_by_non_meme_primary":15.0,"verified_lyrics_by_non_meme_writer":15.0,"you_accepted_a_comment":6.0,"you_accepted_an_annotation":10.0,"you_added_a_photo":100.0,"you_archived_a_comment":2.0,"you_deleted_an_annotation":5.0,"you_incorporated_an_annotation":5.0,"you_integrated_a_comment":2.0,"you_linked_an_identity":100.0,"you_merged_an_annotation_edit":4.0,"you_published_a_song":5.0,"your_annotation_accepted":10.0,"your_annotation_edit_merged":5.0,"your_annotation_edit_rejected":-0.5,"your_annotation_incorporated":15.0,"your_annotation_rejected":0.0,"your_annotation_was_cosigned_by_community_verified":2.0,"your_annotation_was_cosigned_by_meme":50.0,"your_annotation_was_cosigned_by_verified_verified":20.0,"your_answer_cleared":-5.0,"your_answer_pinned":5.0,"your_comment_accepted":2.0,"your_comment_archived":0.0,"your_comment_integrated":2.0,"your_comment_rejected":-0.5,"you_rejected_a_comment":2.0,"you_rejected_an_annotation":2.0,"you_rejected_an_annotation_edit":2.0,"your_lyrics_edit_accepted":3.0,"your_lyrics_edit_rejected":-2.0,"your_question_answered":4.0,"your_question_archived":-1.0,"your_question_pinned":5.0}}'></preload-content></preload>
<marquee-ad name="desktop_song_marquee"></marquee-ad>
<div class="header" click-outside="close_mobile_subnav_menu()" ng-controller="HeaderCtrl as header_ctrl">
<global-message ng-cloak="" ng-if="header_ctrl.cloudflare_error">
    {{:: 'cloud_flare_always_on_short_message' | i18n }}
    <br/>Check <a href="https://twitter.com/genius" target="_blank">@genius</a> for updates. We'll have things fixed soon.
  </global-message>
<div class="header-primary active">
<div class="header-expand_nav_menu" ng-click="toggle_mobile_subnav_menu()"><div class="header-expand_nav_menu-contents"></div></div>
<div class="logo_container">
<a class="logo_link" href="https://genius.com/">GENIUS</a>
</div>
<header-actions></header-actions>
</div>
<search-form search-style="header"></search-form>
<ul class="header-nav_menu" ng-class="{'header-nav_menu--visible': mobile_subnav_menu_open}">
<div ng-cloak="">
<header-menu-item class="header-nav_menu--hide_when_expand_menu_is_not_available" name="Home" url="https://genius.com/"></header-menu-item>
<header-menu-item name="Collective Sounds" url="http://so.genius.com/SXlZXUT"></header-menu-item>
<header-menu-item name="Genius Live" url="https://live.genius.com"></header-menu-item>
<span class="nav_menu-item nav_menu-item--separator">|</span>
<header-menu-item name="Featured" url="https://genius.com/#featured-stories"></header-menu-item>
<header-menu-item name="Charts" url="https://genius.com/#top-songs"></header-menu-item>
<header-menu-item name="Videos" url="https://genius.com/#videos"></header-menu-item>
<header-menu-item name="Community" url="https://genius.com/#community"></header-menu-item>
<span class="nav_menu-item nav_menu-item--separator">|</span>
<header-menu-item name="Shop" url="https://shop.genius.com/"></header-menu-item>
<span class="nav_menu-item nav_menu-item--separator">|</span>
<li class="nav_menu-item">
<a class="nav_menu-link nav_menu-link--facebook" href="https://www.facebook.com/Genius/" target="_blank">
<svg class="inline_icon" src="facebook.svg"></svg>
<span class="nav_menu-link-social_text">Facebook</span>
</a>
</li>
<li class="nav_menu-item">
<a class="nav_menu-link" href="https://twitter.com/Genius" target="_blank">
<svg class="inline_icon" src="twitter.svg"></svg>
<span class="nav_menu-link-social_text">Twitter</span>
</a>
</li>
<li class="nav_menu-item">
<a class="nav_menu-link" href="https://www.instagram.com/genius/" target="_blank">
<svg class="inline_icon" src="instagram.svg"></svg>
<span class="nav_menu-link-social_text">Instagram</span>
</a>
</li>
<li class="nav_menu-item">
<a class="nav_menu-link nav_menu-link--no_right_padding" href="https://www.youtube.com/genius" target="_blank">
<svg class="inline_icon nav_menu-link-youtube_icon" src="youtube.svg"></svg>
<span class="nav_menu-link-social_text">Youtube</span>
</a>
</li>
</div>
</ul>
</div>
<solidarity-banner></solidarity-banner>
<div class="global_messages">
<flash-messages></flash-messages>
</div>
<script type="application/ld+json">
        {"@context":"http://schema.org","@type":"MusicRecording","byArtist":{"@context":"http://schema.org","@type":"MusicGroup","name":"Missy Elliott","url":"https://genius.com/artists/Missy-elliott","description":"Melissa Arnette Elliott, sometimes known Missy “Misdemeanor” Elliott, or just simply Missy Elliot, was born on July 1, 1971. Many consider Missy Elliott as the best female rapper","image":"https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg"},"image":"https://images.genius.com/27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg","inAlbum":[{"@context":"http://schema.org","@type":"MusicAlbum","byArtist":{"@context":"http://schema.org","@type":"MusicGroup","name":"Missy Elliott","url":"https://genius.com/artists/Missy-elliott","description":"Melissa Arnette Elliott, sometimes known Missy “Misdemeanor” Elliott, or just simply Missy Elliot, was born on July 1, 1971. Many consider Missy Elliott as the best female rapper","image":"https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg"},"image":"https://images.genius.com/5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg","name":"Under Construction","url":"https://genius.com/albums/Missy-elliott/Under-construction","datePublished":"2002-11-12","numTracks":15},{"@context":"http://schema.org","@type":"MusicAlbum","byArtist":{"@context":"http://schema.org","@type":"MusicGroup","name":"Missy Elliott","url":"https://genius.com/artists/Missy-elliott","description":"Melissa Arnette Elliott, sometimes known Missy “Misdemeanor” Elliott, or just simply Missy Elliot, was born on July 1, 1971. Many consider Missy Elliott as the best female rapper","image":"https://images.genius.com/085828b7d79bf8cf068b1557ca7a5e4c.1000x1000x1.jpg"},"image":"https://images.genius.com/75cfb85ca9e5a85370891a511a97b3d5.640x640x1.jpg","name":"Respect M.E.","url":"https://genius.com/albums/Missy-elliott/Respect-m-e","datePublished":"2006-09-04","numTracks":17}],"name":"Work It","url":"https://genius.com/Missy-elliott-work-it-lyrics","datePublished":"2002-09-01"}
      </script>
<routable-page>
<ng-non-bindable>
<div class="leaderboard_ad_container">
</div>
<div class="header_with_cover_art">
<div class="header_with_cover_art-inner column_layout">
<div class="column_layout-column_span column_layout-column_span--primary">
<div class="header_with_cover_art-cover_art">
<div class="cover_art">
<img alt="Https%3a%2f%2fimages" class="cover_art-image" src="https://t2.genius.com/unsafe/220x229/https%3A%2F%2Fimages.genius.com%2F27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg" srcset="https://t2.genius.com/unsafe/440x457/https%3A%2F%2Fimages.genius.com%2F27c1fbfef17041b435302af288cfa0c6.482x500x1.jpg 2x"/>
</div>
</div>
<div class="header_with_cover_art-primary_info_container">
<div class="header_with_cover_art-primary_info">
<h1 class="header_with_cover_art-primary_info-title">Work It</h1>
<h2>
<a class="header_with_cover_art-primary_info-primary_artist" href="https://genius.com/artists/Missy-elliott">Missy Elliott</a>
</h2>
<h3>
</h3>
<h3>
<div class="metadata_unit">
<span class="metadata_unit-label">Produced by</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Timbaland">Timbaland</a> &amp; <a href="https://genius.com/artists/Missy-elliott">Missy Elliott</a>
</span>
</div>
</h3>
<h3>
<div class="metadata_unit">
<span class="metadata_unit-label">Album</span>
<span class="metadata_unit-info"><a href="https://genius.com/albums/Missy-elliott/Under-construction">Under Construction</a></span>
</div>
</h3>
</div>
</div>
</div>
<div class="column_layout-column_span column_layout-column_span--secondary u-top_margin">
</div>
</div>
</div>
<div class="song_body column_layout" initial-content-for="song_body">
<div class="column_layout-column_span column_layout-column_span--primary">
<div class="song_body-lyrics">
<h2 class="text_label text_label--gray text_label--x_small_text_size u-top_margin">Work It Lyrics</h2>
<div initial-content-for="lyrics">
<div class="lyrics">
<!--sse-->
<p>[Intro]<br/>
<a annotation-fragment="115498" class="referent" classification="accepted" data-id="115498" href="/Missy-elliott-work-it-lyrics#note-115498" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">DJ, please pick up your phone, I'm on the request line</a><br/>
<a annotation-fragment="2769316" class="referent" classification="accepted" data-id="2769316" href="/Missy-elliott-work-it-lyrics#note-2769316" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">This is a Missy Elliott one-time exclusive, come on</a><br/>
<br/>
[Chorus]<br/>
<a annotation-fragment="19108321" class="referent" classification="accepted" data-id="19108321" href="/Missy-elliott-work-it-lyrics#note-19108321" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">Is it worth it? Let me work it</a><br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">I put my thing down, flip it and reverse it<br/>
Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup</a><br/>
<a annotation-fragment="125501" class="referent" classification="accepted" data-id="125501" href="/Missy-elliott-work-it-lyrics#note-125501" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="1" prevent-default-click="">If you got a big <i>*elephant trumpet*</i>, let me search ya<br/>
And find out how hard I gotta work ya</a><br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup</a><br/>
C'mon<br/>
<br/>
[Verse 1]<br/>
<a annotation-fragment="2001253" class="referent" classification="accepted" data-id="2001253" href="/Missy-elliott-work-it-lyrics#note-2001253" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">I'd like to get to know ya so I could show ya</a><br/>
Put the pussy on ya like I told ya<br/>
<a annotation-fragment="1748930" class="referent" classification="accepted" data-id="1748930" href="/Missy-elliott-work-it-lyrics#note-1748930" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Give me all your numbers so I can phone ya</a><br/>
Your girl acting stank, then call me over<br/>
Not on the bed, lay me on your sofa<br/>
<a annotation-fragment="115499" class="referent" classification="accepted" data-id="115499" href="/Missy-elliott-work-it-lyrics#note-115499" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Call before you come, I need to shave my chocha</a><br/>
You do or you don't or you will or won't ya?<br/>
<a annotation-fragment="142698" class="referent" classification="accepted" data-id="142698" href="/Missy-elliott-work-it-lyrics#note-142698" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Go downtown and eat it like a vulture</a><br/>
<a annotation-fragment="1227306" class="referent" classification="accepted" data-id="1227306" href="/Missy-elliott-work-it-lyrics#note-1227306" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">See my hips and my tips, don't ya?<br/>
See my ass and my lips, don't ya?<br/>
Lost a few pounds and my waist for ya</a><br/>
This the kinda beat that go ra-ta-ta<br/>
Ra-ta-ta-ta-ta-ta-ta-ta-ta-ta<br/>
Sex me so good I say blah-blah-blah<br/>
Work it, I need a glass of water<br/>
<a annotation-fragment="2355254" class="referent" classification="accepted" data-id="2355254" href="/Missy-elliott-work-it-lyrics#note-2355254" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Boy, oh boy,</a> it's good to know ya<br/>
C'mon<br/>
<br/>
[Chorus]<br/>
Is it worth it? Let me work it<br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">I put my thing down, flip it and reverse it<br/>
Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup</a><br/>
<a annotation-fragment="125501" class="referent" classification="accepted" data-id="125501" href="/Missy-elliott-work-it-lyrics#note-125501" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="1" prevent-default-click="">If you got a big <i>*elephant trumpet*</i>, let me search ya<br/>
And find out how hard I gotta work ya</a><br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup</a><br/>
C'mon<br/>
<br/>
[Bridge]<br/>
<a annotation-fragment="1619441" class="referent" classification="accepted" data-id="1619441" href="/Missy-elliott-work-it-lyrics#note-1619441" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">If you a fly gal, get your nails done<br/>
Get a pedicure, get your hair did</a><br/>
<a annotation-fragment="2622866" class="referent" classification="accepted" data-id="2622866" href="/Missy-elliott-work-it-lyrics#note-2622866" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Boy, lift it up, let's make a toast-a<br/>
Let's get drunk, that's gonna bring us closer (Okay)</a><br/>
<a annotation-fragment="115501" class="referent" classification="accepted" data-id="115501" href="/Missy-elliott-work-it-lyrics#note-115501" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Don't I look like a Halle Berry poster?<br/>
See the Belvedere playing tricks on ya (Ah)</a><br/>
Girlfriend wanna be like me, never<br/>
You won't find a bitch that's even better (Ah)<br/>
I make you hot as Las Vegas weather<br/>
Listen up close while I take it backwards<br/>
<a annotation-fragment="1734311" class="referent" classification="accepted" data-id="1734311" href="/Missy-elliott-work-it-lyrics#note-1734311" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">​sdrawkcab ti ekat ot ekil yssiM yaw eht hctaW</a><br/>
I'm not a prostitute, but I could give you what you want<br/>
<a annotation-fragment="20649750" class="referent" classification="unreviewed" data-id="20649750" href="/Missy-elliott-work-it-lyrics#note-20649750" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">I love your braids</a> <a annotation-fragment="1748931" class="referent" classification="accepted" data-id="1748931" href="/Missy-elliott-work-it-lyrics#note-1748931" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="1" prevent-default-click="">and your mouth full of fronts</a><br/>
<a annotation-fragment="1449559" class="referent" classification="accepted" data-id="1449559" href="/Missy-elliott-work-it-lyrics#note-1449559" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Love the way my ass go bum-bum-bum-bum (Huh)<br/>
Keep your eyes on my bum-bum-bum-bum-bum (Okay)</a><br/>
<a annotation-fragment="115502" class="referent" classification="accepted" data-id="115502" href="/Missy-elliott-work-it-lyrics#note-115502" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">You think you can handle this badonka-donk-donk (Woo)</a><br/>
Take my thong off and my ass go boom (Ugh)<br/>
<a annotation-fragment="1706472" class="referent" classification="accepted" data-id="1706472" href="/Missy-elliott-work-it-lyrics#note-1706472" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Cut the lights on so you see what I could do (C'mon)</a><br/>
<br/>
[Chorus]<br/>
Is it worth it? Let me work it<br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">I put my thing down, flip it and reverse it<br/>
Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup (Ooh)</a><br/>
<a annotation-fragment="125501" class="referent" classification="accepted" data-id="125501" href="/Missy-elliott-work-it-lyrics#note-125501" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="1" prevent-default-click="">If you got a big <i>*elephant trumpet*</i>, let me search ya<br/>
And find out how hard I gotta work ya</a><br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">Ti esrever dna ti pilf, nwod gniht ym tup (Huh)<br/>
Ti esrever dna ti pilf, nwod gniht ym tup (C'mon)</a><br/>
C'mon<br/>
<br/>
[Bridge]<br/>
Boys, boys, all type of boys<br/>
Black, White, Puerto Rican, Chinese boys (C'mon)<br/>
Why-thai, thai-o-toy-o-thai-thai<br/>
Rock-thai, thai-o-toy-o-thai-thai (C'mon)<br/>
<a annotation-fragment="115503" class="referent" classification="accepted" data-id="115503" href="/Missy-elliott-work-it-lyrics#note-115503" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Girls, girls, get that cash<br/>
If it's 9 to 5 or shaking your ass (Aha)<br/>
Ain't no shame, ladies do your thing (C'mon)<br/>
Just make sure you ahead of the game</a><br/>
<br/>
[Verse 3]<br/>
Just 'cause I got a lot of fame super<br/>
<a annotation-fragment="1434475" class="referent" classification="accepted" data-id="1434475" href="/Missy-elliott-work-it-lyrics#note-1434475" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Prince couldn't get me change my name, papa</a><br/>
<a annotation-fragment="115504" class="referent" classification="accepted" data-id="115504" href="/Missy-elliott-work-it-lyrics#note-115504" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Kunta Kinte a slave again, no sir</a><br/>
<a annotation-fragment="7837934" class="referent" classification="accepted" data-id="7837934" href="/Missy-elliott-work-it-lyrics#note-7837934" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Picture Blacks saying, “Oh yes'a, massa”</a><br/>
<a annotation-fragment="1434486" class="referent" classification="accepted" data-id="1434486" href="/Missy-elliott-work-it-lyrics#note-1434486" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Picture Lil' Kim dating a pastor</a><br/>
<a annotation-fragment="4931228" class="referent" classification="accepted" data-id="4931228" href="/Missy-elliott-work-it-lyrics#note-4931228" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Minute Man, Big Red could outlast ya</a><br/>
Who is the best? I don't have to ask ya<br/>
<a annotation-fragment="7838303" class="referent" classification="accepted" data-id="7838303" href="/Missy-elliott-work-it-lyrics#note-7838303" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">When I come out, you won't even matter (Ugh)</a><br/>
Why you act dumb like, uhhhh, duh?<br/>
So you act dumb like, uhhhhh, duh<br/>
<a annotation-fragment="1434500" class="referent" classification="accepted" data-id="1434500" href="/Missy-elliott-work-it-lyrics#note-1434500" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">As the drummer boy go ba-rom-pop-pom-pom (Ooh)</a><br/>
<a annotation-fragment="1434489" class="referent" classification="accepted" data-id="1434489" href="/Missy-elliott-work-it-lyrics#note-1434489" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">Give you some-some-some of this Cinnabun (C'mon)</a><br/>
<br/>
[Chorus]<br/>
Is it worth it? Let me work it<br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">I put my thing down, flip it and reverse it<br/>
Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup (Ooh)</a><br/>
<a annotation-fragment="125501" class="referent" classification="accepted" data-id="125501" href="/Missy-elliott-work-it-lyrics#note-125501" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="1" prevent-default-click="">If you got a big <i>*elephant trumpet*</i>, let me search ya<br/>
And find out how hard I gotta work ya</a><br/>
<a annotation-fragment="1227305" class="referent" classification="accepted" data-id="1227305" href="/Missy-elliott-work-it-lyrics#note-1227305" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="2" prevent-default-click="">Ti esrever dna ti pilf, nwod gniht ym tup<br/>
Ti esrever dna ti pilf, nwod gniht ym tup</a><br/>
C'mon<br/>
<br/>
[Break]<br/>
To my fellas (Ooh, good god!)<br/>
I like the way you work that (Uh-huh, la-la-la-la)<br/>
<a annotation-fragment="2740290" class="referent" classification="accepted" data-id="2740290" href="/Missy-elliott-work-it-lyrics#note-2740290" image="false" ng-class="{
          'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
          'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
          'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
        }" ng-click="open()" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)" pending-editorial-actions-count="0" prevent-default-click="">To my ladies (Whoo! Good god!)<br/>
You sure know how to work that</a><br/>
<br/>
[Outro]<br/>
Yeah, it's Missy Elliott!<br/>
I hope y'all enjoying what y'all heard so far<br/>
I was sittin' here thinkin' like<br/>
Big Daddy Kane and Public Enemy<br/>
Salt n Pepa, Lyte, EPMD, LL, Run-DMC<br/>
KRS-One, Rakim<br/>
Most of them artists used to dance<br/>
And still get respected in the street<br/>
Don't be scared to Bankhead or Bogo<br/>
Or move as far as sold Michael Jackson 43 million<br/>
Shoot, errbody have the zipper jacket<br/>
And half of these thugs have the glove to match, ya feel me?<br/>
Yo, it's ok though, if you wanna be hard and ice grill<br/>
And Harlem Shake at the same time, whatever<br/>
Let's just have fun, it's hip-hop man, this is hip-hop!</p>
<!--/sse-->
</div>
</div>
<div initial-content-for="recirculated_content">
<div class="u-xx_large_vertical_margins">
<div class="text_label text_label--gray">More on Genius</div>
<a class="recirculated_content" href="https://genius.com/a/timbaland-made-missy-elliott-rewrite-her-work-it-verse-four-times">
<div class="recirculated_content-image"></div>
<div class="recirculated_content-info">
<div class="recirculated_content-title">Knowledge Drop: Timbaland Made Missy Elliott Rewrite Her “Work It” Verse Four Times</div>
</div>
</a>
<a class="recirculated_content" href="https://genius.com/a/missy-elliott-reunites-with-alyson-stoner-during-career-spanning-vma-video-vanguard-performance-work-it">
<div class="recirculated_content-image"></div>
<div class="recirculated_content-info">
<div class="recirculated_content-title">Missy Elliott Reunites With Alyson Stoner During Career-Spanning VMA Video Vanguard Performance</div>
</div>
</a>
<a class="recirculated_content" href="https://genius.com/a/missy-elliott-will-be-the-first-female-rapper-to-earn-an-honorary-doctorate-from-berklee">
<div class="recirculated_content-image"></div>
<div class="recirculated_content-info">
<div class="recirculated_content-title">Missy Elliott Will Be The First Female Rapper To Earn An Honorary Doctorate From Berklee</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="column_layout-column_span column_layout-column_span--secondary u-top_margin column_layout-flex_column">
<div class="column_layout-column_span-initial_content">
<div class="dfp_unit u-x_large_bottom_margin dfp_unit--in_read">
<div style="
      width: 300px;
      height: 250px;
    "></div>
</div>
<div class="annotation_label">
<h3 class="u-inline">
            About “Work It”
          </h3>
</div>
<div class="rich_text_formatting">
<p>“Work It' is the first single from Missy’s 2002 album <em>Under Construction.</em> The song was both a commercial and critical hit: It peaked at <a href="https://www.billboard.com/music/Missy-Elliott/chart-history/hot-100" rel="noopener nofollow">No. 2 on <em>Billboard</em>’s Hot 100</a> (making it Missy’s biggest hit) and was named the best single of 2002 in <a href="http://www.robertchristgau.com/xg/pnj/pjres02.php" rel="noopener nofollow">The Village Voice’s Pazz &amp; Jop poll</a>. The song memorably features backward lyrics and an elephant trumpting. It also helped popularize the term "badonkadonk.” The song is a raunchy ode where Missy raps about sexing up guys. In his review of <em>Under Construction</em>, <a href="http://www.allmusic.com/album/under-construction-mw0000231192" rel="noopener nofollow">allmusic’s John Bush</a> said the song, “turns the tables on male rappers, taking charge of the sex game, matching their lewdest, rudest rhymes.”</p>
<p>This music video features the young hip hop dancer, <a href="https://en.wikipedia.org/wiki/Alyson_Stoner" rel="noopener nofollow">Alyson Stoner</a>, who in 2015 choreographed <a href="http://www.people.com/article/alyson-stoner-missy-elliott-work-it-video-tribute" rel="noopener nofollow">a tribute to Missy Elliott</a> for “the opportunity to dance for [her] and now carve a path of [her] own.”</p>
<p><img alt="" data-animated="true" height="245" src="https://images.rapgenius.com/e1a10abf24f96a0fd9f2358aeb6e4b50.500x245x17.gif" width="500"/></p>
</div>
<div class="song_metadata u-xx_large_bottom_margin"></div>
</div>
<div class="column_layout-column_span-initial_content">
<div initial-content-for="question_list">
<ul>
<li class="question question--bottom_border">
<div class="u-bottom_margin">
<h3 class="annotation_label">What have the artists said about the song?</h3>
</div>
<div class="rich_text_formatting rich_text_formatting--no_vertical_margins">
<blockquote><p>A fun fact about the song “Work It” is Tim and I would get on each other’s last nerves because we are truly like brother and sister. I remember I begged him to go to some mom and pop stores to get some break beats because we had been in the studio two weeks straight and had a block; we couldn’t think of anything. He finally got some records and caught this vibe and when I heard the worm sound, I was jumping up like, “That’s it!” So I would record in another room because I never record in front of anyone, and I ran and did my rap. Then I ran back and said, “Yo play it to him” and he said, “Nah, that ain’t it.” Then I went back again [and] brought it back and he said, “Nope, that ain’t it.” Then a third time, the same thing. By this time I thought he was being funny, so I’m pissed! By the fifth time he said, “Yes, that’s it! That shit hot!” But guess what? I got him back on the [Miss E…] So Addictive album, he thought we was done and I said, “Nope, that ain’t it!” about three times. Then he did “Get Ur Freak On” and I said, “Yup, that’s it!” Lol.</p></blockquote>
<p>Via <a href="https://www.billboard.com/articles/columns/hip-hop/8514326/missy-elliott-songwriters-hall-of-fame-interview" rel="noopener nofollow">MTV</a></p>
</div>
</li>
<li class="question question--bottom_border">
<div class="u-bottom_margin">
<h3 class="annotation_label">What has Missy Elliott said about the reversed part in the song?</h3>
</div>
<div class="rich_text_formatting rich_text_formatting--no_vertical_margins">
<blockquote><p>“The reverse thing, that was a mistake,” she said. “The engineer happened to hit something, and it just went backward, and I was like, ‘Oh that’s kind of crazy’ because it went backward on the beat.”</p></blockquote>
<p>Elliott added:</p>
<blockquote><p>So, after that happened, I said, ‘Yo, keep that in there and I’m going to write around it.’"</p></blockquote>
</div>
</li>
<li class="question question--bottom_border">
<div class="u-bottom_margin">
<h3 class="annotation_label">How did this song chart?</h3>
</div>
<div class="rich_text_formatting rich_text_formatting--no_vertical_margins">
<p>This song peaked at <strong>#1</strong> on <em>Billboard’s</em> Top  R&amp;B/Hip-Hop Songs and Hot Rap Songs and <strong>#2</strong> on the <em>Billboard Hot 100</em>.</p>
<p>This song also peaked at <strong>#3</strong> on <em>Billboard’s</em> Mainstream Top 40, <strong>#2</strong> in Belgium, <strong>#3</strong> in New Zealand and <strong>#6</strong> in Australia and the UK.</p>
</div>
</li>
<li class="question question--bottom_border">
<div class="u-bottom_margin">
<h3 class="annotation_label">What has she said about having Alyson Stoner featured in her VMA medley?</h3>
</div>
<div class="rich_text_formatting rich_text_formatting--no_vertical_margins">
<blockquote><p>It’s been 17 years since we shot that video. I couldn’t have done it without (Alyson). I was like, ’I’ve got to have Alyson in here because everywhere I went since then people have always been like, ‘What happened to that little girl that used to be in your ‘Work It’ video?’”</p></blockquote>
<p>Via <a href="https://www.billboard.com/articles/columns/hip-hop/8528640/missy-elliott-recalls-craziest-moments-iconic-videos" rel="noopener nofollow">MTV</a></p>
</div>
</li>
</ul>
</div>
<div initial-content-for="track_info">
<div class="u-xx_large_vertical_margins show_tiny_edit_button_on_hover">
<h3 class="text_label u-x_small_bottom_margin">"Work It" Track Info</h3>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Written By</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Missy-elliott">Missy Elliott</a> &amp; <a href="https://genius.com/artists/Timbaland">Timbaland</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Recording Engineer</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Carlos-bedoya">Carlos Bedoya</a> &amp; <a href="https://genius.com/artists/Jimmy-douglass">Jimmy Douglass</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Assistant Recording Engineer</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Demacio-demo-castellon">Demacio “Demo” Castellon</a> &amp; <a href="https://genius.com/artists/Marc-lee">Marc Lee</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Mixing Engineer</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Jimmy-douglass">Jimmy Douglass</a> &amp; <a href="https://genius.com/artists/Timbaland">Timbaland</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Assistant Mixing Engineer</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Steamy">Steamy</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Mastering Engineer</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Herb-powers">Herb Powers</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Label</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/The-goldmind">The Goldmind</a> &amp; <a href="https://genius.com/artists/Elektra-records">Elektra Records</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Copyright ©</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Elektra-entertainment-group">Elektra Entertainment Group</a> &amp; <a href="https://genius.com/artists/Warner-music-group">Warner Music Group</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Phonographic Copyright ℗</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Elektra-entertainment-group">Elektra Entertainment Group</a> &amp; <a href="https://genius.com/artists/Warner-music-group">Warner Music Group</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Performance Rights</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Ascap">ASCAP</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Publisher</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Mass-confusion-music">Mass Confusion Music</a>, <a href="https://genius.com/artists/Virginia-beach-music">Virginia Beach Music</a> &amp; <a href="https://genius.com/artists/Warner-music-group">Warner Music Group</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Mixed At</span>
<span class="metadata_unit-info">
<a href="https://genius.com/artists/Manhattan-center-studios-new-york-ny">Manhattan Center Studios, New York, NY</a>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Recorded At</span>
<span class="metadata_unit-info metadata_unit-info--text_only">The Hit Factory Criteria (Miami)</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Release Date</span>
<span class="metadata_unit-info metadata_unit-info--text_only">September 1, 2002</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Samples</span>
<span class="metadata_unit-info">
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Run-dmc-peter-piper-lyrics">Peter Piper by Run-DMC</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Bob-james-take-me-to-the-mardi-gras-lyrics">Take Me To The Mardi Gras by Bob James</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Rock-master-scott-and-the-dynamic-three-request-line-lyrics">Request Line by Rock Master Scott &amp; the Dynamic Three</a>
</div>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Sampled In</span>
<span class="metadata_unit-info">
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Canibus-the-brainstream-lyrics">The Brainstream by Canibus</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Jimmy-fallon-history-of-rap-1-lyrics">History of Rap 1 by Jimmy Fallon (Ft. Justin Timberlake)</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Girl-talk-no-pause-lyrics">No Pause by Girl Talk</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Bugatti-beez-ti-esrever-dna-ti-pilf-nwod-gniht-ym-tup-i-lyrics">TI esreveR dnA tI pilF nwoD gnihT yM tuP I by Bugatti Beez</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Duuzu-tech-it-no-it-lo-it-gic-it-lyrics">TECH it NO it LO it GIC it by Duuzu</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Lizzo-tempo-lyrics">Tempo by Lizzo (Ft. Missy Elliott)</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Violent-j-jackin-foe-beats-lyrics">Jackin' Foe Beats by Violent J</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Celo-and-abdi-testlines-2-lyrics">Testlines 2 by Celo &amp; Abdi</a>
</div>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Interpolated By</span>
<span class="metadata_unit-info">
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Beenie-man-my-dickie-lyrics">My Dickie by Beenie Man</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Counter-productive-reverse-live-vs-the-saurus-lyrics">Reverse Live vs The Saurus by Counter Productive (Ft. Reverse Live &amp; The Saurus)</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Swavay-untitled-lyrics">UNTITLED by SwaVay</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Rich-brian-rapapapa-lyrics">Rapapapa by Rich Brian (Ft. RZA)</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Ski-mask-the-slump-god-quickstand-lyrics">QUICKSTAND! by Ski Mask the Slump God</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Missy-elliott-throw-it-back-lyrics">Throw It Back by Missy Elliott</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Stormzy-sounds-of-the-skeng-lyrics">Sounds of the Skeng by Stormzy</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Shirin-david-hoes-up-gs-down-lyrics">HOES UP G'S DOWN by SHIRIN DAVID</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Tobi-lou-okay-lyrics">OKAY by ​tobi lou (Ft. Dreezy)</a>
</div>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Cover By</span>
<span class="metadata_unit-info">
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Robyn-adele-anderson-work-it-lyrics">Work it by Robyn Adele Anderson (Ft. Mark Martin)</a>
</div>
</span>
</div>
<div class="metadata_unit metadata_unit--table_row">
<span class="metadata_unit-label">Remixed By</span>
<span class="metadata_unit-info">
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Missy-elliott-work-it-remix-lyrics">Work It (Remix) by Missy Elliott (Ft. 50 Cent)</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Vr-worth-it-is-this-love-lyrics">Worth It/ Is This Love? by VR (Ft. LA)</a>
</div>
<div class="u-x_small_bottom_margin">
<a href="https://genius.com/Danny-towers-work-it-remix-lyrics">Work It (Remix)* by Danny Towers (Ft. Ski Mask the Slump God)</a>
</div>
</span>
</div>
</div>
</div>
<div initial-content-for="album">
<div class="u-xx_large_vertical_margins">
<div class="song_album u-bottom_margin">
<a class="song_album-album_art" href="https://genius.com/albums/Missy-elliott/Under-construction" title="Under Construction">
<img alt="Https%3a%2f%2fimages" src="https://t2.genius.com/unsafe/64x64/https%3A%2F%2Fimages.genius.com%2F5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg" srcset="https://t2.genius.com/unsafe/128x128/https%3A%2F%2Fimages.genius.com%2F5dfa9016abf58bcec676c0b77a31f2bc.1000x1000x1.jpg 2x">
</img></a>
<div class="song_album-info">
<a class="song_album-info-title" href="https://genius.com/albums/Missy-elliott/Under-construction" title="Under Construction">
      Under Construction
      
    </a>
<a class="song_album-info-artist" href="https://genius.com/artists/Missy-elliott" title="Under Construction">Missy Elliott</a>
</div>
</div>
<div class="track_listing track_listing--columns">
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">1.  </span>
<a href="https://genius.com/Missy-elliott-intro-go-to-the-floor-lyrics" title="Intro/Go To The Floor">
            Intro/Go To The Floor
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">2.  </span>
<a href="https://genius.com/Missy-elliott-bring-the-pain-lyrics" title="Bring the Pain">
            Bring the Pain
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">3.  </span>
<a href="https://genius.com/Missy-elliott-gossip-folks-lyrics" title="Gossip Folks">
            Gossip Folks
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track track_listing-track--current">
<span class="track_listing-track_number">4.  </span>
<span>
            Work It
            
            
          </span>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">5.  </span>
<a href="https://genius.com/Missy-elliott-back-in-the-day-lyrics" title="Back in the Day">
            Back in the Day
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">6.  </span>
<a href="https://genius.com/Missy-elliott-funky-fresh-dressed-lyrics" title="Funky Fresh Dressed">
            Funky Fresh Dressed
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">7.  </span>
<a href="https://genius.com/Missy-elliott-pussycat-lyrics" title="Pussycat">
            Pussycat
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">8.  </span>
<a href="https://genius.com/Missy-elliott-nothing-out-there-for-me-lyrics" title="Nothing Out There for Me">
            Nothing Out There for Me
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">9.  </span>
<a href="https://genius.com/Missy-elliott-slide-lyrics" title="Slide">
            Slide
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">10.  </span>
<a href="https://genius.com/Missy-elliott-play-that-beat-lyrics" title="Play That Beat">
            Play That Beat
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">11.  </span>
<a href="https://genius.com/Missy-elliott-aint-that-funny-lyrics" title="Ain’t That Funny">
            Ain’t That Funny
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">12.  </span>
<a href="https://genius.com/Missy-elliott-hot-lyrics" title="Hot">
            Hot
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">13.  </span>
<a href="https://genius.com/Missy-elliott-can-you-hear-me-lyrics" title="Can You Hear Me">
            Can You Hear Me
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">14.  </span>
<a href="https://genius.com/Missy-elliott-work-it-remix-lyrics" title="Work It (Remix)">
            Work It (Remix)
            
            
          </a>
</div>
</div>
<div>
<div class="track_listing-track">
<span class="track_listing-track_number">15.  </span>
<a href="https://genius.com/Missy-elliott-drop-the-bomb-lyrics" title="Drop the Bomb">
            Drop the Bomb
            
            
          </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<ul class="breadcrumbs" itemscope="" itemtype="https://schema.org/BreadcrumbList">
<li class="breadcrumb" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a href="https://genius.com/" itemprop="item">
<span itemprop="name">Home</span>
<meta content="1" itemprop="position"/>
</a>
</li>
<li class="breadcrumb" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a href="https://genius.com/artists-index/m" itemprop="item">
<span itemprop="name">M</span>
<meta content="1" itemprop="position"/>
</a>
</li>
<li class="breadcrumb" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a href="https://genius.com/artists/Missy-elliott" itemprop="item">
<span itemprop="name">Missy Elliott</span>
<meta content="1" itemprop="position"/>
</a>
</li>
<li class="breadcrumb breadcrumb-current_page" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a href="https://genius.com/Missy-elliott-work-it-lyrics" itemprop="item">
<span itemprop="name">Work It Lyrics</span>
<meta content="1" itemprop="position"/>
</a>
</li>
</ul>
</ng-non-bindable>
</routable-page>
<div class="page_footer page_footer--padding-for-sticky-player">
<div class="footer">
<div>
<a href="/about">About Genius</a>
<a href="/contributor_guidelines">Contributor Guidelines</a>
<a href="/press" target="_blank">Press</a>
<a href="mailto:inquiry@genius.com">Advertise</a>
<a href="https://eventspace.genius.com/">Event Space</a>
</div>
<div>
<a href="/static/privacy_policy" rel="nofollow" target="_blank">Privacy Policy</a>
<a href="/static/licensing" rel="nofollow" target="_blank">Licensing</a>
<a href="/jobs">Jobs</a>
<a href="/developers">Developers</a>
<a href="/static/terms" rel="nofollow" target="_blank">Terms of Use</a>
<a href="/static/copyright" rel="nofollow" target="_blank">Copyright Policy</a>
<a href="/feedback/new" rel="nofollow">Contact us</a>
<a href="/static/ccpa" rel="nofollow" target="_blank">Do Not Sell My Personal Information</a>
<a class="facebox" href="/login" rel="nofollow">Sign in</a>
</div>
<div>
<span class="footer-copyright">© 2021 Genius Media Group Inc.</span>
</div>
</div>
<div class="footer footer--secondary">
<a class="footer-artist_links_label" href="/verified-artists">Verified Artists</a>
<span class="footer-artist_links_label">All Artists:</span>
<ul class="characters_index_list">
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/a">A</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/b">B</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/c">C</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/d">D</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/e">E</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/f">F</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/g">G</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/h">H</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/i">I</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/j">J</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/k">K</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/l">L</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/m">M</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/n">N</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/o">O</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/p">P</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/q">Q</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/r">R</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/s">S</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/t">T</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/u">U</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/v">V</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/w">W</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/x">X</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/y">Y</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/z">Z</a>
</li>
<li class="character_index_list-element">
<a class="character_index_list-link" href="https://genius.com/artists-index/0">#</a>
</li>
</ul>
</div>
</div>
<img height="0" src="https://loadus.exelator.com/load/?g=4&amp;j=0&amp;p=1183&amp;page-album_ids=%5B6639%5D%2C%5B335070%5D&amp;page-album_in_top_10=false&amp;page-albums=Under+Construction%2CRespect+M.E.&amp;page-artist_ids=%5B1529%5D&amp;page-artist_in_top_10=false&amp;page-artists=Missy+Elliott&amp;page-genre_ids=%5B16%5D%2C%5B2381%5D%2C%5B2757%5D%2C%5B1434%5D&amp;page-genres=Pop+Genius%2CExperimental%2CAlternative%2CRap+Genius&amp;page-in_top_10=false&amp;page-new_release=false&amp;page-release_decade=2000&amp;page-release_month=200209&amp;page-release_year=2002&amp;page-type=song&amp;user_signed_in=false" style="display: block;" width="0"/>
<script type="text/javascript">_qevents.push({ qacct: "p-f3CPQ6vHckedE"});</script>
<noscript>
<div style="display: none;">
<img alt="Quantcast" height="1" src="http://pixel.quantserve.com/pixel/p-f3CPQ6vHckedE.gif" width="1">
</img></div>
</noscript>
<script type="text/javascript">

  var _sf_async_config={};

  _sf_async_config.uid = 3877;
  _sf_async_config.domain = 'genius.com';
  _sf_async_config.title = 'Missy Elliott – Work It Lyrics | Genius Lyrics';
  _sf_async_config.sections = 'songs,tag:pop,tag:rap';
  _sf_async_config.authors = 'Missy Elliott';

  var _cbq = window._cbq || [];

  (function(){
    function loadChartbeat() {
      window._sf_endpt=(new Date()).getTime();
      var e = document.createElement('script');
      e.setAttribute('language', 'javascript');
      e.setAttribute('type', 'text/javascript');
      e.setAttribute('src', 'https://static.chartbeat.com/js/chartbeat.js');
      document.body.appendChild(e);
    }
    var oldonload = window.onload;
    window.onload = (typeof window.onload != 'function') ?
       loadChartbeat : function() { oldonload(); loadChartbeat(); };
  })();
</script>
<!-- Begin comScore Tag -->
<script>
  var _comscore = _comscore || [];
  _comscore.push({ c1: "2", c2: "17151659" });
  (function() {
    var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
    s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
    el.parentNode.insertBefore(s, el);
  })();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=17151659&amp;cv=2.0&amp;cj=1"/>
</noscript>
<!-- End comScore Tag -->
<script>
  !function(f,b,e,v,n,t,s)
  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
  n.callMethod.apply(n,arguments):n.queue.push(arguments)};
  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
  n.queue=[];t=b.createElement(e);t.async=!0;
  t.src=v;s=b.getElementsByTagName(e)[0];
  s.parentNode.insertBefore(t,s)}(window, document,'script',
  'https://connect.facebook.net/en_US/fbevents.js');
  fbq('init', '201983886890479');
  fbq('track', 'PageView');
</script>
<noscript><img height="1" src="https://www.facebook.com/tr?id=201983886890479&amp;ev=PageView&amp;noscript=1" style="display:none" width="1"/></noscript>
<script type="text/javascript">
  window._tfa = window._tfa || [];
  window._tfa.push({notify: 'event', name: 'page_view', id: 1301520});
  !function (t, f, a, x) {
         if (!document.getElementById(x)) {
            t.async = 1;t.src = a;t.id=x;f.parentNode.insertBefore(t, f);
         }
  }(document.createElement('script'),
  document.getElementsByTagName('script')[0],
  '//cdn.taboola.com/libtrc/unip/1301520/tfa.js',
  'tb_tfa_script');
</script>
<noscript>
<img height="0" src="https://trc.taboola.com/1301520/log/3/unip?en=page_view" style="display:none" width="0"/>
</noscript>
<script type="text/javascript">(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"===e.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f);b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==
typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");for(g=0;g<i.length;g++)f(c,i[g]);
b._i.push([a,e,d])};b.__SV=1.2}})(document,window.mixpanel||[]);
mixpanel.init('77967c52dc38186cc1aadebdd19e2a82');</script>
</body>
</html>

https://genius.com/Missy-elliott-work-it-lyrics

27.9 Extract just the song lyrics for Missy Elliott’s “Work It”

# Your code here 👇

27.10 Extract just the song title for Missy Elliott’s “Work It”

# Your code here 👇

27.11 Extract some of the metadata (producer, label, release date) for Missy Elliott’s “Work It”

# Your code here 👇

If there is anything wrong, please open an issue on GitHub or email f.pianzola@rug.nl