How to use item method in ladle

Best JavaScript code snippet using ladle

norming.js

Source:norming.js Github

copy

Full Screen

1// Returns a random integer between min (included) and max (excluded)2// Using Math.round() will give you a non-uniform distribution!3function getRandomInt(min, max) {4 return Math.floor(Math.random() * (max - min)) + min;5}6function make_slides(f) {7 var slides = {};8// preload(9// ["images/bathrobe.png","images/belt.jpg"],10// {after: function() { console.log("everything's loaded now") }}11// ) 12 slides.i0 = slide({13 name : "i0",14 start: function() {15 exp.startT = Date.now();16 }17 });18 slides.instructions = slide({19 name : "instructions",20 button : function() {21 exp.go(); //use exp.go() if and only if there is no "present" data.22 }23 });24 slides.objecttrial = slide({25 name : "objecttrial",26 present : exp.all_stims,27 start : function() {28 $(".err").hide();29 },30 present_handle : function(stim) {31 this.trial_start = Date.now();32 this.init_sliders();33 exp.sliderPost = {};34 //$("#objectlabel").val(""); 35 this.stim = stim;36 console.log(this.stim);37 var contextsentence = "How typical is this for <strong>"+stim.label+"</strong>?";38 //var contextsentence = "How typical is this for "+stim.basiclevel+"?";39 //var objimagehtml = '<img src="images/'+stim.basiclevel+'/'+stim.item+'.jpg" style="height:190px;">';40 var objimagehtml = '<img src="images/'+stim.item+'.jpg" style="height:190px;">';41 $("#contextsentence").html(contextsentence);42 $("#objectimage").html(objimagehtml);43 console.log(this);44 },45 button : function() {46 if (exp.sliderPost > -1 && exp.sliderPost < 16) {47 $(".err").hide();48 this.log_responses();49 _stream.apply(this); //use exp.go() if and only if there is no "present" data.50 } else {51 $(".err").show();52 }53 },54 init_sliders : function() {55 utils.make_slider("#single_slider", function(event, ui) {56 exp.sliderPost = ui.value;57 //$("#number_guess").html(Math.round(ui.value*N));58 });59 },60 log_responses : function() {61 exp.data_trials.push({62 "label" : this.stim.label,63 "slide_number_in_experiment" : exp.phase,64 "item": this.stim.item,65 "itemtype": this.stim.itemtype,66 "labeltype": this.stim.labeltype, 67 "rt" : Date.now() - _s.trial_start,68 "response" : exp.sliderPost69 });70 }71 // $(".contbutton").click(function() {72 // var ok_to_go_on = true;73 // console.log($("#objectlabel").val());74 // if ($("#objectlabel").val().length < 2) {75 // ok_to_go_on = false;76 // }77 // if (ok_to_go_on) {78 // $(".contbutton").unbind("click"); 79 // stim.objectlabel = $("#objectlabel").val(); 80 // exp.data_trials.push({81 // "basiclevel" : stim.basiclevel,82 // "slide_number_in_experiment" : exp.phase,83 // "item": stim.item,84 // "rt" : Date.now() - _s.trial_start,85 // "response" : stim.objectlabel86 // });87 // $(".err").hide();88 // _stream.apply(_s); 89 // } else {90 // $(".err").show();91 // }92 // });93 94 // },95 });96 slides.subj_info = slide({97 name : "subj_info",98 submit : function(e){99 //if (e.preventDefault) e.preventDefault(); // I don't know what this means.100 exp.subj_data = {101 language : $("#language").val(),102 enjoyment : $("#enjoyment").val(),103 asses : $('input[name="assess"]:checked').val(),104 age : $("#age").val(),105 gender : $("#gender").val(),106 education : $("#education").val(),107 comments : $("#comments").val(),108 };109 exp.go(); //use exp.go() if and only if there is no "present" data.110 }111 });112 slides.thanks = slide({113 name : "thanks",114 start : function() {115 exp.data= {116 "trials" : exp.data_trials,117 "catch_trials" : exp.catch_trials,118 "system" : exp.system,119 "condition" : exp.condition,120 "subject_information" : exp.subj_data,121 "time_in_minutes" : (Date.now() - exp.startT)/60000122 };123 setTimeout(function() {turk.submit(exp.data);}, 1000);124 }125 });126 return slides;127}128/// init ///129function init() {130 var items_target = _.shuffle([131 {132"item": "blackbear",133"label": "a black bear",134"itemtype": "target",135"labeltype": "sub"136},137{138"item": "grizzlybear",139"label": "a grizzly bear",140"itemtype": "target",141"labeltype": "sub"142},143{144"item": "pandabear",145"label": "a panda bear",146"itemtype": "target",147"labeltype": "sub"148},149{150"item": "polarbear",151"label": "a polar bear",152"itemtype": "target",153"labeltype": "sub"154},155{156"item": "eagle",157"label": "an eagle",158"itemtype": "target",159"labeltype": "sub"160},161{162"item": "hummingbird",163"label": "a hummingbird",164"itemtype": "target",165"labeltype": "sub"166},167{168"item": "parrot",169"label": "a parrot",170"itemtype": "target",171"labeltype": "sub"172},173{174"item": "pigeon",175"label": "a pigeon",176"itemtype": "target",177"labeltype": "sub"178},179{180"item": "dalmatian",181"label": "a dalmatian",182"itemtype": "target",183"labeltype": "sub"184},185{186"item": "germanshepherd",187"label": "a German Shepherd",188"itemtype": "target",189"labeltype": "sub"190},191{192"item": "husky",193"label": "a husky",194"itemtype": "target",195"labeltype": "sub"196},197{198"item": "pug",199"label": "a pug",200"itemtype": "target",201"labeltype": "sub"202},203{204"item": "gummybears",205"label": "gummybears",206"itemtype": "target",207"labeltype": "sub"208},209{210"item": "jellybeans",211"label": "jellybeans",212"itemtype": "target",213"labeltype": "sub"214},215{216"item": "mnms",217"label": "M&Ms",218"itemtype": "target",219"labeltype": "sub"220},221{222"item": "skittles",223"label": "skittles",224"itemtype": "target",225"labeltype": "sub"226},227{228"item": "daisy",229"label": "a daisy",230"itemtype": "target",231"labeltype": "sub"232},233{234"item": "rose",235"label": "a rose",236"itemtype": "target",237"labeltype": "sub"238},239{240"item": "sunflower",241"label": "a sunflower",242"itemtype": "target",243"labeltype": "sub"244},245{246"item": "tulip",247"label": "a tulip",248"itemtype": "target",249"labeltype": "sub"250},251{252"item": "convertible",253"label": "a convertible",254"itemtype": "target",255"labeltype": "sub"256},257{258"item": "minivan",259"label": "a minivan",260"itemtype": "target",261"labeltype": "sub"262},263{264"item": "sportscar",265"label": "a sports car",266"itemtype": "target",267"labeltype": "sub"268},269{270"item": "suv",271"label": "an SUV",272"itemtype": "target",273"labeltype": "sub"274},275{276"item": "catfish",277"label": "a catfish",278"itemtype": "target",279"labeltype": "sub"280},281{282"item": "clownfish",283"label": "a clownfish",284"itemtype": "target",285"labeltype": "sub"286},287{288"item": "goldfish",289"label": "a goldfish",290"itemtype": "target",291"labeltype": "sub"292},293{294"item": "swordfish",295"label": "a swordfish",296"itemtype": "target",297"labeltype": "sub"298},299{300"item": "dressshirt",301"label": "a dress shirt",302"itemtype": "target",303"labeltype": "sub"304},305{306"item": "hawaiishirt",307"label": "a Hawaii shirt",308"itemtype": "target",309"labeltype": "sub"310},311{312"item": "poloshirt",313"label": "a polo shirt",314"itemtype": "target",315"labeltype": "sub"316},317{318"item": "tshirt",319"label": "a t-shirt",320"itemtype": "target",321"labeltype": "sub"322},323{324"item": "bedsidetable",325"label": "a bedside table",326"itemtype": "target",327"labeltype": "sub"328},329{330"item": "coffeetable",331"label": "a coffee table",332"itemtype": "target",333"labeltype": "sub"334},335{336"item": "diningtable",337"label": "a dining table",338"itemtype": "target",339"labeltype": "sub"340},341{342"item": "picnictable",343"label": "a picnic table",344"itemtype": "target",345"labeltype": "sub"346},347{348"item": "blackbear",349"label": "a bear",350"itemtype": "target",351"labeltype": "basic"352},353{354"item": "grizzlybear",355"label": "a bear",356"itemtype": "target",357"labeltype": "basic"358},359{360"item": "pandabear",361"label": "a bear",362"itemtype": "target",363"labeltype": "basic"364},365{366"item": "polarbear",367"label": "a bear",368"itemtype": "target",369"labeltype": "basic"370},371{372"item": "eagle",373"label": "a bird",374"itemtype": "target",375"labeltype": "basic"376},377{378"item": "hummingbird",379"label": "a bird",380"itemtype": "target",381"labeltype": "basic"382},383{384"item": "parrot",385"label": "a bird",386"itemtype": "target",387"labeltype": "basic"388},389{390"item": "pigeon",391"label": "a bird",392"itemtype": "target",393"labeltype": "basic"394},395{396"item": "dalmatian",397"label": "a dog",398"itemtype": "target",399"labeltype": "basic"400},401{402"item": "germanshepherd",403"label": "a dog",404"itemtype": "target",405"labeltype": "basic"406},407{408"item": "husky",409"label": "a dog",410"itemtype": "target",411"labeltype": "basic"412},413{414"item": "pug",415"label": "a dog",416"itemtype": "target",417"labeltype": "basic"418},419{420"item": "gummybears",421"label": "candy",422"itemtype": "target",423"labeltype": "basic"424},425{426"item": "jellybeans",427"label": "candy",428"itemtype": "target",429"labeltype": "basic"430},431{432"item": "mnms",433"label": "candy",434"itemtype": "target",435"labeltype": "basic"436},437{438"item": "skittles",439"label": "candy",440"itemtype": "target",441"labeltype": "basic"442},443{444"item": "daisy",445"label": "a flower",446"itemtype": "target",447"labeltype": "basic"448},449{450"item": "rose",451"label": "a flower",452"itemtype": "target",453"labeltype": "basic"454},455{456"item": "sunflower",457"label": "a flower",458"itemtype": "target",459"labeltype": "basic"460},461{462"item": "tulip",463"label": "a flower",464"itemtype": "target",465"labeltype": "basic"466},467{468"item": "convertible",469"label": "a car",470"itemtype": "target",471"labeltype": "basic"472},473{474"item": "minivan",475"label": "a car",476"itemtype": "target",477"labeltype": "basic"478},479{480"item": "sportscar",481"label": "a car",482"itemtype": "target",483"labeltype": "basic"484},485{486"item": "suv",487"label": "a car",488"itemtype": "target",489"labeltype": "basic"490},491{492"item": "catfish",493"label": "a fish",494"itemtype": "target",495"labeltype": "basic"496},497{498"item": "clownfish",499"label": "a fish",500"itemtype": "target",501"labeltype": "basic"502},503{504"item": "goldfish",505"label": "a fish",506"itemtype": "target",507"labeltype": "basic"508},509{510"item": "swordfish",511"label": "a fish",512"itemtype": "target",513"labeltype": "basic"514},515{516"item": "dressshirt",517"label": "a shirt",518"itemtype": "target",519"labeltype": "basic"520},521{522"item": "hawaiishirt",523"label": "a shirt",524"itemtype": "target",525"labeltype": "basic"526},527{528"item": "poloshirt",529"label": "a shirt",530"itemtype": "target",531"labeltype": "basic"532},533{534"item": "tshirt",535"label": "a shirt",536"itemtype": "target",537"labeltype": "basic"538},539{540"item": "bedsidetable",541"label": "a table",542"itemtype": "target",543"labeltype": "basic"544},545{546"item": "coffeetable",547"label": "a table",548"itemtype": "target",549"labeltype": "basic"550},551{552"item": "diningtable",553"label": "a table",554"itemtype": "target",555"labeltype": "basic"556},557{558"item": "picnictable",559"label": "a table",560"itemtype": "target",561"labeltype": "basic"562},563{564"item": "blackbear",565"label": "an animal",566"itemtype": "target",567"labeltype": "super"568},569{570"item": "grizzlybear",571"label": "an animal",572"itemtype": "target",573"labeltype": "super"574},575{576"item": "pandabear",577"label": "an animal",578"itemtype": "target",579"labeltype": "super"580},581{582"item": "polarbear",583"label": "an animal",584"itemtype": "target",585"labeltype": "super"586},587{588"item": "eagle",589"label": "an animal",590"itemtype": "target",591"labeltype": "super"592},593{594"item": "hummingbird",595"label": "an animal",596"itemtype": "target",597"labeltype": "super"598},599{600"item": "parrot",601"label": "an animal",602"itemtype": "target",603"labeltype": "super"604},605{606"item": "pigeon",607"label": "an animal",608"itemtype": "target",609"labeltype": "super"610},611{612"item": "dalmatian",613"label": "an animal",614"itemtype": "target",615"labeltype": "super"616},617{618"item": "germanshepherd",619"label": "an animal",620"itemtype": "target",621"labeltype": "super"622},623{624"item": "husky",625"label": "an animal",626"itemtype": "target",627"labeltype": "super"628},629{630"item": "pug",631"label": "an animal",632"itemtype": "target",633"labeltype": "super"634},635{636"item": "gummybears",637"label": "a snack",638"itemtype": "target",639"labeltype": "super"640},641{642"item": "jellybeans",643"label": "a snack",644"itemtype": "target",645"labeltype": "super"646},647{648"item": "mnms",649"label": "a snack",650"itemtype": "target",651"labeltype": "super"652},653{654"item": "skittles",655"label": "a snack",656"itemtype": "target",657"labeltype": "super"658},659{660"item": "daisy",661"label": "a plant",662"itemtype": "target",663"labeltype": "super"664},665{666"item": "rose",667"label": "a plant",668"itemtype": "target",669"labeltype": "super"670},671{672"item": "sunflower",673"label": "a plant",674"itemtype": "target",675"labeltype": "super"676},677{678"item": "tulip",679"label": "a plant",680"itemtype": "target",681"labeltype": "super"682},683{684"item": "convertible",685"label": "a vehicle",686"itemtype": "target",687"labeltype": "super"688},689{690"item": "minivan",691"label": "a vehicle",692"itemtype": "target",693"labeltype": "super"694},695{696"item": "sportscar",697"label": "a vehicle",698"itemtype": "target",699"labeltype": "super"700},701{702"item": "suv",703"label": "a vehicle",704"itemtype": "target",705"labeltype": "super"706},707{708"item": "catfish",709"label": "an animal",710"itemtype": "target",711"labeltype": "super"712},713{714"item": "clownfish",715"label": "an animal",716"itemtype": "target",717"labeltype": "super"718},719{720"item": "goldfish",721"label": "an animal",722"itemtype": "target",723"labeltype": "super"724},725{726"item": "swordfish",727"label": "an animal",728"itemtype": "target",729"labeltype": "super"730},731{732"item": "dressshirt",733"label": "clothing",734"itemtype": "target",735"labeltype": "super"736},737{738"item": "hawaiishirt",739"label": "clothing",740"itemtype": "target",741"labeltype": "super"742},743{744"item": "poloshirt",745"label": "clothing",746"itemtype": "target",747"labeltype": "super"748},749{750"item": "tshirt",751"label": "clothing",752"itemtype": "target",753"labeltype": "super"754},755{756"item": "bedsidetable",757"label": "furniture",758"itemtype": "target",759"labeltype": "super"760},761{762"item": "coffeetable",763"label": "furniture",764"itemtype": "target",765"labeltype": "super"766},767{768"item": "diningtable",769"label": "furniture",770"itemtype": "target",771"labeltype": "super"772},773{774"item": "picnictable",775"label": "furniture",776"itemtype": "target",777"labeltype": "super"778}779 ]).slice(0,7)780 var items_dists = _.shuffle([781 782{783"item": "ambulance",784"label": "clothing",785"itemtype": "dist_super",786"labeltype": "super"787},788{789"item": "ambulance",790"label": "furniture",791"itemtype": "dist_super",792"labeltype": "super"793},794{795"item": "ambulance",796"label": "a snack",797"itemtype": "dist_super",798"labeltype": "super"799},800{801"item": "ambulance",802"label": "an animal",803"itemtype": "dist_super",804"labeltype": "super"805},806{807"item": "bathrobe",808"label": "a plant",809"itemtype": "dist_super",810"labeltype": "super"811},812{813"item": "bathrobe",814"label": "an animal",815"itemtype": "dist_super",816"labeltype": "super"817},818{819"item": "bathrobe",820"label": "furniture",821"itemtype": "dist_super",822"labeltype": "super"823},824{825"item": "bathrobe",826"label": "a snack",827"itemtype": "dist_super",828"labeltype": "super"829},830{831"item": "bathrobe",832"label": "a vehicle",833"itemtype": "dist_super",834"labeltype": "super"835},836{837"item": "bed",838"label": "a snack",839"itemtype": "dist_super",840"labeltype": "super"841},842{843"item": "bed",844"label": "an animal",845"itemtype": "dist_super",846"labeltype": "super"847},848{849"item": "bed",850"label": "clothing",851"itemtype": "dist_super",852"labeltype": "super"853},854{855"item": "bed",856"label": "a plant",857"itemtype": "dist_super",858"labeltype": "super"859},860{861"item": "bed",862"label": "a vehicle",863"itemtype": "dist_super",864"labeltype": "super"865},866{867"item": "bison",868"label": "clothing",869"itemtype": "dist_super",870"labeltype": "super"871},872{873"item": "bison",874"label": "a snack",875"itemtype": "dist_super",876"labeltype": "super"877},878{879"item": "bison",880"label": "furniture",881"itemtype": "dist_super",882"labeltype": "super"883},884{885"item": "bison",886"label": "a vehicle",887"itemtype": "dist_super",888"labeltype": "super"889},890{891"item": "bison",892"label": "a plant",893"itemtype": "dist_super",894"labeltype": "super"895},896{897"item": "bookcase",898"label": "an animal",899"itemtype": "dist_super",900"labeltype": "super"901},902{903"item": "bookcase",904"label": "a snack",905"itemtype": "dist_super",906"labeltype": "super"907},908{909"item": "bookcase",910"label": "a plant",911"itemtype": "dist_super",912"labeltype": "super"913},914{915"item": "bookcase",916"label": "clothing",917"itemtype": "dist_super",918"labeltype": "super"919},920{921"item": "chick",922"label": "clothing",923"itemtype": "dist_super",924"labeltype": "super"925},926{927"item": "chick",928"label": "a plant",929"itemtype": "dist_super",930"labeltype": "super"931},932{933"item": "chick",934"label": "a snack",935"itemtype": "dist_super",936"labeltype": "super"937},938{939"item": "chick",940"label": "furniture",941"itemtype": "dist_super",942"labeltype": "super"943},944{945"item": "chick",946"label": "a vehicle",947"itemtype": "dist_super",948"labeltype": "super"949},950{951"item": "chips",952"label": "an animal",953"itemtype": "dist_super",954"labeltype": "super"955},956{957"item": "chips",958"label": "a plant",959"itemtype": "dist_super",960"labeltype": "super"961},962{963"item": "chips",964"label": "clothing",965"itemtype": "dist_super",966"labeltype": "super"967},968{969"item": "chips",970"label": "a vehicle",971"itemtype": "dist_super",972"labeltype": "super"973},974{975"item": "chips",976"label": "furniture",977"itemtype": "dist_super",978"labeltype": "super"979},980{981"item": "cookies",982"label": "clothing",983"itemtype": "dist_super",984"labeltype": "super"985},986{987"item": "cookies",988"label": "a vehicle",989"itemtype": "dist_super",990"labeltype": "super"991},992{993"item": "cookies",994"label": "an animal",995"itemtype": "dist_super",996"labeltype": "super"997},998{999"item": "cookies",1000"label": "furniture",1001"itemtype": "dist_super",1002"labeltype": "super"1003},1004{1005"item": "cookies",1006"label": "a plant",1007"itemtype": "dist_super",1008"labeltype": "super"1009},1010{1011"item": "cow",1012"label": "a snack",1013"itemtype": "dist_super",1014"labeltype": "super"1015},1016{1017"item": "cow",1018"label": "a vehicle",1019"itemtype": "dist_super",1020"labeltype": "super"1021},1022{1023"item": "cow",1024"label": "a plant",1025"itemtype": "dist_super",1026"labeltype": "super"1027},1028{1029"item": "cow",1030"label": "clothing",1031"itemtype": "dist_super",1032"labeltype": "super"1033},1034{1035"item": "cow",1036"label": "furniture",1037"itemtype": "dist_super",1038"labeltype": "super"1039},1040{1041"item": "crocodile",1042"label": "furniture",1043"itemtype": "dist_super",1044"labeltype": "super"1045},1046{1047"item": "crocodile",1048"label": "a vehicle",1049"itemtype": "dist_super",1050"labeltype": "super"1051},1052{1053"item": "crocodile",1054"label": "a plant",1055"itemtype": "dist_super",1056"labeltype": "super"1057},1058{1059"item": "crocodile",1060"label": "a snack",1061"itemtype": "dist_super",1062"labeltype": "super"1063},1064{1065"item": "crocodile",1066"label": "clothing",1067"itemtype": "dist_super",1068"labeltype": "super"1069},1070{1071"item": "dress",1072"label": "furniture",1073"itemtype": "dist_super",1074"labeltype": "super"1075},1076{1077"item": "dress",1078"label": "an animal",1079"itemtype": "dist_super",1080"labeltype": "super"1081},1082{1083"item": "dress",1084"label": "a plant",1085"itemtype": "dist_super",1086"labeltype": "super"1087},1088{1089"item": "dress",1090"label": "a vehicle",1091"itemtype": "dist_super",1092"labeltype": "super"1093},1094{1095"item": "dress",1096"label": "a snack",1097"itemtype": "dist_super",1098"labeltype": "super"1099},1100{1101"item": "elephant",1102"label": "a vehicle",1103"itemtype": "dist_super",1104"labeltype": "super"1105},1106{1107"item": "elephant",1108"label": "furniture",1109"itemtype": "dist_super",1110"labeltype": "super"1111},1112{1113"item": "elephant",1114"label": "a plant",1115"itemtype": "dist_super",1116"labeltype": "super"1117},1118{1119"item": "elephant",1120"label": "a snack",1121"itemtype": "dist_super",1122"labeltype": "super"1123},1124{1125"item": "elephant",1126"label": "clothing",1127"itemtype": "dist_super",1128"labeltype": "super"1129},1130{1131"item": "firetruck",1132"label": "clothing",1133"itemtype": "dist_super",1134"labeltype": "super"1135},1136{1137"item": "firetruck",1138"label": "furniture",1139"itemtype": "dist_super",1140"labeltype": "super"1141},1142{1143"item": "firetruck",1144"label": "an animal",1145"itemtype": "dist_super",1146"labeltype": "super"1147},1148{1149"item": "firetruck",1150"label": "a snack",1151"itemtype": "dist_super",1152"labeltype": "super"1153},1154{1155"item": "firetruck",1156"label": "a plant",1157"itemtype": "dist_super",1158"labeltype": "super"1159},1160{1161"item": "gloves",1162"label": "an animal",1163"itemtype": "dist_super",1164"labeltype": "super"1165},1166{1167"item": "gloves",1168"label": "a snack",1169"itemtype": "dist_super",1170"labeltype": "super"1171},1172{1173"item": "gloves",1174"label": "a plant",1175"itemtype": "dist_super",1176"labeltype": "super"1177},1178{1179"item": "gloves",1180"label": "furniture",1181"itemtype": "dist_super",1182"labeltype": "super"1183},1184{1185"item": "gloves",1186"label": "a vehicle",1187"itemtype": "dist_super",1188"labeltype": "super"1189},1190{1191"item": "grasses",1192"label": "clothing",1193"itemtype": "dist_super",1194"labeltype": "super"1195},1196{1197"item": "grasses",1198"label": "a snack",1199"itemtype": "dist_super",1200"labeltype": "super"1201},1202{1203"item": "grasses",1204"label": "an animal",1205"itemtype": "dist_super",1206"labeltype": "super"1207},1208{1209"item": "grasses",1210"label": "a vehicle",1211"itemtype": "dist_super",1212"labeltype": "super"1213},1214{1215"item": "grasses",1216"label": "furniture",1217"itemtype": "dist_super",1218"labeltype": "super"1219},1220{1221"item": "horse",1222"label": "clothing",1223"itemtype": "dist_super",1224"labeltype": "super"1225},1226{1227"item": "horse",1228"label": "furniture",1229"itemtype": "dist_super",1230"labeltype": "super"1231},1232{1233"item": "horse",1234"label": "a plant",1235"itemtype": "dist_super",1236"labeltype": "super"1237},1238{1239"item": "horse",1240"label": "a snack",1241"itemtype": "dist_super",1242"labeltype": "super"1243},1244{1245"item": "horse",1246"label": "a vehicle",1247"itemtype": "dist_super",1248"labeltype": "super"1249},1250{1251"item": "iguana",1252"label": "furniture",1253"itemtype": "dist_super",1254"labeltype": "super"1255},1256{1257"item": "iguana",1258"label": "a vehicle",1259"itemtype": "dist_super",1260"labeltype": "super"1261},1262{1263"item": "iguana",1264"label": "a snack",1265"itemtype": "dist_super",1266"labeltype": "super"1267},1268{1269"item": "iguana",1270"label": "a plant",1271"itemtype": "dist_super",1272"labeltype": "super"1273},1274{1275"item": "ivy",1276"label": "furniture",1277"itemtype": "dist_super",1278"labeltype": "super"1279},1280{1281"item": "ivy",1282"label": "an animal",1283"itemtype": "dist_super",1284"labeltype": "super"1285},1286{1287"item": "ivy",1288"label": "clothing",1289"itemtype": "dist_super",1290"labeltype": "super"1291},1292{1293"item": "ivy",1294"label": "a snack",1295"itemtype": "dist_super",1296"labeltype": "super"1297},1298{1299"item": "ivy",1300"label": "a vehicle",1301"itemtype": "dist_super",1302"labeltype": "super"1303},1304{1305"item": "kitten",1306"label": "a plant",1307"itemtype": "dist_super",1308"labeltype": "super"1309},1310{1311"item": "kitten",1312"label": "a vehicle",1313"itemtype": "dist_super",1314"labeltype": "super"1315},1316{1317"item": "kitten",1318"label": "clothing",1319"itemtype": "dist_super",1320"labeltype": "super"1321},1322{1323"item": "kitten",1324"label": "furniture",1325"itemtype": "dist_super",1326"labeltype": "super"1327},1328{1329"item": "lamp",1330"label": "an animal",1331"itemtype": "dist_super",1332"labeltype": "super"1333},1334{1335"item": "lamp",1336"label": "clothing",1337"itemtype": "dist_super",1338"labeltype": "super"1339},1340{1341"item": "lamp",1342"label": "a snack",1343"itemtype": "dist_super",1344"labeltype": "super"1345},1346{1347"item": "lamp",1348"label": "a plant",1349"itemtype": "dist_super",1350"labeltype": "super"1351},1352{1353"item": "lamp",1354"label": "a vehicle",1355"itemtype": "dist_super",1356"labeltype": "super"1357},1358{1359"item": "lion",1360"label": "a vehicle",1361"itemtype": "dist_super",1362"labeltype": "super"1363},1364{1365"item": "lion",1366"label": "clothing",1367"itemtype": "dist_super",1368"labeltype": "super"1369},1370{1371"item": "lion",1372"label": "a snack",1373"itemtype": "dist_super",1374"labeltype": "super"1375},1376{1377"item": "lion",1378"label": "a plant",1379"itemtype": "dist_super",1380"labeltype": "super"1381},1382{1383"item": "lion",1384"label": "furniture",1385"itemtype": "dist_super",1386"labeltype": "super"1387},1388{1389"item": "lobster",1390"label": "a snack",1391"itemtype": "dist_super",1392"labeltype": "super"1393},1394{1395"item": "lobster",1396"label": "a plant",1397"itemtype": "dist_super",1398"labeltype": "super"1399},1400{1401"item": "lobster",1402"label": "clothing",1403"itemtype": "dist_super",1404"labeltype": "super"1405},1406{1407"item": "lobster",1408"label": "furniture",1409"itemtype": "dist_super",1410"labeltype": "super"1411},1412{1413"item": "lobster",1414"label": "a vehicle",1415"itemtype": "dist_super",1416"labeltype": "super"1417},1418{1419"item": "motorcycle",1420"label": "an animal",1421"itemtype": "dist_super",1422"labeltype": "super"1423},1424{1425"item": "motorcycle",1426"label": "furniture",1427"itemtype": "dist_super",1428"labeltype": "super"1429},1430{1431"item": "motorcycle",1432"label": "clothing",1433"itemtype": "dist_super",1434"labeltype": "super"1435},1436{1437"item": "pig",1438"label": "clothing",1439"itemtype": "dist_super",1440"labeltype": "super"1441},1442{1443"item": "popcorn",1444"label": "clothing",1445"itemtype": "dist_super",1446"labeltype": "super"1447},1448{1449"item": "popcorn",1450"label": "an animal",1451"itemtype": "dist_super",1452"labeltype": "super"1453},1454{1455"item": "popcorn",1456"label": "a vehicle",1457"itemtype": "dist_super",1458"labeltype": "super"1459},1460{1461"item": "popcorn",1462"label": "furniture",1463"itemtype": "dist_super",1464"labeltype": "super"1465},1466{1467"item": "popcorn",1468"label": "a plant",1469"itemtype": "dist_super",1470"labeltype": "super"1471},1472{1473"item": "pottedplant",1474"label": "furniture",1475"itemtype": "dist_super",1476"labeltype": "super"1477},1478{1479"item": "pottedplant",1480"label": "a vehicle",1481"itemtype": "dist_super",1482"labeltype": "super"1483},1484{1485"item": "pottedplant",1486"label": "an animal",1487"itemtype": "dist_super",1488"labeltype": "super"1489},1490{1491"item": "pretzels",1492"label": "clothing",1493"itemtype": "dist_super",1494"labeltype": "super"1495},1496{1497"item": "pretzels",1498"label": "a vehicle",1499"itemtype": "dist_super",1500"labeltype": "super"1501},1502{1503"item": "pretzels",1504"label": "an animal",1505"itemtype": "dist_super",1506"labeltype": "super"1507},1508{1509"item": "pretzels",1510"label": "a plant",1511"itemtype": "dist_super",1512"labeltype": "super"1513},1514{1515"item": "pretzels",1516"label": "furniture",1517"itemtype": "dist_super",1518"labeltype": "super"1519},1520{1521"item": "rabbit",1522"label": "a snack",1523"itemtype": "dist_super",1524"labeltype": "super"1525},1526{1527"item": "rabbit",1528"label": "clothing",1529"itemtype": "dist_super",1530"labeltype": "super"1531},1532{1533"item": "rabbit",1534"label": "a plant",1535"itemtype": "dist_super",1536"labeltype": "super"1537},1538{1539"item": "rabbit",1540"label": "furniture",1541"itemtype": "dist_super",1542"labeltype": "super"1543},1544{1545"item": "rabbit",1546"label": "a vehicle",1547"itemtype": "dist_super",1548"labeltype": "super"1549},1550{1551"item": "rhino",1552"label": "clothing",1553"itemtype": "dist_super",1554"labeltype": "super"1555},1556{1557"item": "rhino",1558"label": "a snack",1559"itemtype": "dist_super",1560"labeltype": "super"1561},1562{1563"item": "rhino",1564"label": "a plant",1565"itemtype": "dist_super",1566"labeltype": "super"1567},1568{1569"item": "rhino",1570"label": "a vehicle",1571"itemtype": "dist_super",1572"labeltype": "super"1573},1574{1575"item": "rhino",1576"label": "furniture",1577"itemtype": "dist_super",1578"labeltype": "super"1579},1580{1581"item": "rosemary",1582"label": "an animal",1583"itemtype": "dist_super",1584"labeltype": "super"1585},1586{1587"item": "rosemary",1588"label": "a snack",1589"itemtype": "dist_super",1590"labeltype": "super"1591},1592{1593"item": "rosemary",1594"label": "a vehicle",1595"itemtype": "dist_super",1596"labeltype": "super"1597},1598{1599"item": "rosemary",1600"label": "clothing",1601"itemtype": "dist_super",1602"labeltype": "super"1603},1604{1605"item": "rosemary",1606"label": "furniture",1607"itemtype": "dist_super",1608"labeltype": "super"1609},1610{1611"item": "sheep",1612"label": "a vehicle",1613"itemtype": "dist_super",1614"labeltype": "super"1615},1616{1617"item": "sheep",1618"label": "furniture",1619"itemtype": "dist_super",1620"labeltype": "super"1621},1622{1623"item": "sheep",1624"label": "a plant",1625"itemtype": "dist_super",1626"labeltype": "super"1627},1628{1629"item": "sheep",1630"label": "a snack",1631"itemtype": "dist_super",1632"labeltype": "super"1633},1634{1635"item": "sheep",1636"label": "clothing",1637"itemtype": "dist_super",1638"labeltype": "super"1639},1640{1641"item": "snake",1642"label": "furniture",1643"itemtype": "dist_super",1644"labeltype": "super"1645},1646{1647"item": "snake",1648"label": "a snack",1649"itemtype": "dist_super",1650"labeltype": "super"1651},1652{1653"item": "snake",1654"label": "clothing",1655"itemtype": "dist_super",1656"labeltype": "super"1657},1658{1659"item": "snake",1660"label": "a vehicle",1661"itemtype": "dist_super",1662"labeltype": "super"1663},1664{1665"item": "snake",1666"label": "a plant",1667"itemtype": "dist_super",1668"labeltype": "super"1669},1670{1671"item": "socks",1672"label": "a plant",1673"itemtype": "dist_super",1674"labeltype": "super"1675},1676{1677"item": "socks",1678"label": "an animal",1679"itemtype": "dist_super",1680"labeltype": "super"1681},1682{1683"item": "socks",1684"label": "a vehicle",1685"itemtype": "dist_super",1686"labeltype": "super"1687},1688{1689"item": "socks",1690"label": "furniture",1691"itemtype": "dist_super",1692"labeltype": "super"1693},1694{1695"item": "socks",1696"label": "a snack",1697"itemtype": "dist_super",1698"labeltype": "super"1699},1700{1701"item": "squirrel",1702"label": "a vehicle",1703"itemtype": "dist_super",1704"labeltype": "super"1705},1706{1707"item": "squirrel",1708"label": "a snack",1709"itemtype": "dist_super",1710"labeltype": "super"1711},1712{1713"item": "squirrel",1714"label": "clothing",1715"itemtype": "dist_super",1716"labeltype": "super"1717},1718{1719"item": "squirrel",1720"label": "furniture",1721"itemtype": "dist_super",1722"labeltype": "super"1723},1724{1725"item": "squirrel",1726"label": "a plant",1727"itemtype": "dist_super",1728"labeltype": "super"1729},1730{1731"item": "train",1732"label": "clothing",1733"itemtype": "dist_super",1734"labeltype": "super"1735},1736{1737"item": "train",1738"label": "an animal",1739"itemtype": "dist_super",1740"labeltype": "super"1741},1742{1743"item": "train",1744"label": "a snack",1745"itemtype": "dist_super",1746"labeltype": "super"1747},1748{1749"item": "train",1750"label": "a plant",1751"itemtype": "dist_super",1752"labeltype": "super"1753},1754{1755"item": "train",1756"label": "furniture",1757"itemtype": "dist_super",1758"labeltype": "super"1759},1760{1761"item": "wardrobe",1762"label": "an animal",1763"itemtype": "dist_super",1764"labeltype": "super"1765},1766{1767"item": "wardrobe",1768"label": "a plant",1769"itemtype": "dist_super",1770"labeltype": "super"1771},1772{1773"item": "wardrobe",1774"label": "a vehicle",1775"itemtype": "dist_super",1776"labeltype": "super"1777},1778{1779"item": "wardrobe",1780"label": "a snack",1781"itemtype": "dist_super",1782"labeltype": "super"1783},1784{1785"item": "wardrobe",1786"label": "clothing",1787"itemtype": "dist_super",1788"labeltype": "super"1789}1790 ]).slice(0,10)1791 var items_distss = _.shuffle([1792 {1793"item": "koalabear",1794"label": "a black bear",1795"itemtype": "dist_samesuper",1796"labeltype": "sub"1797},1798{1799"item": "koalabear",1800"label": "a grizzly bear",1801"itemtype": "dist_samesuper",1802"labeltype": "sub"1803},1804{1805"item": "koalabear",1806"label": "a panda bear",1807"itemtype": "dist_samesuper",1808"labeltype": "sub"1809},1810{1811"item": "koalabear",1812"label": "a polar bear",1813"itemtype": "dist_samesuper",1814"labeltype": "sub"1815},1816{1817"item": "sparrow",1818"label": "an eagle",1819"itemtype": "dist_samesuper",1820"labeltype": "sub"1821},1822{1823"item": "sparrow",1824"label": "a hummingbird",1825"itemtype": "dist_samesuper",1826"labeltype": "sub"1827},1828{1829"item": "sparrow",1830"label": "a parrot",1831"itemtype": "dist_samesuper",1832"labeltype": "sub"1833},1834{1835"item": "sparrow",1836"label": "a pigeon",1837"itemtype": "dist_samesuper",1838"labeltype": "sub"1839},1840{1841"item": "greyhound",1842"label": "a dalmatian",1843"itemtype": "dist_samesuper",1844"labeltype": "sub"1845},1846{1847"item": "greyhound",1848"label": "a German Shepherd",1849"itemtype": "dist_samesuper",1850"labeltype": "sub"1851},1852{1853"item": "greyhound",1854"label": "a husky",1855"itemtype": "dist_samesuper",1856"labeltype": "sub"1857},1858{1859"item": "greyhound",1860"label": "a pug",1861"itemtype": "dist_samesuper",1862"labeltype": "sub"1863},1864{1865"item": "candycorn",1866"label": "gummybears",1867"itemtype": "dist_samesuper",1868"labeltype": "sub"1869},1870{1871"item": "candycorn",1872"label": "jellybeans",1873"itemtype": "dist_samesuper",1874"labeltype": "sub"1875},1876{1877"item": "candycorn",1878"label": "M&Ms",1879"itemtype": "dist_samesuper",1880"labeltype": "sub"1881},1882{1883"item": "candycorn",1884"label": "skittles",1885"itemtype": "dist_samesuper",1886"labeltype": "sub"1887},1888{1889"item": "lily",1890"label": "a daisy",1891"itemtype": "dist_samesuper",1892"labeltype": "sub"1893},1894{1895"item": "lily",1896"label": "a rose",1897"itemtype": "dist_samesuper",1898"labeltype": "sub"1899},1900{1901"item": "lily",1902"label": "a sunflower",1903"itemtype": "dist_samesuper",1904"labeltype": "sub"1905},1906{1907"item": "lily",1908"label": "a tulip",1909"itemtype": "dist_samesuper",1910"labeltype": "sub"1911},1912{1913"item": "sedan",1914"label": "a convertible",1915"itemtype": "dist_samesuper",1916"labeltype": "sub"1917},1918{1919"item": "sedan",1920"label": "a minivan",1921"itemtype": "dist_samesuper",1922"labeltype": "sub"1923},1924{1925"item": "sedan",1926"label": "a sports car",1927"itemtype": "dist_samesuper",1928"labeltype": "sub"1929},1930{1931"item": "sedan",1932"label": "an SUV",1933"itemtype": "dist_samesuper",1934"labeltype": "sub"1935},1936{1937"item": "discusfish",1938"label": "a catfish",1939"itemtype": "dist_samesuper",1940"labeltype": "sub"1941},1942{1943"item": "discusfish",1944"label": "a clownfish",1945"itemtype": "dist_samesuper",1946"labeltype": "sub"1947},1948{1949"item": "discusfish",1950"label": "a goldfish",1951"itemtype": "dist_samesuper",1952"labeltype": "sub"1953},1954{1955"item": "discusfish",1956"label": "a swordfish",1957"itemtype": "dist_samesuper",1958"labeltype": "sub"1959},1960{1961"item": "campshirt",1962"label": "a dress shirt",1963"itemtype": "dist_samesuper",1964"labeltype": "sub"1965},1966{1967"item": "campshirt",1968"label": "a Hawaii shirt",1969"itemtype": "dist_samesuper",1970"labeltype": "sub"1971},1972{1973"item": "campshirt",1974"label": "a polo shirt",1975"itemtype": "dist_samesuper",1976"labeltype": "sub"1977},1978{1979"item": "campshirt",1980"label": "a t-shirt",1981"itemtype": "dist_samesuper",1982"labeltype": "sub"1983},1984{1985"item": "sidetable",1986"label": "a bedside table",1987"itemtype": "dist_samesuper",1988"labeltype": "sub"1989},1990{1991"item": "sidetable",1992"label": "a coffee table",1993"itemtype": "dist_samesuper",1994"labeltype": "sub"1995},1996{1997"item": "sidetable",1998"label": "a dining table",1999"itemtype": "dist_samesuper",2000"labeltype": "sub"2001},2002{2003"item": "sidetable",2004"label": "a picnic table",2005"itemtype": "dist_samesuper",2006"labeltype": "sub"2007},2008{2009"item": "koalabear",2010"label": "a bear",2011"itemtype": "dist_samesuper",2012"labeltype": "basic"2013},2014{2015"item": "greyhound",2016"label": "a dog",2017"itemtype": "dist_samesuper",2018"labeltype": "basic"2019},2020{2021"item": "candycorn",2022"label": "candy",2023"itemtype": "dist_samesuper",2024"labeltype": "basic"2025},2026{2027"item": "sidetable",2028"label": "a table",2029"itemtype": "dist_samesuper",2030"labeltype": "basic"2031},2032{2033"item": "campshirt",2034"label": "a shirt",2035"itemtype": "dist_samesuper",2036"labeltype": "basic"2037},2038{2039"item": "discusfish",2040"label": "a fish",2041"itemtype": "dist_samesuper",2042"labeltype": "basic"2043},2044{2045"item": "sparrow",2046"label": "a bird",2047"itemtype": "dist_samesuper",2048"labeltype": "basic"2049},2050{2051"item": "lily",2052"label": "a flower",2053"itemtype": "dist_samesuper",2054"labeltype": "basic"2055},2056{2057"item": "sedan",2058"label": "a car",2059"itemtype": "dist_samesuper",2060"labeltype": "basic"2061},2062{2063"item": "koalabear",2064"label": "an animal",2065"itemtype": "dist_samesuper",2066"labeltype": "super"2067},2068{2069"item": "greyhound",2070"label": "an animal",2071"itemtype": "dist_samesuper",2072"labeltype": "super"2073},2074{2075"item": "candycorn",2076"label": "a snack",2077"itemtype": "dist_samesuper",2078"labeltype": "super"2079},2080{2081"item": "sidetable",2082"label": "furniture",2083"itemtype": "dist_samesuper",2084"labeltype": "super"2085},2086{2087"item": "campshirt",2088"label": "clothing",2089"itemtype": "dist_samesuper",2090"labeltype": "super"2091},2092{2093"item": "discusfish",2094"label": "an animal",2095"itemtype": "dist_samesuper",2096"labeltype": "super"2097},2098{2099"item": "sparrow",2100"label": "an animal",2101"itemtype": "dist_samesuper",2102"labeltype": "super"2103},2104{2105"item": "lily",2106"label": "a plant",2107"itemtype": "dist_samesuper",2108"labeltype": "super"2109},2110{2111"item": "sedan",2112"label": "a vehicle",2113"itemtype": "dist_samesuper",2114"labeltype": "super"2115},2116{2117"item": "ambulance",2118"label": "a sports car",2119"itemtype": "dist_samesuper",2120"labeltype": "sub"2121},2122{2123"item": "ambulance",2124"label": "a convertible",2125"itemtype": "dist_samesuper",2126"labeltype": "sub"2127},2128{2129"item": "ambulance",2130"label": "an SUV",2131"itemtype": "dist_samesuper",2132"labeltype": "sub"2133},2134{2135"item": "ambulance",2136"label": "a minivan",2137"itemtype": "dist_samesuper",2138"labeltype": "sub"2139},2140{2141"item": "ambulance",2142"label": "a car",2143"itemtype": "dist_samesuper",2144"labeltype": "basic"2145},2146{2147"item": "ambulance",2148"label": "a vehicle",2149"itemtype": "dist_samesuper",2150"labeltype": "super"2151},2152{2153"item": "bathrobe",2154"label": "a t-shirt",2155"itemtype": "dist_samesuper",2156"labeltype": "sub"2157},2158{2159"item": "bathrobe",2160"label": "a dress shirt",2161"itemtype": "dist_samesuper",2162"labeltype": "sub"2163},2164{2165"item": "bathrobe",2166"label": "a Hawaii shirt",2167"itemtype": "dist_samesuper",2168"labeltype": "sub"2169},2170{2171"item": "bathrobe",2172"label": "a polo shirt",2173"itemtype": "dist_samesuper",2174"labeltype": "sub"2175},2176{2177"item": "bathrobe",2178"label": "a shirt",2179"itemtype": "dist_samesuper",2180"labeltype": "basic"2181},2182{2183"item": "bathrobe",2184"label": "clothing",2185"itemtype": "dist_samesuper",2186"labeltype": "super"2187},2188{2189"item": "bed",2190"label": "a coffee table",2191"itemtype": "dist_samesuper",2192"labeltype": "sub"2193},2194{2195"item": "bed",2196"label": "a picnic table",2197"itemtype": "dist_samesuper",2198"labeltype": "sub"2199},2200{2201"item": "bed",2202"label": "a dining table",2203"itemtype": "dist_samesuper",2204"labeltype": "sub"2205},2206{2207"item": "bed",2208"label": "a table",2209"itemtype": "dist_samesuper",2210"labeltype": "basic"2211},2212{2213"item": "bed",2214"label": "furniture",2215"itemtype": "dist_samesuper",2216"labeltype": "super"2217},2218{2219"item": "bed",2220"label": "a bedside table",2221"itemtype": "dist_samesuper",2222"labeltype": "sub"2223},2224{2225"item": "bison",2226"label": "a panda bear",2227"itemtype": "dist_samesuper",2228"labeltype": "sub"2229},2230{2231"item": "bison",2232"label": "a hummingbird",2233"itemtype": "dist_samesuper",2234"labeltype": "sub"2235},2236{2237"item": "bison",2238"label": "a polar bear",2239"itemtype": "dist_samesuper",2240"labeltype": "sub"2241},2242{2243"item": "bison",2244"label": "a goldfish",2245"itemtype": "dist_samesuper",2246"labeltype": "sub"2247},2248{2249"item": "bison",2250"label": "a pug",2251"itemtype": "dist_samesuper",2252"labeltype": "sub"2253},2254{2255"item": "bison",2256"label": "a parrot",2257"itemtype": "dist_samesuper",2258"labeltype": "sub"2259},2260{2261"item": "bison",2262"label": "a swordfish",2263"itemtype": "dist_samesuper",2264"labeltype": "sub"2265},2266{2267"item": "bison",2268"label": "a black bear",2269"itemtype": "dist_samesuper",2270"labeltype": "sub"2271},2272{2273"item": "bison",2274"label": "an eagle",2275"itemtype": "dist_samesuper",2276"labeltype": "sub"2277},2278{2279"item": "bison",2280"label": "a catfish",2281"itemtype": "dist_samesuper",2282"labeltype": "sub"2283},2284{2285"item": "bison",2286"label": "a clownfish",2287"itemtype": "dist_samesuper",2288"labeltype": "sub"2289},2290{2291"item": "bison",2292"label": "a dalmatian",2293"itemtype": "dist_samesuper",2294"labeltype": "sub"2295},2296{2297"item": "bison",2298"label": "a German Shepherd",2299"itemtype": "dist_samesuper",2300"labeltype": "sub"2301},2302{2303"item": "bison",2304"label": "a bear",2305"itemtype": "dist_samesuper",2306"labeltype": "basic"2307},2308{2309"item": "bison",2310"label": "a bird",2311"itemtype": "dist_samesuper",2312"labeltype": "basic"2313},2314{2315"item": "bison",2316"label": "a fish",2317"itemtype": "dist_samesuper",2318"labeltype": "basic"2319},2320{2321"item": "bison",2322"label": "a dog",2323"itemtype": "dist_samesuper",2324"labeltype": "basic"2325},2326{2327"item": "bison",2328"label": "an animal",2329"itemtype": "dist_samesuper",2330"labeltype": "super"2331},2332{2333"item": "bison",2334"label": "a grizzly bear",2335"itemtype": "dist_samesuper",2336"labeltype": "sub"2337},2338{2339"item": "bookcase",2340"label": "a coffee table",2341"itemtype": "dist_samesuper",2342"labeltype": "sub"2343},2344{2345"item": "bookcase",2346"label": "a picnic table",2347"itemtype": "dist_samesuper",2348"labeltype": "sub"2349},2350{2351"item": "bookcase",2352"label": "a dining table",2353"itemtype": "dist_samesuper",2354"labeltype": "sub"2355},2356{2357"item": "bookcase",2358"label": "a bedside table",2359"itemtype": "dist_samesuper",2360"labeltype": "sub"2361},2362{2363"item": "bookcase",2364"label": "a table",2365"itemtype": "dist_samesuper",2366"labeltype": "basic"2367},2368{2369"item": "bookcase",2370"label": "furniture",2371"itemtype": "dist_samesuper",2372"labeltype": "super"2373},2374{2375"item": "chick",2376"label": "a parrot",2377"itemtype": "dist_samesuper",2378"labeltype": "sub"2379},2380{2381"item": "chick",2382"label": "a husky",2383"itemtype": "dist_samesuper",2384"labeltype": "sub"2385},2386{2387"item": "chick",2388"label": "a polar bear",2389"itemtype": "dist_samesuper",2390"labeltype": "sub"2391},2392{2393"item": "chick",2394"label": "a pigeon",2395"itemtype": "dist_samesuper",2396"labeltype": "sub"2397},2398{2399"item": "chick",2400"label": "a catfish",2401"itemtype": "dist_samesuper",2402"labeltype": "sub"2403},2404{2405"item": "chick",2406"label": "a German Shepherd",2407"itemtype": "dist_samesuper",2408"labeltype": "sub"2409},2410{2411"item": "chick",2412"label": "a panda bear",2413"itemtype": "dist_samesuper",2414"labeltype": "sub"2415},2416{2417"item": "chick",2418"label": "a pug",2419"itemtype": "dist_samesuper",2420"labeltype": "sub"2421},2422{2423"item": "chick",2424"label": "a hummingbird",2425"itemtype": "dist_samesuper",2426"labeltype": "sub"2427},2428{2429"item": "chick",2430"label": "a goldfish",2431"itemtype": "dist_samesuper",2432"labeltype": "sub"2433},2434{2435"item": "chick",2436"label": "a swordfish",2437"itemtype": "dist_samesuper",2438"labeltype": "sub"2439},2440{2441"item": "chick",2442"label": "a dog",2443"itemtype": "dist_samesuper",2444"labeltype": "basic"2445},2446{2447"item": "chick",2448"label": "a bird",2449"itemtype": "dist_samesuper",2450"labeltype": "basic"2451},2452{2453"item": "chick",2454"label": "a bear",2455"itemtype": "dist_samesuper",2456"labeltype": "basic"2457},2458{2459"item": "chick",2460"label": "a fish",2461"itemtype": "dist_samesuper",2462"labeltype": "basic"2463},2464{2465"item": "chick",2466"label": "an animal",2467"itemtype": "dist_samesuper",2468"labeltype": "super"2469},2470{2471"item": "chick",2472"label": "a black bear",2473"itemtype": "dist_samesuper",2474"labeltype": "sub"2475},2476{2477"item": "chick",2478"label": "a dalmatian",2479"itemtype": "dist_samesuper",2480"labeltype": "sub"2481},2482{2483"item": "chips",2484"label": "M&Ms",2485"itemtype": "dist_samesuper",2486"labeltype": "sub"2487},2488{2489"item": "chips",2490"label": "gummybears",2491"itemtype": "dist_samesuper",2492"labeltype": "sub"2493},2494{2495"item": "chips",2496"label": "skittles",2497"itemtype": "dist_samesuper",2498"labeltype": "sub"2499},2500{2501"item": "chips",2502"label": "jellybeans",2503"itemtype": "dist_samesuper",2504"labeltype": "sub"2505},2506{2507"item": "chips",2508"label": "candy",2509"itemtype": "dist_samesuper",2510"labeltype": "basic"2511},2512{2513"item": "chips",2514"label": "a snack",2515"itemtype": "dist_samesuper",2516"labeltype": "super"2517},2518{2519"item": "cookies",2520"label": "skittles",2521"itemtype": "dist_samesuper",2522"labeltype": "sub"2523},2524{2525"item": "cookies",2526"label": "jellybeans",2527"itemtype": "dist_samesuper",2528"labeltype": "sub"2529},2530{2531"item": "cookies",2532"label": "M&Ms",2533"itemtype": "dist_samesuper",2534"labeltype": "sub"2535},2536{2537"item": "cookies",2538"label": "gummybears",2539"itemtype": "dist_samesuper",2540"labeltype": "sub"2541},2542{2543"item": "cookies",2544"label": "candy",2545"itemtype": "dist_samesuper",2546"labeltype": "basic"2547},2548{2549"item": "cookies",2550"label": "a snack",2551"itemtype": "dist_samesuper",2552"labeltype": "super"2553},2554{2555"item": "cow",2556"label": "a catfish",2557"itemtype": "dist_samesuper",2558"labeltype": "sub"2559},2560{2561"item": "cow",2562"label": "a polar bear",2563"itemtype": "dist_samesuper",2564"labeltype": "sub"2565},2566{2567"item": "cow",2568"label": "a grizzly bear",2569"itemtype": "dist_samesuper",2570"labeltype": "sub"2571},2572{2573"item": "cow",2574"label": "a black bear",2575"itemtype": "dist_samesuper",2576"labeltype": "sub"2577},2578{2579"item": "cow",2580"label": "a German Shepherd",2581"itemtype": "dist_samesuper",2582"labeltype": "sub"2583},2584{2585"item": "cow",2586"label": "a goldfish",2587"itemtype": "dist_samesuper",2588"labeltype": "sub"2589},2590{2591"item": "cow",2592"label": "a panda bear",2593"itemtype": "dist_samesuper",2594"labeltype": "sub"2595},2596{2597"item": "cow",2598"label": "a swordfish",2599"itemtype": "dist_samesuper",2600"labeltype": "sub"2601},2602{2603"item": "cow",2604"label": "a husky",2605"itemtype": "dist_samesuper",2606"labeltype": "sub"2607},2608{2609"item": "cow",2610"label": "an eagle",2611"itemtype": "dist_samesuper",2612"labeltype": "sub"2613},2614{2615"item": "cow",2616"label": "a clownfish",2617"itemtype": "dist_samesuper",2618"labeltype": "sub"2619},2620{2621"item": "cow",2622"label": "a dalmatian",2623"itemtype": "dist_samesuper",2624"labeltype": "sub"2625},2626{2627"item": "cow",2628"label": "a parrot",2629"itemtype": "dist_samesuper",2630"labeltype": "sub"2631},2632{2633"item": "cow",2634"label": "a fish",2635"itemtype": "dist_samesuper",2636"labeltype": "basic"2637},2638{2639"item": "cow",2640"label": "a bear",2641"itemtype": "dist_samesuper",2642"labeltype": "basic"2643},2644{2645"item": "cow",2646"label": "a dog",2647"itemtype": "dist_samesuper",2648"labeltype": "basic"2649},2650{2651"item": "cow",2652"label": "a bird",2653"itemtype": "dist_samesuper",2654"labeltype": "basic"2655},2656{2657"item": "cow",2658"label": "an animal",2659"itemtype": "dist_samesuper",2660"labeltype": "super"2661},2662{2663"item": "cow",2664"label": "a pigeon",2665"itemtype": "dist_samesuper",2666"labeltype": "sub"2667},2668{2669"item": "crocodile",2670"label": "a pigeon",2671"itemtype": "dist_samesuper",2672"labeltype": "sub"2673},2674{2675"item": "crocodile",2676"label": "a grizzly bear",2677"itemtype": "dist_samesuper",2678"labeltype": "sub"2679},2680{2681"item": "crocodile",2682"label": "a German Shepherd",2683"itemtype": "dist_samesuper",2684"labeltype": "sub"2685},2686{2687"item": "crocodile",2688"label": "a husky",2689"itemtype": "dist_samesuper",2690"labeltype": "sub"2691},2692{2693"item": "crocodile",2694"label": "a pug",2695"itemtype": "dist_samesuper",2696"labeltype": "sub"2697},2698{2699"item": "crocodile",2700"label": "a polar bear",2701"itemtype": "dist_samesuper",2702"labeltype": "sub"2703},2704{2705"item": "crocodile",2706"label": "a panda bear",2707"itemtype": "dist_samesuper",2708"labeltype": "sub"2709},2710{2711"item": "crocodile",2712"label": "a dalmatian",2713"itemtype": "dist_samesuper",2714"labeltype": "sub"2715},2716{2717"item": "crocodile",2718"label": "a bird",2719"itemtype": "dist_samesuper",2720"labeltype": "basic"2721},2722{2723"item": "crocodile",2724"label": "a bear",2725"itemtype": "dist_samesuper",2726"labeltype": "basic"2727},2728{2729"item": "crocodile",2730"label": "a dog",2731"itemtype": "dist_samesuper",2732"labeltype": "basic"2733},2734{2735"item": "crocodile",2736"label": "an animal",2737"itemtype": "dist_samesuper",2738"labeltype": "super"2739},2740{2741"item": "crocodile",2742"label": "a parrot",2743"itemtype": "dist_samesuper",2744"labeltype": "sub"2745},2746{2747"item": "crocodile",2748"label": "a hummingbird",2749"itemtype": "dist_samesuper",2750"labeltype": "sub"2751},2752{2753"item": "crocodile",2754"label": "a clownfish",2755"itemtype": "dist_samesuper",2756"labeltype": "sub"2757},2758{2759"item": "crocodile",2760"label": "a fish",2761"itemtype": "dist_samesuper",2762"labeltype": "basic"2763},2764{2765"item": "dress",2766"label": "a Hawaii shirt",2767"itemtype": "dist_samesuper",2768"labeltype": "sub"2769},2770{2771"item": "dress",2772"label": "a polo shirt",2773"itemtype": "dist_samesuper",2774"labeltype": "sub"2775},2776{2777"item": "dress",2778"label": "a t-shirt",2779"itemtype": "dist_samesuper",2780"labeltype": "sub"2781},2782{2783"item": "dress",2784"label": "a dress shirt",2785"itemtype": "dist_samesuper",2786"labeltype": "sub"2787},2788{2789"item": "dress",2790"label": "a shirt",2791"itemtype": "dist_samesuper",2792"labeltype": "basic"2793},2794{2795"item": "dress",2796"label": "clothing",2797"itemtype": "dist_samesuper",2798"labeltype": "super"2799},2800{2801"item": "elephant",2802"label": "a panda bear",2803"itemtype": "dist_samesuper",2804"labeltype": "sub"2805},2806{2807"item": "elephant",2808"label": "an eagle",2809"itemtype": "dist_samesuper",2810"labeltype": "sub"2811},2812{2813"item": "elephant",2814"label": "a swordfish",2815"itemtype": "dist_samesuper",2816"labeltype": "sub"2817},2818{2819"item": "elephant",2820"label": "a hummingbird",2821"itemtype": "dist_samesuper",2822"labeltype": "sub"2823},2824{2825"item": "elephant",2826"label": "a parrot",2827"itemtype": "dist_samesuper",2828"labeltype": "sub"2829},2830{2831"item": "elephant",2832"label": "a black bear",2833"itemtype": "dist_samesuper",2834"labeltype": "sub"2835},2836{2837"item": "elephant",2838"label": "a polar bear",2839"itemtype": "dist_samesuper",2840"labeltype": "sub"2841},2842{2843"item": "elephant",2844"label": "a catfish",2845"itemtype": "dist_samesuper",2846"labeltype": "sub"2847},2848{2849"item": "elephant",2850"label": "a pigeon",2851"itemtype": "dist_samesuper",2852"labeltype": "sub"2853},2854{2855"item": "elephant",2856"label": "a German Shepherd",2857"itemtype": "dist_samesuper",2858"labeltype": "sub"2859},2860{2861"item": "elephant",2862"label": "a clownfish",2863"itemtype": "dist_samesuper",2864"labeltype": "sub"2865},2866{2867"item": "elephant",2868"label": "a grizzly bear",2869"itemtype": "dist_samesuper",2870"labeltype": "sub"2871},2872{2873"item": "elephant",2874"label": "a bear",2875"itemtype": "dist_samesuper",2876"labeltype": "basic"2877},2878{2879"item": "elephant",2880"label": "a bird",2881"itemtype": "dist_samesuper",2882"labeltype": "basic"2883},2884{2885"item": "elephant",2886"label": "a fish",2887"itemtype": "dist_samesuper",2888"labeltype": "basic"2889},2890{2891"item": "elephant",2892"label": "a dog",2893"itemtype": "dist_samesuper",2894"labeltype": "basic"2895},2896{2897"item": "elephant",2898"label": "an animal",2899"itemtype": "dist_samesuper",2900"labeltype": "super"2901},2902{2903"item": "elephant",2904"label": "a dalmatian",2905"itemtype": "dist_samesuper",2906"labeltype": "sub"2907},2908{2909"item": "firetruck",2910"label": "a convertible",2911"itemtype": "dist_samesuper",2912"labeltype": "sub"2913},2914{2915"item": "firetruck",2916"label": "a sports car",2917"itemtype": "dist_samesuper",2918"labeltype": "sub"2919},2920{2921"item": "firetruck",2922"label": "an SUV",2923"itemtype": "dist_samesuper",2924"labeltype": "sub"2925},2926{2927"item": "firetruck",2928"label": "a minivan",2929"itemtype": "dist_samesuper",2930"labeltype": "sub"2931},2932{2933"item": "firetruck",2934"label": "a car",2935"itemtype": "dist_samesuper",2936"labeltype": "basic"2937},2938{2939"item": "firetruck",2940"label": "a vehicle",2941"itemtype": "dist_samesuper",2942"labeltype": "super"2943},2944{2945"item": "gloves",2946"label": "a polo shirt",2947"itemtype": "dist_samesuper",2948"labeltype": "sub"2949},2950{2951"item": "gloves",2952"label": "a Hawaii shirt",2953"itemtype": "dist_samesuper",2954"labeltype": "sub"2955},2956{2957"item": "gloves",2958"label": "a t-shirt",2959"itemtype": "dist_samesuper",2960"labeltype": "sub"2961},2962{2963"item": "gloves",2964"label": "a dress shirt",2965"itemtype": "dist_samesuper",2966"labeltype": "sub"2967},2968{2969"item": "gloves",2970"label": "a shirt",2971"itemtype": "dist_samesuper",2972"labeltype": "basic"2973},2974{2975"item": "gloves",2976"label": "clothing",2977"itemtype": "dist_samesuper",2978"labeltype": "super"2979},2980{2981"item": "grasses",2982"label": "a rose",2983"itemtype": "dist_samesuper",2984"labeltype": "sub"2985},2986{2987"item": "grasses",2988"label": "a sunflower",2989"itemtype": "dist_samesuper",2990"labeltype": "sub"2991},2992{2993"item": "grasses",2994"label": "a daisy",2995"itemtype": "dist_samesuper",2996"labeltype": "sub"2997},2998{2999"item": "grasses",3000"label": "a tulip",3001"itemtype": "dist_samesuper",3002"labeltype": "sub"3003},3004{3005"item": "grasses",3006"label": "a flower",3007"itemtype": "dist_samesuper",3008"labeltype": "basic"3009},3010{3011"item": "grasses",3012"label": "a plant",3013"itemtype": "dist_samesuper",3014"labeltype": "super"3015},3016{3017"item": "horse",3018"label": "a goldfish",3019"itemtype": "dist_samesuper",3020"labeltype": "sub"3021},3022{3023"item": "horse",3024"label": "a clownfish",3025"itemtype": "dist_samesuper",3026"labeltype": "sub"3027},3028{3029"item": "horse",3030"label": "a German Shepherd",3031"itemtype": "dist_samesuper",3032"labeltype": "sub"3033},3034{3035"item": "horse",3036"label": "a husky",3037"itemtype": "dist_samesuper",3038"labeltype": "sub"3039},3040{3041"item": "horse",3042"label": "a dalmatian",3043"itemtype": "dist_samesuper",3044"labeltype": "sub"3045},3046{3047"item": "horse",3048"label": "a hummingbird",3049"itemtype": "dist_samesuper",3050"labeltype": "sub"3051},3052{3053"item": "horse",3054"label": "a swordfish",3055"itemtype": "dist_samesuper",3056"labeltype": "sub"3057},3058{3059"item": "horse",3060"label": "a black bear",3061"itemtype": "dist_samesuper",3062"labeltype": "sub"3063},3064{3065"item": "horse",3066"label": "a panda bear",3067"itemtype": "dist_samesuper",3068"labeltype": "sub"3069},3070{3071"item": "horse",3072"label": "a grizzly bear",3073"itemtype": "dist_samesuper",3074"labeltype": "sub"3075},3076{3077"item": "horse",3078"label": "a fish",3079"itemtype": "dist_samesuper",3080"labeltype": "basic"3081},3082{3083"item": "horse",3084"label": "a dog",3085"itemtype": "dist_samesuper",3086"labeltype": "basic"3087},3088{3089"item": "horse",3090"label": "a bird",3091"itemtype": "dist_samesuper",3092"labeltype": "basic"3093},3094{3095"item": "horse",3096"label": "a bear",3097"itemtype": "dist_samesuper",3098"labeltype": "basic"3099},3100{3101"item": "horse",3102"label": "an animal",3103"itemtype": "dist_samesuper",3104"labeltype": "super"3105},3106{3107"item": "horse",3108"label": "an eagle",3109"itemtype": "dist_samesuper",3110"labeltype": "sub"3111},3112{3113"item": "horse",3114"label": "a catfish",3115"itemtype": "dist_samesuper",3116"labeltype": "sub"3117},3118{3119"item": "horse",3120"label": "a polar bear",3121"itemtype": "dist_samesuper",3122"labeltype": "sub"3123},3124{3125"item": "iguana",3126"label": "a catfish",3127"itemtype": "dist_samesuper",3128"labeltype": "sub"3129},3130{3131"item": "iguana",3132"label": "a pigeon",3133"itemtype": "dist_samesuper",3134"labeltype": "sub"3135},3136{3137"item": "iguana",3138"label": "a swordfish",3139"itemtype": "dist_samesuper",3140"labeltype": "sub"3141},3142{3143"item": "iguana",3144"label": "a German Shepherd",3145"itemtype": "dist_samesuper",3146"labeltype": "sub"3147},3148{3149"item": "iguana",3150"label": "a panda bear",3151"itemtype": "dist_samesuper",3152"labeltype": "sub"3153},3154{3155"item": "iguana",3156"label": "a clownfish",3157"itemtype": "dist_samesuper",3158"labeltype": "sub"3159},3160{3161"item": "iguana",3162"label": "a goldfish",3163"itemtype": "dist_samesuper",3164"labeltype": "sub"3165},3166{3167"item": "iguana",3168"label": "a black bear",3169"itemtype": "dist_samesuper",3170"labeltype": "sub"3171},3172{3173"item": "iguana",3174"label": "a pug",3175"itemtype": "dist_samesuper",3176"labeltype": "sub"3177},3178{3179"item": "iguana",3180"label": "a grizzly bear",3181"itemtype": "dist_samesuper",3182"labeltype": "sub"3183},3184{3185"item": "iguana",3186"label": "a parrot",3187"itemtype": "dist_samesuper",3188"labeltype": "sub"3189},3190{3191"item": "iguana",3192"label": "a fish",3193"itemtype": "dist_samesuper",3194"labeltype": "basic"3195},3196{3197"item": "iguana",3198"label": "a bird",3199"itemtype": "dist_samesuper",3200"labeltype": "basic"3201},3202{3203"item": "iguana",3204"label": "a dog",3205"itemtype": "dist_samesuper",3206"labeltype": "basic"3207},3208{3209"item": "iguana",3210"label": "a bear",3211"itemtype": "dist_samesuper",3212"labeltype": "basic"3213},3214{3215"item": "iguana",3216"label": "an animal",3217"itemtype": "dist_samesuper",3218"labeltype": "super"3219},3220{3221"item": "iguana",3222"label": "an eagle",3223"itemtype": "dist_samesuper",3224"labeltype": "sub"3225},3226{3227"item": "iguana",3228"label": "a husky",3229"itemtype": "dist_samesuper",3230"labeltype": "sub"3231},3232{3233"item": "ivy",3234"label": "a sunflower",3235"itemtype": "dist_samesuper",3236"labeltype": "sub"3237},3238{3239"item": "ivy",3240"label": "a tulip",3241"itemtype": "dist_samesuper",3242"labeltype": "sub"3243},3244{3245"item": "ivy",3246"label": "a daisy",3247"itemtype": "dist_samesuper",3248"labeltype": "sub"3249},3250{3251"item": "ivy",3252"label": "a rose",3253"itemtype": "dist_samesuper",3254"labeltype": "sub"3255},3256{3257"item": "ivy",3258"label": "a flower",3259"itemtype": "dist_samesuper",3260"labeltype": "basic"3261},3262{3263"item": "ivy",3264"label": "a plant",3265"itemtype": "dist_samesuper",3266"labeltype": "super"3267},3268{3269"item": "kitten",3270"label": "a goldfish",3271"itemtype": "dist_samesuper",3272"labeltype": "sub"3273},3274{3275"item": "kitten",3276"label": "a panda bear",3277"itemtype": "dist_samesuper",3278"labeltype": "sub"3279},3280{3281"item": "kitten",3282"label": "a German Shepherd",3283"itemtype": "dist_samesuper",3284"labeltype": "sub"3285},3286{3287"item": "kitten",3288"label": "a pigeon",3289"itemtype": "dist_samesuper",3290"labeltype": "sub"3291},3292{3293"item": "kitten",3294"label": "a black bear",3295"itemtype": "dist_samesuper",3296"labeltype": "sub"3297},3298{3299"item": "kitten",3300"label": "a polar bear",3301"itemtype": "dist_samesuper",3302"labeltype": "sub"3303},3304{3305"item": "kitten",3306"label": "a swordfish",3307"itemtype": "dist_samesuper",3308"labeltype": "sub"3309},3310{3311"item": "kitten",3312"label": "a parrot",3313"itemtype": "dist_samesuper",3314"labeltype": "sub"3315},3316{3317"item": "kitten",3318"label": "a clownfish",3319"itemtype": "dist_samesuper",3320"labeltype": "sub"3321},3322{3323"item": "kitten",3324"label": "a catfish",3325"itemtype": "dist_samesuper",3326"labeltype": "sub"3327},3328{3329"item": "kitten",3330"label": "a hummingbird",3331"itemtype": "dist_samesuper",3332"labeltype": "sub"3333},3334{3335"item": "kitten",3336"label": "a grizzly bear",3337"itemtype": "dist_samesuper",3338"labeltype": "sub"3339},3340{3341"item": "kitten",3342"label": "a pug",3343"itemtype": "dist_samesuper",3344"labeltype": "sub"3345},3346{3347"item": "kitten",3348"label": "a fish",3349"itemtype": "dist_samesuper",3350"labeltype": "basic"3351},3352{3353"item": "kitten",3354"label": "a bear",3355"itemtype": "dist_samesuper",3356"labeltype": "basic"3357},3358{3359"item": "kitten",3360"label": "a dog",3361"itemtype": "dist_samesuper",3362"labeltype": "basic"3363},3364{3365"item": "kitten",3366"label": "a bird",3367"itemtype": "dist_samesuper",3368"labeltype": "basic"3369},3370{3371"item": "kitten",3372"label": "an animal",3373"itemtype": "dist_samesuper",3374"labeltype": "super"3375},3376{3377"item": "kitten",3378"label": "a dalmatian",3379"itemtype": "dist_samesuper",3380"labeltype": "sub"3381},3382{3383"item": "lamp",3384"label": "a bedside table",3385"itemtype": "dist_samesuper",3386"labeltype": "sub"3387},3388{3389"item": "lamp",3390"label": "a picnic table",3391"itemtype": "dist_samesuper",3392"labeltype": "sub"3393},3394{3395"item": "lamp",3396"label": "a dining table",3397"itemtype": "dist_samesuper",3398"labeltype": "sub"3399},3400{3401"item": "lamp",3402"label": "a table",3403"itemtype": "dist_samesuper",3404"labeltype": "basic"3405},3406{3407"item": "lamp",3408"label": "furniture",3409"itemtype": "dist_samesuper",3410"labeltype": "super"3411},3412{3413"item": "lamp",3414"label": "a coffee table",3415"itemtype": "dist_samesuper",3416"labeltype": "sub"3417},3418{3419"item": "lion",3420"label": "a German Shepherd",3421"itemtype": "dist_samesuper",3422"labeltype": "sub"3423},3424{3425"item": "lion",3426"label": "a pug",3427"itemtype": "dist_samesuper",3428"labeltype": "sub"3429},3430{3431"item": "lion",3432"label": "a catfish",3433"itemtype": "dist_samesuper",3434"labeltype": "sub"3435},3436{3437"item": "lion",3438"label": "a parrot",3439"itemtype": "dist_samesuper",3440"labeltype": "sub"3441},3442{3443"item": "lion",3444"label": "an eagle",3445"itemtype": "dist_samesuper",3446"labeltype": "sub"3447},3448{3449"item": "lion",3450"label": "a swordfish",3451"itemtype": "dist_samesuper",3452"labeltype": "sub"3453},3454{3455"item": "lion",3456"label": "a goldfish",3457"itemtype": "dist_samesuper",3458"labeltype": "sub"3459},3460{3461"item": "lion",3462"label": "a dog",3463"itemtype": "dist_samesuper",3464"labeltype": "basic"3465},3466{3467"item": "lion",3468"label": "a fish",3469"itemtype": "dist_samesuper",3470"labeltype": "basic"3471},3472{3473"item": "lion",3474"label": "a bird",3475"itemtype": "dist_samesuper",3476"labeltype": "basic"3477},3478{3479"item": "lion",3480"label": "an animal",3481"itemtype": "dist_samesuper",3482"labeltype": "super"3483},3484{3485"item": "lion",3486"label": "a black bear",3487"itemtype": "dist_samesuper",3488"labeltype": "sub"3489},3490{3491"item": "lion",3492"label": "a clownfish",3493"itemtype": "dist_samesuper",3494"labeltype": "sub"3495},3496{3497"item": "lion",3498"label": "a pigeon",3499"itemtype": "dist_samesuper",3500"labeltype": "sub"3501},3502{3503"item": "lion",3504"label": "a grizzly bear",3505"itemtype": "dist_samesuper",3506"labeltype": "sub"3507},3508{3509"item": "lion",3510"label": "a hummingbird",3511"itemtype": "dist_samesuper",3512"labeltype": "sub"3513},3514{3515"item": "lion",3516"label": "a polar bear",3517"itemtype": "dist_samesuper",3518"labeltype": "sub"3519},3520{3521"item": "lion",3522"label": "a dalmatian",3523"itemtype": "dist_samesuper",3524"labeltype": "sub"3525},3526{3527"item": "lion",3528"label": "a bear",3529"itemtype": "dist_samesuper",3530"labeltype": "basic"3531},3532{3533"item": "lobster",3534"label": "a parrot",3535"itemtype": "dist_samesuper",3536"labeltype": "sub"3537},3538{3539"item": "lobster",3540"label": "a husky",3541"itemtype": "dist_samesuper",3542"labeltype": "sub"3543},3544{3545"item": "lobster",3546"label": "a pug",3547"itemtype": "dist_samesuper",3548"labeltype": "sub"3549},3550{3551"item": "lobster",3552"label": "a black bear",3553"itemtype": "dist_samesuper",3554"labeltype": "sub"3555},3556{3557"item": "lobster",3558"label": "a catfish",3559"itemtype": "dist_samesuper",3560"labeltype": "sub"3561},3562{3563"item": "lobster",3564"label": "a grizzly bear",3565"itemtype": "dist_samesuper",3566"labeltype": "sub"3567},3568{3569"item": "lobster",3570"label": "a goldfish",3571"itemtype": "dist_samesuper",3572"labeltype": "sub"3573},3574{3575"item": "lobster",3576"label": "a clownfish",3577"itemtype": "dist_samesuper",3578"labeltype": "sub"3579},3580{3581"item": "lobster",3582"label": "a dalmatian",3583"itemtype": "dist_samesuper",3584"labeltype": "sub"3585},3586{3587"item": "lobster",3588"label": "a swordfish",3589"itemtype": "dist_samesuper",3590"labeltype": "sub"3591},3592{3593"item": "lobster",3594"label": "a pigeon",3595"itemtype": "dist_samesuper",3596"labeltype": "sub"3597},3598{3599"item": "lobster",3600"label": "a bird",3601"itemtype": "dist_samesuper",3602"labeltype": "basic"3603},3604{3605"item": "lobster",3606"label": "a dog",3607"itemtype": "dist_samesuper",3608"labeltype": "basic"3609},3610{3611"item": "lobster",3612"label": "a bear",3613"itemtype": "dist_samesuper",3614"labeltype": "basic"3615},3616{3617"item": "lobster",3618"label": "a fish",3619"itemtype": "dist_samesuper",3620"labeltype": "basic"3621},3622{3623"item": "lobster",3624"label": "an animal",3625"itemtype": "dist_samesuper",3626"labeltype": "super"3627},3628{3629"item": "lobster",3630"label": "a panda bear",3631"itemtype": "dist_samesuper",3632"labeltype": "sub"3633},3634{3635"item": "lobster",3636"label": "a German Shepherd",3637"itemtype": "dist_samesuper",3638"labeltype": "sub"3639},3640{3641"item": "motorcycle",3642"label": "a sports car",3643"itemtype": "dist_samesuper",3644"labeltype": "sub"3645},3646{3647"item": "motorcycle",3648"label": "a minivan",3649"itemtype": "dist_samesuper",3650"labeltype": "sub"3651},3652{3653"item": "motorcycle",3654"label": "an SUV",3655"itemtype": "dist_samesuper",3656"labeltype": "sub"3657},3658{3659"item": "motorcycle",3660"label": "a convertible",3661"itemtype": "dist_samesuper",3662"labeltype": "sub"3663},3664{3665"item": "motorcycle",3666"label": "a car",3667"itemtype": "dist_samesuper",3668"labeltype": "basic"3669},3670{3671"item": "motorcycle",3672"label": "a vehicle",3673"itemtype": "dist_samesuper",3674"labeltype": "super"3675},3676{3677"item": "pig",3678"label": "a clownfish",3679"itemtype": "dist_samesuper",3680"labeltype": "sub"3681},3682{3683"item": "pig",3684"label": "a German Shepherd",3685"itemtype": "dist_samesuper",3686"labeltype": "sub"3687},3688{3689"item": "pig",3690"label": "a polar bear",3691"itemtype": "dist_samesuper",3692"labeltype": "sub"3693},3694{3695"item": "pig",3696"label": "a catfish",3697"itemtype": "dist_samesuper",3698"labeltype": "sub"3699},3700{3701"item": "pig",3702"label": "a panda bear",3703"itemtype": "dist_samesuper",3704"labeltype": "sub"3705},3706{3707"item": "pig",3708"label": "a pug",3709"itemtype": "dist_samesuper",3710"labeltype": "sub"3711},3712{3713"item": "pig",3714"label": "a dalmatian",3715"itemtype": "dist_samesuper",3716"labeltype": "sub"3717},3718{3719"item": "pig",3720"label": "an eagle",3721"itemtype": "dist_samesuper",3722"labeltype": "sub"3723},3724{3725"item": "pig",3726"label": "a parrot",3727"itemtype": "dist_samesuper",3728"labeltype": "sub"3729},3730{3731"item": "pig",3732"label": "a pigeon",3733"itemtype": "dist_samesuper",3734"labeltype": "sub"3735},3736{3737"item": "pig",3738"label": "a swordfish",3739"itemtype": "dist_samesuper",3740"labeltype": "sub"3741},3742{3743"item": "pig",3744"label": "a fish",3745"itemtype": "dist_samesuper",3746"labeltype": "basic"3747},3748{3749"item": "pig",3750"label": "a dog",3751"itemtype": "dist_samesuper",3752"labeltype": "basic"3753},3754{3755"item": "pig",3756"label": "a bear",3757"itemtype": "dist_samesuper",3758"labeltype": "basic"3759},3760{3761"item": "pig",3762"label": "a bird",3763"itemtype": "dist_samesuper",3764"labeltype": "basic"3765},3766{3767"item": "pig",3768"label": "an animal",3769"itemtype": "dist_samesuper",3770"labeltype": "super"3771},3772{3773"item": "pig",3774"label": "a husky",3775"itemtype": "dist_samesuper",3776"labeltype": "sub"3777},3778{3779"item": "pig",3780"label": "a goldfish",3781"itemtype": "dist_samesuper",3782"labeltype": "sub"3783},3784{3785"item": "pig",3786"label": "a black bear",3787"itemtype": "dist_samesuper",3788"labeltype": "sub"3789},3790{3791"item": "pig",3792"label": "a hummingbird",3793"itemtype": "dist_samesuper",3794"labeltype": "sub"3795},3796{3797"item": "popcorn",3798"label": "gummybears",3799"itemtype": "dist_samesuper",3800"labeltype": "sub"3801},3802{3803"item": "popcorn",3804"label": "jellybeans",3805"itemtype": "dist_samesuper",3806"labeltype": "sub"3807},3808{3809"item": "popcorn",3810"label": "skittles",3811"itemtype": "dist_samesuper",3812"labeltype": "sub"3813},3814{3815"item": "popcorn",3816"label": "M&Ms",3817"itemtype": "dist_samesuper",3818"labeltype": "sub"3819},3820{3821"item": "popcorn",3822"label": "candy",3823"itemtype": "dist_samesuper",3824"labeltype": "basic"3825},3826{3827"item": "popcorn",3828"label": "a snack",3829"itemtype": "dist_samesuper",3830"labeltype": "super"3831},3832{3833"item": "pottedplant",3834"label": "a rose",3835"itemtype": "dist_samesuper",3836"labeltype": "sub"3837},3838{3839"item": "pottedplant",3840"label": "a tulip",3841"itemtype": "dist_samesuper",3842"labeltype": "sub"3843},3844{3845"item": "pottedplant",3846"label": "a daisy",3847"itemtype": "dist_samesuper",3848"labeltype": "sub"3849},3850{3851"item": "pottedplant",3852"label": "a sunflower",3853"itemtype": "dist_samesuper",3854"labeltype": "sub"3855},3856{3857"item": "pottedplant",3858"label": "a flower",3859"itemtype": "dist_samesuper",3860"labeltype": "basic"3861},3862{3863"item": "pottedplant",3864"label": "a plant",3865"itemtype": "dist_samesuper",3866"labeltype": "super"3867},3868{3869"item": "pretzels",3870"label": "M&Ms",3871"itemtype": "dist_samesuper",3872"labeltype": "sub"3873},3874{3875"item": "pretzels",3876"label": "skittles",3877"itemtype": "dist_samesuper",3878"labeltype": "sub"3879},3880{3881"item": "pretzels",3882"label": "gummybears",3883"itemtype": "dist_samesuper",3884"labeltype": "sub"3885},3886{3887"item": "pretzels",3888"label": "jellybeans",3889"itemtype": "dist_samesuper",3890"labeltype": "sub"3891},3892{3893"item": "pretzels",3894"label": "candy",3895"itemtype": "dist_samesuper",3896"labeltype": "basic"3897},3898{3899"item": "pretzels",3900"label": "a snack",3901"itemtype": "dist_samesuper",3902"labeltype": "super"3903},3904{3905"item": "rabbit",3906"label": "a panda bear",3907"itemtype": "dist_samesuper",3908"labeltype": "sub"3909},3910{3911"item": "rabbit",3912"label": "a hummingbird",3913"itemtype": "dist_samesuper",3914"labeltype": "sub"3915},3916{3917"item": "rabbit",3918"label": "a dalmatian",3919"itemtype": "dist_samesuper",3920"labeltype": "sub"3921},3922{3923"item": "rabbit",3924"label": "a pug",3925"itemtype": "dist_samesuper",3926"labeltype": "sub"3927},3928{3929"item": "rabbit",3930"label": "a pigeon",3931"itemtype": "dist_samesuper",3932"labeltype": "sub"3933},3934{3935"item": "rabbit",3936"label": "a goldfish",3937"itemtype": "dist_samesuper",3938"labeltype": "sub"3939},3940{3941"item": "rabbit",3942"label": "a parrot",3943"itemtype": "dist_samesuper",3944"labeltype": "sub"3945},3946{3947"item": "rabbit",3948"label": "a black bear",3949"itemtype": "dist_samesuper",3950"labeltype": "sub"3951},3952{3953"item": "rabbit",3954"label": "an eagle",3955"itemtype": "dist_samesuper",3956"labeltype": "sub"3957},3958{3959"item": "rabbit",3960"label": "a polar bear",3961"itemtype": "dist_samesuper",3962"labeltype": "sub"3963},3964{3965"item": "rabbit",3966"label": "a bear",3967"itemtype": "dist_samesuper",3968"labeltype": "basic"3969},3970{3971"item": "rabbit",3972"label": "a bird",3973"itemtype": "dist_samesuper",3974"labeltype": "basic"3975},3976{3977"item": "rabbit",3978"label": "a dog",3979"itemtype": "dist_samesuper",3980"labeltype": "basic"3981},3982{3983"item": "rabbit",3984"label": "a fish",3985"itemtype": "dist_samesuper",3986"labeltype": "basic"3987},3988{3989"item": "rabbit",3990"label": "an animal",3991"itemtype": "dist_samesuper",3992"labeltype": "super"3993},3994{3995"item": "rabbit",3996"label": "a catfish",3997"itemtype": "dist_samesuper",3998"labeltype": "sub"3999},4000{4001"item": "rabbit",4002"label": "a husky",4003"itemtype": "dist_samesuper",4004"labeltype": "sub"4005},4006{4007"item": "rabbit",4008"label": "a clownfish",4009"itemtype": "dist_samesuper",4010"labeltype": "sub"4011},4012{4013"item": "rabbit",4014"label": "a grizzly bear",4015"itemtype": "dist_samesuper",4016"labeltype": "sub"4017},4018{4019"item": "rhino",4020"label": "a goldfish",4021"itemtype": "dist_samesuper",4022"labeltype": "sub"4023},4024{4025"item": "rhino",4026"label": "a swordfish",4027"itemtype": "dist_samesuper",4028"labeltype": "sub"4029},4030{4031"item": "rhino",4032"label": "a pug",4033"itemtype": "dist_samesuper",4034"labeltype": "sub"4035},4036{4037"item": "rhino",4038"label": "an eagle",4039"itemtype": "dist_samesuper",4040"labeltype": "sub"4041},4042{4043"item": "rhino",4044"label": "a pigeon",4045"itemtype": "dist_samesuper",4046"labeltype": "sub"4047},4048{4049"item": "rhino",4050"label": "a parrot",4051"itemtype": "dist_samesuper",4052"labeltype": "sub"4053},4054{4055"item": "rhino",4056"label": "a panda bear",4057"itemtype": "dist_samesuper",4058"labeltype": "sub"4059},4060{4061"item": "rhino",4062"label": "a polar bear",4063"itemtype": "dist_samesuper",4064"labeltype": "sub"4065},4066{4067"item": "rhino",4068"label": "a hummingbird",4069"itemtype": "dist_samesuper",4070"labeltype": "sub"4071},4072{4073"item": "rhino",4074"label": "a clownfish",4075"itemtype": "dist_samesuper",4076"labeltype": "sub"4077},4078{4079"item": "rhino",4080"label": "a dalmatian",4081"itemtype": "dist_samesuper",4082"labeltype": "sub"4083},4084{4085"item": "rhino",4086"label": "a fish",4087"itemtype": "dist_samesuper",4088"labeltype": "basic"4089},4090{4091"item": "rhino",4092"label": "a dog",4093"itemtype": "dist_samesuper",4094"labeltype": "basic"4095},4096{4097"item": "rhino",4098"label": "a bird",4099"itemtype": "dist_samesuper",4100"labeltype": "basic"4101},4102{4103"item": "rhino",4104"label": "a bear",4105"itemtype": "dist_samesuper",4106"labeltype": "basic"4107},4108{4109"item": "rhino",4110"label": "an animal",4111"itemtype": "dist_samesuper",4112"labeltype": "super"4113},4114{4115"item": "rhino",4116"label": "a German Shepherd",4117"itemtype": "dist_samesuper",4118"labeltype": "sub"4119},4120{4121"item": "rosemary",4122"label": "a daisy",4123"itemtype": "dist_samesuper",4124"labeltype": "sub"4125},4126{4127"item": "rosemary",4128"label": "a sunflower",4129"itemtype": "dist_samesuper",4130"labeltype": "sub"4131},4132{4133"item": "rosemary",4134"label": "a rose",4135"itemtype": "dist_samesuper",4136"labeltype": "sub"4137},4138{4139"item": "rosemary",4140"label": "a tulip",4141"itemtype": "dist_samesuper",4142"labeltype": "sub"4143},4144{4145"item": "rosemary",4146"label": "a flower",4147"itemtype": "dist_samesuper",4148"labeltype": "basic"4149},4150{4151"item": "rosemary",4152"label": "a plant",4153"itemtype": "dist_samesuper",4154"labeltype": "super"4155},4156{4157"item": "sheep",4158"label": "a grizzly bear",4159"itemtype": "dist_samesuper",4160"labeltype": "sub"4161},4162{4163"item": "sheep",4164"label": "a goldfish",4165"itemtype": "dist_samesuper",4166"labeltype": "sub"4167},4168{4169"item": "sheep",4170"label": "a catfish",4171"itemtype": "dist_samesuper",4172"labeltype": "sub"4173},4174{4175"item": "sheep",4176"label": "a swordfish",4177"itemtype": "dist_samesuper",4178"labeltype": "sub"4179},4180{4181"item": "sheep",4182"label": "a pug",4183"itemtype": "dist_samesuper",4184"labeltype": "sub"4185},4186{4187"item": "sheep",4188"label": "a German Shepherd",4189"itemtype": "dist_samesuper",4190"labeltype": "sub"4191},4192{4193"item": "sheep",4194"label": "a pigeon",4195"itemtype": "dist_samesuper",4196"labeltype": "sub"4197},4198{4199"item": "sheep",4200"label": "a dalmatian",4201"itemtype": "dist_samesuper",4202"labeltype": "sub"4203},4204{4205"item": "sheep",4206"label": "an eagle",4207"itemtype": "dist_samesuper",4208"labeltype": "sub"4209},4210{4211"item": "sheep",4212"label": "a parrot",4213"itemtype": "dist_samesuper",4214"labeltype": "sub"4215},4216{4217"item": "sheep",4218"label": "a bear",4219"itemtype": "dist_samesuper",4220"labeltype": "basic"4221},4222{4223"item": "sheep",4224"label": "a fish",4225"itemtype": "dist_samesuper",4226"labeltype": "basic"4227},4228{4229"item": "sheep",4230"label": "a dog",4231"itemtype": "dist_samesuper",4232"labeltype": "basic"4233},4234{4235"item": "sheep",4236"label": "a bird",4237"itemtype": "dist_samesuper",4238"labeltype": "basic"4239},4240{4241"item": "sheep",4242"label": "an animal",4243"itemtype": "dist_samesuper",4244"labeltype": "super"4245},4246{4247"item": "sheep",4248"label": "a panda bear",4249"itemtype": "dist_samesuper",4250"labeltype": "sub"4251},4252{4253"item": "sheep",4254"label": "a black bear",4255"itemtype": "dist_samesuper",4256"labeltype": "sub"4257},4258{4259"item": "sheep",4260"label": "a clownfish",4261"itemtype": "dist_samesuper",4262"labeltype": "sub"4263},4264{4265"item": "sheep",4266"label": "a husky",4267"itemtype": "dist_samesuper",4268"labeltype": "sub"4269},4270{4271"item": "sheep",4272"label": "a polar bear",4273"itemtype": "dist_samesuper",4274"labeltype": "sub"4275},4276{4277"item": "snake",4278"label": "a clownfish",4279"itemtype": "dist_samesuper",4280"labeltype": "sub"4281},4282{4283"item": "snake",4284"label": "a husky",4285"itemtype": "dist_samesuper",4286"labeltype": "sub"4287},4288{4289"item": "snake",4290"label": "an eagle",4291"itemtype": "dist_samesuper",4292"labeltype": "sub"4293},4294{4295"item": "snake",4296"label": "a polar bear",4297"itemtype": "dist_samesuper",4298"labeltype": "sub"4299},4300{4301"item": "snake",4302"label": "a goldfish",4303"itemtype": "dist_samesuper",4304"labeltype": "sub"4305},4306{4307"item": "snake",4308"label": "a grizzly bear",4309"itemtype": "dist_samesuper",4310"labeltype": "sub"4311},4312{4313"item": "snake",4314"label": "a pug",4315"itemtype": "dist_samesuper",4316"labeltype": "sub"4317},4318{4319"item": "snake",4320"label": "a hummingbird",4321"itemtype": "dist_samesuper",4322"labeltype": "sub"4323},4324{4325"item": "snake",4326"label": "a parrot",4327"itemtype": "dist_samesuper",4328"labeltype": "sub"4329},4330{4331"item": "snake",4332"label": "a fish",4333"itemtype": "dist_samesuper",4334"labeltype": "basic"4335},4336{4337"item": "snake",4338"label": "a dog",4339"itemtype": "dist_samesuper",4340"labeltype": "basic"4341},4342{4343"item": "snake",4344"label": "a bird",4345"itemtype": "dist_samesuper",4346"labeltype": "basic"4347},4348{4349"item": "snake",4350"label": "a bear",4351"itemtype": "dist_samesuper",4352"labeltype": "basic"4353},4354{4355"item": "snake",4356"label": "an animal",4357"itemtype": "dist_samesuper",4358"labeltype": "super"4359},4360{4361"item": "snake",4362"label": "a catfish",4363"itemtype": "dist_samesuper",4364"labeltype": "sub"4365},4366{4367"item": "snake",4368"label": "a dalmatian",4369"itemtype": "dist_samesuper",4370"labeltype": "sub"4371},4372{4373"item": "snake",4374"label": "a panda bear",4375"itemtype": "dist_samesuper",4376"labeltype": "sub"4377},4378{4379"item": "socks",4380"label": "a t-shirt",4381"itemtype": "dist_samesuper",4382"labeltype": "sub"4383},4384{4385"item": "socks",4386"label": "a dress shirt",4387"itemtype": "dist_samesuper",4388"labeltype": "sub"4389},4390{4391"item": "socks",4392"label": "a Hawaii shirt",4393"itemtype": "dist_samesuper",4394"labeltype": "sub"4395},4396{4397"item": "socks",4398"label": "a polo shirt",4399"itemtype": "dist_samesuper",4400"labeltype": "sub"4401},4402{4403"item": "socks",4404"label": "a shirt",4405"itemtype": "dist_samesuper",4406"labeltype": "basic"4407},4408{4409"item": "socks",4410"label": "clothing",4411"itemtype": "dist_samesuper",4412"labeltype": "super"4413},4414{4415"item": "squirrel",4416"label": "a pug",4417"itemtype": "dist_samesuper",4418"labeltype": "sub"4419},4420{4421"item": "squirrel",4422"label": "a parrot",4423"itemtype": "dist_samesuper",4424"labeltype": "sub"4425},4426{4427"item": "squirrel",4428"label": "a dalmatian",4429"itemtype": "dist_samesuper",4430"labeltype": "sub"4431},4432{4433"item": "squirrel",4434"label": "a clownfish",4435"itemtype": "dist_samesuper",4436"labeltype": "sub"4437},4438{4439"item": "squirrel",4440"label": "a goldfish",4441"itemtype": "dist_samesuper",4442"labeltype": "sub"4443},4444{4445"item": "squirrel",4446"label": "a catfish",4447"itemtype": "dist_samesuper",4448"labeltype": "sub"4449},4450{4451"item": "squirrel",4452"label": "a grizzly bear",4453"itemtype": "dist_samesuper",4454"labeltype": "sub"4455},4456{4457"item": "squirrel",4458"label": "a hummingbird",4459"itemtype": "dist_samesuper",4460"labeltype": "sub"4461},4462{4463"item": "squirrel",4464"label": "a polar bear",4465"itemtype": "dist_samesuper",4466"labeltype": "sub"4467},4468{4469"item": "squirrel",4470"label": "a husky",4471"itemtype": "dist_samesuper",4472"labeltype": "sub"4473},4474{4475"item": "squirrel",4476"label": "a pigeon",4477"itemtype": "dist_samesuper",4478"labeltype": "sub"4479},4480{4481"item": "squirrel",4482"label": "a German Shepherd",4483"itemtype": "dist_samesuper",4484"labeltype": "sub"4485},4486{4487"item": "squirrel",4488"label": "a panda bear",4489"itemtype": "dist_samesuper",4490"labeltype": "sub"4491},4492{4493"item": "squirrel",4494"label": "a dog",4495"itemtype": "dist_samesuper",4496"labeltype": "basic"4497},4498{4499"item": "squirrel",4500"label": "a bird",4501"itemtype": "dist_samesuper",4502"labeltype": "basic"4503},4504{4505"item": "squirrel",4506"label": "a fish",4507"itemtype": "dist_samesuper",4508"labeltype": "basic"4509},4510{4511"item": "squirrel",4512"label": "a bear",4513"itemtype": "dist_samesuper",4514"labeltype": "basic"4515},4516{4517"item": "squirrel",4518"label": "an animal",4519"itemtype": "dist_samesuper",4520"labeltype": "super"4521},4522{4523"item": "squirrel",4524"label": "a black bear",4525"itemtype": "dist_samesuper",4526"labeltype": "sub"4527},4528{4529"item": "squirrel",4530"label": "an eagle",4531"itemtype": "dist_samesuper",4532"labeltype": "sub"4533},4534{4535"item": "train",4536"label": "a minivan",4537"itemtype": "dist_samesuper",4538"labeltype": "sub"4539},4540{4541"item": "train",4542"label": "a sports car",4543"itemtype": "dist_samesuper",4544"labeltype": "sub"4545},4546{4547"item": "train",4548"label": "a convertible",4549"itemtype": "dist_samesuper",4550"labeltype": "sub"4551},4552{4553"item": "train",4554"label": "an SUV",4555"itemtype": "dist_samesuper",4556"labeltype": "sub"4557},4558{4559"item": "train",4560"label": "a car",4561"itemtype": "dist_samesuper",4562"labeltype": "basic"4563},4564{4565"item": "train",4566"label": "a vehicle",4567"itemtype": "dist_samesuper",4568"labeltype": "super"4569},4570{4571"item": "wardrobe",4572"label": "a bedside table",4573"itemtype": "dist_samesuper",4574"labeltype": "sub"4575},4576{4577"item": "wardrobe",4578"label": "a picnic table",4579"itemtype": "dist_samesuper",4580"labeltype": "sub"4581},4582{4583"item": "wardrobe",4584"label": "a coffee table",4585"itemtype": "dist_samesuper",4586"labeltype": "sub"4587},4588{4589"item": "wardrobe",4590"label": "a dining table",4591"itemtype": "dist_samesuper",4592"labeltype": "sub"4593},4594{4595"item": "wardrobe",4596"label": "a table",4597"itemtype": "dist_samesuper",4598"labeltype": "basic"4599},4600{4601"item": "wardrobe",4602"label": "furniture",4603"itemtype": "dist_samesuper",4604"labeltype": "super"4605}]).slice(0,28) 4606// old items:4607// var items = _.shuffle([4608// //dog1s typeLabel 364609// {4610// "item": "blackBear",4611// "label": "a black bear"4612// },4613// {4614// "item": "grizzlyBear",4615// "label": "a grizzly bear"4616// },4617// {4618// "item": "pandaBear",4619// "label": "a panda bear"4620// },4621// {4622// "item": "polarBear",4623// "label": "a polar bear"4624// },4625// {4626// "item": "eagle",4627// "label": "an eagle"4628// },4629// {4630// "item": "hummingBird",4631// "label": "a hummingbird"4632// },4633// {4634// "item": "parrot",4635// "label": "a parrot"4636// },4637// {4638// "item": "pigeon",4639// "label": "a pigeon"4640// },4641// {4642// "item": "dalmatian",4643// "label": "a Dalmatian"4644// },4645// {4646// "item": "germanShepherd",4647// "label": "a German Shepherd"4648// },4649// {4650// "item": "husky",4651// "label": "a Husky"4652// },4653// {4654// "item": "pug",4655// "label": "a Pug"4656// },4657// {4658// "item": "gummyBears",4659// "label": "gummy bears"4660// },4661// {4662// "item": "jellyBeans",4663// "label": "jelly beans"4664// },4665// {4666// "item": "mnMs",4667// "label": "M&M's"4668// },4669// {4670// "item": "skittles",4671// "label": "Skittles"4672// },4673// {4674// "item": "daisy",4675// "label": "a daisy"4676// },4677// {4678// "item": "rose",4679// "label": "a rose"4680// },4681// {4682// "item": "sunflower",4683// "label": "a sunflower"4684// },4685// {4686// "item": "tulip",4687// "label": "a tulip"4688// },4689// {4690// "item": "convertible",4691// "label": "a convertible"4692// },4693// {4694// "item": "minivan",4695// "label": "a minivan"4696// },4697// {4698// "item": "sportsCar",4699// "label": "a sports car"4700// },4701// {4702// "item": "suv",4703// "label": "an SUV"4704// },4705// {4706// "item": "catfish",4707// "label": "a catfish"4708// },4709// {4710// "item": "clownFish",4711// "label": "a clownfish"4712// },4713// {4714// "item": "goldFish",4715// "label": "a goldfish"4716// },4717// {4718// "item": "swordFish",4719// "label": "a swordfish"4720// },4721// {4722// "item": "dressShirt",4723// "label": "a dress shirt"4724// },4725// {4726// "item": "hawaiiShirt",4727// "label": "a Hawaii shirt"4728// },4729// {4730// "item": "poloShirt",4731// "label": "a polo shirt"4732// },4733// {4734// "item": "tShirt",4735// "label": "a T-Shirt"4736// },4737// {4738// "item": "bedsideTable",4739// "label": "a bedside table"4740// },4741// {4742// "item": "coffeeTable",4743// "label": "a coffee table"4744// },4745// {4746// "item": "diningTable",4747// "label": "a dining table"4748// },4749// {4750// "item": "picnicTable",4751// "label": "a picnic table"4752// },4753// //dog1s BasiclevelLabel 364754// {4755// "item": "blackBear",4756// "label": "a bear"4757// },4758// {4759// "item": "grizzlyBear",4760// "label": "a bear"4761// },4762// {4763// "item": "pandaBear",4764// "label": "a bear"4765// },4766// {4767// "item": "polarBear",4768// "label": "a bear"4769// },4770// {4771// "item": "eagle",4772// "label": "a bird"4773// },4774// {4775// "item": "hummingBird",4776// "label": "a bird"4777// },4778// {4779// "item": "parrot",4780// "label": "a bird"4781// },4782// {4783// "item": "pigeon",4784// "label": "a bird"4785// },4786// {4787// "item": "dalmatian",4788// "label": "a dog"4789// },4790// {4791// "item": "germanShepherd",4792// "label": "a dog"4793// },4794// {4795// "item": "husky",4796// "label": "a dog"4797// },4798// {4799// "item": "pug",4800// "label": "a dog"4801// },4802// {4803// "item": "gummyBears",4804// "label": "candy"4805// },4806// {4807// "item": "jellyBeans",4808// "label": "candy"4809// },4810// {4811// "item": "mnMs",4812// "label": "candy"4813// },4814// {4815// "item": "skittles",4816// "label": "candy"4817// },4818// {4819// "item": "daisy",4820// "label": "a flower"4821// },4822// {4823// "item": "rose",4824// "label": "a flower",4825// },4826// {4827// "item": "sunflower",4828// "label": "a flower"4829// },4830// {4831// "item": "tulip",4832// "label": "a flower"4833// },4834// {4835// "item": "convertible",4836// "label": "a car"4837// },4838// {4839// "item": "minivan",4840// "label": "a car"4841// },4842// {4843// "item": "sportsCar",4844// "label": "a car"4845// },4846// {4847// "item": "suv",4848// "label": "a car"4849// },4850// {4851// "item": "catfish",4852// "label": "a fish"4853// },4854// {4855// "item": "clownFish",4856// "label": "a fish"4857// },4858// {4859// "item": "goldFish",4860// "label": "a fish"4861// },4862// {4863// "item": "swordFish",4864// "label": "a fish"4865// },4866// {4867// "item": "dressShirt",4868// "label": "a shirt"4869// },4870// {4871// "item": "hawaiiShirt",4872// "label": "a shirt"4873// },4874// {4875// "item": "poloShirt",4876// "label": "a shirt"4877// },4878// {4879// "item": "tShirt",4880// "label": "a shirt"4881// },4882// {4883// "item": "bedsideTable",4884// "label": "a table"4885// },4886// {4887// "item": "coffeeTable",4888// "label": "a table"4889// },4890// {4891// "item": "diningTable",4892// "label": "a table"4893// },4894// {4895// "item": "picnicTable",4896// "label": "a table"4897// },4898//4899//4900// //dog1s domainLabel 364901// {4902// "item": "blackBear",4903// "label": "an animal"4904// },4905// {4906// "item": "grizzlyBear",4907// "label": "an animal"4908// },4909// {4910// "item": "pandaBear",4911// "label": "an animal"4912// },4913// {4914// "item": "polarBear",4915// "label": "an animal"4916// },4917// {4918// "item": "eagle",4919// "label": "an animal"4920// },4921// {4922// "item": "hummingBird",4923// "label": "an animal"4924// },4925// {4926// "item": "parrot",4927// "label": "an animal"4928// },4929// {4930// "item": "pigeon",4931// "label": "an animal"4932// },4933// {4934// "item": "dalmatian",4935// "label": "an animal"4936// },4937// {4938// "item": "germanShepherd",4939// "label": "an animal"4940// },4941// {4942// "item": "husky",4943// "label": "an animal"4944// },4945// {4946// "item": "pug",4947// "label": "an animal"4948// },4949// {4950// "item": "gummyBears",4951// "label": "a snack"4952// },4953// {4954// "item": "jellyBeans",4955// "label": "a snack"4956// },4957// {4958// "item": "mnMs",4959// "label": "a snack"4960// },4961// {4962// "item": "skittles",4963// "label": "a snack"4964// },4965// {4966// "item": "daisy",4967// "label": "a plant"4968// },4969// {4970// "item": "rose",4971// "label": "a plant"4972// },4973// {4974// "item": "sunflower",4975// "label": "a plant"4976// },4977// {4978// "item": "tulip",4979// "label": "a plant"4980// },4981// {4982// "item": "convertible",4983// "label": "a vehicle"4984// },4985// {4986// "item": "minivan",4987// "label": "a vehicle"4988// },4989// {4990// "item": "sportsCar",4991// "label": "a vehicle"4992// },4993// {4994// "item": "suv",4995// "label": "a vehicle"4996// },4997// {4998// "item": "catfish",4999// "label": "an animal"5000// },5001// {5002// "item": "clownFish",5003// "label": "an animal"5004// },5005// {5006// "item": "goldFish",5007// "label": "an animal"5008// },5009// {5010// "item": "swordFish",5011// "label": "an animal"5012// },5013// {5014// "item": "dressShirt",5015// "label": "clothing"5016// },5017// {5018// "item": "hawaiiShirt",5019// "label": "clothing"5020// },5021// {5022// "item": "poloShirt",5023// "label": "clothing"5024// },5025// {5026// "item": "tShirt",5027// "label": "clothing"5028// },5029// {5030// "item": "bedsideTable",5031// "label": "furniture"5032// },5033// {5034// "item": "coffeeTable",5035// "label": "furniture"5036// },5037// {5038// "item": "diningTable",5039// "label": "furniture"5040// },5041// {5042// "item": "picnicTable",5043// "label": "furniture"5044// },5045//5046//5047// //dog2s typeLabel 365048// {5049// "item": "koalaBear",5050// "label": "a black bear"5051// },5052// {5053// "item": "koalaBear",5054// "label": "a grizzly bear"5055// },5056// {5057// "item": "koalaBear",5058// "label": "a panda bear"5059// },5060// {5061// "item": "koalaBear",5062// "label": "a polar bear"5063// },5064//5065// {5066// "item": "sparrow",5067// "label": "an eagle"5068// },5069// {5070// "item": "sparrow",5071// "label": "a hummingbird"5072// },5073// {5074// "item": "sparrow",5075// "label": "a parrot"5076// },5077// {5078// "item": "sparrow",5079// "label": "a pigeon"5080// },5081//5082// {5083// "item": "greyhound",5084// "label": "a Dalmatian"5085// },5086// {5087// "item": "greyhound",5088// "label": "a German Shepherd"5089// },5090// {5091// "item": "greyhound",5092// "label": "a Husky"5093// },5094// {5095// "item": "greyhound",5096// "label": "a Pug"5097// },5098//5099// {5100// "item": "candyCorn",5101// "label": "gummy bears"5102// },5103// {5104// "item": "candyCorn",5105// "label": "jelly beans"5106// },5107// {5108// "item": "candyCorn",5109// "label": "M&M's"5110// },5111// {5112// "item": "candyCorn",5113// "label": "Skittles"5114// },5115//5116// {5117// "item": "lily",5118// "label": "a daisy"5119// },5120// {5121// "item": "lily",5122// "label": "a rose"5123// },5124// {5125// "item": "lily",5126// "label": "a sunflower"5127// },5128// {5129// "item": "lily",5130// "label": "a tulip"5131// },5132//5133// {5134// "item": "sedan",5135// "label": "a convertible"5136// },5137// {5138// "item": "sedan",5139// "label": "a minivan"5140// },5141// {5142// "item": "sedan",5143// "label": "a sports car"5144// },5145// {5146// "item": "sedan",5147// "label": "an SUV"5148// },5149//5150// {5151// "item": "discusFish",5152// "label": "a catfish"5153// },5154// {5155// "item": "discusFish",5156// "label": "a clownfish"5157// },5158// {5159// "item": "discusFish",5160// "label": "a goldfish"5161// },5162// {5163// "item": "discusFish",5164// "label": "a swordfish"5165// },5166//5167// {5168// "item": "campShirt",5169// "label": "a dress shirt"5170// },5171// {5172// "item": "campShirt",5173// "label": "a Hawaii shirt"5174// },5175// {5176// "item": "campShirt",5177// "label": "a polo shirt"5178// },5179// {5180// "item": "campShirt",5181// "label": "a T-Shirt"5182// },5183//5184// {5185// "item": "sideTable",5186// "label": "a bedside table"5187// },5188// {5189// "item": "sideTable",5190// "label": "a coffee table"5191// },5192// {5193// "item": "sideTable",5194// "label": "a dining table"5195// },5196// {5197// "item": "sideTable",5198// "label": "a picnic table"5199// },5200//5201// //dog2s BLLabel 95202// {5203// "item": "koalaBear",5204// "label": "a bear"5205// },5206// {5207// "item": "greyhound",5208// "label": "a dog"5209// },5210// {5211// "item": "candyCorn",5212// "label": "candy"5213// },5214// {5215// "item": "sideTable",5216// "label": "a table"5217// },5218// {5219// "item": "campShirt",5220// "label": "a shirt"5221// },5222// {5223// "item": "discusFish",5224// "label": "a fish"5225// },5226// {5227// "item": "sparrow",5228// "label": "a bird"5229// },5230// {5231// "item": "lily",5232// "label": "a flower"5233// },5234// {5235// "item": "sedan",5236// "label": "a car"5237// },5238//5239// //dog2s DomainLabel 95240// {5241// "item": "koalaBear",5242// "label": "an animal"5243// },5244// {5245// "item": "greyhound",5246// "label": "an animal"5247// },5248// {5249// "item": "candyCorn",5250// "label": "a snack"5251// },5252// {5253// "item": "sideTable",5254// "label": "furniture"5255// },5256// {5257// "item": "campShirt",5258// "label": "clothing"5259// },5260// {5261// "item": "discusFish",5262// "label": "an animal"5263// },5264// {5265// "item": "sparrow",5266// "label": "an animal"5267// },5268// {5269// "item": "lily",5270// "label": "a plant"5271// },5272// {5273// "item": "sedan",5274// "label": "a vehicle"5275// },5276//5277// // Everything else:5278// // ambulance5279// {5280// "item": "ambulance",5281// "label": "a sports car"5282// },5283// {5284// "item": "ambulance",5285// "label": "a convertible"5286// },5287// {5288// "item": "ambulance",5289// "label": "an SUV"5290// },5291//{5292// "item": "ambulance",5293// "label": "a minivan"5294// },5295//{5296// "item": "ambulance",5297// "label": "a dress shirt"5298// },5299//{5300// "item": "ambulance",5301// "label": "a bedside table"5302// },5303//{5304// "item": "ambulance",5305// "label": "gummy bears"5306// },5307//{5308// "item": "ambulance",5309// "label": "a parrot"5310// },5311//{5312// "item": "ambulance",5313// "label": "a polar bear"5314// },5315//{5316// "item": "ambulance",5317// "label": "a catfish"5318// },5319//{5320// "item": "ambulance",5321// "label": "jelly beans"5322// },5323//{5324// "item": "ambulance",5325// "label": "a clownfish"5326// },5327//{5328// "item": "ambulance",5329// "label": "a black bear"5330// },5331//{5332// "item": "ambulance",5333// "label": "a goldfish"5334// },5335//{5336// "item": "ambulance",5337// "label": "a Dalmatian"5338// },5339//{5340// "item": "ambulance",5341// "label": "Skittles"5342// },5343//{5344// "item": "ambulance",5345// "label": "a car"5346// },5347//{5348// "item": "ambulance",5349// "label": "a shirt"5350// },5351//{5352// "item": "ambulance",5353// "label": "a table"5354// },5355//{5356// "item": "ambulance",5357// "label": "candy"5358// },5359//{5360// "item": "ambulance",5361// "label": "a bird"5362// },5363//{5364// "item": "ambulance",5365// "label": "a bear"5366// },5367//{5368// "item": "ambulance",5369// "label": "a fish"5370// },5371//{5372// "item": "ambulance",5373// "label": "a dog"5374// },5375//{5376// "item": "ambulance",5377// "label": "a vehicle"5378// },5379//{5380// "item": "ambulance",5381// "label": "clothing"5382// },5383//{5384// "item": "ambulance",5385// "label": "furniture"5386// },5387//{5388// "item": "ambulance",5389// "label": "a snack"5390// },5391//{5392// "item": "ambulance",5393// "label": "an animal"5394// },5395//{5396// "item": "ambulance",5397// "label": "a German Shepherd"5398// },5399//{5400// "item": "ambulance",5401// "label": "a grizzly bear"5402// },5403//{5404// "item": "ambulance",5405// "label": "a swordfish"5406// },5407//{5408// "item": "ambulance",5409// "label": "a Husky"5410// },5411//{5412// "item": "ambulance",5413// "label": "a T-Shirt"5414// },5415//{5416// "item": "ambulance",5417// "label": "a pigeon"5418// },5419// // bathrobe5420//{5421// "item": "bathrobe",5422// "label": "a T-Shirt"5423// },5424//{5425// "item": "bathrobe",5426// "label": "a dress shirt"5427// },5428// {5429// "item": "bathrobe",5430// "label": "a Hawaii shirt"5431// },5432// {5433// "item": "bathrobe",5434// "label": "a polo shirt"5435// },5436//{5437// "item": "bathrobe",5438// "label": "a rose"5439// },5440// {5441// "item": "bathrobe",5442// "label": "a polar bear"5443// },5444//{5445// "item": "bathrobe",5446// "label": "a swordfish"5447// },5448//{5449// "item": "bathrobe",5450// "label": "a tulip"5451// },5452//{5453// "item": "bathrobe",5454// "label": "a coffee table"5455// },5456//{5457// "item": "bathrobe",5458// "label": "a black bear"5459// },5460//{5461// "item": "bathrobe",5462// "label": "a grizzly bear"5463// },5464//{5465// "item": "bathrobe",5466// "label": "a parrot"5467// },5468//{5469// "item": "bathrobe",5470// "label": "Skittles"5471// },5472//{5473// "item": "bathrobe",5474// "label": "a minivan"5475// },5476//{5477// "item": "bathrobe",5478// "label": "an eagle"5479// },5480//{5481// "item": "bathrobe",5482// "label": "a clownfish"5483// },5484//{5485// "item": "bathrobe",5486// "label": "an SUV"5487// },5488//{5489// "item": "bathrobe",5490// "label": "a shirt"5491// },5492//{5493// "item": "bathrobe",5494// "label": "a flower"5495// },5496//{5497// "item": "bathrobe",5498// "label": "a bear"5499// },5500//{5501// "item": "bathrobe",5502// "label": "a fish"5503// },5504//{5505// "item": "bathrobe",5506// "label": "a table"5507// },5508//{5509// "item": "bathrobe",5510// "label": "a bird"5511// },5512//{5513// "item": "bathrobe",5514// "label": "candy"5515// },5516//{5517// "item": "bathrobe",5518// "label": "a car"5519// },5520//{5521// "item": "bathrobe",5522// "label": "clothing"5523// },5524//{5525// "item": "bathrobe",5526// "label": "a plant"5527// },5528//{5529// "item": "bathrobe",5530// "label": "an animal"5531// },5532//{5533// "item": "bathrobe",5534// "label": "furniture"5535// },5536//{5537// "item": "bathrobe",5538// "label": "a snack"5539// },5540//{5541// "item": "bathrobe",5542// "label": "a vehicle"5543// },5544//{5545// "item": "bathrobe",5546// "label": "a goldfish"5547// },5548//{5549// "item": "bathrobe",5550// "label": "a pug"5551// },5552//{5553// "item": "bathrobe",5554// "label": "a convertible"5555// },5556//{5557// "item": "bathrobe",5558// "label": "a dining table"5559// },5560//{5561// "item": "bathrobe",5562// "label": "a picnic table"5563// },5564//{5565// "item": "bathrobe",5566// "label": "a Husky"5567// },5568//{5569// "item": "bathrobe",5570// "label": "a catfish"5571// },5572//{5573// "item": "bathrobe",5574// "label": "a dog"5575// },5576// // bed5577//{5578// "item": "bed",5579// "label": "a coffee table"5580// },5581// {5582// "item": "bed",5583// "label": "a picnic table"5584// },5585//{5586// "item": "bed",5587// "label": "a dining table"5588// },5589//{5590// "item": "bed",5591// "label": "jelly beans"5592// },5593//{5594// "item": "bed",5595// "label": "a clownfish"5596// },5597//{5598// "item": "bed",5599// "label": "a Hawaii shirt"5600// },5601//{5602// "item": "bed",5603// "label": "a Dalmatian"5604// },5605//{5606// "item": "bed",5607// "label": "a parrot"5608// },5609//{5610// "item": "bed",5611// "label": "a tulip"5612// },5613//{5614// "item": "bed",5615// "label": "a goldfish"5616// },5617//{5618// "item": "bed",5619// "label": "a panda bear"5620// },5621//{5622// "item": "bed",5623// "label": "a pigeon"5624// },5625//{5626// "item": "bed",5627// "label": "a Husky"5628// },5629//{5630// "item": "bed",5631// "label": "a table"5632// },5633//{5634// "item": "bed",5635// "label": "candy"5636// },5637//{5638// "item": "bed",5639// "label": "a fish"5640// },5641//{5642// "item": "bed",5643// "label": "a shirt"5644// },5645//{5646// "item": "bed",5647// "label": "a dog"5648// },5649//{5650// "item": "bed",5651// "label": "a bird"5652// },5653//{5654// "item": "bed",5655// "label": "a flower"5656// },5657//{5658// "item": "bed",5659// "label": "a bear"5660// },5661//{5662// "item": "bed",5663// "label": "furniture"5664// },5665//{5666// "item": "bed",5667// "label": "a snack"5668// },5669//{5670// "item": "bed",5671// "label": "an animal"5672// },5673//{5674// "item": "bed",5675// "label": "clothing"5676// },5677//{5678// "item": "bed",5679// "label": "a plant"5680// },5681//{5682// "item": "bed",5683// "label": "a bedside table"5684// },5685//{5686// "item": "bed",5687// "label": "an SUV"5688// },5689//{5690// "item": "bed",5691// "label": "a hummingbird"5692// },5693//{5694// "item": "bed",5695// "label": "a German Shepherd"5696// },5697//{5698// "item": "bed",5699// "label": "a grizzly bear"5700// },5701//{5702// "item": "bed",5703// "label": "a black bear"5704// },5705//{5706// "item": "bed",5707// "label": "a catfish"5708// },5709//{5710// "item": "bed",5711// "label": "a car"5712// },5713//{5714// "item": "bed",5715// "label": "a vehicle"5716// },5717// // bison5718//{5719// "item": "bison",5720// "label": "a panda bear"5721// },5722//{5723// "item": "bison",5724// "label": "a hummingbird"5725// },5726//{5727// "item": "bison",5728// "label": "a polar bear"5729// },5730//{5731// "item": "bison",5732// "label": "a goldfish"5733// },5734//{5735// "item": "bison",5736// "label": "a pug"5737// },5738//{5739// "item": "bison",5740// "label": "a parrot"5741// },5742//{5743// "item": "bison",5744// "label": "a swordfish"5745// },5746//{5747// "item": "bison",5748// "label": "a black bear"5749// },5750//{5751// "item": "bison",5752// "label": "an eagle"5753// },5754//{5755// "item": "bison",5756// "label": "a catfish"5757// },5758//{5759// "item": "bison",5760// "label": "a clownfish"5761// },5762//{5763// "item": "bison",5764// "label": "a Dalmatian"5765// },5766//{5767// "item": "bison",5768// "label": "a German Shepherd"5769// },5770//{5771// "item": "bison",5772// "label": "a Hawaii shirt"5773// },5774//{5775// "item": "bison",5776// "label": "Skittles"5777// },5778//{5779// "item": "bison",5780// "label": "a bedside table"5781// },5782//{5783// "item": "bison",5784// "label": "an SUV"5785// },5786//{5787// "item": "bison",5788// "label": "a rose"5789// },5790//{5791// "item": "bison",5792// "label": "a coffee table"5793// },5794//{5795// "item": "bison",5796// "label": "a minivan"5797// },5798//{5799// "item": "bison",5800// "label": "a daisy"5801// },5802//{5803// "item": "bison",5804// "label": "a bear"5805// },5806//{5807// "item": "bison",5808// "label": "a bird"5809// },5810//{5811// "item": "bison",5812// "label": "a fish"5813// },5814//{5815// "item": "bison",5816// "label": "a dog"5817// },5818//{5819// "item": "bison",5820// "label": "a shirt"5821// },5822//{5823// "item": "bison",5824// "label": "candy"5825// },5826//{5827// "item": "bison",5828// "label": "a table"5829// },5830//{5831// "item": "bison",5832// "label": "a car"5833// },5834//{5835// "item": "bison",5836// "label": "a flower"5837// },5838//{5839// "item": "bison",5840// "label": "an animal"5841// },5842//{5843// "item": "bison",5844// "label": "clothing"5845// },5846//{5847// "item": "bison",5848// "label": "a snack"5849// },5850//{5851// "item": "bison",5852// "label": "furniture"5853// },5854//{5855// "item": "bison",5856// "label": "a vehicle"5857// },5858//{5859// "item": "bison",5860// "label": "a plant"5861// },5862//{5863// "item": "bison",5864// "label": "a grizzly bear"5865// },5866//{5867// "item": "bison",5868// "label": "a convertible"5869// },5870//{5871// "item": "bison",5872// "label": "a polo shirt"5873// },5874//{5875// "item": "bison",5876// "label": "M&M's"5877// },5878//{5879// "item": "bison",5880// "label": "a tulip"5881// },5882// // bookcase5883//{5884// "item": "bookcase",5885// "label": "a coffee table"5886// },5887//{5888// "item": "bookcase",5889// "label": "a picnic table"5890// },5891//{5892// "item": "bookcase",5893// "label": "a dining table"5894// },5895//{5896// "item": "bookcase",5897// "label": "a bedside table"5898// },5899//{5900// "item": "bookcase",5901// "label": "a hummingbird"5902// },5903//{5904// "item": "bookcase",5905// "label": "a panda bear"5906// },5907//{5908// "item": "bookcase",5909// "label": "a grizzly bear"5910// },5911//{5912// "item": "bookcase",5913// "label": "a swordfish"5914// },5915//{5916// "item": "bookcase",5917// "label": "a black bear"5918// },5919//{5920// "item": "bookcase",5921// "label": "a pug"5922// },5923//{5924// "item": "bookcase",5925// "label": "a pigeon"5926// },5927//{5928// "item": "bookcase",5929// "label": "Skittles"5930// },5931//{5932// "item": "bookcase",5933// "label": "a table"5934// },5935//{5936// "item": "bookcase",5937// "label": "a bird"5938// },5939//{5940// "item": "bookcase",5941// "label": "a bear"5942// },5943//{5944// "item": "bookcase",5945// "label": "a fish"5946// },5947//{5948// "item": "bookcase",5949// "label": "a dog"5950// },5951//{5952// "item": "bookcase",5953// "label": "candy"5954// },5955//{5956// "item": "bookcase",5957// "label": "furniture"5958// },5959//{5960// "item": "bookcase",5961// "label": "an animal"5962// },5963//{5964// "item": "bookcase",5965// "label": "a snack"5966// },5967//{5968// "item": "bookcase",5969// "label": "a rose"5970// },5971//{5972// "item": "bookcase",5973// "label": "a polo shirt"5974// },5975//{5976// "item": "bookcase",5977// "label": "a clownfish"5978// },5979//{5980// "item": "bookcase",5981// "label": "a tulip"5982// },5983//{5984// "item": "bookcase",5985// "label": "a Husky"5986// },5987//{5988// "item": "bookcase",5989// "label": "a flower"5990// },5991//{5992// "item": "bookcase",5993// "label": "a shirt"5994// },5995//{5996// "item": "bookcase",5997// "label": "a plant"5998// },5999//{6000// "item": "bookcase",6001// "label": "clothing"6002// },6003// // chick6004// {6005// "item": "chick",6006// "label": "a parrot"6007// },6008//{6009// "item": "chick",6010// "label": "a Husky"6011// },6012//{6013// "item": "chick",6014// "label": "a polar bear"6015// },6016//{6017// "item": "chick",6018// "label": "a pigeon"6019// },6020//{6021// "item": "chick",6022// "label": "a catfish"6023// },6024//{6025// "item": "chick",6026// "label": "a German Shepherd"6027// },6028//{6029// "item": "chick",6030// "label": "a panda bear"6031// },6032//{6033// "item": "chick",6034// "label": "a Pug"6035// },6036//{6037// "item": "chick",6038// "label": "a hummingbird"6039// },6040//{6041// "item": "chick",6042// "label": "a goldfish"6043// },6044//{6045// "item": "chick",6046// "label": "a swordfish"6047// },6048//{6049// "item": "chick",6050// "label": "a dress shirt"6051// },6052//{6053// "item": "chick",6054// "label": "a rose"6055// },6056//{6057// "item": "chick",6058// "label": "M&M's"6059// },6060//{6061// "item": "chick",6062// "label": "a picnic table"6063// },6064//{6065// "item": "chick",6066// "label": "a Hawaii shirt"6067// },6068//{6069// "item": "chick",6070// "label": "a convertible"6071// },6072//{6073// "item": "chick",6074// "label": "a dog"6075// },6076//{6077// "item": "chick",6078// "label": "a bird"6079// },6080//{6081// "item": "chick",6082// "label": "a bear"6083// },6084//{6085// "item": "chick",6086// "label": "a fish"6087// },6088//{6089// "item": "chick",6090// "label": "a shirt"6091// },6092//{6093// "item": "chick",6094// "label": "a flower"6095// },6096//{6097// "item": "chick",6098// "label": "candy"6099// },6100//{6101// "item": "chick",6102// "label": "a table"6103// },6104//{6105// "item": "chick",6106// "label": "a car"6107// },6108//{6109// "item": "chick",6110// "label": "an animal"6111// },6112//{6113// "item": "chick",6114// "label": "clothing"6115// },6116//{6117// "item": "chick",6118// "label": "a plant"6119// },6120//{6121// "item": "chick",6122// "label": "a snack"6123// },6124//{6125// "item": "chick",6126// "label": "furniture"6127// },6128//{6129// "item": "chick",6130// "label": "a vehicle"6131// },6132//{6133// "item": "chick",6134// "label": "a black bear"6135// },6136//{6137// "item": "chick",6138// "label": "a Dalmatian"6139// },6140//{6141// "item": "chick",6142// "label": "a coffee table"6143// },6144//{6145// "item": "chick",6146// "label": "gummy bears"6147// },6148//6149// //chips6150//{6151// "item": "chips",6152// "label": "M&M's"6153// },6154//{6155// "item": "chips",6156// "label": "gummy bears"6157// },6158//{6159// "item": "chips",6160// "label": "Skittles"6161// },6162//{6163// "item": "chips",6164// "label": "jelly beans"6165// },6166//{6167// "item": "chips",6168// "label": "a hummingbird"6169// },6170//{6171// "item": "chips",6172// "label": "a tulip"6173// },6174//{6175// "item": "chips",6176// "label": "a polar bear"6177// },6178//{6179// "item": "chips",6180// "label": "a pigeon"6181// },6182//{6183// "item": "chips",6184// "label": "a dress shirt"6185// },6186//{6187// "item": "chips",6188// "label": "an eagle"6189// },6190//{6191// "item": "chips",6192// "label": "a Husky"6193// },6194//{6195// "item": "chips",6196// "label": "a grizzly bear"6197// },6198//{6199// "item": "chips",6200// "label": "a Dalmatian"6201// },6202//{6203// "item": "chips",6204// "label": "a sports car"6205// },6206//{6207// "item": "chips",6208// "label": "candy"6209// },6210//{6211// "item": "chips",6212// "label": "a bird"6213// },6214//{6215// "item": "chips",6216// "label": "a flower"6217// },6218//{6219// "item": "chips",6220// "label": "a bear"6221// },6222//{6223// "item": "chips",6224// "label": "a shirt"6225// },6226//{6227// "item": "chips",6228// "label": "a dog"6229// },6230//{6231// "item": "chips",6232// "label": "a car"6233// },6234//{6235// "item": "chips",6236// "label": "a snack"6237// },6238//{6239// "item": "chips",6240// "label": "an animal"6241// },6242//{6243// "item": "chips",6244// "label": "a plant"6245// },6246//{6247// "item": "chips",6248// "label": "clothing"6249// },6250//{6251// "item": "chips",6252// "label": "a vehicle"6253// },6254//{6255// "item": "chips",6256// "label": "a dining table"6257// },6258//{6259// "item": "chips",6260// "label": "a black bear"6261// },6262//{6263// "item": "chips",6264// "label": "an SUV"6265// },6266//{6267// "item": "chips",6268// "label": "a table"6269// },6270//{6271// "item": "chips",6272// "label": "furniture"6273// },6274// // cookies6275// {6276// "item": "cookies",6277// "label": "Skittles"6278// },6279// {6280// "item": "cookies",6281// "label": "jelly beans"6282// },6283// {6284// "item": "cookies",6285// "label": "M&M's"6286// },6287// {6288// "item": "cookies",6289// "label": "gummy bears"6290// },6291// {6292// "item": "cookies",6293// "label": "a polo shirt"6294// },6295//{6296// "item": "cookies",6297// "label": "a sports car"6298// },6299//{6300// "item": "cookies",6301// "label": "a Husky"6302// },6303//{6304// "item": "cookies",6305// "label": "a swordfish"6306// },6307//{6308// "item": "cookies",6309// "label": "a picnic table"6310// },6311//{6312// "item": "cookies",6313// "label": "a pigeon"6314// },6315//{6316// "item": "cookies",6317// "label": "a Dalmatian"6318// },6319//{6320// "item": "cookies",6321// "label": "a tulip"6322// },6323//{6324// "item": "cookies",6325// "label": "a bedside table"6326// },6327//{6328// "item": "cookies",6329// "label": "a sunflower"6330// },6331//{6332// "item": "cookies",6333// "label": "candy"6334// },6335//{6336// "item": "cookies",6337// "label": "a shirt"6338// },6339//{6340// "item": "cookies",6341// "label": "a car"6342// },6343//{6344// "item": "cookies",6345// "label": "a dog"6346// },6347//{6348// "item": "cookies",6349// "label": "a fish"6350// },6351//{6352// "item": "cookies",6353// "label": "a table"6354// },6355//{6356// "item": "cookies",6357// "label": "a bird"6358// },6359//{6360// "item": "cookies",6361// "label": "a flower"6362// },6363//{6364// "item": "cookies",6365// "label": "a snack"6366// },6367//{6368// "item": "cookies",6369// "label": "clothing"6370// },6371//{6372// "item": "cookies",6373// "label": "a vehicle"6374// },6375//{6376// "item": "cookies",6377// "label": "an animal"6378// },6379//{6380// "item": "cookies",6381// "label": "furniture"6382// },6383//{6384// "item": "cookies",6385// "label": "a plant"6386// },6387//{6388// "item": "cookies",6389// "label": "a dress shirt"6390// },6391//{6392// "item": "cookies",6393// "label": "an eagle"6394// },6395//{6396// "item": "cookies",6397// "label": "a convertible"6398// },6399//{6400// "item": "cookies",6401// "label": "a Pug"6402// },6403//{6404// "item": "cookies",6405// "label": "an SUV"6406// },6407//{6408// "item": "cookies",6409// "label": "a black bear"6410// },6411//{6412// "item": "cookies",6413// "label": "a catfish"6414// },6415//{6416// "item": "cookies",6417// "label": "a parrot"6418// },6419//{6420// "item": "cookies",6421// "label": "a rose"6422// },6423//{6424// "item": "cookies",6425// "label": "a polar bear"6426// },6427//{6428// "item": "cookies",6429// "label": "a grizzly bear"6430// },6431//{6432// "item": "cookies",6433// "label": "a bear"6434// },6435// //cow6436//{6437// "item": "cow",6438// "label": "a catfish"6439// },6440//{6441// "item": "cow",6442// "label": "a polar bear"6443// },6444//{6445// "item": "cow",6446// "label": "a grizzly bear"6447// },6448//{6449// "item": "cow",6450// "label": "a black bear"6451// },6452//{6453// "item": "cow",6454// "label": "a German Shepherd"6455// },6456//{6457// "item": "cow",6458// "label": "a goldfish"6459// },6460//{6461// "item": "cow",6462// "label": "a panda bear"6463// },6464//{6465// "item": "cow",6466// "label": "a swordfish"6467// },6468//{6469// "item": "cow",6470// "label": "a Husky"6471// },6472//{6473// "item": "cow",6474// "label": "an eagle"6475// },6476//{6477// "item": "cow",6478// "label": "a clownfish"6479// },6480//{6481// "item": "cow",6482// "label": "a Dalmatian"6483// },6484//{6485// "item": "cow",6486// "label": "a parrot"6487// },6488//{6489// "item": "cow",6490// "label": "gummy bears"6491// },6492//{6493// "item": "cow",6494// "label": "an SUV"6495// },6496//{6497// "item": "cow",6498// "label": "a sunflower"6499// },6500//{6501// "item": "cow",6502// "label": "a minivan"6503// },6504//{6505// "item": "cow",6506// "label": "a fish"6507// },6508//{6509// "item": "cow",6510// "label": "a bear"6511// },6512//{6513// "item": "cow",6514// "label": "a dog"6515// },6516//{6517// "item": "cow",6518// "label": "a bird"6519// },6520//{6521// "item": "cow",6522// "label": "candy"6523// },6524//{6525// "item": "cow",6526// "label": "a car"6527// },6528//{6529// "item": "cow",6530// "label": "a flower"6531// },6532//{6533// "item": "cow",6534// "label": "an animal"6535// },6536//{6537// "item": "cow",6538// "label": "a snack"6539// },6540//{6541// "item": "cow",6542// "label": "a vehicle"6543// },6544//{6545// "item": "cow",6546// "label": "a plant"6547// },6548//{6549// "item": "cow",6550// "label": "a pigeon"6551// },6552//{6553// "item": "cow",6554// "label": "a rose"6555// },6556//{6557// "item": "cow",6558// "label": "a dress shirt"6559// },6560//{6561// "item": "cow",6562// "label": "a dining table"6563// },6564//{6565// "item": "cow",6566// "label": "a tulip"6567// },6568//{6569// "item": "cow",6570// "label": "a T-Shirt"6571// },6572//{6573// "item": "cow",6574// "label": "a shirt"6575// },6576//{6577// "item": "cow",6578// "label": "a table"6579// },6580//{6581// "item": "cow",6582// "label": "clothing"6583// },6584//{6585// "item": "cow",6586// "label": "furniture"6587// },6588// //crocodile6589// {6590// "item": "crocodile",6591// "label": "a pigeon"6592// },6593//{6594// "item": "crocodile",6595// "label": "a grizzly bear"6596// },6597//{6598// "item": "crocodile",6599// "label": "a German Shepherd"6600// },6601//{6602// "item": "crocodile",6603// "label": "a Husky"6604// },6605//{6606// "item": "crocodile",6607// "label": "a Pug"6608// },6609//{6610// "item": "crocodile",6611// "label": "a polar bear"6612// },6613//{6614// "item": "crocodile",6615// "label": "a panda bear"6616// },6617//{6618// "item": "crocodile",6619// "label": "a Dalmatian"6620// },6621//{6622// "item": "crocodile",6623// "label": "a picnic table"6624// },6625//{6626// "item": "crocodile",6627// "label": "a coffee table"6628// },6629//{6630// "item": "crocodile",6631// "label": "a minivan"6632// },6633//{6634// "item": "crocodile",6635// "label": "a tulip"6636// },6637//{6638// "item": "crocodile",6639// "label": "a bedside table"6640// },6641//{6642// "item": "crocodile",6643// "label": "a convertible"6644// },6645//{6646// "item": "crocodile",6647// "label": "M&M's"6648// },6649//{6650// "item": "crocodile",6651// "label": "a polo shirt"6652// },6653//{6654// "item": "crocodile",6655// "label": "a bird"6656// },6657//{6658// "item": "crocodile",6659// "label": "a bear"6660// },6661//{6662// "item": "crocodile",6663// "label": "a dog"6664// },6665//{6666// "item": "crocodile",6667// "label": "a table"6668// },6669//{6670// "item": "crocodile",6671// "label": "a car"6672// },6673//{6674// "item": "crocodile",6675// "label": "a flower"6676// },6677//{6678// "item": "crocodile",6679// "label": "candy"6680// },6681//{6682// "item": "crocodile",6683// "label": "a shirt"6684// },6685//{6686// "item": "crocodile",6687// "label": "an animal"6688// },6689//{6690// "item": "crocodile",6691// "label": "furniture"6692// },6693//{6694// "item": "crocodile",6695// "label": "a vehicle"6696// },6697//{6698// "item": "crocodile",6699// "label": "a plant"6700// },6701//{6702// "item": "crocodile",6703// "label": "a snack"6704// },6705//{6706// "item": "crocodile",6707// "label": "clothing"6708// },6709//{6710// "item": "crocodile",6711// "label": "a parrot"6712// },6713//{6714// "item": "crocodile",6715// "label": "a hummingbird"6716// },6717//{6718// "item": "crocodile",6719// "label": "an SUV"6720// },6721//{6722// "item": "crocodile",6723// "label": "a clownfish"6724// },6725//{6726// "item": "crocodile",6727// "label": "a dining table"6728// },6729//{6730// "item": "crocodile",6731// "label": "jelly beans"6732// },6733//{6734// "item": "crocodile",6735// "label": "a fish"6736// },6737// //dress6738// {6739// "item": "dress",6740// "label": "a Hawaii shirt"6741// },6742//{6743// "item": "dress",6744// "label": "a polo shirt"6745// },6746//{6747// "item": "dress",6748// "label": "a T-Shirt"6749// },6750//{6751// "item": "dress",6752// "label": "a dress shirt"6753// },6754//{6755// "item": "dress",6756// "label": "a bedside table"6757// },6758//{6759// "item": "dress",6760// "label": "a Dalmatian"6761// },6762//{6763// "item": "dress",6764// "label": "a panda bear"6765// },6766//{6767// "item": "dress",6768// "label": "a sunflower"6769// },6770//{6771// "item": "dress",6772// "label": "a sports car"6773// },6774//{6775// "item": "dress",6776// "label": "a picnic table"6777// },6778//{6779// "item": "dress",6780// "label": "a catfish"6781// },6782//{6783// "item": "dress",6784// "label": "a minivan"6785// },6786//{6787// "item": "dress",6788// "label": "M&M's"6789// },6790//{6791// "item": "dress",6792// "label": "a convertible"6793// },6794//{6795// "item": "dress",6796// "label": "a Husky"6797// },6798//{6799// "item": "dress",6800// "label": "an eagle"6801// },6802//{6803// "item": "dress",6804// "label": "a rose"6805// },6806//{6807// "item": "dress",6808// "label": "a coffee table"6809// },6810//{6811// "item": "dress",6812// "label": "a black bear"6813// },6814//{6815// "item": "dress",6816// "label": "a shirt"6817// },6818//{6819// "item": "dress",6820// "label": "a table"6821// },6822//{6823// "item": "dress",6824// "label": "a dog"6825// },6826//{6827// "item": "dress",6828// "label": "a bear"6829// },6830//{6831// "item": "dress",6832// "label": "a flower"6833// },6834//{6835// "item": "dress",6836// "label": "a car"6837// },6838//{6839// "item": "dress",6840// "label": "a fish"6841// },6842//{6843// "item": "dress",6844// "label": "candy"6845// },6846//{6847// "item": "dress",6848// "label": "a bird"6849// },6850//{6851// "item": "dress",6852// "label": "clothing"6853// },6854//{6855// "item": "dress",6856// "label": "furniture"6857// },6858//{6859// "item": "dress",6860// "label": "an animal"6861// },6862//{6863// "item": "dress",6864// "label": "a plant"6865// },6866//{6867// "item": "dress",6868// "label": "a vehicle"6869// },6870//{6871// "item": "dress",6872// "label": "a snack"6873// },6874//{6875// "item": "dress",6876// "label": "a parrot"6877// },6878//{6879// "item": "dress",6880// "label": "a German Shepherd"6881// },6882//{6883// "item": "dress",6884// "label": "a grizzly bear"6885// },6886//{6887// "item": "dress",6888// "label": "a goldfish"6889// },6890//{6891// "item": "dress",6892// "label": "Skittles"6893// },6894//{6895// "item": "dress",6896// "label": "a swordfish"6897// },6898//{6899// "item": "dress",6900// "label": "an SUV"6901// },6902//{6903// "item": "dress",6904// "label": "a clownfish"6905// },6906// //elephant6907// {6908// "item": "elephant",6909// "label": "a panda bear"6910// },6911//{6912// "item": "elephant",6913// "label": "an eagle"6914// },6915//{6916// "item": "elephant",6917// "label": "a swordfish"6918// },6919//{6920// "item": "elephant",6921// "label": "a hummingbird"6922// },6923//{6924// "item": "elephant",6925// "label": "a parrot"6926// },6927//{6928// "item": "elephant",6929// "label": "a black bear"6930// },6931//{6932// "item": "elephant",6933// "label": "a polar bear"6934// },6935//{6936// "item": "elephant",6937// "label": "a catfish"6938// },6939//{6940// "item": "elephant",6941// "label": "a pigeon"6942// },6943//{6944// "item": "elephant",6945// "label": "a German Shepherd"6946// },6947//{6948// "item": "elephant",6949// "label": "a clownfish"6950// },6951//{6952// "item": "elephant",6953// "label": "a grizzly bear"6954// },6955//{6956// "item": "elephant",6957// "label": "an SUV"6958// },6959//{6960// "item": "elephant",6961// "label": "a dining table"6962// },6963//{6964// "item": "elephant",6965// "label": "a daisy"6966// },6967//{6968// "item": "elephant",6969// "label": "a convertible"6970// },6971//{6972// "item": "elephant",6973// "label": "a bear"6974// },6975//{6976// "item": "elephant",6977// "label": "a bird"6978// },6979//{6980// "item": "elephant",6981// "label": "a fish"6982// },6983//{6984// "item": "elephant",6985// "label": "a dog"6986// },6987//{6988// "item": "elephant",6989// "label": "a car"6990// },6991//{6992// "item": "elephant",6993// "label": "a table"6994// },6995//{6996// "item": "elephant",6997// "label": "a flower"6998// },6999//{7000// "item": "elephant",7001// "label": "an animal"7002// },7003//{7004// "item": "elephant",7005// "label": "a vehicle"7006// },7007//{7008// "item": "elephant",7009// "label": "furniture"7010// },7011//{7012// "item": "elephant",7013// "label": "a plant"7014// },7015//{7016// "item": "elephant",7017// "label": "a Dalmatian"7018// },7019//{7020// "item": "elephant",7021// "label": "a sports car"7022// },7023//{7024// "item": "elephant",7025// "label": "a bedside table"7026// },7027//{7028// "item": "elephant",7029// "label": "M&M's"7030// },7031//{7032// "item": "elephant",7033// "label": "a rose"7034// },7035//{7036// "item": "elephant",7037// "label": "a coffee table"7038// },7039//{7040// "item": "elephant",7041// "label": "a dress shirt"7042// },7043//{7044// "item": "elephant",7045// "label": "candy"7046// },7047//{7048// "item": "elephant",7049// "label": "a shirt"7050// },7051//{7052// "item": "elephant",7053// "label": "a snack"7054// },7055//{7056// "item": "elephant",7057// "label": "clothing"7058// },7059// //firetruck7060// {7061// "item": "firetruck",7062// "label": "a convertible"7063// },7064//{7065// "item": "firetruck",7066// "label": "a sports car"7067// },7068//{7069// "item": "firetruck",7070// "label": "an SUV"7071// },7072//{7073// "item": "firetruck",7074// "label": "a minivan"7075// },7076//{7077// "item": "firetruck",7078// "label": "a Hawaii shirt"7079// },7080//{7081// "item": "firetruck",7082// "label": "a dining table"7083// },7084//{7085// "item": "firetruck",7086// "label": "a grizzly bear"7087// },7088//{7089// "item": "firetruck",7090// "label": "a swordfish"7091// },7092//{7093// "item": "firetruck",7094// "label": "a catfish"7095// },7096//{7097// "item": "firetruck",7098// "label": "gummy bears"7099// },7100//{7101// "item": "firetruck",7102// "label": "a polo shirt"7103// },7104//{7105// "item": "firetruck",7106// "label": "a picnic table"7107// },7108//{7109// "item": "firetruck",7110// "label": "a black bear"7111// },7112//{7113// "item": "firetruck",7114// "label": "a German Shepherd"7115// },7116//{7117// "item": "firetruck",7118// "label": "a polar bear"7119// },7120//{7121// "item": "firetruck",7122// "label": "a car"7123// },7124//{7125// "item": "firetruck",7126// "label": "a shirt"7127// },7128//{7129// "item": "firetruck",7130// "label": "a table"7131// },7132//{7133// "item": "firetruck",7134// "label": "a bear"7135// },7136//{7137// "item": "firetruck",7138// "label": "a fish"7139// },7140//{7141// "item": "firetruck",7142// "label": "candy"7143// },7144//{7145// "item": "firetruck",7146// "label": "a dog"7147// },7148//{7149// "item": "firetruck",7150// "label": "a vehicle"7151// },7152//{7153// "item": "firetruck",7154// "label": "clothing"7155// },7156//{7157// "item": "firetruck",7158// "label": "furniture"7159// },7160//{7161// "item": "firetruck",7162// "label": "an animal"7163// },7164//{7165// "item": "firetruck",7166// "label": "a snack"7167// },7168//{7169// "item": "firetruck",7170// "label": "jelly beans"7171// },7172//{7173// "item": "firetruck",7174// "label": "a tulip"7175// },7176//{7177// "item": "firetruck",7178// "label": "a rose"7179// },7180//{7181// "item": "firetruck",7182// "label": "a hummingbird"7183// },7184//{7185// "item": "firetruck",7186// "label": "a clownfish"7187// },7188//{7189// "item": "firetruck",7190// "label": "a sunflower"7191// },7192//{7193// "item": "firetruck",7194// "label": "a Husky"7195// },7196//{7197// "item": "firetruck",7198// "label": "a pigeon"7199// },7200//{7201// "item": "firetruck",7202// "label": "an eagle"7203// },7204//{7205// "item": "firetruck",7206// "label": "Skittles"7207// },7208//{7209// "item": "firetruck",7210// "label": "a flower"7211// },7212//{7213// "item": "firetruck",7214// "label": "a bird"7215// },7216//{7217// "item": "firetruck",7218// "label": "a plant"7219// },7220// // gloves7221//{7222// "item": "gloves",7223// "label": "a polo shirt"7224// },7225//{7226// "item": "gloves",7227// "label": "a Hawaii shirt"7228// },7229//{7230// "item": "gloves",7231// "label": "a T-Shirt"7232// },7233//{7234// "item": "gloves",7235// "label": "a dress shirt"7236// },7237//{7238// "item": "gloves",7239// "label": "a grizzly bear"7240// },7241//{7242// "item": "gloves",7243// "label": "a German Shepherd"7244// },7245//{7246// "item": "gloves",7247// "label": "a black bear"7248// },7249//{7250// "item": "gloves",7251// "label": "a panda bear"7252// },7253//{7254// "item": "gloves",7255// "label": "M&M's"7256// },7257//{7258// "item": "gloves",7259// "label": "a sunflower"7260// },7261//{7262// "item": "gloves",7263// "label": "Skittles"7264// },7265//{7266// "item": "gloves",7267// "label": "a Dalmatian"7268// },7269//{7270// "item": "gloves",7271// "label": "a swordfish"7272// },7273//{7274// "item": "gloves",7275// "label": "a coffee table"7276// },7277//{7278// "item": "gloves",7279// "label": "a shirt"7280// },7281//{7282// "item": "gloves",7283// "label": "a bear"7284// },7285//{7286// "item": "gloves",7287// "label": "a dog"7288// },7289//{7290// "item": "gloves",7291// "label": "candy"7292// },7293//{7294// "item": "gloves",7295// "label": "a flower"7296// },7297//{7298// "item": "gloves",7299// "label": "a fish"7300// },7301//{7302// "item": "gloves",7303// "label": "a table"7304// },7305//{7306// "item": "gloves",7307// "label": "clothing"7308// },7309//{7310// "item": "gloves",7311// "label": "an animal"7312// },7313//{7314// "item": "gloves",7315// "label": "a snack"7316// },7317//{7318// "item": "gloves",7319// "label": "a plant"7320// },7321//{7322// "item": "gloves",7323// "label": "furniture"7324// },7325//{7326// "item": "gloves",7327// "label": "a picnic table"7328// },7329//{7330// "item": "gloves",7331// "label": "a minivan"7332// },7333//{7334// "item": "gloves",7335// "label": "a clownfish"7336// },7337//{7338// "item": "gloves",7339// "label": "a car"7340// },7341//{7342// "item": "gloves",7343// "label": "a vehicle"7344// },7345// //grasses7346// {7347// "item": "grasses",7348// "label": "a rose"7349// },7350//{7351// "item": "grasses",7352// "label": "a sunflower"7353// },7354//{7355// "item": "grasses",7356// "label": "a daisy"7357// },7358//{7359// "item": "grasses",7360// "label": "a tulip"7361// },7362//{7363// "item": "grasses",7364// "label": "a T-Shirt"7365// },7366//{7367// "item": "grasses",7368// "label": "Skittles"7369// },7370//{7371// "item": "grasses",7372// "label": "a polar bear"7373// },7374//{7375// "item": "grasses",7376// "label": "a clownfish"7377// },7378//{7379// "item": "grasses",7380// "label": "a convertible"7381// },7382//{7383// "item": "grasses",7384// "label": "a goldfish"7385// },7386//{7387// "item": "grasses",7388// "label": "an eagle"7389// },7390//{7391// "item": "grasses",7392// "label": "a black bear"7393// },7394//{7395// "item": "grasses",7396// "label": "a hummingbird"7397// },7398//{7399// "item": "grasses",7400// "label": "a Husky"7401// },7402//{7403// "item": "grasses",7404// "label": "a picnic table"7405// },7406//{7407// "item": "grasses",7408// "label": "a pigeon"7409// },7410//{7411// "item": "grasses",7412// "label": "a flower"7413// },7414//{7415// "item": "grasses",7416// "label": "a shirt"7417// },7418//{7419// "item": "grasses",7420// "label": "candy"7421// },7422//{7423// "item": "grasses",7424// "label": "a bear"7425// },7426//{7427// "item": "grasses",7428// "label": "a fish"7429// },7430//{7431// "item": "grasses",7432// "label": "a car"7433// },7434//{7435// "item": "grasses",7436// "label": "a bird"7437// },7438//{7439// "item": "grasses",7440// "label": "a dog"7441// },7442//{7443// "item": "grasses",7444// "label": "a table"7445// },7446//{7447// "item": "grasses",7448// "label": "a plant"7449// },7450//{7451// "item": "grasses",7452// "label": "clothing"7453// },7454//{7455// "item": "grasses",7456// "label": "a snack"7457// },7458//{7459// "item": "grasses",7460// "label": "an animal"7461// },7462//{7463// "item": "grasses",7464// "label": "a vehicle"7465// },7466//{7467// "item": "grasses",7468// "label": "furniture"7469// },7470//{7471// "item": "grasses",7472// "label": "a panda bear"7473// },7474//{7475// "item": "grasses",7476// "label": "an SUV"7477// },7478//{7479// "item": "grasses",7480// "label": "M&M's"7481// },7482//{7483// "item": "grasses",7484// "label": "a minivan"7485// },7486//{7487// "item": "grasses",7488// "label": "a Pug"7489// },7490//{7491// "item": "grasses",7492// "label": "a polo shirt"7493// },7494//{7495// "item": "grasses",7496// "label": "a Dalmatian"7497// },7498//{7499// "item": "grasses",7500// "label": "a grizzly bear"7501// },7502// //horse7503// {7504// "item": "horse",7505// "label": "a goldfish"7506// },7507//{7508// "item": "horse",7509// "label": "a clownfish"7510// },7511//{7512// "item": "horse",7513// "label": "a German Shepherd"7514// },7515//{7516// "item": "horse",7517// "label": "a Husky"7518// },7519//{7520// "item": "horse",7521// "label": "a Dalmatian"7522// },7523//{7524// "item": "horse",7525// "label": "a hummingbird"7526// },7527//{7528// "item": "horse",7529// "label": "a swordfish"7530// },7531//{7532// "item": "horse",7533// "label": "a black bear"7534// },7535//{7536// "item": "horse",7537// "label": "a panda bear"7538// },7539//{7540// "item": "horse",7541// "label": "a dress shirt"7542// },7543//{7544// "item": "horse",7545// "label": "a bedside table"7546// },7547//{7548// "item": "horse",7549// "label": "a daisy"7550// },7551//{7552// "item": "horse",7553// "label": "a grizzly bear"7554// },7555//{7556// "item": "horse",7557// "label": "gummy bears"7558// },7559//{7560// "item": "horse",7561// "label": "a Hawaii shirt"7562// },7563//{7564// "item": "horse",7565// "label": "a fish"7566// },7567//{7568// "item": "horse",7569// "label": "a dog"7570// },7571//{7572// "item": "horse",7573// "label": "a bird"7574// },7575//{7576// "item": "horse",7577// "label": "a bear"7578// },7579//{7580// "item": "horse",7581// "label": "a shirt"7582// },7583//{7584// "item": "horse",7585// "label": "a table"7586// },7587//{7588// "item": "horse",7589// "label": "a flower"7590// },7591//{7592// "item": "horse",7593// "label": "candy"7594// },7595//{7596// "item": "horse",7597// "label": "an animal"7598// },7599//{7600// "item": "horse",7601// "label": "clothing"7602// },7603//{7604// "item": "horse",7605// "label": "furniture"7606// },7607//{7608// "item": "horse",7609// "label": "a plant"7610// },7611//{7612// "item": "horse",7613// "label": "a snack"7614// },7615//{7616// "item": "horse",7617// "label": "an eagle"7618// },7619//{7620// "item": "horse",7621// "label": "a catfish"7622// },7623//{7624// "item": "horse",7625// "label": "a polar bear"7626// },7627//{7628// "item": "horse",7629// "label": "a tulip"7630// },7631//{7632// "item": "horse",7633// "label": "a rose"7634// },7635//{7636// "item": "horse",7637// "label": "a convertible"7638// },7639//{7640// "item": "horse",7641// "label": "a minivan"7642// },7643//{7644// "item": "horse",7645// "label": "a car"7646// },7647//{7648// "item": "horse",7649// "label": "a vehicle"7650// },7651// //iguana7652// {7653// "item": "iguana",7654// "label": "a catfish"7655// },7656//{7657// "item": "iguana",7658// "label": "a pigeon"7659// },7660//{7661// "item": "iguana",7662// "label": "a swordfish"7663// },7664//{7665// "item": "iguana",7666// "label": "a German Shepherd"7667// },7668//{7669// "item": "iguana",7670// "label": "a panda bear"7671// },7672//{7673// "item": "iguana",7674// "label": "a clownfish"7675// },7676//{7677// "item": "iguana",7678// "label": "a goldfish"7679// },7680//{7681// "item": "iguana",7682// "label": "a black bear"7683// },7684//{7685// "item": "iguana",7686// "label": "a Pug"7687// },7688//{7689// "item": "iguana",7690// "label": "a grizzly bear"7691// },7692//{7693// "item": "iguana",7694// "label": "a parrot"7695// },7696//{7697// "item": "iguana",7698// "label": "a bedside table"7699// },7700//{7701// "item": "iguana",7702// "label": "a minivan"7703// },7704//{7705// "item": "iguana",7706// "label": "a convertible"7707// },7708//{7709// "item": "iguana",7710// "label": "M&M's"7711// },7712//{7713// "item": "iguana",7714// "label": "a sunflower"7715// },7716//{7717// "item": "iguana",7718// "label": "a dining table"7719// },7720//{7721// "item": "iguana",7722// "label": "a fish"7723// },7724//{7725// "item": "iguana",7726// "label": "a bird"7727// },7728//{7729// "item": "iguana",7730// "label": "a dog"7731// },7732//{7733// "item": "iguana",7734// "label": "a bear"7735// },7736//{7737// "item": "iguana",7738// "label": "a table"7739// },7740//{7741// "item": "iguana",7742// "label": "a car"7743// },7744//{7745// "item": "iguana",7746// "label": "candy"7747// },7748//{7749// "item": "iguana",7750// "label": "a flower"7751// },7752//{7753// "item": "iguana",7754// "label": "an animal"7755// },7756//{7757// "item": "iguana",7758// "label": "furniture"7759// },7760//{7761// "item": "iguana",7762// "label": "a vehicle"7763// },7764//{7765// "item": "iguana",7766// "label": "a snack"7767// },7768//{7769// "item": "iguana",7770// "label": "a plant"7771// },7772//{7773// "item": "iguana",7774// "label": "an eagle"7775// },7776//{7777// "item": "iguana",7778// "label": "a Husky"7779// },7780//{7781// "item": "iguana",7782// "label": "jelly beans"7783// },7784//{7785// "item": "iguana",7786// "label": "a sports car"7787// },7788//{7789// "item": "iguana",7790// "label": "Skittles"7791// },7792// // ivy7793// {7794// "item": "ivy",7795// "label": "a sunflower"7796// },7797//{7798// "item": "ivy",7799// "label": "a tulip"7800// },7801//{7802// "item": "ivy",7803// "label": "a daisy"7804// },7805//{7806// "item": "ivy",7807// "label": "a rose"7808// },7809//{7810// "item": "ivy",7811// "label": "a picnic table"7812// },7813//{7814// "item": "ivy",7815// "label": "a Dalmatian"7816// },7817//{7818// "item": "ivy",7819// "label": "a polar bear"7820// },7821//{7822// "item": "ivy",7823// "label": "a polo shirt"7824// },7825//{7826// "item": "ivy",7827// "label": "a parrot"7828// },7829//{7830// "item": "ivy",7831// "label": "a Pug"7832// },7833//{7834// "item": "ivy",7835// "label": "a black bear"7836// },7837//{7838// "item": "ivy",7839// "label": "a hummingbird"7840// },7841//{7842// "item": "ivy",7843// "label": "a dress shirt"7844// },7845//{7846// "item": "ivy",7847// "label": "a Husky"7848// },7849//{7850// "item": "ivy",7851// "label": "an eagle"7852// },7853//{7854// "item": "ivy",7855// "label": "a Hawaii shirt"7856// },7857//{7858// "item": "ivy",7859// "label": "a flower"7860// },7861//{7862// "item": "ivy",7863// "label": "a table"7864// },7865//{7866// "item": "ivy",7867// "label": "a dog"7868// },7869//{7870// "item": "ivy",7871// "label": "a bear"7872// },7873//{7874// "item": "ivy",7875// "label": "a shirt"7876// },7877//{7878// "item": "ivy",7879// "label": "a bird"7880// },7881//{7882// "item": "ivy",7883// "label": "a plant"7884// },7885//{7886// "item": "ivy",7887// "label": "furniture"7888// },7889//{7890// "item": "ivy",7891// "label": "an animal"7892// },7893//{7894// "item": "ivy",7895// "label": "clothing"7896// },7897//{7898// "item": "ivy",7899// "label": "M&M's"7900// },7901//{7902// "item": "ivy",7903// "label": "Skittles"7904// },7905//{7906// "item": "ivy",7907// "label": "a clownfish"7908// },7909//{7910// "item": "ivy",7911// "label": "a minivan"7912// },7913//{7914// "item": "ivy",7915// "label": "a T-Shirt"7916// },7917//{7918// "item": "ivy",7919// "label": "a pigeon"7920// },7921//{7922// "item": "ivy",7923// "label": "a catfish"7924// },7925//{7926// "item": "ivy",7927// "label": "a grizzly bear"7928// },7929//{7930// "item": "ivy",7931// "label": "an SUV"7932// },7933//{7934// "item": "ivy",7935// "label": "gummy bears"7936// },7937//{7938// "item": "ivy",7939// "label": "candy"7940// },7941//{7942// "item": "ivy",7943// "label": "a fish"7944// },7945//{7946// "item": "ivy",7947// "label": "a car"7948// },7949//{7950// "item": "ivy",7951// "label": "a snack"7952// },7953//{7954// "item": "ivy",7955// "label": "a vehicle"7956// },7957// //kitten7958// {7959// "item": "kitten",7960// "label": "a goldfish"7961// },7962//{7963// "item": "kitten",7964// "label": "a panda bear"7965// },7966//{7967// "item": "kitten",7968// "label": "a German Shepherd"7969// },7970//{7971// "item": "kitten",7972// "label": "a pigeon"7973// },7974//{7975// "item": "kitten",7976// "label": "a black bear"7977// },7978//{7979// "item": "kitten",7980// "label": "a polar bear"7981// },7982//{7983// "item": "kitten",7984// "label": "a swordfish"7985// },7986//{7987// "item": "kitten",7988// "label": "a parrot"7989// },7990//{7991// "item": "kitten",7992// "label": "a clownfish"7993// },7994//{7995// "item": "kitten",7996// "label": "a catfish"7997// },7998//{7999// "item": "kitten",8000// "label": "a hummingbird"8001// },8002//{8003// "item": "kitten",8004// "label": "a grizzly bear"8005// },8006//{8007// "item": "kitten",8008// "label": "a Pug"8009// },8010//{8011// "item": "kitten",8012// "label": "a rose"8013// },8014//{8015// "item": "kitten",8016// "label": "a minivan"8017// },8018//{8019// "item": "kitten",8020// "label": "a T-Shirt"8021// },8022//{8023// "item": "kitten",8024// "label": "a fish"8025// },8026//{8027// "item": "kitten",8028// "label": "a bear"8029// },8030//{8031// "item": "kitten",8032// "label": "a dog"8033// },8034//{8035// "item": "kitten",8036// "label": "a bird"8037// },8038//{8039// "item": "kitten",8040// "label": "a flower"8041// },8042//{8043// "item": "kitten",8044// "label": "a car"8045// },8046//{8047// "item": "kitten",8048// "label": "a shirt"8049// },8050//{8051// "item": "kitten",8052// "label": "an animal"8053// },8054//{8055// "item": "kitten",8056// "label": "a plant"8057// },8058//{8059// "item": "kitten",8060// "label": "a vehicle"8061// },8062//{8063// "item": "kitten",8064// "label": "clothing"8065// },8066//{8067// "item": "kitten",8068// "label": "a Dalmatian"8069// },8070//{8071// "item": "kitten",8072// "label": "a tulip"8073// },8074//{8075// "item": "kitten",8076// "label": "a Hawaii shirt"8077// },8078//{8079// "item": "kitten",8080// "label": "a picnic table"8081// },8082//{8083// "item": "kitten",8084// "label": "a coffee table"8085// },8086//{8087// "item": "kitten",8088// "label": "a table"8089// },8090//{8091// "item": "kitten",8092// "label": "furniture"8093// },8094// //lamp8095// {8096// "item": "lamp",8097// "label": "a bedside table"8098// },8099//{8100// "item": "lamp",8101// "label": "a picnic table"8102// },8103//{8104// "item": "lamp",8105// "label": "a dining table"8106// },8107//{8108// "item": "lamp",8109// "label": "a grizzly bear"8110// },8111//{8112// "item": "lamp",8113// "label": "a Hawaii shirt"8114// },8115//{8116// "item": "lamp",8117// "label": "a Husky"8118// },8119//{8120// "item": "lamp",8121// "label": "an eagle"8122// },8123//{8124// "item": "lamp",8125// "label": "a German Shepherd"8126// },8127//{8128// "item": "lamp",8129// "label": "gummy bears"8130// },8131//{8132// "item": "lamp",8133// "label": "a polar bear"8134// },8135//{8136// "item": "lamp",8137// "label": "a swordfish"8138// },8139//{8140// "item": "lamp",8141// "label": "a catfish"8142// },8143//{8144// "item": "lamp",8145// "label": "a tulip"8146// },8147//{8148// "item": "lamp",8149// "label": "a dress shirt"8150// },8151// {8152// "item": "lamp",8153// "label": "a Dalmatian"8154// },8155//{8156// "item": "lamp",8157// "label": "jelly beans"8158// },8159//{8160// "item": "lamp",8161// "label": "a panda bear"8162// },8163//{8164// "item": "lamp",8165// "label": "a minivan"8166// },8167//{8168// "item": "lamp",8169// "label": "a parrot"8170// },8171//{8172// "item": "lamp",8173// "label": "a sports car"8174// },8175//{8176// "item": "lamp",8177// "label": "a goldfish"8178// },8179//{8180// "item": "lamp",8181// "label": "a table"8182// },8183//{8184// "item": "lamp",8185// "label": "a bear"8186// },8187//{8188// "item": "lamp",8189// "label": "a shirt"8190// },8191//{8192// "item": "lamp",8193// "label": "a dog"8194// },8195//{8196// "item": "lamp",8197// "label": "a bird"8198// },8199//{8200// "item": "lamp",8201// "label": "candy"8202// },8203//{8204// "item": "lamp",8205// "label": "a fish"8206// },8207//{8208// "item": "lamp",8209// "label": "a flower"8210// },8211//{8212// "item": "lamp",8213// "label": "a car"8214// },8215//{8216// "item": "lamp",8217// "label": "furniture"8218// },8219//{8220// "item": "lamp",8221// "label": "an animal"8222// },8223//{8224// "item": "lamp",8225// "label": "clothing"8226// },8227//{8228// "item": "lamp",8229// "label": "a snack"8230// },8231//{8232// "item": "lamp",8233// "label": "a plant"8234// },8235//{8236// "item": "lamp",8237// "label": "a vehicle"8238// },8239//{8240// "item": "lamp",8241// "label": "a sunflower"8242// },8243//{8244// "item": "lamp",8245// "label": "a T-Shirt"8246// },8247//{8248// "item": "lamp",8249// "label": "a coffee table"8250// },8251//{8252// "item": "lamp",8253// "label": "a hummingbird"8254// },8255// // lion8256//{8257// "item": "lion",8258// "label": "a German Shepherd"8259// },8260//{8261// "item": "lion",8262// "label": "a Pug"8263// },8264//{8265// "item": "lion",8266// "label": "a catfish"8267// },8268//{8269// "item": "lion",8270// "label": "a parrot"8271// },8272//{8273// "item": "lion",8274// "label": "an eagle"8275// },8276//{8277// "item": "lion",8278// "label": "a swordfish"8279// },8280//{8281// "item": "lion",8282// "label": "a sports car"8283// },8284//{8285// "item": "lion",8286// "label": "a goldfish"8287// },8288//{8289// "item": "lion",8290// "label": "a dress shirt"8291// },8292//{8293// "item": "lion",8294// "label": "jelly beans"8295// },8296//{8297// "item": "lion",8298// "label": "a sunflower"8299// },8300//{8301// "item": "lion",8302// "label": "an SUV"8303// },8304//{8305// "item": "lion",8306// "label": "a coffee table"8307// },8308//{8309// "item": "lion",8310// "label": "a dog"8311// },8312//{8313// "item": "lion",8314// "label": "a fish"8315// },8316//{8317// "item": "lion",8318// "label": "a bird"8319// },8320//{8321// "item": "lion",8322// "label": "a car"8323// },8324//{8325// "item": "lion",8326// "label": "a shirt"8327// },8328//{8329// "item": "lion",8330// "label": "candy"8331// },8332//{8333// "item": "lion",8334// "label": "a flower"8335// },8336//{8337// "item": "lion",8338// "label": "a table"8339// },8340//{8341// "item": "lion",8342// "label": "an animal"8343// },8344//{8345// "item": "lion",8346// "label": "a vehicle"8347// },8348//{8349// "item": "lion",8350// "label": "clothing"8351// },8352//{8353// "item": "lion",8354// "label": "a snack"8355// },8356//{8357// "item": "lion",8358// "label": "a plant"8359// },8360//{8361// "item": "lion",8362// "label": "furniture"8363// },8364//{8365// "item": "lion",8366// "label": "a black bear"8367// },8368//{8369// "item": "lion",8370// "label": "a clownfish"8371// },8372//{8373// "item": "lion",8374// "label": "a pigeon"8375// },8376//{8377// "item": "lion",8378// "label": "a grizzly bear"8379// },8380//{8381// "item": "lion",8382// "label": "a hummingbird"8383// },8384//{8385// "item": "lion",8386// "label": "a T-Shirt"8387// },8388//{8389// "item": "lion",8390// "label": "a polar bear"8391// },8392//{8393// "item": "lion",8394// "label": "a Dalmatian"8395// },8396//{8397// "item": "lion",8398// "label": "a dining table"8399// },8400//{8401// "item": "lion",8402// "label": "a bear"8403// },8404// //lobster8405// {8406// "item": "lobster",8407// "label": "a parrot"8408// },8409//{8410// "item": "lobster",8411// "label": "a Husky"8412// },8413//{8414// "item": "lobster",8415// "label": "a Pug"8416// },8417//{8418// "item": "lobster",8419// "label": "a black bear"8420// },8421//{8422// "item": "lobster",8423// "label": "a catfish"8424// },8425//{8426// "item": "lobster",8427// "label": "a grizzly bear"8428// },8429//{8430// "item": "lobster",8431// "label": "a goldfish"8432// },8433//{8434// "item": "lobster",8435// "label": "a clownfish"8436// },8437//{8438// "item": "lobster",8439// "label": "a Dalmatian"8440// },8441//{8442// "item": "lobster",8443// "label": "a swordfish"8444// },8445//{8446// "item": "lobster",8447// "label": "a pigeon"8448// },8449//{8450// "item": "lobster",8451// "label": "jelly beans"8452// },8453//{8454// "item": "lobster",8455// "label": "a tulip"8456// },8457//{8458// "item": "lobster",8459// "label": "a Hawaii shirt"8460// },8461//{8462// "item": "lobster",8463// "label": "a dining table"8464// },8465//{8466// "item": "lobster",8467// "label": "a convertible"8468// },8469//{8470// "item": "lobster",8471// "label": "a bird"8472// },8473//{8474// "item": "lobster",8475// "label": "a dog"8476// },8477//{8478// "item": "lobster",8479// "label": "a bear"8480// },8481//{8482// "item": "lobster",8483// "label": "a fish"8484// },8485//{8486// "item": "lobster",8487// "label": "candy"8488// },8489//{8490// "item": "lobster",8491// "label": "a flower"8492// },8493//{8494// "item": "lobster",8495// "label": "a shirt"8496// },8497//{8498// "item": "lobster",8499// "label": "a table"8500// },8501//{8502// "item": "lobster",8503// "label": "a car"8504// },8505//{8506// "item": "lobster",8507// "label": "an animal"8508// },8509//{8510// "item": "lobster",8511// "label": "a snack"8512// },8513//{8514// "item": "lobster",8515// "label": "a plant"8516// },8517//{8518// "item": "lobster",8519// "label": "clothing"8520// },8521//{8522// "item": "lobster",8523// "label": "furniture"8524// },8525//{8526// "item": "lobster",8527// "label": "a vehicle"8528// },8529//{8530// "item": "lobster",8531// "label": "a panda bear"8532// },8533//{8534// "item": "lobster",8535// "label": "a German Shepherd"8536// },8537//{8538// "item": "lobster",8539// "label": "a sports car"8540// },8541//{8542// "item": "lobster",8543// "label": "an SUV"8544// },8545//{8546// "item": "lobster",8547// "label": "M&M's"8548// },8549//{8550// "item": "lobster",8551// "label": "Skittles"8552// },8553//{8554// "item": "lobster",8555// "label": "a dress shirt"8556// },8557// //motorcycle8558// {8559// "item": "motorcycle",8560// "label": "a sports car"8561// },8562//{8563// "item": "motorcycle",8564// "label": "a minivan"8565// },8566//{8567// "item": "motorcycle",8568// "label": "an SUV"8569// },8570//{8571// "item": "motorcycle",8572// "label": "a convertible"8573// },8574//{8575// "item": "motorcycle",8576// "label": "a German Shepherd"8577// },8578//{8579// "item": "motorcycle",8580// "label": "a Husky"8581// },8582//{8583// "item": "motorcycle",8584// "label": "a hummingbird"8585// },8586//{8587// "item": "motorcycle",8588// "label": "a polar bear"8589// },8590//{8591// "item": "motorcycle",8592// "label": "a coffee table"8593// },8594//{8595// "item": "motorcycle",8596// "label": "a picnic table"8597// },8598//{8599// "item": "motorcycle",8600// "label": "a polo shirt"8601// },8602//{8603// "item": "motorcycle",8604// "label": "a car"8605// },8606//{8607// "item": "motorcycle",8608// "label": "a dog"8609// },8610//{8611// "item": "motorcycle",8612// "label": "a bird"8613// },8614//{8615// "item": "motorcycle",8616// "label": "a bear"8617// },8618//{8619// "item": "motorcycle",8620// "label": "a table"8621// },8622//{8623// "item": "motorcycle",8624// "label": "a shirt"8625// },8626//{8627// "item": "motorcycle",8628// "label": "a vehicle"8629// },8630//{8631// "item": "motorcycle",8632// "label": "an animal"8633// },8634//{8635// "item": "motorcycle",8636// "label": "furniture"8637// },8638//{8639// "item": "motorcycle",8640// "label": "clothing"8641// },8642//{8643// "item": "motorcycle",8644// "label": "a T-Shirt"8645// },8646//{8647// "item": "motorcycle",8648// "label": "an eagle"8649// },8650//{8651// "item": "motorcycle",8652// "label": "a goldfish"8653// },8654//{8655// "item": "motorcycle",8656// "label": "a pigeon"8657// },8658//{8659// "item": "motorcycle",8660// "label": "a grizzly bear"8661// },8662//{8663// "item": "motorcycle",8664// "label": "a swordfish"8665// },8666//{8667// "item": "motorcycle",8668// "label": "a fish"8669// },8670// //pig8671// {8672// "item": "pig",8673// "label": "a clownfish"8674// },8675//{8676// "item": "pig",8677// "label": "a German Shepherd"8678// },8679//{8680// "item": "pig",8681// "label": "a polar bear"8682// },8683//{8684// "item": "pig",8685// "label": "a catfish"8686// },8687//{8688// "item": "pig",8689// "label": "a panda bear"8690// },8691//{8692// "item": "pig",8693// "label": "a Pug"8694// },8695//{8696// "item": "pig",8697// "label": "a Dalmatian"8698// },8699//{8700// "item": "pig",8701// "label": "an eagle"8702// },8703//{8704// "item": "pig",8705// "label": "a parrot"8706// },8707//{8708// "item": "pig",8709// "label": "a pigeon"8710// },8711//{8712// "item": "pig",8713// "label": "a swordfish"8714// },8715//{8716// "item": "pig",8717// "label": "a T-Shirt"8718// },8719//{8720// "item": "pig",8721// "label": "a Hawaii shirt"8722// },8723//{8724// "item": "pig",8725// "label": "a dress shirt"8726// },8727//{8728// "item": "pig",8729// "label": "a fish"8730// },8731//{8732// "item": "pig",8733// "label": "a dog"8734// },8735//{8736// "item": "pig",8737// "label": "a bear"8738// },8739//{8740// "item": "pig",8741// "label": "a bird"8742// },8743//{8744// "item": "pig",8745// "label": "a shirt"8746// },8747//{8748// "item": "pig",8749// "label": "an animal"8750// },8751//{8752// "item": "pig",8753// "label": "clothing"8754// },8755//{8756// "item": "pig",8757// "label": "a Husky"8758// },8759//{8760// "item": "pig",8761// "label": "a goldfish"8762// },8763//{8764// "item": "pig",8765// "label": "a black bear"8766// },8767//{8768// "item": "pig",8769// "label": "a hummingbird"8770// },8771//{8772// "item": "pig",8773// "label": "a polo shirt"8774// },8775//// popcorn8776//{8777// "item": "popcorn",8778// "label": "gummy bears"8779// },8780//{8781// "item": "popcorn",8782// "label": "jelly beans"8783// },8784//{8785// "item": "popcorn",8786// "label": "Skittles"8787// },8788//{8789// "item": "popcorn",8790// "label": "M&M's"8791// },8792//{8793// "item": "popcorn",8794// "label": "a T-Shirt"8795// },8796//{8797// "item": "popcorn",8798// "label": "a Pug"8799// },8800//{8801// "item": "popcorn",8802// "label": "an SUV"8803// },8804//{8805// "item": "popcorn",8806// "label": "a catfish"8807// },8808//{8809// "item": "popcorn",8810// "label": "a German Shepherd"8811// },8812//{8813// "item": "popcorn",8814// "label": "an eagle"8815// },8816//{8817// "item": "popcorn",8818// "label": "a pigeon"8819// },8820//{8821// "item": "popcorn",8822// "label": "candy"8823// },8824//{8825// "item": "popcorn",8826// "label": "a shirt"8827// },8828//{8829// "item": "popcorn",8830// "label": "a dog"8831// },8832//{8833// "item": "popcorn",8834// "label": "a car"8835// },8836//{8837// "item": "popcorn",8838// "label": "a fish"8839// },8840//{8841// "item": "popcorn",8842// "label": "a bird"8843// },8844//{8845// "item": "popcorn",8846// "label": "a snack"8847// },8848//{8849// "item": "popcorn",8850// "label": "clothing"8851// },8852//{8853// "item": "popcorn",8854// "label": "an animal"8855// },8856//{8857// "item": "popcorn",8858// "label": "a vehicle"8859// },8860//{8861// "item": "popcorn",8862// "label": "a parrot"8863// },8864//{8865// "item": "popcorn",8866// "label": "a Husky"8867// },8868//{8869// "item": "popcorn",8870// "label": "a coffee table"8871// },8872//{8873// "item": "popcorn",8874// "label": "a hummingbird"8875// },8876//{8877// "item": "popcorn",8878// "label": "a bedside table"8879// },8880//{8881// "item": "popcorn",8882// "label": "a black bear"8883// },8884//{8885// "item": "popcorn",8886// "label": "a convertible"8887// },8888//{8889// "item": "popcorn",8890// "label": "a daisy"8891// },8892//{8893// "item": "popcorn",8894// "label": "a table"8895// },8896//{8897// "item": "popcorn",8898// "label": "a bear"8899// },8900//{8901// "item": "popcorn",8902// "label": "a flower"8903// },8904//{8905// "item": "popcorn",8906// "label": "furniture"8907// },8908//{8909// "item": "popcorn",8910// "label": "a plant"8911// },8912// //pottedPlant8913// {8914// "item": "pottedPlant",8915// "label": "a rose"8916// },8917//{8918// "item": "pottedPlant",8919// "label": "a tulip"8920// },8921//{8922// "item": "pottedPlant",8923// "label": "a daisy"8924// },8925//{8926// "item": "pottedPlant",8927// "label": "a sunflower"8928// },8929//{8930// "item": "pottedPlant",8931// "label": "a bedside table"8932// },8933//{8934// "item": "pottedPlant",8935// "label": "a convertible"8936// },8937//{8938// "item": "pottedPlant",8939// "label": "a Pug"8940// },8941//{8942// "item": "pottedPlant",8943// "label": "a panda bear"8944// },8945//{8946// "item": "pottedPlant",8947// "label": "a goldfish"8948// },8949//{8950// "item": "pottedPlant",8951// "label": "a pigeon"8952// },8953//{8954// "item": "pottedPlant",8955// "label": "a black bear"8956// },8957//{8958// "item": "pottedPlant",8959// "label": "a parrot"8960// },8961//{8962// "item": "pottedPlant",8963// "label": "a grizzly bear"8964// },8965//{8966// "item": "pottedPlant",8967// "label": "a catfish"8968// },8969//{8970// "item": "pottedPlant",8971// "label": "a flower"8972// },8973//{8974// "item": "pottedPlant",8975// "label": "a table"8976// },8977//{8978// "item": "pottedPlant",8979// "label": "a car"8980// },8981//{8982// "item": "pottedPlant",8983// "label": "a dog"8984// },8985//{8986// "item": "pottedPlant",8987// "label": "a bear"8988// },8989//{8990// "item": "pottedPlant",8991// "label": "a fish"8992// },8993//{8994// "item": "pottedPlant",8995// "label": "a bird"8996// },8997//{8998// "item": "pottedPlant",8999// "label": "a plant"9000// },9001//{9002// "item": "pottedPlant",9003// "label": "furniture"9004// },9005//{9006// "item": "pottedPlant",9007// "label": "a vehicle"9008// },9009//{9010// "item": "pottedPlant",9011// "label": "an animal"9012// },9013//{9014// "item": "pottedPlant",9015// "label": "a clownfish"9016// },9017//{9018// "item": "pottedPlant",9019// "label": "a German Shepherd"9020// },9021//{9022// "item": "pottedPlant",9023// "label": "a polar bear"9024// },9025//{9026// "item": "pottedPlant",9027// "label": "a picnic table"9028// },9029// //pretzels9030// {9031// "item": "pretzels",9032// "label": "M&M's"9033// },9034//{9035// "item": "pretzels",9036// "label": "Skittles"9037// },9038//{9039// "item": "pretzels",9040// "label": "gummy bears"9041// },9042//{9043// "item": "pretzels",9044// "label": "jelly beans"9045// },9046//{9047// "item": "pretzels",9048// "label": "a polo shirt"9049// },9050//{9051// "item": "pretzels",9052// "label": "a dress shirt"9053// },9054//{9055// "item": "pretzels",9056// "label": "a minivan"9057// },9058//{9059// "item": "pretzels",9060// "label": "a hummingbird"9061// },9062//{9063// "item": "pretzels",9064// "label": "a catfish"9065// },9066//{9067// "item": "pretzels",9068// "label": "a Husky"9069// },9070//{9071// "item": "pretzels",9072// "label": "a Pug"9073// },9074//{9075// "item": "pretzels",9076// "label": "a rose"9077// },9078//{9079// "item": "pretzels",9080// "label": "a T-Shirt"9081// },9082//{9083// "item": "pretzels",9084// "label": "a sports car"9085// },9086//{9087// "item": "pretzels",9088// "label": "a bedside table"9089// },9090//{9091// "item": "pretzels",9092// "label": "a dining table"9093// },9094//{9095// "item": "pretzels",9096// "label": "a Dalmatian"9097// },9098//{9099// "item": "pretzels",9100// "label": "candy"9101// },9102//{9103// "item": "pretzels",9104// "label": "a shirt"9105// },9106//{9107// "item": "pretzels",9108// "label": "a car"9109// },9110//{9111// "item": "pretzels",9112// "label": "a bird"9113// },9114//{9115// "item": "pretzels",9116// "label": "a fish"9117// },9118//{9119// "item": "pretzels",9120// "label": "a dog"9121// },9122//{9123// "item": "pretzels",9124// "label": "a flower"9125// },9126//{9127// "item": "pretzels",9128// "label": "a table"9129// },9130//{9131// "item": "pretzels",9132// "label": "a snack"9133// },9134//{9135// "item": "pretzels",9136// "label": "clothing"9137// },9138//{9139// "item": "pretzels",9140// "label": "a vehicle"9141// },9142//{9143// "item": "pretzels",9144// "label": "an animal"9145// },9146//{9147// "item": "pretzels",9148// "label": "a plant"9149// },9150//{9151// "item": "pretzels",9152// "label": "furniture"9153// },9154//{9155// "item": "pretzels",9156// "label": "a Hawaii shirt"9157// },9158//{9159// "item": "pretzels",9160// "label": "a polar bear"9161// },9162//{9163// "item": "pretzels",9164// "label": "a grizzly bear"9165// },9166//{9167// "item": "pretzels",9168// "label": "a clownfish"9169// },9170//{9171// "item": "pretzels",9172// "label": "a parrot"9173// },9174//{9175// "item": "pretzels",9176// "label": "a black bear"9177// },9178//{9179// "item": "pretzels",9180// "label": "a picnic table"9181// },9182//{9183// "item": "pretzels",9184// "label": "a coffee table"9185// },9186//{9187// "item": "pretzels",9188// "label": "a bear"9189// },9190// //rabbit9191// {9192// "item": "rabbit",9193// "label": "a panda bear"9194// },9195//{9196// "item": "rabbit",9197// "label": "a hummingbird"9198// },9199//{9200// "item": "rabbit",9201// "label": "a Dalmatian"9202// },9203//{9204// "item": "rabbit",9205// "label": "a Pug"9206// },9207//{9208// "item": "rabbit",9209// "label": "a pigeon"9210// },9211//{9212// "item": "rabbit",9213// "label": "a goldfish"9214// },9215//{9216// "item": "rabbit",9217// "label": "a parrot"9218// },9219//{9220// "item": "rabbit",9221// "label": "a black bear"9222// },9223//{9224// "item": "rabbit",9225// "label": "an eagle"9226// },9227//{9228// "item": "rabbit",9229// "label": "a polar bear"9230// },9231//{9232// "item": "rabbit",9233// "label": "gummy bears"9234// },9235//{9236// "item": "rabbit",9237// "label": "a T-Shirt"9238// },9239//{9240// "item": "rabbit",9241// "label": "a tulip"9242// },9243//{9244// "item": "rabbit",9245// "label": "a bedside table"9246// },9247//{9248// "item": "rabbit",9249// "label": "a picnic table"9250// },9251//{9252// "item": "rabbit",9253// "label": "a polo shirt"9254// },9255//{9256// "item": "rabbit",9257// "label": "a coffee table"9258// },9259//{9260// "item": "rabbit",9261// "label": "jelly beans"9262// },9263//{9264// "item": "rabbit",9265// "label": "M&M's"9266// },9267//{9268// "item": "rabbit",9269// "label": "a sunflower"9270// },9271//{9272// "item": "rabbit",9273// "label": "a bear"9274// },9275//{9276// "item": "rabbit",9277// "label": "a bird"9278// },9279//{9280// "item": "rabbit",9281// "label": "a dog"9282// },9283//{9284// "item": "rabbit",9285// "label": "a fish"9286// },9287//{9288// "item": "rabbit",9289// "label": "candy"9290// },9291//{9292// "item": "rabbit",9293// "label": "a shirt"9294// },9295//{9296// "item": "rabbit",9297// "label": "a flower"9298// },9299//{9300// "item": "rabbit",9301// "label": "a table"9302// },9303//{9304// "item": "rabbit",9305// "label": "an animal"9306// },9307//{9308// "item": "rabbit",9309// "label": "a snack"9310// },9311//{9312// "item": "rabbit",9313// "label": "clothing"9314// },9315//{9316// "item": "rabbit",9317// "label": "a plant"9318// },9319//{9320// "item": "rabbit",9321// "label": "furniture"9322// },9323//{9324// "item": "rabbit",9325// "label": "a catfish"9326// },9327//{9328// "item": "rabbit",9329// "label": "a Husky"9330// },9331//{9332// "item": "rabbit",9333// "label": "a clownfish"9334// },9335//{9336// "item": "rabbit",9337// "label": "a grizzly bear"9338// },9339//{9340// "item": "rabbit",9341// "label": "a convertible"9342// },9343//{9344// "item": "rabbit",9345// "label": "a dining table"9346// },9347//{9348// "item": "rabbit",9349// "label": "a sports car"9350// },9351//{9352// "item": "rabbit",9353// "label": "a car"9354// },9355//{9356// "item": "rabbit",9357// "label": "a vehicle"9358// },9359// //rhino9360// {9361// "item": "rhino",9362// "label": "a goldfish"9363// },9364//{9365// "item": "rhino",9366// "label": "a swordfish"9367// },9368//{9369// "item": "rhino",9370// "label": "a Pug"9371// },9372//{9373// "item": "rhino",9374// "label": "an eagle"9375// },9376//{9377// "item": "rhino",9378// "label": "a pigeon"9379// },9380//{9381// "item": "rhino",9382// "label": "a parrot"9383// },9384//{9385// "item": "rhino",9386// "label": "a panda bear"9387// },9388//{9389// "item": "rhino",9390// "label": "a polar bear"9391// },9392//{9393// "item": "rhino",9394// "label": "a T-Shirt"9395// },9396//{9397// "item": "rhino",9398// "label": "a Hawaii shirt"9399// },9400//{9401// "item": "rhino",9402// "label": "M&M's"9403// },9404//{9405// "item": "rhino",9406// "label": "a hummingbird"9407// },9408//{9409// "item": "rhino",9410// "label": "a sunflower"9411// },9412//{9413// "item": "rhino",9414// "label": "a sports car"9415// },9416//{9417// "item": "rhino",9418// "label": "a clownfish"9419// },9420//{9421// "item": "rhino",9422// "label": "a Dalmatian"9423// },9424//{9425// "item": "rhino",9426// "label": "a dress shirt"9427// },9428//{9429// "item": "rhino",9430// "label": "a fish"9431// },9432//{9433// "item": "rhino",9434// "label": "a dog"9435// },9436//{9437// "item": "rhino",9438// "label": "a bird"9439// },9440//{9441// "item": "rhino",9442// "label": "a bear"9443// },9444//{9445// "item": "rhino",9446// "label": "a shirt"9447// },9448//{9449// "item": "rhino",9450// "label": "candy"9451// },9452//{9453// "item": "rhino",9454// "label": "a flower"9455// },9456//{9457// "item": "rhino",9458// "label": "a car"9459// },9460//{9461// "item": "rhino",9462// "label": "an animal"9463// },9464//{9465// "item": "rhino",9466// "label": "clothing"9467// },9468//{9469// "item": "rhino",9470// "label": "a snack"9471// },9472//{9473// "item": "rhino",9474// "label": "a plant"9475// },9476//{9477// "item": "rhino",9478// "label": "a vehicle"9479// },9480//{9481// "item": "rhino",9482// "label": "a German Shepherd"9483// },9484//{9485// "item": "rhino",9486// "label": "gummy bears"9487// },9488//{9489// "item": "rhino",9490// "label": "a rose"9491// },9492//{9493// "item": "rhino",9494// "label": "a minivan"9495// },9496//{9497// "item": "rhino",9498// "label": "a coffee table"9499// },9500//{9501// "item": "rhino",9502// "label": "Skittles"9503// },9504//{9505// "item": "rhino",9506// "label": "a convertible"9507// },9508//{9509// "item": "rhino",9510// "label": "a table"9511// },9512//{9513// "item": "rhino",9514// "label": "furniture"9515// },9516// //rosemary9517// {9518// "item": "rosemary",9519// "label": "a daisy"9520// },9521//{9522// "item": "rosemary",9523// "label": "a sunflower"9524// },9525//{9526// "item": "rosemary",9527// "label": "a rose"9528// },9529//{9530// "item": "rosemary",9531// "label": "a tulip"9532// },9533//{9534// "item": "rosemary",9535// "label": "a parrot"9536// },9537//{9538// "item": "rosemary",9539// "label": "an eagle"9540// },9541//{9542// "item": "rosemary",9543// "label": "M&M's"9544// },9545//{9546// "item": "rosemary",9547// "label": "a sports car"9548// },9549//{9550// "item": "rosemary",9551// "label": "a pigeon"9552// },9553//{9554// "item": "rosemary",9555// "label": "a polar bear"9556// },9557//{9558// "item": "rosemary",9559// "label": "a catfish"9560// },9561//{9562// "item": "rosemary",9563// "label": "Skittles"9564// },9565//{9566// "item": "rosemary",9567// "label": "a flower"9568// },9569//{9570// "item": "rosemary",9571// "label": "a bird"9572// },9573//{9574// "item": "rosemary",9575// "label": "candy"9576// },9577//{9578// "item": "rosemary",9579// "label": "a car"9580// },9581//{9582// "item": "rosemary",9583// "label": "a bear"9584// },9585//{9586// "item": "rosemary",9587// "label": "a fish"9588// },9589//{9590// "item": "rosemary",9591// "label": "a plant"9592// },9593//{9594// "item": "rosemary",9595// "label": "an animal"9596// },9597//{9598// "item": "rosemary",9599// "label": "a snack"9600// },9601//{9602// "item": "rosemary",9603// "label": "a vehicle"9604// },9605//{9606// "item": "rosemary",9607// "label": "a swordfish"9608// },9609//{9610// "item": "rosemary",9611// "label": "a clownfish"9612// },9613//{9614// "item": "rosemary",9615// "label": "an SUV"9616// },9617//{9618// "item": "rosemary",9619// "label": "a convertible"9620// },9621//{9622// "item": "rosemary",9623// "label": "a T-Shirt"9624// },9625//{9626// "item": "rosemary",9627// "label": "a Husky"9628// },9629//{9630// "item": "rosemary",9631// "label": "a panda bear"9632// },9633//{9634// "item": "rosemary",9635// "label": "a Hawaii shirt"9636// },9637//{9638// "item": "rosemary",9639// "label": "a picnic table"9640// },9641//{9642// "item": "rosemary",9643// "label": "a Dalmatian"9644// },9645//{9646// "item": "rosemary",9647// "label": "a black bear"9648// },9649//{9650// "item": "rosemary",9651// "label": "a shirt"9652// },9653//{9654// "item": "rosemary",9655// "label": "a dog"9656// },9657//{9658// "item": "rosemary",9659// "label": "a table"9660// },9661//{9662// "item": "rosemary",9663// "label": "clothing"9664// },9665//{9666// "item": "rosemary",9667// "label": "furniture"9668// },9669// //sheep9670// {9671// "item": "sheep",9672// "label": "a grizzly bear"9673// },9674//{9675// "item": "sheep",9676// "label": "a goldfish"9677// },9678//{9679// "item": "sheep",9680// "label": "a catfish"9681// },9682//{9683// "item": "sheep",9684// "label": "a swordfish"9685// },9686//{9687// "item": "sheep",9688// "label": "a Pug"9689// },9690//{9691// "item": "sheep",9692// "label": "a German Shepherd"9693// },9694//{9695// "item": "sheep",9696// "label": "a pigeon"9697// },9698//{9699// "item": "sheep",9700// "label": "a Dalmatian"9701// },9702//{9703// "item": "sheep",9704// "label": "an eagle"9705// },9706//{9707// "item": "sheep",9708// "label": "a parrot"9709// },9710//{9711// "item": "sheep",9712// "label": "a sports car"9713// },9714//{9715// "item": "sheep",9716// "label": "an SUV"9717// },9718//{9719// "item": "sheep",9720// "label": "a dining table"9721// },9722//{9723// "item": "sheep",9724// "label": "a sunflower"9725// },9726//{9727// "item": "sheep",9728// "label": "M&M's"9729// },9730//{9731// "item": "sheep",9732// "label": "a picnic table"9733// },9734//{9735// "item": "sheep",9736// "label": "a minivan"9737// },9738//{9739// "item": "sheep",9740// "label": "a convertible"9741// },9742//{9743// "item": "sheep",9744// "label": "a bear"9745// },9746//{9747// "item": "sheep",9748// "label": "a fish"9749// },9750//{9751// "item": "sheep",9752// "label": "a dog"9753// },9754//{9755// "item": "sheep",9756// "label": "a bird"9757// },9758//{9759// "item": "sheep",9760// "label": "a car"9761// },9762//{9763// "item": "sheep",9764// "label": "a table"9765// },9766//{9767// "item": "sheep",9768// "label": "a flower"9769// },9770//{9771// "item": "sheep",9772// "label": "candy"9773// },9774//{9775// "item": "sheep",9776// "label": "an animal"9777// },9778//{9779// "item": "sheep",9780// "label": "a vehicle"9781// },9782//{9783// "item": "sheep",9784// "label": "furniture"9785// },9786//{9787// "item": "sheep",9788// "label": "a plant"9789// },9790//{9791// "item": "sheep",9792// "label": "a snack"9793// },9794//{9795// "item": "sheep",9796// "label": "a panda bear"9797// },9798//{9799// "item": "sheep",9800// "label": "a black bear"9801// },9802//{9803// "item": "sheep",9804// "label": "a clownfish"9805// },9806//{9807// "item": "sheep",9808// "label": "a coffee table"9809// },9810//{9811// "item": "sheep",9812// "label": "a Husky"9813// },9814//{9815// "item": "sheep",9816// "label": "a rose"9817// },9818//{9819// "item": "sheep",9820// "label": "a polar bear"9821// },9822//{9823// "item": "sheep",9824// "label": "a bedside table"9825// },9826//{9827// "item": "sheep",9828// "label": "a Hawaii shirt"9829// },9830//{9831// "item": "sheep",9832// "label": "a polo shirt"9833// },9834//{9835// "item": "sheep",9836// "label": "a shirt"9837// },9838//{9839// "item": "sheep",9840// "label": "clothing"9841// },9842// //snake9843// {9844// "item": "snake",9845// "label": "a clownfish"9846// },9847//{9848// "item": "snake",9849// "label": "a Husky"9850// },9851//{9852// "item": "snake",9853// "label": "an eagle"9854// },9855//{9856// "item": "snake",9857// "label": "a polar bear"9858// },9859//{9860// "item": "snake",9861// "label": "a goldfish"9862// },9863//{9864// "item": "snake",9865// "label": "a grizzly bear"9866// },9867//{9868// "item": "snake",9869// "label": "a Pug"9870// },9871//{9872// "item": "snake",9873// "label": "a hummingbird"9874// },9875//{9876// "item": "snake",9877// "label": "a parrot"9878// },9879//{9880// "item": "snake",9881// "label": "a dining table"9882// },9883//{9884// "item": "snake",9885// "label": "M&M's"9886// },9887//{9888// "item": "snake",9889// "label": "a Hawaii shirt"9890// },9891//{9892// "item": "snake",9893// "label": "an SUV"9894// },9895//{9896// "item": "snake",9897// "label": "gummy bears"9898// },9899//{9900// "item": "snake",9901// "label": "a fish"9902// },9903//{9904// "item": "snake",9905// "label": "a dog"9906// },9907//{9908// "item": "snake",9909// "label": "a bird"9910// },9911//{9912// "item": "snake",9913// "label": "a bear"9914// },9915//{9916// "item": "snake",9917// "label": "a table"9918// },9919//{9920// "item": "snake",9921// "label": "candy"9922// },9923//{9924// "item": "snake",9925// "label": "a shirt"9926// },9927//{9928// "item": "snake",9929// "label": "a car"9930// },9931//{9932// "item": "snake",9933// "label": "an animal"9934// },9935//{9936// "item": "snake",9937// "label": "furniture"9938// },9939//{9940// "item": "snake",9941// "label": "a snack"9942// },9943//{9944// "item": "snake",9945// "label": "clothing"9946// },9947//{9948// "item": "snake",9949// "label": "a vehicle"9950// },9951//{9952// "item": "snake",9953// "label": "a catfish"9954// },9955//{9956// "item": "snake",9957// "label": "a Dalmatian"9958// },9959//{9960// "item": "snake",9961// "label": "a panda bear"9962// },9963//{9964// "item": "snake",9965// "label": "a daisy"9966// },9967//{9968// "item": "snake",9969// "label": "a minivan"9970// },9971//{9972// "item": "snake",9973// "label": "a flower"9974// },9975//{9976// "item": "snake",9977// "label": "a plant"9978// },9979// //socks9980// {9981// "item": "socks",9982// "label": "a T-Shirt"9983// },9984//{9985// "item": "socks",9986// "label": "a dress shirt"9987// },9988//{9989// "item": "socks",9990// "label": "a Hawaii shirt"9991// },9992//{9993// "item": "socks",9994// "label": "a polo shirt"9995// },9996//{9997// "item": "socks",9998// "label": "a rose"9999// },10000//{10001// "item": "socks",10002// "label": "a clownfish"10003// },10004//{10005// "item": "socks",10006// "label": "a parrot"10007// },10008//{10009// "item": "socks",10010// "label": "a minivan"10011// },10012//{10013// "item": "socks",10014// "label": "a goldfish"10015// },10016//{10017// "item": "socks",10018// "label": "a hummingbird"10019// },10020//{10021// "item": "socks",10022// "label": "a convertible"10023// },10024//{10025// "item": "socks",10026// "label": "a Husky"10027// },10028//{10029// "item": "socks",10030// "label": "an eagle"10031// },10032//{10033// "item": "socks",10034// "label": "a dining table"10035// },10036//{10037// "item": "socks",10038// "label": "a Dalmatian"10039// },10040//{10041// "item": "socks",10042// "label": "a shirt"10043// },10044//{10045// "item": "socks",10046// "label": "a flower"10047// },10048//{10049// "item": "socks",10050// "label": "a fish"10051// },10052//{10053// "item": "socks",10054// "label": "a bird"10055// },10056//{10057// "item": "socks",10058// "label": "a car"10059// },10060//{10061// "item": "socks",10062// "label": "a dog"10063// },10064//{10065// "item": "socks",10066// "label": "a table"10067// },10068//{10069// "item": "socks",10070// "label": "clothing"10071// },10072//{10073// "item": "socks",10074// "label": "a plant"10075// },10076//{10077// "item": "socks",10078// "label": "an animal"10079// },10080//{10081// "item": "socks",10082// "label": "a vehicle"10083// },10084//{10085// "item": "socks",10086// "label": "furniture"10087// },10088//{10089// "item": "socks",10090// "label": "a sunflower"10091// },10092//{10093// "item": "socks",10094// "label": "jelly beans"10095// },10096//{10097// "item": "socks",10098// "label": "a swordfish"10099// },10100//{10101// "item": "socks",10102// "label": "M&M's"10103// },10104//{10105// "item": "socks",10106// "label": "a panda bear"10107// },10108//{10109// "item": "socks",10110// "label": "a black bear"10111// },10112//{10113// "item": "socks",10114// "label": "a pigeon"10115// },10116//{10117// "item": "socks",10118// "label": "an SUV"10119// },10120//{10121// "item": "socks",10122// "label": "a German Shepherd"10123// },10124//{10125// "item": "socks",10126// "label": "a bedside table"10127// },10128//{10129// "item": "socks",10130// "label": "candy"10131// },10132//{10133// "item": "socks",10134// "label": "a bear"10135// },10136//{10137// "item": "socks",10138// "label": "a snack"10139// },10140// //squirrel10141// {10142// "item": "squirrel",10143// "label": "a Pug"10144// },10145//{10146// "item": "squirrel",10147// "label": "a parrot"10148// },10149//{10150// "item": "squirrel",10151// "label": "a Dalmatian"10152// },10153//{10154// "item": "squirrel",10155// "label": "a clownfish"10156// },10157//{10158// "item": "squirrel",10159// "label": "a goldfish"10160// },10161//{10162// "item": "squirrel",10163// "label": "a catfish"10164// },10165//{10166// "item": "squirrel",10167// "label": "a grizzly bear"10168// },10169//{10170// "item": "squirrel",10171// "label": "a hummingbird"10172// },10173//{10174// "item": "squirrel",10175// "label": "a polar bear"10176// },10177//{10178// "item": "squirrel",10179// "label": "a Husky"10180// },10181//{10182// "item": "squirrel",10183// "label": "a pigeon"10184// },10185//{10186// "item": "squirrel",10187// "label": "a German Shepherd"10188// },10189//{10190// "item": "squirrel",10191// "label": "a panda bear"10192// },10193//{10194// "item": "squirrel",10195// "label": "an SUV"10196// },10197//{10198// "item": "squirrel",10199// "label": "Skittles"10200// },10201//{10202// "item": "squirrel",10203// "label": "a polo shirt"10204// },10205//{10206// "item": "squirrel",10207// "label": "a bedside table"10208// },10209//{10210// "item": "squirrel",10211// "label": "a dining table"10212// },10213//{10214// "item": "squirrel",10215// "label": "a Hawaii shirt"10216// },10217//{10218// "item": "squirrel",10219// "label": "a dog"10220// },10221//{10222// "item": "squirrel",10223// "label": "a bird"10224// },10225//{10226// "item": "squirrel",10227// "label": "a fish"10228// },10229//{10230// "item": "squirrel",10231// "label": "a bear"10232// },10233//{10234// "item": "squirrel",10235// "label": "a car"10236// },10237//{10238// "item": "squirrel",10239// "label": "candy"10240// },10241//{10242// "item": "squirrel",10243// "label": "a shirt"10244// },10245//{10246// "item": "squirrel",10247// "label": "a table"10248// },10249//{10250// "item": "squirrel",10251// "label": "an animal"10252// },10253//{10254// "item": "squirrel",10255// "label": "a vehicle"10256// },10257//{10258// "item": "squirrel",10259// "label": "a snack"10260// },10261//{10262// "item": "squirrel",10263// "label": "clothing"10264// },10265//{10266// "item": "squirrel",10267// "label": "furniture"10268// },10269//{10270// "item": "squirrel",10271// "label": "a black bear"10272// },10273//{10274// "item": "squirrel",10275// "label": "an eagle"10276// },10277//{10278// "item": "squirrel",10279// "label": "a sports car"10280// },10281//{10282// "item": "squirrel",10283// "label": "a convertible"10284// },10285//{10286// "item": "squirrel",10287// "label": "gummy bears"10288// },10289//{10290// "item": "squirrel",10291// "label": "a daisy"10292// },10293//{10294// "item": "squirrel",10295// "label": "a flower"10296// },10297//{10298// "item": "squirrel",10299// "label": "a plant"10300// },10301// //train10302// {10303// "item": "train",10304// "label": "a minivan"10305// },10306//{10307// "item": "train",10308// "label": "a sports car"10309// },10310//{10311// "item": "train",10312// "label": "a convertible"10313// },10314//{10315// "item": "train",10316// "label": "an SUV"10317// },10318//{10319// "item": "train",10320// "label": "a dress shirt"10321// },10322//{10323// "item": "train",10324// "label": "a T-Shirt"10325// },10326//{10327// "item": "train",10328// "label": "a Dalmatian"10329// },10330//{10331// "item": "train",10332// "label": "jelly beans"10333// },10334//{10335// "item": "train",10336// "label": "a clownfish"10337// },10338//{10339// "item": "train",10340// "label": "a polar bear"10341// },10342//{10343// "item": "train",10344// "label": "a grizzly bear"10345// },10346//{10347// "item": "train",10348// "label": "a tulip"10349// },10350//{10351// "item": "train",10352// "label": "gummy bears"10353// },10354//{10355// "item": "train",10356// "label": "a hummingbird"10357// },10358//{10359// "item": "train",10360// "label": "a pigeon"10361// },10362//{10363// "item": "train",10364// "label": "a sunflower"10365// },10366//{10367// "item": "train",10368// "label": "a car"10369// },10370//{10371// "item": "train",10372// "label": "a shirt"10373// },10374//{10375// "item": "train",10376// "label": "a dog"10377// },10378//{10379// "item": "train",10380// "label": "candy"10381// },10382//{10383// "item": "train",10384// "label": "a fish"10385// },10386//{10387// "item": "train",10388// "label": "a bear"10389// },10390//{10391// "item": "train",10392// "label": "a flower"10393// },10394//{10395// "item": "train",10396// "label": "a bird"10397// },10398//{10399// "item": "train",10400// "label": "a vehicle"10401// },10402//{10403// "item": "train",10404// "label": "clothing"10405// },10406//{10407// "item": "train",10408// "label": "an animal"10409// },10410//{10411// "item": "train",10412// "label": "a snack"10413// },10414//{10415// "item": "train",10416// "label": "a plant"10417// },10418//{10419// "item": "train",10420// "label": "a black bear"10421// },10422//{10423// "item": "train",10424// "label": "a swordfish"10425// },10426//{10427// "item": "train",10428// "label": "an eagle"10429// },10430//{10431// "item": "train",10432// "label": "Skittles"10433// },10434//{10435// "item": "train",10436// "label": "a goldfish"10437// },10438//{10439// "item": "train",10440// "label": "a Pug"10441// },10442//{10443// "item": "train",10444// "label": "a panda bear"10445// },10446//{10447// "item": "train",10448// "label": "a Hawaii shirt"10449// },10450//{10451// "item": "train",10452// "label": "a catfish"10453// },10454//{10455// "item": "train",10456// "label": "a coffee table"10457// },10458//{10459// "item": "train",10460// "label": "a table"10461// },10462//{10463// "item": "train",10464// "label": "furniture"10465// },10466// //wardrobe10467// {10468// "item": "wardrobe",10469// "label": "a bedside table"10470// },10471//{10472// "item": "wardrobe",10473// "label": "a picnic table"10474// },10475//{10476// "item": "wardrobe",10477// "label": "a coffee table"10478// },10479//{10480// "item": "wardrobe",10481// "label": "a dining table"10482// },10483//{10484// "item": "wardrobe",10485// "label": "a hummingbird"10486// },10487//{10488// "item": "wardrobe",10489// "label": "a catfish"10490// },10491//{10492// "item": "wardrobe",10493// "label": "a rose"10494// },10495//{10496// "item": "wardrobe",10497// "label": "a Husky"10498// },10499//{10500// "item": "wardrobe",10501// "label": "a panda bear"10502// },10503//{10504// "item": "wardrobe",10505// "label": "an SUV"10506// },10507//{10508// "item": "wardrobe",10509// "label": "a grizzly bear"10510// },10511//{10512// "item": "wardrobe",10513// "label": "gummy bears"10514// },10515//{10516// "item": "wardrobe",10517// "label": "a black bear"10518// },10519//{10520// "item": "wardrobe",10521// "label": "a table"10522// },10523//{10524// "item": "wardrobe",10525// "label": "a bird"10526// },10527//{10528// "item": "wardrobe",10529// "label": "a fish"10530// },10531//{10532// "item": "wardrobe",10533// "label": "a flower"10534// },10535//{10536// "item": "wardrobe",10537// "label": "a dog"10538// },10539//{10540// "item": "wardrobe",10541// "label": "a bear"10542// },10543//{10544// "item": "wardrobe",10545// "label": "a car"10546// },10547//{10548// "item": "wardrobe",10549// "label": "candy"10550// },10551//{10552// "item": "wardrobe",10553// "label": "furniture"10554// },10555//{10556// "item": "wardrobe",10557// "label": "an animal"10558// },10559//{10560// "item": "wardrobe",10561// "label": "a plant"10562// },10563//{10564// "item": "wardrobe",10565// "label": "a vehicle"10566// },10567//{10568// "item": "wardrobe",10569// "label": "a snack"10570// },10571//{10572// "item": "wardrobe",10573// "label": "a polo shirt"10574// },10575//{10576// "item": "wardrobe",10577// "label": "a tulip"10578// },10579//{10580// "item": "wardrobe",10581// "label": "M&M's"10582// },10583//{10584// "item": "wardrobe",10585// "label": "a Pug"10586// },10587//{10588// "item": "wardrobe",10589// "label": "a goldfish"10590// },10591//{10592// "item": "wardrobe",10593// "label": "a Dalmatian"10594// },10595//{10596// "item": "wardrobe",10597// "label": "a polar bear"10598// },10599//{10600// "item": "wardrobe",10601// "label": "a shirt"10602// },10603//{10604// "item": "wardrobe",10605// "label": "clothing"10606// }10607// ]).slice(0,45);10608 function makeTargetStim(i) {10609 //get item10610 var item = items_target[i];10611 var item_id = item.item;10612 var label = item.label;10613 var itemtype = item.itemtype;10614 var labeltype = item.labeltype;10615 10616 return {10617 "item": item_id,10618 "label": label,10619 "itemtype": itemtype,10620 "labeltype": labeltype10621 }10622 }10623 10624 function makeDistSStim(i) {10625 //get item10626 var item = items_dists[i];10627 var item_id = item.item;10628 var label = item.label;10629 var itemtype = item.itemtype;10630 var labeltype = item.labeltype;10631 10632 return {10633 "item": item_id,10634 "label": label,10635 "itemtype": itemtype,10636 "labeltype": labeltype10637 }10638 }10639 10640 function makeDistSSStim(i) {10641 //get item10642 var item = items_distss[i];10643 var item_id = item.item;10644 var label = item.label;10645 var itemtype = item.itemtype;10646 var labeltype = item.labeltype;10647 10648 return {10649 "item": item_id,10650 "label": label,10651 "itemtype": itemtype,10652 "labeltype": labeltype10653 }10654 } 10655 10656 exp.all_stims = [];10657 for (var i=0; i<items_target.length; i++) {10658 exp.all_stims.push(makeTargetStim(i));10659 }10660 for (var i=0; i<items_dists.length; i++) {10661 exp.all_stims.push(makeDistSStim(i));10662 }10663 for (var i=0; i<items_distss.length; i++) {10664 exp.all_stims.push(makeDistSSStim(i));10665 }10666 10667 exp.all_stims = _.shuffle(exp.all_stims);10668 exp.trials = [];10669 exp.catch_trials = [];10670 exp.condition = {}; //can randomize between subject conditions here10671 exp.system = {10672 Browser : BrowserDetect.browser,10673 OS : BrowserDetect.OS,10674 screenH: screen.height,10675 screenUH: exp.height,10676 screenW: screen.width,10677 screenUW: exp.width10678 };10679 //blocks of the experiment:10680 exp.structure=["i0", "objecttrial", 'subj_info', 'thanks'];10681 10682 exp.data_trials = [];10683 //make corresponding slides:10684 exp.slides = make_slides(exp);10685 exp.nQs = utils.get_exp_length(); //this does not work if there are stacks of stims (but does work for an experiment with this structure)10686 //relies on structure and slides being defined10687 $(".nQs").html(exp.nQs);10688 $('.slide').hide(); //hide everything10689 //make sure turkers have accepted HIT (or you're not in mturk)10690 $("#start_button").click(function() {10691 if (turk.previewMode) {10692 $("#mustaccept").show();10693 } else {10694 $("#start_button").click(function() {$("#mustaccept").show();});10695 exp.go();10696 }10697 });10698 exp.go(); //show first slide...

Full Screen

Full Screen

DropdownStyles.js

Source:DropdownStyles.js Github

copy

Full Screen

1import React, {Component, Fragment} from 'react';2import {Button, Dropdown, UncontrolledButtonDropdown, DropdownToggle, DropdownMenu, DropdownItem} from 'reactstrap';3import ReactCSSTransitionGroup from 'react-addons-css-transition-group';4import {Animated} from "react-animated-css";5import {6 Row, Col,7 Card, CardBody,8 CardTitle,9} from 'reactstrap';10export default class DropdownStyles extends React.Component {11 constructor(props) {12 super(props);13 this.toggle = this.toggle.bind(this);14 this.onMouseEnter = this.onMouseEnter.bind(this);15 this.onMouseLeave = this.onMouseLeave.bind(this);16 this.state = {17 dropdownOpen: false18 };19 }20 toggle() {21 this.setState(prevState => ({22 dropdownOpen: !prevState.dropdownOpen23 }));24 }25 onMouseEnter() {26 this.setState({dropdownOpen: true});27 }28 onMouseLeave() {29 this.setState({dropdownOpen: false});30 }31 render() {32 return (33 <Fragment>34 <ReactCSSTransitionGroup35 component="div"36 transitionName="TabsAnimation"37 transitionAppear={true}38 transitionAppearTimeout={0}39 transitionEnter={false}40 transitionLeave={false}>41 <Row>42 <Col md="12">43 <Card className="main-card mb-3">44 <CardBody>45 <CardTitle>Dropdown Menu Styles</CardTitle>46 <UncontrolledButtonDropdown className="mb-2 mr-2">47 <DropdownToggle caret color="primary">48 Basic49 </DropdownToggle>50 <DropdownMenu>51 <DropdownItem header>Header</DropdownItem>52 <DropdownItem>Menus</DropdownItem>53 <DropdownItem>Settings</DropdownItem>54 <DropdownItem>Actions</DropdownItem>55 <DropdownItem divider/>56 <DropdownItem>Dividers</DropdownItem>57 </DropdownMenu>58 </UncontrolledButtonDropdown>59 <Dropdown className="d-inline-block" onMouseOver={this.onMouseEnter}60 onMouseLeave={this.onMouseLeave} isOpen={this.state.dropdownOpen}61 toggle={this.toggle}>62 <DropdownToggle caret color="primary" className="mb-2 mr-2">63 Hover Open64 </DropdownToggle>65 <DropdownMenu>66 <DropdownItem header>Header</DropdownItem>67 <DropdownItem disabled>Action</DropdownItem>68 <DropdownItem>Another Action</DropdownItem>69 <DropdownItem divider/>70 <DropdownItem>Another Action</DropdownItem>71 </DropdownMenu>72 </Dropdown>73 <UncontrolledButtonDropdown>74 <DropdownToggle caret className="mb-2 mr-2" color="primary">75 Rounded76 </DropdownToggle>77 <DropdownMenu className="dropdown-menu-rounded">78 <DropdownItem header>Header</DropdownItem>79 <DropdownItem>Menus</DropdownItem>80 <DropdownItem>Settings</DropdownItem>81 <DropdownItem>Actions</DropdownItem>82 <DropdownItem divider/>83 <DropdownItem>Dividers</DropdownItem>84 </DropdownMenu>85 </UncontrolledButtonDropdown>86 <UncontrolledButtonDropdown>87 <DropdownToggle caret className="mb-2 mr-2" color="primary">88 Shadow89 </DropdownToggle>90 <DropdownMenu className="dropdown-menu-shadow">91 <DropdownItem header>Header</DropdownItem>92 <DropdownItem>Menus</DropdownItem>93 <DropdownItem>Settings</DropdownItem>94 <DropdownItem>Actions</DropdownItem>95 <DropdownItem divider/>96 <DropdownItem>Dividers</DropdownItem>97 </DropdownMenu>98 </UncontrolledButtonDropdown>99 <UncontrolledButtonDropdown>100 <DropdownToggle caret className="mb-2 mr-2" color="primary">101 Hover Link102 </DropdownToggle>103 <DropdownMenu className="dropdown-menu-hover-link">104 <DropdownItem header>Header</DropdownItem>105 <DropdownItem>Menus</DropdownItem>106 <DropdownItem>Settings</DropdownItem>107 <DropdownItem>Actions</DropdownItem>108 <DropdownItem divider/>109 <DropdownItem>Dividers</DropdownItem>110 </DropdownMenu>111 </UncontrolledButtonDropdown>112 <UncontrolledButtonDropdown>113 <DropdownToggle caret className="mb-2 mr-2" color="primary">114 Hover Background115 </DropdownToggle>116 <DropdownMenu className="dropdown-menu-hover-primary">117 <DropdownItem header>Header</DropdownItem>118 <DropdownItem>Menus</DropdownItem>119 <DropdownItem>Settings</DropdownItem>120 <DropdownItem>Actions</DropdownItem>121 <DropdownItem divider/>122 <DropdownItem>Dividers</DropdownItem>123 </DropdownMenu>124 </UncontrolledButtonDropdown>125 <UncontrolledButtonDropdown>126 <DropdownToggle caret className="mb-2 mr-2" color="primary">127 Icons128 </DropdownToggle>129 <DropdownMenu className="dropdown-menu-hover-link">130 <DropdownItem header>Header</DropdownItem>131 <DropdownItem>132 <i className="dropdown-icon lnr-inbox"> </i>133 <span>Menus</span>134 </DropdownItem>135 <DropdownItem>136 <i className="dropdown-icon lnr-file-empty"> </i>137 <span>Settings</span>138 </DropdownItem>139 <DropdownItem>140 <i className="dropdown-icon lnr-book"> </i>141 <span>Actions</span>142 </DropdownItem>143 <DropdownItem divider/>144 <DropdownItem>145 <i className="dropdown-icon lnr-picture"> </i>146 <span>Dividers</span>147 </DropdownItem>148 </DropdownMenu>149 </UncontrolledButtonDropdown>150 <UncontrolledButtonDropdown>151 <DropdownToggle caret className="mb-2" color="primary">152 Right aligned153 </DropdownToggle>154 <DropdownMenu className="dropdown-menu-right dropdown-menu-rounded">155 <DropdownItem header>Header</DropdownItem>156 <DropdownItem>Menus</DropdownItem>157 <DropdownItem>Settings</DropdownItem>158 <DropdownItem>Actions</DropdownItem>159 <DropdownItem divider/>160 <DropdownItem>Dividers</DropdownItem>161 </DropdownMenu>162 </UncontrolledButtonDropdown>163 </CardBody>164 </Card>165 </Col>166 </Row>167 <Row>168 <Col lg="6">169 <Card className="main-card mb-3">170 <CardBody>171 <CardTitle>Basic</CardTitle>172 <UncontrolledButtonDropdown>173 <DropdownToggle caret className="mb-2 mr-2" color="primary">174 Primary175 </DropdownToggle>176 <DropdownMenu>177 <DropdownItem>Menus</DropdownItem>178 <DropdownItem>Settings</DropdownItem>179 <DropdownItem header>Header</DropdownItem>180 <DropdownItem>Actions</DropdownItem>181 <DropdownItem divider/>182 <DropdownItem>Dividers</DropdownItem>183 </DropdownMenu>184 </UncontrolledButtonDropdown>185 <UncontrolledButtonDropdown>186 <DropdownToggle caret className="mb-2 mr-2" color="secondary">187 Secondary188 </DropdownToggle>189 <DropdownMenu>190 <DropdownItem>Menus</DropdownItem>191 <DropdownItem>Settings</DropdownItem>192 <DropdownItem header>Header</DropdownItem>193 <DropdownItem>Actions</DropdownItem>194 <DropdownItem divider/>195 <DropdownItem>Dividers</DropdownItem>196 </DropdownMenu>197 </UncontrolledButtonDropdown>198 <UncontrolledButtonDropdown>199 <DropdownToggle caret className="mb-2 mr-2" color="success">200 Success201 </DropdownToggle>202 <DropdownMenu>203 <DropdownItem>Menus</DropdownItem>204 <DropdownItem>Settings</DropdownItem>205 <DropdownItem header>Header</DropdownItem>206 <DropdownItem>Actions</DropdownItem>207 <DropdownItem divider/>208 <DropdownItem>Dividers</DropdownItem>209 </DropdownMenu>210 </UncontrolledButtonDropdown>211 <UncontrolledButtonDropdown>212 <DropdownToggle caret className="mb-2 mr-2" color="info">213 Info214 </DropdownToggle>215 <DropdownMenu>216 <DropdownItem>Menus</DropdownItem>217 <DropdownItem>Settings</DropdownItem>218 <DropdownItem header>Header</DropdownItem>219 <DropdownItem>Actions</DropdownItem>220 <DropdownItem divider/>221 <DropdownItem>Dividers</DropdownItem>222 </DropdownMenu>223 </UncontrolledButtonDropdown>224 <UncontrolledButtonDropdown>225 <DropdownToggle caret className="mb-2 mr-2" color="warning">226 Warning227 </DropdownToggle>228 <DropdownMenu>229 <DropdownItem>Menus</DropdownItem>230 <DropdownItem>Settings</DropdownItem>231 <DropdownItem header>Header</DropdownItem>232 <DropdownItem>Actions</DropdownItem>233 <DropdownItem divider/>234 <DropdownItem>Dividers</DropdownItem>235 </DropdownMenu>236 </UncontrolledButtonDropdown>237 <UncontrolledButtonDropdown>238 <DropdownToggle caret className="mb-2 mr-2" color="danger">239 Danger240 </DropdownToggle>241 <DropdownMenu>242 <DropdownItem>Menus</DropdownItem>243 <DropdownItem>Settings</DropdownItem>244 <DropdownItem header>Header</DropdownItem>245 <DropdownItem>Actions</DropdownItem>246 <DropdownItem divider/>247 <DropdownItem>Dividers</DropdownItem>248 </DropdownMenu>249 </UncontrolledButtonDropdown>250 <UncontrolledButtonDropdown>251 <DropdownToggle caret className="mb-2 mr-2" color="focus">252 Focus253 </DropdownToggle>254 <DropdownMenu>255 <DropdownItem>Menus</DropdownItem>256 <DropdownItem>Settings</DropdownItem>257 <DropdownItem header>Header</DropdownItem>258 <DropdownItem>Actions</DropdownItem>259 <DropdownItem divider/>260 <DropdownItem>Dividers</DropdownItem>261 </DropdownMenu>262 </UncontrolledButtonDropdown>263 <UncontrolledButtonDropdown>264 <DropdownToggle caret className="mb-2 mr-2" color="alternate">265 Alt266 </DropdownToggle>267 <DropdownMenu>268 <DropdownItem>Menus</DropdownItem>269 <DropdownItem>Settings</DropdownItem>270 <DropdownItem header>Header</DropdownItem>271 <DropdownItem>Actions</DropdownItem>272 <DropdownItem divider/>273 <DropdownItem>Dividers</DropdownItem>274 </DropdownMenu>275 </UncontrolledButtonDropdown>276 <UncontrolledButtonDropdown>277 <DropdownToggle caret className="mb-2 mr-2" color="light">278 Light279 </DropdownToggle>280 <DropdownMenu>281 <DropdownItem>Menus</DropdownItem>282 <DropdownItem>Settings</DropdownItem>283 <DropdownItem header>Header</DropdownItem>284 <DropdownItem>Actions</DropdownItem>285 <DropdownItem divider/>286 <DropdownItem>Dividers</DropdownItem>287 </DropdownMenu>288 </UncontrolledButtonDropdown>289 <UncontrolledButtonDropdown>290 <DropdownToggle caret className="mb-2 mr-2" color="dark">291 Dark292 </DropdownToggle>293 <DropdownMenu>294 <DropdownItem>Menus</DropdownItem>295 <DropdownItem>Settings</DropdownItem>296 <DropdownItem header>Header</DropdownItem>297 <DropdownItem>Actions</DropdownItem>298 <DropdownItem divider/>299 <DropdownItem>Dividers</DropdownItem>300 </DropdownMenu>301 </UncontrolledButtonDropdown>302 <UncontrolledButtonDropdown>303 <DropdownToggle caret className="mb-2 mr-2" color="link">304 Link305 </DropdownToggle>306 <DropdownMenu>307 <DropdownItem>Menus</DropdownItem>308 <DropdownItem>Settings</DropdownItem>309 <DropdownItem header>Header</DropdownItem>310 <DropdownItem>Actions</DropdownItem>311 <DropdownItem divider/>312 <DropdownItem>Dividers</DropdownItem>313 </DropdownMenu>314 </UncontrolledButtonDropdown>315 </CardBody>316 </Card>317 <Card className="main-card mb-3">318 <CardBody>319 <CardTitle>Split Dropdowns</CardTitle>320 <UncontrolledButtonDropdown className="mb-2 mr-2">321 <Button color="primary">Primary</Button>322 <DropdownToggle className="dropdown-toggle-split" caret color="primary"/>323 <DropdownMenu>324 <DropdownItem>Menus</DropdownItem>325 <DropdownItem>Settings</DropdownItem>326 <DropdownItem header>Header</DropdownItem>327 <DropdownItem>Actions</DropdownItem>328 <DropdownItem divider/>329 <DropdownItem>Dividers</DropdownItem>330 </DropdownMenu>331 </UncontrolledButtonDropdown>332 <UncontrolledButtonDropdown className="mb-2 mr-2">333 <Button color="secondary">Secondary</Button>334 <DropdownToggle className="dropdown-toggle-split" caret color="secondary"/>335 <DropdownMenu>336 <DropdownItem>Menus</DropdownItem>337 <DropdownItem>Settings</DropdownItem>338 <DropdownItem header>Header</DropdownItem>339 <DropdownItem>Actions</DropdownItem>340 <DropdownItem divider/>341 <DropdownItem>Dividers</DropdownItem>342 </DropdownMenu>343 </UncontrolledButtonDropdown>344 <UncontrolledButtonDropdown className="mb-2 mr-2">345 <Button color="success">Success</Button>346 <DropdownToggle className="dropdown-toggle-split" caret color="success"/>347 <DropdownMenu>348 <DropdownItem>Menus</DropdownItem>349 <DropdownItem>Settings</DropdownItem>350 <DropdownItem header>Header</DropdownItem>351 <DropdownItem>Actions</DropdownItem>352 <DropdownItem divider/>353 <DropdownItem>Dividers</DropdownItem>354 </DropdownMenu>355 </UncontrolledButtonDropdown>356 <UncontrolledButtonDropdown className="mb-2 mr-2">357 <Button color="info">Info</Button>358 <DropdownToggle className="dropdown-toggle-split" caret color="info"/>359 <DropdownMenu>360 <DropdownItem>Menus</DropdownItem>361 <DropdownItem>Settings</DropdownItem>362 <DropdownItem header>Header</DropdownItem>363 <DropdownItem>Actions</DropdownItem>364 <DropdownItem divider/>365 <DropdownItem>Dividers</DropdownItem>366 </DropdownMenu>367 </UncontrolledButtonDropdown>368 <UncontrolledButtonDropdown className="mb-2 mr-2">369 <Button color="warning">Warning</Button>370 <DropdownToggle className="dropdown-toggle-split" caret color="warning"/>371 <DropdownMenu>372 <DropdownItem>Menus</DropdownItem>373 <DropdownItem>Settings</DropdownItem>374 <DropdownItem header>Header</DropdownItem>375 <DropdownItem>Actions</DropdownItem>376 <DropdownItem divider/>377 <DropdownItem>Dividers</DropdownItem>378 </DropdownMenu>379 </UncontrolledButtonDropdown>380 <UncontrolledButtonDropdown className="mb-2 mr-2">381 <Button color="danger">Danger</Button>382 <DropdownToggle className="dropdown-toggle-split" caret color="danger"/>383 <DropdownMenu>384 <DropdownItem>Menus</DropdownItem>385 <DropdownItem>Settings</DropdownItem>386 <DropdownItem header>Header</DropdownItem>387 <DropdownItem>Actions</DropdownItem>388 <DropdownItem divider/>389 <DropdownItem>Dividers</DropdownItem>390 </DropdownMenu>391 </UncontrolledButtonDropdown>392 <UncontrolledButtonDropdown className="mb-2 mr-2">393 <Button color="focus">Focus</Button>394 <DropdownToggle className="dropdown-toggle-split" caret color="focus"/>395 <DropdownMenu>396 <DropdownItem>Menus</DropdownItem>397 <DropdownItem>Settings</DropdownItem>398 <DropdownItem header>Header</DropdownItem>399 <DropdownItem>Actions</DropdownItem>400 <DropdownItem divider/>401 <DropdownItem>Dividers</DropdownItem>402 </DropdownMenu>403 </UncontrolledButtonDropdown>404 <UncontrolledButtonDropdown className="mb-2 mr-2">405 <Button color="alternate">Alt</Button>406 <DropdownToggle className="dropdown-toggle-split" caret color="alternate"/>407 <DropdownMenu>408 <DropdownItem>Menus</DropdownItem>409 <DropdownItem>Settings</DropdownItem>410 <DropdownItem header>Header</DropdownItem>411 <DropdownItem>Actions</DropdownItem>412 <DropdownItem divider/>413 <DropdownItem>Dividers</DropdownItem>414 </DropdownMenu>415 </UncontrolledButtonDropdown>416 <UncontrolledButtonDropdown className="mb-2 mr-2">417 <Button color="light">Light</Button>418 <DropdownToggle className="dropdown-toggle-split" caret color="light"/>419 <DropdownMenu>420 <DropdownItem>Menus</DropdownItem>421 <DropdownItem>Settings</DropdownItem>422 <DropdownItem header>Header</DropdownItem>423 <DropdownItem>Actions</DropdownItem>424 <DropdownItem divider/>425 <DropdownItem>Dividers</DropdownItem>426 </DropdownMenu>427 </UncontrolledButtonDropdown>428 <UncontrolledButtonDropdown className="mb-2 mr-2">429 <Button color="dark">Dark</Button>430 <DropdownToggle className="dropdown-toggle-split" caret color="dark"/>431 <DropdownMenu>432 <DropdownItem>Menus</DropdownItem>433 <DropdownItem>Settings</DropdownItem>434 <DropdownItem header>Header</DropdownItem>435 <DropdownItem>Actions</DropdownItem>436 <DropdownItem divider/>437 <DropdownItem>Dividers</DropdownItem>438 </DropdownMenu>439 </UncontrolledButtonDropdown>440 </CardBody>441 </Card>442 <Card className="main-card mb-3">443 <CardBody>444 <CardTitle>Split Outline Dropdowns</CardTitle>445 <UncontrolledButtonDropdown className="mb-2 mr-2">446 <Button outline color="primary">Primary</Button>447 <DropdownToggle outline className="dropdown-toggle-split" caret448 color="primary"/>449 <DropdownMenu>450 <DropdownItem>Menus</DropdownItem>451 <DropdownItem>Settings</DropdownItem>452 <DropdownItem header>Header</DropdownItem>453 <DropdownItem>Actions</DropdownItem>454 <DropdownItem divider/>455 <DropdownItem>Dividers</DropdownItem>456 </DropdownMenu>457 </UncontrolledButtonDropdown>458 <UncontrolledButtonDropdown className="mb-2 mr-2">459 <Button outline color="secondary">Secondary</Button>460 <DropdownToggle outline className="dropdown-toggle-split" caret461 color="secondary"/>462 <DropdownMenu>463 <DropdownItem>Menus</DropdownItem>464 <DropdownItem>Settings</DropdownItem>465 <DropdownItem header>Header</DropdownItem>466 <DropdownItem>Actions</DropdownItem>467 <DropdownItem divider/>468 <DropdownItem>Dividers</DropdownItem>469 </DropdownMenu>470 </UncontrolledButtonDropdown>471 <UncontrolledButtonDropdown className="mb-2 mr-2">472 <Button outline color="success">Success</Button>473 <DropdownToggle outline className="dropdown-toggle-split" caret474 color="success"/>475 <DropdownMenu>476 <DropdownItem>Menus</DropdownItem>477 <DropdownItem>Settings</DropdownItem>478 <DropdownItem header>Header</DropdownItem>479 <DropdownItem>Actions</DropdownItem>480 <DropdownItem divider/>481 <DropdownItem>Dividers</DropdownItem>482 </DropdownMenu>483 </UncontrolledButtonDropdown>484 <UncontrolledButtonDropdown className="mb-2 mr-2">485 <Button outline color="info">Info</Button>486 <DropdownToggle outline className="dropdown-toggle-split" caret color="info"/>487 <DropdownMenu>488 <DropdownItem>Menus</DropdownItem>489 <DropdownItem>Settings</DropdownItem>490 <DropdownItem header>Header</DropdownItem>491 <DropdownItem>Actions</DropdownItem>492 <DropdownItem divider/>493 <DropdownItem>Dividers</DropdownItem>494 </DropdownMenu>495 </UncontrolledButtonDropdown>496 <UncontrolledButtonDropdown className="mb-2 mr-2">497 <Button outline color="warning">Warning</Button>498 <DropdownToggle outline className="dropdown-toggle-split" caret499 color="warning"/>500 <DropdownMenu>501 <DropdownItem>Menus</DropdownItem>502 <DropdownItem>Settings</DropdownItem>503 <DropdownItem header>Header</DropdownItem>504 <DropdownItem>Actions</DropdownItem>505 <DropdownItem divider/>506 <DropdownItem>Dividers</DropdownItem>507 </DropdownMenu>508 </UncontrolledButtonDropdown>509 <UncontrolledButtonDropdown className="mb-2 mr-2">510 <Button outline color="danger">Danger</Button>511 <DropdownToggle outline className="dropdown-toggle-split" caret color="danger"/>512 <DropdownMenu>513 <DropdownItem>Menus</DropdownItem>514 <DropdownItem>Settings</DropdownItem>515 <DropdownItem header>Header</DropdownItem>516 <DropdownItem>Actions</DropdownItem>517 <DropdownItem divider/>518 <DropdownItem>Dividers</DropdownItem>519 </DropdownMenu>520 </UncontrolledButtonDropdown>521 <UncontrolledButtonDropdown className="mb-2 mr-2">522 <Button outline color="focus">Focus</Button>523 <DropdownToggle outline className="dropdown-toggle-split" caret color="focus"/>524 <DropdownMenu>525 <DropdownItem>Menus</DropdownItem>526 <DropdownItem>Settings</DropdownItem>527 <DropdownItem header>Header</DropdownItem>528 <DropdownItem>Actions</DropdownItem>529 <DropdownItem divider/>530 <DropdownItem>Dividers</DropdownItem>531 </DropdownMenu>532 </UncontrolledButtonDropdown>533 <UncontrolledButtonDropdown className="mb-2 mr-2">534 <Button outline color="alternate">Alt</Button>535 <DropdownToggle outline className="dropdown-toggle-split" caret536 color="alternate"/>537 <DropdownMenu>538 <DropdownItem>Menus</DropdownItem>539 <DropdownItem>Settings</DropdownItem>540 <DropdownItem header>Header</DropdownItem>541 <DropdownItem>Actions</DropdownItem>542 <DropdownItem divider/>543 <DropdownItem>Dividers</DropdownItem>544 </DropdownMenu>545 </UncontrolledButtonDropdown>546 <UncontrolledButtonDropdown className="mb-2 mr-2">547 <Button outline color="light">Light</Button>548 <DropdownToggle outline className="dropdown-toggle-split" caret color="light"/>549 <DropdownMenu>550 <DropdownItem>Menus</DropdownItem>551 <DropdownItem>Settings</DropdownItem>552 <DropdownItem header>Header</DropdownItem>553 <DropdownItem>Actions</DropdownItem>554 <DropdownItem divider/>555 <DropdownItem>Dividers</DropdownItem>556 </DropdownMenu>557 </UncontrolledButtonDropdown>558 <UncontrolledButtonDropdown className="mb-2 mr-2">559 <Button outline color="dark">Dark</Button>560 <DropdownToggle outline className="dropdown-toggle-split" caret color="dark"/>561 <DropdownMenu>562 <DropdownItem>Menus</DropdownItem>563 <DropdownItem>Settings</DropdownItem>564 <DropdownItem header>Header</DropdownItem>565 <DropdownItem>Actions</DropdownItem>566 <DropdownItem divider/>567 <DropdownItem>Dividers</DropdownItem>568 </DropdownMenu>569 </UncontrolledButtonDropdown>570 </CardBody>571 </Card>572 <Card className="main-card mb-3">573 <CardBody>574 <CardTitle>Menu positions</CardTitle>575 <div className="text-center">576 <UncontrolledButtonDropdown direction="left" className="mb-2 mr-2">577 <Button className="btn-wide" color="primary">Dropleft</Button>578 <DropdownToggle className="dropdown-toggle-split" caret color="primary"/>579 <DropdownMenu>580 <DropdownItem>Menus</DropdownItem>581 <DropdownItem>Settings</DropdownItem>582 <DropdownItem header>Header</DropdownItem>583 <DropdownItem>Actions</DropdownItem>584 <DropdownItem divider/>585 <DropdownItem>Dividers</DropdownItem>586 </DropdownMenu>587 </UncontrolledButtonDropdown>588 <UncontrolledButtonDropdown direction="up" className="mb-2 mr-2">589 <Button className="btn-wide" color="primary">Dropup</Button>590 <DropdownToggle className="dropdown-toggle-split" caret color="primary"/>591 <DropdownMenu>592 <DropdownItem>Menus</DropdownItem>593 <DropdownItem>Settings</DropdownItem>594 <DropdownItem header>Header</DropdownItem>595 <DropdownItem>Actions</DropdownItem>596 <DropdownItem divider/>597 <DropdownItem>Dividers</DropdownItem>598 </DropdownMenu>599 </UncontrolledButtonDropdown>600 <UncontrolledButtonDropdown direction="right" className="mb-2 mr-2">601 <Button className="btn-wide" color="primary">Dropright</Button>602 <DropdownToggle className="dropdown-toggle-split" caret color="primary"/>603 <DropdownMenu>604 <DropdownItem>Menus</DropdownItem>605 <DropdownItem>Settings</DropdownItem>606 <DropdownItem header>Header</DropdownItem>607 <DropdownItem>Actions</DropdownItem>608 <DropdownItem divider/>609 <DropdownItem>Dividers</DropdownItem>610 </DropdownMenu>611 </UncontrolledButtonDropdown>612 </div>613 <div className="divider"/>614 <div className="text-center">615 <UncontrolledButtonDropdown direction="left">616 <DropdownToggle className="btn-wide mb-2 mr-2" caret color="primary">617 Dropleft618 </DropdownToggle>619 <DropdownMenu>620 <DropdownItem>Menus</DropdownItem>621 <DropdownItem>Settings</DropdownItem>622 <DropdownItem header>Header</DropdownItem>623 <DropdownItem>Actions</DropdownItem>624 <DropdownItem divider/>625 <DropdownItem>Dividers</DropdownItem>626 </DropdownMenu>627 </UncontrolledButtonDropdown>628 <UncontrolledButtonDropdown direction="up">629 <DropdownToggle className="btn-wide mb-2 mr-2" caret color="primary">630 Dropup631 </DropdownToggle>632 <DropdownMenu>633 <DropdownItem>Menus</DropdownItem>634 <DropdownItem>Settings</DropdownItem>635 <DropdownItem header>Header</DropdownItem>636 <DropdownItem>Actions</DropdownItem>637 <DropdownItem divider/>638 <DropdownItem>Dividers</DropdownItem>639 </DropdownMenu>640 </UncontrolledButtonDropdown>641 <UncontrolledButtonDropdown direction="right">642 <DropdownToggle className="btn-wide mb-2 mr-2" caret color="primary">643 Dropright644 </DropdownToggle>645 <DropdownMenu>646 <DropdownItem>Menus</DropdownItem>647 <DropdownItem>Settings</DropdownItem>648 <DropdownItem header>Header</DropdownItem>649 <DropdownItem>Actions</DropdownItem>650 <DropdownItem divider/>651 <DropdownItem>Dividers</DropdownItem>652 </DropdownMenu>653 </UncontrolledButtonDropdown>654 </div>655 </CardBody>656 </Card>657 </Col>658 <Col lg="6">659 <Card className="main-card mb-3">660 <CardBody>661 <CardTitle>Outline</CardTitle>662 <UncontrolledButtonDropdown>663 <DropdownToggle caret outline className="mb-2 mr-2" color="primary">664 Primary665 </DropdownToggle>666 <DropdownMenu>667 <DropdownItem>Menus</DropdownItem>668 <DropdownItem>Settings</DropdownItem>669 <DropdownItem header>Header</DropdownItem>670 <DropdownItem>Actions</DropdownItem>671 <DropdownItem divider/>672 <DropdownItem>Dividers</DropdownItem>673 </DropdownMenu>674 </UncontrolledButtonDropdown>675 <UncontrolledButtonDropdown>676 <DropdownToggle caret outline className="mb-2 mr-2" color="secondary">677 Secondary678 </DropdownToggle>679 <DropdownMenu>680 <DropdownItem>Menus</DropdownItem>681 <DropdownItem>Settings</DropdownItem>682 <DropdownItem header>Header</DropdownItem>683 <DropdownItem>Actions</DropdownItem>684 <DropdownItem divider/>685 <DropdownItem>Dividers</DropdownItem>686 </DropdownMenu>687 </UncontrolledButtonDropdown>688 <UncontrolledButtonDropdown>689 <DropdownToggle caret outline className="mb-2 mr-2" color="success">690 Success691 </DropdownToggle>692 <DropdownMenu>693 <DropdownItem>Menus</DropdownItem>694 <DropdownItem>Settings</DropdownItem>695 <DropdownItem header>Header</DropdownItem>696 <DropdownItem>Actions</DropdownItem>697 <DropdownItem divider/>698 <DropdownItem>Dividers</DropdownItem>699 </DropdownMenu>700 </UncontrolledButtonDropdown>701 <UncontrolledButtonDropdown>702 <DropdownToggle caret outline className="mb-2 mr-2" color="info">703 Info704 </DropdownToggle>705 <DropdownMenu>706 <DropdownItem>Menus</DropdownItem>707 <DropdownItem>Settings</DropdownItem>708 <DropdownItem header>Header</DropdownItem>709 <DropdownItem>Actions</DropdownItem>710 <DropdownItem divider/>711 <DropdownItem>Dividers</DropdownItem>712 </DropdownMenu>713 </UncontrolledButtonDropdown>714 <UncontrolledButtonDropdown>715 <DropdownToggle caret outline className="mb-2 mr-2" color="warning">716 Warning717 </DropdownToggle>718 <DropdownMenu>719 <DropdownItem>Menus</DropdownItem>720 <DropdownItem>Settings</DropdownItem>721 <DropdownItem header>Header</DropdownItem>722 <DropdownItem>Actions</DropdownItem>723 <DropdownItem divider/>724 <DropdownItem>Dividers</DropdownItem>725 </DropdownMenu>726 </UncontrolledButtonDropdown>727 <UncontrolledButtonDropdown>728 <DropdownToggle caret outline className="mb-2 mr-2" color="danger">729 Danger730 </DropdownToggle>731 <DropdownMenu>732 <DropdownItem>Menus</DropdownItem>733 <DropdownItem>Settings</DropdownItem>734 <DropdownItem header>Header</DropdownItem>735 <DropdownItem>Actions</DropdownItem>736 <DropdownItem divider/>737 <DropdownItem>Dividers</DropdownItem>738 </DropdownMenu>739 </UncontrolledButtonDropdown>740 <UncontrolledButtonDropdown>741 <DropdownToggle caret outline className="mb-2 mr-2" color="focus">742 Focus743 </DropdownToggle>744 <DropdownMenu>745 <DropdownItem>Menus</DropdownItem>746 <DropdownItem>Settings</DropdownItem>747 <DropdownItem header>Header</DropdownItem>748 <DropdownItem>Actions</DropdownItem>749 <DropdownItem divider/>750 <DropdownItem>Dividers</DropdownItem>751 </DropdownMenu>752 </UncontrolledButtonDropdown>753 <UncontrolledButtonDropdown>754 <DropdownToggle caret outline className="mb-2 mr-2" color="alternate">755 Alt756 </DropdownToggle>757 <DropdownMenu>758 <DropdownItem>Menus</DropdownItem>759 <DropdownItem>Settings</DropdownItem>760 <DropdownItem header>Header</DropdownItem>761 <DropdownItem>Actions</DropdownItem>762 <DropdownItem divider/>763 <DropdownItem>Dividers</DropdownItem>764 </DropdownMenu>765 </UncontrolledButtonDropdown>766 <UncontrolledButtonDropdown>767 <DropdownToggle caret outline className="mb-2 mr-2" color="light">768 Light769 </DropdownToggle>770 <DropdownMenu>771 <DropdownItem>Menus</DropdownItem>772 <DropdownItem>Settings</DropdownItem>773 <DropdownItem header>Header</DropdownItem>774 <DropdownItem>Actions</DropdownItem>775 <DropdownItem divider/>776 <DropdownItem>Dividers</DropdownItem>777 </DropdownMenu>778 </UncontrolledButtonDropdown>779 <UncontrolledButtonDropdown>780 <DropdownToggle caret outline className="mb-2 mr-2" color="dark">781 Dark782 </DropdownToggle>783 <DropdownMenu>784 <DropdownItem>Menus</DropdownItem>785 <DropdownItem>Settings</DropdownItem>786 <DropdownItem header>Header</DropdownItem>787 <DropdownItem>Actions</DropdownItem>788 <DropdownItem divider/>789 <DropdownItem>Dividers</DropdownItem>790 </DropdownMenu>791 </UncontrolledButtonDropdown>792 <UncontrolledButtonDropdown>793 <DropdownToggle caret outline className="mb-2 mr-2" color="link">794 Link795 </DropdownToggle>796 <DropdownMenu>797 <DropdownItem>Menus</DropdownItem>798 <DropdownItem>Settings</DropdownItem>799 <DropdownItem header>Header</DropdownItem>800 <DropdownItem>Actions</DropdownItem>801 <DropdownItem divider/>802 <DropdownItem>Dividers</DropdownItem>803 </DropdownMenu>804 </UncontrolledButtonDropdown>805 </CardBody>806 </Card>807 <Card className="main-card mb-3">808 <CardBody>809 <CardTitle>Sizing</CardTitle>810 <div className="text-center">811 <UncontrolledButtonDropdown className="mb-2 mr-2">812 <Button size="lg" color="primary">Large</Button>813 <DropdownToggle size="lg" className="dropdown-toggle-split" caret814 color="primary"/>815 <DropdownMenu>816 <DropdownItem>Menus</DropdownItem>817 <DropdownItem>Settings</DropdownItem>818 <DropdownItem header>Header</DropdownItem>819 <DropdownItem>Actions</DropdownItem>820 <DropdownItem divider/>821 <DropdownItem>Dividers</DropdownItem>822 </DropdownMenu>823 </UncontrolledButtonDropdown>824 <UncontrolledButtonDropdown className="mb-2 mr-2">825 <Button color="primary">Normal</Button>826 <DropdownToggle className="dropdown-toggle-split" caret color="primary"/>827 <DropdownMenu>828 <DropdownItem>Menus</DropdownItem>829 <DropdownItem>Settings</DropdownItem>830 <DropdownItem header>Header</DropdownItem>831 <DropdownItem>Actions</DropdownItem>832 <DropdownItem divider/>833 <DropdownItem>Dividers</DropdownItem>834 </DropdownMenu>835 </UncontrolledButtonDropdown>836 <UncontrolledButtonDropdown className="mb-2 mr-2">837 <Button size="sm" color="primary">Small</Button>838 <DropdownToggle size="sm" className="dropdown-toggle-split" caret839 color="primary"/>840 <DropdownMenu>841 <DropdownItem>Menus</DropdownItem>842 <DropdownItem>Settings</DropdownItem>843 <DropdownItem header>Header</DropdownItem>844 <DropdownItem>Actions</DropdownItem>845 <DropdownItem divider/>846 <DropdownItem>Dividers</DropdownItem>847 </DropdownMenu>848 </UncontrolledButtonDropdown>849 </div>850 <div className="divider"/>851 <div className="text-center">852 <UncontrolledButtonDropdown>853 <DropdownToggle size="lg" caret className="mb-2 mr-2" color="primary">854 Large855 </DropdownToggle>856 <DropdownMenu>857 <DropdownItem>Menus</DropdownItem>858 <DropdownItem>Settings</DropdownItem>859 <DropdownItem header>Header</DropdownItem>860 <DropdownItem>Actions</DropdownItem>861 <DropdownItem divider/>862 <DropdownItem>Dividers</DropdownItem>863 </DropdownMenu>864 </UncontrolledButtonDropdown>865 <UncontrolledButtonDropdown>866 <DropdownToggle caret className="mb-2 mr-2" color="primary">867 Normal868 </DropdownToggle>869 <DropdownMenu>870 <DropdownItem>Menus</DropdownItem>871 <DropdownItem>Settings</DropdownItem>872 <DropdownItem header>Header</DropdownItem>873 <DropdownItem>Actions</DropdownItem>874 <DropdownItem divider/>875 <DropdownItem>Dividers</DropdownItem>876 </DropdownMenu>877 </UncontrolledButtonDropdown>878 <UncontrolledButtonDropdown>879 <DropdownToggle size="sm" caret className="mb-2 mr-2" color="primary">880 Small881 </DropdownToggle>882 <DropdownMenu>883 <DropdownItem>Menus</DropdownItem>884 <DropdownItem>Settings</DropdownItem>885 <DropdownItem header>Header</DropdownItem>886 <DropdownItem>Actions</DropdownItem>887 <DropdownItem divider/>888 <DropdownItem>Dividers</DropdownItem>889 </DropdownMenu>890 </UncontrolledButtonDropdown>891 </div>892 </CardBody>893 </Card>894 <Card className="main-card mb-3">895 <CardBody>896 <CardTitle>Wider</CardTitle>897 <div className="text-center">898 <UncontrolledButtonDropdown className="mb-2 mr-2">899 <Button size="lg" className="btn-wide" color="primary">Large</Button>900 <DropdownToggle size="lg" className="dropdown-toggle-split" caret901 color="primary"/>902 <DropdownMenu>903 <DropdownItem>Menus</DropdownItem>904 <DropdownItem>Settings</DropdownItem>905 <DropdownItem header>Header</DropdownItem>906 <DropdownItem>Actions</DropdownItem>907 <DropdownItem divider/>908 <DropdownItem>Dividers</DropdownItem>909 </DropdownMenu>910 </UncontrolledButtonDropdown>911 <UncontrolledButtonDropdown className="mb-2 mr-2">912 <Button className="btn-wide" color="primary">Normal</Button>913 <DropdownToggle className="dropdown-toggle-split" caret color="primary"/>914 <DropdownMenu>915 <DropdownItem>Menus</DropdownItem>916 <DropdownItem>Settings</DropdownItem>917 <DropdownItem header>Header</DropdownItem>918 <DropdownItem>Actions</DropdownItem>919 <DropdownItem divider/>920 <DropdownItem>Dividers</DropdownItem>921 </DropdownMenu>922 </UncontrolledButtonDropdown>923 <UncontrolledButtonDropdown className="mb-2 mr-2">924 <Button className="btn-wide" size="sm" color="primary">Small</Button>925 <DropdownToggle size="sm" className="dropdown-toggle-split" caret926 color="primary"/>927 <DropdownMenu>928 <DropdownItem>Menus</DropdownItem>929 <DropdownItem>Settings</DropdownItem>930 <DropdownItem header>Header</DropdownItem>931 <DropdownItem>Actions</DropdownItem>932 <DropdownItem divider/>933 <DropdownItem>Dividers</DropdownItem>934 </DropdownMenu>935 </UncontrolledButtonDropdown>936 </div>937 <div className="divider"/>938 <div className="text-center">939 <UncontrolledButtonDropdown>940 <DropdownToggle className="btn-wide mb-2 mr-2" size="lg" caret941 color="primary">942 Large943 </DropdownToggle>944 <DropdownMenu>945 <DropdownItem>Menus</DropdownItem>946 <DropdownItem>Settings</DropdownItem>947 <DropdownItem header>Header</DropdownItem>948 <DropdownItem>Actions</DropdownItem>949 <DropdownItem divider/>950 <DropdownItem>Dividers</DropdownItem>951 </DropdownMenu>952 </UncontrolledButtonDropdown>953 <UncontrolledButtonDropdown>954 <DropdownToggle className="btn-wide mb-2 mr-2" caret color="primary">955 Normal956 </DropdownToggle>957 <DropdownMenu>958 <DropdownItem>Menus</DropdownItem>959 <DropdownItem>Settings</DropdownItem>960 <DropdownItem header>Header</DropdownItem>961 <DropdownItem>Actions</DropdownItem>962 <DropdownItem divider/>963 <DropdownItem>Dividers</DropdownItem>964 </DropdownMenu>965 </UncontrolledButtonDropdown>966 <UncontrolledButtonDropdown>967 <DropdownToggle className="btn-wide mb-2 mr-2" size="sm" caret968 color="primary">969 Small970 </DropdownToggle>971 <DropdownMenu>972 <DropdownItem>Menus</DropdownItem>973 <DropdownItem>Settings</DropdownItem>974 <DropdownItem header>Header</DropdownItem>975 <DropdownItem>Actions</DropdownItem>976 <DropdownItem divider/>977 <DropdownItem>Dividers</DropdownItem>978 </DropdownMenu>979 </UncontrolledButtonDropdown>980 </div>981 </CardBody>982 </Card>983 </Col>984 </Row>985 </ReactCSSTransitionGroup>986 </Fragment>987 );988 }...

Full Screen

Full Screen

pipelines.py

Source:pipelines.py Github

copy

Full Screen

...41 raise DropItem("Item contains no images")42 item['image_paths'] = image_paths43 return item44class JsonWithEncodingLinkedinPipeline(object):45 def process_item(self, item, spider):46 try:47 item['profile_url']48 file = codecs.open('profile.json', 'a', encoding='utf-8')49 line = json.dumps(dict(item), ensure_ascii=False) + "\n"50 file.write(line)51 return item52 except:53 try:54 item['company_url']55 file = codecs.open('company.json', 'a', encoding='utf-8')56 line = json.dumps(dict(item), ensure_ascii=False) + "\n"57 file.write(line)58 return item59 except:60 try:61 item['school_url']62 file = codecs.open('school.json', 'a', encoding='utf-8')63 line = json.dumps(dict(item), ensure_ascii=False) + "\n"64 file.write(line)65 return item66 except:67 pass68 def spider_closed(self, spider):69 self.file.close()70 raise CloseSpider('Shutdown by ctrl-c')71class MongoDBPipeline(object):72 def __init__(self):73 client = MongoClient('localhost', 27017)74 self.db = client['linkedin']75 def process_item(self, item, spider):76 now = datetime.datetime.now().replace(microsecond=0).isoformat(' ')77 try:78 item['profile_url']79 print "person"80 linkmd5id = self._get_linkmd5id1(item)81 if item['profile_img']:82 today = str(datetime.date.today())83 FileName = '/%s.jpg' % (linkmd5id)84 web = urllib.urlopen(item['profile_img'])85 jpg = web.read()86 DstDir = "D:/Test/src/demo/static/pic/person/"+today87 if not os.path.exists(DstDir):88 os.makedirs(DstDir)89 File = open(DstDir + FileName, "wb")90 File.write(jpg)91 File.close()92 item['image_paths'] = ['person/'+ today + FileName]93 self.db.profile.update({'idprofileitem':linkmd5id}, {'$set':{ "idprofileitem":linkmd5id, "profile_url":item['profile_url'], "profile_img":item['profile_img'], "profile_name":item['profile_name'], "profile_headline":item['profile_headline'], "profile_location":item['profile_location'], "profile_industry":item['profile_industry'],94 "profile_current":item['profile_current'], "profile_previous":item['profile_previous'], "profile_education":item['profile_education'], "profile_homepage":item['profile_homepage'], "profile_summary_bkgd":item['profile_summary_bkgd'], "profile_experience_bkgd":item['profile_experience_bkgd'], "profile_honors_bkgd":item['profile_honors_bkgd'], "profile_projects_bkgd":item['profile_projects_bkgd'], "profile_top_skills_bkgd":item['profile_top_skills_bkgd'],95 "profile_also_knows_bkgd":item['profile_also_knows_bkgd'], "profile_education_bkgd":item['profile_education_bkgd'], "profile_organizations_bkgd":item['profile_organizations_bkgd'], "profile_organizations_supports":item['profile_organizations_supports'], "profile_causes_cares":item['profile_causes_cares'], "image_paths":item['image_paths'], "updated":now}}, upsert=True)96 return item97 except:98 try:99 item['company_url']100 print "company"101 linkmd5id = self._get_linkmd5id2(item)102 print '1'103 if item['company_logo']:104 today = str(datetime.date.today())105 FileName = '/%s.jpg' % (linkmd5id)106 web = urllib.urlopen(item['company_logo'])107 jpg = web.read()108 DstDir = "D:/Test/src/demo/static/pic/company/"+today109 if not os.path.exists(DstDir):110 os.makedirs(DstDir)111 File = open(DstDir + FileName, "wb")112 File.write(jpg)113 File.close()114 item['image_paths'] = ['company/'+ today + FileName]115 else:116 item['image_paths'] = ['company/2016-07-26/cd7026ef971162c323611ddf604ac21d.jpg']117 self.db.company.update({'idcompanyitem':linkmd5id}, {'$set':{ "idcompanyitem":linkmd5id, "company_url":item['company_url'], "company_name":item['company_name'], "company_logo":item['company_logo'], "company_img":item['company_img'], "company_description":item['company_description'], "company_specialties":item['company_specialties'],118 "company_website":item['company_website'], "company_industy":item['company_industy'], "company_type":item['company_type'], "company_headquarters":item['company_headquarters'], "company_size":item['company_size'], "company_founded":item['company_founded'], "image_paths":item['image_paths'], "updated":now}}, upsert=True)119 print '2'120 return item121 except:122 try:123 item['school_url']124 print "school"125 linkmd5id = self._get_linkmd5id3(item)126 if item['school_logo']:127 today = str(datetime.date.today())128 FileName = '/%s.jpg' % (linkmd5id)129 web = urllib.urlopen(item['school_logo'])130 jpg = web.read()131 DstDir = "D:/Test/src/demo/static/pic/school/"+today132 if not os.path.exists(DstDir):133 os.makedirs(DstDir)134 File = open(DstDir + FileName, "wb")135 File.write(jpg)136 File.close()137 item['image_paths'] = ['school/'+ today + FileName]138 self.db.school.update({'idschoolitem':linkmd5id}, {'$set':{ "idschoolitem":linkmd5id, "school_url":item['school_url'], "school_name":item['school_name'], "school_logo":item['school_logo'], "school_img":item['school_img'], "school_location":item['school_location'], "genarl_information":item['genarl_information'],139 "school_homepage":item['school_homepage'], "school_email":item['school_email'], "school_type":item['school_type'], "contact_number":item['contact_number'], "school_year":item['school_year'], "school_address":item['school_address'], "undergrad_students":item['undergrad_students'], "graduate_students":item['graduate_students'], "male":item['male'], "female":item['female'],140 "faculty":item['faculty'], "admitted":item['admitted'], "total_population":item['total_population'], "graduated":item['graduated'], "student_faculty_ratio":item['student_faculty_ratio'], "tuition":item['tuition'], "school_notables":item['school_notables'], "students_live_place":item['students_live_place'], "students_live_num":item['students_live_num'],141 "students_work_company":item['students_work_company'], "students_work_num":item['students_work_num'], "students_do_field":item['students_do_field'], "students_do_num":item['students_do_num'], "students_studied_subject":item['students_studied_subject'], "students_studied_num":item['students_studied_num'], "students_skill_field":item['students_skill_field'], "students_skill_num":item['students_skill_num'], "image_paths":item['image_paths'], "updated":now}}, upsert=True)142 return item143 except:144 pass145 def _get_linkmd5id1(self, item):146 #url进行md5处理,避免重复采集147 return md5(item['profile_url'][0:80]).hexdigest()148 def _get_linkmd5id2(self, item):149 #url进行md5处理,避免重复采集150 return md5(item['company_url'][0:65]).hexdigest()151 def _get_linkmd5id3(self, item):152 #url进行md5处理,避免重复采集153 return md5(item['school_url'][0:75]).hexdigest()154class MySQLStoreLinkedinPipeline(object):155 def __init__(self):156 self.dbpool = adbapi.ConnectionPool('MySQLdb',157 host = '127.0.0.1',158 db = 'linkedin',159 user = 'root',160 passwd = 'bupt123456',161 cursorclass = MySQLdb.cursors.DictCursor,162 charset = 'utf8',163 use_unicode = True164 )165 #pipeline默认调用166 def process_item(self, item, spider):167 try:168 item['profile_url']169 print "person"170 d = self.dbpool.runInteraction(self._do_upinsert1, item)171 return item172 except:173 try:174 item['company_url']175 print "company"176 d = self.dbpool.runInteraction(self._do_upinsert2, item)177 return item178 except:179 try:180 item['school_url']181 print "school"182 d = self.dbpool.runInteraction(self._do_upinsert3, item)183 return item184 except:185 pass186 #将每行更新或写入数据库中187 def _do_upinsert1(self, conn, item):188 linkmd5id = self._get_linkmd5id1(item)189 #print linkmd5id190 now = datetime.datetime.now().replace(microsecond=0).isoformat(' ')191 conn.execute("""192 select 1 from profileitem where idprofileitem = %s193 """, (linkmd5id,))194 ret = conn.fetchone()195 profile_current = '^'.join(item['profile_current'])196 profile_previous = '^'.join(item['profile_previous'])197 profile_education = '^'.join(item['profile_education'])198 profile_experience_bkgd = '^'.join(item['profile_experience_bkgd'])199 profile_honors_bkgd = '^'.join(item['profile_honors_bkgd'])200 profile_projects_bkgd = '^'.join(item['profile_projects_bkgd'])201 profile_top_skills_bkgd = '^'.join(item['profile_top_skills_bkgd'])202 profile_also_knows_bkgd = '^'.join(item['profile_also_knows_bkgd'])203 profile_education_bkgd = '^'.join(item['profile_education_bkgd'])204 profile_organizations_bkgd = '^'.join(item['profile_organizations_bkgd'])205 profile_organizations_supports = '^'.join(item['profile_organizations_supports'])206 profile_causes_cares = '^'.join(item['profile_causes_cares'])207 if ret:208 conn.execute("""209 update profileitem set profile_url = %s, profile_img = %s, profile_name = %s, profile_headline = %s, profile_location = %s, profile_industry = %s, profile_current = %s, profile_previous = %s, profile_education = %s, profile_homepage = %s, profile_summary_bkgd = %s, profile_experience_bkgd = %s, profile_honors_bkgd = %s, profile_projects_bkgd = %s, profile_top_skills_bkgd = %s, profile_also_knows_bkgd = %s, profile_education_bkgd = %s, profile_organizations_bkgd = %s, profile_organizations_supports = %s, profile_causes_cares = %s210 , updated = %s where idprofileitem = %s211 """, (item['profile_url'], item['profile_img'], item['profile_name'], item['profile_headline'], item['profile_location'], item['profile_industry'], profile_current, profile_previous, profile_education, item['profile_homepage'], item['profile_summary_bkgd'], profile_experience_bkgd, profile_honors_bkgd, profile_projects_bkgd, profile_top_skills_bkgd, profile_also_knows_bkgd, profile_education_bkgd, profile_organizations_bkgd, profile_organizations_supports, profile_causes_cares, now, linkmd5id))212 else:213 conn.execute("""214 insert into profileitem(idprofileitem, profile_url, profile_img, profile_name, profile_headline, profile_location, profile_industry, profile_current, profile_previous, profile_education, profile_homepage, profile_summary_bkgd, profile_experience_bkgd, profile_honors_bkgd, profile_projects_bkgd, profile_top_skills_bkgd, profile_also_knows_bkgd, profile_education_bkgd, profile_organizations_bkgd, profile_organizations_supports, profile_causes_cares, updated)215 values(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)216 """, (linkmd5id, item['profile_url'], item['profile_img'], item['profile_name'], item['profile_headline'], item['profile_location'], item['profile_industry'], profile_current, profile_previous, profile_education, item['profile_homepage'], item['profile_summary_bkgd'], profile_experience_bkgd, profile_honors_bkgd, profile_projects_bkgd, profile_top_skills_bkgd, profile_also_knows_bkgd, profile_education_bkgd, profile_organizations_bkgd, profile_organizations_supports, profile_causes_cares, now))217 def _do_upinsert2(self, conn, item):218 linkmd5id = self._get_linkmd5id2(item)219 #print linkmd5id220 now = datetime.datetime.now().replace(microsecond=0).isoformat(' ')221 conn.execute("""222 select 1 from companyitem where idcompanyitem = %s223 """, (linkmd5id,))224 ret = conn.fetchone()225 if ret:226 conn.execute("""227 update companyitem set company_url = %s, company_name = %s, company_logo = %s, company_img = %s, company_description = %s, company_specialties = %s, company_website = %s, company_industy = %s, company_type = %s, company_headquarters = %s, company_size = %s, company_founded = %s, updated = %s where idcompanyitem = %s228 """, (item['company_url'], item['company_name'], item['company_logo'], item['company_img'], item['company_description'], item['company_specialties'], item['company_website'], item['company_industy'], item['company_type'], item['company_headquarters'], item['company_size'], item['company_founded'], now, linkmd5id))229 else:230 conn.execute("""231 insert into companyitem(idcompanyitem, company_url, company_name, company_logo, company_img, company_description, company_specialties, company_website, company_industy, company_type, company_headquarters, company_size, company_founded, updated)values(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)232 """, (linkmd5id, item['company_url'], item['company_name'], item['company_logo'], item['company_img'], item['company_description'], item['company_specialties'], item['company_website'], item['company_industy'], item['company_type'], item['company_headquarters'], item['company_size'], item['company_founded'], now))233 def _do_upinsert3(self, conn, item):234 linkmd5id = self._get_linkmd5id3(item)235 #print linkmd5id236 now = datetime.datetime.now().replace(microsecond=0).isoformat(' ')237 conn.execute("""238 select 1 from schoolitem where idschoolitem = %s239 """, (linkmd5id,))240 ret = conn.fetchone()241 school_notables = '^'.join(item['school_notables'])242 students_live_place = '^'.join(item['students_live_place'])243 students_live_num = '^'.join(item['students_live_num'])244 students_work_company = '^'.join(item['students_work_company'])245 students_work_num = '^'.join(item['students_work_num'])246 students_do_field = '^'.join(item['students_do_field'])247 students_do_num = '^'.join(item['students_do_num'])248 students_studied_subject = '^'.join(item['students_studied_subject'])249 students_studied_num = '^'.join(item['students_studied_num'])250 students_skill_field = '^'.join(item['students_skill_field'])251 students_skill_num = '^'.join(item['students_skill_num'])252 if ret:253 conn.execute("""254 update schoolitem set school_url = %s, school_name = %s, school_logo = %s, school_img = %s, school_location = %s, genarl_information = %s, school_homepage = %s, school_email = %s, school_type = %s, contact_number = %s, school_year = %s, school_address = %s, undergrad_students = %s, graduate_students = %s, male = %s, female = %s, faculty = %s, admitted = %s, total_population = %s, graduated = %s, student_faculty_ratio = %s, tuition = %s, school_notables = %s, students_live_place = %s, students_live_num = %s, students_work_company = %s, students_work_num = %s, students_do_field = %s, students_do_num = %s, students_studied_subject = %s, students_studied_num = %s, students_skill_field = %s, students_skill_num = %s, updated = %s where idschoolitem = %s255 """, (item['school_url'], item['school_name'], item['school_logo'], item['school_img'], item['school_location'], item['genarl_information'], item['school_homepage'], item['school_email'], item['school_type'], item['contact_number'], item['school_year'], item['school_address'], item['undergrad_students'], item['graduate_students'], item['male'], item['female'], item['faculty'], item['admitted'], item['total_population'], item['graduated'], item['student_faculty_ratio'], item['tuition'], school_notables, students_live_place, students_live_num, students_work_company, students_work_num, students_do_field, students_do_num, students_studied_subject, students_studied_num, students_skill_field, students_skill_num, now, linkmd5id))256 else:257 conn.execute("""258 insert into schoolitem(idschoolitem, school_url, school_name, school_logo, school_img, school_location, genarl_information, school_homepage, school_email,259 school_type, contact_number, school_year, school_address, undergrad_students, graduate_students, male, female, faculty, admitted, total_population, graduated, student_faculty_ratio, tuition, school_notables, students_live_place, students_live_num, students_work_company, students_work_num, students_do_field, students_do_num, students_studied_subject, students_studied_num, students_skill_field, students_skill_num, updated)260 values(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)261 """, (linkmd5id, item['school_url'], item['school_name'], item['school_logo'], item['school_img'], item['school_location'], item['genarl_information'], item['school_homepage'], item['school_email'], item['school_type'], item['contact_number'], item['school_year'], item['school_address'], item['undergrad_students'], item['graduate_students'], item['male'], item['female'], item['faculty'], item['admitted'], item['total_population'], item['graduated'], item['student_faculty_ratio'], item['tuition'], school_notables, students_live_place, students_live_num, students_work_company, students_work_num, students_do_field, students_do_num, students_studied_subject, students_studied_num, students_skill_field, students_skill_num, now))262 #获取url的md5编码263 def _get_linkmd5id1(self, item):264 #url进行md5处理,避免重复采集265 return md5(item['profile_url'][0:80]).hexdigest()266 def _get_linkmd5id2(self, item):267 #url进行md5处理,避免重复采集268 return md5(item['company_url'][0:65]).hexdigest()269 def _get_linkmd5id3(self, item):270 #url进行md5处理,避免重复采集...

Full Screen

Full Screen

test_Item.py

Source:test_Item.py Github

copy

Full Screen

...133 expected = {'test_key': 'test_val', CONTENTTYPE: contenttype}134 assert result == expected135 def test_item_can_have_several_names(self):136 content = u"This is page content"137 update_item(u'Page',138 {NAME: [u'Page',139 u'Another name',140 ],141 CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, content)142 item1 = Item.create(u'Page')143 assert item1.name == u'Page'144 assert item1.meta[CONTENTTYPE] == 'text/x.moin.wiki;charset=utf-8'145 assert item1.content.data == content146 item2 = Item.create(u'Another name')147 assert item2.name == u'Another name'148 assert item2.meta[CONTENTTYPE] == 'text/x.moin.wiki;charset=utf-8'149 assert item2.content.data == content150 assert item1.rev.revid == item2.rev.revid151 def test_rename(self):152 name = u'Test_Item'153 contenttype = u'text/plain;charset=utf-8'154 data = 'test_data'155 meta = {'test_key': 'test_value', CONTENTTYPE: contenttype}156 comment = u'saved it'157 item = Item.create(name)158 item._save(meta, data, comment=comment)159 # item and its contents before renaming160 item = Item.create(name)161 assert item.name == u'Test_Item'162 assert item.meta[COMMENT] == u'saved it'163 new_name = u'Test_new_Item'164 item.rename(new_name, comment=u'renamed')165 # item at original name and its contents after renaming166 item = Item.create(name)167 assert item.name == u'Test_Item'168 # this should be a fresh, new item, NOT the stuff we renamed:169 assert item.meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT170 # item at new name and its contents after renaming171 item = Item.create(new_name)172 assert item.name == u'Test_new_Item'173 assert item.meta[NAME_OLD] == [u'Test_Item']174 assert item.meta[COMMENT] == u'renamed'175 assert item.content.data == u'test_data'176 def test_rename_acts_only_in_active_name_in_case_there_are_several_names(self):177 content = u"This is page content"178 update_item(u'Page',179 {NAME: [u'First',180 u'Second',181 u'Third',182 ],183 CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, content)184 item = Item.create(u'Second')185 item.rename(u'New name', comment=u'renamed')186 item1 = Item.create(u'First')187 assert item1.name == u'First'188 assert item1.meta[CONTENTTYPE] == 'text/x.moin.wiki;charset=utf-8'189 assert item1.content.data == content190 item2 = Item.create(u'New name')191 assert item2.name == u'New name'192 assert item2.meta[CONTENTTYPE] == 'text/x.moin.wiki;charset=utf-8'193 assert item2.content.data == content194 item3 = Item.create(u'Third')195 assert item3.name == u'Third'196 assert item3.meta[CONTENTTYPE] == 'text/x.moin.wiki;charset=utf-8'197 assert item3.content.data == content198 assert item1.rev.revid == item2.rev.revid == item3.rev.revid199 item4 = Item.create(u'Second')200 assert item4.meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT201 def test_rename_recursion(self):202 update_item(u'Page', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'Page 1')203 update_item(u'Page/Child', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'this is child')204 update_item(u'Page/Child/Another', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'another child')205 item = Item.create(u'Page')206 item.rename(u'Renamed_Page', comment=u'renamed')207 # items at original name and its contents after renaming208 item = Item.create(u'Page')209 assert item.name == u'Page'210 assert item.meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT211 item = Item.create(u'Page/Child')212 assert item.name == u'Page/Child'213 assert item.meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT214 item = Item.create(u'Page/Child/Another')215 assert item.name == u'Page/Child/Another'216 assert item.meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT217 # item at new name and its contents after renaming218 item = Item.create(u'Renamed_Page')219 assert item.name == u'Renamed_Page'220 assert item.meta[NAME_OLD] == [u'Page']221 assert item.meta[COMMENT] == u'renamed'222 assert item.content.data == u'Page 1'223 item = Item.create(u'Renamed_Page/Child')224 assert item.name == u'Renamed_Page/Child'225 assert item.meta[NAME_OLD] == [u'Page/Child']226 assert item.meta[COMMENT] == u'renamed'227 assert item.content.data == u'this is child'228 item = Item.create(u'Renamed_Page/Child/Another')229 assert item.name == u'Renamed_Page/Child/Another'230 assert item.meta[NAME_OLD] == [u'Page/Child/Another']231 assert item.meta[COMMENT] == u'renamed'232 assert item.content.data == u'another child'233 def test_rename_recursion_with_multiple_names_and_children(self):234 update_item(u'Foo', {235 CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8',236 NAME: [u'Other', u'Page', u'Foo'],237 }, u'Parent')238 update_item(u'Page/Child', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'Child of Page')239 update_item(u'Other/Child2', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'Child of Other')240 update_item(u'Another', {241 CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8',242 NAME: [u'Another', u'Page/Second'],243 }, u'Both')244 update_item(u'Page/Second/Child', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'Child of Second')245 update_item(u'Another/Child', {CONTENTTYPE: u'text/x.moin.wiki;charset=utf-8'}, u'Child of Another')246 item = Item.create(u'Page')247 item.rename(u'Renamed', comment=u'renamed')248 assert Item.create(u'Page/Child').meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT249 assert Item.create(u'Renamed/Child').content.data == u'Child of Page'250 assert Item.create(u'Page/Second').meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT251 assert Item.create(u'Renamed/Second').content.data == u'Both'252 assert Item.create(u'Another').content.data == u'Both'253 assert Item.create(u'Page/Second/Child').meta[CONTENTTYPE] == CONTENTTYPE_NONEXISTENT254 assert Item.create(u'Renamed/Second/Child').content.data == u'Child of Second'255 assert Item.create(u'Other/Child2').content.data == u'Child of Other'256 assert Item.create(u'Another/Child').content.data == u'Child of Another'257 def test_delete(self):258 name = u'Test_Item2'259 contenttype = u'text/plain;charset=utf-8'...

Full Screen

Full Screen

test_production_planning_tool.py

Source:test_production_planning_tool.py Github

copy

Full Screen

...79 for mat_req_type in get_requested_types(item):80 self.assertEqual(type, mat_req_type)81def create_test_records():82 from erpnext.stock.doctype.item.test_item import make_item83 subA = make_item("_Test PPT Item Sub A",{84 "item_code": "_Test PPT Item Sub A",85 "item_name": "_Test PPT Item Sub A",86 "description": "A manufactured _Test PPT Item Sub Assembly",87 "default_material_request_type": "Manufacture",88 "is_sub_contracted_item": 0,89 "is_stock_item": 1,90 "stock_uom": "_Test UOM",91 "item_group": "_Test Item Group",92 "default_warehouse": "_Test Warehouse - _TC"})93 subB = make_item("_Test PPT Item Sub B",{94 "item_code": "_Test PPT Item Sub B",95 "item_name": "_Test PPT Item Sub B",96 "description": "A manufactured _Test PPT Item Sub Assembly",97 "default_material_request_type": "Manufacture",98 "is_sub_contracted_item": 0,99 "is_stock_item": 1,100 "stock_uom": "_Test UOM",101 "item_group": "_Test Item Group",102 "default_warehouse": "_Test Warehouse - _TC"})103 subC = make_item("_Test PPT Item Sub C",{104 "item_code": "_Test PPT Item Sub C",105 "item_name": "_Test PPT Item Sub C",106 "description": "A manufactured _Test PPT Item Sub Assembly",107 "default_material_request_type": "Manufacture",108 "is_sub_contracted_item": 0,109 "is_stock_item": 1,110 "stock_uom": "_Test UOM",111 "item_group": "_Test Item Group",112 "default_warehouse": "_Test Warehouse - _TC"})113 sCA = make_item("_Test PPT Item SC A",{114 "item_code": "_Test PPT Item SC A",115 "item_name": "_Test PPT Item SC A",116 "description": "A subcontracted part with raw materials",117 "default_material_request_type": "Purchase",118 "is_sub_contracted_item": 1,119 "is_stock_item": 1,120 "stock_uom": "_Test UOM",121 "item_group": "_Test Item Group",122 "default_warehouse": "_Test Warehouse - _TC"})123 subA = make_item("_Test PPT Item Sub A",{124 "item_code": "_Test PPT Item Sub A",125 "item_name": "_Test PPT Item Sub A",126 "description": "A manufactured _Test PPT Item Sub Assembly",127 "default_material_request_type": "Manufacture",128 "is_sub_contracted_item": 0,129 "is_stock_item": 1,130 "stock_uom": "_Test UOM",131 "item_group": "_Test Item Group",132 "default_warehouse": "_Test Warehouse - _TC"})133 sCB = make_item("_Test PPT Item SC B",{134 "item_code": "_Test PPT Item SC B",135 "item_name": "_Test PPT Item SC B",136 "description": "A subcontracted part with raw materials",137 "default_material_request_type": "Purchase",138 "is_sub_contracted_item": 1,139 "is_stock_item": 1,140 "stock_uom": "_Test UOM",141 "item_group": "_Test Item Group",142 "default_warehouse": "_Test Warehouse - _TC"})143 rawA = make_item("_Test PPT Item Raw A",{144 "item_code": "_Test PPT Item Raw A",145 "item_name": "_Test PPT Item Raw A",146 "description": "A raw material",147 "default_material_request_type": "Purchase",148 "is_sub_contracted_item": 0,149 "is_stock_item": 1,150 "stock_uom": "_Test UOM",151 "item_group": "_Test Item Group",152 "default_warehouse": "_Test Warehouse - _TC"})153 rawB = make_item("_Test PPT Item Raw B",{154 "item_code": "_Test PPT Item Raw B",155 "item_name": "_Test PPT Item Raw B",156 "description": "A raw material",157 "default_material_request_type": "Purchase",158 "is_sub_contracted_item": 0,159 "is_stock_item": 1,160 "stock_uom": "_Test UOM",161 "item_group": "_Test Item Group",162 "default_warehouse": "_Test Warehouse - _TC"})163 rawC = make_item("_Test PPT Item Raw C",{164 "item_code": "_Test PPT Item Raw C",165 "item_name": "_Test PPT Item Raw C",166 "description": "A raw material",167 "default_material_request_type": "Purchase",168 "is_sub_contracted_item": 0,169 "is_stock_item": 1,170 "stock_uom": "_Test UOM",171 "item_group": "_Test Item Group",172 "default_warehouse": "_Test Warehouse - _TC"})173 rawD = make_item("_Test PPT Item Raw D",{174 "item_code": "_Test PPT Item Raw D",175 "item_name": "_Test PPT Item Raw D",176 "description": "A raw material",177 "default_material_request_type": "Purchase",178 "is_sub_contracted_item": 0,179 "is_stock_item": 1,180 "stock_uom": "_Test UOM",181 "item_group": "_Test Item Group",182 "default_warehouse": "_Test Warehouse - _TC"})183 master = make_item("_Test PPT Item Master",{184 "item_code": "_Test PPT Item Master",185 "item_name": "_Test PPT Item Master",186 "description": "The final assembly",187 "default_material_request_type": "Manufacture",188 "is_sub_contracted_item": 0,189 "is_stock_item": 1,190 "stock_uom": "_Test UOM",191 "item_group": "_Test Item Group",192 "default_warehouse": "_Test Warehouse - _TC"})193 bom_subB = make_bom("BOM-_Test PPT Item Sub B-001",{"quantity":1.0,194 "item": "_Test PPT Item Sub B",195 "is_active": 1,196 "is_default": 1,197 "docstatus": 1,...

Full Screen

Full Screen

Hash.py

Source:Hash.py Github

copy

Full Screen

1#!/usr/bin/python32############################################################################3#4# © 2020 ABDULKADİR GÜNGÖR All Rights Reserved5# Contact email address: abdulkadir_gungor@outlook.com6#7# Developper: Abdulkadir GÜNGÖR (abdulkadir_gungor@outlook.com)8# Date: 09/20209# All Rights Reserved (Tüm Hakları Saklıdır)10#11############################################################################12from lib.cryptography.hash.Hash_Subfunc import *1314def detectHash(hashStr:str) -> list:15 #16 tmp_result = []17 nullitem = Hash()18 #19 item = CRC16(hashStr)20 if type(item) == type(nullitem):21 tmp_result.append(item)22 #23 item = CRC16CCITT(hashStr)24 if type(item) == type(nullitem):25 tmp_result.append(item)26 #27 item = FCS16(hashStr)28 if type(item) == type(nullitem):29 tmp_result.append(item)30 #31 item = CRC32(hashStr)32 if type(item) == type(nullitem):33 tmp_result.append(item)34 #35 item = ADLER32(hashStr)36 if type(item) == type(nullitem):37 tmp_result.append(item)38 #39 item = CRC32B(hashStr)40 if type(item) == type(nullitem):41 tmp_result.append(item)42 #43 item = XOR32(hashStr)44 if type(item) == type(nullitem):45 tmp_result.append(item)46 #47 item = GHash323(hashStr)48 if type(item) == type(nullitem):49 tmp_result.append(item)50 #51 item = GHash325(hashStr)52 if type(item) == type(nullitem):53 tmp_result.append(item)54 #55 item = DESUnix(hashStr)56 if type(item) == type(nullitem):57 tmp_result.append(item)58 #59 item = MD5Half(hashStr)60 if type(item) == type(nullitem):61 tmp_result.append(item)62 #63 item = MD5Middle(hashStr)64 if type(item) == type(nullitem):65 tmp_result.append(item)66 #67 item = MySQL(hashStr)68 if type(item) == type(nullitem):69 tmp_result.append(item)70 #71 item = DomainCachedCredentials(hashStr)72 if type(item) == type(nullitem):73 tmp_result.append(item)74 #75 item = Haval128(hashStr)76 if type(item) == type(nullitem):77 tmp_result.append(item)78 #79 item = Haval128HMAC(hashStr)80 if type(item) == type(nullitem):81 tmp_result.append(item)82 #83 item = MD2(hashStr)84 if type(item) == type(nullitem):85 tmp_result.append(item)86 #87 item = MD2HMAC(hashStr)88 if type(item) == type(nullitem):89 tmp_result.append(item)90 #91 item = MD4(hashStr)92 if type(item) == type(nullitem):93 tmp_result.append(item)94 #95 item = MD4HMAC(hashStr)96 if type(item) == type(nullitem):97 tmp_result.append(item)98 #99 item = MD5(hashStr)100 if type(item) == type(nullitem):101 tmp_result.append(item)102 #103 item = MD5HMAC(hashStr)104 if type(item) == type(nullitem):105 tmp_result.append(item)106 #107 item = MD5HMACWordpress(hashStr)108 if type(item) == type(nullitem):109 tmp_result.append(item)110 #111 item = NTLM(hashStr)112 if type(item) == type(nullitem):113 tmp_result.append(item)114 #115 item = RAdminv2x(hashStr)116 if type(item) == type(nullitem):117 tmp_result.append(item)118 #119 item = RipeMD128(hashStr)120 if type(item) == type(nullitem):121 tmp_result.append(item)122 #123 item = RipeMD128HMAC(hashStr)124 if type(item) == type(nullitem):125 tmp_result.append(item)126 #127 item = SNEFRU128(hashStr)128 if type(item) == type(nullitem):129 tmp_result.append(item)130 #131 item = SNEFRU128HMAC(hashStr)132 if type(item) == type(nullitem):133 tmp_result.append(item)134 #135 item = Tiger128(hashStr)136 if type(item) == type(nullitem):137 tmp_result.append(item)138 #139 item = Tiger128HMAC(hashStr)140 if type(item) == type(nullitem):141 tmp_result.append(item)142 #143 item = md5passsalt(hashStr)144 if type(item) == type(nullitem):145 tmp_result.append(item)146 #147 item = md5saltmd5pass(hashStr)148 if type(item) == type(nullitem):149 tmp_result.append(item)150 #151 item = md5saltpass(hashStr)152 if type(item) == type(nullitem):153 tmp_result.append(item)154 #155 item = md5saltpasssalt(hashStr)156 if type(item) == type(nullitem):157 tmp_result.append(item)158 #159 item = md5saltpassusername(hashStr)160 if type(item) == type(nullitem):161 tmp_result.append(item)162 #163 item = md5saltmd5pass2 (hashStr)164 if type(item) == type(nullitem):165 tmp_result.append(item)166 #167 item = md5saltmd5passsalt (hashStr)168 if type(item) == type(nullitem):169 tmp_result.append(item)170 #171 item = md5saltmd5passsalt2 (hashStr)172 if type(item) == type(nullitem):173 tmp_result.append(item)174 #175 item = md5saltmd5saltpass (hashStr)176 if type(item) == type(nullitem):177 tmp_result.append(item)178 #179 item = md5saltmd5md5passsalt (hashStr)180 if type(item) == type(nullitem):181 tmp_result.append(item)182 #183 item = md5username0pass (hashStr)184 if type(item) == type(nullitem):185 tmp_result.append(item)186 #187 item = md5usernameLFpass (hashStr)188 if type(item) == type(nullitem):189 tmp_result.append(item)190 #191 item = md5usernamemd5passsalt (hashStr)192 if type(item) == type(nullitem):193 tmp_result.append(item)194 #195 item = md5md5pass (hashStr)196 if type(item) == type(nullitem):197 tmp_result.append(item)198 #199 item = md5md5passsalt (hashStr)200 if type(item) == type(nullitem):201 tmp_result.append(item)202 #203 item = md5md5passmd5salt (hashStr)204 if type(item) == type(nullitem):205 tmp_result.append(item)206 #207 item = md5md5saltpass (hashStr)208 if type(item) == type(nullitem):209 tmp_result.append(item)210 #211 item = md5md5saltmd5pass (hashStr)212 if type(item) == type(nullitem):213 tmp_result.append(item)214 #215 item = md5md5usernamepasssalt (hashStr)216 if type(item) == type(nullitem):217 tmp_result.append(item)218 #219 item = md5md5md5pass (hashStr)220 if type(item) == type(nullitem):221 tmp_result.append(item)222 #223 item = md5md5md5md5pass (hashStr)224 if type(item) == type(nullitem):225 tmp_result.append(item)226 #227 item = md5md5md5md5md5pass (hashStr)228 if type(item) == type(nullitem):229 tmp_result.append(item)230 #231 item = md5sha1pass (hashStr)232 if type(item) == type(nullitem):233 tmp_result.append(item)234 #235 item = md5sha1md5pass (hashStr)236 if type(item) == type(nullitem):237 tmp_result.append(item)238 #239 item = md5sha1md5sha1pass (hashStr)240 if type(item) == type(nullitem):241 tmp_result.append(item)242 #243 item = md5strtouppermd5pass (hashStr)244 if type(item) == type(nullitem):245 tmp_result.append(item)246 #247 item = LineageIIC4 (hashStr)248 if type(item) == type(nullitem):249 tmp_result.append(item)250 #251 item = MD5phpBB3 (hashStr)252 if type(item) == type(nullitem):253 tmp_result.append(item)254 #255 item = MD5Unix (hashStr)256 if type(item) == type(nullitem):257 tmp_result.append(item)258 #259 item = MD5Wordpress (hashStr)260 if type(item) == type(nullitem):261 tmp_result.append(item)262 #263 item = MD5APR (hashStr)264 if type(item) == type(nullitem):265 tmp_result.append(item)266 #267 item = Haval160 (hashStr)268 if type(item) == type(nullitem):269 tmp_result.append(item)270 #271 item = Haval160HMAC (hashStr)272 if type(item) == type(nullitem):273 tmp_result.append(item)274 #275 item = MySQL5 (hashStr)276 if type(item) == type(nullitem):277 tmp_result.append(item)278 #279 item = MySQL160bit (hashStr)280 if type(item) == type(nullitem):281 tmp_result.append(item)282 #283 item = RipeMD160 (hashStr)284 if type(item) == type(nullitem):285 tmp_result.append(item)286 #287 item = RipeMD160HMAC (hashStr)288 if type(item) == type(nullitem):289 tmp_result.append(item)290 #291 item = SHA1 (hashStr)292 if type(item) == type(nullitem):293 tmp_result.append(item)294 #295 item = SHA1HMAC (hashStr)296 if type(item) == type(nullitem):297 tmp_result.append(item)298 #299 item = SHA1MaNGOS (hashStr)300 if type(item) == type(nullitem):301 tmp_result.append(item)302 #303 item = SHA1MaNGOS2 (hashStr)304 if type(item) == type(nullitem):305 tmp_result.append(item)306 #307 item = Tiger160 (hashStr)308 if type(item) == type(nullitem):309 tmp_result.append(item)310 #311 item = Tiger160HMAC (hashStr)312 if type(item) == type(nullitem):313 tmp_result.append(item)314 #315 item = sha1passsalt (hashStr)316 if type(item) == type(nullitem):317 tmp_result.append(item)318 #319 item = sha1saltpass (hashStr)320 if type(item) == type(nullitem):321 tmp_result.append(item)322 #323 item = sha1saltmd5pass (hashStr)324 if type(item) == type(nullitem):325 tmp_result.append(item)326 #327 item = sha1saltmd5passsalt (hashStr)328 if type(item) == type(nullitem):329 tmp_result.append(item)330 #331 item = sha1saltsha1pass (hashStr)332 if type(item) == type(nullitem):333 tmp_result.append(item)334 #335 item = sha1saltsha1saltsha1pass (hashStr)336 if type(item) == type(nullitem):337 tmp_result.append(item)338 #339 item = sha1usernamepass (hashStr)340 if type(item) == type(nullitem):341 tmp_result.append(item)342 #343 item = sha1usernamepasssalt (hashStr)344 if type(item) == type(nullitem):345 tmp_result.append(item)346 #347 item = sha1md5pass (hashStr)348 if type(item) == type(nullitem):349 tmp_result.append(item)350 #351 item = sha1md5passsalt (hashStr)352 if type(item) == type(nullitem):353 tmp_result.append(item)354 #355 item = sha1md5sha1pass (hashStr)356 if type(item) == type(nullitem):357 tmp_result.append(item)358 #359 item = sha1sha1pass (hashStr)360 if type(item) == type(nullitem):361 tmp_result.append(item)362 #363 item = sha1sha1passsalt (hashStr)364 if type(item) == type(nullitem):365 tmp_result.append(item)366 #367 item = sha1sha1passsubstrpass03 (hashStr)368 if type(item) == type(nullitem):369 tmp_result.append(item)370 #371 item = sha1sha1saltpass (hashStr)372 if type(item) == type(nullitem):373 tmp_result.append(item)374 #375 item = sha1sha1sha1pass (hashStr)376 if type(item) == type(nullitem):377 tmp_result.append(item)378 #379 item = sha1strtolowerusernamepass (hashStr)380 if type(item) == type(nullitem):381 tmp_result.append(item)382 #383 item = Haval192 (hashStr)384 if type(item) == type(nullitem):385 tmp_result.append(item)386 #387 item = Haval192HMAC (hashStr)388 if type(item) == type(nullitem):389 tmp_result.append(item)390 #391 item = Tiger192 (hashStr)392 if type(item) == type(nullitem):393 tmp_result.append(item)394 #395 item = Tiger192HMAC (hashStr)396 if type(item) == type(nullitem):397 tmp_result.append(item)398 #399 item = MD5passsaltjoomla1 (hashStr)400 if type(item) == type(nullitem):401 tmp_result.append(item)402 #403 item = SHA1Django (hashStr)404 if type(item) == type(nullitem):405 tmp_result.append(item)406 #407 item = Haval224 (hashStr)408 if type(item) == type(nullitem):409 tmp_result.append(item)410 #411 item = Haval224HMAC (hashStr)412 if type(item) == type(nullitem):413 tmp_result.append(item)414 #415 item = SHA224 (hashStr)416 if type(item) == type(nullitem):417 tmp_result.append(item)418 #419 item = SHA224HMAC (hashStr)420 if type(item) == type(nullitem):421 tmp_result.append(item)422 #423 item = SHA256 (hashStr)424 if type(item) == type(nullitem):425 tmp_result.append(item)426 #427 item = SHA256HMAC (hashStr)428 if type(item) == type(nullitem):429 tmp_result.append(item)430 #431 item = Haval256 (hashStr)432 if type(item) == type(nullitem):433 tmp_result.append(item)434 #435 item = Haval256HMAC (hashStr)436 if type(item) == type(nullitem):437 tmp_result.append(item)438 #439 item = GOSTR341194 (hashStr)440 if type(item) == type(nullitem):441 tmp_result.append(item)442 #443 item = RipeMD256 (hashStr)444 if type(item) == type(nullitem):445 tmp_result.append(item)446 #447 item = RipeMD256HMAC (hashStr)448 if type(item) == type(nullitem):449 tmp_result.append(item)450 #451 item = SNEFRU256 (hashStr)452 if type(item) == type(nullitem):453 tmp_result.append(item)454 #455 item = SNEFRU256HMAC (hashStr)456 if type(item) == type(nullitem):457 tmp_result.append(item)458 #459 item = SHA256md5pass (hashStr)460 if type(item) == type(nullitem):461 tmp_result.append(item)462 #463 item = SHA256sha1pass (hashStr)464 if type(item) == type(nullitem):465 tmp_result.append(item)466 #467 item = MD5passsaltjoomla2 (hashStr)468 if type(item) == type(nullitem):469 tmp_result.append(item)470 #471 item = SAM (hashStr)472 if type(item) == type(nullitem):473 tmp_result.append(item)474 #475 item = SHA256Django (hashStr)476 if type(item) == type(nullitem):477 tmp_result.append(item)478 #479 item = RipeMD320 (hashStr)480 if type(item) == type(nullitem):481 tmp_result.append(item)482 #483 item = RipeMD320HMAC (hashStr)484 if type(item) == type(nullitem):485 tmp_result.append(item)486 #487 item = SHA384 (hashStr)488 if type(item) == type(nullitem):489 tmp_result.append(item)490 #491 item = SHA384HMAC (hashStr)492 if type(item) == type(nullitem):493 tmp_result.append(item)494 #495 item = SHA256s (hashStr)496 if type(item) == type(nullitem):497 tmp_result.append(item)498 #499 item = SHA384Django (hashStr)500 if type(item) == type(nullitem):501 tmp_result.append(item)502 #503 item = SHA512 (hashStr)504 if type(item) == type(nullitem):505 tmp_result.append(item)506 #507 item = SHA512HMAC (hashStr)508 if type(item) == type(nullitem):509 tmp_result.append(item)510 #511 item = Whirlpool (hashStr)512 if type(item) == type(nullitem):513 tmp_result.append(item)514 #515 item = WhirlpoolHMAC (hashStr)516 if type(item) == type(nullitem):517 tmp_result.append(item)518 #519 result = sorted(tmp_result, key=lambda jj: jj.no) ...

Full Screen

Full Screen

parameters.py

Source:parameters.py Github

copy

Full Screen

...209 item = self.tableWidget.horizontalHeaderItem(0)210 item.setText(_translate("parametersWindow", "Values"))211 __sortingEnabled = self.tableWidget.isSortingEnabled()212 self.tableWidget.setSortingEnabled(False)213 item = self.tableWidget.item(0, 0)214 item.setText(_translate("parametersWindow", "60"))215 item = self.tableWidget.item(1, 0)216 item.setText(_translate("parametersWindow", "120"))217 item = self.tableWidget.item(2, 0)218 item.setText(_translate("parametersWindow", "120"))219 item = self.tableWidget.item(3, 0)220 item.setText(_translate("parametersWindow", "150"))221 item = self.tableWidget.item(4, 0)222 item.setText(_translate("parametersWindow", "5"))223 item = self.tableWidget.item(5, 0)224 item.setText(_translate("parametersWindow", "1"))225 item = self.tableWidget.item(6, 0)226 item.setText(_translate("parametersWindow", "3"))227 item = self.tableWidget.item(7, 0)228 item.setText(_translate("parametersWindow", "5"))229 item = self.tableWidget.item(8, 0)230 item.setText(_translate("parametersWindow", "1"))231 item = self.tableWidget.item(9, 0)232 item.setText(_translate("parametersWindow", "3"))233 item = self.tableWidget.item(10, 0)234 item.setText(_translate("parametersWindow", "250"))235 item = self.tableWidget.item(11, 0)236 item.setText(_translate("parametersWindow", "320"))237 item = self.tableWidget.item(12, 0)238 item.setText(_translate("parametersWindow", "250"))239 item = self.tableWidget.item(13, 0)240 item.setText(_translate("parametersWindow", "Med"))241 item = self.tableWidget.item(14, 0)242 item.setText(_translate("parametersWindow", "30"))243 item = self.tableWidget.item(15, 0)244 item.setText(_translate("parametersWindow", "8"))245 item = self.tableWidget.item(16, 0)246 item.setText(_translate("parametersWindow", "5"))247 self.tableWidget.setSortingEnabled(__sortingEnabled)248if __name__ == "__main__":249 import sys250 app = QtWidgets.QApplication(sys.argv)251 parametersWindow = QtWidgets.QDialog()252 ui = Ui_parametersWindow()253 ui.setupUi(parametersWindow)254 parametersWindow.show()...

Full Screen

Full Screen

automobile_settings.py

Source:automobile_settings.py Github

copy

Full Screen

1# -*- coding: utf-8 -*-2# Copyright (c) 2020, Hardik Gadesha and contributors3# For license information, please see license.txt4from __future__ import unicode_literals5import frappe6from frappe import msgprint7from frappe.model.document import Document8class AutomobileSettings(Document):9 pass10@frappe.whitelist(allow_guest=True)11def createItem():12 item = frappe.get_doc({13 "doctype": "Item",14 "item_code": "CRTM Charges",15 "item_name": "CRTM Charges",16 "item_group": "Services",17 "stock_uom": "Nos",18 "is_sales_item": 1,19 "description": "CRTM Charges"20 })21 item.insert()22 item.save()23 item = frappe.get_doc({24 "doctype": "Item",25 "item_code": "Extended Warranty",26 "item_name": "Extended Warranty",27 "item_group": "Services",28 "stock_uom": "Nos",29 "is_sales_item": 1,30 "description": "Extended Warranty"31 })32 item.insert()33 item.save()34 item = frappe.get_doc({35 "doctype": "Item",36 "item_code": "INSURANCE GST",37 "item_name": "INSURANCE GST",38 "item_group": "Services",39 "stock_uom": "Nos",40 "is_sales_item": 1,41 "description": "INSURANCE GST"42 })43 item.insert()44 item.save()45 item = frappe.get_doc({46 "doctype": "Item",47 "item_code": "INSURANCE Own Damage",48 "item_name": "INSURANCE Own Damage",49 "item_group": "Services",50 "stock_uom": "Nos",51 "is_sales_item": 1,52 "description": "INSURANCE Own Damage"53 })54 item.insert()55 item.save()56 item = frappe.get_doc({57 "doctype": "Item",58 "item_code": "INSURANCE TP & Others",59 "item_name": "INSURANCE TP & Others",60 "item_group": "Services",61 "stock_uom": "Nos",62 "is_sales_item": 1,63 "description": "INSURANCE TP & Others"64 })65 item.insert()66 item.save()67 item = frappe.get_doc({68 "doctype": "Item",69 "item_code": "INSURANCE Zero Dep",70 "item_name": "INSURANCE Zero Dep",71 "item_group": "Services",72 "stock_uom": "Nos",73 "is_sales_item": 1,74 "description": "INSURANCE Zero Dep"75 })76 item.insert()77 item.save()78 item = frappe.get_doc({79 "doctype": "Item",80 "item_code": "M. Tax",81 "item_name": "M. Tax",82 "item_group": "Services",83 "stock_uom": "Nos",84 "is_sales_item": 1,85 "description": "M. Tax"86 })87 item.insert()88 item.save()89 item = frappe.get_doc({90 "doctype": "Item",91 "item_code": "Passing Charges",92 "item_name": "Passing Charges",93 "item_group": "Services",94 "stock_uom": "Nos",95 "is_sales_item": 1,96 "description": "Passing Charges"97 })98 item.insert()99 item.save()100 item = frappe.get_doc({101 "doctype": "Item",102 "item_code": "REGI. CHARGES",103 "item_name": "REGI. CHARGES",104 "item_group": "Services",105 "stock_uom": "Nos",106 "is_sales_item": 1,107 "description": "REGI. CHARGES"108 })109 item.insert()110 item.save()111 item = frappe.get_doc({112 "doctype": "Item",113 "item_code": "RTO Tax",114 "item_name": "RTO Tax",115 "item_group": "Services",116 "stock_uom": "Nos",117 "is_sales_item": 1,118 "description": "RTO Tax"119 })120 item.insert()121 item.save()122 item = frappe.get_doc({123 "doctype": "Item",124 "item_code": "RSA CHARGES (1 YEAR)",125 "item_name": "RSA CHARGES (1 YEAR)",126 "item_group": "Services",127 "stock_uom": "Nos",128 "is_sales_item": 1,129 "description": "RSA CHARGES (1 YEAR)"130 })131 item.insert()132 item.save()133 item = frappe.get_doc({134 "doctype": "Item",135 "item_code": "Handling Charges",136 "item_name": "Handling Charges",137 "item_group": "Services",138 "stock_uom": "Nos",139 "is_sales_item": 1,140 "description": "Handling Charges"141 })142 item.insert()...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var ladle = require('./ladle');2ladle.item('spoon');3var ladle = require('./ladle');4ladle.item('fork');5var ladle = require('./ladle');6ladle.item('spoon');7module.exports.item = function(item) {8 console.log('You have a ' + item);9}10module.exports = {11 item: function(item) {12 console.log('You have a ' + item);13 }14}

Full Screen

Using AI Code Generation

copy

Full Screen

1var ladle = require('./ladle.js');2var spoon = ladle.item('spoon');3var fork = ladle.item('fork');4var knife = ladle.item('knife');5var ladle = require('./ladle.js');6var ladle = ladle.ladle('ladle');7var ladle = ladle.ladle('ladle');8var ladle = ladle.ladle('ladle');9var ladle = require('./ladle.js');10var ladle = ladle.ladle('ladle');11var ladle = ladle.ladle('ladle');12var ladle = ladle.ladle('ladle');13var ladle = require('./ladle.js');14var ladle = ladle.ladle('ladle');15var ladle = ladle.ladle('ladle');16var ladle = ladle.ladle('ladle');17var ladle = require('./ladle.js');18var ladle = ladle.ladle('ladle');19var ladle = ladle.ladle('ladle');20var ladle = ladle.ladle('ladle');21var ladle = require('./ladle.js');22var ladle = ladle.ladle('ladle');23var ladle = ladle.ladle('ladle');24var ladle = ladle.ladle('ladle');25var ladle = require('./ladle.js');26var ladle = ladle.ladle('ladle');27var ladle = ladle.ladle('ladle');28var ladle = ladle.ladle('ladle');29var ladle = require('./ladle.js');30var ladle = ladle.ladle('ladle');31var ladle = ladle.ladle('ladle');32var ladle = ladle.ladle('ladle');33var ladle = require('./ladle.js');34var ladle = ladle.ladle('ladle');35var ladle = ladle.ladle('ladle');

Full Screen

Using AI Code Generation

copy

Full Screen

1var ladle = require('./ladle.js');2ladle.item('spoon');3module.exports = {4 item: function(item) {5 console.log('You have a ' + item + '.');6 }7};8module.exports = function(item) {9 console.log('You have a ' + item + '.');10};11var ladle = require('./ladle.js');12ladle('spoon');13The require() function will look for the module in the following order:14module.exports = function(item) {15 console.log('You have a ' + item + '.');16};17var ladle = require('/home/user/ladle.js');18ladle('spoon');19module.exports = function(item) {20 console.log('You have a ' + item + '.');21};22var ladle = require('../ladle.js');23ladle('spoon');24module.exports = function(item) {25 console.log('You have a ' + item + '.');26};27var ladle = require('ladle');28ladle('spoon');

Full Screen

Using AI Code Generation

copy

Full Screen

1var ladle = require('ladle');2var item = ladle.item;3var ladle = ladle.ladle;4var ladle = ladle.ladle;5var ladle = require('ladle');6var ladle = ladle.ladle;7var ladle = ladle.ladle;8var ladle = ladle.ladle;9var ladle = require('ladle');10var ladle = ladle.ladle;11var ladle = ladle.ladle;12var ladle = ladle.ladle;13var ladle = require('ladle');14var ladle = ladle.ladle;15var ladle = ladle.ladle;16var ladle = ladle.ladle;17var ladle = require('ladle');18var ladle = ladle.ladle;19var ladle = ladle.ladle;20var ladle = ladle.ladle;21var ladle = require('ladle');22var ladle = ladle.ladle;23var ladle = ladle.ladle;24var ladle = ladle.ladle;25var ladle = require('ladle');26var ladle = ladle.ladle;27var ladle = ladle.ladle;28var ladle = ladle.ladle;29var ladle = require('ladle');30var ladle = ladle.ladle;31var ladle = ladle.ladle;32var ladle = ladle.ladle;33var ladle = require('ladle');34var ladle = ladle.ladle;35var ladle = ladle.ladle;36var ladle = ladle.ladle;37var ladle = require('ladle');38var ladle = ladle.ladle;39var ladle = ladle.ladle;40var ladle = ladle.ladle;41var ladle = require('ladle');42var ladle = ladle.ladle;43var ladle = ladle.ladle;

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run ladle automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful