This notebook collects the record holders of Saturday Night Live.
import pandas as pd
import numpy as np
import bokeh
from bokeh.io import output_notebook
from bokeh.plotting import figure, show
from bokeh.models import HoverTool
output_notebook()
<div class="bk-root">
<a href="http://bokeh.pydata.org" target="_blank" class="bk-logo bk-logo-small bk-logo-notebook"></a>
<span id="507e43ec-d6ae-4d47-94cd-a6a19c666f41">Loading BokehJS ...</span>
</div>
fs = pd.read_csv('./db/snl_season.csv', encoding="utf-8")
dfe = pd.read_csv('./db/snl_episode.csv', encoding="utf-8",parse_dates=['aired'])
dft = pd.read_csv('./db/snl_title.csv', encoding="utf-8")
dfa = pd.read_csv('./db/snl_actor.csv', encoding="utf-8")
dfat = pd.read_csv('./db/snl_actor_title.csv', encoding="utf-8")
dfr = pd.read_csv('./db/snl_rating.csv', encoding="utf-8")
dfer = pd.merge(dfe, dfr, on=['sid', 'eid'])
dfactors = pd.merge(pd.merge(dfat, dfer, on=['sid', 'eid']), dfa, on='aid')
dfactors['name'].value_counts().head(5)
Kenan Thompson 929
Phil Hartman 913
Darrell Hammond 767
Fred Armisen 739
Bill Hader 696
Name: name, dtype: int64
df_title_season = pd.DataFrame(dfactors.groupby(['sid','name'])['aid'].count()).reset_index()
df_title_season = df_title_season.sort_values('aid', ascending=False).drop_duplicates(['sid'])
df_title_season.columns = ['Season', 'Name', 'Appearances']
df_title_season.sort_values('Season').set_index('Season')
Name | Appearances | |
---|---|---|
Season | ||
1 | Chevy Chase | 129 |
2 | Dan Aykroyd | 104 |
3 | Dan Aykroyd | 109 |
4 | Bill Murray | 96 |
5 | Bill Murray | 110 |
6 | Charles Rocket | 83 |
7 | Joe Piscopo | 97 |
8 | Joe Piscopo | 97 |
9 | Tim Kazurinsky | 99 |
10 | Christopher Guest | 68 |
11 | Jon Lovitz | 78 |
12 | Phil Hartman | 108 |
13 | Phil Hartman | 69 |
14 | Phil Hartman | 119 |
15 | Phil Hartman | 119 |
16 | Phil Hartman | 123 |
17 | Phil Hartman | 139 |
18 | Phil Hartman | 124 |
19 | Phil Hartman | 94 |
20 | Michael McKean | 94 |
21 | Will Ferrell | 99 |
22 | Will Ferrell | 83 |
23 | Will Ferrell | 115 |
24 | Darrell Hammond | 88 |
25 | Chris Parnell | 80 |
26 | Chris Parnell | 103 |
27 | Will Ferrell | 81 |
28 | Amy Poehler | 92 |
29 | Amy Poehler | 95 |
30 | Amy Poehler | 107 |
31 | Amy Poehler | 111 |
32 | Amy Poehler | 93 |
33 | Amy Poehler | 62 |
34 | Kristen Wiig | 111 |
35 | Bill Hader | 111 |
36 | Kristen Wiig | 102 |
37 | Kristen Wiig | 112 |
38 | Bill Hader | 96 |
39 | Kenan Thompson | 89 |
40 | Taran Killam | 100 |
41 | Cecily Strong | 95 |
42 | Beck Bennett | 63 |
df_host = pd.DataFrame(dfactors[dfactors.actorType == 'host'].groupby(['sid','eid','name']).count()).reset_index()
pd.DataFrame(df_host['name'].value_counts()).head(7)
name | |
---|---|
Alec Baldwin | 17 |
Steve Martin | 15 |
John Goodman | 13 |
Buck Henry | 10 |
Tom Hanks | 9 |
Chevy Chase | 8 |
Christopher Walken | 7 |
df_title_cat = pd.DataFrame(dfactors.groupby(['actorType','name'])['aid'].count()).reset_index()
df_title_cat = df_title_cat.sort_values('aid', ascending=False).drop_duplicates(['actorType'])
df_title_cat.columns = ['actorType', 'Name', 'Appearances']
df_title_cat.set_index("actorType")
Name | Appearances | |
---|---|---|
actorType | ||
cast | Kenan Thompson | 929 |
crew | Steve Higgins | 490 |
unknown | Jack Handey | 123 |
host | Alec Baldwin | 108 |
music | Paul Simon | 25 |
guest | Jim Henson's Muppets | 17 |
cameo | Tina Fey | 13 |
filmed | Steve Carell | 13 |
df_act_cat = pd.DataFrame(dfactors.groupby(['actorType','name'])['aid'].count()).reset_index()
df_act_cat.columns = ['Type', 'Name', 'Appearances']
for actorType in df_act_cat.Type.unique():
df_act_cat[actorType] = 0
df_act_cat.loc[df_act_cat.Type==actorType, actorType] = df_act_cat['Appearances']
df_act_cat = df_act_cat.drop(['Type'],axis=1)
df_act_cat = df_act_cat.groupby('Name').sum()
df_act_cat['radius'] = df_act_cat['Appearances'] / df_act_cat['Appearances'].max() * 20
#df_act_cat[df_act_cat['radius'] < 1] = 1
hover = HoverTool(
tooltips=[
("Season", "@Season"),
("Cameos", "@cameo"),
("Cast", "@cast"),
("Crew", "@crew"),
("Filmed Appearance", "@filmed"),
("As Guest", "@guest"),
("As Host", "@host"),
("Musical Appearances", "@music"),
("Other", "@unknown"),
]
)
TOOLS=[hover,'pan','zoom_in','zoom_out','undo','redo','reset','save','lasso_select']
p = figure(plot_width=800, plot_height=800, y_range=(-10,110),x_range=(-20,950), tools=TOOLS)
r = p.scatter("cast","host",source=df_act_cat, radius='radius')
t = show(p, notebook_handle=True)
<div class="bk-root">
<div class="bk-plotdiv" id="3439e3b9-dc97-43bb-b746-546fc39634fe"></div>
</div>
\n"+
"
"}};
function display_loaded() {
if (window.Bokeh !== undefined) {
document.getElementById("3439e3b9-dc97-43bb-b746-546fc39634fe").textContent = "BokehJS successfully loaded.";
} else if (Date.now() < window._bokeh_timeout) {
setTimeout(display_loaded, 100)
}
}if ((window.Jupyter !== undefined) && Jupyter.notebook.kernel) {
comm_manager = Jupyter.notebook.kernel.comm_manager
comm_manager.register_target("01b68a5a-1112-4429-9be8-864538a8fd7c", function () {});
}
function run_callbacks() {
window._bokeh_onload_callbacks.forEach(function(callback) { callback() });
delete window._bokeh_onload_callbacks
console.info("Bokeh: all callbacks have finished");
}
function load_libs(js_urls, callback) {
window._bokeh_onload_callbacks.push(callback);
if (window._bokeh_is_loading > 0) {
console.log("Bokeh: BokehJS is being loaded, scheduling callback at", now());
return null;
}
if (js_urls == null || js_urls.length === 0) {
run_callbacks();
return null;
}
console.log("Bokeh: BokehJS not loaded, scheduling load and callback at", now());
window._bokeh_is_loading = js_urls.length;
for (var i = 0; i < js_urls.length; i++) {
var url = js_urls[i];
var s = document.createElement('script');
s.src = url;
s.async = false;
s.onreadystatechange = s.onload = function() {
window._bokeh_is_loading--;
if (window._bokeh_is_loading === 0) {
console.log("Bokeh: all BokehJS libraries loaded");
run_callbacks()
}
};
s.onerror = function() {
console.warn("failed to load library " + url);
};
console.log("Bokeh: injecting script tag for BokehJS library: ", url);
document.getElementsByTagName("head")[0].appendChild(s);
}
};var element = document.getElementById("3439e3b9-dc97-43bb-b746-546fc39634fe");
if (element == null) {
console.log("Bokeh: ERROR: autoload.js configured with elementid '3439e3b9-dc97-43bb-b746-546fc39634fe' but no matching script tag was found. ")
return false;
}
var js_urls = [];
var inline_js = [
function(Bokeh) {
(function() {
var fn = function() {
var docs_json = {"d9ebbd90-84ad-47cf-a651-9568b81d9cfe":{"roots":{"references":[{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"8b1dbc8f-d86c-4e9b-a3e1-ff867cc019dc","type":"SaveTool"},{"attributes":{"dimension":1,"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"},"ticker":{"id":"40234748-e445-457d-b77b-81ad9f00b028","type":"BasicTicker"}},"id":"1887a91f-edf0-4814-b661-a92f6fc0212e","type":"Grid"},{"attributes":{"formatter":{"id":"3dda3d65-a5ee-4c17-8676-f49bea35a862","type":"BasicTickFormatter"},"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"},"ticker":{"id":"40234748-e445-457d-b77b-81ad9f00b028","type":"BasicTicker"}},"id":"d340d028-4ed3-4f2c-817d-3f46e99a1678","type":"LinearAxis"},{"attributes":{},"id":"40234748-e445-457d-b77b-81ad9f00b028","type":"BasicTicker"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"0d3750ce-e096-4971-8aa3-77a97878f6ff","type":"ResetTool"},{"attributes":{"callback":null,"end":110,"start":-10},"id":"6f7cf53a-8e46-488e-9807-64761444275c","type":"Range1d"},{"attributes":{},"id":"b721715d-6bd6-4ab7-96e3-cf478d2ea805","type":"BasicTicker"},{"attributes":{},"id":"b397b068-4116-4047-8bc6-300762c3ee9f","type":"ToolEvents"},{"attributes":{"data_source":{"id":"fb860717-0eb0-46b2-bb88-c1167ec74c2b","type":"ColumnDataSource"},"glyph":{"id":"2a80a609-ce56-4a8d-9749-e5b9ee683ad4","type":"Circle"},"hover_glyph":null,"nonselection_glyph":{"id":"63ded158-cbfb-4d72-bcbf-a230735ab334","type":"Circle"},"selection_glyph":null},"id":"2a034663-8372-4da9-8958-179953af3666","type":"GlyphRenderer"},{"attributes":{"callback":null,"overlay":{"id":"3bb72a3c-505a-4027-a71f-52c08cd56c7a","type":"PolyAnnotation"},"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"84c0c5de-9910-49bc-972a-b2c76b646453","type":"LassoSelectTool"},{"attributes":{"below":[{"id":"ea4180fd-4e9e-4d8e-a4ba-84e936516567","type":"LinearAxis"}],"left":[{"id":"d340d028-4ed3-4f2c-817d-3f46e99a1678","type":"LinearAxis"}],"plot_height":800,"plot_width":800,"renderers":[{"id":"ea4180fd-4e9e-4d8e-a4ba-84e936516567","type":"LinearAxis"},{"id":"0a9ef5bb-41c4-40ee-9cf7-def764dfc445","type":"Grid"},{"id":"d340d028-4ed3-4f2c-817d-3f46e99a1678","type":"LinearAxis"},{"id":"1887a91f-edf0-4814-b661-a92f6fc0212e","type":"Grid"},{"id":"3bb72a3c-505a-4027-a71f-52c08cd56c7a","type":"PolyAnnotation"},{"id":"2a034663-8372-4da9-8958-179953af3666","type":"GlyphRenderer"}],"title":{"id":"0ac50d92-cb14-4598-8321-5ef642f38f2e","type":"Title"},"tool_events":{"id":"b397b068-4116-4047-8bc6-300762c3ee9f","type":"ToolEvents"},"toolbar":{"id":"63318ffd-593a-45bd-8228-c37dae5233cf","type":"Toolbar"},"x_range":{"id":"fb170a97-ef1f-4ced-a341-6656c6aae545","type":"Range1d"},"y_range":{"id":"6f7cf53a-8e46-488e-9807-64761444275c","type":"Range1d"}},"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"},"ticker":{"id":"b721715d-6bd6-4ab7-96e3-cf478d2ea805","type":"BasicTicker"}},"id":"0a9ef5bb-41c4-40ee-9cf7-def764dfc445","type":"Grid"},{"attributes":{"callback":null,"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"},"tooltips":[["Season","@Season"],["Cameos","@cameo"],["Cast","@cast"],["Crew","@crew"],["Filmed Appearance","@filmed"],["As Guest","@guest"],["As Host","@host"],["Musical Appearances","@music"],["Other","@unknown"]]},"id":"a6bcab39-97f6-4bab-8d90-58f2222509fc","type":"HoverTool"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"3a4ffb1d-ffad-424f-85d6-609722dfa013","type":"PanTool"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"radius":{"field":"radius","units":"data"},"x":{"field":"cast"},"y":{"field":"host"}},"id":"63ded158-cbfb-4d72-bcbf-a230735ab334","type":"Circle"},{"attributes":{"formatter":{"id":"ab303980-702b-4153-b93f-e41bf0ecc5ac","type":"BasicTickFormatter"},"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"},"ticker":{"id":"b721715d-6bd6-4ab7-96e3-cf478d2ea805","type":"BasicTicker"}},"id":"ea4180fd-4e9e-4d8e-a4ba-84e936516567","type":"LinearAxis"},{"attributes":{},"id":"ab303980-702b-4153-b93f-e41bf0ecc5ac","type":"BasicTickFormatter"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"ad4848dc-ca43-47ef-a3c6-0d1b9b4f9714","type":"UndoTool"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"564e268d-e199-443b-bf52-e9ecdc1b1348","type":"ZoomOutTool"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"e66bd795-5832-4f74-953f-1f60c23c83dd","type":"ZoomInTool"},{"attributes":{"callback":null,"column_names":["Appearances","cameo","cast","crew","filmed","guest","host","music","unknown","radius","Name"],"data":{"Appearances":[3,4,2,1,1,1,4,2,79,1,2,2,2,4,2,1,206,1,2,7,4,1,13,21,239,4,8,11,290,1,4,28,9,2,1,6,201,11,2,6,3,7,9,4,4,91,2,6,82,4,5,120,1,2,1,4,36,7,1,1,1,16,3,687,9,436,2,5,4,5,4,6,2,3,9,2,15,1,17,138,9,473,3,5,1,4,7,50,1,15,8,1,64,20,1,4,7,4,1,5,39,8,1,9,10,1,2,6,11,3,2,11,1,1,1,2,5,1,9,29,10,6,7,1,3,1,1,1,1,1,1,7,1,2,4,1,2,6,3,4,6,16,282,1,1,35,1,1,28,8,1,4,1,9,2,1,57,1,22,2,2,2,7,12,1,1,7,1,2,2,2,4,2,4,696,2,1,389,1,8,9,5,5,1,1,5,72,1,2,9,5,2,2,2,3,6,7,9,3,2,2,2,5,2,1,3,1,1,65,2,2,3,2,2,14,15,1,8,7,13,2,1,3,4,2,642,2,10,2,9,17,1,1,2,2,140,1,1,9,1,6,2,15,1,1,2,108,11,10,4,1,1,6,1,20,5,3,5,40,1,1,10,2,2,1,4,3,4,1,11,16,2,7,2,13,1,63,1,1,15,7,4,3,1,8,2,4,1,31,34,2,5,2,1,2,1,7,1,1,1,2,8,4,1,8,85,1,16,3,7,393,4,2,7,5,1,8,25,8,83,2,9,2,1,1,1,9,1,2,14,12,2,1,1,3,279,1,101,1,211,2,1,1,2,1,1,1,54,6,325,1,15,3,377,1,2,602,1,8,113,1,2,3,2,16,16,11,8,6,74,30,7,1,4,68,5,1,6,40,2,1,1,2,7,1,13,1,1,6,1,4,1,1,1,5,16,1,13,8,6,79,115,2,1,28,5,1,1,1,3,1,6,2,2,6,2,2,1,1,2,2,5,2,2,2,7,38,1,8,35,415,8,442,11,6,5,10,29,42,7,2,45,1,1,1,767,1,3,9,9,1,7,2,8,5,40,1,5,11,1,7,2,6,2,2,1,1,14,1,2,1,1,7,71,3,7,5,2,4,1,1,12,5,2,247,1,1,2,2,62,1,2,5,2,1,1,9,4,2,8,4,6,2,8,2,1,12,21,170,7,3,62,1,8,1,2,7,5,2,4,2,1,1,1,1,11,5,9,2,1,1,2,2,8,2,18,4,2,3,44,172,6,1,4,16,4,1,1,2,3,1,3,2,1,1,22,1,39,12,2,2,12,2,9,1,7,1,1,7,5,7,1,8,1,6,4,2,260,2,2,1,4,2,4,1,9,16,2,1,10,5,2,2,4,8,1,1,1,8,5,181,6,7,1,2,1,2,37,16,1,11,2,6,6,8,6,9,11,25,3,5,1,30,7,12,6,1,1,1,2,1,2,3,7,3,6,1,1,3,2,2,1,11,2,2,7,2,118,2,2,1,2,1,2,5,6,2,2,13,5,2,8,8,2,1,4,9,2,1,1,7,2,739,1,6,2,13,37,5,9,2,1,4,4,1,71,9,5,62,2,361,5,1,21,6,1,203,2,1,5,1,7,10,1,2,17,1,3,10,3,6,14,2,7,4,5,8,1,3,2,1,1,8,2,14,1,1,8,1,2,49,1,464,2,1,14,1,2,2,2,3,3,1,12,2,1,1,7,1,2,10,1,2,1,7,7,23,3,1,1,1,8,7,5,2,1,3,1,1,12,2,5,1,103,2,1,6,1,6,6,9,14,7,2,6,2,2,424,2,7,19,73,73,1,2,3,12,7,1,7,13,5,2,7,6,3,1,3,2,2,1,4,1,1,1,1,17,1,1,9,2,23,2,6,1,123,3,4,1,3,2,7,2,13,1,9,11,8,2,2,2,5,28,1,1,1,4,17,9,5,14,14,1,1,310,438,1,2,9,1,60,2,10,1,1,4,2,6,1,1,8,1,9,8,2,7,7,7,573,10,85,292,1,9,1,1,1,2,1,10,13,1,15,6,6,97,4,2,18,9,2,10,22,5,2,2,1,58,1,7,7,7,1,8,1,7,1,32,2,17,2,9,9,2,1,1,7,2,2,4,1,12,107,151,23,151,1,1,21,1,8,7,1,1,4,1,5,2,433,1,7,2,6,2,57,1,1,5,1,5,1,1,2,4,58,1,2,2,7,5,1,7,364,1,7,4,1,1,1,337,3,1,10,9,1,10,2,4,86,25,2,1,14,17,28,6,16,4,6,2,2,32,7,3,2,1,1,10,1,6,8,7,1,1,25,8,2,1,9,11,31,7,1,368,48,7,27,4,2,1,7,28,15,1,17,5,10,7,1,2,1,11,1,9,1,1,1,198,8,214,7,1,6,6,1,1,1,16,41,6,2,1,15,11,21,2,2,5,8,1,368,1,1,3,1,12,1,7,1,10,1,1,2,2,2,3,1,2,2,8,3,7,2,17,4,1,2,929,6,1,2,2,7,2,1,8,7,2,17,8,11,3,646,2,10,2,4,6,2,1,5,1,1,6,1,1,7,2,8,11,2,3,2,11,1,6,633,1,1,1,4,5,216,2,1,2,2,19,2,1,2,7,1,6,406,1,18,1,2,2,1,40,8,5,2,2,1,2,1,8,33,1,2,7,1,8,55,2,2,2,2,2,31,8,2,1,1,5,125,7,1,1,2,39,4,1,2,8,2,1,1,1,1,5,2,2,28,8,7,6,1,9,31,3,4,3,6,2,1,2,4,2,16,25,1,1,2,1,1,18,155,2,92,3,2,23,4,2,5,1,1,1,2,6,5,18,2,1,5,6,2,5,1,2,8,2,4,20,2,11,1,7,4,1,2,2,18,5,11,5,7,2,2,1,2,5,5,2,8,3,5,2,1,30,1,6,2,1,1,1,7,1,2,188,2,3,1,2,2,1,10,1,2,8,6,3,8,66,1,3,3,2,4,2,1,262,5,2,7,1,1,5,6,9,9,6,2,6,12,3,13,8,27,15,6,4,6,2,62,1,21,1,487,5,9,8,7,6,115,26,31,3,3,4,6,1,2,2,1,1,4,7,1,1,69,1,7,5,5,7,18,1,2,124,1,56,23,1,9,3,3,15,1,36,1,2,4,17,1,2,2,1,2,3,330,60,1,2,1,53,4,1,26,6,1,2,7,9,1,2,4,38,1,3,2,1,1,346,1,1,2,1,1,2,1,10,1,2,7,1,2,5,4,1,2,2,2,1,1,2,9,1,72,1,303,1,3,1,6,1,1,9,6,2,1,5,84,8,2,10,1,5,3,1,3,7,2,9,2,1,4,5,1,9,6,6,2,2,31,4,4,1,1,1,274,4,6,182,7,1,49,9,2,2,1,1,2,1,6,1,1,8,7,1,4,1,2,8,40,3,2,9,2,1,22,8,8,15,1,1,1,2,84,3,7,23,8,28,124,59,2,2,2,1,1,91,1,4,3,11,1,8,8,6,1,1,128,6,37,6,6,10,2,10,2,2,9,3,1,913,13,3,5,3,1,6,5,8,5,1,2,2,2,1,4,1,3,1,2,1,1,2,1,15,1,8,3,7,1,7,406,4,1,1,9,9,1,2,10,78,2,6,1,12,1,2,7,11,8,1,2,4,14,2,1,2,1,5,1,2,6,4,9,53,2,6,7,1,3,6,2,2,5,12,1,1,2,1,2,1,9,7,1,1,6,1,2,3,12,2,6,2,4,1,5,15,10,5,46,7,217,4,3,7,2,4,27,75,2,1,4,5,1,15,6,2,92,5,7,1,160,21,1,2,4,8,1,2,1,1,5,1,7,2,1,8,4,2,9,1,16,5,2,7,6,7,8,10,1,64,1,1,2,4,1,1,14,3,1,7,5,5,2,1,8,2,8,6,15,1,1,1,2,4,6,5,10,2,2,11,3,3,10,2,4,7,1,6,2,22,18,2,37,157,26,2,1,1,14,7,3,1,7,1,8,7,1,4,1,2,9,1,1,8,464,31,2,5,7,2,1,9,1,1,2,2,9,1,3,1,8,17,4,6,2,16,2,2,1,3,1,2,7,4,41,1,9,3,1,2,2,9,6,2,6,2,6,2,2,1,1,2,2,5,2,2,3,2,2,2,2,1,1,1,1,4,23,1,19,27,7,6,1,490,2,29,11,1,2,113,33,3,1,5,1,2,5,2,2,11,30,2,2,2,6,1,2,3,1,7,9,11,1,1,2,2,2,1,9,1,2,34,5,6,2,2,2,1,2,1,2,2,8,517,1,7,3,13,2,7,5,2,3,16,8,2,47,16,2,1,2,3,1,4,2,2,1,4,6,1,2,4,2,2,2,2,2,2,2,1,2,1,3,3,2,2,2,1,2,2,2,4,2,6,6,1,2,1,2,1,1,2,2,2,5,2,2,2,2,2,2,1,4,1,5,2,2,2,15,1,1,3,6,1,4,1,6,2,1,2,1,1,6,1,2,2,2,2,2,1,1,3,8,2,1,2,2,3,2,1,1,2,3,3,260,9,487,7,58,2,3,1,1,2,247,8,1,1,6,1,2,1,20,9,1,247,17,10,1,9,51,1,97,1,16,117,4,1,9,1,1,1,1,1,1,16,1,1,76,2,2,2,6,2,1,1,4,295,1,3,3,1,2,2,8,2,2,9,1,5,6,2,6,2,451,4,2,1,307,2,15,1,1,1,21,6,4,28,1,12,1,6,1,2,2,1,7,2,1,2,654,506,4,1,1,1,1,8,9,15,1,8,1,3,25,2,2,2,1,2,2,44,2,8,8,24,1,2,8,2],"Name":["'N Sync","10,000 Maniacs","14 Karat Soul","2 Chainz","3-D","3RDEYEGIRL","50 Cent","A Tribe Called Quest","A. Whitney Brown","A.J. Benza","AC/DC","AFI","Aaron Neville","Aaron Paul","Abba","Abbie Hoffman","Abby Elliott","Abby McGrew","Adam Ant","Adam Driver","Adam Epstein","Adam Horovitz","Adam Levine","Adam McKay","Adam Sandler","Adele","Adrien Brody","Aerosmith","Aidy Bryant","Aimee Mann","Akeyla Cleghorne","Akira Yoshimura","Akiva Schaffer","Akon","Al Alen Petersen","Al Camoin","Al Franken","Al Gore","Al Green","Al Jarreau","Al Roker","Al Sharpton","Al Siegal","Alabama Shakes","Alan Cumming","Alan P. Rubin","Alan Price","Alan Wong","Alan Zweibel","Alanis Morissette","Albert Brooks","Alec Baldwin","Alejandro Sanz","Alessia Cara","Alex Baze","Alex Karras","Alex Moffat","Alicia Keys","All Saints","Allison Janney","Amber Lee Ettinger","Amy Adams","Amy Davidson","Amy Poehler","Amy Schumer","Ana Gasteyer","Anderson Cooper","Andie MacDowell","Andrae Crouch","Andrew Dice Clay","Andrew Duncan","Andrew Garfield","Andrew Gold","Andrew Robin","Andrew Smith","Andrew W.K.","Andy Breckman","Andy Griffith","Andy Kaufman","Andy Murphy","Andy Roddick","Andy Samberg","Andy Warhol","Angie Dickinson","Angie Everhart","Anita Baker","Anjelica Huston","Ann Risley","Ann-Margret","Anna Faris","Anna Kendrick","Annazette Chase","Anne Beatts","Anne Hathaway","Anne Meara","Anne Murray","Annette Bening","Annie Lennox","Anthony Anderson","Anthony Edwards","Anthony Michael Hall","Anthony Perkins","Anthony Rizzo","Antonio Banderas","Arcade Fire","Archie Manning","Arctic Monkeys","Aretha Franklin","Ariana Grande","Arnold Schwarzenegger","Arrested Development","Art Garfunkel","Arthur Kent","Artie Lange","Ashanti","Ashford & Simpson","Ashlee Simpson","Ashley Hamilton","Ashley Olsen","Ashton Kutcher","Audrey Peart Dickman","Avril Lavigne","Aziz Ansari","B.o.B","Backstreet Boys","Baha Men","Barack Obama","Barbara Bach","Barbara Walters","Barbra Streisand","Barenaked Ladies","Barry Bostwick","Barry Humphries","Barry Mitchell","Barry W. Blaustein","Barry Williams","Bastille","Bea Arthur","Beanie Sigel","Beastie Boys","Beau Bridges","Beck","Beck Bennett","Becky Weinberg","Bella Abzug","Ben Affleck","Ben Folds Five","Ben Harper","Ben Stiller","Benedict Cumberbatch","Bentley Mitchum","Bernadette Peters","Bernie Kopell","Bernie Mac","Bernie Sanders","Bert Convy","Bert Jones","Bert Parks","Beth Cahill","Beth McCarthy Miller","Bette Midler","Betty Carter","Betty Thomas","Betty White","Betty Witherspoon","Beverly Johnson","Beyonc\u00e9","Big Bird","Big Country","Big Daddy Kane","Big Sean","Big Show","Bill Bradley","Bill Corsair","Bill Hader","Bill Irwin","Bill Kreutzmann","Bill Murray","Bill O'Reilly","Bill Paxton","Bill Pullman","Bill Russell","Bill Wegman","Bill Withers","Billy Baldwin","Billy Bob Thornton","Billy Crystal","Billy Grundfest","Billy Idol","Billy Joel","Billy Martin","Billy Ocean","Billy Preston","Billy Squier","Bjork","Black Eyed Peas","Blake Lively","Blake Shelton","Blind Melon","Blink-182","Blondie","Blues Traveler","Blythe Danner","BoDeans","Bob & Ray","Bob Christianson","Bob Costas","Bob Costas ","Bob Cranshaw","Bob Dole","Bob Dryden","Bob Dylan","Bob Hoskins","Bob Hurst","Bob Newhart","Bob Odenkirk","Bob Orton","Bob Saget","Bob Uecker","Bob Van Ry","Bob Zmuda","Bobby Bonilla","Bobby Brown","Bobby Fraraccio","Bobby McFerrin","Bobby Moynihan","Bon Iver","Bon Jovi","Bonnie Bramlett","Bonnie Raitt","Bonnie Turner","Bono","Bootsy Collins","Bootsy Collins & The Rubber Band","Boz Scaggs","Brad Hall","Brad Pitt","Brad Pitt ","Bradley Cooper","Bradley Whitford","Brandon Tartikoff","Branford Marsalis","Brendan Fraser","Brent Musburger","Brett Hull","Brian Austin Green","Brian Doyle-Murray","Brian McConnachie","Brian Williams","Brian Wilson","Brick","Bridget Kelly","Brie Larson","Britney Haas","Britney Spears","Brittany Murphy","Broderick Crawford","Bronson Pinchot","Brooks Wheelan","Bruce Babbitt","Bruce Cockburn","Bruce Dern","Bruce Hornsby","Bruce Hornsby & The Range","Bruce McCall","Bruce McCulloch","Bruce Springsteen","Bruce Springsteen & The E Street Band","Bruce Weitz","Bruce Willis","Bruno Mars","Bryan Adams","Bryan Cranston","Bryan Ferry","Bryan Tucker","Bubba Sparxxx","Buck Henry","Buddy Freed","Buddy Rogers","Buddy Williams","Burt Reynolds","Bush","Busta Rhymes","Buster Holmes","Buster Poindexter","C+C Music Factory","Calista Flockhart","Calvert DeForest","Cameron Diaz","Candice Bergen","Captain Beefheart & The Magic Band","Carl Weathers","Carly Rae Jepsen","Carly Simon","Carmelo Anthony","Carol Burnett","Carol Leifer","Caroll O'Connor","Carolyn Bayer","Carolyn Kepcher","Carrie Brownstein","Carrie Fisher","Carrie Underwood","Case","Casey Affleck","Casey Wilson","Catherine Forbes","Catherine O'Hara","Catherine Oxenberg","Catherine Zeta-Jones","Cecily Strong","Cee Lo Green","Chaka Khan","Chance the Rapper","Channing Tatum","Chantal Kreviazuk","Charlene Tilton","Charles Barkley","Charles Grodin","Charles Rocket","Charli XCX","Charlie Day","Charlie Grandy","Charlie Lowe","Charlie Matthau","Charlie Puth","Charlie Sheen","Charlie Watts","Charlie Wilson","Charlize Theron","Charlton Heston","Cheap Trick","Cheb Mami","Cheetah Chrome","Cher","Cheri Oteri","Cheri Oteri's mother","Cheryl Hardwick","Cheryl Tiegs","Chevy Chase","Chicago","Chili Davis","Chipper Jones","Chris Brown","Chris Christie","Chris Colfer","Chris Cornell","Chris Elliott","Chris Evert","Chris Farley","Chris Gaines","Chris Hemsworth","Chris Isaak","Chris Kattan","Chris Kirkpatrick","Chris Martin","Chris Parnell","Chris Pine","Chris Pratt","Chris Rock","Chris Snee","Chris Stapleton","Chris Stein","Chrissie Hynde","Christian Slater","Christina Aguilera","Christina Applegate","Christina Ricci","Christine Baranski","Christine Ebersole","Christine Zander","Christoph Waltz","Christopher Dodd","Christopher Durang","Christopher Guest","Christopher Lee","Christopher Lloyd","Christopher Reeve","Christopher Walken","Chuck Berry","Chuck Scarborough","Chucky","Ciara","Cicely Tyson","Cicely Tyson ","Cindy Caponera","Cindy Crawford","Cindy McCain","Claire Danes","Clara Peller","Clay Aiken","Clem Burke","Cliff Floyd","Cliff Robertson","Clifford Einstein","Clint Smith","Colbie Caillat","Coldplay","Colin Farrell","Colin Firth","Colin Jost","Colin Quinn","Color Me Badd","Common","Conan O'Brien","Connie Crawford","Connie Hawkins","Consequence","Cookie Monster","Coolio","Cora Blige","Corbin Bernsen","Corinne Bailey Rae","Counting Crows","Courteney Cox","Courtney Barnett","Cowboy Junkies","Craig Eastman","Craig Nettles","Crash Test Dummies","Creed","Cuba Gooding Jr.","Cypress Hill","D'Angelo","DMX","Dabney Coleman","Dahaud Elias Shaar","Daisy Ridley","Dakota Johnson","Damon Wayans","Dan Aykroyd","Dan Vitale","Dana Carvey","Dane Cook","Daniel Craig","Daniel J. Travanti","Daniel Radcliffe","Danielle Flora","Danitra Vance","Danny Aiello","Danny Boy","Danny DeVito","Danny Glover","Danny McBride","Darlene Love ","Darrell Hammond","Darryl McDaniels","Daryl Hall","Dave Attell","Dave Chappelle","Dave Foley ","Dave Grohl","Dave Matthews","Dave Matthews Band","Dave Thomas","Dave Wilson","Dave Winfield","David \"Fathead\" Newman","David Alan Grier","David Baas","David Bowie","David Byrne","David Carradine","David Cone","David Cook","David Copperfield","David Diehl","David Duchovny","David Gilmour","David Gray","David Hasselhoff","David Howard","David Hyde Pierce","David Koechner","David Lander","David Lasley","David Lewis","David Lindley","David Mandel","David Paterson","David Ross","David Sanborn","David Schwimmer","David Sheffield","David Spade","David Spade ","David Susskind","David Wells","Daz Dillinger","Dean Edwards","Dean Winters","Death Cab For Cutie","Deb Blair","Debbie Harry","Debbie Matenopoulos","Debbie Phelps","Deborah Harry","Debra Winger","Deee-Lite","Deion Sanders","Delbert McClinton","Delta Burke","Demi Lovato","Demi Moore","Deniece Williams","Dennis Haysbert","Dennis Hopper","Dennis McNicholas","Dennis Miller","Dennis Quaid","Dennis Rodman","Denny Dillon","Derek Harvie","Derek Jeter","Dermot Mulroney","Des'ree","Desi Arnaz","Desi Arnaz Jr.","Desmond Child & Rouge","Destiny's Child","Devo","Dex Carvey","Dexter Fowler","Diana Nyad","Diana Peckham","Dick Cavett","Dick Ebersol","Dick Smothers","Diddy-Dirty Money","Didi Conn","Dido","Dionne Farris","Disclosure","Dolly Parton","Don Braden","Don Grolnick","Don Henley","Don Johnson","Don King","Don Novello","Don Pardo","Don Rickles","Don Roy King ","Donald Pleasence","Donald Trump","Donna Richards","Donny Harper & The Voices Of Tomorrow","Doris Roberts","Double Trouble","Doug Abeles","Douglas McGrath","Dr. Dre","Dr. John","Dr. Joyce Brothers","Dr. Mehmet Oz","Drake","Dream Academy","Drew Barrymore","Dudley Moore","Duffy","Duran Duran","Dwayne Johnson","Dwight Yoakham","Dyan Cannon","Dylan Dreyer","Dylan McDermott","E.G. Daily","Eagle-Eye Cherry","Ed Asner","Ed Begley Jr.","Ed Helms","Ed Herlihy","Ed Koch","Ed Kranepool","Ed O'Neill","Ed Sheeran","Eddie Money","Eddie Murphy","Eddie Van Halen","Eddy Grant","Edgar Winter","Edie Baskin","Edie Brickell","Edie Brickell & New Bohemians","Edward Furlong","Edward Norton","Edwin Newman","El DeBarge","Eleanor McGovern","Eli Manning","Elijah Wood","Eliot Wald","Elisabeth Moss","Elizabeth Ashley","Elizabeth Banks","Elizabeth Dole","Elizabeth Forbes","Elizabeth Thompson","Elle MacPherson","Ellen Burstyn","Ellen Cleghorne","Ellen DeGeneres","Ellen Page","Ellen Shipley","Ellie Goulding","Elliot Brody","Elliot Easton","Elliott Gould","Elliott Randall","Elliott Smith","Elton John","Elvira","Elvis Costello","Emilio Estevez","Emily Blunt","Emily Prager","Emily Spivey","Eminem","Emma Stone","En Vogue","Eric Clapton","Eric Dickerson","Eric Idle","Eric McCormack","Eric Slovin","Erin Maroney","Eriq La Salle","Ernest Borgnine","Ernie Sabella","Esther Phillips","Eubie Blake","Eugene Record","Eurythmics","Eva Longoria","Evander Holyfield","Eve","Everclear","Everlast","Faith Hill","Faith No More","Fall Out Boy","Fat Joe","Father Guido Sarducci","Fear","Feist","Felicity Jones","Fine Young Cannibals","Finesse Mitchell","Fiona Apple","Fishbone","Fisher Stevens","Flaco Jim\u00e9nez","Flea","Fleet Foxes","Flip Wilson","Florence + The Machine","Florence Henderson","Florence Welch","Foo Fighters","Forest Whitaker","Foster The People","Fran Tarkenton","Francis Ford Coppola","Frank Ocean","Frank Rich","Frank Sebastiano","Frank Zappa","Frankie Goes To Hollywood","Frankie Pace","Franklyn Ajaye","Franne Lee","Franz Ferdinand","Fred Armisen","Fred Newman","Fred Savage","Fred Tackett","Fred Willard","Fred Wolf","Freddie Prinze Jr.","Frederick Koehler","Fun.","Funky 4 + 1 More","Future","G Unit","G. Love","G.E. Smith","Gabourey Sidibe","Gabriel Byrne","Gail Matthius","Garbage","Garrett Morris","Garry Shandling","Garry Trudeau","Garth Brooks","Gary Busey","Gary Coleman","Gary Kroeger","Gary Numan","Gary Tigerman","Gary Weis","Gayle King","Geena Davis","Gena Rositano","Gene Rayburn","Gene Siskel","Georg Wadenius","Georganne Bryant","George Benson","George Carlin","George Clinton & The Parliament Funkadelic","George Clooney","George Coe","George Ezra","George Foreman","George Harrison","George Kennedy","George McGovern","George Pataki","George Plimpton","George Rose","George Ross","George Schultz","George Steinbrenner","George Thorogood & The Destroyers","George Wendt","Georgia Mass Choir","Gerald Williams","Gerard Butler","Gideon Yago","Gil Scott-Heron","Gilbert Gottfried","Gilbert Gottfried ","Gilda Radner","Gin Blossoms","Gina Gershon","Glenn Close","Glenn Humplik","Gnarls Barkley","Good Charlotte","Gordon \"Megabucks\" Worthy","Gordon Lightfoot","Gotye","Graeme Lloyd","Grafton True","Graham Chapman","Grant Show","Gravity","Green Day","Greg Dean","Greg Kihn","Greg Kinnear","Gregg Jefferies","Gregory Daniels","Gregory Hines","Griffin Dunne","Gwen Stefani","Gwyneth Paltrow","HAIM","Hal Holbrook","Hal Linden","Hal Willner","Halle Berry","Hammer","Hank Crawford","Hannibal Buress","Hans Zimmer","Hanson","Harlan Collins","Harold Perrineau","Harry Anderson","Harry Connick Jr.","Harry Dean Stanton","Harry Osborne","Harry Shearer","Harry Styles","Harvey Fierstein","Harvey Keitel","Heather Desaulniers","Heather Graham","Heather Locklear","Heino Ripp","Helen Hunt","Helen Mirren","Herbie Hancock","Hilary Swank","Hillary Clinton","Hole","Horatio Sanz","Hothouse Flowers","Howard Cosell","Howard Hesseman","Howard Johnson","Howard Shore","Howard Stern","Hozier","Huey Lewis & The News","Hugh Fink","Hugh Hefner","Hugh Hefner ","Hugh Jackman","Hugh Laurie","Hulk Hogan","INXS","Ian Maxtone-Graham","Ian McKellen","Ian Roberts","Icona Pop","Iggy Azalea","Imagine Dragons","India.Arie","Isabel Sanford","Ivan Neville","Ivanka Trump","Ivory Steward","J-Kwon","J. Mascis","J.B. Smoove","J.C. Chasez","J.J. Abrams","J.K. Simmons","Ja Rule","Jack Black","Jack Bruce & Friends","Jack Burns","Jack Garner","Jack Handey ","Jack Johnson","Jack McBrayer","Jack McDowell","Jack Nicholson","Jack White","Jackie Chan","Jackson Browne","Jacqueline Carlin","Jaheim","Jaime Pressly","Jake Gyllenhaal","James Anderson","James Blunt","James Brown","James Cameron","James Coburn","James Franco","James Gandolfini","James L. Brooks","James Lipton","James Pickens Jr.","James Taylor","James Van Der Beek","James Woods","Jamie Foxx","Jamie Lee Curtis","Jamie-Lynn Sigler","Jamiroquai","Jan Hooks","Jane Curtin","Jane Greer","Jane Krakowski","Jane Lynch","Jane's Addiction","Janeane Garofalo","Janelle Mon\u00e1e","Janet Jackson","Janet Jones","Janet Reno","Janice Pendarvis","Janis Ian","January Jones","Jared Fogel","Jared Fogel ","Jason Alexander","Jason Alexander ","Jason Bateman","Jason Lee","Jason Mraz","Jason Patric","Jason Priestley","Jason Segel","Jason Sudeikis","Jay Leno","Jay Mohr","Jay Pharoah","Jay Rock","Jay-Z","Jean Dujardin","Jean Fey","Jean Stapleton","Jeff Beck","Jeff Bergman","Jeff Bridges","Jeff Daniels","Jeff Fassero","Jeff Goldblum","Jeff Gordon","Jeff Renaudo","Jeff Richards","Jeff Richmond","Jeff Watts","Jennifer Aniston","Jennifer Garner","Jennifer Holliday","Jennifer Lawrence","Jennifer Lopez","Jennifer Love Hewitt","Jennifer Turner","Jennifer Warnes","Jenny Shapiro","Jenny Slate","Jeremih","Jeremy Irons","Jeremy Piven","Jeremy Renner","Jeremy Sisto","Jerry Hall","Jerry Lawler","Jerry Lewis","Jerry Mathers","Jerry Minor","Jerry Rubin","Jerry Seinfeld","Jesse Dixon Singers","Jesse Eisenberg","Jesse Jackson","Jessi Klein","Jessica Alba","Jessica Biel","Jessica Simpson","Jessie J","Jet","Jewel","Jhen\u00e9 Aiko","Jill Clayburgh","Jim Belushi","Jim Breuer","Jim Carrey","Jim Downey","Jim Fowler","Jim Gaffigan","Jim Henson's Muppets","Jim Keltner","Jim Parsons","Jim Pitt","Jimmie Vaughan","Jimmie Walker","Jimmy Breslin","Jimmy Buffett","Jimmy Cliff","Jimmy Eat World","Jimmy Fallon","Jimmy Page","Jimmy Smits","Jimmy Workman","Joan Allen","Joan Armatrading","Joan Cusack","Joan Hackett","Joan Osborne","Joan Rivers","Joanne Savage","Jodie Foster","Joe","Joe \"King\" Carrasco & The Crowns","Joe C.","Joe Cocker","Joe Dicso","Joe Franken (I)","Joe Franken (II)","Joe Jackson","Joe Mantegna","Joe Montana","Joe Perry","Joe Pesci","Joe Piscopo","Joe Walsh","Joel Godard","Joel Hodgson","Joey Buttafuoco","Joey Fatone","John B. Anderson","John Belushi","John Bowman","John Boyega","John C. Reilly","John Candy","John Carpenter","John Cena","John Cleese","John Cougar","John Goodman","John Henry Kurtz","John Hiatt","John Hurt","John Larroquette","John Lithgow","John Lutz","John Madden","John Malkovich","John Mayer","John McEnroe","John McLaughlin","John Mellencamp","John Milhiser","John Mulaney","John Oates","John Prine","John Sebastian","John Slattery","John Solomon","John Spencer","John Swartzwelder","John Travolta","John Turturro","John Waite","John Waters","John Zonars","Johnny Cash","Johnny Clegg & Savuka","Johnny Damon","Johnny Knoxville","Jon Bon Jovi","Jon Hamm","Jon Heder","Jon Huntsman","Jon Lovitz","Jon Rudnitsky","Jon Stewart","Jonah Hill","Jonas Brothers","Jonathan Dorn","Jonathan Richman","Jonny Moseley","Jorma Taccone","Joseph Gordon-Levitt","Joseph Papp","Josh Brolin","Josh Hartnett","Josh Hutcherson","Joshua Jackson","Joyce Everson","Jr. Walker & The All Stars","Judd Hirsch","Jude Law","Judge Judy Sheindlin","Judge Reinhold","Judy Collins","Julee Cruise","Julia DeVito","Julia Louis-Dreyfus","Julia Stiles","Julia Sweeney","Julian Bond","Julian Casablancas","Julianna Margulies","Julianne Moore","Julie Moynihan","Julie Payne","June Carter Cash","Justin Bieber","Justin Timberlake","Justine Bateman","K.D. Lang & The Reclines","Kala Savage","Kanye West","Karen Black","Karen Roston","Karmin","Kate Bush","Kate Hudson","Kate Jackson","Kate Lear","Kate McKinnon","Kate Pierson","Kate Upton","Kate Winslet","Katell Keineg","Kathleen Turner","Kathrine McKee","Katie Holmes","Katreese Barnes","Katy Perry","Kay Ferrell","Kay Lenz","Ke$ha","Keane","Keith Jarrett","Keith Richards","Keith Sykes","Keith Urban","Kelis","Kelly Clarkson","Kelly Price","Kelly Ripa","Kelly Rowland","Kelsey Grammer","Ken Aymong","Ken Davitian","Ken Stabler","Kenan Thompson","Kendrick Lamar","Kenny G","Kenny Loggins","Kenny Vance","Kent Sublette","Kermit The Frog","Kerri Strug","Kerry Washington","Kevin Bacon","Kevin Brennan","Kevin Hart","Kevin Kelton","Kevin Kline","Kevin Meaney","Kevin Nealon","Kevin Rowland & Dexy's Midnight Runners","Kevin Spacey","Kid Creole & The Coconuts","Kid Rock","Kiefer Sutherland","Kieran Culkin","Kim Alexis","Kim Basinger","Kim Gordon","Kimbra","Kings of Leon","Kinky Friedman","Kip King","Kirk Douglas","Kirk Franklin","Kirsten Dunst","Kirstie Alley","Kool & The Gang","Kool Moe Dee","Korn","Kris Kristofferson","Krist Novoselic","Kristen Stewart","Kristen Wiig","Kumail Nanjiani","Kurt Loder","Kurt Loder ","Kyle Gass","Kyle MacLachlan","Kyle Mooney","Kylie Minogue","L.V.","LL Cool J","Lady Antebellum","Lady Gaga","Ladysmith Black Mambazo","Lamar Alexander","Lana Del Rey","Lance Armstrong","Lance Bass","Lara Flynn Boyle","Laraine Newman","Larry Brown","Larry David","Larry Holmes","Laura Branigan","Laura Campbell","Laura Dern","Laura Kightlinger","Laura Leighton","Lauren Hutton","Laurie Anderson","Laurie Metcalf","Laurie Zaks","Lauryn Hill","Lawrence K. Grossman","LeBron James","Lee Mayman","Lee Tergesen","Leland Sklar","Lena Dunham","Lenny Dykstra","Lenny Kravitz","Lenny Pickett","Leo Allen","Leo Sayer","Leon & Mary Russell","Leon Bridges","Leon Mobley","Leon Pendarvis","Leon Redbone","Leon Russell","Leonard Nimoy","Leonardo DiCaprio","Leroy Cooper","Leslie Jones","Leslie Nielsen","Leslie Pollack","Level 42","Levon Helm","Lew Del Gatto","Lew Morton","Lewis Lapham","Liam Hemsworth","Liam Neeson","Liam Payne","Libby Titus","Liberace","Liev Schreiber","Lil Jon","Lil Wayne","Lili Haydn","Lily Allen","Lily Tomlin","Lin-Manuel Miranda","Linda Hamilton","Linda McCartney","Linda Mooney","Linda Ronstadt","Lindsay Lohan","Lindsey Buckingham","Linkin Park","Lionel Richie","Lisa Kudrow","Lisa Loeb","Lisa Niemi","Little Feat","Live","Living Colour","Liz Cackowski","Liz Welch","Liza Minnelli","Lloyd Bridges","Lone Justice","Lorde","Lorenzo Lamas ","Lori Nasso","Lorne Michaels","Los Lobos","Lou Marini","Lou Reed","Loudon Wainwright III","Louis C.K.","Louis Gossett Jr.","Louis Tomlinson","Louise Lasser","Loverboy","Luciano Pavarotti","Lucie Lancaster","Lucinda Williams","Lucy Lawless","Lucy Liu","Ludacris","Lukasz Gottwald","Luke Hemsworth","Luke Perry","Luke Wilson","Luscious Jackson","Luther Vandross","Lynn Swann","MGMT","Macaulay Culkin","Macklemore","Macy Gray","Madeline Kahn","Madness","Madonna","Magoo","Malcolm McDowell","Malcolm-Jamal Warner","Manolo Gonzalez","Manute Bol","Marc Anthony","Marc Shaiman","Marc Weiner","Marci Klein","Marcus Belgrave","Marcus Miller","Marcus Roberts","Maren Morris","Margaret Kuhn","Margo Price","Margot Kidder","Margot Robbie","Maria McKee","Mariah Carey","Marianne Faithfull","Mariel Hemingway","Marika Sawyer","Marilu Henner","Marilyn Suzanne Miller","Mario Batali","Marisa Tomei","Mark Elliot ","Mark Grudzielanek","Mark Hamill","Mark Hampton","Mark Harmon","Mark King","Mark Knopfler","Mark McKinney","Mark O'Donnell","Mark Ronson","Mark Sanchez","Mark Wahlberg","Mark Wohlers","Mark Zuckerberg","Maroon 5","Marshall Efron","Martha Reeves","Martin Freeman","Martin Lawrence","Martin Scorsese","Martin Sheen","Martin Short","Marty Cordova","Marv Albert","Marv Albert ","Marv Throneberry","Marvelous Marvin Hagler","Marvin Goldhar","Mary Beth Hurt","Mary Gross","Mary J. Blige","Mary Jane Green","Mary Kay Place","Mary Lynn Rajskub","Mary Palin","Mary Stuart Masterson","Mary Tyler Moore","Mary-Kate Olsen","Matt Damon","Matt Dillon","Matt Lauer","Matt Neuman","Matt Piedmont","Matt Walsh","Matthew Broderick","Matthew Fox","Matthew Laurance","Matthew McConaughey","Matthew Modine","Matthew Perry","Maureen Stapleton","Maurice Starr","Mauricio Smith","Maury Povich","Max Pross","Max Weinberg","Maya Rudolph","Meat Loaf","Megan Fox","Megan Mullally","Mel Gibson","Melanie Griffith","Melanie Hutsell","Melissa McCarthy","Melissa Villase\u00f1or","Melle Mel","Memphis Bleek","Men At Work","Mena Suvari","Merv Griffin","Metallica","Michael \"Spaceman\" Jonzun","Michael Angarano","Michael Bloomberg","Michael Bolton","Michael Bubl\u00e9","Michael Buffer","Michael Cera","Michael Che","Michael Daves","Michael Davis","Michael Douglas","Michael J. Fox","Michael Jordan","Michael Keaton","Michael Lohan","Michael McDonald","Michael McKean","Michael Nesmith","Michael O'Donoghue","Michael Palin","Michael Penn","Michael Phelps","Michael Sarrazin","Michael Schur","Michael Shoemaker","Michael Stipe","Michaela Watkins","Michelle Williams","Mick Fleetwood's Zoo","Mick Foley","Mick Jagger","Mickey Madden","Midnight Oil","Miguel","Mike Huckabee","Mike Judge","Mike Judge ","Mike Myers","Mike O'Brien","Mike Sweeney","Mike The Dog","Mike Tyson","Mikey Day","Milan Melvin","Miles Davis","Miley Cyrus","Milton Berle","Mindy Kaling","Mink De Ville","Miranda Richardson","Miskel Spillman","Missy \"Misdemeanor\" Elliott","Missy Elliott","Mitchell Kriegman","Mitchell Laurance","Mo Vaughn","Moby","Modest Mouse","Moira Forbes","Molly Ringwald ","Molly Shannon","Molly Sims","Monica Lewinsky","Monk Boudreaux","Morgan Fairchild","Morgan Freeman","Morrissey","Morton Downey Jr.","Morwenna Banks","Mr Hudson","Mr. Mister","Mr. T","Ms. Dynamite","Muggsy Bogues","Mumford & Sons","Muse","Muse Watson","Musical Youth","My Chemical Romance","My Morning Jacket","Mystikal","M\u00d8","N.E.R.D.","Nancy Kerrigan","Nancy Walker","Nancy Walls","Naomi Campbell","Nasim Pedrad","Natalie Imbruglia","Natalie Merchant","Natalie Morales","Natalie Portman","Natasha Henstridge","Nate Dogg","Nate Herman","Nathan Lane","Ne-Yo","Neil Diamond","Neil Innes","Neil Levy","Neil Patrick Harris","Neil Sedaka","Neil Young","Nell Campbell","Nelly","Nelly Furtado","Nelson Briles","Nelson Lyon","Neve Campbell","New Edition","Nia Vardalos","Niall Horan","Nicholas Lea","Nick Jonas","Nick Lachey","Nick Offerman","Nicki Minaj","Nicolas Cage","Nicole Kidman","Nikolai Fraiture","Nikolaj Coster-Waldau","Nil Nichols","Nirvana","No Doubt","Noah Wyle","Nomar Garciaparra","Noname","Nora Dunn","Norah Jones","Norm Hiscock","Norm MacDonald","Norman Lear","Norman Reedus","No\u00ebl Wells","O.J. Simpson","Oasis","Of Monsters And Men","Oliver Stone","Olivia","Olivia Harrison","Olivia Manning","Olivia Newton-John","Olivia Wilde","Olodum","One Direction","Oprah Winfrey","Ornette Coleman","Outkast","Owen Wilson","P.O.D.","Pamela Lee","Pamela Stephenson","Pamela Sue Martin","Panic At The Disco","Paris Hilton","Passion Pit","Pat Smear","Patrick Ferrell","Patrick Stewart","Patrick Swayze","Patrick Weathers","Patti Forte","Patti LuPone","Patti Smith","Patti Smith Group","Paul Brittain","Paul Butterfield","Paul Giamatti","Paul McCartney","Paul Reiser","Paul Rudd","Paul Shaffer","Paul Simon","Paul Westerberg","Paul Young","Paula Abdul","Paula Cole","Paula Kahn","Paula Pell","Paula Poundstone","Paula Prentiss","Paulina Porizkova","Pearl Jam","Pedro Borb\u00f3n Jr.","Pee-Wee Herman","Penn & Teller","Penny Marshall","Penny Strong","Percy Sledge","Pete Davidson","Pete Fatovich","Peter Aykroyd","Peter Boyle","Peter Cook","Peter Dinklage","Peter Gabriel","Peter Sarsgaard","Peter Tosh","Peter Wolf","Peyton Manning","Pharrell Williams","Phil Gordon ","Phil Hartman","Phil Hyms","Philip Glass","Phillip Guilbeau","Phish","Phoebe Franken","Phoebe Snow","Phoenix","Pierce Brosnan","Pink","Portishead","Power Station","President George Bush","President Gerald Ford","Prime Time","Prince","Princess Elizabeth of Yugoslavia","Proof","Psy","Public Enemy","Puff Daddy","Pusha T","Queen","Queen Ida","Queen Latifah","Queens of the Stone Age","Quentin Tarantino","Quincy D III","Quincy Jones","R. Kelly","R.E.M.","Rachel Dratch","Radiohead","Rafael Fuchs","Rage Against The Machine","Rainn Wilson","Ralph Nader","Ramona Farrow","Rancid","Randy Newman","Randy Quaid","Randy Travis","Raquel Welch","Rashida Jones","Ray Charles","Ray Dalton","Ray LaMontagne","Ray Liotta","Ray Romano","Ray Sharkey","Rayvon","Razor Ruddock","Red Hot Chili Peppers","Reese Witherspoon","Regina Spektor","Reginald VelJohnson","Regis Philbin","Rene Auberjonois","Renee Zellweger","Rex Reed","Rex Smith","Rhea Perlman","Ric Ocasek","Rich Francese","Rich Hall","Richard Baskin","Richard Belzer","Richard Benjamin","Richard Crenna","Richard Dean Anderson","Richard Dreyfuss","Richard Green","Richard Jewell","Richard Kneip","Richard Pryor","Richard Schiff","Richard Simmons","Richie Sambora","Rick Danko","Rick James","Rick Ludwin","Rick Moranis","Rick Nelson","Rick Overton","Rick Rubin","Rickie Lee Jones","Ricky Gervais","Ricky Jay","Ricky Martin","Rihanna","Rikrok","Ringo Starr","Rip Taylor","Rita Coolidge","Rita Ora","Rob Klein","Rob Lowe","Rob Morrow","Rob Reiner","Rob Riggle","Rob Riley","Rob Schneider","Robbie Robertson","Robert Blake","Robert Carlock","Robert Conrad","Robert Culp","Robert DeNiro","Robert Downey Jr.","Robert Duvall","Robert Fripp","Robert Guillaume","Robert Hays","Robert Hegyes","Robert Klein","Robert Mitchum","Robert Plant & The Honeydrippers","Robert Smigel","Robert Urich","Robert Wagner","Roberta Forbes","Robin Duke","Robin Williams","Robin Wright","Robyn","Rod Stewart","Rodney Dangerfield","Roger Clemens","Roger Ebert","Roger Troutman","Rollins Band","Roma Downey","Ron Darling","Ron Howard","Ron Luciano","Ron Mael","Ron Nessen","Ron Reagan","Ron Wood","Ronda Rousey","Rondell White","Ronnie Cuber","Rosanna Arquette","Rosanne Cash","Rosario Dawson","Roseanne","Roseanne Arnold","Roseanne Barr","Rosie O'Donnell","Rosie Perez","Rosie Schuster","Roslyn Kind","Rowdy Roddy Piper","Roy Orbison","Roy Scheider","RuPaul","Ruby Amanfu","Rudy Giuliani","Run DMC","Russ Davis","Russell Brand","Russell Crowe","Ruth Gordon","Ry Cooder","Ryan Adams","Ryan Gosling","Ryan Lewis","Ryan Phillippe","Ryan Reynolds","Ryan Shiraki","R\u00e9gine Chassagne","Sabina Beekman","Sabina Forbes","Sacha Baron Cohen","Sade","Sally Field","Sally Kellerman","Salma Hayek","Salt-N-Pepa","Sam & Dave","Sam Kinison","Sam Smith","Sam Waterston","Samuel L. Jackson","Sandra Crouch","Santana","Sara Gilbert","Sarah Bennett","Sarah Jessica Parker","Sarah McLachlan","Sarah Michelle Gellar","Sarah Paley","Sarah Palin","Sarah Silverman","Sasheer Zamata","Scarlett Johansson","Scissor Sisters","Scott Podsednik","Scott Rolen","Scott Wainio","Scott Wolf","Seal","Sean Combs","Sean Hayes","Sean Paul","Sean Penn","Seann William Scott","Seka","Selena Gomez","Sen. Charles Schumer","Sen. Daniel P. Moynihan","Sen. John McCain","Sen. Paul Simon","Seth Green","Seth MacFarlane","Seth Meyers","Seth Rogen","Shaggy","Shakira","Shannen Doherty","Shaquille O'Neal","Sharon Jones","Sharon Stone","Shaun O'Hara","Shawn Greenson","Shawn Mendes","Sheila E.","Shelley Duvall","Shelley Pryor","Shelly Gossman","Sherman Helmsley","Sheryl Crow","Shia LaBeouf","Sia","Sid Caesar","Siedah Garrett","Sigourney Weaver","Silverchair","Silvertone","Simon Cowell","Simon Rich","Simple Minds","Simply Red","Sinbad","Sinead O'Connor","Siobhan Fallon","Sisqo","Sissy Spacek","Skid Row","Skip Ward","Skylar Grey","Sleigh Bells","Snoop Dogg","Snoop Doggy Dogg","Snow Patrol","Sofia Vergara","Solange","Soozie Tyrell","Soul Asylum","Soundgarden","Soupy Sales","Spalding Gray","Sparks","Spice Girls","Spike Feresten","Spike Lee","Spin Doctors","Spinal Tap","Spoon","Squeeze","St. Vincent","Stacey Foster","Stacy Keach","Stanley Clarke Trio","Stephanie Seymour","Stephen Baldwin","Stephen Bishop","Stephen Colbert","Stephen Rea","Steve Buscemi","Steve Carell","Steve Forbes","Steve Guttenberg","Steve Henderson","Steve Higgins","Steve Jones","Steve Jordan","Steve Koren","Steve Landesberg","Steve Lookner","Steve Martin","Steve Turre","Steven Cragg","Steven Keats","Steven Seagal","Steven Spielberg","Steven Tyler","Steven Wright","Stevie Nicks","Stevie Ray Vaughan","Stevie Wonder","Sting","Stone City Band","Stone Temple Pilots","Stray Cats","Strother Martin","Stuff","Sturgill Simpson","Sum41","Sun Ra","Susan Dey","Susan Lucci","Susan Saint James","Susan Sarandon","Suzanne Pleshette","Suzanne Vega","Swizz Beatz","Sy Sperling","Sydney Biddle Barrows","Sylvester Stallone","Sylvia Plachy","System of a Down","T-Bone Wolk","T-Pain","T. Sean Shannon","T.I.","TLC","TV on the Radio","Taj Mahal","Take 6","Takeru Kobayashi","Talking Heads","Tamar","Taraji P. Henson","Taran Killam","Taylor Hawkins","Taylor Lautner","Taylor Mead","Taylor Swift","Technotronic","Ted Danson","Ted Knight","Teenage Fanclub","Tenacious D","Teri Garr","Teri Hatcher","Terrance Trent D'Arby","Terry Sweeney","Terry Turner","Tevin Campbell","Thalmus Rasulala","The 1975","The Allman Brothers Band","The Amazing Rhythm Aces","The B-52's","The Band","The Bangles","The Banshees of Blue","The Black Crowes","The Black Keys","The Bravados","The Bus Boys","The Cars","The Charlie Daniels Band","The Chieftans","The Cholos","The Clash","The Commodores","The Corrs","The Cranberries","The Cult","The Cure","The Dallas Cowboys Cheerleaders","The Dirt Band","The Dixie Chicks","The Donnas","The Doobie Brothers","The Fixx","The Flaming Lips","The Gipsy Kings","The Go-Go's","The Goners","The Grateful Dead","The J. Geils Band","The Killers","The Kinks","The Lockers","The Lumineers","The Mariachi Vargas de Tecalitl\u00e1n","The McGarrigle Sisters","The Meters","The Mighty Mighty Bosstones","The Motels","The National","The Nelsons","The Neville Brothers","The New Joe Jackson Band","The New York City Children's Chorus","The Notting Hillbillies","The Original Sloth Band","The Persuasions","The Pogues","The Preservation Hall Jazz Band","The Pretenders","The Pull","The Raelettes","The Replacements","The Robert Cray Band","The Roches","The Rock","The Rockettes","The Rolling Stones","The Roots","The Section","The Shapiro Sisters","The Shins","The Singing Idlers","The Smashing Pumpkins","The Smithereens","The Spanic Boys","The Specials","The Spinners","The Statler Brothers","The Strokes","The Stylistics","The Sugarcubes","The Thompson Twins","The Time","The Ting Tings","The Tragically Hip","The Uptown Horns","The Voices Of Unity","The Wallflowers","The Weeknd","The White Stripes","The Yale Whiffenpoofs","The cast of \"The Pirates of Penzance\"","The xx","The-Dream","Them Crooked Vultures","Third Eye Blind","Thomas Dolby","Thommy Price","Tim Curry","Tim Herlihy","Tim Kazurinsky","Tim McGraw","Tim Meadows","Tim Robbins","Tim Robinson","Timbaland","Timbuk 3","Timothy Busfield","Timothy Hutton","Tin Machine","Tina Fey","Tina Turner","Tino Martinez","Tipper Gore","Tobey Maguire","Todd Hundley","Todd Rundgren","Todd Zeile","Tom Arnold","Tom Brady","Tom Carvey","Tom Davis","Tom Gammill","Tom Gianas","Tom Glavine","Tom Green","Tom Hanks","Tom Kenny","Tom Malone","Tom Petty","Tom Petty & The Heartbreakers","Tom Schiller","Tom Scott","Tom Seaver","Tom Smothers","Tom Waits","Tommy Larkins","Tommy Lee","Toni Basil","Toni Basil ","Tony Bennett","Tony Danza","Tony Dow","Tony Hale","Tony Rosato","Tony! Toni! Ton\u00e9!","Toots Thielemans","Toots and the Maytals","Topher Grace","Tori Amos","Tove Lo","Tracey Ullman","Tracy Chapman","Tracy Morgan","Travie McCoy","Trey Anastasio","Triple H","Trudie Styler","Tupac Shakur","Twenty One Pilots","U2","UB40","Usain Bolt","Usher","Uzo Aduba","Val Kilmer","Valerie Bertinelli","Valri Bromfield","Vampire Weekend","Van Morrison","Vanessa Bayer","Vanessa Williams","Vanilla Ice","Veruca Salt","Victoria Jackson","Vince McMahon","Vince Vaughn","Vincent D'Onofrio","Von Miller","Wale","Wally Feresten","Walter Matthau","Walter Payton","Walter Williams","Wanz","Warren Hutcherson","Waylon Jennings","Wayne Gretzky","Wayne Wonder","Weezer","Wendell Craig","Wendy Melvoin","Whitney Houston","Whoopi Goldberg","Whoopi Goldberg ","Wilco","Will Ferrell","Will Forte","Will Lee","William Burroughs","William Butler","William Duff-Griffin","William Hurt","William Shatner","Willie Day","Willie Nelson","Win Butler","Winona Ryder","Wintley Phipps","Wiz Khalifa","Woody Harrelson","World Party","Wynton Marsalis","Yeah Yeah Yeahs","Yogi Berra","Young Jeezy","Young Thug","Yvonne Hudson","Zac Brown Band","Zac Efron","Zach Braff","Zach Galifianakis","Zachary Quinto","Zayn Malik","Zooey Deschanel","Zwan"],"cameo":[0,0,1,1,0,1,0,0,1,1,0,0,0,2,0,1,0,1,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,0,1,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,1,0,3,10,0,4,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,3,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,2,0,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,2,0,1,0,0,3,0,0,0,0,1,1,1,0,1,3,0,0,0,1,0,2,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,4,2,0,1,0,0,1,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,2,2,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,2,0,2,2,1,0,1,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,7,1,1,0,0,0,1,0,0,0,0,1,1,1,0,1,0,0,2,1,0,0,1,1,2,1,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,2,0,0,0,1,1,1,0,1,0,0,11,0,1,0,0,1,1,1,0,0,1,0,0,0,6,0,0,1,1,0,5,1,0,3,0,1,0,0,2,1,0,0,0,0,0,0,0,1,2,0,0,1,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,0,1,0,1,0,5,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,3,0,0,1,0,0,5,1,1,0,0,0,2,0,1,1,0,0,0,1,1,0,1,3,0,5,2,0,1,1,4,0,0,3,0,1,2,2,0,0,0,5,0,1,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,1,1,0,0,0,2,8,0,2,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,2,0,1,0,0,0,1,1,2,1,1,1,0,0,2,0,0,1,1,1,1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,2,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,3,0,0,2,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0,0,2,0,0,1,2,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,0,0,2,0,0,1,0,2,1,0,0,1,0,0,1,0,0,0,1,2,0,0,1,0,0,0,5,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,2,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,1,0,1,0,0,0,0,0,2,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,1,2,1,1,0,0,0,0,1,1,0,0,0,0,0,2,4,1,0,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,2,2,0,1,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,3,0,0,0,1,1,0,0,0,0,6,0,0,2,0,0,0,0,0,0,1,0,1,0,2,0,0,1,2,0,0,0,0,0,0,1,0,0,1,0,1,3,0,0,0,1,1,0,2,0,7,0,0,0,0,0,0,1,0,2,4,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,5,0,1,6,0,0,0,0,2,1,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,6,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,1,1,0,1,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,1,1,0,0,1,0,2,1,0,0,0,0,0,1,0,5,1,1,0,4,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,3,1,0,2,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,2,1,1,5,0,0,1,0,0,0,0,1,2,2,0,0,1,0,0,1,2,0,0,0,0,4,1,1,2,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,5,0,5,1,2,0,0,0,0,0,2,0,1,1,0,1,0,0,0,0,1,1,0,0,1,0,0,0,1,1,2,1,1,0,0,0,0,0,3,0,4,1,0,0,2,0,2,1,0,1,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,1,12,0,0,0,0,1,0,0,0,0,3,0,0,1,0,2,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,1,4,1,0,0,0,0,0,0,0,0,4,2,1,0,0,1,0,0,4,0,1,0,1,0,4,0,2,0,1,0,0,5,0,0,0,0,0,0,0,1,0,3,0,1,2,0,1,0,1,0,1,0,2,0,2,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,2,1,0,2,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,1,0,3,0,4,3,5,0,0,2,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,1,0,0,0,0,0,0,0,1,0,6,0,1,0,0,3,1,0,0,1,0,0,1,0,1,0,0,0,0,1,2,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,5,0,0,1,1,1,0,1,1,0,1,1,0,0,0,0,0,2,0,2,0,1,0,0,1,1,0,0,1,0,0,0,0,0,3,0,0,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,2,0,2,1,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,2,4,1,0,0,1,3,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,6,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,2,1,0,0,0,0,1,6,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,2,2,1,1,1,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,5,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,2,0,0,1,2,0,0,0,0,1,0,0,2,0,1,1,0,13,1,1,1,0,1,0,1,1,0,1,1,0,0,0,1,9,0,0,0,0,0,2,1,0,0,1,1,0,0,1,1,1,1,0,0,2,0,0,0,1,0,0,9,1,3,3,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,2,0,0,3,2,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,2,1,0,0,0,0,0,1,0,1,0],"cast":[0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,237,0,0,0,290,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,36,0,0,0,0,0,0,663,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,355,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,393,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,152,0,0,0,0,0,0,0,54,0,317,0,0,0,371,0,0,600,0,0,97,0,0,0,0,0,0,0,0,0,74,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,401,8,433,0,0,0,0,0,42,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,62,0,360,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,438,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,570,0,85,292,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,151,0,151,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,40,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,471,0,0,0,0,0,115,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,119,0,55,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,323,60,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,178,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,15,0,0,0,0,84,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,37,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,216,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,92,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,486,0,58,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0],"crew":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,4,28,9,0,0,6,0,0,0,0,0,0,9,0,0,91,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,15,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,65,0,0,0,0,0,0,15,0,0,0,13,0,0,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,13,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,172,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,12,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,73,73,0,0,0,12,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,7,0,0,0,0,10,0,6,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,33,0,0,0,0,0,55,2,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,25,0,0,0,0,0,18,155,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,11,0,6,0,0,0,0,0,0,0,0,0,0,2,0,30,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,3,0,0,0,0,0,0,0,0,62,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,84,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,490,0,23,11,0,2,0,33,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,10,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,28,0,12,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"filmed":[0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,0,0,0,0,0,1,1,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,1,0,4,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,2,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3,3,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,13,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0],"guest":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"host":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6,0,0,4,0,0,0,0,0,0,108,0,0,0,4,0,0,0,0,0,16,0,14,8,0,0,5,0,5,0,5,0,0,0,0,0,0,0,0,9,9,0,5,0,0,7,0,0,14,8,0,0,19,0,0,7,0,0,5,0,8,0,9,0,0,0,0,8,0,0,6,0,0,0,0,0,0,9,28,0,0,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,5,0,0,6,0,0,0,0,34,0,0,15,8,0,3,0,9,0,0,0,0,0,0,0,0,7,12,0,0,0,0,0,0,0,0,0,0,6,0,0,33,0,7,9,5,0,0,0,5,5,0,0,0,5,0,0,0,0,0,5,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,14,0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,14,0,0,0,0,0,7,0,0,0,6,0,16,5,3,5,0,0,0,10,0,0,0,0,0,0,0,11,9,0,6,0,0,0,56,0,0,0,7,0,0,0,0,0,4,0,30,33,0,4,0,0,0,0,0,0,0,0,0,6,0,0,8,0,0,15,3,7,0,0,0,0,5,0,8,25,8,0,0,8,0,0,0,0,9,1,0,14,12,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,6,7,0,15,0,0,0,0,0,0,8,11,0,0,0,0,15,8,11,6,5,0,0,7,0,0,0,5,0,4,40,0,0,0,0,7,1,0,0,0,6,0,0,0,0,0,0,0,0,0,8,6,0,0,0,0,6,0,0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,5,0,0,0,7,0,0,8,7,7,0,8,11,6,5,10,0,0,7,0,40,0,0,0,0,0,0,0,9,0,0,0,0,4,0,0,0,10,0,0,0,6,0,0,0,0,14,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,17,0,0,0,0,0,0,0,0,0,0,0,9,4,0,8,0,6,0,6,0,0,12,0,0,7,0,0,0,8,0,0,7,0,0,0,0,0,0,0,0,10,0,9,0,0,0,0,0,8,0,0,0,0,0,0,0,6,0,4,16,0,0,0,0,0,0,0,0,0,0,18,0,35,12,0,0,12,0,9,0,7,0,0,6,5,6,0,6,0,6,0,0,6,0,0,0,0,0,0,0,8,14,0,0,9,4,0,0,4,8,0,0,0,7,5,0,6,7,0,0,0,0,36,0,0,9,0,0,6,8,0,0,0,22,0,0,0,27,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,8,8,0,0,0,5,0,0,0,0,0,6,0,6,0,6,0,5,0,0,0,0,0,0,0,9,5,0,0,0,5,0,19,6,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,6,0,0,7,0,5,8,0,0,0,0,0,8,0,13,0,0,8,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,6,0,21,0,0,0,0,8,7,0,0,0,0,0,0,5,0,5,0,0,0,0,6,0,6,6,0,14,6,0,6,0,0,0,0,7,18,0,0,0,0,0,0,7,1,7,13,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,23,0,6,0,0,0,0,0,0,0,7,0,0,0,9,9,0,0,0,0,5,25,0,0,0,0,0,9,5,14,13,0,0,0,0,0,0,9,0,0,0,8,0,0,0,0,6,0,0,7,0,9,8,0,7,7,7,0,8,0,0,0,0,0,0,0,0,0,10,12,0,15,6,0,0,0,0,14,8,0,9,20,5,0,0,0,0,0,7,7,7,0,8,0,7,0,0,0,14,0,8,8,0,0,0,7,0,0,0,0,12,0,0,22,0,0,0,0,0,8,0,0,0,4,0,0,0,13,0,7,0,6,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,7,5,0,7,0,0,0,0,0,0,0,0,0,0,10,8,0,9,0,0,79,0,0,0,14,17,0,5,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,0,0,0,7,0,0,8,9,21,7,0,2,0,7,27,0,0,0,7,0,15,0,17,5,9,7,0,0,0,10,0,9,0,0,0,22,8,0,7,0,6,6,0,0,0,11,31,6,0,0,0,11,0,0,0,5,8,0,0,0,0,3,0,12,0,7,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,16,0,0,0,0,0,0,0,0,0,0,0,8,7,0,17,0,11,0,0,0,10,0,0,5,0,0,5,0,0,0,0,0,7,0,7,11,0,0,0,11,0,6,11,0,0,0,0,5,0,0,0,0,0,10,0,0,0,7,0,6,0,0,7,0,0,0,0,0,8,5,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,26,8,7,0,0,0,29,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,4,0,5,0,0,0,0,6,5,12,0,0,5,6,0,0,0,0,8,0,0,20,0,4,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,4,0,0,0,0,6,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,7,14,0,0,0,0,0,0,0,0,0,0,7,0,1,5,6,9,7,6,0,0,0,0,13,7,0,15,6,4,6,0,0,0,0,0,4,0,9,8,7,5,0,26,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,5,7,18,0,0,5,0,0,16,0,9,2,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,0,0,24,6,0,0,7,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,6,0,0,0,6,0,0,0,0,8,0,0,0,0,0,0,0,7,0,9,0,0,0,5,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,9,0,0,0,0,0,0,6,0,0,0,7,0,0,0,0,8,0,3,0,8,0,0,0,8,8,0,0,0,0,0,0,0,7,0,8,24,8,28,0,0,0,0,0,0,0,4,0,0,0,7,0,0,0,0,0,0,0,5,6,9,0,9,0,0,9,0,0,6,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,8,0,7,0,0,0,0,0,0,9,6,0,0,0,0,0,6,0,12,0,0,7,11,8,0,0,0,14,0,0,0,0,5,0,0,5,0,0,0,0,0,7,0,0,6,0,0,0,12,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0,6,0,0,0,0,15,9,4,0,0,0,0,3,0,2,4,24,7,0,0,4,5,0,15,6,0,0,5,7,0,0,18,0,0,0,6,0,0,0,0,5,0,6,0,0,8,4,1,9,0,0,5,0,7,6,6,8,10,0,0,0,0,0,4,0,0,10,0,0,7,5,5,0,0,8,0,8,6,0,0,0,0,0,0,6,5,10,0,0,6,0,0,9,0,0,7,0,6,0,21,0,0,9,0,25,0,0,0,0,7,0,0,7,0,7,7,0,0,0,0,5,0,0,8,0,28,0,0,7,0,0,9,0,0,0,0,8,0,0,0,0,17,0,6,0,16,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,13,7,6,0,0,0,0,0,0,0,101,0,0,0,5,0,0,0,0,0,10,18,0,0,0,6,0,0,0,0,7,7,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,7,0,9,0,6,5,0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,9,0,6,0,0,0,0,0,0,34,0,0,0,6,0,0,0,19,9,0,0,0,0,0,8,42,0,0,0,0,0,0,0,9,0,0,0,0,0,0,15,0,0,0,0,0,0,6,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,15,0,0,0,0,6,4,0,0,0,0,6,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,7,0,11,0,7,0,0,24,0,0,0,0,0,0,0,0,8,8,24,0,0,7,0],"music":[3,4,1,0,1,0,4,2,0,0,2,2,2,0,2,0,0,0,2,0,0,1,3,0,0,4,0,11,0,0,0,0,0,1,0,0,0,0,2,6,0,0,0,4,0,0,2,0,0,4,0,0,0,2,0,0,0,7,1,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,0,2,6,3,0,2,0,0,0,0,2,5,0,0,0,0,6,0,0,3,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4,0,16,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,6,0,2,2,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2,9,0,2,2,2,3,6,0,0,3,2,2,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,8,0,9,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,3,0,0,0,0,0,1,0,0,2,0,0,3,4,0,0,7,2,0,2,0,1,0,0,0,0,0,4,2,0,2,2,0,0,0,0,2,0,2,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,2,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,1,0,3,0,1,2,0,0,0,0,0,2,0,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,2,0,0,0,0,0,0,3,0,0,2,2,0,2,2,0,0,2,2,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,2,8,0,0,0,0,0,0,7,2,0,0,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,2,4,2,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,2,0,0,4,1,0,0,2,2,0,2,0,0,0,1,1,0,0,0,0,0,0,0,4,2,0,0,2,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,2,0,6,0,0,0,0,11,0,3,5,0,0,0,0,0,0,0,0,2,1,2,3,0,0,5,1,1,3,2,2,0,0,2,2,0,2,0,2,2,0,0,0,2,0,6,0,2,11,0,2,0,0,2,0,0,4,2,0,0,0,2,0,0,0,0,0,0,0,0,2,1,4,2,0,0,0,0,0,2,0,0,0,2,0,0,0,2,1,0,0,0,0,0,0,0,0,3,0,3,0,0,2,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,2,0,0,0,2,0,0,0,2,2,0,3,3,0,0,0,0,1,7,0,2,0,0,0,1,0,6,0,3,0,0,0,0,0,0,0,0,3,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,2,0,2,0,0,0,0,0,2,3,0,0,0,0,0,0,2,0,0,0,0,3,2,2,0,0,0,0,1,0,0,1,0,0,2,0,2,0,0,0,2,0,0,0,2,0,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,2,2,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,2,0,0,0,0,0,2,0,0,1,0,0,0,0,1,0,4,0,0,0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,2,0,0,2,0,0,3,2,1,0,0,0,0,0,0,1,0,0,0,2,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,3,0,2,0,15,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,2,2,2,3,1,2,2,8,0,0,1,0,0,0,0,0,5,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,3,0,0,0,0,0,0,6,1,0,0,0,0,0,2,3,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,9,1,0,2,0,1,0,0,0,0,0,2,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,6,0,0,2,2,2,0,0,8,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,1,0,0,0,4,0,2,0,0,0,2,0,8,0,2,4,3,0,2,0,2,4,2,0,0,0,0,2,0,0,0,0,2,0,2,2,0,0,2,0,1,1,0,2,0,0,5,0,0,0,0,2,4,0,2,0,2,4,0,2,3,0,0,0,0,0,2,0,0,0,0,0,0,2,0,2,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,10,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,4,0,0,2,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,2,0,6,0,2,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,1,2,0,0,0,3,2,0,0,0,0,0,0,0,0,2,0,0,0,2,0,1,0,5,4,0,2,2,2,0,0,2,0,0,0,0,0,1,3,0,0,0,0,0,0,2,0,3,0,0,2,10,0,5,3,0,0,0,2,0,2,0,4,0,0,7,0,0,0,0,0,4,4,0,0,0,0,4,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,1,4,0,2,0,0,0,2,0,2,0,0,0,0,0,0,0,0,2,0,2,0,20,0,0,0,25,2,2,0,1,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,2,0,2,2,0,3,0,0,0,3,0,3,0,6,5,0,5,1,2,0,0,1,4,0,0,0,2,1,0,2,1,0,1,0,3,0,0,7,0,4,0,1,0,0,0,2,10,0,2,0,0,0,0,2,0,0,0,0,0,4,0,2,0,0,0,0,0,2,0,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,6,0,0,3,12,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,0,0,0,0,3,0,0,0,0,2,1,0,2,0,0,0,1,0,0,0,4,0,0,0,2,2,0,2,0,0,2,4,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,3,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,2,2,0,0,0,0,8,0,4,0,2,0,2,2,0,0,1,2,0,4,0,1,0,2,0,0,2,1,6,2,0,2,0,2,2,0,0,2,2,0,0,2,3,2,2,2,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,12,0,2,2,0,1,2,2,1,0,0,0,0,0,2,0,0,0,0,0,2,0,3,0,2,2,2,1,2,0,2,0,0,0,1,0,0,3,2,0,0,2,2,0,0,2,0,0,2,0,2,3,1,4,2,2,0,4,6,0,2,4,2,2,2,2,2,2,2,1,2,0,3,3,2,2,2,0,2,2,2,4,2,6,6,0,2,1,2,1,1,2,2,2,5,2,0,2,0,2,2,1,4,1,0,2,2,2,0,0,0,0,2,0,4,0,6,2,1,2,1,0,6,1,2,2,2,2,2,0,1,3,6,2,0,2,2,0,2,1,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,7,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,1,0,0,1,0,0,1,0,0,0,0,0,0,2,0,2,0,2,0,0,4,0,0,0,0,0,2,2,8,2,0,9,0,0,0,0,6,2,0,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,7,0,0,2,0,0,0,0,1,0,0,0,0,4,1,0,1,3,0,2,2,2,0,0,0,0,2,0,0,0,0,2,0,2],"radius":[0.06458557588805167,0.08611410118406888,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.04305705059203444,1.7007534983853607,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.02152852529601722,4.434876210979548,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.08611410118406888,0.02152852529601722,0.2798708288482239,0.4520990312163617,5.1453175457481155,0.08611410118406888,0.17222820236813777,0.23681377825618943,6.243272335844995,0.02152852529601722,0.08611410118406888,0.6027987082884823,0.193756727664155,0.04305705059203444,0.02152852529601722,0.12917115177610333,4.327233584499462,0.23681377825618943,0.04305705059203444,0.12917115177610333,0.06458557588805167,0.15069967707212056,0.193756727664155,0.08611410118406888,0.08611410118406888,1.9590958019375673,0.04305705059203444,0.12917115177610333,1.7653390742734123,0.08611410118406888,0.10764262648008613,2.583423035522067,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.77502691065662,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.34445640473627553,0.06458557588805167,14.790096878363832,0.193756727664155,9.38643702906351,0.04305705059203444,0.10764262648008613,0.08611410118406888,0.10764262648008613,0.08611410118406888,0.12917115177610333,0.04305705059203444,0.06458557588805167,0.193756727664155,0.04305705059203444,0.32292787944025836,0.02152852529601722,0.3659849300322928,2.9709364908503764,0.193756727664155,10.182992465016147,0.06458557588805167,0.10764262648008613,0.02152852529601722,0.08611410118406888,0.15069967707212056,1.0764262648008611,0.02152852529601722,0.32292787944025836,0.17222820236813777,0.02152852529601722,1.3778256189451021,0.4305705059203445,0.02152852529601722,0.08611410118406888,0.15069967707212056,0.08611410118406888,0.02152852529601722,0.10764262648008613,0.8396124865446717,0.17222820236813777,0.02152852529601722,0.193756727664155,0.21528525296017226,0.02152852529601722,0.04305705059203444,0.12917115177610333,0.23681377825618943,0.06458557588805167,0.04305705059203444,0.23681377825618943,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.10764262648008613,0.02152852529601722,0.193756727664155,0.6243272335844995,0.21528525296017226,0.12917115177610333,0.15069967707212056,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.04305705059203444,0.12917115177610333,0.06458557588805167,0.08611410118406888,0.12917115177610333,0.34445640473627553,6.071044133476857,0.02152852529601722,0.02152852529601722,0.7534983853606028,0.02152852529601722,0.02152852529601722,0.6027987082884823,0.17222820236813777,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.193756727664155,0.04305705059203444,0.02152852529601722,1.2271259418729816,0.02152852529601722,0.47362755651237887,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.15069967707212056,0.25834230355220666,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.08611410118406888,14.983853606027989,0.04305705059203444,0.02152852529601722,8.374596340150699,0.02152852529601722,0.17222820236813777,0.193756727664155,0.10764262648008613,0.10764262648008613,0.02152852529601722,0.02152852529601722,0.10764262648008613,1.55005382131324,0.02152852529601722,0.04305705059203444,0.193756727664155,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.06458557588805167,0.12917115177610333,0.15069967707212056,0.193756727664155,0.06458557588805167,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.02152852529601722,1.3993541442411195,0.04305705059203444,0.04305705059203444,0.06458557588805167,0.04305705059203444,0.04305705059203444,0.3013993541442411,0.32292787944025836,0.02152852529601722,0.17222820236813777,0.15069967707212056,0.2798708288482239,0.04305705059203444,0.02152852529601722,0.06458557588805167,0.08611410118406888,0.04305705059203444,13.821313240043056,0.04305705059203444,0.21528525296017226,0.04305705059203444,0.193756727664155,0.3659849300322928,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,3.013993541442411,0.02152852529601722,0.02152852529601722,0.193756727664155,0.02152852529601722,0.12917115177610333,0.04305705059203444,0.32292787944025836,0.02152852529601722,0.02152852529601722,0.04305705059203444,2.32508073196986,0.23681377825618943,0.21528525296017226,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.4305705059203445,0.10764262648008613,0.06458557588805167,0.10764262648008613,0.861141011840689,0.02152852529601722,0.02152852529601722,0.21528525296017226,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.06458557588805167,0.08611410118406888,0.02152852529601722,0.23681377825618943,0.34445640473627553,0.04305705059203444,0.15069967707212056,0.04305705059203444,0.2798708288482239,0.02152852529601722,1.356297093649085,0.02152852529601722,0.02152852529601722,0.32292787944025836,0.15069967707212056,0.08611410118406888,0.06458557588805167,0.02152852529601722,0.17222820236813777,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.6673842841765338,0.7319698600645856,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.17222820236813777,0.08611410118406888,0.02152852529601722,0.17222820236813777,1.8299246501614639,0.02152852529601722,0.34445640473627553,0.06458557588805167,0.15069967707212056,8.460710441334768,0.08611410118406888,0.04305705059203444,0.15069967707212056,0.10764262648008613,0.02152852529601722,0.17222820236813777,0.5382131324004306,0.17222820236813777,1.7868675995694294,0.04305705059203444,0.193756727664155,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.193756727664155,0.02152852529601722,0.04305705059203444,0.3013993541442411,0.25834230355220666,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.06458557588805167,6.006458557588806,0.02152852529601722,2.1743810548977396,0.02152852529601722,4.542518837459634,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,1.16254036598493,0.12917115177610333,6.996770721205597,0.02152852529601722,0.32292787944025836,0.06458557588805167,8.116254036598493,0.02152852529601722,0.04305705059203444,12.960172228202369,0.02152852529601722,0.17222820236813777,2.432723358449946,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.04305705059203444,0.34445640473627553,0.34445640473627553,0.23681377825618943,0.17222820236813777,0.12917115177610333,1.5931108719052745,0.6458557588805167,0.15069967707212056,0.02152852529601722,0.08611410118406888,1.4639397201291713,0.10764262648008613,0.02152852529601722,0.12917115177610333,0.861141011840689,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.02152852529601722,0.2798708288482239,0.02152852529601722,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.10764262648008613,0.34445640473627553,0.02152852529601722,0.2798708288482239,0.17222820236813777,0.12917115177610333,1.7007534983853607,2.4757804090419806,0.04305705059203444,0.02152852529601722,0.6027987082884823,0.10764262648008613,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.15069967707212056,0.8180839612486545,0.02152852529601722,0.17222820236813777,0.7534983853606028,8.934337997847146,0.17222820236813777,9.515608180839612,0.23681377825618943,0.12917115177610333,0.10764262648008613,0.21528525296017226,0.6243272335844995,0.9041980624327234,0.15069967707212056,0.04305705059203444,0.968783638320775,0.02152852529601722,0.02152852529601722,0.02152852529601722,16.51237890204521,0.02152852529601722,0.06458557588805167,0.193756727664155,0.193756727664155,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.17222820236813777,0.10764262648008613,0.861141011840689,0.02152852529601722,0.10764262648008613,0.23681377825618943,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.3013993541442411,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.15069967707212056,1.5285252960172226,0.06458557588805167,0.15069967707212056,0.10764262648008613,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.25834230355220666,0.10764262648008613,0.04305705059203444,5.317545748116253,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,1.3347685683530677,0.02152852529601722,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.193756727664155,0.08611410118406888,0.04305705059203444,0.17222820236813777,0.08611410118406888,0.12917115177610333,0.04305705059203444,0.17222820236813777,0.04305705059203444,0.02152852529601722,0.25834230355220666,0.4520990312163617,3.6598493003229278,0.15069967707212056,0.06458557588805167,1.3347685683530677,0.02152852529601722,0.17222820236813777,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.10764262648008613,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.23681377825618943,0.10764262648008613,0.193756727664155,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.17222820236813777,0.04305705059203444,0.38751345532831,0.08611410118406888,0.04305705059203444,0.06458557588805167,0.9472551130247577,3.7029063509149625,0.12917115177610333,0.02152852529601722,0.08611410118406888,0.34445640473627553,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.02152852529601722,0.06458557588805167,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.47362755651237887,0.02152852529601722,0.8396124865446717,0.25834230355220666,0.04305705059203444,0.04305705059203444,0.25834230355220666,0.04305705059203444,0.193756727664155,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.10764262648008613,0.15069967707212056,0.02152852529601722,0.17222820236813777,0.02152852529601722,0.12917115177610333,0.08611410118406888,0.04305705059203444,5.597416576964478,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.193756727664155,0.34445640473627553,0.04305705059203444,0.02152852529601722,0.21528525296017226,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.08611410118406888,0.17222820236813777,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.10764262648008613,3.896663078579117,0.12917115177610333,0.15069967707212056,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.7965554359526372,0.34445640473627553,0.02152852529601722,0.23681377825618943,0.04305705059203444,0.12917115177610333,0.12917115177610333,0.17222820236813777,0.12917115177610333,0.193756727664155,0.23681377825618943,0.5382131324004306,0.06458557588805167,0.10764262648008613,0.02152852529601722,0.6458557588805167,0.15069967707212056,0.25834230355220666,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.15069967707212056,0.06458557588805167,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.06458557588805167,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.23681377825618943,0.04305705059203444,0.04305705059203444,0.15069967707212056,0.04305705059203444,2.5403659849300326,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.10764262648008613,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.2798708288482239,0.10764262648008613,0.04305705059203444,0.17222820236813777,0.17222820236813777,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.193756727664155,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.04305705059203444,15.909580193756728,0.02152852529601722,0.12917115177610333,0.04305705059203444,0.2798708288482239,0.7965554359526372,0.10764262648008613,0.193756727664155,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.08611410118406888,0.02152852529601722,1.5285252960172226,0.193756727664155,0.10764262648008613,1.3347685683530677,0.04305705059203444,7.771797631862217,0.10764262648008613,0.02152852529601722,0.4520990312163617,0.12917115177610333,0.02152852529601722,4.3702906350914965,0.04305705059203444,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.15069967707212056,0.21528525296017226,0.02152852529601722,0.04305705059203444,0.3659849300322928,0.02152852529601722,0.06458557588805167,0.21528525296017226,0.06458557588805167,0.12917115177610333,0.3013993541442411,0.04305705059203444,0.15069967707212056,0.08611410118406888,0.10764262648008613,0.17222820236813777,0.02152852529601722,0.06458557588805167,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.04305705059203444,0.3013993541442411,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.02152852529601722,0.04305705059203444,1.054897739504844,0.02152852529601722,9.989235737351992,0.04305705059203444,0.02152852529601722,0.3013993541442411,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.06458557588805167,0.06458557588805167,0.02152852529601722,0.25834230355220666,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.04305705059203444,0.21528525296017226,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.15069967707212056,0.15069967707212056,0.4951560818083961,0.06458557588805167,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.15069967707212056,0.10764262648008613,0.04305705059203444,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.02152852529601722,0.25834230355220666,0.04305705059203444,0.10764262648008613,0.02152852529601722,2.217438105489774,0.04305705059203444,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.12917115177610333,0.12917115177610333,0.193756727664155,0.3013993541442411,0.15069967707212056,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.04305705059203444,9.128094725511302,0.04305705059203444,0.15069967707212056,0.40904198062432723,1.5715823466092573,1.5715823466092573,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.25834230355220666,0.15069967707212056,0.02152852529601722,0.15069967707212056,0.2798708288482239,0.10764262648008613,0.04305705059203444,0.15069967707212056,0.12917115177610333,0.06458557588805167,0.02152852529601722,0.06458557588805167,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.3659849300322928,0.02152852529601722,0.02152852529601722,0.193756727664155,0.04305705059203444,0.4951560818083961,0.04305705059203444,0.12917115177610333,0.02152852529601722,2.648008611410119,0.06458557588805167,0.08611410118406888,0.02152852529601722,0.06458557588805167,0.04305705059203444,0.15069967707212056,0.04305705059203444,0.2798708288482239,0.02152852529601722,0.193756727664155,0.23681377825618943,0.17222820236813777,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.6027987082884823,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.3659849300322928,0.193756727664155,0.10764262648008613,0.3013993541442411,0.3013993541442411,0.02152852529601722,0.02152852529601722,6.67384284176534,9.429494079655544,0.02152852529601722,0.04305705059203444,0.193756727664155,0.02152852529601722,1.2917115177610334,0.04305705059203444,0.21528525296017226,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.04305705059203444,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.02152852529601722,0.193756727664155,0.17222820236813777,0.04305705059203444,0.15069967707212056,0.15069967707212056,0.15069967707212056,12.335844994617869,0.21528525296017226,1.8299246501614639,6.286329386437029,0.02152852529601722,0.193756727664155,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.21528525296017226,0.2798708288482239,0.02152852529601722,0.32292787944025836,0.12917115177610333,0.12917115177610333,2.0882669537136707,0.08611410118406888,0.04305705059203444,0.38751345532831,0.193756727664155,0.04305705059203444,0.21528525296017226,0.47362755651237887,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.02152852529601722,1.248654467168999,0.02152852529601722,0.15069967707212056,0.15069967707212056,0.15069967707212056,0.02152852529601722,0.17222820236813777,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.6889128094725511,0.04305705059203444,0.3659849300322928,0.04305705059203444,0.193756727664155,0.193756727664155,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.25834230355220666,2.3035522066738428,3.2508073196986005,0.4951560818083961,3.2508073196986005,0.02152852529601722,0.02152852529601722,0.4520990312163617,0.02152852529601722,0.17222820236813777,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.10764262648008613,0.04305705059203444,9.321851453175457,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.12917115177610333,0.04305705059203444,1.2271259418729816,0.02152852529601722,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.08611410118406888,1.248654467168999,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.15069967707212056,0.10764262648008613,0.02152852529601722,0.15069967707212056,7.836383207750269,0.02152852529601722,0.15069967707212056,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.02152852529601722,7.255113024757804,0.06458557588805167,0.02152852529601722,0.21528525296017226,0.193756727664155,0.02152852529601722,0.21528525296017226,0.04305705059203444,0.08611410118406888,1.8514531754574812,0.5382131324004306,0.04305705059203444,0.02152852529601722,0.3013993541442411,0.3659849300322928,0.6027987082884823,0.12917115177610333,0.34445640473627553,0.08611410118406888,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.6889128094725511,0.15069967707212056,0.06458557588805167,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.21528525296017226,0.02152852529601722,0.12917115177610333,0.17222820236813777,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.5382131324004306,0.17222820236813777,0.04305705059203444,0.02152852529601722,0.193756727664155,0.23681377825618943,0.6673842841765338,0.15069967707212056,0.02152852529601722,7.922497308934338,1.0333692142088267,0.15069967707212056,0.581270182992465,0.08611410118406888,0.04305705059203444,0.02152852529601722,0.15069967707212056,0.6027987082884823,0.32292787944025836,0.02152852529601722,0.3659849300322928,0.10764262648008613,0.21528525296017226,0.15069967707212056,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.23681377825618943,0.02152852529601722,0.193756727664155,0.02152852529601722,0.02152852529601722,0.02152852529601722,4.26264800861141,0.17222820236813777,4.6071044133476855,0.15069967707212056,0.02152852529601722,0.12917115177610333,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.34445640473627553,0.8826695371367062,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.32292787944025836,0.23681377825618943,0.4520990312163617,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.17222820236813777,0.02152852529601722,7.922497308934338,0.02152852529601722,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.25834230355220666,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.21528525296017226,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.06458557588805167,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.17222820236813777,0.06458557588805167,0.15069967707212056,0.04305705059203444,0.3659849300322928,0.08611410118406888,0.02152852529601722,0.04305705059203444,20.0,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.15069967707212056,0.04305705059203444,0.02152852529601722,0.17222820236813777,0.15069967707212056,0.04305705059203444,0.3659849300322928,0.17222820236813777,0.23681377825618943,0.06458557588805167,13.907427341227125,0.04305705059203444,0.21528525296017226,0.04305705059203444,0.08611410118406888,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.17222820236813777,0.23681377825618943,0.04305705059203444,0.06458557588805167,0.04305705059203444,0.23681377825618943,0.02152852529601722,0.12917115177610333,13.627556512378902,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.10764262648008613,4.65016146393972,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.40904198062432723,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.02152852529601722,0.12917115177610333,8.740581270182993,0.02152852529601722,0.38751345532831,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.861141011840689,0.17222820236813777,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.17222820236813777,0.7104413347685684,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.02152852529601722,0.17222820236813777,1.1840688912809474,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.6673842841765338,0.17222820236813777,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.10764262648008613,2.6910656620021527,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.8396124865446717,0.08611410118406888,0.02152852529601722,0.04305705059203444,0.17222820236813777,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.6027987082884823,0.17222820236813777,0.15069967707212056,0.12917115177610333,0.02152852529601722,0.193756727664155,0.6673842841765338,0.06458557588805167,0.08611410118406888,0.06458557588805167,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.34445640473627553,0.5382131324004306,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.38751345532831,3.33692142088267,0.04305705059203444,1.9806243272335844,0.06458557588805167,0.04305705059203444,0.4951560818083961,0.08611410118406888,0.04305705059203444,0.10764262648008613,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.12917115177610333,0.10764262648008613,0.38751345532831,0.04305705059203444,0.02152852529601722,0.10764262648008613,0.12917115177610333,0.04305705059203444,0.10764262648008613,0.02152852529601722,0.04305705059203444,0.17222820236813777,0.04305705059203444,0.08611410118406888,0.4305705059203445,0.04305705059203444,0.23681377825618943,0.02152852529601722,0.15069967707212056,0.08611410118406888,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.38751345532831,0.10764262648008613,0.23681377825618943,0.10764262648008613,0.15069967707212056,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.10764262648008613,0.10764262648008613,0.04305705059203444,0.17222820236813777,0.06458557588805167,0.10764262648008613,0.04305705059203444,0.02152852529601722,0.6458557588805167,0.02152852529601722,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.04305705059203444,4.047362755651238,0.04305705059203444,0.06458557588805167,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.21528525296017226,0.02152852529601722,0.04305705059203444,0.17222820236813777,0.12917115177610333,0.06458557588805167,0.17222820236813777,1.4208826695371368,0.02152852529601722,0.06458557588805167,0.06458557588805167,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.02152852529601722,5.640473627556513,0.10764262648008613,0.04305705059203444,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.10764262648008613,0.12917115177610333,0.193756727664155,0.193756727664155,0.12917115177610333,0.04305705059203444,0.12917115177610333,0.25834230355220666,0.06458557588805167,0.2798708288482239,0.17222820236813777,0.581270182992465,0.32292787944025836,0.12917115177610333,0.08611410118406888,0.12917115177610333,0.04305705059203444,1.3347685683530677,0.02152852529601722,0.4520990312163617,0.02152852529601722,10.484391819160388,0.10764262648008613,0.193756727664155,0.17222820236813777,0.15069967707212056,0.12917115177610333,2.4757804090419806,0.5597416576964478,0.6673842841765338,0.06458557588805167,0.06458557588805167,0.08611410118406888,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.15069967707212056,0.02152852529601722,0.02152852529601722,1.4854682454251882,0.02152852529601722,0.15069967707212056,0.10764262648008613,0.10764262648008613,0.15069967707212056,0.38751345532831,0.02152852529601722,0.04305705059203444,2.6695371367061353,0.02152852529601722,1.2055974165769645,0.4951560818083961,0.02152852529601722,0.193756727664155,0.06458557588805167,0.06458557588805167,0.32292787944025836,0.02152852529601722,0.77502691065662,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.3659849300322928,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.06458557588805167,7.104413347685683,1.2917115177610334,0.02152852529601722,0.04305705059203444,0.02152852529601722,1.1410118406889127,0.08611410118406888,0.02152852529601722,0.5597416576964478,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.193756727664155,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.8180839612486545,0.02152852529601722,0.06458557588805167,0.04305705059203444,0.02152852529601722,0.02152852529601722,7.44886975242196,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.21528525296017226,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.02152852529601722,0.04305705059203444,0.10764262648008613,0.08611410118406888,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.193756727664155,0.02152852529601722,1.55005382131324,0.02152852529601722,6.523143164693218,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.193756727664155,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.10764262648008613,1.8083961248654468,0.17222820236813777,0.04305705059203444,0.21528525296017226,0.02152852529601722,0.10764262648008613,0.06458557588805167,0.02152852529601722,0.06458557588805167,0.15069967707212056,0.04305705059203444,0.193756727664155,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.10764262648008613,0.02152852529601722,0.193756727664155,0.12917115177610333,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.6673842841765338,0.08611410118406888,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.02152852529601722,5.89881593110872,0.08611410118406888,0.12917115177610333,3.9181916038751345,0.15069967707212056,0.02152852529601722,1.054897739504844,0.193756727664155,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.15069967707212056,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.04305705059203444,0.17222820236813777,0.861141011840689,0.06458557588805167,0.04305705059203444,0.193756727664155,0.04305705059203444,0.02152852529601722,0.47362755651237887,0.17222820236813777,0.17222820236813777,0.32292787944025836,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,1.8083961248654468,0.06458557588805167,0.15069967707212056,0.4951560818083961,0.17222820236813777,0.6027987082884823,2.6695371367061353,1.2701829924650163,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,1.9590958019375673,0.02152852529601722,0.08611410118406888,0.06458557588805167,0.23681377825618943,0.02152852529601722,0.17222820236813777,0.17222820236813777,0.12917115177610333,0.02152852529601722,0.02152852529601722,2.7556512378902043,0.12917115177610333,0.7965554359526372,0.12917115177610333,0.12917115177610333,0.21528525296017226,0.04305705059203444,0.21528525296017226,0.04305705059203444,0.04305705059203444,0.193756727664155,0.06458557588805167,0.02152852529601722,19.655543595263726,0.2798708288482239,0.06458557588805167,0.10764262648008613,0.06458557588805167,0.02152852529601722,0.12917115177610333,0.10764262648008613,0.17222820236813777,0.10764262648008613,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.32292787944025836,0.02152852529601722,0.17222820236813777,0.06458557588805167,0.15069967707212056,0.02152852529601722,0.15069967707212056,8.740581270182993,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.193756727664155,0.193756727664155,0.02152852529601722,0.04305705059203444,0.21528525296017226,1.6792249730893434,0.04305705059203444,0.12917115177610333,0.02152852529601722,0.25834230355220666,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.23681377825618943,0.17222820236813777,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.3013993541442411,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.04305705059203444,0.12917115177610333,0.08611410118406888,0.193756727664155,1.1410118406889127,0.04305705059203444,0.12917115177610333,0.15069967707212056,0.02152852529601722,0.06458557588805167,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.25834230355220666,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.193756727664155,0.15069967707212056,0.02152852529601722,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.25834230355220666,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.10764262648008613,0.32292787944025836,0.21528525296017226,0.10764262648008613,0.9903121636167922,0.15069967707212056,4.6716899892357375,0.08611410118406888,0.06458557588805167,0.15069967707212056,0.04305705059203444,0.08611410118406888,0.581270182992465,1.6146393972012918,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.10764262648008613,0.02152852529601722,0.32292787944025836,0.12917115177610333,0.04305705059203444,1.9806243272335844,0.10764262648008613,0.15069967707212056,0.02152852529601722,3.444564047362756,0.4520990312163617,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.17222820236813777,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.02152852529601722,0.17222820236813777,0.08611410118406888,0.04305705059203444,0.193756727664155,0.02152852529601722,0.34445640473627553,0.10764262648008613,0.04305705059203444,0.15069967707212056,0.12917115177610333,0.15069967707212056,0.17222820236813777,0.21528525296017226,0.02152852529601722,1.3778256189451021,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.3013993541442411,0.06458557588805167,0.02152852529601722,0.15069967707212056,0.10764262648008613,0.10764262648008613,0.04305705059203444,0.02152852529601722,0.17222820236813777,0.04305705059203444,0.17222820236813777,0.12917115177610333,0.32292787944025836,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.12917115177610333,0.10764262648008613,0.21528525296017226,0.04305705059203444,0.04305705059203444,0.23681377825618943,0.06458557588805167,0.06458557588805167,0.21528525296017226,0.04305705059203444,0.08611410118406888,0.15069967707212056,0.02152852529601722,0.12917115177610333,0.04305705059203444,0.47362755651237887,0.38751345532831,0.04305705059203444,0.7965554359526372,3.379978471474704,0.5597416576964478,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.3013993541442411,0.15069967707212056,0.06458557588805167,0.02152852529601722,0.15069967707212056,0.02152852529601722,0.17222820236813777,0.15069967707212056,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.04305705059203444,0.193756727664155,0.02152852529601722,0.02152852529601722,0.17222820236813777,9.989235737351992,0.6673842841765338,0.04305705059203444,0.10764262648008613,0.15069967707212056,0.04305705059203444,0.02152852529601722,0.193756727664155,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.193756727664155,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.17222820236813777,0.3659849300322928,0.08611410118406888,0.12917115177610333,0.04305705059203444,0.34445640473627553,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.06458557588805167,0.02152852529601722,0.04305705059203444,0.15069967707212056,0.08611410118406888,0.8826695371367062,0.02152852529601722,0.193756727664155,0.06458557588805167,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.193756727664155,0.12917115177610333,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.06458557588805167,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.08611410118406888,0.4951560818083961,0.02152852529601722,0.40904198062432723,0.581270182992465,0.15069967707212056,0.12917115177610333,0.02152852529601722,10.54897739504844,0.04305705059203444,0.6243272335844995,0.23681377825618943,0.02152852529601722,0.04305705059203444,2.432723358449946,0.7104413347685684,0.06458557588805167,0.02152852529601722,0.10764262648008613,0.02152852529601722,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.23681377825618943,0.6458557588805167,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.02152852529601722,0.15069967707212056,0.193756727664155,0.23681377825618943,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.193756727664155,0.02152852529601722,0.04305705059203444,0.7319698600645856,0.10764262648008613,0.12917115177610333,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.17222820236813777,11.130247578040905,0.02152852529601722,0.15069967707212056,0.06458557588805167,0.2798708288482239,0.04305705059203444,0.15069967707212056,0.10764262648008613,0.04305705059203444,0.06458557588805167,0.34445640473627553,0.17222820236813777,0.04305705059203444,1.0118406889128095,0.34445640473627553,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.02152852529601722,0.08611410118406888,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.06458557588805167,0.06458557588805167,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.08611410118406888,0.04305705059203444,0.12917115177610333,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.10764262648008613,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.32292787944025836,0.02152852529601722,0.02152852529601722,0.06458557588805167,0.12917115177610333,0.02152852529601722,0.08611410118406888,0.02152852529601722,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.06458557588805167,0.17222820236813777,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.06458557588805167,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.04305705059203444,0.06458557588805167,0.06458557588805167,5.597416576964478,0.193756727664155,10.484391819160388,0.15069967707212056,1.248654467168999,0.04305705059203444,0.06458557588805167,0.02152852529601722,0.02152852529601722,0.04305705059203444,5.317545748116253,0.17222820236813777,0.02152852529601722,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.02152852529601722,0.4305705059203445,0.193756727664155,0.02152852529601722,5.317545748116253,0.3659849300322928,0.21528525296017226,0.02152852529601722,0.193756727664155,1.0979547900968782,0.02152852529601722,2.0882669537136707,0.02152852529601722,0.34445640473627553,2.5188374596340153,0.08611410118406888,0.02152852529601722,0.193756727664155,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.34445640473627553,0.02152852529601722,0.02152852529601722,1.636167922497309,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.12917115177610333,0.04305705059203444,0.02152852529601722,0.02152852529601722,0.08611410118406888,6.3509149623250805,0.02152852529601722,0.06458557588805167,0.06458557588805167,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.17222820236813777,0.04305705059203444,0.04305705059203444,0.193756727664155,0.02152852529601722,0.10764262648008613,0.12917115177610333,0.04305705059203444,0.12917115177610333,0.04305705059203444,9.709364908503767,0.08611410118406888,0.04305705059203444,0.02152852529601722,6.609257265877288,0.04305705059203444,0.32292787944025836,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.4520990312163617,0.12917115177610333,0.08611410118406888,0.6027987082884823,0.02152852529601722,0.25834230355220666,0.02152852529601722,0.12917115177610333,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.15069967707212056,0.04305705059203444,0.02152852529601722,0.04305705059203444,14.079655543595264,10.893433799784715,0.08611410118406888,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.02152852529601722,0.17222820236813777,0.193756727664155,0.32292787944025836,0.02152852529601722,0.17222820236813777,0.02152852529601722,0.06458557588805167,0.5382131324004306,0.04305705059203444,0.04305705059203444,0.04305705059203444,0.02152852529601722,0.04305705059203444,0.04305705059203444,0.9472551130247577,0.04305705059203444,0.17222820236813777,0.17222820236813777,0.5166846071044133,0.02152852529601722,0.04305705059203444,0.17222820236813777,0.04305705059203444],"unknown":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},"id":"fb860717-0eb0-46b2-bb88-c1167ec74c2b","type":"ColumnDataSource"},{"attributes":{"callback":null,"end":950,"start":-20},"id":"fb170a97-ef1f-4ced-a341-6656c6aae545","type":"Range1d"},{"attributes":{"fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"xs_units":"screen","ys_units":"screen"},"id":"3bb72a3c-505a-4027-a71f-52c08cd56c7a","type":"PolyAnnotation"},{"attributes":{},"id":"3dda3d65-a5ee-4c17-8676-f49bea35a862","type":"BasicTickFormatter"},{"attributes":{"plot":{"id":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","subtype":"Figure","type":"Plot"}},"id":"175772ca-ab21-4e1b-bf39-2c2ddcb8d577","type":"RedoTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"radius":{"field":"radius","units":"data"},"x":{"field":"cast"},"y":{"field":"host"}},"id":"2a80a609-ce56-4a8d-9749-e5b9ee683ad4","type":"Circle"},{"attributes":{"active_drag":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"a6bcab39-97f6-4bab-8d90-58f2222509fc","type":"HoverTool"},{"id":"3a4ffb1d-ffad-424f-85d6-609722dfa013","type":"PanTool"},{"id":"e66bd795-5832-4f74-953f-1f60c23c83dd","type":"ZoomInTool"},{"id":"564e268d-e199-443b-bf52-e9ecdc1b1348","type":"ZoomOutTool"},{"id":"ad4848dc-ca43-47ef-a3c6-0d1b9b4f9714","type":"UndoTool"},{"id":"175772ca-ab21-4e1b-bf39-2c2ddcb8d577","type":"RedoTool"},{"id":"0d3750ce-e096-4971-8aa3-77a97878f6ff","type":"ResetTool"},{"id":"8b1dbc8f-d86c-4e9b-a3e1-ff867cc019dc","type":"SaveTool"},{"id":"84c0c5de-9910-49bc-972a-b2c76b646453","type":"LassoSelectTool"}]},"id":"63318ffd-593a-45bd-8228-c37dae5233cf","type":"Toolbar"},{"attributes":{"plot":null,"text":""},"id":"0ac50d92-cb14-4598-8321-5ef642f38f2e","type":"Title"}],"root_ids":["f8e3b7e4-9073-4c63-aa62-b55ea4a06d57"]},"title":"Bokeh Application","version":"0.12.4"}};
var render_items = [{"docid":"d9ebbd90-84ad-47cf-a651-9568b81d9cfe","elementid":"3439e3b9-dc97-43bb-b746-546fc39634fe","modelid":"f8e3b7e4-9073-4c63-aa62-b55ea4a06d57","notebook_comms_target":"01b68a5a-1112-4429-9be8-864538a8fd7c"}];
Bokeh.embed.embed_items(docs_json, render_items);
};
if (document.readyState != "loading") fn();
else document.addEventListener("DOMContentLoaded", fn);
})();
},
function(Bokeh) {
}
];
function run_inline_js() {
if ((window.Bokeh !== undefined) || (force === true)) {
for (var i = 0; i < inline_js.length; i++) {
inline_js[i](window.Bokeh);
}if (force === true) {
display_loaded();
}} else if (Date.now() < window._bokeh_timeout) {
setTimeout(run_inline_js, 100);
} else if (!window._bokeh_failed_load) {
console.log("Bokeh: BokehJS failed to load within specified timeout.");
window._bokeh_failed_load = true;
} else if (force !== true) {
var cell = $(document.getElementById("3439e3b9-dc97-43bb-b746-546fc39634fe")).parents('.cell').data().cell;
cell.output_area.append_execute_result(NB_LOAD_WARNING)
}
}
if (window._bokeh_is_loading === 0) {
console.log("Bokeh: BokehJS loaded, going straight to plotting");
run_inline_js();
} else {
load_libs(js_urls, function() {
console.log("Bokeh: BokehJS plotting callback run at", now());
run_inline_js();
});
}
}(this));
</script>
\n"+ "BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+ "may be due to a slow or bad network connection. Possible fixes:\n"+ "
\n"+ "- \n"+
"
- re-rerun `output_notebook()` to attempt to load from CDN again, or \n"+ "
- use INLINE resources instead, as so: \n"+ "
\n"+
"from bokeh.resources import INLINE\n"+
"output_notebook(resources=INLINE)\n"+
"
\n"+
"