Skip to content

Instantly share code, notes, and snippets.

@edeetee
Forked from dribnet/.block
Created August 7, 2017 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edeetee/dc07c7a13d8f87d7f8bc0a2597cb5e2d to your computer and use it in GitHub Desktop.
Save edeetee/dc07c7a13d8f87d7f8bc0a2597cb5e2d to your computer and use it in GitHub Desktop.
17.2.MDDN342 PS2
license: mit
function resetFocusedRandom() {
return Math.seedrandom(arguments);
}
function focusedRandom(min, max, focus, mean) {
// console.log("hello")
if(max === undefined) {
max = min;
min = 0;
}
if(focus === undefined) {
focus = 1.0;
}
if(mean === undefined) {
mean = (min + max) / 2.0;
}
if(focus == 0) {
return d3.randomUniform(min, max)();
}
else if(focus < 0) {
focus = -1 / focus;
}
sigma = (max - mean) / focus;
val = d3.randomNormal(mean, sigma)();
if (val > min && val < max) {
return val;
}
return d3.randomUniform(min, max)();
}
// note: this file is poorly named - it can generally be ignored.
// helper functions below for supporting blocks/purview
function saveBlocksImages(doZoom) {
if(doZoom == null) {
doZoom = false;
}
// generate 960x500 preview.jpg of entire canvas
// TODO: should this be recycled?
var offscreenCanvas = document.createElement('canvas');
offscreenCanvas.width = 960;
offscreenCanvas.height = 500;
var context = offscreenCanvas.getContext('2d');
// background is flat white
context.fillStyle="#FFFFFF";
context.fillRect(0, 0, 960, 500);
context.drawImage(this.canvas, 0, 0, 960, 500);
// save to browser
var downloadMime = 'image/octet-stream';
var imageData = offscreenCanvas.toDataURL('image/jpeg');
imageData = imageData.replace('image/jpeg', downloadMime);
p5.prototype.downloadFile(imageData, 'preview.jpg', 'jpg');
// generate 230x120 thumbnail.png centered on mouse
offscreenCanvas.width = 230;
offscreenCanvas.height = 120;
// background is flat white
context = offscreenCanvas.getContext('2d');
context.fillStyle="#FFFFFF";
context.fillRect(0, 0, 230, 120);
if(doZoom) {
// pixelDensity does the right thing on retina displays
var pd = this._pixelDensity;
var sx = pd * mouseX - pd * 230/2;
var sy = pd * mouseY - pd * 120/2;
var sw = pd * 230;
var sh = pd * 120;
// bounds checking - just displace if necessary
if (sx < 0) {
sx = 0;
}
if (sx > this.canvas.width - sw) {
sx = this.canvas.width - sw;
}
if (sy < 0) {
sy = 0;
}
if (sy > this.canvas.height - sh) {
sy = this.canvas.height - sh;
}
// save to browser
context.drawImage(this.canvas, sx, sy, sw, sh, 0, 0, 230, 120);
}
else {
// now scaledown
var full_width = this.canvas.width;
var full_height = this.canvas.height;
context.drawImage(this.canvas, 0, 0, full_width, full_height, 0, 0, 230, 120);
}
imageData = offscreenCanvas.toDataURL('image/png');
imageData = imageData.replace('image/png', downloadMime);
p5.prototype.downloadFile(imageData, 'thumbnail.png', 'png');
}

PS2 MDDN 342 2017

For this final version, I have done a small amount of iterative work and mostly just been working on making sure all properties map to realistic values, so that for example the fro is a good size in relation to the head. While originally the hard drawing lines was just a step in my process of getting to smooth lines, I thought that it showed an interesting difference in the faces, so decided to bring that style back for this final version. I find it interesting how well the clown faces are able to show expression, such as in the first 5 custom faceMaps. While on the vibe of adding discrete styles, I also added the possibility for no fro.

I found it very useful to make my own centering functions, as in function doCentered() in facemap.js. This takes a list of points and runs the provided function transformed to the center of the points. It was great for drawing the mouth paint in the same centered place as the lips, but larger and using a different draw system. My custom Rect class was also useful in the same way. I focused on code that allowed quick experimentation using functional programming techniques, which allowed me to try out a range of different styles without much code change.

/*
* Face class - holds all informaiton about one face
*/
function Face() {
// these are state variables for a face
// (your variables may be different)
this.tilt_value = 0;
this.eye_value = 2;
this.mouth_value = 0;
// other variables can be in here too
// these control the colors used
this.bg_color = [225, 206, 187];
this.fg_color = [151, 102, 52];
this.stroke_color = [95, 52, 8];
colorMode(HSB);
var bert_drawFace = color(45, 90, 95)
var bert_nose = color(29, 96, 94)
var ernie_drawFace = color(30, 90, 92)
var ernie_drawEars = color(30, 90, 75);
var ernie_nose = "rgb(218, 10, 31)" //red
var mouth = color(351, 100, 55)
var oscar_drawFace = color(75, 80, 50)
var oscar_brow = color(23, 80, 30)
var elmo_face_color = color(0, 100, 80);
colorMode(RGB);
/*
* Draw a face centered at x,y with an allowed
* width and height of w,h.
*/
this.draw1 = function(x, y, w, h) {
colorMode(HSB);
// Uncomment to see drawing area
// fill(255);
// stroke(0);
// rect(x-w/2, y-h/2, w, h);
// fill(0)
// ellipse(x, y, w, h);
push();
translate(x, y);
rotate(this.tilt_value/2);
scale(w/350);
//ears
var rotation = -30;
fill(ernie_drawEars);
translate(-290/2, -10);
rotate(rotation)
ellipse(0, 0, 60, 70);
rotate(-rotation)
translate(290, 0);
rotate(-rotation)
ellipse(0, 0, 60, 70);
rotate(rotation)
translate(-290/2, 10);
fill(ernie_drawFace);
ellipse(0, 0, 290, 230);
drawMouthEllipse(0, 30, 230, 50, 0.8-0.4*this.mouth_value/100, mouth, ernie_drawFace);
// set fill to match background color
var rotation = -40;
fill("white");
// draw two eyes
rotate(rotation)
ellipse(-10, -50, 60, 50);
rotate(-rotation*2)
ellipse(10, -50, 60, 50);
rotate(rotation)
// set fill back to black for eyeballs
fill("black");
rotate(rotation)
ellipse(5-this.eye_value/100*20, -50, 25, 25);
rotate(-rotation*2)
ellipse(-5+this.eye_value/100*20, -50, 25, 25);
rotate(rotation)
fill(ernie_nose)
ellipse(0, 5, 65, 70);
pop();
colorMode(RGB);
}
/*
* Update internal state variables to a random state.
*/
this.randomize = function(values, size) {
this.eye_value = getRandomNumberOfEyes();
this.tilt_value = focusedRandom(-70, 90, 8);
this.mouth_value = focusedRandom(0, 50, 4, 1);
}
function drawMouthArc(x, y, width, height, mouthColor, inverse){
//default to 0
inverse |= false
fill(mouthColor);
if(inverse)
arc(x, y+height, width, height*2, 180, 180, CHORD)
else
arc(x, y, width, height*2, 0, 180, CHORD)
}
function drawMouthEllipse(x, y, width, height, ellipseMod, mouthColor, faceColor){
var ellipseHeight = height*2*ellipseMod;
var ellipseY = y-height+ellipseHeight/2
// mouth-hole with background color
fill(mouth);
ellipse(x, y, width, height*2);
//cut out mouth
fill(ernie_drawFace);
ellipse(x, ellipseY, width*1.1, ellipseHeight*1.1);
}
}
// global functions can also be in this file below
function getRandomNumberOfEyes() {
random_result = focusedRandom(0, 100);
if(random_result < 8) {
return 1;
}
else if(random_result < 12) {
return 3;
}
else {
return 2;
}
}
// given a point, return the average
function average_point(list) {
var sum_x = 0;
var sum_y = 0;
var num_points = 0;
for(var i=0; i<list.length; i++) {
sum_x += list[i][0];
sum_y += list[i][1];
num_points += 1;
}
return [sum_x / num_points, sum_y / num_points];
}
[
{"url": "zf1.jpg", "embedding": [[-0.17665912210941315, 0.11197991669178009, 0.04545840248465538, -0.02713228017091751, -0.12191800028085709, -0.08725685626268387, -0.050316013395786285, -0.05587882176041603, 0.17461666464805603, -0.05497843027114868, 0.09451671689748764, -0.02998202294111252, -0.21555854380130768, 0.04471348598599434, -0.06389409303665161, 0.16284297406673431, -0.23686212301254272, -0.17068268358707428, -0.020406903699040413, -0.005951798986643553, 0.11449562013149261, 0.05567505210638046, 0.02736992947757244, 0.11376747488975525, -0.21398209035396576, -0.3342553377151489, -0.0702606737613678, -0.09489012509584427, -0.014463632367551327, -0.03443550691008568, 0.004191715270280838, 0.033558961004018784, -0.187827467918396, -0.021928511559963226, 0.10165673494338989, 0.13035644590854645, -0.01671440526843071, -0.11182335019111633, 0.2634221017360687, -0.01833738200366497, -0.2671736478805542, -0.14683859050273895, 0.1309260129928589, 0.23411397635936737, 0.187957763671875, -0.02017832361161709, 0.012813348323106766, -0.10839972645044327, 0.17457082867622375, -0.28390395641326904, 0.04512747377157211, 0.21478122472763062, 0.017911430448293686, 0.12703905999660492, 0.09814119338989258, -0.19147349894046783, 0.08485030382871628, 0.1450779139995575, -0.22216148674488068, -0.07164490967988968, -0.00690733827650547, -0.04762071743607521, -0.004295739810913801, -0.04634542390704155, 0.14927232265472412, 0.08069902658462524, -0.0696578100323677, -0.14861734211444855, 0.24365757405757904, -0.1677703559398651, -0.020965149626135826, 0.1013508215546608, -0.09449832141399384, -0.23560787737369537, -0.27940866351127625, -0.0684509426355362, 0.4085078239440918, 0.16507181525230408, -0.1272193193435669, 0.09787922352552414, -0.043126653879880905, -0.08510825037956238, 0.03194434940814972, 0.10366977006196976, -0.046513497829437256, 0.07639042288064957, -0.09922963380813599, 0.10231923311948776, 0.18529851734638214, -0.0268288291990757, 0.03212824463844299, 0.16093841195106506, 0.06107569485902786, -0.024298792704939842, 0.11072095483541489, 0.11803504824638367, -0.1524645984172821, 0.011251005344092846, -0.19174209237098694, -0.022012945264577866, 0.06264544278383255, -0.0005151414079591632, -0.0032802284695208073, 0.14418791234493256, -0.20066341757774353, 0.12827427685260773, 0.02908739633858204, -0.12335958331823349, -0.11485602706670761, -0.04863765835762024, -0.0767403393983841, -0.036713335663080215, 0.12151414901018143, -0.208692267537117, 0.15798015892505646, 0.11495701223611832, -0.10081513226032257, 0.22637200355529785, -0.015480891801416874, 0.0790027529001236, -0.028674887493252754, -0.09495127946138382, -0.14706575870513916, -0.0800747200846672, 0.05790546536445618, 0.009725907817482948, 0.032179348170757294, -0.0007827249355614185]], "landmarks": [{"chin": [[-1.6704454150335981, -0.8263523636598831], [-1.7100569056332822, -0.39863735303611303], [-1.6731757358353458, 0.03068737659491349], [-1.6056975018783615, 0.4606559938288425], [-1.5076222037623292, 0.8912684986656741], [-1.2861928176057509, 1.278560957675544], [-0.9560639878852478, 1.5916143628979524], [-0.5471888911569659, 1.7991877625709491], [0.0029143761029963716, 1.8413748035822433], [0.5852244265292631, 1.8077130717988197], [1.1238924873271168, 1.6659957840543744], [1.5876776067346066, 1.4461761169050527], [1.9163514878379904, 1.1010706989064767], [2.0939717109548415, 0.6609546504162441], [2.1654680409193787, 0.17268939907728054], [2.175448298764368, -0.30156509538796417], [2.1551534362517613, -0.7917620095356355]], "left_eyebrow": [[-1.6142476171485851, -1.3149395588002977], [-1.3799404789339558, -1.5395883829713892], [-1.026786465899098, -1.5933778038561057], [-0.6609094711963267, -1.5244570243031792], [-0.32756120346131096, -1.3643889398760107]], "right_eyebrow": [[0.16392348589216543, -1.445877930706714], [0.5202969369415359, -1.6526526723866708], [0.9349670220959408, -1.7204528501451064], [1.3314410809577604, -1.650888182989277], [1.6478810976059957, -1.4146493819659398]], "nose_bridge": [[-0.10484404209892745, -1.0382906091842368], [-0.1259375626045745, -0.7632389755542558], [-0.17795009107072085, -0.4735326974476532], [-0.2149860312587945, -0.16820594346007536]], "nose_tip": [[-0.5417282495534707, 0.08510828206135618], [-0.35975558360643883, 0.16546426807639164], [-0.14654196589745636, 0.2158670775352816], [0.08422379050120912, 0.1595021062389547], [0.3302880789793986, 0.10345907874407907]], "left_eye": [[-1.2544875546733878, -0.9553466697364147], [-1.067685731704587, -1.1044686649142395], [-0.823231162233654, -1.084019032011495], [-0.5517209104196369, -0.8946416586310838], [-0.8277383754539719, -0.8698395828981589], [-1.0725148887263563, -0.8749906837213793]], "right_eye": [[0.5198202227499472, -0.9027026566885423], [0.7385068850836015, -1.1123748925815606], [1.0142024063164852, -1.1218784362349616], [1.271379957455332, -0.9787186028945737], [1.039970313453764, -0.8917565674391988], [0.7795733243004044, -0.8819310799843465]], "top_lip": [[-0.8599327555990998, 0.6600136250542434], [-0.5670070394779844, 0.5590408327251496], [-0.32126469480124614, 0.518296337309798], [-0.10805107709226369, 0.5686991467686879], [0.12271467930640176, 0.512334175472361], [0.4889136178106244, 0.5659564229457638], [0.931283272911016, 0.636486921505947], [0.8085730724733725, 0.6492099031738607], [0.134793773371413, 0.6656414400690526], [-0.09532809542434992, 0.6914093472063314], [-0.3088636569347836, 0.6563050698269655], [-0.7375444989629076, 0.6625891754658537]], "bottom_lip": [[0.931283272911016, 0.636486921505947], [0.5146815249479033, 0.7960782917415268], [0.1459070360320704, 0.8648443009043161], [-0.09951336484321655, 0.8902902642401437], [-0.3130489263536503, 0.8551859868607777], [-0.5565376644202296, 0.7888407577194612], [-0.8599327555990998, 0.6600136250542434], [-0.7375444989629076, 0.6625891754658537], [-0.3091856007362349, 0.6716036019064895], [-0.09532809542434992, 0.6914093472063314], [0.134793773371413, 0.6656414400690526], [0.8085730724733725, 0.6492099031738607]], "transform": {"center": [388.27777777777777, 302.69444444444446], "scale": 65.35127954106424, "angle": -0.021040991887154234}}]},
{"url": "zf2.jpg", "embedding": [[-0.10168759524822235, 0.1368362456560135, 0.08864565938711166, -0.007258477620780468, -0.17225344479084015, -0.04018101468682289, -0.0992712751030922, -0.138626366853714, 0.14393110573291779, -0.10494395345449448, 0.1685936152935028, -0.03812163323163986, -0.2664947211742401, 0.054316215217113495, -0.092832550406456, 0.22768615186214447, -0.18003711104393005, -0.10790730267763138, -0.032741837203502655, -0.05899171531200409, 0.05019167810678482, 0.04772213473916054, 0.0009098230511881411, 0.11124080419540405, -0.06644575297832489, -0.3240901231765747, -0.008247017860412598, -0.04821212217211723, 0.09288790076971054, -0.06023138388991356, -0.11517506092786789, 0.059576407074928284, -0.1382523477077484, 0.004481540061533451, 0.07634004205465317, 0.12134364992380142, -0.10321763902902603, -0.15337219834327698, 0.207675039768219, 0.07987035810947418, -0.21340401470661163, -0.04616847261786461, 0.048043087124824524, 0.1953362077474594, 0.19283322989940643, 0.028333276510238647, 0.07641404122114182, -0.16272106766700745, 0.17285378277301788, -0.3193039298057556, 0.0043938192538917065, 0.16789942979812622, 0.019670942798256874, 0.0674012079834938, 0.08027011156082153, -0.3042387068271637, -0.0015533885452896357, 0.12482261657714844, -0.18852797150611877, 0.08565708994865417, 0.06763390451669693, -0.11132191121578217, -0.009719493798911572, -0.06256203353404999, 0.23897454142570496, 0.15086044371128082, -0.11340426653623581, -0.11249294131994247, 0.22256407141685486, -0.16571034491062164, -0.04802017658948898, 0.06807678192853928, -0.0458039864897728, -0.18762558698654175, -0.257711261510849, -0.018215123564004898, 0.42284703254699707, 0.20814839005470276, -0.11113356053829193, 0.013357685878872871, -0.06710104644298553, -0.021984970197081566, 0.07177074253559113, 0.12348265200853348, -0.09147179871797562, -0.03642799332737923, -0.10378114134073257, -0.03189385309815407, 0.1995115429162979, 0.00122378533706069, 0.024635648354887962, 0.27922484278678894, 0.009661662392318249, 0.07226215302944183, 0.011704248376190662, 0.06345584988594055, -0.2119770050048828, -0.04815387725830078, -0.1185002475976944, -0.13264347612857819, -0.0013101145159453154, -0.09946102648973465, 0.07195325940847397, 0.13433420658111572, -0.2062447965145111, 0.07385305315256119, -0.06799472123384476, -0.003657970344647765, 0.003987991251051426, -0.0006922220345586538, -0.1092330738902092, -0.011794531717896461, 0.1370696872472763, -0.2321443259716034, 0.20612561702728271, 0.16777613759040833, 0.07859014719724655, 0.15916258096694946, 0.13327261805534363, 0.05594336986541748, 0.024597758427262306, -0.12717200815677643, -0.10910283029079437, -0.06606101989746094, 0.029827114194631577, -0.04049636423587799, 0.00023368789697997272, 0.030441373586654663]], "landmarks": [{"chin": [[-1.0829191929758404, -0.8191631234487293], [-1.1642224746067165, -0.4862910434244752], [-1.171193757086254, -0.08741794864208262], [-1.07073832651539, 0.3348999843662603], [-0.9487221881184511, 0.7575947434545781], [-0.7735579323162739, 1.2243529833949842], [-0.5983936765140966, 1.69111122333539], [-0.34625963900075585, 2.0729455232514074], [0.04978726018182419, 2.2416221144265096], [0.5793434932005809, 2.175391875994633], [1.1446322226782255, 1.9156805062480429], [1.6253738382114566, 1.5574386469642132], [2.021003100680312, 1.1330073598822576], [2.2995557744256527, 0.6202606980561388], [2.427183493388467, 0.10487625367019465], [2.4799139740799805, -0.44416814373477487], [2.511460573025393, -1.0151500750457945]], "left_eyebrow": [[-1.093740357522628, -1.4340201225718499], [-0.9842411010323643, -1.5291591773893134], [-0.8333161462498372, -1.5265213948294885], [-0.6831448436272602, -1.4807621966175128], [-0.5558531401106712, -1.359917347094249]], "right_eyebrow": [[-0.047857614917989746, -1.4265244116060996], [0.3103434337320898, -1.5604513821560013], [0.6889747119683196, -1.629319403147702], [1.0878478067507122, -1.6223481206681645], [1.49542871200628, -1.4966045321052257]], "nose_bridge": [[-0.30240021131741796, -1.053545524569495], [-0.4043221355744317, -0.7749520401904039], [-0.5168360007044956, -0.507327322764338], [-0.6297266919145346, -0.21814189751219681]], "nose_tip": [[-0.7199261970585732, 0.006738230341693557], [-0.591880841382034, 0.08446166421280703], [-0.4201488309333819, 0.13059768850475761], [-0.21381480226576677, 0.04793470496021905], [-0.007669186638139164, -0.023947924671281873]], "left_eye": [[-0.9174456234805257, -1.0319440061096696], [-0.8075695409102869, -1.1486437687532087], [-0.6244919374286345, -1.1346603931603834], [-0.4431100513068698, -1.0236538323502196], [-0.6165377791154094, -0.9727666714248314], [-0.7999922086770368, -0.9651893391915813]], "right_eye": [[0.3988880321499909, -1.0736397387094203], [0.5632311234053805, -1.2217384978921346], [0.8011525616521586, -1.26071482666456], [1.037001456459074, -1.1811072623935717], [0.8412593686645091, -1.0874755118960082], [0.6035263434577185, -1.0592795370366204]], "top_lip": [[-0.6990783307586979, 0.6649050581569519], [-0.6953100699589478, 0.4492979798961992], [-0.5105367491174081, 0.3662581702716856], [-0.3495850925817935, 0.4122057815236487], [-0.11166365433501546, 0.37322945275122316], [0.318420023946565, 0.44544809782894906], [0.7468079848682581, 0.6146899281240138], [0.6062865579187936, 0.6338012664302516], [-0.07099160820270245, 0.5141277057806624], [-0.308724633409493, 0.5423236806400503], [-0.47042994210505756, 0.5394974850402379], [-0.6128354994543967, 0.666412362476852]], "bottom_lip": [[0.7468079848682581, 0.6146899281240138], [0.4048920789246036, 1.0508436343189442], [0.03496861116154894, 1.2384839613940468], [-0.21354476795827923, 1.2664915232134473], [-0.396433958399944, 1.2417277937075843], [-0.6196183688939468, 1.0545051033462067], [-0.6990783307586979, 0.6649050581569519], [-0.6128354994543967, 0.666412362476852], [-0.4236878680593944, 0.9500929989356056], [-0.25176744457075473, 0.9854486693145186], [-0.014222832403951696, 0.9680330483681683], [0.6062865579187936, 0.6338012664302516]], "transform": {"center": [197.75, 374.2083333333333], "scale": 92.7471688322015, "angle": -0.017475665524455678}}]},
{"url": "zf3.jpg", "embedding": [[-0.07921107113361359, 0.07735803723335266, 0.1767520308494568, -0.06353448331356049, -0.11452329903841019, 0.0821194127202034, -0.10087238252162933, -0.10780004411935806, 0.0977521762251854, -0.17093874514102936, 0.2649880349636078, 0.015722449868917465, -0.22451496124267578, 0.005196363665163517, 0.05422769486904144, 0.12159890681505203, -0.2022976577281952, -0.14377033710479736, -0.05215210095047951, -0.025334233418107033, -0.010693546384572983, 0.016265084967017174, -0.027413899078965187, -0.005305384285748005, -0.17232447862625122, -0.32429239153862, -0.09697334468364716, -0.07578979432582855, 0.06021399423480034, -0.10866009443998337, -0.10512851178646088, -0.07638728618621826, -0.14318379759788513, 0.03784867748618126, 0.016566263511776924, 0.03202837333083153, -0.07946588844060898, -0.09362637996673584, 0.15327776968479156, -0.023398803547024727, -0.19742228090763092, 0.005886244587600231, -0.0013323499588295817, 0.1907399743795395, 0.22112686932086945, 0.025371991097927094, 0.014382061548531055, -0.04565450921654701, 0.1382615864276886, -0.2729008197784424, 0.13046884536743164, 0.13816389441490173, 0.13447143137454987, 0.11002318561077118, 0.07069823890924454, -0.15846335887908936, -0.0030209014657884836, 0.20786289870738983, -0.1556147336959839, 0.14259155094623566, 0.06458484381437302, -0.12775568664073944, 0.029484178870916367, -0.0056179543025791645, 0.1919127255678177, 0.14977923035621643, -0.14271651208400726, -0.18111391365528107, 0.15407977998256683, -0.12342175096273422, -0.10708770900964737, 0.013894959352910519, -0.13015469908714294, -0.18762817978858948, -0.2696901559829712, 0.020562438294291496, 0.3612422049045563, 0.14109978079795837, -0.2854044735431671, -0.04162340611219406, -0.01796240732073784, -0.025411736220121384, 0.0935492068529129, 0.15233558416366577, -0.01750543713569641, -0.08591155707836151, -0.07528988271951675, -0.01969391293823719, 0.22670447826385498, -0.006202824879437685, -0.001604153891094029, 0.2437378168106079, -0.011687823571264744, 0.0054296585731208324, 0.0587664358317852, 0.0932362899184227, -0.0914669781923294, -0.036307577043771744, -0.07682262361049652, -0.014047553762793541, -0.04004000872373581, -0.06950286775827408, -0.05427538976073265, 0.17149505019187927, -0.18471692502498627, 0.2708659768104553, -0.034380555152893066, 0.020373880863189697, 0.0157488863915205, -0.017669588327407837, -0.01660582609474659, -0.034597914665937424, 0.14304111897945404, -0.2944466471672058, 0.1864541620016098, 0.22630250453948975, 0.0503125935792923, 0.13965874910354614, -0.005866889841854572, 0.050822507590055466, 0.030995745211839676, 0.005590344779193401, -0.2196727693080902, -0.10384264588356018, -0.015008930116891861, -0.08979536592960358, -0.007742105983197689, 0.05941212922334671]], "landmarks": [{"chin": [[-2.4682520602549536, -0.8245370867170415], [-2.513009315634803, -0.2755338077919333], [-2.473467990298185, 0.3161017179768935], [-2.3069958374013804, 0.8660709098729708], [-2.0132064917560015, 1.2898820045856363], [-1.5500472543009112, 1.629974066364415], [-1.0444489525962966, 1.9280134290820568], [-0.538464285703294, 2.1415610284890367], [-0.07414595268304133, 2.2281778003358297], [0.30664652999751835, 2.103178798717581], [0.5194213990277231, 1.7661776584459026], [0.6903367515909845, 1.3444915722693682], [0.8190062224989149, 0.9226123034986401], [0.9054298117515145, 0.5005398521337183], [0.9918534010041139, 0.07846740076879653], [0.9937852269460515, -0.34399141578451276], [0.9110321069831336, -0.7245907158708788]], "left_eyebrow": [[-1.324522334053918, -1.4952552631591047], [-1.0274488843072453, -1.7896241565870652], [-0.6890954658762102, -1.872570459144177], [-0.3088825309782319, -1.870831815796433], [0.0285049744818343, -1.74254871007689]], "right_eyebrow": [[0.4081383615972314, -1.6140724217631535], [0.6197541350622736, -1.6975982721028462], [0.7887376616835974, -1.6968255417260711], [0.9571416405223399, -1.5693151663833036], [0.9986147918008956, -1.400138457167786]], "nose_bridge": [[0.279468890689301, -1.1921931529924252], [0.40504744009013116, -0.9381383152778586], [0.5304328068967676, -0.6418375959079606], [0.6137654746422669, -0.38797594078758757]], "nose_tip": [[0.02058448811989, -0.010467562208321875], [0.23162071380235089, 0.03274423241797787], [0.4004110578294809, 0.07576284445008385], [0.5271487027954737, 0.07634239223266513], [0.6118336487003293, 0.034482875765721746]], "left_eye": [[-0.9034157956599651, -1.1976022656298506], [-0.6493609579453982, -1.323180815030681], [-0.4381315496687436, -1.3222149020597123], [-0.31216663507952586, -1.152651827655807], [-0.43909746263971244, -1.1109854937830574], [-0.650326870916367, -1.1119514067540262]], "right_eye": [[0.3633811062173815, -1.065069142838045], [0.5329441806212866, -1.1910340574272626], [0.7017345246484166, -1.1480154453951568], [0.7432076759269725, -0.9788387361796393], [0.7007686116774478, -0.9367860371185023], [0.5319782676503177, -0.9798046491506082]], "top_lip": [[-0.447597496784238, 0.7478332990515034], [-0.10866453057062173, 0.5381493515283989], [0.22949570526621949, 0.49744893062661816], [0.35604016763801855, 0.5402743600645303], [0.48297099519820513, 0.49860802619178074], [0.5668832107262857, 0.625732036346161], [0.5236714160999859, 0.8367682620286219], [0.439179652789324, 0.8363818968402343], [0.43956601797771155, 0.7518901335295725], [0.31302155560591255, 0.7090647040916602], [0.18628391063991973, 0.7084851563090789], [-0.32085985181824517, 0.7484128468340847]], "bottom_lip": [[0.5236714160999859, 0.8367682620286219], [0.48084598666207373, 0.9633127244004209], [0.35391515910188714, 1.0049790582731706], [0.22717751413589432, 1.0043995104905892], [0.05838717010876438, 0.9613808984584833], [-0.1947017546348337, 0.8757300395826588], [-0.447597496784238, 0.7478332990515034], [-0.32085985181824517, 0.7484128468340847], [0.14384484639039505, 0.7505378553702161], [0.2705824913563879, 0.7511174031527974], [0.39732013632238067, 0.7516969509353787], [0.439179652789324, 0.8363818968402343]], "transform": {"center": [186.51388888888889, 113.25], "scale": 23.670698909891023, "angle": -0.004572782958186344}}]},
{"url": "zf4.jpg", "embedding": [[-0.11013193428516388, 0.05327313393354416, 0.10858355462551117, 0.0009987405501306057, -0.10498835891485214, 0.03580894693732262, -0.006391502451151609, -0.04158114269375801, 0.0936577320098877, -0.10176370292901993, 0.1723056584596634, -0.08203305304050446, -0.24892304837703705, 0.0379912443459034, -0.01353846862912178, 0.08105554431676865, -0.19768016040325165, -0.03938496112823486, -0.045415669679641724, -0.1415276974439621, 0.07572221755981445, 0.15787886083126068, -0.028574831783771515, 0.043599970638751984, -0.1932590752840042, -0.2931131422519684, -0.07447833567857742, -0.03659387677907944, 0.0009643956436775625, -0.07390892505645752, -0.014478673227131367, 0.08569297194480896, -0.16829542815685272, -0.01933370530605316, 0.03684006631374359, 0.08439534902572632, -0.02971385233104229, -0.08147220313549042, 0.10832529515028, 0.05752357095479965, -0.07475607842206955, 0.08833243697881699, -0.01923329569399357, 0.32875409722328186, 0.1463032364845276, 0.08288730680942535, -0.06130652874708176, -0.06376148760318756, 0.17328715324401855, -0.3368707299232483, 0.08704391866922379, 0.13607747852802277, 0.061868757009506226, 0.03426649421453476, 0.043499283492565155, -0.16423144936561584, -0.009694109670817852, 0.12574446201324463, -0.1853322684764862, 0.10915122181177139, 0.04833285138010979, -0.1254536211490631, 0.09102995693683624, -0.0810241848230362, 0.11276547610759735, 0.054323624819517136, -0.10737074911594391, -0.08370515704154968, 0.06358586996793747, -0.10653341561555862, -0.022491319105029106, 0.07705256342887878, -0.08968642354011536, -0.23032830655574799, -0.2470766305923462, 0.1540694236755371, 0.4393426179885864, 0.17628416419029236, -0.15154127776622772, -0.029133625328540802, -0.03889203071594238, -0.004284118302166462, 0.1362549215555191, 0.079997718334198, -0.04388786479830742, -0.10507671535015106, -0.11293672025203705, 0.13518008589744568, 0.2160927653312683, -0.037312790751457214, -0.10605869442224503, 0.30332446098327637, 0.005441466812044382, 0.04406747967004776, 0.012020875699818134, 0.021536273881793022, -0.13924388587474823, 0.039166275411844254, -0.09048096090555191, 0.03520342707633972, 0.06345776468515396, -0.04892430081963539, -0.009196323342621326, 0.1191922128200531, -0.15583385527133942, 0.2110370546579361, -0.042427532374858856, -0.06414661556482315, -0.02883314900100231, -0.11506439745426178, -0.18260428309440613, 0.09308551996946335, 0.1619633287191391, -0.31065887212753296, 0.14659100770950317, 0.14991764724254608, 0.07127086818218231, 0.23585712909698486, 0.04326576739549637, -0.017579741775989532, 0.039214376360177994, -0.04998786747455597, -0.17209592461585999, -0.0848701223731041, 0.1522631049156189, -0.007264124229550362, 0.05743415653705597, 0.0072402688674628735]], "landmarks": [{"chin": [[-1.814327279829908, -0.905603455782639], [-1.7961735123735698, -0.4167957412512707], [-1.7475174990029978, 0.07278375318371619], [-1.637856993803957, 0.5639068074259401], [-1.4664202168728289, 1.0260711755611667], [-1.2332071682096135, 1.4592768575893962], [-0.8764415760822237, 1.834565167403631], [-0.48685839832974387, 2.119118519378781], [-0.00036602350923109483, 2.1924714896651465], [0.4289807590009056, 2.111769670573103], [0.8332277549221377, 1.8167803501778004], [1.1787855987257565, 1.4287407322325576], [1.4343802645939097, 0.9773812827479904], [1.5679659468051252, 0.5229347136489492], [1.6413189170914906, 0.036442338828436435], [1.6841696414636214, -0.45082181589569487], [1.6957463400178996, -0.9083555046092102]], "left_eyebrow": [[-1.404677824583346, -1.4141084975775822], [-1.2147183299653728, -1.6839980313839802], [-0.8753347253907021, -1.828019682015348], [-0.5413535801413614, -1.7585256112470755], [-0.20968777460287602, -1.5975248027360998]], "right_eyebrow": [[0.2783481600248738, -1.585176324278203], [0.5574990526746944, -1.7612437806310426], [0.8937955376348908, -1.7832564476054729], [1.1965026570663788, -1.6840319108265844], [1.372570113419218, -1.404881018176764]], "nose_bridge": [[0.024297053963957878, -1.1948213666221046], [0.01812281473500958, -0.9508033993082299], [0.011176795602442738, -0.6762831860801206], [0.03473302238411026, -0.4009911929483928]], "nose_tip": [[-0.27877901569803726, -0.07318428692800018], [-0.12781134593410254, -0.00832089558143876], [0.02392810373345073, 0.02604024985088829], [0.1772111132082411, -0.0006030965452533807], [0.33126590258665, -0.05774868885562943]], "left_eye": [[-1.0479122324559558, -1.0388201877633476], [-0.8610398574524571, -1.1867007379128078], [-0.6170218901385823, -1.1805264986838595], [-0.4065932883534159, -1.0531150557015927], [-0.6216525695602936, -0.9975130231984535], [-0.8664423167777869, -0.9731850165131675]], "right_eye": [[0.4482413771487648, -1.0620074643145079], [0.6351137521522636, -1.209888014463968], [0.8791317194661386, -1.2037137752350198], [1.0590580753370704, -1.0770741121563714], [0.8737292601408088, -0.9901980538353797], [0.6602135387411683, -0.9956005131607094]], "top_lip": [[-0.5749090662274656, 0.7739325795379952], [-0.41390825771648987, 0.4422667739995098], [-0.16603139088452226, 0.29592978365728634], [0.015438524793646814, 0.36156495490746626], [0.19999556008629008, 0.3051911425007088], [0.44015462788207227, 0.46387661130082886], [0.6154503043312931, 0.7735297498648839], [0.49344132067435564, 0.7704426302504097], [0.1945931007609603, 0.5187068639003494], [0.011579625275554123, 0.5140761844786381], [-0.17143385020985202, 0.5094455050569269], [-0.4834023284847625, 0.7762479192488508]], "bottom_lip": [[0.6154503043312931, 0.7735297498648839], [0.45290593601308027, 1.1662000472318377], [0.20425728927749415, 1.3430392834882956], [-0.010030212025764939, 1.3681390700772003], [-0.22354593342540546, 1.3627366107518704], [-0.4324309754033348, 1.1743206759411347], [-0.5749090662274656, 0.7739325795379952], [-0.4834023284847625, 0.7762479192488508], [-0.18609766837860425, 1.0889881774273797], [-0.0038559727968166327, 1.1241211027633253], [0.17992928259220808, 1.098249536270802], [0.49344132067435564, 0.7704426302504097]], "transform": {"center": [240.19444444444446, 202.16666666666666], "scale": 32.77398165400094, "angle": -0.025296998401425515}}]},
{"url": "zf5.jpg", "embedding": [[-0.20131364464759827, 0.05936947837471962, 0.09088511019945145, -0.04060444235801697, -0.1882985532283783, 0.00686960993334651, 0.04551496356725693, -0.09025704115629196, 0.14716346561908722, -0.07208497822284698, 0.23096023499965668, -0.0629410520195961, -0.2743837237358093, -0.040603477507829666, 0.01970217190682888, 0.16889172792434692, -0.1098112165927887, -0.1720275729894638, -0.12784388661384583, -0.07370124757289886, 0.007246419787406921, -0.03044023923575878, -0.08905479311943054, 0.03521975874900818, -0.11895143985748291, -0.32761555910110474, -0.01290927641093731, -0.05534116551280022, 0.06951641291379929, -0.054855767637491226, -0.001578491646796465, 0.0826558917760849, -0.14305731654167175, -0.12568695843219757, 0.03997732326388359, 0.12587891519069672, -0.039318013936281204, -0.10417717695236206, 0.22269132733345032, -0.10820426046848297, -0.20430251955986023, 0.03588123992085457, 0.07543434947729111, 0.28983500599861145, 0.1355476826429367, 0.010360478423535824, 0.05835920199751854, -0.04059404134750366, 0.14163504540920258, -0.3369271457195282, 0.05064712092280388, 0.08377343416213989, 0.1922510266304016, 0.054102227091789246, 0.06943872570991516, -0.2398160696029663, 0.019568661227822304, 0.16261644661426544, -0.2344496250152588, 0.1279933899641037, 0.03709248825907707, -0.19397296011447906, 0.0006383864092640579, -0.11688889563083649, 0.22917699813842773, 0.08662261068820953, -0.11461322009563446, -0.04903688654303551, 0.2008305937051773, -0.06453575193881989, -0.029980691149830818, -0.01103608775883913, -0.126756951212883, -0.18580542504787445, -0.366514652967453, 0.09103535115718842, 0.4480101466178894, 0.17348884046077728, -0.22494877874851227, 0.011229013092815876, -0.021113736554980278, 0.030680907890200615, -0.0053703272715210915, 0.09829337149858475, -0.08805914968252182, -0.08617661148309708, -0.09177104383707047, 0.051684897392988205, 0.194881871342659, -0.01645508036017418, -0.015117599628865719, 0.21691273152828217, 0.06748577207326889, -0.018353581428527832, -0.0014051914913579822, 0.07239376753568649, -0.0854603722691536, -0.053584977984428406, -0.08381251245737076, 0.022796278819441795, 0.09427710622549057, -0.1314355581998825, 0.1037285104393959, 0.13215185701847076, -0.2539849281311035, 0.1642611175775528, -0.0412420853972435, 0.02275904454290867, -0.0064256456680595875, -0.0033274285960942507, -0.0022395343985408545, 0.03794776648283005, 0.16236869990825653, -0.2529130280017853, 0.2064165621995926, 0.2388133406639099, 0.03133615106344223, 0.2099645435810089, 0.048761069774627686, -0.0032735446002334356, 0.0560327023267746, 0.00783898588269949, -0.1418556123971939, -0.1121395081281662, 0.05387745052576065, -0.03932281583547592, 0.07757316529750824, 0.17751337587833405]], "landmarks": [{"chin": [[-1.8428359623727402, -1.0432614318111502], [-1.8135092741228704, -0.5273833106470044], [-1.7022135269230168, -0.04308929561854477], [-1.6300222245302933, 0.4374445500741925], [-1.475861863187586, 0.8863942896312438], [-1.1968678287520418, 1.2684156475812005], [-0.835904735366513, 1.6188528993954716], [-0.47118147264526183, 1.930185706402612], [-0.0056883042954143925, 2.014412183238412], [0.435741096590192, 1.9384607115099663], [0.8531067300115573, 1.702331291217275], [1.2426484266329594, 1.3451283671674688], [1.59308567844723, 0.9841652737819402], [1.794625489704423, 0.52995261343926], [1.9254767500187986, -0.009989275189126512], [1.9743589513831903, -0.5183470576818272], [2.023241152747582, -1.026704840174528]], "left_eyebrow": [[-1.64505632045127, -1.4583696473466992], [-1.3878686355941507, -1.6704353001751495], [-1.0712729078013816, -1.6794583902965008], [-0.7621975186800576, -1.6102725908035904], [-0.4606424682301782, -1.4628779016964184]], "right_eyebrow": [[0.3289667665838831, -1.4658834045962312], [0.6568430023838194, -1.5922198291389749], [0.977198899512311, -1.640347364067457], [1.3291389027764884, -1.6065058400459549], [1.5878293390835145, -1.4237668754673747]], "nose_bridge": [[-0.06433509937324118, -1.0695760357392943], [-0.05907217858761235, -0.7138758631393942], [-0.05004908846626109, -0.3972801353466252], [-0.0485463370163547, -0.0024755179395945914]], "nose_tip": [[-0.4583916317662751, 0.15544501273883507], [-0.22752513225921264, 0.21711047356030055], [-0.03576307755928099, 0.2750157650460436], [0.16727948514781799, 0.21560772211039417], [0.370322047854917, 0.15619967917474475]], "left_eye": [[-1.2096445067872021, -1.0613076120538525], [-0.9990816054086584, -1.1989245446037635], [-0.7644549365658735, -1.176363528589429], [-0.541108775730256, -1.0364891781537018], [-0.7441513384373549, -0.9770811352180524], [-1.0178824520872707, -1.0034023205681095]], "right_eye": [[0.4831271279265903, -1.01693366503918], [0.7327944741122651, -1.1507904282533685], [0.96742114295505, -1.128229412239034], [1.19452747312639, -1.0274595066104377], [0.9877247410835684, -0.9289470188676573], [0.7530980722407835, -0.951508034881992]], "top_lip": [[-0.7810049467805826, 0.6374816098814786], [-0.4606490496520912, 0.5893540749529966], [-0.22226221147358383, 0.5728106461602005], [0.01236445736920111, 0.5953716621745351], [0.21164685074057765, 0.5750680640460164], [0.48537796439049347, 0.6013892493960735], [0.7944533535118176, 0.670575048888984], [0.6733798497547026, 0.6983989856889474], [0.19660617339768788, 0.7314858432745397], [-0.002676219973688665, 0.7517894414030583], [-0.19819844400934278, 0.7329885947244461], [-0.6674517816949126, 0.6878665626957767]], "bottom_lip": [[0.7944533535118176, 0.670575048888984], [0.5335054993189756, 0.9217451465245651], [0.24473370832616997, 1.0518417404030314], [0.006346870147662623, 1.0683851691958273], [-0.2282797986951223, 1.0458241531814927], [-0.4944905736735932, 0.9412940782171739], [-0.7810049467805826, 0.6374816098814786], [-0.6674517816949126, 0.6878665626957767], [-0.2019586133450652, 0.7720930395315769], [-0.010196558645133552, 0.82999833101732], [0.23195044886909627, 0.774350457417393], [0.6733798497547026, 0.6983989856889474]], "transform": {"center": [149.23611111111111, 152.94444444444446], "scale": 25.455129897867028, "angle": -0.09586235406808996}}]},
{"url": "zf6.jpg", "embedding": [[-0.16105133295059204, 0.07810831815004349, 0.06067556142807007, -0.03956357762217522, -0.14932067692279816, -0.008843033574521542, -0.06061454862356186, -0.15469686686992645, 0.08598078787326813, -0.1153303012251854, 0.058907441794872284, -0.024039579555392265, -0.2056937962770462, -0.004248390439897776, 0.06253226846456528, 0.16037282347679138, -0.17553304135799408, -0.1552194207906723, -0.10875444114208221, -0.1000686064362526, -0.009104538708925247, 0.14495885372161865, 0.05042490363121033, 0.06597471982240677, -0.0939977690577507, -0.37139225006103516, -0.06339956820011139, -0.06537261605262756, 0.12646803259849548, -0.0028855446726083755, -0.03758063539862633, 0.04818151146173477, -0.16085763275623322, 0.030745748430490494, 0.09527700394392014, 0.1117364913225174, -0.07401245087385178, -0.07383070886135101, 0.19296880066394806, 0.0148265790194273, -0.2430962175130844, -0.02912863716483116, 0.0756840929389, 0.20109818875789642, 0.23883667588233948, -0.007967362180352211, 0.02901465818285942, -0.018140582367777824, 0.1298723965883255, -0.2645343840122223, 0.06586824357509613, 0.13202112913131714, 0.035209886729717255, 0.020882563665509224, 0.14285773038864136, -0.12237390875816345, -0.02191118150949478, 0.17919579148292542, -0.15830634534358978, 0.03427809849381447, 0.1019950732588768, -0.13631097972393036, -0.046602413058280945, -0.022580264136195183, 0.16654007136821747, 0.10685133188962936, -0.059602923691272736, -0.1922634094953537, 0.24152377247810364, -0.16960233449935913, -0.08326301723718643, 0.08322878926992416, -0.0549553781747818, -0.06598921865224838, -0.23189036548137665, -0.022799037396907806, 0.4490314722061157, 0.11706673353910446, -0.12122363597154617, 0.024574296548962593, -0.05327368155121803, -0.035297174006700516, 0.05921806022524834, 0.030370546504855156, -0.08329463005065918, -0.10750877112150192, -0.09530513733625412, 0.002655302407220006, 0.2208372950553894, 0.05483115464448929, 0.021270999684929848, 0.1957494616508484, 0.06248744949698448, -0.017413776367902756, 0.06123549863696098, 0.047780733555555344, -0.1309584230184555, -0.09027495235204697, -0.12951694428920746, -0.11400870978832245, 0.0014145937748253345, -0.07705121487379074, 0.017670344561338425, 0.19595764577388763, -0.21515055000782013, 0.23945081233978271, -0.035773202776908875, -0.02552422322332859, 0.025862054899334908, 0.043840378522872925, -0.05004062503576279, 0.00882992148399353, 0.10236059874296188, -0.222713902592659, 0.12211187183856964, 0.14939473569393158, 0.007262310944497585, 0.12088796496391296, -0.01515705231577158, 0.053804293274879456, -0.020923512056469917, -0.02733146958053112, -0.21368156373500824, -0.15853163599967957, 0.05416406691074371, -0.0449119471013546, -0.028439747169613838, 0.07998683303594589]], "landmarks": [{"chin": [[-1.6082660609363169, -1.0557917398467036], [-1.5794587189526283, -0.5997669705905667], [-1.5506513769689398, -0.1437422013344299], [-1.4923038382454126, 0.32077497090138596], [-1.3748759060422078, 0.8022769490965596], [-1.1813827743999679, 1.2416833397714138], [-0.9118244433186926, 1.6389941429259482], [-0.5281683130788642, 1.9731615648000034], [-0.055525165241444574, 2.1090400124748667], [0.4976125972138874, 2.076169682690376], [0.9540037938480992, 1.8235961575684583], [1.3598069999823128, 1.5244976297473445], [1.710959227815726, 1.0817611060278387], [1.8933626781897854, 0.5585299676904206], [2.0166857350841676, 0.01831402339364452], [2.0724359955191933, -0.5093465301226509], [2.128186255954219, -1.0370070836389458]], "left_eyebrow": [[-1.4262290379403322, -1.3552566950458926], [-1.248621430123225, -1.5280684603060481], [-0.9993780380459589, -1.6163226231474892], [-0.6784988617085349, -1.620019183570216], [-0.42112949402966543, -1.5140473600132667]], "right_eyebrow": [[0.19108866190534401, -1.5299328838383994], [0.5248896564013241, -1.6898228309399987], [0.8753090294785869, -1.6850269883830467], [1.200251193616813, -1.5916105556065783], [1.4701759520761635, -1.4180659355902727]], "nose_bridge": [[-0.1345863569890322, -1.1758169503384097], [-0.14787460252566328, -0.7958573805213082], [-0.1822106418224541, -0.45393041042372434], [-0.22503908409892395, -0.08246324358630172]], "nose_tip": [[-0.5123150758957074, 0.026838713015299137], [-0.3520587014160329, 0.13687352437305023], [-0.15376972721684073, 0.22586054197064154], [0.09547366486042502, 0.13760637912920046], [0.34471705693769084, 0.04935221628775938]], "left_eye": [[-1.148178303879378, -0.9874860886311969], [-1.0130327109606652, -1.0125968701921586], [-0.810314321582596, -1.0502630425336013], [-0.5570079417045284, -1.041404212175847], [-0.7682187340622766, -0.9741978430945659], [-0.9624447204606668, -0.966071867492962]], "right_eye": [[0.4647099807874213, -1.0355090874846697], [0.6293957704459727, -1.0521274660659523], [0.823621756844363, -1.0602534416675562], [1.0769281367224306, -1.0513946113098023], [0.8742097473443615, -1.0137284389683598], [0.6714913579662924, -0.9760622666269172]], "top_lip": [[-0.7582283349283214, 0.6597382353323933], [-0.5721283241315351, 0.45738627333239923], [-0.3018371382941095, 0.40716471021047584], [-0.05702316139572075, 0.44556373730806853], [0.20477562146202588, 0.42488237092598385], [0.6057829850392872, 0.47620321618213257], [0.8967555372587975, 0.6877804359179559], [0.7996425440596022, 0.6918434237187577], [0.2298864030229876, 0.5600279638446967], [-0.031912379834759044, 0.5807093302267814], [-0.27672635673314777, 0.5423103031291886], [-0.6611153417291263, 0.6556752475315913]], "bottom_lip": [[0.8967555372587975, 0.6877804359179559], [0.6301609118440987, 1.0588811753773033], [0.2372795238684412, 1.2017863165195448], [-0.02451925898930546, 1.2224676829016294], [-0.29887343262753296, 1.1755762528243578], [-0.5687981910868833, 1.0020316328080523], [-0.7582283349283214, 0.6597382353323933], [-0.6611153417291263, 0.6556752475315913], [-0.32804720198929654, 0.9433176667064499], [-0.05369302835106904, 0.9902090967837216], [0.19961335152699866, 0.9990679271414756], [0.7996425440596022, 0.6918434237187577]], "transform": {"center": [175.77777777777777, 213.55555555555554], "scale": 32.53440723789182, "angle": -0.279937203362372}}]},
{"url": "zf7.jpg", "embedding": [[-0.13739439845085144, -0.016666216775774956, 0.05461326241493225, -0.0880996361374855, -0.1840890645980835, -0.11899878084659576, -0.009216911159455776, -0.037413328886032104, 0.09800441563129425, -0.07643654942512512, 0.19362908601760864, -0.026526281610131264, -0.2317740023136139, 0.07091377675533295, 0.006916222162544727, 0.07546105235815048, -0.2340412586927414, -0.07467886060476303, -0.13057813048362732, -0.14852087199687958, 0.030752168968319893, 0.021548740565776825, -0.060411009937524796, 0.09250356256961823, -0.18739408254623413, -0.21177178621292114, -0.10285500437021255, -0.0971154123544693, 0.12088365852832794, -0.0944705680012703, 0.12431768327951431, 0.02408108301460743, -0.0925910547375679, -0.016270382329821587, 0.07277397811412811, 0.0813882052898407, -0.03143288567662239, -0.0754464715719223, 0.26531457901000977, -0.031407251954078674, -0.1359742283821106, 0.05245889723300934, 0.07465403527021408, 0.27012500166893005, 0.13867980241775513, 0.08437689393758774, 0.06845713406801224, -0.0694337785243988, 0.15028221905231476, -0.28938207030296326, 0.08282405883073807, 0.1443113088607788, 0.09315034002065659, 0.06645406037569046, 0.0942920669913292, -0.23964987695217133, 0.0784948542714119, 0.1970251500606537, -0.1998029202222824, 0.18876829743385315, 0.09417939186096191, -0.11211564391851425, 0.007916021160781384, -0.010004323907196522, 0.18416385352611542, 0.020156918093562126, -0.13666249811649323, -0.12028694897890091, 0.17083708941936493, -0.23022012412548065, -0.09354647994041443, 0.11923149228096008, -0.09759131819009781, -0.14198845624923706, -0.30779170989990234, 0.01766343042254448, 0.4450496435165405, 0.15482178330421448, -0.14984609186649323, -0.007734033279120922, -0.027925565838813782, -0.04879098758101463, 0.047506749629974365, 0.0566161684691906, -0.16468992829322815, -0.10154207050800323, -0.11140564829111099, 0.06032194942235947, 0.2579552233219147, 0.044283945113420486, 0.025577610358595848, 0.24396787583827972, 0.12451839447021484, -0.0031451124232262373, 0.011943669989705086, -0.0034398415591567755, -0.1127360612154007, -0.1142939031124115, -0.025091253221035004, 0.010129779577255249, 0.08128832280635834, -0.14221259951591492, 0.01648121513426304, 0.11773411184549332, -0.2597055733203888, 0.2152719795703888, -0.06406483054161072, -0.07689973711967468, -0.09857165068387985, 0.04278232157230377, -0.11676749587059021, 0.04913926497101784, 0.2590560019016266, -0.25483644008636475, 0.1842585802078247, 0.2863462567329407, 0.12731876969337463, 0.10338334739208221, 0.04223807156085968, -0.012813459150493145, -0.015716353431344032, 0.012616978026926517, -0.14828231930732727, -0.07321517169475555, -0.036879174411296844, -0.12732873857021332, 0.0725804939866066, 0.07133793085813522]], "landmarks": [{"chin": [[-2.1310576406752553, -0.6822012176821366], [-2.1095647010500187, -0.21760333073630062], [-2.067041533438837, 0.24506168495448158], [-1.9805250386007123, 0.724891186121101], [-1.790790275087918, 1.1740261030265071], [-1.4615754006937263, 1.525510009202759], [-0.992880415418137, 1.779342904649856], [-0.5089538159217639, 1.9681522448840656], [0.007368883271229865, 2.0479447026784445], [0.49106412694795665, 2.003488663812209], [0.8732426173854216, 1.7774920580926867], [1.2036962955757284, 1.4502100549535486], [1.4021699920852067, 1.071434595386899], [1.5107241628857448, 0.6372999368826301], [1.5982481057003386, 0.20509814963341488], [1.687704919769986, -0.20607340962985565], [1.7312355353576365, -0.6554396823549081]], "left_eyebrow": [[-1.6306606231619838, -1.2371813419762046], [-1.4034252136463463, -1.5337687608541293], [-1.017380980698774, -1.7177049106017623], [-0.6120080352006646, -1.6913387804899491], [-0.21800096141323128, -1.5578886391933586]], "right_eyebrow": [[0.3536809367173816, -1.5680157071079195], [0.7053961987132795, -1.6639652024016665], [1.0858731737153369, -1.6777266570066887], [1.4436184052960417, -1.4773200892421567], [1.6217559412785139, -1.1543665402524184]], "nose_bridge": [[0.06722058575401754, -1.2235692184929439], [0.09428078332476947, -0.9291460266897191], [0.11940810964046769, -0.6557530628724387], [0.14840117846627335, -0.340299643083269]], "nose_tip": [[-0.2661734116678123, -0.005286154923916035], [-0.09020010276004028, 0.06337178697943287], [0.10487056287862266, 0.10906662964178343], [0.24821641627012775, 0.05347607488451817], [0.3896293984065792, -0.023144707858691743]], "left_eye": [[-1.1868616083824461, -1.023476031245943], [-1.0111196552943205, -1.188083468443039], [-0.7377266914770402, -1.2132107947587372], [-0.511961441577164, -1.064297683421717], [-0.7355624644023403, -0.9589151876723474], [-1.0108882994746742, -0.9548180893425942]], "right_eye": [[0.4650934020515583, -1.0480586212244642], [0.7268891383385164, -1.1993673154558304], [1.006080715920958, -1.161403957813695], [1.168755281863, -1.0066922327115135], [0.9852818437546593, -0.9262057074581962], [0.7080231374272716, -0.9431388371143874]], "top_lip": [[-0.6478891904659848, 0.6872412089964959], [-0.3440329982071374, 0.5320667722550223], [-0.0974688761409628, 0.44578163323654385], [0.09760178949770013, 0.4914764758988944], [0.2639107421302036, 0.45498327787252013], [0.48194450700986485, 0.5197754772657617], [0.6886124001788501, 0.69165168784378], [0.6025586169800178, 0.6783529448780502], [0.25834348418468867, 0.625157973015131], [0.09010166029713146, 0.6406209430555607], [-0.10303613408647778, 0.6159563283791547], [-0.521707822550317, 0.6756439814661735]], "bottom_lip": [[0.6886124001788501, 0.69165168784378], [0.4899073478497259, 0.837161768309985], [0.2605077112593885, 0.8794535801015205], [0.09226588737183132, 0.8949165501419503], [-0.10087190701177788, 0.8702519354655441], [-0.36096612786332855, 0.8093254785824102], [-0.6478891904659848, 0.6872412089964959], [-0.521707822550317, 0.6756439814661735], [-0.09917039157637036, 0.658016784351044], [0.09396740280723886, 0.6826813990274501], [0.26027635543974237, 0.6461882010010757], [0.6025586169800178, 0.6783529448780502]], "transform": {"center": [210.52777777777777, 225.40277777777777], "scale": 47.35102837444277, "angle": 0.0916517006652088}}]},
{"url": "zf8.jpg", "embedding": [[-0.0999511256814003, 0.09488583356142044, 0.08640040457248688, -0.11586971580982208, -0.15607468783855438, -0.0149348434060812, -0.05830777436494827, -0.03150319308042526, 0.15922851860523224, -0.17385633289813995, 0.1517295092344284, -0.09287641942501068, -0.24960798025131226, 0.06501875072717667, -0.049971409142017365, 0.24239282310009003, -0.23157407343387604, -0.18450742959976196, -0.1323269009590149, -0.11162524670362473, 0.038858652114868164, 0.09301827102899551, -0.0016713313525542617, 0.15053623914718628, -0.1422865241765976, -0.41474106907844543, 0.004924418870359659, -0.0489940382540226, -0.0764431431889534, -0.12772852182388306, 0.05140141025185585, 0.07594646513462067, -0.1936589628458023, -0.02201630175113678, 0.022523390129208565, 0.11053904891014099, -0.09854084253311157, -0.11773737519979477, 0.26795101165771484, 0.06810466945171356, -0.31757935881614685, -0.04777165874838829, 0.17115367949008942, 0.31933069229125977, 0.20133739709854126, 0.020513787865638733, -0.034105412662029266, 0.02101188339293003, 0.18935678899288177, -0.39034318923950195, 0.07036951184272766, 0.15768681466579437, 0.0702681615948677, 0.06090927496552467, 0.15016573667526245, -0.11671172827482224, 0.01847083680331707, 0.15776470303535461, -0.1954217255115509, 0.020889325067400932, 0.058311715722084045, -0.15671804547309875, 0.009968153201043606, -0.11945287883281708, 0.2169225811958313, 0.06897810846567154, -0.0945352241396904, -0.10184738785028458, 0.19744916260242462, -0.15597262978553772, -0.09916631132364273, 0.10470984876155853, -0.052055202424526215, -0.18464113771915436, -0.3177894055843353, -0.02711075358092785, 0.3493773937225342, 0.172598734498024, -0.07439985126256943, 0.06422940641641617, 0.016953039914369583, -0.08634861558675766, -0.0168975368142128, 0.16373032331466675, -0.016415562480688095, 0.06982580572366714, -0.04100094363093376, 0.10385216027498245, 0.1832529455423355, 0.025598280131816864, -0.013472577556967735, 0.33529427647590637, 0.01396950427442789, -0.04520639404654503, 0.04545484483242035, 0.051093365997076035, -0.1749683916568756, -0.03353989124298096, -0.19996903836727142, -0.03739531710743904, 0.05683012306690216, 0.005752566736191511, -0.0035416604951024055, 0.08292659372091293, -0.2369646281003952, 0.15758371353149414, -0.08741297572851181, -0.03212778642773628, -0.039096932858228683, 0.01380302757024765, -0.11692246794700623, -0.04137236252427101, 0.15865729749202728, -0.23425282537937164, 0.049493856728076935, 0.16864997148513794, 0.017107559368014336, 0.13262616097927094, 0.08892002701759338, -0.028294924646615982, 0.04055752977728844, -0.10540859401226044, -0.2455243021249771, -0.09089398384094238, 0.10908553004264832, -0.04406805709004402, 0.06179772689938545, 0.07883096486330032], [-0.03691299259662628, 0.07353131473064423, 0.07191646844148636, -0.18144336342811584, -0.055548425763845444, 0.01626945659518242, -0.005293895024806261, -0.10737882554531097, 0.19922815263271332, -0.17996802926063538, 0.17207413911819458, -0.07411818951368332, -0.22885137796401978, -0.013426478020846844, -0.05219392850995064, 0.19470857083797455, -0.1734296679496765, -0.19799815118312836, -0.19253745675086975, 0.011204814538359642, -0.040153633803129196, 0.10181345045566559, -0.0010667622555047274, 0.09897351264953613, -0.1289202719926834, -0.33416056632995605, -0.023409148678183556, -0.07864948362112045, -0.02520565129816532, -0.08130963891744614, -0.026049204170703888, 0.045391928404569626, -0.1627052128314972, 0.010562656447291374, 0.026218688115477562, 0.08736284077167511, -0.048278771340847015, -0.08248733729124069, 0.1986425668001175, 0.03763351961970329, -0.313698410987854, -0.000921386294066906, 0.12646619975566864, 0.23133735358715057, 0.24148966372013092, -0.018033431842923164, -0.027525531128048897, -0.13375982642173767, 0.1235562190413475, -0.3065960705280304, 0.044890619814395905, 0.07374927401542664, 0.06316661834716797, 0.11643147468566895, 0.06195225194096565, -0.21164420247077942, 0.015979578718543053, 0.08700057864189148, -0.20517942309379578, -0.037031788378953934, 0.03588046506047249, -0.09253118187189102, -0.09302791953086853, -0.03941059857606888, 0.2163219153881073, 0.12475083768367767, -0.1622188538312912, -0.1472679227590561, 0.17523810267448425, -0.17243735492229462, -0.052870966494083405, 0.06062871590256691, -0.06174873560667038, -0.12082890421152115, -0.2517428398132324, -0.010131546296179295, 0.3720548152923584, 0.15921549499034882, -0.22672902047634125, 0.04991418868303299, -0.05575186014175415, -0.005248318891972303, 0.013454090803861618, 0.12411263585090637, -0.0851704478263855, 0.08278827369213104, -0.05194670334458351, 0.05828830972313881, 0.12371451407670975, -0.01183400396257639, 0.0065271370112895966, 0.20981961488723755, 0.023392783477902412, 0.004031294025480747, 0.0825188010931015, 0.08168956637382507, -0.17333894968032837, -0.0018116243882104754, -0.24342547357082367, -0.05772146210074425, 0.07915185391902924, 0.061961255967617035, 0.02839472144842148, 0.11247996985912323, -0.1586279422044754, 0.2998058795928955, 0.011483665555715561, -0.09589330106973648, 0.041469261050224304, 0.01427546702325344, 0.021432358771562576, -0.0403018556535244, 0.14155761897563934, -0.1842692643404007, 0.11706594377756119, 0.09065759181976318, 0.05949816480278969, 0.18029144406318665, 0.11097566783428192, 0.07198325544595718, -0.022224463522434235, 0.01610512286424637, -0.20592661201953888, -0.06930021196603775, 0.10081089287996292, -0.029067888855934143, 0.15444977581501007, 0.033506400883197784]], "landmarks": [{"chin": [[-1.7142740193534758, -1.0313367226056522], [-1.7152192601014529, -0.5815903465401293], [-1.6367604250438288, -0.14931427607066997], [-1.5230458985447515, 0.29185448732148406], [-1.3388199891627675, 0.7508086365590274], [-1.0574046181297931, 1.1217810973176008], [-0.7054778642139121, 1.5105389439215635], [-0.3799141088167896, 1.855148406161378], [0.03426149555795449, 1.9971164126751682], [0.5106859503915618, 1.8922945790987855], [0.9785327925518, 1.6728129782753485], [1.393653637674521, 1.3650346087236154], [1.773518791355789, 1.0483635462491876], [2.0301465651166337, 0.6256103292010745], [2.1635369589570543, 0.0967749575792759], [2.191160278473116, -0.45873849281060675], [2.2540392894306303, -1.0053592502777948]], "left_eyebrow": [[-1.651710088645287, -1.4280420213843326], [-1.4220754739018524, -1.5951127054195784], [-1.1222445565248371, -1.594482544920927], [-0.8401990249932112, -1.5233410015393691], [-0.5317904949428268, -1.4080510737936633]], "right_eyebrow": [[0.21778679849971164, -1.4064756725470349], [0.5442957946448111, -1.511612586372743], [0.9324234807501225, -1.563708422911609], [1.2938730880873497, -1.5100371851261147], [1.6197519237337978, -1.3153431815748078]], "nose_bridge": [[-0.14460804958549253, -1.010400534267006], [-0.19827928737098663, -0.6489509269297787], [-0.20780214079233272, -0.3138643181113102], [-0.22621768713637358, 0.05647798214861163]], "nose_tip": [[-0.5085782989173252, 0.13525189745556143], [-0.35008522755544846, 0.2502267449519416], [-0.14744377182942378, 0.3388385939295633], [0.06440545706862133, 0.24227929277722393], [0.26736199304397174, 0.18097568306633788]], "left_eye": [[-1.2467422574425633, -1.1009028647405816], [-1.0348930285445181, -1.197462165892921], [-0.779210495531651, -1.170469006875511], [-0.567991427132257, -0.9671973906508351], [-0.8325666530678194, -0.9589348582267916], [-1.0882491860806867, -0.9859280172442015]], "right_eye": [[0.4725240907646019, -0.9297361374641018], [0.6669030140665833, -1.1056995144220425], [0.9314782400021453, -1.1139620468460858], [1.1604826942469286, -0.9812018135043161], [0.9575261582715783, -0.9198982037934301], [0.7282066237774694, -0.902742978446692]], "top_lip": [[-0.7915690711969282, 0.5138567301395267], [-0.5886125352215777, 0.45255312042864054], [-0.3329300022087104, 0.47954627944605055], [-0.08614016211853773, 0.5417951299049136], [0.1520720652982659, 0.48938421311672226], [0.557670056999641, 0.516692452383458], [0.9632680487010161, 0.5440006916501935], [0.8749712799727202, 0.5967266886877105], [0.16064967797163496, 0.6040439803637768], [-0.06866985652247394, 0.6211992057105148], [-0.28020400517119337, 0.5678430481743464], [-0.6858019968725685, 0.540534808907611]], "bottom_lip": [[0.9632680487010161, 0.5440006916501935], [0.5830878147704224, 1.0105872128131288], [0.20353774133848013, 1.177342816599049], [-0.061037484597082, 1.1856053490230922], [-0.3167200176099494, 1.1586121900056825], [-0.5984504688922496, 0.9375551879356169], [-0.7915690711969282, 0.5138567301395267], [-0.6858019968725685, 0.540534808907611], [-0.33387524295668747, 0.9292926555115735], [-0.07819270994382008, 0.9562858145289834], [0.15112682455028886, 0.9391305891822453], [0.8749712799727202, 0.5967266886877105]], "transform": {"center": [145.65277777777777, 160.97222222222223], "scale": 27.502810953419036, "angle": -0.24708037957529794}}, {"chin": [[-1.8666453601063362, -1.2388305714788617], [-1.828729403465765, -0.7053388314383131], [-1.7233892739133434, -0.19038738686554385], [-1.6273192920948114, 0.2908519712512999], [-1.4545549896305392, 0.7872631203562896], [-1.1654826368103455, 1.1791695056138694], [-0.8426981975342265, 1.5618057431375594], [-0.4710298808140363, 1.858477512281619], [-0.010863956939594022, 1.9495082582104932], [0.4366633147213246, 1.8627084241258514], [0.9052640206246447, 1.588807862293803], [1.3123421968703703, 1.2230411888278692], [1.6334559047364656, 0.8083906379178638], [1.7919108235771903, 0.32968441857564207], [1.864401274038285, -0.1979056782106508], [1.9706038109553048, -0.7347659227308334], [2.000112027226584, -1.2867979582391618]], "left_eyebrow": [[-1.634029259394493, -1.4478400991736815], [-1.3584309244928345, -1.6324076881464653], [-1.002769764465802, -1.6576849925735129], [-0.6530102476930255, -1.5725558898988945], [-0.35213460836432, -1.401462318844646]], "right_eyebrow": [[0.2917635387778945, -1.4334766322309611], [0.6440561943252932, -1.6028724302155994], [0.9811770588845459, -1.6955739075544973], [1.355378514379358, -1.6534270390696941], [1.6469840059741738, -1.516045554471371]], "nose_bridge": [[-0.03862031682209063, -1.0525381677768813], [-0.037784951117078774, -0.6538947735600337], [-0.036949585412066874, -0.2552513793431861], [-0.036114219707055, 0.1433920148736615]], "nose_tip": [[-0.4069471707222332, 0.24536363994644925], [-0.23501823396297286, 0.34313139483459126], [-0.038647358481677024, 0.39791691553291814], [0.19733724670980002, 0.33302588139568956], [0.390339617711462, 0.24369290853642553]], "left_eye": [[-1.2438206472065232, -1.0837441571177708], [-1.0171061897489357, -1.1823472777109247], [-0.7195990548998643, -1.1553722002142672], [-0.495417736216899, -0.9994504201481645], [-0.7743845755981911, -0.9590013247329713], [-1.0289094762574478, -0.9615344635075935]], "right_eye": [[0.5226818664201276, -0.9893178650496764], [0.7308560284099351, -1.1553451585546808], [1.019093015525117, -1.1620821675139488], [1.2247340387403027, -1.0735845603596965], [1.0410018154725305, -0.950539501044507], [0.7527648283573486, -0.9438024920852395]], "top_lip": [[-0.7187907308544388, 0.6937262773123797], [-0.39684165728333154, 0.6777191206192221], [-0.18529899081389004, 0.6558103206718086], [-0.022640201788519415, 0.7198659891040254], [0.15519037822499682, 0.7072273368905015], [0.4097152788842534, 0.7097604756651237], [0.6979522659994354, 0.7030234667058559], [0.572374067909624, 0.7738161440973403], [0.1492887349707409, 0.8176337439921674], [-0.02854184504277535, 0.830272396205691], [-0.18193048633425613, 0.7999288142293995], [-0.565402089562958, 0.7240698592886712]], "bottom_lip": [[0.6979522659994354, 0.7030234667058559], [0.3827402013875959, 1.0072676105141956], [0.11304350974019359, 1.0814287923853139], [-0.09849915672924797, 1.103337592332727], [-0.2518877980207287, 1.072994010356436], [-0.46679896896980416, 0.9507843167462584], [-0.7187907308544388, 0.6937262773123797], [-0.565402089562958, 0.7240698592886712], [-0.2156425727901814, 0.8091989619632893], [-0.062253931498700676, 0.8395425439395808], [0.11557664851481562, 0.8269038917260572], [0.572374067909624, 0.7738161440973403]], "transform": {"center": [374.0833333333333, 137.31944444444446], "scale": 28.601324850066167, "angle": 0.26834756733679915}}]},
{"url": "zf9.jpg", "embedding": [[-0.11335373669862747, 0.07413973659276962, 0.05537264421582222, -0.09021850675344467, -0.06510358303785324, -0.006665635388344526, 0.03595209866762161, 0.008215389214456081, 0.15085168182849884, -0.10734527558088303, 0.17486026883125305, -0.011469045653939247, -0.2530464828014374, -0.026599515229463577, -0.03882245346903801, 0.06938175112009048, -0.1047891154885292, -0.08307144790887833, -0.11361332982778549, -0.13591091334819794, 0.05403180047869682, 0.16400368511676788, -0.10412532836198807, 0.034770701080560684, -0.13895383477210999, -0.3302009403705597, -0.06869775801897049, -0.06441477686166763, -0.05731011554598808, -0.09664566814899445, 0.06298929452896118, 0.09557773917913437, -0.14971904456615448, -0.03802400454878807, 0.05345546826720238, 0.04349173232913017, -0.037929635494947433, -0.013084335252642632, 0.15774878859519958, 0.09095656871795654, -0.04694541543722153, 0.007462652865797281, 0.08162523806095123, 0.3678489923477173, 0.13400374352931976, 0.029435835778713226, -0.023823482915759087, -0.03405064716935158, 0.19271622598171234, -0.28526124358177185, -0.00793059915304184, 0.14509859681129456, 0.07786892354488373, 0.0938248410820961, 0.10286563634872437, -0.09019839763641357, 0.02634965255856514, 0.09934557229280472, -0.2443634569644928, 0.1268525868654251, -0.018603185191750526, -0.1494658887386322, -0.08979678899049759, -0.026005681604146957, 0.14412029087543488, 0.052845485508441925, -0.08569298684597015, -0.159567728638649, 0.1354483813047409, -0.19144627451896667, -0.022921225056052208, 0.10737916827201843, -0.09864017367362976, -0.16876155138015747, -0.15129375457763672, 0.10186058282852173, 0.42709386348724365, 0.17695343494415283, -0.14807826280593872, 0.02570894919335842, -0.09580684453248978, -0.05722741037607193, 0.15365701913833618, -0.0034713514614850283, -0.0069101667031645775, -0.09580963104963303, -0.08214835822582245, 0.11021168529987335, 0.25670138001441956, -0.017098722979426384, -0.06803059577941895, 0.23545610904693604, 0.04116261377930641, 0.02410685271024704, 0.0182911679148674, -0.0525813102722168, -0.12891574203968048, 0.0033658002503216267, -0.10905987024307251, -0.011968336999416351, 0.038479339331388474, -0.07398628443479538, 0.008939031511545181, 0.051738984882831573, -0.12676389515399933, 0.1725805699825287, 0.025947080925107002, -0.03462490066885948, -0.013339980505406857, 0.0008676167926751077, -0.17368972301483154, -0.029190218076109886, 0.1427535116672516, -0.23536141216754913, 0.19539128243923187, 0.10840862989425659, 0.003524797735735774, 0.1539057493209839, 0.012254242785274982, 0.008533498272299767, 0.02712424471974373, -0.05454796552658081, -0.08990218490362167, -0.10527775436639786, 0.07904279977083206, 0.038818199187517166, 0.04825867339968681, -0.08671622723340988], [-0.10999074578285217, 0.13200515508651733, 0.1104608103632927, -0.041943393647670746, -0.1099490150809288, 0.07041364908218384, -0.047369301319122314, 0.010187957435846329, 0.1069565936923027, -0.037650901824235916, 0.25041860342025757, -0.03298896923661232, -0.27100980281829834, -0.09338637441396713, -0.01725545898079872, 0.1723259687423706, -0.14964453876018524, -0.1040344089269638, -0.0644187182188034, -0.04679142311215401, 0.03738822788000107, 0.14049923419952393, 0.01821770891547203, 0.04212820157408714, -0.126982182264328, -0.44323137402534485, -0.060758259147405624, -0.06253847479820251, 0.028519941493868828, -0.12992246448993683, -0.05578276887536049, 0.09545538574457169, -0.17034953832626343, -0.06439314037561417, 0.04886631295084953, 0.060543060302734375, -0.026019996032118797, -0.07487670332193375, 0.19782458245754242, 0.12184504419565201, -0.11216535419225693, 0.09185090661048889, 0.06675422936677933, 0.34850695729255676, 0.1587512195110321, 0.0449286513030529, 0.01721191592514515, 0.022360743954777718, 0.12764140963554382, -0.30624422430992126, 0.07635267078876495, 0.1701042503118515, 0.15537942945957184, 0.027044441550970078, 0.07386933267116547, -0.10383162647485733, -0.06053626537322998, 0.14512214064598083, -0.24310511350631714, 0.1462307572364807, 0.03635340929031372, -0.06582120805978775, -0.06924737989902496, -0.12043960392475128, 0.1529444456100464, 0.106541208922863, -0.13514448702335358, -0.14267882704734802, 0.13627929985523224, -0.09737596660852432, -0.05749975144863129, 0.025698786601424217, -0.1380622386932373, -0.16695980727672577, -0.2502111494541168, 0.12481614202260971, 0.3017883002758026, 0.16080604493618011, -0.20890533924102783, 0.0031695023644715548, -0.028398439288139343, -0.02285284362733364, -0.023625247180461884, 0.056341614574193954, -0.060488514602184296, -0.05075666680932045, -0.05664133280515671, 0.040642980486154556, 0.16696476936340332, 0.039690930396318436, -0.030367916449904442, 0.33690521121025085, 0.019941020756959915, 0.053887683898210526, 0.028941622003912926, 0.004251265898346901, -0.08557577431201935, -0.056427523493766785, -0.14463864266872406, 0.015035429038107395, -0.011273571290075779, -0.12622657418251038, -0.007312738336622715, 0.09640148282051086, -0.18674598634243011, 0.14034397900104523, -0.03717564418911934, 0.0038819662295281887, 0.023949524387717247, 0.03610691428184509, -0.1819399744272232, -0.02300458587706089, 0.15698815882205963, -0.2647387981414795, 0.17631393671035767, 0.19303354620933533, 0.06831154972314835, 0.10773999243974686, 0.1317213475704193, 0.021342046558856964, 0.05721607059240341, -0.02873985841870308, -0.14693862199783325, -0.14195817708969116, 0.10654941201210022, -0.07307665795087814, -0.0077366880141198635, 0.03924752399325371]], "landmarks": [{"chin": [[-1.4347504795049442, -0.866024031507515], [-1.4595755393191954, -0.4369635563703108], [-1.439284060497877, 0.0038668288564350922], [-1.346489204202444, 0.45805170245873866], [-1.24298082334148, 0.8853779299845027], [-1.08311418651741, 1.2884864752437541], [-0.8395024548916894, 1.6689619165225085], [-0.5363633107308308, 1.9704459978576598], [-0.07237162876158258, 2.024770667558477], [0.4618609903083345, 1.9732453312391522], [0.976629661969787, 1.783201222441087], [1.486494929447767, 1.5195973506448959], [1.900167329947125, 1.1771517882305262], [2.1574415888452934, 0.6882645619073358], [2.3083376489613143, 0.1382653447629914], [2.3974438561687514, -0.45194700683345035], [2.4495060854961235, -1.0351431831983988]], "left_eyebrow": [[-1.4167919255967625, -1.1764082050110243], [-1.3252736086904555, -1.4916957826980062], [-1.0627966069579664, -1.5955826869955512], [-0.7610131869719667, -1.5872812721288898], [-0.48382597268906097, -1.4704888874320594]], "right_eyebrow": [[0.016531825072822914, -1.5697717261969806], [0.445442630884603, -1.7006669458964894], [0.9034745231463682, -1.7016441466347672], [1.3175959316219987, -1.5769288705078564], [1.6588354391869333, -1.3007188569632286]], "nose_bridge": [[-0.22037177021829424, -1.1163438994678392], [-0.27431791648253057, -0.8172014432918662], [-0.33686481626427645, -0.5277161261574136], [-0.39028276976650744, -0.23770261626095546]], "nose_tip": [[-0.5725623567059588, 0.06317408752645778], [-0.4205394265262362, 0.12692704215763853], [-0.24920221826347286, 0.17347848975379998], [-0.025353772697065166, 0.10399459952629342], [0.20603904086284147, 0.062425740899337126]], "left_eye": [[-1.1008264858223513, -0.9382985548704725], [-0.9528002436275143, -1.1220835353102068], [-0.696133362277084, -1.1255520305330873], [-0.4682882287257906, -0.9474979856896787], [-0.7012656205717134, -0.8785422882241773], [-0.9589888874461543, -0.8568159004422671]], "right_eye": [[0.46060185141129206, -1.0128268183608338], [0.664986349569235, -1.220829481067081], [0.9393829307166898, -1.2141126444864356], [1.168812642553999, -1.063445438481572], [0.9712946503021258, -0.9741190774090195], [0.6958416836306602, -0.9625780214306348]], "top_lip": [[-0.6804546492344314, 0.661458999878404], [-0.5269968100941168, 0.5421048361572796], [-0.33106339612825947, 0.480165313923272], [-0.1602543806275015, 0.5358457077989484], [0.03515084057635056, 0.48303513184445585], [0.3809944136739092, 0.5213643493596889], [0.7419267227584658, 0.6155236300760224], [0.6313229818802752, 0.6274432094909883], [0.047598612753321744, 0.5845099264431313], [-0.15535097644402926, 0.6094054707970736], [-0.31967200947529895, 0.5998980010809775], [-0.5891651864392815, 0.6667409274984575]], "bottom_lip": [[0.7419267227584658, 0.6155236300760224], [0.40551143459127037, 0.889163164350315], [0.07807542337816581, 1.0076106118728527], [-0.13453130486070553, 1.0411069097443044], [-0.31711023045100517, 1.0305430545041976], [-0.5040643674627717, 0.9372904899864506], [-0.6804546492344314, 0.661458999878404], [-0.5891651864392815, 0.6667409274984575], [-0.3226914967219069, 0.8103919582718274], [-0.1502979029351329, 0.838685513308959], [0.05265168626221811, 0.8137899689550165], [0.6313229818802752, 0.6274432094909883]], "transform": {"center": [589.1111111111111, 482.4861111111111], "scale": 109.35877172377212, "angle": -0.05779468085415133}}, {"chin": [[-2.696508635020265, -1.392303161696938], [-2.67451271981895, -0.8167738317094954], [-2.537410938620146, -0.245643684762316], [-2.400309157421342, 0.32548646218486343], [-2.14810151022505, 0.8922174260917799], [-1.6744804971143068, 1.219938291923193], [-1.0857536180060752, 1.5432599747143434], [-0.6165317879355949, 1.755874974548268], [-0.15610832394564092, 1.7382782423872158], [0.29991595700404994, 1.605575644228675], [0.5169301398782378, 1.2514596801556834], [0.844651005709651, 0.7778386670449403], [1.0616651885838388, 0.4237227029719486], [1.2786793714580267, 0.069606738898957], [1.376188505294463, -0.39521590813126006], [1.4736976391308991, -0.8600385551614771], [1.46050009001011, -1.2053561531539427]], "left_eyebrow": [[-1.6561566580026055, -1.3167899430618168], [-1.2001323770529149, -1.4494925412203576], [-0.7397089130629606, -1.46708927338141], [-0.3899921320302321, -1.3651809565047106], [-0.04027535099750355, -1.2632726396280114]], "right_eyebrow": [[0.6503598449874274, -1.2896677378695898], [0.8761723939421414, -1.4135719699476041], [1.1019849428968553, -1.537476202025619], [1.3277974918515691, -1.6613804341036336], [1.4429033578490578, -1.6657796171438966]], "nose_bridge": [[0.31823979611575115, -0.9311525907563349], [0.33143734523654034, -0.5858349927638694], [0.3490340773975926, -0.1254115287739155], [0.3622316265183818, 0.21990606921854997]], "nose_tip": [[-0.09379265443130919, 0.35260866737709073], [0.025712394606442375, 0.46331535033431615], [0.25592412660141933, 0.45451698425379006], [0.4817366755561333, 0.3306127521757754], [0.5924433585133587, 0.21110770313802385]], "left_eye": [[-1.1825356448918625, -0.9890690772304037], [-0.8372180468993969, -1.0022666263511928], [-0.6070063149044199, -1.011064992431719], [-0.3723953998691798, -0.9047574925147566], [-0.5982079488238938, -0.780853260436742], [-0.9435255468163593, -0.7676557113159528]], "right_eye": [[0.6635573941082166, -0.9443501398771241], [0.769864894025179, -1.1789610549123644], [1.000076626020156, -1.1877594209928906], [1.2346875410553961, -1.081451921075928], [1.1239808580981707, -0.9619468720381764], [0.8937691261031936, -0.9531485059576503]], "top_lip": [[-0.766831118255188, 0.8394272296086231], [-0.3064076542652339, 0.821830497447571], [0.0345107606869685, 0.6935270823292932], [0.2647224926819455, 0.684728716248767], [0.37982835867943404, 0.680329533208504], [0.6100400906744109, 0.6715311671279778], [0.7207467736316364, 0.5520261180902264], [0.6100400906744109, 0.6715311671279778], [0.3842275417196971, 0.7954353992059926], [0.15401580972472007, 0.8042337652865187], [0.04330912676749463, 0.9237388143242702], [-0.6517252522576994, 0.8350280465683602]], "bottom_lip": [[0.7207467736316364, 0.5520261180902264], [0.49933340771718554, 0.7910362161657295], [0.3886267247599602, 0.910541265203481], [0.1628141758052462, 1.0344454972814956], [-0.06739755618973081, 1.0432438633620218], [-0.4127151541821963, 1.056441412482811], [-0.766831118255188, 0.8394272296086231], [-0.6517252522576994, 0.8350280465683602], [0.03890994372723156, 0.8086329483267818], [0.15401580972472007, 0.8042337652865187], [0.3842275417196971, 0.7954353992059926], [0.6100400906744109, 0.6715311671279778]], "transform": {"center": [428.93055555555554, 747.9722222222222], "scale": 8.681316633302481, "angle": 0.03819999071043802}}]},
{"url": "zf10.jpg", "embedding": [[-0.09098053723573685, 0.09670162200927734, -0.018426185473799706, -0.025078102946281433, -0.1306101232767105, 0.06505060195922852, -0.05167440325021744, -0.13581280410289764, 0.1450062245130539, -0.08208086341619492, 0.109678253531456, -0.011690075509250164, -0.24503228068351746, -0.027801916003227234, 0.04042547196149826, 0.10307389497756958, -0.11493948847055435, -0.10525912791490555, -0.19841167330741882, -0.1398290991783142, -0.03235749527812004, -0.014047391712665558, 0.06483744084835052, 0.05135621875524521, -0.22634728252887726, -0.20888490974903107, -0.11472085118293762, -0.15178076922893524, 0.05969301238656044, -0.04230375215411186, 0.01540666539222002, -0.06555669009685516, -0.1750553846359253, -0.051487527787685394, 0.06271982938051224, 0.10255355387926102, -0.10687901824712753, -0.04289693385362625, 0.17192140221595764, -0.08441802859306335, -0.10869039595127106, 0.00014271443069446832, 0.08244823664426804, 0.12227652221918106, 0.17768706381320953, 0.06511487066745758, 0.06256967037916183, -0.08729712665081024, 0.1737997680902481, -0.2538212239742279, 0.09673883765935898, 0.10401438921689987, 0.11321164667606354, 0.12765106558799744, 0.07355238497257233, -0.14861181378364563, 0.08274248242378235, 0.25093916058540344, -0.18179331719875336, 0.15892253816127777, 0.10166888684034348, -0.09400953352451324, -0.12496252357959747, 0.034910209476947784, 0.18664154410362244, 0.1762133240699768, -0.13150572776794434, -0.20463448762893677, 0.16813378036022186, -0.24006739258766174, -0.015218318440020084, 0.10941047966480255, -0.055612798780202866, -0.16949312388896942, -0.2674807012081146, 0.01558296475559473, 0.5128461718559265, 0.14573021233081818, -0.1461019068956375, -0.04982361942529678, -0.052070509642362595, 0.001790085923857987, 0.03757883608341217, 0.0521460622549057, -0.12557801604270935, -0.14500068128108978, -0.052552178502082825, 0.009299151599407196, 0.2495187371969223, -0.028621932491660118, 0.03967970609664917, 0.2301340252161026, 0.08282510936260223, 0.06536455452442169, 0.0019861231558024883, 0.029548553749918938, -0.0978565439581871, -0.052283141762018204, 0.00962793454527855, 0.07467594742774963, -0.024010181427001953, -0.13033856451511383, 0.02346171997487545, 0.008216912858188152, -0.12857423722743988, 0.2191094607114792, -0.028000788763165474, 0.011430894955992699, 0.0013599458616226912, 0.037061020731925964, -0.12710554897785187, -0.04480654001235962, 0.23518085479736328, -0.3063732087612152, 0.17926867306232452, 0.20527195930480957, -0.004895247984677553, 0.107948899269104, 0.060947027057409286, 0.16562752425670624, 0.05958631634712219, 0.0682038962841034, -0.1884075254201889, -0.08952286839485168, -0.0005860932869836688, -0.15576030313968658, -0.04426458477973938, 0.04489034786820412]], "landmarks": [{"chin": [[-1.8775465205427004, -0.911031060967675], [-1.886023692206425, -0.4418715450661635], [-1.8633244483383515, 0.025774687910809682], [-1.8094487889384798, 0.4919076379632447], [-1.6605306000186753, 0.9846771547738632], [-1.3275804837571579, 1.4060141429736561], [-0.9322775364320438, 1.824324565324372], [-0.5073114564996699, 2.209945289218752], [0.028740739239052654, 2.308925141628795], [0.5541999545060076, 2.18967008531625], [0.9398206784003874, 1.764704005383876], [1.2630885712311708, 1.3427644913005787], [1.4898006516174829, 0.8630119949272996], [1.6229834854084004, 0.3877993473276352], [1.6953267710602598, -0.053210318891154545], [1.7364936411803211, -0.492706702185406], [1.7464840957685837, -0.9306898025551193]], "left_eyebrow": [[-1.4577228152674462, -1.2751575927609908], [-1.2173911885602897, -1.474322349348086], [-0.9086535990913841, -1.5518080096570648], [-0.5657130282416036, -1.5684541218269854], [-0.27907215675726676, -1.4573680060206367]], "right_eyebrow": [[0.34596943680323583, -1.456457248979603], [0.6220173278158052, -1.563606041895842], [0.9664711815901236, -1.5490757385339642], [1.2515987701499225, -1.4691660382594138], [1.4507635267370176, -1.2288344115522574]], "nose_bridge": [[0.07900124333789599, -1.1622499628725749], [0.09564735550781658, -0.8193093920227946], [0.11078018475319895, -0.5075452367048126], [0.09776316431585957, -0.13191496739869563]], "nose_tip": [[-0.36382993696296073, 0.0154899385965708], [-0.17223159499855673, 0.09993948764473604], [0.052056445422183725, 0.21405216930016124], [0.2672647882956947, 0.14110635776479716], [0.4809598482446676, 0.03698413069763487]], "left_eye": [[-1.104189263945898, -1.0735687962083238], [-0.9201573366041852, -1.1450013248191497], [-0.7019224278815976, -1.1555943052909174], [-0.4776343874608572, -1.041481623635492], [-0.6958692961834447, -1.0308886431637243], [-0.9141042049060322, -1.0202956626919566]], "right_eye": [[0.49186105987396395, -1.026040563232581], [0.7055561198229368, -1.1301627902997433], [0.9253043114700625, -1.1095793552397126], [1.1169026534344666, -1.0251298061915475], [0.9313574431682156, -0.9848736931125199], [0.7116092515210898, -1.0054571281725504]], "top_lip": [[-0.997348702187188, 0.4837386974570488], [-0.6262582816546858, 0.4032264712989935], [-0.2536545781976455, 0.3538906606727365], [0.02995972743761493, 0.4026239454154888], [0.2778577687674624, 0.3593412664873847], [0.6238249054663194, 0.40504798538106057], [0.9104657769506562, 0.5161341011874093], [0.7872733977480015, 0.5533636484173605], [0.28391090046561535, 0.48404692861457754], [0.03601285913576787, 0.5273296075426817], [-0.24760144649949253, 0.47859632279992936], [-0.8696164742109186, 0.5400383968224922]], "bottom_lip": [[0.9104657769506562, 0.5161341011874093], [0.6540905639570841, 1.0285762960170248], [0.29056655804727305, 1.2649705998340712], [0.011492101185627324, 1.3097665616867136], [-0.2721222044496331, 1.2610332769439612], [-0.6583454542275176, 1.0297813477840343], [-0.997348702187188, 0.4837386974570488], [-0.8696164742109186, 0.5400383968224922], [-0.254565335238679, 0.978932254233239], [0.029048970396581424, 1.0276655389759912], [0.27694701172642894, 0.9843828600478872], [0.7872733977480015, 0.5533636484173605]], "transform": {"center": [247.66666666666666, 338.06944444444446], "scale": 32.03780891143585, "angle": 0.04850128245804204}}]},
{"url": "zf11.jpg", "embedding": [[-0.12261881679296494, 0.07361701875925064, 0.09670484811067581, -0.06500163674354553, -0.14852847158908844, -0.00264582596719265, -0.0481247641146183, -0.059418175369501114, 0.11021881550550461, -0.07885703444480896, 0.22338983416557312, -0.053332846611738205, -0.2511003017425537, 0.04448814317584038, -0.027184579521417618, 0.13597826659679413, -0.19852161407470703, -0.028646880760788918, -0.03922202065587044, -0.11604517698287964, 0.10787776857614517, 0.08389939367771149, -0.021570423617959023, 0.0829302966594696, -0.12997856736183167, -0.31530991196632385, -0.13668063282966614, -0.035401470959186554, 0.058237817138433456, -0.1016579195857048, 0.0058379643596708775, 0.04326067492365837, -0.145915225148201, -0.05888822302222252, 0.03198673948645592, 0.058612409979104996, -0.07148436456918716, -0.09698473662137985, 0.14679378271102905, 0.08154257386922836, -0.08411715924739838, 0.09115409106016159, -0.01794540323317051, 0.31147798895835876, 0.17946428060531616, 0.08658518642187119, 0.016810856759548187, -0.07818029075860977, 0.1388961523771286, -0.30981478095054626, 0.09093806892633438, 0.12893450260162354, 0.038935478776693344, 0.07242082804441452, 0.10224039107561111, -0.15137667953968048, -0.02923036739230156, 0.15562742948532104, -0.1974656730890274, 0.14056940376758575, 0.037065256386995316, -0.08759573101997375, -0.0013140973169356585, -0.13695412874221802, 0.16010311245918274, 0.09844215959310532, -0.17326928675174713, -0.13503529131412506, 0.1284579336643219, -0.08886177092790604, -0.12414658069610596, 0.04246096312999725, -0.1005719006061554, -0.18181480467319489, -0.29659131169319153, 0.13547652959823608, 0.4348352551460266, 0.15233595669269562, -0.23163288831710815, -0.014859100803732872, -0.020003506913781166, -0.04736669734120369, 0.07114129513502121, 0.1129700168967247, -0.030171841382980347, -0.06188307702541351, -0.0681508481502533, 0.05706402659416199, 0.1451166272163391, -0.015127468854188919, -0.08467704057693481, 0.33682888746261597, -0.003333254950121045, 0.08837637305259705, 0.04473842307925224, 0.12898553907871246, -0.1639527529478073, -0.020032349973917007, -0.13627591729164124, -0.04887930676341057, 0.11399868130683899, -0.061270952224731445, -0.02867857739329338, 0.11469777673482895, -0.14646947383880615, 0.27458301186561584, -0.04423755407333374, -0.012602333910763264, -0.07139158993959427, -0.06648160517215729, -0.20255278050899506, 0.12150488048791885, 0.18870870769023895, -0.3149471580982208, 0.20620134472846985, 0.19104433059692383, 0.060477130115032196, 0.15769971907138824, 0.1103406697511673, -0.02703235298395157, 0.04492998495697975, -0.047856077551841736, -0.16449259221553802, -0.12206413596868515, 0.09394998103380203, -0.031010011211037636, 0.020460203289985657, 0.038089264184236526], [-0.14491888880729675, 0.034487493336200714, 0.09099151194095612, -0.14396829903125763, -0.13127601146697998, -0.03351488709449768, 0.048079147934913635, -0.12866421043872833, 0.17459362745285034, -0.12155964970588684, 0.18726474046707153, -0.07164900004863739, -0.2546769976615906, -0.018476780503988266, -0.001648253994062543, 0.22544582188129425, -0.13855095207691193, -0.1411420851945877, -0.07804949581623077, -0.07948791235685349, 0.02406967617571354, 0.10575783997774124, -0.02877698466181755, 0.11244819313287735, -0.11313070356845856, -0.3622051179409027, -0.0950736552476883, -0.038580648601055145, -0.0032102717086672783, -0.025604434311389923, 0.0333653949201107, 0.14782769978046417, -0.12727615237236023, 0.006793362088501453, 0.05541994422674179, 0.07115047425031662, -0.06278883665800095, -0.12819348275661469, 0.2157265990972519, 0.060497794300317764, -0.24063172936439514, -0.00976964645087719, 0.0928095132112503, 0.2840735912322998, 0.2214762419462204, 0.011271524243056774, 0.04369932413101196, -0.028628092259168625, 0.14320515096187592, -0.3014683723449707, -0.009771016426384449, 0.1699064075946808, -0.013166839256882668, 0.03145219758152962, 0.08957257121801376, -0.13960766792297363, -0.04123467206954956, 0.17037273943424225, -0.21186226606369019, 0.04202987998723984, 0.023272214457392693, -0.1371137648820877, -0.0038849320262670517, -0.11181024461984634, 0.1754632592201233, 0.06907575577497482, -0.17939332127571106, -0.08081024140119553, 0.18356159329414368, -0.1745978146791458, -0.07576865702867508, 0.012681851163506508, -0.20859766006469727, -0.177757129073143, -0.3267480134963989, 0.04826212301850319, 0.392259806394577, 0.15695716440677643, -0.10310042649507523, 0.03797897696495056, -0.029769085347652435, 0.020985158160328865, 0.046492885798215866, 0.15815229713916779, 0.021802783012390137, -0.10657626390457153, -0.04588049650192261, -0.004764491226524115, 0.1918366253376007, -0.013876193203032017, -0.001972992904484272, 0.3098466396331787, -0.013130313716828823, -0.02471999078989029, -0.06992176920175552, 0.08750639855861664, -0.12395063787698746, -0.05630318075418472, -0.08099904656410217, -0.03041432425379753, -0.003310599597170949, -0.017523640766739845, 0.061199210584163666, 0.19772689044475555, -0.22870825231075287, 0.17973016202449799, -0.042929913848638535, 0.01706371083855629, -0.01736091822385788, 0.019597627222537994, -0.049930691719055176, -0.045224495232105255, 0.09108106791973114, -0.1918654888868332, 0.11923715472221375, 0.21871797740459442, -0.020013105124235153, 0.1300964057445526, 0.03613411635160446, 0.039816804230213165, 0.0030423998832702637, -0.021275732666254044, -0.1373409479856491, -0.09439396858215332, 0.06999579071998596, 0.014841141179203987, 0.015457818284630775, 0.04186312109231949], [-0.08817796409130096, 0.10945306718349457, 0.06581928580999374, -0.022513708099722862, -0.05410521849989891, -0.058034949004650116, -0.0046430425718426704, -0.14626668393611908, 0.10949245095252991, -0.09418343007564545, 0.22313208878040314, -0.05469881743192673, -0.1478685736656189, -0.06088559702038765, -0.027581432834267616, 0.2144639492034912, -0.20497919619083405, -0.12220974266529083, -0.10310856997966766, -0.02560241147875786, 0.06223262473940849, -0.007876387797296047, -0.024619247764348984, 0.051470547914505005, -0.07219413667917252, -0.27350786328315735, -0.07678667455911636, -0.03402525186538696, 0.09582331776618958, -0.05466976761817932, -0.04953799024224281, 0.022766929119825363, -0.18612976372241974, -0.04992769658565521, 0.04626234620809555, 0.09777773916721344, -0.02403782680630684, -0.0639379620552063, 0.198770672082901, -0.03688143938779831, -0.21609586477279663, 0.09835675358772278, 0.07084648311138153, 0.23278701305389404, 0.20081792771816254, 0.06074883043766022, 0.03090987727046013, -0.17218805849552155, 0.14569973945617676, -0.13075131177902222, -0.00604412704706192, 0.14080019295215607, 0.06109633296728134, 0.07450994849205017, -0.005094447638839483, -0.13843204081058502, 0.011567831039428711, 0.1153358742594719, -0.11426322162151337, 0.030246667563915253, 0.12313944846391678, -0.060978684574365616, -0.0037989341653883457, -0.1129254475235939, 0.16486041247844696, 0.011220669373869896, -0.12012571096420288, -0.19622372090816498, 0.12319669872522354, -0.16321705281734467, -0.10844074934720993, 0.039419226348400116, -0.12851130962371826, -0.13373638689517975, -0.3404150605201721, -0.008534088730812073, 0.4172021150588989, 0.0978429913520813, -0.17000126838684082, 0.03265349566936493, -0.034743133932352066, -0.02388070710003376, 0.13608412444591522, 0.13702237606048584, -0.04153454676270485, -0.018471164628863335, -0.07836021482944489, -0.0016207844018936157, 0.2639654874801636, -0.008812656626105309, -0.006140648387372494, 0.160640686750412, -0.0041588107123970985, 0.05146241560578346, -0.05491074547171593, 0.022084448486566544, -0.0800013467669487, 0.058727335184812546, -0.11772682517766953, -0.014188673347234726, -0.0026321117766201496, -0.035719871520996094, 0.019975218921899796, 0.1602017730474472, -0.17626811563968658, 0.15981274843215942, -0.009855269454419613, 0.07970719784498215, 0.021580418571829796, 0.07686728239059448, -0.13097061216831207, -0.024578964337706566, 0.135410338640213, -0.19545692205429077, 0.20848244428634644, 0.2378065437078476, 0.0577559620141983, 0.01898774318397045, 0.13991785049438477, 0.11091264337301254, -0.015255461446940899, 0.04731588438153267, -0.24940194189548492, -0.04094529524445534, 0.07587311416864395, -0.054957371205091476, 0.10575638711452484, 0.02831093966960907], [-0.14501820504665375, 0.0131217697635293, 0.04431461542844772, -0.03206021338701248, -0.08489961177110672, -0.04607442021369934, -0.02617320604622364, -0.08243797719478607, 0.11123953014612198, 0.00895809754729271, 0.17491087317466736, -0.03100431337952614, -0.2308419942855835, -0.1060829907655716, 0.04677245393395424, 0.07640489190816879, -0.09844771772623062, -0.0846152976155281, -0.02517264522612095, -0.09412958472967148, 0.04264827445149422, -0.005928489845246077, -0.008343136869370937, 0.13537336885929108, -0.07427176088094711, -0.22621092200279236, -0.08657445758581161, -0.1575842797756195, 0.05381739139556885, -0.02690298855304718, 0.0034826695919036865, 0.03580182418227196, -0.09964008629322052, -0.044513266533613205, 0.03917602822184563, 0.13659170269966125, -0.12752172350883484, -0.11774436384439468, 0.21968358755111694, -0.09845016151666641, -0.10304800420999527, -0.016733912751078606, 0.015265028923749924, 0.21206729114055634, 0.11358695477247238, 0.04122007638216019, 0.061503197997808456, -0.03851781040430069, 0.18955367803573608, -0.21515077352523804, 0.04340154677629471, 0.21242451667785645, 0.10502155870199203, 0.03602677956223488, 0.12264539301395416, -0.2130104899406433, 0.07772243767976761, 0.18872283399105072, -0.23053599894046783, 0.11124525964260101, 0.009345748461782932, -0.06238657608628273, 0.009934988804161549, -0.09334693104028702, 0.16362136602401733, 0.13464093208312988, -0.09997811913490295, -0.12975265085697174, 0.16046589612960815, -0.15954361855983734, -0.027898654341697693, 0.157942995429039, -0.1670551300048828, -0.23448850214481354, -0.17713519930839539, 0.04522296041250229, 0.382079154253006, 0.1501702219247818, -0.12077952921390533, 0.0070780422538518906, -0.01786225289106369, -0.039416372776031494, 0.09879942983388901, 0.04610002785921097, -0.060523901134729385, -0.10304340720176697, -0.12743966281414032, -0.02224830538034439, 0.1710694134235382, -0.004229305312037468, 0.030953003093600273, 0.18593145906925201, 0.05039181560277939, 0.0409095324575901, -0.020830785855650902, -0.030736738815903664, -0.04052962362766266, 0.05651363730430603, -0.04387195408344269, 0.06594058871269226, 0.003973995801061392, -0.13162599503993988, 0.046218205243349075, 0.0031043055932968855, -0.14349056780338287, 0.09594365954399109, 0.02432151511311531, 0.038894955068826675, -0.08975084125995636, -0.04408632591366768, -0.15307599306106567, 0.06744609773159027, 0.19372151792049408, -0.2853353023529053, 0.23820525407791138, 0.13677428662776947, 0.059839725494384766, 0.12699821591377258, 0.018696067854762077, 0.06827187538146973, 0.0012101143365725875, -0.120018370449543, -0.18104560673236847, -0.028420351445674896, 0.05195166543126106, -0.053000304847955704, 0.0020300038158893585, 0.04125766083598137], [-0.07694301754236221, 0.08893493562936783, 0.019637862220406532, -0.08126404881477356, -0.1787530481815338, 0.0883575826883316, -0.01980159804224968, -0.040415745228528976, 0.264580637216568, -0.11566825956106186, 0.18337631225585938, 0.08365873992443085, -0.21665072441101074, -0.05427930876612663, -0.007858001627027988, 0.10057014226913452, -0.12570682168006897, -0.15122923254966736, 0.013185331597924232, -0.08447348326444626, -0.009897991083562374, 0.043285831809043884, -0.05564066395163536, 0.04075635224580765, -0.12575192749500275, -0.3119685649871826, -0.07283934205770493, -0.08122199773788452, 0.09100828319787979, -0.12168534100055695, -0.032838817685842514, 0.12650088965892792, -0.15220759809017181, -0.041840050369501114, -0.02308630384504795, 0.11990273743867874, -0.05139359459280968, -0.0036315738689154387, 0.19090719521045685, 0.09128647297620773, -0.16095837950706482, 0.07936923205852509, -0.036789797246456146, 0.31070730090141296, 0.20303548872470856, 0.04170502722263336, 0.06877940893173218, -0.0932621955871582, 0.1954938918352127, -0.30588263273239136, 0.0942646861076355, 0.15207956731319427, 0.08922925591468811, 0.009088772349059582, 0.10933541506528854, -0.2264794558286667, -0.04354074224829674, 0.100425124168396, -0.20533864200115204, 0.1447838395833969, 0.02380257286131382, -0.06292740255594254, -0.014635433442890644, -0.056050483137369156, 0.21981215476989746, 0.11122135818004608, -0.07922124117612839, -0.1558568924665451, 0.23226536810398102, -0.1631021350622177, -0.08954835683107376, 0.12550437450408936, -0.09718795865774155, -0.17370037734508514, -0.29652029275894165, 0.15316039323806763, 0.42588716745376587, 0.1894971877336502, -0.12803010642528534, 0.06309475004673004, -0.018731536343693733, -0.04315585270524025, 0.07069581747055054, 0.11342831701040268, -0.08515296876430511, -0.07464967668056488, -0.09171444922685623, 0.025273511186242104, 0.21835091710090637, 0.035630058497190475, -0.03663811832666397, 0.23006337881088257, 0.040659986436367035, 0.10852093249559402, 0.003631662344560027, 0.09650656580924988, -0.09557286649942398, 0.005075386725366116, -0.1339920461177826, -0.025269944220781326, 0.057058386504650116, -0.09192400425672531, 0.019231364130973816, 0.1574810892343521, -0.19089095294475555, 0.18199050426483154, -0.07650807499885559, -0.024386681616306305, -0.06384652107954025, -0.01791377365589142, -0.06958777457475662, 0.07127971947193146, 0.17662037909030914, -0.32177212834358215, 0.23045949637889862, 0.15270893275737762, 0.023416176438331604, 0.1563851535320282, 0.08188334852457047, 0.017344098538160324, 0.03627673164010048, -0.09985208511352539, -0.16964706778526306, -0.08810126781463623, 0.020862193778157234, -0.08472906798124313, 0.007090186234563589, 0.08528707176446915]], "landmarks": [{"chin": [[-1.9516793359458042, -1.0172951495867488], [-1.916276579187304, -0.4993043918596184], [-1.8175224232294869, 0.02613940862257147], [-1.7150417458941396, 0.5199075095051026], [-1.5100809270047564, 0.9615037753209054], [-1.2380421875385257, 1.3788773842921092], [-0.8597967851407292, 1.7124034585969254], [-0.4740983399878733, 1.9825781337024246], [-0.010142410125580481, 2.1335030531643477], [0.4444969484022322, 2.0906472536507885], [0.8544175146183761, 1.8819599133838751], [1.2121662457677922, 1.5707924315629263], [1.5177431418504794, 1.1571448081879412], [1.7003437609120615, 0.6969153997031783], [1.767421145707598, 0.12675280690931967], [1.8661742301027928, -0.4396832645070091], [1.9015759152986702, -1.0135723786783974]], "left_eyebrow": [[-1.4597747636426934, -1.3769079450968964], [-1.219412259557433, -1.5092007934524818], [-0.926877920405444, -1.5390135002540313], [-0.6101209244088559, -1.5017482864787335], [-0.3008169711673274, -1.401131673504118]], "right_eyebrow": [[0.18177156558261434, -1.4085852520404887], [0.5208876898443812, -1.5613742358631437], [0.8842264709507472, -1.6470852991089513], [1.232659166546994, -1.6060935639561236], [1.4953813346787446, -1.3825006739604027]], "nose_bridge": [[-0.010145624813447801, -1.1421365625312083], [-0.012008617611557096, -0.8533287447567492], [-0.013871610409666363, -0.5645209269822903], [0.012214575014353357, -0.24031088823064253]], "nose_tip": [[-0.3343545920024731, -0.024170505208669937], [-0.15175343715957978, 0.0615400222558264], [0.03457423906084331, 0.11557485012066394], [0.20413230119172673, 0.03918035820933646], [0.3420146637229513, -0.040940655079520806]], "left_eye": [[-1.1057520180894964, -1.1104597913689271], [-0.9361939559586128, -1.1868542832802547], [-0.7107375373834715, -1.192444333237205], [-0.4964606829409194, -1.1030072843951786], [-0.690241401916402, -1.0936907130606985], [-0.9156978204915434, -1.0881006631037484]], "right_eye": [[0.43331416958177554, -1.0899652632457912], [0.6420009740673773, -1.2259846329789066], [0.8674573926425189, -1.231574682935857], [1.0817342470850708, -1.1421376340938307], [0.8842270067320583, -1.101145363159692], [0.658770588156917, -1.0955553132027418]], "top_lip": [[-0.6809232232379883, 0.7379098137625619], [-0.45360381186473747, 0.4435119460311526], [-0.18529212955734786, 0.34662131865275575], [0.001035546663075211, 0.40065614651759324], [0.23394500799327622, 0.33171469736132536], [0.539522439857275, 0.4640070099355996], [0.7351666874121782, 0.7118225567759198], [0.6401395886132017, 0.7006429926433304], [0.24326157932775633, 0.525495416336808], [0.01780516075261486, 0.5310854662937583], [-0.17597555822286778, 0.5404020376282385], [-0.5504939034618233, 0.7211401996730223]], "bottom_lip": [[0.7351666874121782, 0.7118225567759198], [0.5320699328835266, 1.0732983450841767], [0.2563052078210774, 1.2335403716618911], [-0.0045534317312526384, 1.2670795998409705], [-0.2225568075513345, 1.2093182505986033], [-0.4573297974609561, 1.0211275815800709], [-0.6809232232379883, 0.7379098137625619], [-0.5504939034618233, 0.7211401996730223], [-0.18901811515356642, 0.9242369542016738], [-0.0026904389331433715, 0.9782717820665113], [0.2264925010195279, 0.9410060325099023], [0.6401395886132017, 0.7006429926433304]], "transform": {"center": [710.5, 837.5277777777778], "scale": 31.353710621760328, "angle": -0.11710776317445105}}, {"chin": [[-1.8997172771352766, -1.126959791305764], [-1.8512567880202377, -0.6032447046967451], [-1.795229626519921, -0.11192173306656805], [-1.699243677655484, 0.35457579597004507], [-1.5060813838545215, 0.8437733421624924], [-1.2254348429400412, 1.25092788818897], [-0.8972628422761626, 1.600864876643042], [-0.4891732668840443, 1.9011509799099862], [-0.028116984794979538, 1.9746922783250371], [0.3984217568775138, 1.9035317720541642], [0.8131429752892695, 1.5904931161608418], [1.1782133085138975, 1.1975368855392796], [1.5357169693532475, 0.8369727698965591], [1.738826727683666, 0.4061831773486066], [1.8922856008269566, -0.10452398992758594], [2.0133523589914053, -0.6227978295890565], [2.1020270021770124, -1.148638341635805]], "left_eyebrow": [[-1.6448312081800005, -1.340696676824831], [-1.3975118116100027, -1.5220414473650559], [-1.0757160872593132, -1.5835098558129213], [-0.744228265085616, -1.5402352469389826], [-0.3954816727036331, -1.424609735722082]], "right_eyebrow": [[0.38737033373612106, -1.4125368457548961], [0.6994739602638027, -1.578748271524565], [1.053661799593334, -1.6326500075871524], [1.4175417367458731, -1.5818087263279355], [1.638845294650218, -1.3593147723515016]], "nose_bridge": [[-0.04248422944619079, -1.0347139599038901], [-0.06093339572656553, -0.663267350366073], [-0.039423774642820375, -0.3166461834218197], [-0.050306268537917094, 0.022408311137155492]], "nose_tip": [[-0.43476079740856066, 0.20587850711511024], [-0.24040810753550917, 0.2512785414267786], [-0.013663302683615805, 0.30424524812372494], [0.1709972893664279, 0.24490226511358948], [0.39561666878059154, 0.16073383950989018]], "left_eye": [[-1.276700420152002, -1.0155851309643227], [-1.0520810407378383, -1.0997535565680223], [-0.8177695635006669, -1.0791789648499177], [-0.5813326608257657, -0.9214692408311674], [-0.8232108104482154, -0.9096517175704301], [-1.0575222876853867, -0.9302263092885346]], "right_eye": [[0.5880992999223617, -0.9557314145412908], [0.7954599091282395, -1.112250742487952], [1.037338058750689, -1.1240682657486896], [1.2889083061961464, -1.0311427716876231], [1.0642889267819826, -0.9469743460839238], [0.822410777159533, -0.9351568228231865]], "top_lip": [[-0.8149644754037448, 0.6636189676943565], [-0.5104275212613412, 0.5297996569035293], [-0.22859058427477175, 0.49315669104922805], [0.005720892962399693, 0.5137312827673325], [0.22277359999128526, 0.4619549721424751], [0.5542614221649824, 0.5052295810164137], [0.8706158995681235, 0.6132884198480362], [0.7658728822463197, 0.6229805176710439], [0.22489902542901496, 0.5990901044431208], [0.015412990785407449, 0.6184743000891363], [-0.21889848645176396, 0.5978997083710318], [-0.7102214580819409, 0.6539268698713486]], "bottom_lip": [[0.8706158995681235, 0.6132884198480362], [0.5455043537076154, 0.9814192078760348], [0.2334007271799338, 1.1476306336457036], [-0.01604409482779373, 1.191840271885283], [-0.2827476870438071, 1.1636990077819005], [-0.59153549206167, 1.023248053971436], [-0.8149644754037448, 0.6636189676943565], [-0.7102214580819409, 0.6539268698713486], [-0.26217309532570265, 0.929387530544729], [-0.027861618088531187, 0.9499621222628334], [0.22158320391919628, 0.9057524840232541], [0.7658728822463197, 0.6229805176710439]], "transform": {"center": [834.3194444444445, 234.0], "scale": 30.062394926794635, "angle": -0.22948113712802992}}, {"chin": [[-2.3790392264641533, -0.8144715973983302], [-2.315144711316789, -0.2647529765603602], [-2.246378056919044, 0.313641774887483], [-2.1251312805519333, 0.8536161172246913], [-1.7939640163073618, 1.2399088231193598], [-1.3340325167645675, 1.5158124409325042], [-0.8838452957225347, 1.7343637975259028], [-0.495882475150629, 1.9339833020101898], [-0.09873208097037389, 2.0140261448046037], [0.24538148634810347, 1.9555604738000327], [0.5505179396635336, 1.6676857579164768], [0.869714105837694, 1.2889105109529206], [1.1791659935110925, 0.852783002769618], [1.397717350104491, 0.4025957817275855], [1.5015641842583969, -0.028102882312923627], [1.5669906093016681, -0.5112816683227981], [1.5988687644846848, -1.0182644456921646]], "left_eyebrow": [[-1.453328883124689, -1.443814560919632], [-1.1287038728077352, -1.6169847543636955], [-0.7559141748793848, -1.6803225646186473], [-0.3971841898097647, -1.652759843793599], [-0.04764177834849406, -1.5056204612786772]], "right_eyebrow": [[0.44959672052011074, -1.5310945673154064], [0.7266137481180801, -1.637168221038962], [1.0085029149664304, -1.714565744152644], [1.3098806388163042, -1.677258744826834], [1.473306553759606, -1.4099859957296266]], "nose_bridge": [[0.145016972097093, -1.066290928522231], [0.17967865174217174, -0.6886290913434996], [0.2143403313872505, -0.3109672541647682], [0.22032588042245616, 0.0715667222643441]], "nose_tip": [[-0.3055887490560217, 0.10191296755145432], [-0.08536727778538628, 0.1825125152382804], [0.1397263327356301, 0.29178819353497953], [0.3929393689741072, 0.21926280967167827], [0.5790558654920762, 0.09912944308939249]], "left_eye": [[-1.0648093576603712, -1.0672661335257254], [-0.840272452031767, -1.1349193781386457], [-0.6059912679024012, -1.1452203615318202], [-0.409573787991258, -1.03107254398474], [-0.6151788415107506, -1.0256436998419467], [-0.8543321648904975, -1.0440188470586456]], "right_eye": [[0.5659713576368403, -1.0197963555880714], [0.7234117235449362, -1.1350575829199763], [0.929016777064429, -1.1404864270627697], [1.1205621177251914, -1.0550147401255625], [0.9485053340659526, -1.025781904623277], [0.7429002805464598, -1.0203530604804838]], "top_lip": [[-0.7968416988894209, 0.5099210500172959], [-0.48140426218081656, 0.45632751826310586], [-0.1037424250020852, 0.42166583861802714], [0.14028303762804248, 0.4687171164445992], [0.3410159518971543, 0.4346121416919328], [0.580169275276901, 0.45298728890863166], [0.7668424766872824, 0.5097828452359656], [0.685686224108044, 0.5530753935969814], [0.32695623903842386, 0.525512672771933], [0.12622332476931208, 0.5596176475245994], [-0.11780213786081556, 0.5125663696980274], [-0.7297451591689128, 0.5575290327362803]], "bottom_lip": [[0.7668424766872824, 0.5097828452359656], [0.5818393899541381, 0.9837740576374905], [0.32918305860807334, 1.2332283644104114], [0.12357800508858063, 1.2386572085532046], [-0.14425144890103922, 1.2251542005868867], [-0.4797341475035795, 0.9871142869919647], [-0.7968416988894209, 0.5099210500172959], [-0.7297451591689128, 0.5575290327362803], [-0.10207231032484812, 0.952452607346886], [0.14195315230527955, 0.9995038851734579], [0.3426860665743914, 0.9653989104207915], [0.685686224108044, 0.5530753935969814]], "transform": {"center": [604.9444444444445, 361.30555555555554], "scale": 34.379525515797305, "angle": 0.1682951559330582}}, {"chin": [[-1.4044044158602156, -0.7087912836270224], [-1.4397801391118188, -0.3576811493114155], [-1.4071622300933222, 0.03289929740398137], [-1.334099106496896, 0.4228948028124944], [-1.260646022029214, 0.8398537846062939], [-1.0922358289061456, 1.295893117928627], [-0.8566119252554893, 1.7374758108801776], [-0.4885104049059363, 2.0153278411637308], [-0.015089724678401015, 2.1163574314578986], [0.5103081039634279, 2.0817897180831224], [1.005622769249923, 1.8319041544973111], [1.432163880523807, 1.4886213257411374], [1.8311565741055207, 1.1052832432782895], [2.1621556354171347, 0.6824748484156522], [2.370649170381192, 0.18053084831780686], [2.4710938193684764, -0.3333350464876581], [2.530703292906574, -0.8735794763715256]], "left_eyebrow": [[-1.4122036332853332, -1.2480608113327503], [-1.2256040833802353, -1.3990896575506164], [-1.010871174476084, -1.4696180354838795], [-0.7146628951091896, -1.5008710814529804], [-0.4172847331285275, -1.4512336982662222]], "right_eyebrow": [[0.026052783743674465, -1.56552195818309], [0.41526836740967576, -1.6925120345500888], [0.8332022513816149, -1.6985564280545549], [1.2251475611464073, -1.636802169724549], [1.5778175389470377, -1.4935725409318001]], "nose_bridge": [[-0.19631245028428207, -1.090346454034903], [-0.2205462005707773, -0.9012121584666424], [-0.2312982126646294, -0.7122728433340098], [-0.268623740272512, -0.49598009094483475]], "nose_tip": [[-0.49215885691423616, -0.10169501595250713], [-0.35656155324529243, -0.04971786753821372], [-0.19419575362669028, -0.011612418187819381], [-0.006036360236569336, -0.05478735886454009], [0.18231801358917954, -0.0844805613486176]], "left_eye": [[-1.136914436799259, -0.8609900124586564], [-0.976303461101308, -0.9442202068420508], [-0.7609856108902728, -0.9743033701973841], [-0.5448878389367258, -0.9504595807821448], [-0.7459440292126062, -0.8666444450918666], [-0.9612618794236414, -0.8365612817365331]], "right_eye": [[0.43888908825497164, -0.9916566289682704], [0.6805854735444095, -1.0625749677727894], [0.9236467218832428, -1.0391211392288058], [1.1540061537719448, -0.9615453774786217], [0.9117248271756232, -0.9310722532520322], [0.6825352779006889, -0.9277575858463574]], "top_lip": [[-0.7782281536284779, 0.63060841603404], [-0.6471153999789767, 0.37250558601753997], [-0.3788454991755083, 0.27423380995647884], [-0.17603448497897659, 0.31175431799998937], [0.05276510342470188, 0.2814761742090281], [0.445490334932006, 0.39715738530960665], [0.813591855281559, 0.6750094155931594], [0.7057379497404134, 0.6765692590781829], [0.041818110895221874, 0.4569337511490175], [-0.17388970018706928, 0.4600534381190645], [-0.3765057339479731, 0.43601466826819724], [-0.6838559862799755, 0.6292435529846444]], "bottom_lip": [[0.813591855281559, 0.6750094155931594], [0.4685261144704181, 1.0575675763134953], [0.07911555036878895, 1.171075914487851], [-0.1635557370987886, 1.1745855623291541], [-0.38004346992359145, 1.123778296528628], [-0.6387312412469754, 0.9522203283011974], [-0.7782281536284779, 0.63060841603404], [-0.6838559862799755, 0.6292435529846444], [-0.3700713795722511, 0.8809120286254227], [-0.1535836467474483, 0.9317192944259485], [0.062319144770470805, 0.9420813456485447], [0.7057379497404134, 0.6765692590781829]], "transform": {"center": [102.38888888888889, 443.06944444444446], "scale": 74.16665561277487, "angle": 0.0144615508880873}}, {"chin": [[-1.9145802199860857, -0.7997411144181781], [-1.8790243240250248, -0.2726849269677607], [-1.7864734187353852, 0.21943731807801137], [-1.6399902345982407, 0.7569099249841471], [-1.4101600157150131, 1.2171609581063478], [-1.1276257459967773, 1.5928367284699694], [-0.7776800474942446, 1.8226512682528617], [-0.4626682913963567, 1.9954707987071756], [-0.011605449717377758, 2.006493492618975], [0.44987381141731964, 1.9065888983546906], [0.8604835241855863, 1.6810496379650337], [1.2508666724984967, 1.3372294004246488], [1.549320869078183, 0.9713480959603302], [1.7442014664564303, 0.5644073881292184], [1.8514440705950241, 0.1850469337281072], [1.9427510687718326, -0.2629531774697976], [2.015059730505781, -0.6993086411994874]], "left_eyebrow": [[-1.4537229124078042, -1.369706886804301], [-1.2459694395488452, -1.6277236335736096], [-0.9187067615266616, -1.7760413201793317], [-0.5712175190491218, -1.8060780296343255], [-0.22250004855908523, -1.7061891144703762]], "right_eyebrow": [[0.29413971943561357, -1.6308177222553537], [0.6753346763053021, -1.733785047000712], [1.0651115501621313, -1.7374697310382015], [1.437118315588598, -1.599584142988533], [1.6540756589911139, -1.288257070928135]], "nose_bridge": [[-0.0729541339408668, -1.2490008118292495], [-0.09255874483980725, -0.8972206108581391], [-0.12380800320696275, -0.5644387463298882], [-0.11276963019482845, -0.2053048563841333]], "nose_tip": [[-0.5074437370013094, 0.0888740608023175], [-0.3235858335348614, 0.13299619465018464], [-0.10173125718269421, 0.15382903356162164], [0.11154140218233188, 0.0753792317651901], [0.30152476661092786, -0.04106724291696062]], "left_eye": [[-1.1331919698038493, -1.0173204113771095], [-0.9548532528434684, -1.1527652225021199], [-0.7256449875166567, -1.1625753675017576], [-0.5448498145312826, -1.0381689293888814], [-0.7391241374534492, -0.971363775060665], [-0.9376894188691862, -0.954199941086383]], "right_eye": [[0.4902642239266923, -1.0976360738427884], [0.7108905722663629, -1.2067288595502945], [0.9633881325296048, -1.178542331664213], [1.1558279529831939, -1.0351375571084773], [0.9382643351245974, -1.0063290756659802], [0.7164097587724301, -1.0271619145774171]], "top_lip": [[-0.5993570096341985, 0.8770097255031177], [-0.4106018732180991, 0.6306376262020239], [-0.20897386132128803, 0.5331894879627327], [-0.017762268880195525, 0.5466686378995251], [0.16486740657375587, 0.4608651471284491], [0.3836592524448491, 0.561982290304895], [0.6839636305934479, 0.7960877885813582], [0.5613916949491491, 0.7666730326827801], [0.14709729814339287, 0.6024354192156074], [-0.04717702477877361, 0.6692405735438238], [-0.22674396975165115, 0.6747597600498909], [-0.5043653274199005, 0.8187864881620424]], "bottom_lip": [[0.6839636305934479, 0.7960877885813582], [0.35547272455876755, 0.8144798505681369], [0.11461981176374075, 0.8052916591249151], [-0.09129915862664084, 0.8530984770102719], [-0.2898644400423779, 0.8702623109845541], [-0.44307935959775124, 0.8334938661113315], [-0.5993570096341985, 0.8770097255031177], [-0.5043653274199005, 0.8187864881620424], [-0.23409765872629562, 0.7054027439609656], [-0.03553237731055858, 0.6882389099866835], [0.17038659307982298, 0.6404320921013266], [0.5613916949491491, 0.7666730326827801]], "transform": {"center": [390.5, 365.5], "scale": 44.877147116693294, "angle": 0.5498725348903387}}]},
{"url": "zf12.jpg", "embedding": [[-0.15454746782779694, 0.042556870728731155, -0.0020364094525575638, -0.046801771968603134, -0.18950432538986206, 0.00047728660865686834, -0.05617133900523186, -0.057494863867759705, 0.1130448430776596, -0.03832710534334183, 0.09727547317743301, -0.05050887539982796, -0.23481395840644836, -0.05739052966237068, -0.03656354546546936, 0.1357516646385193, -0.10777424275875092, -0.22015689313411713, -0.05442218482494354, -0.1165614128112793, -0.023346368223428726, 0.047543734312057495, -0.11000806838274002, 0.07216420769691467, -0.1512366235256195, -0.31379687786102295, -0.012048308737576008, -0.04019308090209961, -0.01985783316195011, -0.1659233719110489, -0.02706393226981163, 0.12343554198741913, -0.19243621826171875, -0.06353424489498138, 0.07440660148859024, 0.1868612915277481, -0.029874520376324654, -0.02072523906826973, 0.21443475782871246, 0.07198664546012878, -0.16546975076198578, -0.00511078629642725, 0.026809100061655045, 0.3547344505786896, 0.18291188776493073, -0.03809468075633049, -0.024857722222805023, -0.010617918334901333, 0.20574112236499786, -0.3017001748085022, 0.06547026336193085, 0.24160149693489075, 0.13578173518180847, 0.10780360549688339, 0.013074101880192757, -0.0797644779086113, 0.03297412022948265, 0.18172243237495422, -0.18034109473228455, 0.06330209225416183, 0.068277508020401, -0.1880677491426468, -0.0014615393010899425, -0.08772138506174088, 0.16403421759605408, 0.05928715318441391, -0.04654761031270027, -0.16227757930755615, 0.11179430037736893, -0.1428147554397583, -0.1599612534046173, -0.02274364046752453, -0.08537092059850693, -0.1462574303150177, -0.3671216666698456, 0.09373321384191513, 0.29359468817710876, 0.18251362442970276, -0.2485089749097824, 0.053422536700963974, -0.04381755739450455, -0.021649187430739403, 0.06162179261445999, 0.015081388875842094, -0.05436721071600914, -0.018643269315361977, -0.10619976371526718, 0.006424624472856522, 0.269926518201828, 0.017793362960219383, -0.024769648909568787, 0.13979172706604004, 0.04416755214333534, 0.03517007827758789, 0.09263043850660324, 0.053007740527391434, -0.09617418050765991, -0.05285928398370743, -0.12908999621868134, -0.02345244400203228, 0.02408929355442524, -0.1003962829709053, 0.03231990709900856, 0.1335543692111969, -0.22164760529994965, 0.24233615398406982, -0.017617542296648026, -0.023381195962429047, -0.09246177971363068, -0.019944293424487114, -0.09292332082986832, 0.0019311229698359966, 0.16863597929477692, -0.22300051152706146, 0.24924862384796143, 0.18479831516742706, 0.049070559442043304, 0.17075859010219574, 0.07603859156370163, -0.004515036009252071, -0.04554487764835358, -0.018211502581834793, -0.0677109882235527, -0.14591504633426666, 0.07675649970769882, 0.030508141964673996, 0.034005507826805115, 0.08463191986083984], [-0.2846565246582031, 0.1380799114704132, 0.06565900892019272, -0.03372364118695259, -0.19043229520320892, 0.008893056772649288, -0.027955537661910057, -0.03257067874073982, 0.12136422097682953, -0.020644765347242355, 0.19380836188793182, 0.003338184207677841, -0.22413313388824463, -0.01851603575050831, 0.020207663998007774, 0.13069294393062592, -0.2178197205066681, -0.16749298572540283, 0.00904389750212431, -0.03899189829826355, 0.05790906399488449, 0.10086622089147568, -0.009931588545441628, 0.0964682325720787, -0.1715669184923172, -0.3261427879333496, -0.07778961956501007, -0.07313653826713562, 0.02274646796286106, -0.07730559259653091, 0.036311905831098557, -0.006543286610394716, -0.15765194594860077, -0.03952735289931297, 0.01561524998396635, 0.106283038854599, -0.08535511046648026, -0.06446845084428787, 0.2773614823818207, 0.050112832337617874, -0.1846022754907608, -0.019941190257668495, 0.04793528839945793, 0.38924723863601685, 0.11627071350812912, 0.010685844346880913, 0.010070276446640491, 0.036073051393032074, 0.11464501172304153, -0.2772395610809326, 0.08914348483085632, 0.2213156372308731, 0.14419236779212952, 0.07421968132257462, -0.002222254406660795, -0.06479395925998688, 0.04273862764239311, 0.20118623971939087, -0.20924484729766846, 0.12885212898254395, 0.10763869434595108, -0.18066948652267456, 0.09147989749908447, -0.025461731478571892, 0.2385881245136261, 0.0762745812535286, -0.0928424820303917, -0.1400110423564911, 0.020166296511888504, -0.10629153251647949, -0.17206008732318878, 0.07027899473905563, -0.1213846430182457, -0.19820471107959747, -0.33330801129341125, 0.10114098340272903, 0.36071616411209106, 0.11867733299732208, -0.15959253907203674, 0.006444938015192747, -0.03978627920150757, -0.05508733540773392, 0.09263100475072861, 0.12498065829277039, -0.061530690640211105, -0.08306451886892319, -0.17028366029262543, 0.022873295471072197, 0.2649414837360382, -0.013085663318634033, -0.04983912780880928, 0.23757541179656982, 0.10396083444356918, 0.009213044308125973, 0.038774192333221436, 0.07557102292776108, -0.056472886353731155, -0.01907363347709179, -0.025582648813724518, 0.03800361603498459, 0.021447230130434036, -0.06357859075069427, 0.0043353913351893425, 0.08683823049068451, -0.1917034387588501, 0.15827594697475433, 0.012118799611926079, -0.01569112204015255, -0.0802445113658905, -0.029729746282100677, -0.16351954638957977, -0.04587960243225098, 0.1286562979221344, -0.25240257382392883, 0.2149347960948944, 0.1865687519311905, -0.004143421072512865, 0.184092178940773, 0.0906655490398407, 0.015291373245418072, -0.027632782235741615, 0.0035695910919457674, -0.05822913348674774, -0.0843227431178093, 0.13127422332763672, 0.012226332910358906, 0.12376249581575394, 0.07726847380399704], [-0.193690687417984, 0.08951248973608017, 0.027571706101298332, -0.03882896527647972, -0.2170507162809372, 0.02644745633006096, -0.014809839427471161, 0.013234715908765793, 0.10891803354024887, -0.04061795771121979, 0.17869597673416138, -0.07793250679969788, -0.25802353024482727, 0.05989036709070206, -0.05823184549808502, 0.13241007924079895, -0.21436022222042084, -0.12103891372680664, -0.05044323578476906, -0.055951785296201706, 0.019610844552516937, 0.10751525312662125, -0.06566523760557175, 0.05335679650306702, -0.11030695587396622, -0.3188243806362152, -0.06446048617362976, -0.025076206773519516, 0.10016437619924545, -0.10964661091566086, -0.005174377467483282, 0.10321671515703201, -0.1349058896303177, -0.035208020359277725, 0.07269979268312454, 0.051170945167541504, -0.045010123401880264, -0.0915234386920929, 0.2292032092809677, 0.06997016072273254, -0.17749416828155518, -0.0448584221303463, -0.026741622015833855, 0.33567458391189575, 0.09442224353551865, 0.009222866035997868, 0.011064174585044384, -0.0016708760522305965, 0.041638098657131195, -0.33902958035469055, 0.1251429170370102, 0.2134457230567932, 0.07671070843935013, 0.05307237058877945, 0.0488508902490139, -0.16700421273708344, -0.0352323018014431, 0.15332025289535522, -0.1423937976360321, 0.1107155904173851, 0.06629689782857895, -0.1158454641699791, 0.023359568789601326, -0.10279197245836258, 0.11073674261569977, 0.0960860401391983, -0.06598154455423355, -0.18411675095558167, 0.13596586883068085, -0.13703536987304688, -0.11128608882427216, 0.06700114160776138, -0.0436590239405632, -0.216322124004364, -0.2789870500564575, 0.1021663248538971, 0.332732617855072, 0.23894648253917694, -0.18207480013370514, 0.01559562236070633, 0.03278186544775963, -0.054467689245939255, 0.09142635762691498, 0.11654608696699142, -0.109970822930336, 0.02321658469736576, -0.09180447459220886, 0.04986175149679184, 0.1722092479467392, 0.007048065308481455, -0.10357338190078735, 0.2674838900566101, 0.037366319447755814, -0.009970296174287796, 0.10046029835939407, 0.06185738369822502, -0.0015094908885657787, -0.06673452258110046, -0.06265605986118317, 0.0046495599672198296, 0.1536170095205307, -0.10571487993001938, -0.028833646327257156, 0.15334518253803253, -0.1451815962791443, 0.16296085715293884, -0.08297416567802429, -0.029255518689751625, -0.0905521810054779, -0.05574938654899597, -0.09771512448787689, 0.04901004210114479, 0.19326134026050568, -0.24678955972194672, 0.1652466058731079, 0.18837109208106995, -0.010121195577085018, 0.18962542712688446, 0.1018005833029747, -0.010590903460979462, 0.058078862726688385, -0.07459616661071777, -0.09738694131374359, -0.14745047688484192, 0.08944318443536758, -0.0007052096188999712, 0.024020114913582802, 0.061285488307476044], [-0.12242096662521362, -0.0023652103263884783, 0.05449763685464859, -0.059527743607759476, -0.11481612175703049, -0.0662245973944664, -0.011483109556138515, -0.17922049760818481, 0.15277144312858582, -0.11096006631851196, 0.08200555294752121, -0.06942882388830185, -0.2658650577068329, -0.013269906863570213, -0.023803144693374634, 0.1619085967540741, -0.11112945526838303, -0.24726340174674988, -0.08078271150588989, -0.07352207601070404, 0.0014278567396104336, 0.012775889597833157, 0.038174159824848175, 0.1137852817773819, -0.1334380805492401, -0.29450201988220215, -0.11216659098863602, -0.10195845365524292, -0.09366670250892639, 0.030286172404885292, 0.1054111123085022, 0.14534251391887665, -0.09542979300022125, 0.023540768772363663, 0.05662558600306511, 0.06753835827112198, -0.04878344014286995, -0.18730907142162323, 0.2141968309879303, 0.04669934883713722, -0.265956312417984, -0.05785653367638588, 0.026135746389627457, 0.3060378134250641, 0.28003349900245667, -0.0932534709572792, 0.023997114971280098, -0.07601623982191086, 0.24791152775287628, -0.3620283603668213, -0.08409027755260468, 0.16300570964813232, 0.008442399092018604, 0.010725673288106918, 0.14481502771377563, -0.15275351703166962, 0.13597233593463898, 0.13372649252414703, -0.2337222546339035, 0.004169770982116461, 0.003784974804148078, -0.13116449117660522, 0.0008012165199033916, -0.10579895973205566, 0.18451303243637085, 0.14229878783226013, -0.13180147111415863, -0.10338085144758224, 0.232487753033638, -0.15533104538917542, -0.010647797957062721, 0.12488562613725662, -0.20165212452411652, -0.2284996211528778, -0.21606013178825378, -0.012142280116677284, 0.46969419717788696, 0.1032167375087738, -0.14487513899803162, 0.046193551272153854, 0.012337385676801205, 0.06473014503717422, 0.04052456095814705, 0.15986256301403046, -0.05446963757276535, -0.0805443599820137, -0.12508012354373932, -0.05048845708370209, 0.22057054936885834, -0.04297332465648651, -0.02913069725036621, 0.2708050310611725, -0.0051332940347492695, -0.042322758585214615, 0.11785882711410522, 0.08341705054044724, -0.11242130398750305, 0.021891355514526367, -0.1644565314054489, 0.011307653971016407, 0.024711694568395615, -0.09850475192070007, 0.028748031705617905, 0.056130774319171906, -0.11781957000494003, 0.15457969903945923, -0.05392720177769661, 0.010222476907074451, -0.08294083923101425, -0.13095876574516296, -0.05286167934536934, 0.06170970946550369, 0.15264590084552765, -0.2112898975610733, 0.10694245249032974, 0.10162524878978729, 0.0056548938155174255, 0.1547727882862091, -0.01121368445456028, 0.05943102017045021, -0.08215676993131638, -0.02250993438065052, -0.12272273749113083, -0.055963777005672455, 0.047345295548439026, -0.010194563306868076, -0.05347644165158272, -0.006532648112624884], [-0.09018579870462418, 0.2015686184167862, 0.04698058217763901, -0.05076247453689575, -0.09217551350593567, 0.08525404334068298, -0.0996791422367096, -0.027427108958363533, 0.1641463339328766, -0.028639312833547592, 0.1489059180021286, -0.08188740909099579, -0.24589785933494568, -0.02712578885257244, -0.06857671588659286, 0.14698843657970428, -0.16703452169895172, -0.08303765952587128, -0.05428165942430496, -0.013859167695045471, 0.0515097975730896, 0.09077814221382141, -0.009616613388061523, 0.0637398436665535, -0.16301722824573517, -0.3052918612957001, -0.01799897477030754, -0.10907809436321259, 0.017783615738153458, -0.1351419985294342, -0.06054363027215004, 0.002015314996242523, -0.20155443251132965, -0.039485082030296326, -0.03471191227436066, 0.07514960318803787, -0.061817068606615067, -0.11151453107595444, 0.20526890456676483, 0.05185564607381821, -0.07696666568517685, -0.0002677321608643979, -0.06002293899655342, 0.2983006238937378, 0.15575869381427765, -0.08772654831409454, -0.013944162987172604, -0.03498189151287079, 0.15269117057323456, -0.2691604495048523, 0.04836661368608475, 0.16764384508132935, 0.1668371856212616, 0.14903829991817474, 0.031192446127533913, -0.08408823609352112, 0.0905388817191124, 0.16931766271591187, -0.320137083530426, 0.08355449885129929, 0.04302909970283508, -0.08619372546672821, 0.042453523725271225, -0.06639671325683594, 0.1506517231464386, 0.10285212844610214, -0.04939278960227966, -0.16191965341567993, 0.08951719105243683, -0.10034402459859848, -0.019374001771211624, 0.011222588829696178, -0.06298352032899857, -0.23016931116580963, -0.3136647343635559, 0.0672001987695694, 0.21310283243656158, 0.2639372646808624, -0.24359896779060364, 0.01989307999610901, -0.05743149667978287, -0.08462399244308472, 0.0706825703382492, -0.012476454488933086, -0.022617435082793236, -0.03510785847902298, -0.07295321673154831, 0.0806216150522232, 0.18547223508358002, -0.053692109882831573, -0.05178358778357506, 0.25199127197265625, 0.03298932686448097, -0.015247701667249203, 0.016632534563541412, -0.010391982272267342, -0.07691863179206848, 0.05427100509405136, -0.07569580525159836, 0.1403924971818924, -0.044669412076473236, -0.10104614496231079, -0.0007323076715692878, 0.03737851604819298, -0.1609411984682083, 0.17856134474277496, 0.0474855899810791, -0.058301523327827454, -0.09571611881256104, -0.06980610638856888, -0.24061115086078644, 0.018454017117619514, 0.24615448713302612, -0.2914987802505493, 0.2538161873817444, 0.13141921162605286, 0.06558884680271149, 0.18336103856563568, 0.06057609245181084, 0.022866712883114815, 0.018542833626270294, -0.049625471234321594, -0.10203664004802704, -0.09639447927474976, 0.1278551071882248, -0.015587788075208664, 0.04784449189901352, 0.0938224196434021], [-0.11937837302684784, 0.0655050128698349, 0.054866742342710495, -0.06607247143983841, -0.13021378219127655, 0.01014246977865696, 0.04107316583395004, -0.07310913503170013, 0.1537466049194336, -0.07069064676761627, 0.20425130426883698, -0.07683862000703812, -0.30575159192085266, -0.03085269220173359, -0.005012683104723692, 0.1452026069164276, -0.1189160868525505, -0.1461292803287506, -0.18050122261047363, -0.1785457581281662, 0.054283205419778824, 0.036859188228845596, -0.055341631174087524, 0.05868158116936684, -0.18276573717594147, -0.2627381384372711, 0.02072783000767231, -0.08090735226869583, 0.10843343287706375, -0.10360225290060043, 0.028284508734941483, 0.11715357005596161, -0.12630082666873932, -0.038168102502822876, 0.026372548192739487, 0.06266681104898453, -0.08419005572795868, -0.01094371359795332, 0.3003317713737488, -0.0123817203566432, -0.22408010065555573, 0.02724403515458107, 0.05326297506690025, 0.25735050439834595, 0.22911907732486725, 0.04134969785809517, 0.045658182352781296, -0.040407951921224594, 0.1973346620798111, -0.2755829393863678, 0.023257775232195854, 0.18793170154094696, 0.12120552361011505, 0.1143849641084671, 0.03609961271286011, -0.22507838904857635, -0.0012925185728818178, 0.17598363757133484, -0.1868005394935608, 0.11020080745220184, 0.08732661604881287, -0.24881820380687714, -0.04417818412184715, -0.02028866671025753, 0.16416797041893005, 0.04910251125693321, -0.07681126147508621, -0.20357158780097961, 0.2381254881620407, -0.1738426834344864, -0.09681306779384613, 0.14349383115768433, -0.10182654112577438, -0.06717929244041443, -0.2515890598297119, 0.0032236198894679546, 0.405499666929245, 0.08153864741325378, -0.20281997323036194, -0.012420631013810635, -0.04370211809873581, -0.011764992959797382, 0.08790425211191177, 0.04578220471739769, -0.07503337413072586, -0.1427815556526184, -0.11593855917453766, -0.05343695357441902, 0.249945729970932, 0.008739725686609745, -0.020203765481710434, 0.20178350806236267, 0.11293325573205948, 0.019050270318984985, 0.04034559056162834, 0.04132016748189926, -0.17210660874843597, -0.029325341805815697, -0.06198509410023689, -0.053063441067934036, 0.019651062786579132, -0.09772374480962753, 0.046457331627607346, 0.08286307752132416, -0.1832311451435089, 0.34694716334342957, -0.06088710576295853, 0.08942301571369171, -0.061485666781663895, 0.0013891541166231036, 0.0020376783795654774, 0.07914618402719498, 0.19613772630691528, -0.20463021099567413, 0.21393609046936035, 0.17643362283706665, 0.06873827427625656, 0.10390618443489075, 0.07006904482841492, 0.03648938238620758, -0.008013196289539337, 0.040552977472543716, -0.2294648289680481, -0.1267980933189392, 0.03387780860066414, -0.10901955515146255, 0.07589643448591232, 0.08249682933092117]], "landmarks": [{"chin": [[-2.075352733190411, -0.9252488109950504], [-2.0051376192535804, -0.38534134362212524], [-1.9317166462964264, 0.06511585569203278], [-1.8615015323595954, 0.6050233230649579], [-1.6986302913436748, 1.0586863813994387], [-1.4431029232486643, 1.426105030695475], [-1.0054691600157968, 1.7104851299733896], [-0.47517926970383983, 1.9086208202128598], [0.06152233864876264, 1.9278559743347958], [0.5119795379629207, 1.854435001377642], [0.9656425962974013, 1.6915637603617215], [1.3330612455934379, 1.436036392266711], [1.6174413448713523, 0.9984026290338437], [1.7229209080317327, 0.554357147760331], [1.8284004711921131, 0.11031166648681832], [1.9370858933728163, -0.42318408284546144], [1.9531151884744298, -0.8704354231392968]], "left_eyebrow": [[-1.6120720977949623, -1.3564708561872723], [-1.4235539846164602, -1.6184099423229281], [-1.0625470533610692, -1.6950367743004047], [-0.7047459811260008, -1.6822133382191138], [-0.35015076791125527, -1.579939634079056]], "right_eyebrow": [[0.3654513765588813, -1.5542927619164744], [0.729664166834595, -1.720369861952718], [1.0874652390696633, -1.7075464258714272], [1.3526101842256417, -1.6084785807516921], [1.6113434113409748, -1.3305101995144228]], "nose_bridge": [[0.08107127728096672, -1.1166589986836073], [0.068247841199676, -0.758857926448539], [0.05863026413870796, -0.49050712227223775], [0.04580682805741723, -0.13270605003716943]], "nose_tip": [[-0.3216118212386191, 0.12282131805784104], [-0.14271128512108494, 0.1292330360984864], [0.03298339197612651, 0.22509502219789887], [0.21508978711398336, 0.14205647217977713], [0.3939903232315175, 0.14846819022042249]], "left_eye": [[-1.1776441935824176, -0.9826404888505906], [-0.9955377984445608, -1.0656790388687123], [-0.7271869942682596, -1.0560614618077442], [-0.4620420491122811, -0.9569936166880092], [-0.7335987123089049, -0.8771609256902102], [-1.0019495164852061, -0.8867785027511782]], "right_eye": [[0.5219108995341568, -0.9217291674644598], [0.7072231536923362, -1.0942179855413485], [0.9755739578686374, -1.0846004084803804], [1.1480627759455264, -0.899288154322201], [0.9691622398279921, -0.9056998723628463], [0.6976055766313682, -0.8258671813650472]], "top_lip": [[-0.7880983156543906, 0.64349363130883], [-0.42709138439899963, 0.5668667993313536], [-0.15553472120237566, 0.4870341083335547], [0.023365814915158465, 0.49344582637420004], [0.20226635103269264, 0.4998575444148454], [0.46741129618867117, 0.5989253895345804], [0.7325562413446496, 0.6979932346543156], [0.6431059732858826, 0.694787375633993], [0.19906049201236994, 0.5893078124736124], [0.016954096874513106, 0.6723463624917342], [-0.16194643924302102, 0.6659346444510887], [-0.6091977795368565, 0.6499053493494754]], "bottom_lip": [[0.7325562413446496, 0.6979932346543156], [0.4577937191277031, 0.8672761937108817], [0.18944291495140192, 0.8576586166499137], [0.007336519813545057, 0.9406971666680355], [-0.17156401630398907, 0.93428544862739], [-0.4367089614599677, 0.835217603507655], [-0.7880983156543906, 0.64349363130883], [-0.6091977795368565, 0.6499053493494754], [-0.16194643924302102, 0.6659346444510887], [0.016954096874513106, 0.6723463624917342], [0.19585463299204728, 0.6787580805323795], [0.6431059732858826, 0.694787375633993]], "transform": {"center": [425.5416666666667, 250.5], "scale": 11.172223430852467, "angle": -0.03582423543090174}}, {"chin": [[-2.111152444777516, -1.1035823629526855], [-2.0593221896519647, -0.5946980630425331], [-2.007491934526414, -0.08581376313238079], [-1.950312955910137, 0.3391479407078672], [-1.8145601047146815, 0.8533809641087451], [-1.5056133378886918, 1.2943888384211697], [-1.1073952515020715, 1.6568228401544156], [-0.5359832494849169, 1.946031692799208], [-0.03779639655621564, 2.062046629813466], [0.5550104994238412, 2.0155650981786404], [0.9960183737362658, 1.7066183313526502], [1.3584523754695115, 1.3084002449660301], [1.5530411850629484, 0.899484711597959], [1.6690561220772064, 0.40129785866925766], [1.7850710590914642, -0.0968889942594436], [1.811814676545092, -0.5165019746089661], [1.759984421419541, -1.0253862745191185]], "left_eyebrow": [[-1.6754932939558167, -1.3286065337087711], [-1.4076793352739267, -1.5643281514463077], [-0.9827176314336789, -1.6215071300625845], [-0.6470272471540609, -1.6001122360996822], [-0.23811171378598972, -1.4055234265062453]], "right_eyebrow": [[0.26542386263343715, -1.373431085561892], [0.6118116938945062, -1.5198813837387988], [1.0367733977347542, -1.5770603623550752], [1.3671150585236465, -1.4717428723222685], [1.6081853997519087, -1.287851509710283]], "nose_bridge": [[-0.007738819539178543, -1.053786871754451], [0.054788882567823646, -0.7127477639841073], [0.12266530816555142, -0.4556312522836684], [0.10127041420264915, -0.1199408680040505]], "nose_tip": [[-0.3397374601097755, 0.18900589882193952], [-0.08796967190006208, 0.20505206929411623], [0.07987552023974687, 0.21574951627556738], [0.24772071237955579, 0.2264469632570185], [0.42091462801009033, 0.15322181416856517]], "left_eye": [[-1.1933526114992923, -0.9608238084847999], [-1.0148099723780322, -1.1179715536431578], [-0.7630421841683188, -1.101925383170981], [-0.5219718429400566, -0.9180340205589953], [-0.77373963114977, -0.934080191031172], [-1.0255074193594833, -0.9501263615033487]], "right_eye": [[0.4904480333895227, -0.9377719347401929], [0.7475645450899616, -1.005648360337921], [1.0046810567904008, -1.0735247859356485], [1.167177525439484, -0.978904742884293], [0.9939836098089495, -0.9056795937958395], [0.742215821599236, -0.9217257642680162]], "top_lip": [[-0.8753653774735557, 0.6604491342970129], [-0.45040367363330785, 0.6032701556807364], [-0.10936456586296435, 0.5407424535737342], [0.053131902786119026, 0.6353624966250898], [0.31024841448655804, 0.567486071027362], [0.5620162026962715, 0.5835322414995388], [0.8977065869758893, 0.604927135462441], [0.7245126713453548, 0.6781522845508944], [0.2995509675051069, 0.7353312631671709], [0.04778317929539346, 0.7192850926949942], [-0.12006201284441548, 0.708587645713543], [-0.7075201853337468, 0.671146581278464]], "bottom_lip": [[0.8977065869758893, 0.604927135462441], [0.5459700322240948, 0.8353000297092521], [0.28885352052365576, 0.9031764553069799], [0.12100832838384679, 0.8924790083255287], [-0.13075945982586662, 0.876432837853352], [-0.4664498441054845, 0.8550379438904497], [-0.8753653774735557, 0.6604491342970129], [-0.7075201853337468, 0.671146581278464], [-0.12006201284441548, 0.708587645713543], [0.04778317929539346, 0.7192850926949942], [0.2995509675051069, 0.7353312631671709], [0.7245126713453548, 0.6781522845508944]], "transform": {"center": [173.88888888888889, 284.5], "scale": 11.891614433169304, "angle": -0.06364792232876203}}, {"chin": [[-1.9071213232932154, -0.9717401084448929], [-1.8671027804533926, -0.429410407885208], [-1.8189161715724684, 0.023892353588046283], [-1.770729562691544, 0.4771951150613006], [-1.6335160147241892, 0.938665942575656], [-1.4072755276704039, 1.408304836131113], [-0.9866450303615546, 1.7162259835959113], [-0.4688195279251737, 1.9432882580153799], [0.057174040552308625, 2.081323593348418], [0.6076718071530948, 1.9522781114221648], [1.0773107007085516, 1.7260376243683795], [1.466090721218679, 1.402602132187062], [1.7658438026423762, 1.0709985739646435], [1.9038791379754145, 0.5450050054871612], [2.0337464072673517, 0.10803837609610947], [2.0827548035139594, -0.42612325842247406], [2.0345681946330347, -0.8794260198957286]], "left_eyebrow": [[-1.6073682418695185, -1.3033436666673115], [-1.3157832264869227, -1.5459202858032994], [-1.04053434318653, -1.6104430267664263], [-0.6844265868408073, -1.577770762602021], [-0.34465496257728756, -1.3670446202647546]], "right_eyebrow": [[0.19767473798239732, -1.4070631631045776], [0.5701186264103223, -1.5524447771130336], [0.9425625148382473, -1.69782639112149], [1.379529144229299, -1.5679591218295528], [1.630273829406388, -1.3654010455333878]], "nose_bridge": [[-0.013051404354868998, -1.067291538841058], [-0.03755560247817283, -0.8002107215817661], [-0.07022786664257795, -0.4441029652360436], [-0.09473206476588178, -0.17702214797675178]], "nose_tip": [[-0.3944851461895787, 0.15458141024566674], [-0.21643126801671747, 0.1709175423278693], [-0.04654545588495758, 0.27628061349650246], [0.1396764883290049, 0.2035898064922744], [0.32589843254296735, 0.13089899948804637]], "left_eye": [[-1.1867377445606693, -0.9954225192025132], [-0.9923477343056056, -1.157140265293172], [-0.7252669170463137, -1.132636067169868], [-0.4745222318692246, -0.930077990873703], [-0.7416030491285163, -0.9545821889970069], [-0.9278249933424787, -0.8818913819927788]], "right_eye": [[0.5129421641226133, -0.9292562035080195], [0.707332174377677, -1.090973949598678], [0.9825810576780702, -1.155496690561805], [1.144298803768729, -0.9611066803067414], [0.9580768595547664, -0.8884158733025131], [0.7800229813819051, -0.9047520053847157]], "top_lip": [[-0.7996012987819088, 0.6560707805998452], [-0.5161843494404145, 0.502521100550288], [-0.2491035321811226, 0.5270252986735918], [-0.07104965400826142, 0.5433614307557944], [0.20419922929213166, 0.47883868979266747], [0.4631119805103222, 0.592369827002402], [0.8192197368560447, 0.6250420911668071], [0.730192797769614, 0.6168740251257059], [0.1878630972099291, 0.6568925679655288], [-0.0792177200493627, 0.6323883698422249], [-0.2572715982222239, 0.6160522377600224], [-0.7105743596954781, 0.6642388466409465]], "bottom_lip": [[0.8192197368560447, 0.6250420911668071], [0.5358027875145501, 0.7785917712163644], [0.17152696512772653, 0.8349464461383899], [-0.014694979086235932, 0.9076372531426179], [-0.28177579634552774, 0.8831330550193142], [-0.5406885475637183, 0.7696019178095796], [-0.7996012987819088, 0.6560707805998452], [-0.7105743596954781, 0.6642388466409465], [-0.2572715982222239, 0.6160522377600224], [-0.08738578609046398, 0.7214153089286555], [0.1878630972099291, 0.6568925679655288], [0.730192797769614, 0.6168740251257059]], "transform": {"center": [549.2361111111111, 274.875], "scale": 11.185575132704741, "angle": -0.09149210675144358}}, {"chin": [[-2.3072072300647997, -1.103429291197257], [-2.300530491144203, -0.5745784957426702], [-2.2057119529811744, -0.046840490108182635], [-2.1120062046382455, 0.3927557162838736], [-1.9290458672327864, 0.9193809320982615], [-1.5709147211625645, 1.3556387690300193], [-1.0387255562476791, 1.613387427836716], [-0.5065363913327936, 1.8711360866434126], [0.023427193941892827, 1.9526011469652467], [0.5511651995763802, 1.8577826088022185], [0.899281237265707, 1.500764252552096], [1.2473972749550335, 1.143745896301973], [1.507371513401929, 0.7878403298719502], [1.5899493635438626, 0.3460185438396948], [1.6725272136857965, -0.09580324219256044], [1.7562178536478297, -0.4494832289823845], [1.662512105304901, -0.8890794353744408]], "left_eyebrow": [[-1.6935530048280798, -1.3756442176652468], [-1.3420985976784547, -1.4682371761880761], [-0.9895314007087302, -1.472688335468474], [-0.6358514139189061, -1.388997695506441], [-0.2810586373089825, -1.2171652563019768]], "right_eyebrow": [[0.5122175558728979, -1.2271803646828723], [0.7744173739599924, -1.4068023326280328], [1.1258717811096175, -1.4993952911508621], [1.3914099686570107, -1.4145918613687292], [1.5688063569619721, -1.328675641766497]], "nose_bridge": [[0.16298872836347178, -0.9583038076751806], [0.16632709782377028, -0.6938784099478871], [0.17077825710416825, -0.34131121297816247], [0.17411662656446675, -0.07688581525086902]], "nose_tip": [[-0.2643667900074901, 0.10496173233449077], [-0.08697040170252825, 0.19087795193672294], [0.17745499602476522, 0.18753958247642444], [0.3537385945096276, 0.18531400283622546], [0.5289094031743903, 0.09494662395359531]], "left_eye": [[-1.335421858757858, -0.9393863807334892], [-1.072109250850664, -1.0308665494362188], [-0.8076838531233705, -1.0342049188965172], [-0.6291746749983091, -0.8601469000518539], [-0.8054582734831716, -0.8579213204116549], [-1.0698836712104651, -0.8545829509513564]], "right_eye": [[0.6048105143957271, -0.8757259575332469], [0.8670103324828216, -1.0553479254784077], [1.043293930967684, -1.0575735051186066], [1.3099449083351764, -0.8846282760940428], [1.045519510607883, -0.8812899066337443], [0.8692359121230205, -0.8790643269935453]], "top_lip": [[-1.0520790340888733, 0.555685836927542], [-0.6124828276968167, 0.46198008858461337], [-0.1728866213047604, 0.3682743402416847], [0.09265156624263256, 0.4530777700238174], [0.35596417414982656, 0.36159760132108776], [0.7096441609396507, 0.44528824128312094], [0.9751823484870437, 0.5300916710652536], [0.8870405492446125, 0.5312044608853531], [0.35818975379002554, 0.5378811998059501], [0.09487714588283155, 0.6293613685086799], [-0.1706610416645614, 0.544557938726547], [-0.8757954356040106, 0.553460257287343]], "bottom_lip": [[0.9751823484870437, 0.5300916710652536], [0.7152081100401482, 0.8859972374952767], [0.3648664927106225, 1.066731995260537], [0.10155388480342853, 1.1582121639632665], [-0.16398430274396442, 1.073408734181134], [-0.6069188785963192, 0.9026890847967691], [-1.0520790340888733, 0.555685836927542], [-0.8757954356040106, 0.553460257287343], [-0.16732267220426292, 0.8089833364538406], [0.09821551534313004, 0.8937867662359732], [0.361528123250324, 0.8023065975332436], [0.8870405492446125, 0.5312044608853531]], "transform": {"center": [41.013888888888886, 313.84722222222223], "scale": 11.344450905972694, "angle": 0.012624324810746344}}, {"chin": [[-1.8433573576007891, -1.173670765753473], [-1.874955987954882, -0.6229912243684609], [-1.8147746947448062, -0.06704524459109962], [-1.7545934015347306, 0.4889007351862616], [-1.597365746368137, 0.9583332297918028], [-1.348358167637375, 1.433032162789693], [-0.9105243033859266, 1.8264840490081122], [-0.5592039243062982, 2.122889573270013], [-0.013790821313634585, 2.246268127188275], [0.4556416732919067, 2.0890404720216815], [0.930340606289797, 1.8400328932909196], [1.323792492508216, 1.4021990290394712], [1.625464455162466, 0.9590987263956743], [1.8353564942525478, 0.5107319853595281], [1.8669551246066407, -0.03994755602548421], [1.8985537549607336, -0.5906270974104967], [1.9301523853148266, -1.141306638795509]], "left_eyebrow": [[-1.562751148515934, -1.2496513741405955], [-1.3633919862105501, -1.514458268048404], [-0.9910058535615264, -1.5851724380431773], [-0.6291525976972003, -1.4723267609096136], [-0.2672993418328742, -1.3594810837760494]], "right_eyebrow": [[0.19686671438031822, -1.424928815378474], [0.5745192854216908, -1.587422908937416], [0.9416389796783657, -1.566357155368021], [1.3087586739350405, -1.5452914017986255], [1.5682991294505004, -1.254152315929073]], "nose_bridge": [[-0.007758886317414483, -1.0683419979064968], [-0.023558201494460952, -0.7930022272139906], [0.04715596850031249, -0.42061609456496685], [0.03135665332326602, -0.14527632387246062]], "nose_tip": [[-0.4433422796746241, 0.10373125485830145], [-0.17326894737446674, 0.21131049359951665], [0.010290899753870743, 0.22184337038421428], [0.19911718527455702, 0.1405963236047432], [0.3826770324028945, 0.15112920038944083]], "left_eye": [[-1.1143844074797882, -1.0397593350505139], [-0.9255581219591018, -1.121006381829985], [-0.6502183512665957, -1.1052070666529386], [-0.4719249425306069, -1.002894266304072], [-0.6607512280512933, -0.921647219524601], [-0.9360909987437994, -0.9374465347016475]], "right_eye": [[0.4458742931110804, -0.9502298823805839], [0.7317469405882842, -1.1179904143318748], [0.9153067877166217, -1.1074575375471774], [1.0936001964526103, -1.0051447371983109], [0.904773910931924, -0.9238976904188397], [0.7212140638035865, -0.9344305672035375]], "top_lip": [[-0.9285740894572118, 0.536298680717401], [-0.5614543952005369, 0.5573644342867963], [-0.2861146245080307, 0.5731637494638427], [-0.010774853815524538, 0.5889630646408892], [0.2698313552693305, 0.5129824562537669], [0.6369510495260053, 0.5340482098231621], [0.9122908202185116, 0.5498475250002086], [0.8205108966543428, 0.5445810866078599], [0.2645649168769817, 0.6047623798179357], [-0.016041292207873356, 0.6807429882050579], [-0.2913810629003796, 0.6649436730280114], [-0.8367941658930431, 0.5415651191097498]], "bottom_lip": [[0.9122908202185116, 0.5498475250002086], [0.621151734348959, 0.8093879805156683], [0.2434991633075864, 0.9718820740746106], [-0.03710704577726864, 1.0478626824617328], [-0.2154004545132573, 0.9455498821128665], [-0.5772537103775833, 0.8327042049793025], [-0.9285740894572118, 0.536298680717401], [-0.8367941658930431, 0.5415651191097498], [-0.20486757772855965, 0.761990034984529], [-0.026574168992571007, 0.8643028353333955], [0.25403204009228403, 0.7883222269462731], [0.8205108966543428, 0.5445810866078599]], "transform": {"center": [295.75, 255.59722222222223], "scale": 10.877735749266215, "angle": -0.057318305496718444}}, {"chin": [[-1.8116599915764107, -0.9712358438555135], [-1.762779254554632, -0.5156248187521626], [-1.7138985175328532, -0.06001379364881154], [-1.6650177805110742, 0.3955972314545396], [-1.534212333159629, 0.8742019932854013], [-1.2984884387510076, 1.2938757815141073], [-0.9578460972852096, 1.6546185961406583], [-0.512285308762235, 1.956430437165054], [0.0022566899432715504, 2.0124681472004515], [0.4578677150466225, 1.9635874101786723], [0.9005352400028394, 1.6459388054403852], [1.2612780546293902, 1.305296463974587], [1.5400961589262754, 0.9416603857812784], [1.7829770263485154, 0.3911811502011271], [1.839014736383913, -0.12336084850437934], [1.9769771567489767, -0.6149091104823751], [2.033014866784374, -1.1294511091878814]], "left_eyebrow": [[-1.6377603343367027, -1.2759409484466668], [-1.404929703494839, -1.4757276059806437], [-1.0312433887211536, -1.5476020797299332], [-0.6805508106749791, -1.5375518431495567], [-0.3528519693563154, -1.4455768962395144]], "right_eyebrow": [[0.3715269234635441, -1.5074011334084274], [0.6862822646350738, -1.6841940542148937], [1.0369748426812484, -1.6741438176345174], [1.364673683999912, -1.582168870724475], [1.564460341533889, -1.349338239882611]], "nose_bridge": [[-0.012209627890517383, -1.0848340816129636], [0.059664845858772186, -0.7111477668392784], [0.04961460927839577, -0.36045518879310384], [0.039564372698019365, -0.009762610746929407]], "nose_tip": [[-0.35711567880317635, 0.14403657333202613], [-0.1932662581438444, 0.19002404678704732], [0.05250787284515354, 0.2590052569695791], [0.23935103023199608, 0.22306802009493432], [0.4491879243463492, 0.10520607289062359]], "left_eye": [[-1.1692058090862172, -1.0560538177519374], [-0.9823626516993746, -1.091991054626582], [-0.7955194943125321, -1.127928291501227], [-0.4678206529938684, -1.0359533445911846], [-0.7365885207103771, -1.0230098444440503], [-1.0053563884268852, -1.0100663442969162]], "right_eye": [[0.584257081144655, -1.0058026348500553], [0.7121692649293423, -1.1466583187818764], [0.9809371326458507, -1.1596018189290107], [1.2267112636348485, -1.090620608746479], [1.039868106248006, -1.054683371871834], [0.7711002385314976, -1.0417398717247002]], "top_lip": [[-0.8687644139419249, 0.7074593090593115], [-0.5540090727703952, 0.5306663882528454], [-0.2852412050538867, 0.5177228881057112], [-0.016473337337378255, 0.504779387958577], [0.17036982004946427, 0.46884215108393223], [0.4980686613681282, 0.5608170979939746], [0.7208490556296154, 0.7117230185061725], [0.6389243452999495, 0.6887292817786619], [0.20630705692410914, 0.6556853084707748], [-0.062460810792399415, 0.668628808617909], [-0.22631023145173135, 0.6226413351628878], [-0.6819212565550825, 0.6715220721846669]], "bottom_lip": [[0.7208490556296154, 0.7117230185061725], [0.4650246880602411, 0.9934343863698152], [0.2551877939458881, 1.111296333574126], [-0.013580073770620482, 1.12423983372126], [-0.282347941487129, 1.137183333868394], [-0.5870530460782823, 0.963283676628686], [-0.8687644139419249, 0.7074593090593115], [-0.6819212565550825, 0.6715220721846669], [-0.2952914416342632, 0.8684154661518857], [-0.04951731064526524, 0.9373966763344175], [0.21925055707124325, 0.9244531761872834], [0.6389243452999495, 0.6887292817786619]], "transform": {"center": [672.5833333333334, 258.2361111111111], "scale": 11.75221199956485, "angle": -0.2736290742272053}}]},
{"url": "zf13.jpg", "embedding": [[-0.07347282767295837, 0.1295453906059265, 0.11959511041641235, -0.02533695101737976, -0.08549758791923523, -0.05256247892975807, -0.036482073366642, -0.05944094434380531, 0.1483059674501419, -0.05607752129435539, 0.17658007144927979, -0.1303109973669052, -0.20887498557567596, -0.03194373473525047, 0.0532432459294796, 0.12810540199279785, -0.10924864560365677, -0.15854120254516602, -0.1627960205078125, -0.06689734011888504, 0.05050242692232132, 0.05397314205765724, -0.03921324387192726, 0.0044718291610479355, -0.14915917813777924, -0.3896021842956543, -0.07851944118738174, -0.07011459022760391, 0.09567143023014069, -0.035371147096157074, 0.018946390599012375, 0.060561783611774445, -0.1418798565864563, -0.10537742078304291, 0.08600781857967377, 0.14314694702625275, -0.0048149810172617435, -0.02827388420701027, 0.2526281774044037, -0.06218248978257179, -0.21686089038848877, 0.10942517220973969, 0.09375829249620438, 0.2866837680339813, 0.15912997722625732, 0.07610876858234406, 0.05590473860502243, -0.0346127450466156, 0.16527460515499115, -0.30632197856903076, 0.1581994742155075, 0.16391634941101074, 0.14895348250865936, 0.08414669334888458, 0.14775730669498444, -0.13971936702728271, 0.015707658603787422, 0.18682247400283813, -0.2735249102115631, 0.1502123922109604, 0.15381932258605957, -0.1291505992412567, -0.06009027361869812, -0.06804186850786209, 0.23465396463871002, 0.08598173409700394, -0.16552086174488068, -0.12706731259822845, 0.1048697754740715, -0.13230600953102112, -0.020905781537294388, 0.051012296229600906, -0.10206588357686996, -0.09661740064620972, -0.3706444799900055, 0.11532414704561234, 0.47537800669670105, 0.06423100084066391, -0.2331325113773346, 0.07096230983734131, -0.019918883219361305, -0.011576411314308643, 0.038784563541412354, 0.06339563429355621, -0.09430933743715286, -0.050966259092092514, -0.09061834961175919, 0.03857412934303284, 0.20471134781837463, 0.005867213476449251, -0.00035421151551418006, 0.2263777107000351, 0.01248176209628582, 0.03623154014348984, -0.004131725523620844, 0.07165699452161789, -0.12365006655454636, -0.1219736859202385, -0.08229486644268036, 0.02513614110648632, 0.10759618878364563, -0.08648622781038284, -0.024009088054299355, 0.08137288689613342, -0.22930261492729187, 0.21382012963294983, -0.05504019930958748, 0.020493527874350548, 0.012704549357295036, 0.015699945390224457, -0.08622708916664124, -0.0039227185770869255, 0.2102515548467636, -0.2890506386756897, 0.17493100464344025, 0.13901831209659576, -0.007041119504719973, 0.1257402002811432, 0.08680558949708939, 0.04587741941213608, 0.0531294122338295, 0.04228392243385315, -0.18271134793758392, -0.13413982093334198, 0.05158905312418938, -0.029942678287625313, 0.051051825284957886, 0.11699268221855164], [-0.0467497743666172, 0.06641129404306412, 0.1412760466337204, -0.014646789990365505, -0.08951970189809799, -0.00838509015738964, -0.08015203475952148, -0.14544157683849335, 0.14088794589042664, -0.15905290842056274, 0.18641924858093262, -0.061823293566703796, -0.253433495759964, 0.025148535147309303, 0.007260038983076811, 0.15884418785572052, -0.13979823887348175, -0.16624999046325684, -0.11006611585617065, -0.0876823216676712, -0.033413853496313095, 0.05134059488773346, 0.04617248848080635, 0.03899853676557541, -0.09329427778720856, -0.3735114634037018, -0.12325311452150345, -0.015620180405676365, 0.05909767374396324, -0.04064046964049339, -0.0748768076300621, 0.0504610501229763, -0.13736873865127563, -0.017555680125951767, 0.035950612276792526, 0.1201987937092781, -0.11137725412845612, -0.1456567645072937, 0.1609952598810196, -0.03375621140003204, -0.18637414276599884, -0.029659483581781387, 0.049637965857982635, 0.23356249928474426, 0.20497415959835052, 0.017291614785790443, 0.06685925275087357, -0.0726514384150505, 0.07412651926279068, -0.27068549394607544, 0.054509490728378296, 0.14872236549854279, 0.08683870732784271, 0.10221017152070999, 0.07322271913290024, -0.136326402425766, 0.004645209759473801, 0.20355455577373505, -0.088937908411026, 0.13796432316303253, 0.06510397791862488, -0.11316843330860138, 0.008134213276207447, -0.008876319974660873, 0.19449889659881592, 0.07677812874317169, -0.13143058121204376, -0.14596422016620636, 0.07246169447898865, -0.19015218317508698, -0.0714595839381218, 0.08961130678653717, -0.11814136803150177, -0.24333727359771729, -0.25546208024024963, 0.03203916549682617, 0.4353748559951782, 0.11323188245296478, -0.18763013184070587, 0.01570441760122776, 0.03287224844098091, -0.03947827219963074, 0.11589294672012329, 0.15626735985279083, -0.06989750266075134, -0.026684323325753212, -0.15698859095573425, 0.028257662430405617, 0.2921003997325897, -0.05411229282617569, -0.04026615992188454, 0.2712751030921936, -0.008276812732219696, 0.03655019775032997, 0.036431875079870224, 0.1091260313987732, -0.0593753382563591, 0.003529486944898963, -0.1392577439546585, -0.04164782911539078, 0.1033986359834671, -0.04954370856285095, -0.07285822182893753, 0.044388070702552795, -0.1229494959115982, 0.16996625065803528, -0.03145981952548027, 0.019825058057904243, 0.04872431233525276, -0.05832868069410324, -0.1390310376882553, -0.06756540387868881, 0.22499540448188782, -0.24116124212741852, 0.08288228511810303, 0.24782037734985352, 0.0499584898352623, 0.15250851213932037, 0.0865366980433464, 0.07308835536241531, 0.07011851668357849, -0.040906522423028946, -0.13895057141780853, -0.06057257950305939, 0.06498084962368011, -0.011323421262204647, 0.005224914290010929, 0.024141091853380203]], "landmarks": [{"chin": [[-1.6778568007909844, -0.8509189980055047], [-1.6958765691358466, -0.4032029168903301], [-1.61440387501067, 0.04851755719036939], [-1.5329311808854935, 0.5002380312710689], [-1.4017122555252977, 0.953960701834531], [-1.1689986712123004, 1.3619415341284984], [-0.8327882314637395, 1.674434296917952], [-0.4448293639973967, 1.9391830249551487], [0.0008845206350153734, 2.0069490245350305], [0.5500952607029912, 1.9792269546103982], [1.0058201277492154, 1.798261798015183], [1.3660569252909263, 1.513799785984404], [1.6805518845631426, 1.1278431150008237], [1.8975565778480823, 0.6881358198166989], [2.0170710051457457, 0.1946779004320299], [2.08683920120839, -0.30078221543540157], [2.108863362518777, -0.8479907590206149]], "left_eyebrow": [[-1.4071014833055, -1.3881165591769056], [-1.297598038421649, -1.6328433223864778], [-0.9951162580460078, -1.7203226059599415], [-0.7463851018709108, -1.710311623546129], [-0.4539143039090818, -1.5490597509444963]], "right_eyebrow": [[0.19478889862893284, -1.5727774279036035], [0.49927287548733656, -1.7100029427120866], [0.8474964941324724, -1.6959875673327494], [1.1937179162948455, -1.6322259607183927], [1.434440286538893, -1.4232300533645028]], "nose_bridge": [[-0.06995982940826395, -1.1848185604372607], [-0.08197300830483878, -0.8863411730271443], [-0.0959883836841761, -0.5381175543820086], [-0.10800156258075094, -0.23964016697189222]], "nose_tip": [[-0.46823836012246156, 0.04482184505888687], [-0.27125563166514643, 0.10257686222495614], [-0.07427290320783131, 0.16033187939102542], [0.12671421821500875, 0.11859443408705593], [0.32770133963784875, 0.07685698878308643]], "left_eye": [[-1.1206372747919586, -1.0776259928702143], [-0.9653919916386131, -1.2208580971269853], [-0.7166608354635161, -1.210847114713173], [-0.5236824999717259, -1.0535996350770647], [-0.724669621394566, -1.0118621897730953], [-0.9734007775696629, -1.0218731721869077]], "right_eye": [[0.47324432121142446, -1.0633019366568346], [0.6782358355997894, -1.204531844430843], [0.877220760539867, -1.1965230584997932], [1.0701990960316572, -1.039275578863685], [0.9189582058438366, -0.995535937076953], [0.6702270496687396, -1.0055469194907654]], "top_lip": [[-0.6932518393384512, 0.6835140651830891], [-0.4405162901978294, 0.5940325851268626], [-0.23952916877498928, 0.5522951398228932], [-0.042546440317674177, 0.6100501569889624], [0.16044287758792833, 0.5185664804499736], [0.40516964079750034, 0.6280699253338247], [0.7473866699943488, 0.7913239944182202], [0.5981479762892905, 0.7853174049699329], [0.15243409165687843, 0.7175514053900511], [-0.04655083328319912, 0.7095426194590012], [-0.24553575822327672, 0.7015338335279514], [-0.595761573351175, 0.7372646893836334]], "bottom_lip": [[0.7473866699943488, 0.7913239944182202], [0.3931564619009255, 0.9265473127439411], [0.1424231092430661, 0.966282561565148], [-0.05856401217977396, 1.0080200068691176], [-0.25554674063708904, 0.9502649897030483], [-0.4525294690944042, 0.8925099725369791], [-0.6932518393384512, 0.6835140651830891], [-0.595761573351175, 0.7372646893836334], [-0.24753795470603918, 0.7512800647629708], [-0.050555226248724064, 0.80903508192904], [0.15043189517411598, 0.7672976366250706], [0.5981479762892905, 0.7853174049699329]], "transform": {"center": [118.36111111111111, 131.72222222222223], "scale": 20.08576326163557, "angle": -0.040226492566946916}}, {"chin": [[-1.8850932143360097, -0.6204694244152361], [-1.8595541346799966, -0.19247729317461598], [-1.836431401540283, 0.2828010363687066], [-1.718736271795164, 0.7629120589446268], [-1.5962084490174477, 1.1484506849151424], [-1.3294056848153253, 1.493952152131852], [-0.9631978309752004, 1.7497139157757544], [-0.5000012340133719, 1.9630221741495524], [-0.027139250986348243, 1.9871856393125409], [0.49784162337597554, 1.9191930543864233], [0.9803689924681946, 1.7542117263386021], [1.420442856290309, 1.4922416551690774], [1.6762046199342115, 1.1260338013289526], [1.8398103334890084, 0.7077070561535277], [1.9112599969546988, 0.23726141964280278], [1.9827096604203898, -0.23318421686792212], [2.006873125583378, -0.7060461998949459]], "left_eyebrow": [[-1.4705584301699082, -1.3104316268253813], [-1.2669155578613056, -1.5844834305764], [-0.9286631301934924, -1.7094275998704151], [-0.5503735437718735, -1.6900968277400246], [-0.2739053935045558, -1.5337401537341244]], "right_eyebrow": [[0.3456478774631728, -1.5969000456276443], [0.6390304533445823, -1.771546759740661], [0.9724501879797978, -1.8019185324292715], [1.2986208830661168, -1.6904317102097748], [1.5229701419981345, -1.4419189861147688]], "nose_bridge": [[-0.0071026293024333345, -1.1882386865174146], [-0.02160070840022635, -0.9045214967012006], [-0.08338498580072175, -0.6232206534012852], [-0.14516926320121715, -0.34191981010136974]], "nose_tip": [[-0.4482172251478221, 0.021871697222456226], [-0.2614887784533115, 0.07882328159035396], [-0.07476033175880076, 0.13577486595825167], [0.1192171544846064, 0.050867855418042264], [0.31077829421171477, 0.013247043180535236]], "left_eye": [[-1.1115996158786796, -0.9128112682733714], [-0.9152057831189737, -1.0450044771162832], [-0.6763584450891631, -1.0802089428374915], [-0.4447601466082489, -0.9735548136505925], [-0.6836074846380595, -0.9383503479293843], [-0.875168624365168, -0.9007295356918773]], "right_eye": [[0.5530827107810986, -1.0173839334137216], [0.7470601970245058, -1.102290943953931], [0.9386213367516141, -1.139911756191438], [1.1702196352325285, -1.0332576270045393], [0.97865849550542, -0.9956368147670321], [0.7398111574756093, -0.9604323490458239]], "top_lip": [[-0.8154658110112213, 0.7142502461489], [-0.5220832351298117, 0.5396035320358835], [-0.23353335228099975, 0.4595292145282718], [-0.04680490558648907, 0.5164807988961695], [0.14475623414061925, 0.4788599866586625], [0.42605707744053467, 0.5406442640591579], [0.7498114260105547, 0.6994172845813569], [0.65523902940515, 0.6945845915487592], [0.13509084807542393, 0.6680047798694719], [-0.054053945135385584, 0.6583393938042766], [-0.2431987383461951, 0.6486740077390812], [-0.6736072161031142, 0.7214992856977965]], "bottom_lip": [[0.7498114260105547, 0.6994172845813569], [0.4612615431617429, 0.7794916020889686], [0.17512800682922977, 0.8122797212938778], [-0.016433132897878556, 0.849900533531385], [-0.20557792610868808, 0.8402351474661895], [-0.4868787694086035, 0.7784508700656941], [-0.8154658110112213, 0.7142502461489], [-0.6736072161031142, 0.7214992856977965], [-0.24078239182989625, 0.6013878094363788], [-0.006767746832683209, 0.6607557403205755], [0.18479339289442512, 0.6231349280830684], [0.65523902940515, 0.6945845915487592]], "transform": {"center": [346.43055555555554, 127.05555555555556], "scale": 21.120262544985938, "angle": -0.05105605140802822}}]},
{"url": "zf14.jpg", "embedding": [[-0.13707827031612396, 0.06474237889051437, 0.03465200960636139, -0.053335193544626236, -0.16883330047130585, 0.007644301746040583, 0.008483410812914371, -0.022695377469062805, 0.14752055704593658, -0.08239663392305374, 0.19105778634548187, -0.04403948038816452, -0.2235082983970642, -0.03341950103640556, -0.06486298143863678, 0.09594681113958359, -0.25791406631469727, -0.06358542293310165, -0.05319999158382416, -0.032601773738861084, 0.09990543127059937, 0.12219209969043732, -0.01052594743669033, 0.024878790602087975, -0.20813295245170593, -0.2892129719257355, -0.07532552629709244, -0.0796070396900177, 0.017135174944996834, -0.08568952232599258, 0.03434262052178383, 0.12970691919326782, -0.1352500021457672, -0.038001786917448044, 0.0353182852268219, 0.0694495365023613, -0.09038838744163513, -0.07821697741746902, 0.19712717831134796, 0.11426153033971786, -0.1293141096830368, 0.007353655062615871, -0.03552684932947159, 0.3224923312664032, 0.18119215965270996, 0.0263825673609972, -0.0190928615629673, -0.010948654264211655, 0.18928736448287964, -0.40514734387397766, 0.03871311619877815, 0.16231957077980042, 0.11712280660867691, 0.03973942995071411, 0.1503782570362091, -0.10967668145895004, 0.026611357927322388, 0.17775513231754303, -0.19923174381256104, 0.10581665486097336, -0.014034127816557884, -0.10547137260437012, 0.027368467301130295, -0.06519154459238052, 0.11880645155906677, 0.0595126636326313, -0.10869506001472473, -0.06730209290981293, 0.14768260717391968, -0.11621119827032089, -0.11008945107460022, 0.1186736598610878, -0.049964405596256256, -0.25702258944511414, -0.25015100836753845, 0.10299208015203476, 0.42511171102523804, 0.21453073620796204, -0.18997758626937866, -0.022397106513381004, 0.037344884127378464, -0.06042705476284027, 0.08518210798501968, 0.10930751264095306, -0.11492680758237839, -0.037569690495729446, -0.10466226935386658, 0.021162183955311775, 0.18062828481197357, -0.028330916538834572, -0.07202449440956116, 0.3579106032848358, 0.04699914529919624, 0.027301356196403503, 0.07098796218633652, -0.038057636469602585, -0.04540233314037323, -0.01355830766260624, -0.06541936844587326, -0.002164430683478713, 0.1691305786371231, -0.15078742802143097, -0.052135780453681946, 0.11671450734138489, -0.14007017016410828, 0.16246433556079865, -0.09047719091176987, -0.05424743890762329, -0.05418552830815315, -0.13863638043403625, -0.15138405561447144, 0.09691744297742844, 0.17309433221817017, -0.29920485615730286, 0.1365123987197876, 0.16370220482349396, -0.027094021439552307, 0.187463641166687, 0.07346481829881668, -0.03360263630747795, 0.030901269987225533, -0.03713477402925491, -0.1089700311422348, -0.15117880702018738, 0.14036677777767181, -0.0336969830095768, 0.004784847609698772, -0.03678775578737259], [-0.1784546673297882, 0.03724079206585884, -0.0013717868132516742, -0.09040004014968872, -0.06868255138397217, -0.03977442905306816, 0.037887394428253174, -0.09569652378559113, 0.19884999096393585, -0.08753499388694763, 0.13616034388542175, -0.023216361179947853, -0.26172149181365967, -0.08449986577033997, -0.06358884274959564, 0.17615985870361328, -0.2156132459640503, -0.20472553372383118, 0.013497883453965187, 0.025428973138332367, 0.10992176085710526, 0.0097989896312356, 0.0700300931930542, 0.17034097015857697, -0.17198264598846436, -0.2764163017272949, -0.10872513055801392, -0.09822043031454086, -0.0010922543006017804, 0.011752039194107056, -0.0073325238190591335, 0.10268480330705643, -0.19576629996299744, -0.016302987933158875, 0.07635073363780975, 0.138846293091774, -0.016227610409259796, -0.09067308157682419, 0.22218197584152222, 0.061768461018800735, -0.24691371619701385, -0.16463631391525269, 0.08642053604125977, 0.2737160325050354, 0.17694465816020966, -0.0012168268440291286, -0.012965962290763855, -0.09757968038320541, 0.18232379853725433, -0.352368026971817, 0.05119844898581505, 0.1895918846130371, 0.06947754323482513, 0.0674855038523674, 0.13103391230106354, -0.18952792882919312, 0.15624204277992249, 0.13785399496555328, -0.193881556391716, -0.02023499272763729, -0.01988223008811474, -0.028773553669452667, 0.025326399132609367, -0.060224294662475586, 0.12337043881416321, 0.07623971253633499, -0.06443868577480316, -0.1668201982975006, 0.23591797053813934, -0.18559250235557556, -0.03474701568484306, 0.20522063970565796, -0.10584495216608047, -0.2114010602235794, -0.26960328221321106, -0.09829766303300858, 0.39448609948158264, 0.19995620846748352, -0.09878533333539963, 0.0557594820857048, -0.06063283234834671, -0.03998740389943123, 0.06711920350790024, 0.0862642452120781, -0.06058357656002045, 0.028883984312415123, -0.16998866200447083, -0.024232978001236916, 0.18435204029083252, -0.018372399732470512, 0.03826792910695076, 0.2544565498828888, 0.06385944038629532, -0.002753298496827483, 0.08448951691389084, 0.060459211468696594, -0.08579494059085846, 0.0540890172123909, -0.15618503093719482, -0.02517240308225155, 0.0019193713087588549, -0.056053526699543, -0.01619037427008152, 0.11596819758415222, -0.2478814423084259, 0.09347965568304062, -0.00770018482580781, -0.0643441379070282, -0.07658202201128006, -0.08103400468826294, -0.1049109548330307, 0.000768771511502564, 0.08610861748456955, -0.26929572224617004, 0.09454759955406189, 0.16197679936885834, -0.045518260449171066, 0.12825913727283478, -0.0048949443735182285, 0.07288431376218796, -0.060466084629297256, -0.14256274700164795, -0.15751990675926208, -0.056043028831481934, 0.08146695047616959, -0.08862808346748352, -0.05035501718521118, -0.03191591426730156]], "landmarks": [{"chin": [[-2.3774878127353642, -0.7566326456490504], [-2.2857401063607874, -0.22429356900887665], [-2.19399239998621, 0.3080455076312973], [-2.0971540741600747, 0.8568999584274046], [-1.8567680003820959, 1.3434234600035526], [-1.4652565275981981, 1.6748579026769566], [-0.9670751588246242, 1.8829905189582252], [-0.43461952593792497, 2.0263051544170185], [0.08889838384691551, 2.0819522996445845], [0.5551759638633552, 2.0105670710762418], [0.9159106074448515, 1.7727845851473045], [1.2130707860051302, 1.446091093185883], [1.402200996527949, 1.0622738277025858], [1.488391858464866, 0.6378481628533461], [1.5148553590308658, 0.19566360804691518], [1.5413188595968654, -0.246520946759516], [1.5017208635391308, -0.6683430237597134]], "left_eyebrow": [[-1.6712903839270472, -1.2817437399747256], [-1.3804643406195853, -1.5703158641727215], [-0.9790047414256213, -1.6759753568541902], [-0.5698509349310574, -1.6393306173850737], [-0.16827477949056835, -1.5099277682331724]], "right_eyebrow": [[0.4645166141329904, -1.4517935914030895], [0.7668839683913529, -1.5269093673752074], [1.0667642910471988, -1.4927516595086074], [1.3209455948855442, -1.3721699772120395], [1.4519416285782796, -1.123195849071778]], "nose_bridge": [[0.18511532552990373, -1.1848274608125853], [0.21192849483547946, -0.9218249901189066], [0.2603476577485472, -0.6473977647208529], [0.29225144650568147, -0.3678799198712408]], "nose_tip": [[-0.19042495142016644, -0.056341730017969105], [0.010363126300078084, 0.008359694557981485], [0.2111512040203226, 0.0730611191339321], [0.3813955650312166, 0.03867029877428134], [0.5300339324346186, -0.007145276289744512]], "left_eye": [[-1.1629277762503563, -1.0405803753815897], [-0.9368031575188449, -1.128364421859341], [-0.7347715639973422, -1.1182997392027496], [-0.5288928668255393, -1.0370829404708655], [-0.7588645892073507, -1.0204510100684063], [-0.9608961827288536, -1.030515692724998]], "right_eye": [[0.5524172168572674, -0.9906066308382081], [0.8103290680993873, -1.0339351742997174], [1.022541900524007, -0.9908397433312588], [1.1674497205236345, -0.8727450926372073], [0.9654181270021316, -0.8828097752937989], [0.7646300492818869, -0.9475111998697494]], "top_lip": [[-0.8711692829706916, 0.5513462350873736], [-0.42649769656174386, 0.4685362518146552], [-0.05931236148090556, 0.4276947399556624], [0.1529004709437141, 0.470790170924121], [0.37778157387396716, 0.4376428663657285], [0.5836602710457701, 0.5188596650976127], [0.7832048329647563, 0.6381978315929223], [0.6739313491260381, 0.6357107999904057], [0.36896040701863386, 0.5850377179678723], [0.14407930408838088, 0.6181850225262647], [-0.08464890249217238, 0.5801802110093646], [-0.7517145602288565, 0.5868640150017573]], "bottom_lip": [[0.7832048329647563, 0.6381978315929223], [0.5342307048244948, 0.7691938652856578], [0.2775623693836329, 0.757885666827808], [0.047590647001821446, 0.774517597230267], [-0.21416830789059893, 0.7466940246164836], [-0.5191392499980031, 0.6960209425939501], [-0.8711692829706916, 0.5513462350873736], [-0.7517145602288565, 0.5868640150017573], [-0.1608916380190234, 0.5675119405037311], [0.07926132326590488, 0.5839107584131393], [0.29271767149178285, 0.5723694474622388], [0.6739313491260381, 0.6357107999904057]], "transform": {"center": [219.56944444444446, 275.3611111111111], "scale": 57.86324057931345, "angle": 0.2989947840313805}}, {"chin": [[-1.737434263098824, -0.9102066847143061], [-1.7263298311651956, -0.45711320988362886], [-1.671869157417226, -0.015770695490507414], [-1.6016866590438543, 0.44923537190370755], [-1.440820812853955, 0.8710468296095631], [-1.1695789300342796, 1.2536345418149055], [-0.8273463882113238, 1.5890567801440423], [-0.4574794291994284, 1.8890645050345303], [-0.004547586494733025, 1.980394381354986], [0.48015116971272953, 1.9141827471694604], [0.9572314617964641, 1.6824878741022622], [1.4185899292547965, 1.4271294480339702], [1.7737048563971813, 1.0888677703988603], [1.9871617297849684, 0.6400684240079927], [2.035296996417065, 0.0964532334867691], [2.0597687100480675, -0.4314401324090528], [2.0842404236790704, -0.9593334983048747]], "left_eyebrow": [[-1.5870263203386255, -1.3512259348554638], [-1.3858053037663394, -1.5360785982984204], [-1.094224203629489, -1.5592572549215684], [-0.7751703184296812, -1.5154161167292817], [-0.46802902579341105, -1.4124969120972521]], "right_eyebrow": [[0.2883965096116724, -1.4034237588396874], [0.6038027948755982, -1.5447585483423214], [0.9663745540157291, -1.6151026788416745], [1.328784681029878, -1.5830125010869438], [1.6830914475423535, -1.4091026374516333]], "nose_bridge": [[-0.10610379515720753, -1.0731038095802692], [-0.1302522445362466, -0.7500790601926155], [-0.17012251854068738, -0.4507178638060552], [-0.19824183210757235, -0.10800042560515374]], "nose_tip": [[-0.4822044681206946, 0.08066146989966705], [-0.3129119971771578, 0.15578462521677533], [-0.11598510904468146, 0.19549326709523426], [0.08110341121377665, 0.1327676007196092], [0.2978846202854824, 0.07401279853183002]], "left_eye": [[-1.2487646427035153, -0.9961110077130793], [-1.0397635298815198, -1.117914740528447], [-0.7955095357468563, -1.1096497479007916], [-0.539666213300619, -0.955594205204711], [-0.7918619358109742, -0.9244738202058712], [-1.0400867941334833, -0.913046124020279]], "right_eye": [[0.5280331110545624, -0.9657288443824482], [0.7646686410654976, -1.1229470906364658], [1.0325861882012546, -1.1304039226342117], [1.276678550209936, -1.0197046217524726], [1.0559264769503842, -0.9412571307514455], [0.7880089298146276, -0.9338002987536993]], "top_lip": [[-0.8257300669515052, 0.5647136976032021], [-0.5813144406908601, 0.4705443819767736], [-0.3094260293672574, 0.4433948611657798], [-0.06914289942043997, 0.4713525426066829], [0.14366744546341986, 0.43229042923215133], [0.5454629501040642, 0.472322335362574], [0.9353458621811709, 0.5714323079327396], [0.8052771367381475, 0.606685189245407], [0.15922763796283973, 0.558388290487329], [-0.05358270692102009, 0.5974504038618604], [-0.2898949726799916, 0.5498000336077097], [-0.7272666228852671, 0.5845680185424316]], "bottom_lip": [[0.9353458621811709, 0.5714323079327396], [0.5683183424752485, 0.9687720520075924], [0.189863126583734, 1.117886937759936], [-0.062332595926621104, 1.1490073227587758], [-0.32230841468668614, 1.1170787771300268], [-0.6215079789472646, 0.9747741948715023], [-0.8257300669515052, 0.5647136976032021], [-0.7272666228852671, 0.5845680185424316], [-0.31801428624687655, 0.8925174718086112], [-0.07773115630005915, 0.9204751532495143], [0.15080101320920244, 0.9050765928760762], [0.8052771367381475, 0.606685189245407]], "transform": {"center": [635.7361111111111, 366.31944444444446], "scale": 49.77837262479399, "angle": -0.19897346860518986}}]},
{"url": "zf15.jpg", "embedding": [[-0.21419408917427063, 0.14091767370700836, 0.02507404424250126, -0.031850725412368774, -0.05183706432580948, 0.05026578530669212, -0.03707346320152283, -0.09268713742494583, 0.19953997433185577, -0.03598261624574661, 0.2242765575647354, -0.05805438384413719, -0.24581819772720337, -0.01947212778031826, -0.11480455845594406, 0.07687154412269592, -0.21015684306621552, -0.09681370854377747, -0.03693501278758049, -0.06141481548547745, 0.18275608122348785, 0.01304102223366499, -0.0325358510017395, 0.03925666958093643, -0.20923970639705658, -0.3765406906604767, -0.08931701630353928, -0.10188490152359009, 0.007481096778064966, -0.11700737476348877, 0.0165611132979393, 0.026672130450606346, -0.19040344655513763, -0.04756154119968414, -0.029290983453392982, 0.03978009894490242, -0.039692286401987076, -0.05178781971335411, 0.20118990540504456, 0.013888362795114517, -0.11322049796581268, 0.08113326132297516, 0.03645003214478493, 0.3424128592014313, 0.20024649798870087, 0.018177323043346405, -0.00667613185942173, -0.07305441796779633, 0.1781415343284607, -0.3142915666103363, 0.003460613312199712, 0.22030948102474213, 0.12286970019340515, 0.09712045639753342, 0.095163494348526, -0.14401257038116455, -0.007415615022182465, 0.1125517413020134, -0.18808624148368835, 0.10437814146280289, 0.04407638683915138, -0.013735244050621986, 0.025023147463798523, -0.07634025067090988, 0.0727461650967598, 0.10645466297864914, -0.09735936671495438, -0.14428870379924774, 0.06479400396347046, -0.10676182806491852, 0.01315639540553093, 0.09557761251926422, -0.1540464162826538, -0.31456804275512695, -0.24134525656700134, 0.10389470309019089, 0.4371950030326843, 0.21893534064292908, -0.15082095563411713, 0.0006088160444051027, -0.10191204398870468, -0.004442181903868914, 0.11334933340549469, -0.06405424326658249, -0.08666737377643585, -0.05571131035685539, -0.12189242988824844, 0.10522783547639847, 0.216099813580513, -0.001387252239510417, -0.0847291424870491, 0.24437938630580902, 0.01413961872458458, 0.024433234706521034, 0.0012697906931862235, 0.06801612675189972, -0.141863152384758, 0.05758709833025932, -0.14639130234718323, 0.02881823107600212, 0.009600499644875526, -0.0482918918132782, 0.033272769302129745, 0.06793928891420364, -0.16174635291099548, 0.1562304049730301, 0.016624271869659424, -0.0007795821293257177, -0.10152050107717514, -0.018005428835749626, -0.2144203782081604, 0.10113053023815155, 0.16102105379104614, -0.27923327684402466, 0.2125997394323349, 0.17318035662174225, 0.04809268191456795, 0.1756490170955658, 0.1063440665602684, -0.04303400218486786, -0.0017896208446472883, 0.0019173568580299616, -0.10924642533063889, -0.07310523092746735, 0.07442528754472733, 0.04250119626522064, 0.04335253685712814, -0.03624086081981659], [-0.0886678621172905, 0.12394211441278458, 0.02728436142206192, -0.04243718460202217, -0.1433868408203125, 0.04187394678592682, 0.030177654698491096, -0.05203816294670105, 0.14896546304225922, -0.09944383800029755, 0.21761319041252136, -0.10483510047197342, -0.2548515796661377, 0.013061444275081158, -0.07302267104387283, 0.07737935334444046, -0.2079951912164688, -0.09395075589418411, -0.11138640344142914, -0.05830708146095276, 0.10385088622570038, 0.12264664471149445, -0.01658688299357891, 0.024009281769394875, -0.14182288944721222, -0.36797070503234863, -0.08560884743928909, -0.018538961187005043, 0.08431947976350784, -0.09126192331314087, -0.028238704428076744, 0.03426619619131088, -0.18408432602882385, -0.08716622740030289, 0.0649687871336937, 0.014232015237212181, -0.03418930247426033, -0.12661431729793549, 0.18246427178382874, 0.030878791585564613, -0.11810120940208435, 0.05512043088674545, 0.011241455562412739, 0.3253072500228882, 0.17553076148033142, 0.04582255706191063, -0.04412662237882614, -0.08409856259822845, 0.1251731514930725, -0.31338179111480713, 0.09290449321269989, 0.16669398546218872, 0.10191591084003448, 0.07340307533740997, 0.05516188591718674, -0.11918990314006805, -0.0453822948038578, 0.1662641167640686, -0.19560472667217255, 0.0629575252532959, 0.009557303041219711, -0.0704224482178688, 0.04708130657672882, -0.0925709679722786, 0.09799960255622864, 0.0638461485505104, -0.09057194739580154, -0.13286657631397247, 0.07847069203853607, -0.16154444217681885, -0.031249679625034332, 0.011128845624625683, -0.07302842289209366, -0.23911496996879578, -0.2172902673482895, 0.12905581295490265, 0.3988179564476013, 0.23259088397026062, -0.18072468042373657, 0.011353699490427971, -0.00791860744357109, -0.049631889909505844, 0.09419640153646469, 0.06565029174089432, -0.09872381389141083, -0.007451748941093683, -0.08436468243598938, 0.13463807106018066, 0.21448639035224915, -0.061515361070632935, -0.10604019463062286, 0.3393845558166504, -0.012148209847509861, -0.004572771955281496, 0.08577363938093185, 0.017189472913742065, -0.10621820390224457, 0.024538706988096237, -0.12145784497261047, 0.019657324999570847, 0.13893374800682068, -0.07136047631502151, -0.002533836057409644, 0.1198166236281395, -0.1610233187675476, 0.15495134890079498, -0.07200475037097931, -0.06363759934902191, -0.02449585124850273, -0.14383472502231598, -0.1405973881483078, 0.03377372398972511, 0.1777985841035843, -0.25187069177627563, 0.17260289192199707, 0.15329429507255554, 0.04313575103878975, 0.23855355381965637, 0.0889386236667633, -0.0460507795214653, 0.114717036485672, -0.03389454260468483, -0.10773709416389465, -0.11190730333328247, 0.14722830057144165, 0.026196133345365524, 0.0862521231174469, -0.02223304845392704], [-0.04857804253697395, 0.12763278186321259, 0.06403964012861252, -0.071951724588871, -0.13909456133842468, 0.11389099061489105, -0.08666408061981201, -0.18622221052646637, 0.1353559046983719, -0.14864102005958557, 0.24567294120788574, 0.01538051851093769, -0.21032679080963135, 0.012250048108398914, -0.006556542124599218, 0.1558838039636612, -0.14557714760303497, -0.17313335835933685, -0.04594821110367775, 0.003983267117291689, -0.05556069687008858, 0.06156183406710625, 0.04017731919884682, 0.05258600413799286, -0.12030913680791855, -0.39725708961486816, -0.05110680311918259, -0.09190790355205536, 0.07021550834178925, -0.022372668609023094, -0.04057320952415466, 0.015719307586550713, -0.2011009156703949, 0.04137948900461197, 0.06891029328107834, 0.0708300769329071, -0.10746615380048752, -0.06158638373017311, 0.23057156801223755, 0.02668999694287777, -0.23304064571857452, -0.025837214663624763, 0.06268974393606186, 0.19874994456768036, 0.1661326140165329, 0.019591882824897766, 0.06801046431064606, -0.0955050066113472, 0.11379066109657288, -0.27516496181488037, 0.08975917100906372, 0.12146803736686707, 0.04882044717669487, 0.06965087354183197, 0.026431430131196976, -0.151535764336586, -0.014625211246311665, 0.12859122455120087, -0.16778402030467987, 0.07780589908361435, 0.11589884757995605, -0.03232687711715698, -0.05862303823232651, -0.04932582750916481, 0.23461000621318817, 0.11524021625518799, -0.13003110885620117, -0.14788413047790527, 0.16950957477092743, -0.18904736638069153, -0.05579131469130516, 0.06761346757411957, -0.06831809878349304, -0.2008536458015442, -0.1926734298467636, 0.04505017027258873, 0.4339325428009033, 0.14862190186977386, -0.16201461851596832, -0.03010595589876175, 0.0027789429295808077, -0.059554681181907654, 0.07332523167133331, 0.10045335441827774, -0.012275494635105133, -0.07244811207056046, -0.01962905190885067, -0.019703002646565437, 0.28216156363487244, 0.00014719567843712866, 0.058325909078121185, 0.28938114643096924, 0.000675885530654341, 0.027636194601655006, 0.03949188441038132, 0.11779512465000153, -0.0796525850892067, 0.003834316972643137, -0.12764598429203033, 0.02924182079732418, -0.09493878483772278, -0.04670741409063339, -0.0015586749650537968, 0.12507399916648865, -0.21394884586334229, 0.2238592952489853, -0.05694073438644409, -0.033080339431762695, 0.08763778954744339, 0.03489604964852333, -0.07272714376449585, -0.1376965343952179, 0.15784606337547302, -0.2598477602005005, 0.13804693520069122, 0.17251357436180115, 0.05902542173862457, 0.1444959193468094, 0.05573635920882225, 0.1044171154499054, 0.05793978273868561, -0.018854232504963875, -0.243832066655159, -0.12261971086263657, 0.042923059314489365, -0.12812310457229614, -0.07207337766885757, 0.004022442270070314]], "landmarks": [{"chin": [[-1.7969398107994359, -0.9793155916991642], [-1.7606633378372958, -0.49654118756471893], [-1.7243868648751557, -0.013766783430273835], [-1.6399517729594852, 0.4701958353033104], [-1.5073580620902842, 0.9553466686360337], [-1.227912065162213, 1.3477449078591128], [-0.899119234681472, 1.6931727427278007], [-0.4728209516945309, 1.9928183878412358], [-0.040581595711894514, 2.0516709381870175], [0.4433810230216897, 1.9672358462713475], [0.8839378811982995, 1.6889780639424152], [1.2775243350205179, 1.3613734480608135], [1.6241403844883446, 0.984421998626542], [1.8286570062938576, 0.5075886674877922], [1.889885985837918, -0.020967926401905472], [1.9499267507828393, -0.5013659013380725], [2.0111557303268994, -1.0299224952277701]], "left_eyebrow": [[-1.5959878327913402, -1.3116730659773221], [-1.3974122839815222, -1.547713302348419], [-1.0109551177541383, -1.5863662045088371], [-0.7231916186320936, -1.5310782979604722], [-0.3896459297547966, -1.3782849389059069]], "right_eyebrow": [[0.23760433124024033, -1.4109967680706297], [0.6264379266659023, -1.545966908138109], [0.9647364739397557, -1.5858080248976663], [1.3488172109688616, -1.5281436891510232], [1.6318278516943499, -1.2802213067885357]], "nose_bridge": [[-0.05966488467491676, -1.0810157229907498], [-0.06679417226975114, -0.7920640092695662], [-0.07511167446372456, -0.4549536765948518], [-0.08342917665769799, -0.11784334392013758]], "nose_tip": [[-0.42529236772896845, 0.06647362970001143], [-0.23503432111312417, 0.16754372600362885], [-0.04358805989814081, 0.22045520335371574], [0.15142284511425974, 0.12889082384321074], [0.34524553552752124, 0.0854850632862364]], "left_eye": [[-1.167313120606121, -1.1083446587709482], [-0.9711140009945812, -1.2480676572349838], [-0.6821622872733974, -1.2409383696401495], [-0.49428066985583125, -1.0435510354294706], [-0.7362619792226233, -1.0013334894716355], [-0.9770550739902765, -1.0072745624673307]], "right_eye": [[0.5170503281683114, -1.0185985288475503], [0.7144376623789901, -1.2064801462651167], [0.9552307571466432, -1.2005390732694214], [1.1443005891633484, -1.0513103580122731], [0.9974483031044785, -0.9585577639026293], [0.7084965893832949, -0.9656870514974636]], "top_lip": [[-0.823631679947743, 0.5867127213957356], [-0.5804621559818118, 0.49633655648436975], [-0.24216360870795856, 0.45649543972481255], [-0.002558728539444567, 0.5105951316740385], [0.19126396187381692, 0.4671893711170641], [0.5765329135020617, 0.47669508791017656], [0.8631081980249673, 0.5801416134120722], [0.7656027455187671, 0.6259238031673245], [0.23704615162906942, 0.5646948236232644], [-0.0049351577377226875, 0.6069123695810996], [-0.24454003790623666, 0.5528126776318737], [-0.7285026566398208, 0.6372477695475444]], "bottom_lip": [[0.8631081980249673, 0.5801416134120722], [0.563462552911532, 1.0064398963990133], [0.2215993618402616, 1.1907568700191622], [-0.019193732927391422, 1.184815797023467], [-0.25998682769504444, 1.1788747240277717], [-0.5923443019732024, 0.9779227460196758], [-0.823631679947743, 0.5867127213957356], [-0.7285026566398208, 0.6372477695475444], [-0.25523396929848824, 0.9862402482136492], [-0.01562908912997424, 1.0403399401628752], [0.22635222023681786, 0.9981223942050399], [0.7656027455187671, 0.6259238031673245]], "transform": {"center": [896.7916666666666, 602.4027777777778], "scale": 20.75839763880787, "angle": -0.024667932820977376}}, {"chin": [[-2.115677824569528, -0.7837869131931311], [-2.09045355597177, -0.25140666498023123], [-2.019412209634754, 0.23832462997671866], [-1.904137847800134, 0.7296399871753223], [-1.6988133927286533, 1.1798904533596297], [-1.357621766681053, 1.5464270752736908], [-0.9247959851549372, 1.8276657906758518], [-0.4461531258895639, 2.0662555528220627], [0.038825982342424556, 2.1279132529778586], [0.48432426180177063, 2.055287844399189], [0.8476927592325242, 1.802562249346796], [1.2110612566632777, 1.5498366542944035], [1.4907159098237848, 1.1612438882658918], [1.6392555787331347, 0.7236659200148148], [1.7451462943865341, 0.24027087402448014], [1.762570979044726, -0.24629229644916212], [1.7784116014612639, -0.6886224514252006]], "left_eyebrow": [[-1.5642888294567825, -1.3398073677621354], [-1.2909704252628906, -1.5514680718002318], [-0.9339381767987524, -1.627261604862209], [-0.5800740528179216, -1.6145891069289786], [-0.2751951310596561, -1.4708016247445905]], "right_eyebrow": [[0.34723521039010535, -1.537090784356645], [0.6616185055982936, -1.65870139515788], [0.9728336763231744, -1.6918459749639072], [1.2792966603230935, -1.592291508277123], [1.49095736436119, -1.3189731040832309]], "nose_bridge": [[0.06599649498794427, -1.1042650028305296], [0.10230919927727912, -0.8815158631008566], [0.13703784132496016, -0.6145337078735795], [0.12594940563338355, -0.30490259939035275]], "nose_tip": [[-0.23900315403902378, -0.007943988840356244], [-0.06365515429026221, 0.0426252756238628], [0.11169284545849936, 0.09319454008808184], [0.2459759541929647, 0.053713711315439394], [0.38025906292743, 0.014232882542796954]], "left_eye": [[-1.0888140946747171, -1.0127515746207167], [-0.9071298459593403, -1.1391143721469132], [-0.685964768471321, -1.1311940609386442], [-0.46955187770826323, -0.9905747032375637], [-0.6923010174379362, -0.9542619989482288], [-0.9134660949259554, -0.9621823101564978]], "right_eye": [[0.5051585254806751, -0.9999583494187839], [0.6884268364377056, -1.170554162442584], [0.9095919139257249, -1.162633851234315], [1.0817717891911787, -1.0235985557748881], [0.9474886804567135, -0.9841177270022459], [0.7263236029686944, -0.9920380382105148]], "top_lip": [[-0.836209226891027, 0.5907254189845981], [-0.4744247917019272, 0.38223283942980935], [-0.1632096209770465, 0.3490882596237821], [0.057955456510972725, 0.3570085708320511], [0.27912053399899195, 0.3649288820403201], [0.5429345647429612, 0.41866627098784676], [0.7577633932643653, 0.6035186441865311], [0.6677133000275037, 0.6445835352008273], [0.27436834727403053, 0.4976279285331316], [0.05320326978601132, 0.4897076173248626], [-0.16796180770200791, 0.4817873061165936], [-0.7035101803982153, 0.5954776057095595]], "bottom_lip": [[0.7577633932643653, 0.6035186441865311], [0.5255098800847694, 0.905229441461489], [0.30117667811344256, 0.9857751612484277], [0.03419452288616572, 1.0205038032961087], [-0.1853864923601997, 0.9683504765902359], [-0.491849476360119, 0.8687960099034516], [-0.836209226891027, 0.5907254189845981], [-0.7035101803982153, 0.5954776057095595], [-0.1790502433935845, 0.7914184145998204], [0.04211483409443473, 0.7993387258080894], [0.26327991158245395, 0.8072590370163585], [0.6677133000275037, 0.6445835352008273]], "transform": {"center": [702.4027777777778, 571.9861111111111], "scale": 22.593064563224367, "angle": -0.03579646486156735}}, {"chin": [[-1.7561142132144685, -0.8723202964989534], [-1.7703816725958397, -0.40090979732941967], [-1.7075113569843205, 0.016214235440789426], [-1.5903545749734773, 0.5104760432038884], [-1.4731977929626336, 1.0047378509669875], [-1.2017654609660104, 1.3904267259314371], [-0.8531953539764969, 1.7218291344965622], [-0.41606181769731115, 1.933232955966255], [0.043923027175439944, 2.0132125360437336], [0.46104705994564904, 1.9503422204322147], [0.912448055606206, 1.6903355427323739], [1.2981369305706556, 1.4189032107357504], [1.5638272184396733, 1.0589074494494546], [1.7866566942061488, 0.5560617924741613], [1.866636274283627, 0.09607694760141022], [1.9580415086578882, -0.42962001796744814], [1.9723089680392594, -0.9010305171369819]], "left_eyebrow": [[-1.533284737447993, -1.3751659534742466], [-1.2904457581725406, -1.6037374733683278], [-0.9933203124977633, -1.7551712182695194], [-0.6533340547204443, -1.7637550674817133], [-0.3361991055366903, -1.6409146753016932]], "right_eyebrow": [[0.266635635025058, -1.6037959073267565], [0.5637610806998351, -1.755229652227948], [0.9694594591732616, -1.7523878471433596], [1.2865944083570153, -1.629547454963339], [1.5151659282510967, -1.3867084756878867]], "nose_bridge": [[-0.010480307140742301, -1.1780880253443533], [-0.06760857862465541, -0.8495274218638169], [-0.04759907511567864, -0.5752532847826051], [-0.027589571606701842, -0.3009791477013933]], "nose_tip": [[-0.3589919801718268, 0.04759095928812006], [-0.22756773877961223, 0.07044226788168531], [-0.030431376691290313, 0.1047192307720332], [0.1781306396938142, 0.07328407296627379], [0.3209805353828115, 0.03042326086373174]], "left_eye": [[-1.1190025097623721, -1.032337890612339], [-0.8875891847837026, -1.1951972898103131], [-0.6904528226953806, -1.1609203269199653], [-0.5047421149038414, -1.0609312433335099], [-0.6475920105928386, -1.0180704312309679], [-0.9218661476740505, -0.9980609277219911]], "right_eye": [[0.4380788834352262, -1.0323963245707677], [0.669492208413896, -1.1952557237687418], [0.9323406911983252, -1.1495531065816114], [1.1180513989898646, -1.0495640229951562], [0.9094893826047599, -1.0181288651893967], [0.7009273662196555, -0.9866937073836372]], "top_lip": [[-0.6932361938215402, 0.8018594447510599], [-0.45039721454608783, 0.5732879248569784], [-0.23040954386420068, 0.4761406463551118], [-0.0446988360726614, 0.576129729941567], [0.16386318031244315, 0.5446945721358075], [0.42671166309687236, 0.590397189322938], [0.6667088372877363, 0.7675240479022831], [0.5352845958955218, 0.7446727393087178], [0.1410118717188779, 0.6761188135280221], [-0.06755014466622666, 0.7075539713337816], [-0.19897438605844125, 0.6847026627402164], [-0.550386298132543, 0.7589986326485177]], "bottom_lip": [[0.6667088372877363, 0.7675240479022831], [0.42386985801228383, 0.9960955677963645], [0.13817006663428943, 1.0818171920014485], [-0.004679829054707818, 1.1246780041039908], [-0.20181619114302973, 1.090401041213643], [-0.4646646739274589, 1.0446984240265123], [-0.6932361938215402, 0.8018594447510599], [-0.550386298132543, 0.7589986326485177], [-0.23325134894878913, 0.8818390248285383], [-0.03611498686046724, 0.9161159877188861], [0.10673490882853001, 0.873255175616344], [0.5352845958955218, 0.7446727393087178]], "transform": {"center": [516.1805555555555, 340.375], "scale": 14.992944585560203, "angle": -0.17215328664632534}}]},
{"url": "zf16.jpg", "embedding": [[-0.09059055149555206, 0.054709214717149734, 0.06010185182094574, -0.10542744398117065, -0.15270325541496277, -0.022305011749267578, 0.03250821679830551, -0.13872449100017548, 0.18116872012615204, -0.15003301203250885, 0.2475631982088089, -0.10630185902118683, -0.22246138751506805, 0.11072540283203125, -0.1559656262397766, 0.14278410375118256, -0.17217208445072174, -0.08209952712059021, -0.09007077664136887, -0.024007631465792656, 0.05744791030883789, 0.032096441835165024, 0.056225892156362534, 0.1275387704372406, -0.06360526382923126, -0.3030088543891907, -0.10485999286174774, -0.12878212332725525, 0.08121084421873093, -0.07800252735614777, -0.013765083625912666, -0.014324699528515339, -0.17990602552890778, 0.016380395740270615, 0.034432634711265564, 0.019091792404651642, -0.07019472122192383, -0.17367534339427948, 0.23684412240982056, -0.036230478435754776, -0.19835396111011505, 0.016108313575387, 0.0475536547601223, 0.17983229458332062, 0.13610753417015076, 0.0377592034637928, 0.022813208401203156, -0.1954897791147232, 0.20026208460330963, -0.2336999624967575, 0.02410552091896534, 0.08282206952571869, 0.04804406315088272, 0.01576591096818447, 0.06898702681064606, -0.21171066164970398, 0.049580637365579605, 0.15406590700149536, -0.22356976568698883, 0.05005408823490143, 0.014473626390099525, -0.011391500011086464, -0.001015374786220491, -0.05071759223937988, 0.2263849377632141, 0.13872407376766205, -0.1116594523191452, -0.1392124593257904, 0.251883864402771, -0.18727651238441467, 0.06639979034662247, 0.15154816210269928, -0.10035859048366547, -0.20786650478839874, -0.08137781172990799, 0.01006037276238203, 0.5214110016822815, 0.1184634268283844, -0.11456003040075302, 0.003942434675991535, -0.07964111119508743, -0.036434102803468704, 0.05999094992876053, 0.10231626033782959, -0.08298083394765854, -0.04859254136681557, -0.11394914239645004, 0.026747124269604683, 0.23377124965190887, -0.080143503844738, -0.003311316715553403, 0.2492711842060089, -0.004706408828496933, -0.020640680566430092, 0.04418620467185974, 0.02857128530740738, -0.20892830193042755, 0.03188443183898926, -0.10245231539011002, -0.02001907117664814, 0.0009441020665690303, -0.0461796335875988, -0.0468093678355217, 0.07897273451089859, -0.17822499573230743, 0.11452610045671463, -0.09582333266735077, -0.11831807345151901, -0.043012917041778564, -0.0699106752872467, -0.051045726984739304, -0.001609020633623004, 0.14881646633148193, -0.26566949486732483, 0.18535947799682617, 0.07778278738260269, 0.042975325137376785, 0.1892942190170288, -0.006736590061336756, 0.06098561733961105, 0.051142431795597076, -0.03819938749074936, -0.18009521067142487, -0.06686916202306747, 0.10829585790634155, -0.07540424913167953, 0.06015598773956299, -0.07486777007579803], [-0.09662292152643204, 0.0959896519780159, 0.06059246137738228, -0.033573489636182785, -0.12025325745344162, -0.058813516050577164, 0.025007877498865128, -0.028386544436216354, 0.1968029886484146, -0.099692702293396, 0.12436728924512863, 0.027785981073975563, -0.16424885392189026, 0.021285679191350937, -0.06579773873090744, 0.1254270225763321, -0.21705570816993713, -0.0611744225025177, -0.08885590732097626, -0.20366060733795166, 0.09253154695034027, 0.09417463093996048, 0.029264399781823158, 0.04528834670782089, -0.12128160893917084, -0.18538522720336914, -0.08298341184854507, -0.0808071717619896, 0.11570494621992111, -0.042279161512851715, 0.042794615030288696, -0.030563950538635254, -0.1763564795255661, -0.0893605500459671, 0.003493323689326644, 0.020027732476592064, -0.08359849452972412, -0.084503173828125, 0.1609768122434616, -0.00722675584256649, -0.11868249624967575, 0.062386706471443176, 0.03340683877468109, 0.3035613000392914, 0.20356640219688416, 0.028931014239788055, -0.028466179966926575, -0.04554387554526329, 0.12463890761137009, -0.257524311542511, 0.0707089975476265, 0.16469509899616241, 0.0775296539068222, 0.063988097012043, 0.07389303296804428, -0.0828748419880867, 0.016230041161179543, 0.18370501697063446, -0.16626235842704773, 0.11470664292573929, 0.08841600269079208, -0.061056267470121384, 0.0174707043915987, -0.0461517795920372, 0.10787904262542725, 0.07732455432415009, -0.0986505076289177, -0.13765256106853485, 0.1437900960445404, -0.21249692142009735, -0.08342296630144119, 0.05290418863296509, -0.11149591207504272, -0.15366512537002563, -0.3068350553512573, 0.02622290886938572, 0.4417407512664795, 0.22016900777816772, -0.06742127984762192, 0.0008852517348714173, -0.07284856587648392, 0.053426023572683334, 0.09492774307727814, 0.0900116041302681, -0.09673047810792923, -0.06237040087580681, -0.08073528110980988, 0.0807500034570694, 0.13192014396190643, -0.016767151653766632, -0.1480627804994583, 0.23443375527858734, 0.06417248398065567, -0.016542837023735046, -0.024435775354504585, 0.01933850161731243, -0.10137110948562622, -0.036351367831230164, -0.12269800156354904, -0.019089316949248314, 0.033910948783159256, -0.05694977194070816, 0.012960623949766159, 0.14860987663269043, -0.13014833629131317, 0.1511276662349701, -0.01934732496738434, 0.00862180907279253, -0.05145464092493057, 0.06955236196517944, -0.15226401388645172, 0.006786780431866646, 0.14698021113872528, -0.16465350985527039, 0.19003218412399292, 0.22436535358428955, 0.00868071150034666, 0.12258254736661911, 0.07122205942869186, 0.02950562722980976, 0.00902628805488348, -0.032666634768247604, -0.11304782330989838, -0.08697592467069626, -0.0061309607699513435, -0.016844304278492928, 0.10743493586778641, 0.06407029181718826], [-0.21294927597045898, 0.11068546772003174, 0.04541747272014618, -0.09182512760162354, -0.12503492832183838, -0.030827559530735016, -0.012580306269228458, -0.032375942915678024, 0.15387602150440216, -0.0836782157421112, 0.1815374195575714, -0.04672052711248398, -0.21925552189350128, -0.01266845129430294, -0.05508946627378464, 0.09400664269924164, -0.13620439171791077, -0.1593448370695114, -0.016386853531003, -0.06823024153709412, 0.08466250449419022, 0.07992576062679291, -0.059676751494407654, 0.10690345615148544, -0.1338609755039215, -0.3201437294483185, -0.10027080774307251, -0.050676118582487106, 0.002164572011679411, -0.1334659606218338, 0.07729421555995941, 0.022812608629465103, -0.15472108125686646, -0.0263593178242445, -0.03492170572280884, 0.12552759051322937, -0.08084581792354584, -0.049374986439943314, 0.23899096250534058, 0.05753356218338013, -0.1723608523607254, -0.020377786830067635, 0.034443967044353485, 0.40284961462020874, 0.1250676065683365, -0.008140778169035912, -0.016034739091992378, -0.0011956655653193593, 0.09700439125299454, -0.2759227156639099, 0.0852058082818985, 0.19883549213409424, 0.11289546638727188, 0.08240099251270294, 0.03681061044335365, -0.060556236654520035, 0.043421488255262375, 0.16419583559036255, -0.19400836527347565, 0.11058066040277481, 0.12598612904548645, -0.11555460840463638, 0.003335398156195879, -0.04870796203613281, 0.1710968017578125, 0.08334171772003174, -0.09806733578443527, -0.12088517099618912, 0.09094060212373734, -0.15784890949726105, -0.10456261783838272, 0.1131870225071907, -0.096462182700634, -0.20597463846206665, -0.23981152474880219, 0.10841818898916245, 0.4169394373893738, 0.1986573189496994, -0.13960346579551697, -0.009966472163796425, -0.05830518528819084, -0.013835539110004902, 0.16225391626358032, 0.028786087408661842, -0.056354038417339325, -0.05579483136534691, -0.1517786681652069, 0.09275895357131958, 0.21233387291431427, 0.03409216180443764, -0.09327851980924606, 0.1885073184967041, 0.08653748780488968, 0.041101228445768356, 0.03548365458846092, 0.04859490692615509, -0.049170974642038345, 0.022544212639331818, -0.11182998865842819, 0.04631840065121651, 0.038227107375860214, -0.04744943231344223, -0.019931022077798843, 0.07064814865589142, -0.1188160702586174, 0.21716515719890594, 0.07231348752975464, -0.016570216044783592, -0.06730564683675766, 0.03525228798389435, -0.19196945428848267, -0.0012566130608320236, 0.16025103628635406, -0.22234664857387543, 0.1790153682231903, 0.14409425854682922, 0.028514757752418518, 0.15546417236328125, 0.11470519751310349, 0.02574261836707592, -0.0073806894943118095, -0.09273446351289749, -0.11999756842851639, -0.06511077284812927, 0.08659490942955017, 0.022409051656723022, 0.13413837552070618, 0.027576476335525513]], "landmarks": [{"chin": [[-2.069174611580851, -1.1666166458452523], [-2.0253358781886854, -0.6022292744891675], [-1.983804446554002, -0.06754650162550821], [-1.8851711196919498, 0.4328170692307608], [-1.63801480036777, 0.9216441312996176], [-1.3063592890812787, 1.3441400911111763], [-0.9176018825674188, 1.7323168489153444], [-0.4740498825836724, 2.0564698062196967], [0.010452900325065434, 2.1383713720696806], [0.41939537394657544, 2.01695535198765], [0.782482136773283, 1.6899144442161236], [1.0792377973426923, 1.2783743444822853], [1.346288859419676, 0.8691415465059293], [1.549316120996844, 0.4051141550596872], [1.6609222853392531, -0.08169592960653313], [1.6834146542043853, -0.5615841090003063], [1.7035997213120353, -1.0711768868865048]], "left_eyebrow": [[-1.6031302427319725, -1.3223518679346733], [-1.2902234698601864, -1.5259597782215328], [-0.9063709912161372, -1.5856592995612298], [-0.5429939040345837, -1.5242331251737422], [-0.20239951007300847, -1.3713858535514956]], "right_eyebrow": [[0.3666024647980412, -1.3558153899588103], [0.6521119409348843, -1.5274113999957621], [0.9742479208366, -1.6122009163129198], [1.3033058060107632, -1.6078766371528008], [1.5273891077601187, -1.416095560008199]], "nose_bridge": [[0.09032219569112776, -1.0654009859521565], [0.11570251502343432, -0.7386504025354759], [0.1433901361132233, -0.3821952206263696], [0.16877045544552985, -0.05544463720968895]], "nose_tip": [[-0.3566831103881998, 0.10490518839469659], [-0.11212441717634843, 0.17556056981211382], [0.10503697930055989, 0.278227851479439], [0.33575186196751683, 0.17065564194230312], [0.5070575476496226, 0.0676980359201321]], "left_eye": [[-1.1618855445057088, -1.0279035091227462], [-0.9334779635962344, -1.1651803171523076], [-0.6935338738993477, -1.1539341327197412], [-0.4717578739074747, -0.9918576540675652], [-0.7070873600893963, -0.9436946415152803], [-0.947031449786283, -0.9549408259478466]], "right_eye": [[0.5131084798575323, -1.0085894150796337], [0.7095041605170987, -1.1732635198441383], [0.9471409484565031, -1.1917219339039975], [1.1643023449334113, -1.0890546522366724], [0.9906893574938229, -1.015801644706927], [0.7233479710619932, -0.9950359288895851]], "top_lip": [[-0.8887682571395309, 0.5646083006808197], [-0.5689395789952973, 0.45011418587123664], [-0.18047249683628325, 0.4498238615163907], [0.06177889461808574, 0.49077464444138247], [0.29710838080000745, 0.44261163188909763], [0.5964616674817451, 0.449243212806699], [0.870724959186022, 0.5175912924666338], [0.7542138669738023, 0.556525097988989], [0.2766329893375116, 0.5637373276162821], [0.07100810164801541, 0.6095930384110845], [-0.1712432898063536, 0.5686422554860928], [-0.7973471599047719, 0.587390993900798]], "bottom_lip": [[0.870724959186022, 0.5175912924666338], [0.6129031041389679, 1.0456424844126917], [0.30230363302466406, 1.2789549931919768], [0.06697414684274233, 1.327118005744262], [-0.2049818431040522, 1.2884745245767526], [-0.5798954390730178, 1.0785253577271372], [-0.8887682571395309, 0.5646083006808197], [-0.7973471599047719, 0.587390993900798], [-0.19373565867148596, 1.0485304348798659], [0.07822033127530852, 1.0871739160473752], [0.3135498174572302, 1.0390109034950905], [0.7542138669738023, 0.556525097988989]], "transform": {"center": [958.2083333333334, 473.4166666666667], "scale": 33.563722044791156, "angle": 0.07751925009148107}}, {"chin": [[-1.8136768108068186, -1.2258591236735712], [-1.7754099279549884, -0.7107607641493505], [-1.6881830481786082, -0.1946440128086801], [-1.6004469724940036, 0.2969927400697155], [-1.4392709014225744, 0.7901570806727852], [-1.179665640593821, 1.2608782064464792], [-0.8445836007453443, 1.6352069260957476], [-0.45850478033941916, 1.9126340437123666], [-0.01990159165137103, 2.019719563909511], [0.446745966856525, 1.9559542907789562], [0.8685070957056692, 1.6953306381337536], [1.2433450112631625, 1.3357685998230022], [1.5712597135290052, 0.8772681758467018], [1.7528036209294238, 0.3912325779587782], [1.861925924759467, -0.14529060457836918], [1.9465682301272358, -0.6823229830237412], [1.9827597344786791, -1.2448537517478377]], "left_eyebrow": [[-1.5908108451052216, -1.343676352810923], [-1.3659080957707255, -1.559413575797374], [-0.9981989229283783, -1.5762556356362778], [-0.65649733627298, -1.520166895996582], [-0.3408033358045309, -1.3911473568782864]], "right_eyebrow": [[0.2722150175687893, -1.4273774560972177], [0.5935101730277105, -1.5676379000639453], [0.9382669351324571, -1.6584291511978986], [1.304957716158355, -1.6263112141122524], [1.5941349345316302, -1.3998808770530824]], "nose_bridge": [[-0.029182902601879612, -1.066287830061792], [-0.03733003713347528, -0.6746078546653947], [-0.044967975756846225, -0.30740787773127226], [-0.028125915917942338, 0.06030129511107498]], "nose_tip": [[-0.44632267340951337, 0.1495649585203539], [-0.25251946934421365, 0.2515585196352511], [-0.00924707244613953, 0.3300904741043229], [0.21260050143900816, 0.261233241891521], [0.4349572712323806, 0.16789601121644415]], "left_eye": [[-1.1802520262370215, -1.0657400392860794], [-0.9573860605354243, -1.1835572684234312], [-0.712586075912676, -1.1784653093411839], [-0.5198012636638256, -1.0275117513017369], [-0.7411396416407486, -0.9831345175512098], [-0.9854304303552721, -1.012706475095732]], "right_eye": [[0.508867867659942, -1.0306055216185732], [0.7082722267157137, -1.1978919435886992], [0.9535814072466868, -1.2172799829687266], [1.1713554138660365, -1.0902972274833298], [0.9739878384431638, -1.0209307993623034], [0.7286786579121908, -1.0015427599822757]], "top_lip": [[-0.7997357659540805, 0.6565161835129792], [-0.5534081936066578, 0.588168147208402], [-0.23414982178063556, 0.5458276970907737], [-0.014848227436611555, 0.5993704571893461], [0.20598095463208668, 0.5794732219010937], [0.5237117387334347, 0.6105727671702902], [0.8164533284642832, 0.6656431149935365], [0.7175149427987344, 0.7125663282851872], [0.20343497509096303, 0.701873214212468], [-0.0173942069777352, 0.7217704495007201], [-0.23720499722998395, 0.6927076878644227], [-0.7023249680132058, 0.683032965608153]], "bottom_lip": [[0.8164533284642832, 0.6656431149935365], [0.5395354067558892, 1.027241936937187], [0.19325105692646843, 1.1914731834579644], [-0.052058123604504625, 1.2108612228379922], [-0.2718689138567534, 1.1817984612016945], [-0.5865445225087531, 1.0038189251588494], [-0.7997357659540805, 0.6565161835129792], [-0.7023249680132058, 0.683032965608153], [-0.2667769547745061, 0.9369984765789464], [-0.046966164522257325, 0.9660612382152438], [0.19834301600871573, 0.9466731988352163], [0.7175149427987344, 0.7125663282851872]], "transform": {"center": [1226.0972222222222, 335.5138888888889], "scale": 40.840841618847705, "angle": -0.020797488683831664}}, {"chin": [[-1.6575950979849656, -0.9310300076524873], [-1.670010574016018, -0.5175975468011473], [-1.637178858620869, -0.07981711856572718], [-1.5813786731784234, 0.3586530583380848], [-1.4796415476413842, 0.7985027325786803], [-1.23802435581539, 1.1735854886877368], [-0.9261222565107219, 1.5048005507073754], [-0.5439352497273804, 1.792147918637596], [-0.041387903360421044, 1.8991962695314022], [0.534203345158779, 1.8705030461466041], [1.0679961455937368, 1.7026195051412423], [1.5593007492760602, 1.4185141165626136], [1.938521997395467, 1.039086104452839], [2.1597229498573647, 0.5629559714751354], [2.267461049419563, 0.0374401550608795], [2.3069834875082633, -0.5131133774058485], [2.3235374555496664, -1.0643566585409683]], "left_eyebrow": [[-1.5783434578171986, -1.2734878123567617], [-1.4092871834654201, -1.544281212245579], [-1.0856593567980914, -1.6035301410299838], [-0.7188535847097368, -1.569525692288418], [-0.4244019661052311, -1.4227481393155446]], "right_eyebrow": [[0.06069489956156595, -1.5001372974685034], [0.4789556010916485, -1.6485011117685278], [0.9403942480427572, -1.7036115485425816], [1.3976944029835148, -1.6209111650328556], [1.7109759996249665, -1.3356330431078103]], "nose_bridge": [[-0.13753758285303522, -1.023317415822408], [-0.17016253425781713, -0.7024485838286466], [-0.20278748566259905, -0.38157975183488524], [-0.23610218573577277, -0.037742449793827126]], "nose_tip": [[-0.5415897830345474, 0.18297551799004602], [-0.3592215199929577, 0.23443044743177377], [-0.1538847869040714, 0.2865751255418933], [0.07786915957407063, 0.2245672020839214], [0.28665463600491603, 0.16186952995755763]], "left_eye": [[-1.1752572269917358, -0.9165452856162594], [-0.9657820018924985, -1.00221142778992], [-0.7354075527511401, -1.0182824111532984], [-0.5091715956201326, -0.8965425742328971], [-0.7402357934298828, -0.8575031208222218], [-0.9699204939028494, -0.8644006075061398]], "right_eye": [[0.4805418624187992, -0.9357887916339394], [0.7150548035705084, -1.0896705952810979], [0.9677079740907717, -1.082083359928788], [1.2412603686531563, -1.0049009657661967], [0.9865379521277177, -0.9435827909766165], [0.7331950329390624, -0.9282015562816296]], "top_lip": [[-0.78506945687535, 0.6354474322520611], [-0.5540052590655998, 0.596407978841386], [-0.32294106125584965, 0.5573685254307106], [-0.11691457949857154, 0.5865447334935336], [0.09118114826388204, 0.5468155314144665], [0.41204998025764344, 0.5794404828192483], [0.8247926924405916, 0.6148244288975976], [0.685602374820028, 0.6566228769818399], [0.08704265625353122, 0.6846263516982464], [-0.12105307150892235, 0.7243555537773135], [-0.3041110832189038, 0.6958690943828824], [-0.6709168553072586, 0.6618646456413169]], "bottom_lip": [[0.8247926924405916, 0.6148244288975976], [0.450399684999927, 0.8334731506762952], [0.1260821096642065, 0.9156905495079966], [-0.08132386942985526, 0.9324512815397671], [-0.28804009985552526, 0.9262435435242409], [-0.5386240243706131, 0.849750898030041], [-0.78506945687535, 0.6354474322520611], [-0.6709168553072586, 0.6618646456413169], [-0.30480083188729556, 0.7188375644301791], [-0.09877435013001748, 0.7480137724930019], [0.10863162896404426, 0.7312530404612315], [0.685602374820028, 0.6566228769818399]], "transform": {"center": [1484.3194444444443, 351.3333333333333], "scale": 43.518327299619294, "angle": -0.030021217657038447}}]},
{"url": "zf17.jpg", "embedding": [[-0.15511555969715118, 0.042423225939273834, -0.0020540179684758186, -0.03444358706474304, -0.19048288464546204, 0.04435588791966438, -0.10741780698299408, -0.10788986086845398, 0.10526230186223984, -0.09205768257379532, 0.1628011018037796, -0.03211560472846031, -0.24494273960590363, 0.014133156277239323, -0.052073411643505096, 0.12857478857040405, -0.1368902623653412, -0.20486891269683838, -0.02137766405940056, -0.04826745390892029, -0.07096567004919052, 0.03537987545132637, -0.11815717816352844, 0.06481065601110458, -0.11032219231128693, -0.32813316583633423, -0.0725301206111908, -0.030097393319010735, 0.007690973114222288, -0.10536325722932816, -0.053732629865407944, 0.14453229308128357, -0.13971053063869476, -0.056396134197711945, 0.08496216684579849, 0.12920928001403809, -0.05210345610976219, -0.030032237991690636, 0.20358242094516754, 0.09439355880022049, -0.1533484309911728, -0.030030658468604088, 0.04174038767814636, 0.34681740403175354, 0.14627186954021454, -0.02098003774881363, -0.014101146720349789, -0.03422628343105316, 0.1240934208035469, -0.29556310176849365, 0.06561939418315887, 0.24145391583442688, 0.1686333268880844, 0.14542129635810852, 0.004682773258537054, -0.08830913156270981, 0.057849057018756866, 0.1347322314977646, -0.21384046971797943, 0.07182978838682175, 0.09111420810222626, -0.13848207890987396, 0.020966075360774994, -0.07099635899066925, 0.20490998029708862, 0.10387743264436722, -0.0743660032749176, -0.16194774210453033, 0.11021921038627625, -0.12254069745540619, -0.1760144680738449, -0.005636532325297594, -0.09655611962080002, -0.1969175487756729, -0.33715909719467163, 0.07081212848424911, 0.31331866979599, 0.23358500003814697, -0.1684129387140274, 0.0847415030002594, -0.05646500736474991, -0.09728080034255981, 0.029733071103692055, 0.022153668105602264, -0.06183609366416931, -0.03176962956786156, -0.029282523319125175, 0.006764848250895739, 0.23349711298942566, 0.05052853003144264, -0.043627720326185226, 0.1721150130033493, 0.023937352001667023, 0.022036176174879074, 0.1079469844698906, 0.1073204055428505, -0.038372546434402466, -0.07163572311401367, -0.1156565323472023, -0.03327705338597298, -0.018138360232114792, -0.08957421779632568, 0.060334160923957825, 0.1108044758439064, -0.22307559847831726, 0.24313750863075256, -0.005242070648819208, 0.000606983492616564, -0.03475382924079895, -0.0024334436748176813, -0.10843989253044128, 0.005001918878406286, 0.1741216629743576, -0.31210654973983765, 0.2159722000360489, 0.15727514028549194, 0.09090378135442734, 0.16008247435092926, 0.08493498712778091, -0.019444357603788376, -0.036313507705926895, -0.06776392459869385, -0.07458275556564331, -0.16080237925052643, 0.06807345151901245, 0.008618909865617752, 0.02753131464123726, 0.10080768167972565], [-0.051934998482465744, 0.045913685113191605, -0.008780454285442829, -0.08902468532323837, -0.12738129496574402, 0.05933236703276634, 0.07047861069440842, -0.11438407748937607, 0.19644512236118317, -0.10163336247205734, 0.2287200391292572, -0.021974727511405945, -0.24075253307819366, 0.06054384633898735, -0.0734701156616211, 0.14834274351596832, -0.16683189570903778, -0.14348754286766052, -0.08941225707530975, -0.030609268695116043, 0.057392947375774384, 0.008455450646579266, 0.07827240973711014, 0.15290780365467072, -0.11577117443084717, -0.3032122850418091, -0.0787181481719017, -0.1752142310142517, 0.008170794695615768, -0.09756971150636673, 0.06582294404506683, 0.025985604152083397, -0.21184025704860687, 0.02083476632833481, 0.012994490563869476, -0.019590595737099648, -0.0487365759909153, -0.20497405529022217, 0.2250693291425705, -0.008842331357300282, -0.23619291186332703, 0.04207233339548111, 0.0564996562898159, 0.18172699213027954, 0.13821765780448914, -0.016015859320759773, 0.06623627990484238, -0.1250608265399933, 0.12943613529205322, -0.326118141412735, 0.014694985933601856, 0.08837103843688965, 0.07032062858343124, -0.004804479889571667, 0.04883148521184921, -0.22875866293907166, 0.053110264241695404, 0.0876319408416748, -0.20809896290302277, 0.11092036962509155, 0.023376256227493286, 0.011667370796203613, 0.02489314042031765, -0.06035546585917473, 0.22032460570335388, 0.1465139389038086, -0.14996148645877838, -0.1692688763141632, 0.1585833579301834, -0.19623997807502747, 0.0050644781440496445, 0.19832324981689453, -0.12081517279148102, -0.2669006586074829, -0.1442474126815796, -0.007226316723972559, 0.5050647258758545, 0.15638914704322815, -0.12916013598442078, 0.018995143473148346, -0.18861529231071472, 0.029152896255254745, -0.0019692284986376762, 0.11290363222360611, 0.001267922343686223, -0.08228370547294617, -0.13277672231197357, 0.00036816633655689657, 0.27241063117980957, -0.04510505869984627, -0.07489906251430511, 0.32623380422592163, -0.030777528882026672, -0.02835037000477314, -0.023166919127106667, 0.09107806533575058, -0.14310777187347412, 0.04837563633918762, -0.023664383217692375, 0.013918849639594555, -0.05056891217827797, -0.045150067657232285, -0.04122277349233627, 0.0888027772307396, -0.2341892570257187, 0.12719759345054626, -0.12856042385101318, -0.03412136808037758, 0.0038689561188220978, -0.003983250819146633, -0.09417182207107544, 0.02794770896434784, 0.14564113318920135, -0.3574965000152588, 0.19373728334903717, 0.14943018555641174, 0.019923804327845573, 0.1425827294588089, 0.017756598070263863, 0.06738430261611938, 0.039213404059410095, -0.061426177620887756, -0.24658779799938202, -0.07227279245853424, 0.05171608179807663, -0.09288907796144485, -0.005060914903879166, -0.020753730088472366], [-0.05902203917503357, 0.08413378894329071, 0.008058455772697926, -0.07986576855182648, -0.11282005906105042, 0.04511186107993126, 0.04609133303165436, -0.043407902121543884, 0.22759604454040527, -0.19276823103427887, 0.2186303585767746, -0.017726922407746315, -0.28048980236053467, -0.014053738676011562, 0.04001771658658981, 0.16886933147907257, -0.1124885305762291, -0.10864652693271637, -0.1655486524105072, -0.12310431897640228, 0.08890073001384735, 0.07971429824829102, -0.0679442286491394, 0.08616862446069717, -0.12306554615497589, -0.28924477100372314, 0.0028538000769913197, -0.04975821077823639, 0.10104271024465561, -0.10288509726524353, 0.0009406337048858404, 0.11379048228263855, -0.06156236678361893, -6.611272692680359e-05, 0.003525847103446722, 0.033824510872364044, -0.09926491230726242, -0.03132852539420128, 0.28398507833480835, -0.0313030444085598, -0.2296341508626938, 0.05833832547068596, 0.018245704472064972, 0.24293707311153412, 0.19904683530330658, -0.030961288139224052, 0.06922364979982376, -0.08711912482976913, 0.16080494225025177, -0.29390749335289, -0.04346822202205658, 0.16663920879364014, 0.07419711351394653, 0.08462992310523987, 0.047935377806425095, -0.20394958555698395, -0.04765374958515167, 0.16610746085643768, -0.19296512007713318, 0.08741427212953568, 0.053202640265226364, -0.1732662320137024, -0.08444526046514511, -0.036532141268253326, 0.14851509034633636, 0.04593412205576897, -0.12735110521316528, -0.2587331235408783, 0.19236153364181519, -0.22693847119808197, -0.10859985649585724, 0.1448766440153122, -0.11510521173477173, -0.15406198799610138, -0.2195589244365692, 0.021514076739549637, 0.3912871778011322, 0.1395474672317505, -0.1817142218351364, 0.04916679859161377, -0.05431897193193436, -0.0393151119351387, 0.10555572062730789, 0.06011812016367912, -0.01221396028995514, -0.167063906788826, -0.09544195234775543, -0.011592471040785313, 0.24312704801559448, -0.015648383647203445, -0.01940082758665085, 0.22934046387672424, 0.12884961068630219, 0.03191836550831795, -0.02038494125008583, 0.048804882913827896, -0.1348903775215149, -0.005822894163429737, -0.11275729537010193, -0.021379083395004272, -0.002085777698084712, -0.0816013291478157, 0.01530302595347166, 0.10432334244251251, -0.19143395125865936, 0.36628538370132446, -0.057096466422080994, 0.05677758529782295, 0.003014858579263091, 0.0588291697204113, -0.09430421888828278, 0.04932408407330513, 0.19202080368995667, -0.21257388591766357, 0.16583842039108276, 0.1937529444694519, 0.11961998045444489, 0.11031859368085861, 0.08905905485153198, 0.04859759658575058, 0.034113187342882156, 0.020751086995005608, -0.2908726930618286, -0.10376561433076859, 0.04319712519645691, -0.0940246656537056, 0.019252851605415344, 0.03088531084358692], [-0.12277830392122269, 0.04866136237978935, 0.037143275141716, -0.15187861025333405, -0.18491439521312714, -0.06008431687951088, -0.008770308457314968, -0.12062375992536545, 0.1548747718334198, -0.21705670654773712, 0.14971204102039337, -0.10521835088729858, -0.23785530030727386, 0.018832100555300713, -0.050189390778541565, 0.19447390735149384, -0.11272381991147995, -0.20895422995090485, -0.09303763508796692, -0.05072704330086708, -0.018156683072447777, 0.13769671320915222, -0.07485542446374893, 0.06358220428228378, -0.06450214982032776, -0.2833629846572876, -0.011000211350619793, -0.0338628850877285, -0.017552582547068596, -0.05112278461456299, 0.09544454514980316, 0.09982150793075562, -0.23867230117321014, -0.018642259761691093, 0.10141374915838242, 0.06740698218345642, -0.07823897898197174, -0.07463044673204422, 0.1631929725408554, -0.004807975143194199, -0.28509023785591125, -0.06513252854347229, 0.12456350773572922, 0.22044262290000916, 0.11539939045906067, -0.028435900807380676, -0.058575622737407684, -0.12923747301101685, 0.17475822567939758, -0.24422140419483185, -0.03449643775820732, 0.11883942037820816, 0.07368611544370651, 0.03166075795888901, 0.016395214945077896, -0.1516956239938736, 0.07245928794145584, 0.15129220485687256, -0.24028077721595764, 0.0593397282063961, 0.1122487261891365, -0.10263379663228989, -0.057324547320604324, -0.03383162245154381, 0.18112285435199738, 0.00038316339487209916, -0.13150016963481903, -0.1893148273229599, 0.16371749341487885, -0.20191256701946259, -0.03435499966144562, 0.11067479103803635, -0.08971903473138809, -0.1873447149991989, -0.24350637197494507, 0.0018402874702587724, 0.331881046295166, 0.0631568431854248, -0.07043782621622086, 0.02936040423810482, 0.025149470195174217, 0.0125886220484972, 0.023402603343129158, 0.09178119152784348, -0.04900806024670601, -0.09692254662513733, -0.017023317515850067, 0.009991882368922234, 0.26235905289649963, -0.03767013177275658, -0.014707973226904869, 0.2306736707687378, -0.03198063746094704, -0.06050117313861847, -0.022577868774533272, 0.03557277098298073, -0.1133127361536026, -0.016632212325930595, -0.10179544985294342, 0.01234444323927164, -0.003282128367573023, -0.09375280886888504, -0.011959822848439217, 0.1633358895778656, -0.18312418460845947, 0.13830426335334778, -0.06836842000484467, -0.019797511398792267, 0.003555142320692539, 0.03258495405316353, -0.1123485267162323, -0.1208970844745636, 0.10057152807712555, -0.14716766774654388, 0.22190529108047485, 0.1472814679145813, 0.08330277353525162, 0.11376626789569855, 0.08951243758201599, 0.015197630040347576, 0.05774456635117531, 0.005267361644655466, -0.14662842452526093, -0.12759819626808167, 0.1122761070728302, -0.05612146481871605, 0.03166893497109413, -0.034059688448905945], [-0.07332809269428253, 0.04089543968439102, 0.01780068129301071, -0.08420723676681519, -0.11303713917732239, 0.04010628163814545, -0.09762751311063766, -0.09383466094732285, 0.2421119064092636, -0.2211422324180603, 0.18543246388435364, -0.042618148028850555, -0.2536015212535858, -0.01028835866600275, -0.1052621603012085, 0.22147023677825928, -0.1758018583059311, -0.23818761110305786, 0.014356830157339573, -0.09713121503591537, -0.01695355959236622, -0.051199279725551605, 0.03389810770750046, 0.11330679059028625, -0.1335669606924057, -0.3741194009780884, -0.0780969187617302, -0.0958208441734314, -0.028962599113583565, -0.07745020091533661, -0.0369214229285717, 0.04065172001719475, -0.18612132966518402, 0.0268528051674366, 0.04245394095778465, 0.170745387673378, -0.06407187134027481, -0.11557885259389877, 0.22975923120975494, 0.030541807413101196, -0.2568509876728058, -0.04266257584095001, 0.155109241604805, 0.26662683486938477, 0.17912453413009644, -0.04196865111589432, 0.0034740378614515066, -0.06622348725795746, 0.2082832306623459, -0.29915109276771545, 0.13661253452301025, 0.1393182873725891, 0.1749805063009262, 0.08128160238265991, 0.15202248096466064, -0.14885111153125763, 0.010445861145853996, 0.1689501702785492, -0.13368244469165802, 0.015245052985846996, 0.03576148301362991, 0.011630607768893242, -0.021033918485045433, -0.08246253430843353, 0.25708791613578796, 0.2228253036737442, -0.10396746546030045, -0.18361347913742065, 0.282171368598938, -0.15712107717990875, -0.07833926379680634, 0.09926898032426834, -0.0951160341501236, -0.17538470029830933, -0.22915801405906677, 0.010732832364737988, 0.43781083822250366, 0.1900009661912918, -0.10597802698612213, 0.07009023427963257, -0.022729231044650078, -0.06316088885068893, -0.034293387085199356, 0.13418656587600708, -0.057735126465559006, 0.054855331778526306, -0.06388045102357864, 0.004518663976341486, 0.21378257870674133, 0.010267402976751328, -0.05142194405198097, 0.14957000315189362, -0.002559419022873044, 0.016858628019690514, 0.08287721872329712, 0.05467233806848526, -0.17293250560760498, -0.011054549366235733, -0.27310940623283386, -0.12001651525497437, -0.06876785308122635, -0.0268903486430645, -0.036948248744010925, 0.07000478357076645, -0.20972976088523865, 0.14900827407836914, -0.020446639508008957, -0.09748564660549164, -0.0438339039683342, 0.12821392714977264, -0.06790085881948471, -0.009331325069069862, 0.10454306751489639, -0.29524555802345276, 0.1605483740568161, 0.08028515428304672, 0.09862403571605682, 0.18606607615947723, 0.07973579317331314, 0.07273408025503159, 0.05184131860733032, -0.11069446802139282, -0.135599747300148, -0.13418711721897125, -0.012440653517842293, -0.024127963930368423, 0.04248376190662384, 0.05961747467517853], [-0.10735791176557541, 0.13534662127494812, 0.07769595831632614, -0.00967181846499443, -0.17147786915302277, 0.007252126466482878, -0.03979446366429329, -0.025346854701638222, 0.17247790098190308, -0.027649879455566406, 0.23721645772457123, -0.10281559079885483, -0.22404834628105164, 0.047738149762153625, -0.035473328083753586, 0.05261355638504028, -0.10518091917037964, -0.09740662574768066, 0.0009905699407681823, -0.10117780417203903, 0.10632351785898209, 0.11945122480392456, -0.01992105133831501, 0.07835143059492111, -0.16169694066047668, -0.309598833322525, -0.07282164692878723, 0.006698353216052055, 0.05052979663014412, -0.11669248342514038, -0.03440990671515465, 0.10910635441541672, -0.2051544487476349, -0.07493963092565536, 0.07631698995828629, 0.13981133699417114, -0.05838087946176529, -0.042693305760622025, 0.13973835110664368, 0.06508590281009674, -0.10128259658813477, 0.06164952367544174, -0.016992811113595963, 0.34404703974723816, 0.1454298198223114, 0.06944182515144348, -0.03531316667795181, -0.06581427156925201, 0.09369470924139023, -0.26091375946998596, 0.08891301602125168, 0.23433636128902435, 0.11971842497587204, 0.05324358865618706, 0.04915335774421692, -0.13810932636260986, -0.028061367571353912, 0.1753670573234558, -0.1692783683538437, 0.12500283122062683, 0.0702773779630661, -0.10293343663215637, 0.03579730913043022, -0.1275278478860855, 0.1471743881702423, 0.050118666142225266, -0.11664026975631714, -0.12281664460897446, 0.01167700532823801, -0.11322702467441559, -0.0853375643491745, 0.13336126506328583, -0.08428051322698593, -0.23511114716529846, -0.2438233196735382, 0.1751193255186081, 0.42146944999694824, 0.14877235889434814, -0.2040606588125229, 0.013864296488463879, 0.02737063355743885, -0.02505144104361534, 0.02877301722764969, 0.06641322374343872, -0.13144169747829437, -1.986362440220546e-05, -0.14724084734916687, 0.07648351043462753, 0.19570066034793854, -0.003269874956458807, -0.059997305274009705, 0.30541637539863586, -0.026220928877592087, 0.06839331239461899, 0.053474899381399155, 0.08179160952568054, -0.11499109119176865, -0.007806731387972832, -0.08926413208246231, -0.0509568490087986, 0.08965878933668137, -0.1415504664182663, -0.04765239357948303, 0.09507537633180618, -0.21824918687343597, 0.17183387279510498, -0.07962414622306824, -0.03243167698383331, -0.06973496824502945, -0.07599955797195435, -0.12584637105464935, 0.054649632424116135, 0.18682821094989777, -0.3349953591823578, 0.15451230108737946, 0.1423698514699936, 0.056675899773836136, 0.2167699784040451, 0.08887127041816711, 0.011614209040999413, 0.047831207513809204, -0.046409521251916885, -0.05372198298573494, -0.10852302610874176, 0.08137774467468262, -0.01632445491850376, 0.054565463215112686, 0.010728252120316029], [-0.15142087638378143, 0.12116411328315735, -0.023482808843255043, -0.07083005458116531, -0.1163555458188057, -0.10861264914274216, -0.014370718970894814, -0.11744844913482666, 0.09762031584978104, -0.06929455697536469, 0.2075168788433075, -0.08925169706344604, -0.2874864935874939, -0.0287046916782856, -0.07979919016361237, 0.09908775985240936, -0.2080441415309906, -0.12778423726558685, -0.07961264252662659, -0.11547260731458664, 0.12442053854465485, 0.026798011735081673, 0.017833976075053215, 0.10977347940206528, -0.09650183469057083, -0.219703808426857, -0.05452505499124527, -0.12167198956012726, 0.017497939988970757, -0.05847465991973877, 0.06993614882230759, 0.0711667612195015, -0.11608492583036423, -0.07763614505529404, 0.0845494195818901, 0.04508194327354431, -0.03317828103899956, -0.01250451896339655, 0.3194073736667633, -0.022544685751199722, -0.16453881561756134, -0.050327375531196594, 0.11813733726739883, 0.3209243714809418, 0.10553654283285141, -0.0007849269895814359, 0.009623371995985508, -0.09148503094911575, 0.17189288139343262, -0.2807999551296234, 0.04598588868975639, 0.21747466921806335, 0.20384980738162994, 0.10339166224002838, 0.11151522397994995, -0.1665099412202835, 0.107262022793293, 0.17582789063453674, -0.1928127557039261, 0.11646264046430588, 0.09613149613142014, -0.09818375110626221, -0.0173716451972723, -0.04494699090719223, 0.18682846426963806, 0.009155165404081345, -0.15206201374530792, -0.13171876966953278, 0.10586700588464737, -0.13533176481723785, -0.13102243840694427, 0.21797040104866028, -0.09616956114768982, -0.20993073284626007, -0.29503729939460754, 0.011535718105733395, 0.4178062379360199, 0.18469637632369995, -0.1532338410615921, -0.021675391122698784, -0.06352047622203827, -0.07032456994056702, 0.055128175765275955, 0.052476607263088226, -0.17278242111206055, 0.010425440035760403, -0.11931228637695312, 0.041078899055719376, 0.15652380883693695, -0.008122461847960949, -0.08749263733625412, 0.27167052030563354, 0.09039187431335449, 0.05997445061802864, 0.028292905539274216, 0.09140316396951675, -0.08184576034545898, -0.05551081895828247, -0.11146897822618484, -0.002714606700465083, 0.09627754241228104, -0.14367812871932983, -0.012241575866937637, 0.07737349718809128, -0.22510378062725067, 0.10648170113563538, -0.06202947720885277, -0.020977305248379707, -0.13869862258434296, -0.013298983685672283, -0.11360607296228409, 0.05485088378190994, 0.15616799890995026, -0.29204028844833374, 0.14087063074111938, 0.20787280797958374, 0.06283091753721237, 0.10707435756921768, 0.08079290390014648, -0.055930159986019135, 0.008451275527477264, -0.11888449639081955, -0.11238925904035568, -0.12674273550510406, 0.09616712480783463, -0.004967069253325462, 0.05980131775140762, -0.0023284212220460176], [-0.15422971546649933, 0.07012020796537399, 0.038551490753889084, -0.0288370531052351, -0.13212811946868896, -0.03430825471878052, -0.07591298222541809, -0.08393174409866333, 0.11555442214012146, -0.08862205594778061, 0.13786625862121582, -0.01962784118950367, -0.24106049537658691, 0.030475467443466187, 0.009973584674298763, 0.07105239480733871, -0.18452762067317963, -0.07739578187465668, -0.011392015032470226, -0.11086197942495346, 0.07374435663223267, 0.128216952085495, 0.03867571800947189, 0.10792890936136246, -0.18668274581432343, -0.31119558215141296, -0.11882629245519638, -0.14415478706359863, 0.020944343879818916, -0.09175018966197968, 0.05660059675574303, -0.02044839598238468, -0.13397876918315887, -0.0374118834733963, 0.022614914923906326, 0.09523362666368484, -0.08727865666151047, -0.06847421079874039, 0.2458459734916687, 0.040635354816913605, -0.14224061369895935, -0.03836579620838165, 0.0064064147882163525, 0.32077422738075256, 0.08400366455316544, 0.043631359934806824, 0.03174574673175812, -0.02633722871541977, 0.11352819949388504, -0.21756435930728912, 0.09867172688245773, 0.19179707765579224, 0.10858117043972015, 0.10323657095432281, 0.04949389398097992, -0.06551776826381683, 0.09827382862567902, 0.1558496206998825, -0.20282171666622162, 0.10957896709442139, 0.13489387929439545, -0.06689664721488953, 0.062659852206707, 0.034355130046606064, 0.23304784297943115, 0.059167563915252686, -0.09968025982379913, -0.11493293195962906, 0.04173130914568901, -0.1691315770149231, -0.17392954230308533, 0.09955763816833496, -0.1320934146642685, -0.1873825043439865, -0.2842100262641907, 0.041286200284957886, 0.4201773703098297, 0.1550908088684082, -0.150252103805542, -0.021195558831095695, -0.0770680382847786, -0.03963419049978256, 0.152235209941864, 0.07216591387987137, -0.0640728771686554, -0.05278770998120308, -0.0851057767868042, 0.08140675723552704, 0.22403572499752045, -0.006095123942941427, -0.11544835567474365, 0.19755429029464722, 0.08349493891000748, 0.05436541140079498, 0.05653184652328491, 0.05361670255661011, -0.08795671910047531, -0.020991023629903793, -0.03509625047445297, 0.016943970695137978, 0.09865075349807739, -0.017789827659726143, 0.0031924545764923096, 0.10500099509954453, -0.19021542370319366, 0.24697372317314148, 0.013875341042876244, -0.06742245703935623, -0.019525565207004547, 0.04574524238705635, -0.23221629858016968, -0.009910812601447105, 0.19313976168632507, -0.2696695923805237, 0.21483756601810455, 0.1857425719499588, 0.013729461468756199, 0.1467483788728714, 0.045189741998910904, 0.02184106782078743, -0.04381377622485161, -0.018519919365644455, -0.14639629423618317, -0.11964444816112518, 0.11655863374471664, 0.012004275806248188, 0.12205443531274796, 0.0006159167969599366]], "landmarks": [{"chin": [[-2.181160177963927, -0.8584684387814514], [-2.066239322422453, -0.3486867839673795], [-2.0229847554617617, 0.15703605347239374], [-1.908063899920288, 0.6668177082864656], [-1.7890842270045153, 1.1049330745197554], [-1.4469880535977995, 1.411892315714377], [-1.0332255916103015, 1.7229103742832972], [-0.539679206293424, 1.8946546730649516], [0.033651102352832654, 1.9271252120593407], [0.5393739397926058, 1.883870645098649], [0.9815481234001944, 1.6932246836020945], [1.3561148358012993, 1.4268536161504592], [1.5914077884151387, 1.0806986253694448], [1.6874269812417126, 0.6547597112590509], [1.787504991442585, 0.15715450856787488], [1.8159167130626754, -0.34450951149759973], [1.915994723263548, -0.8421147141887757]], "left_eyebrow": [[-1.6510844362783619, -1.3317207372268358], [-1.4198503010388213, -1.6062094394270678], [-1.0534012233863135, -1.729247929717139], [-0.6910109631081044, -1.7806201314264278], [-0.26913086637200906, -1.6129346500190722]], "right_eyebrow": [[0.37586573085502967, -1.5764052936503845], [0.7423148085075374, -1.6994437839404553], [1.100646251411448, -1.679149697068962], [1.379193770985979, -1.5195818504102037], [1.5779573672311304, -1.2207402439641792]], "nose_bridge": [[0.06078885491181095, -1.0909765430821043], [0.044553585414616424, -0.8043113887589759], [0.099984604498204, -0.5135874170615489], [0.08374933500100948, -0.2269222627384206]], "nose_tip": [[-0.29487619477439414, 0.11111509329399669], [-0.07987732903204786, 0.12329154541689258], [0.059396430755217694, 0.20307546874627194], [0.27845411387186253, 0.14358563228838572], [0.4258455084077254, 0.08003697845620092]], "left_eye": [[-1.2373219742908639, -1.0207026786579154], [-1.018264291174219, -1.0801925151158016], [-0.7315991368510907, -1.063957245618607], [-0.5206590884830431, -0.9801145049149291], [-0.739716771599688, -0.9206246684570429], [-1.0263819259228162, -0.9368599379542375]], "right_eye": [[0.48266895164790624, -0.9232910616747483], [0.7057854521388497, -1.0544471867134166], [0.9207843178811961, -1.0422707345905207], [1.127665548874945, -0.8867617053060606], [0.9086078657583002, -0.8272718688481745], [0.6936090000159538, -0.8394483209710704]], "top_lip": [[-0.6856781766726936, 0.6641513150687604], [-0.390895387600968, 0.5370540074043906], [-0.100171415903541, 0.481622988320803], [0.043161161258023176, 0.4897406230694003], [0.2581600270003694, 0.5019170751922962], [0.4691000753684171, 0.5857598158959741], [0.7517064123172468, 0.6736613739739508], [0.6083738351556826, 0.6655437392253535], [0.25004239225177216, 0.6452496523538603], [0.03504352650942592, 0.6330732002309645], [-0.10828905065213826, 0.6249555654823672], [-0.6140118880919115, 0.6682101324430589]], "bottom_lip": [[0.7517064123172468, 0.6736613739739508], [0.4569236232455212, 0.8007586816383203], [0.23786594012887624, 0.8602485180962066], [0.022867074386530024, 0.8480720659733108], [-0.12046550277503415, 0.8399544312247135], [-0.40307183972386385, 0.7520528731467367], [-0.6856781766726936, 0.6641513150687604], [-0.6140118880919115, 0.6682101324430589], [-0.10828905065213826, 0.6249555654823672], [0.030984709135127284, 0.7047394888117466], [0.25004239225177216, 0.6452496523538603], [0.6083738351556826, 0.6655437392253535]], "transform": {"center": [341.0138888888889, 91.22222222222223], "scale": 13.931237520695163, "angle": -0.05657452352510255}}, {"chin": [[-2.0872703159138584, -1.0481615187145357], [-2.0646596777108788, -0.5123768391885206], [-2.042049039507899, 0.023407840337494434], [-1.9448807589353367, 0.5453113369245719], [-1.6985971936236093, 1.0394524676337744], [-1.3170795265116546, 1.4312735900955194], [-0.8748853999690547, 1.734655887248745], [-0.43269127342645475, 2.03803818440197], [0.04241694666891527, 2.10386637150751], [0.41520515851682777, 2.0344604568128224], [0.8070262809785729, 1.652942789700868], [1.0358509357622157, 1.2246298460972056], [1.3531144158543784, 0.856993361924188], [1.493500245329501, 0.3680039588898806], [1.647767257743561, -0.046427801774844346], [1.6390378024795187, -0.5076548389312768], [1.6303083472154762, -0.9688818760877094]], "left_eyebrow": [[-1.6070103681435937, -1.3690027263958453], [-1.3365421645431383, -1.5736427428907602], [-0.9498727697562883, -1.5684910152158653], [-0.5493221920305009, -1.4887816451713876], [-0.22332925667429604, -1.3951910921879724]], "right_eyebrow": [[0.400894248160239, -1.3571252709603072], [0.6852436346996316, -1.4872076450856397], [0.9834742041779616, -1.5427323768413896], [1.295585956595229, -1.523699466227557], [1.4863447901512066, -1.3277889049966844]], "nose_bridge": [[0.14430722749872132, -1.07792761209581], [0.19983195925447123, -0.7796970426174797], [0.19468023157957615, -0.3930276478306298], [0.25020496333532605, -0.09479707835229984]], "nose_tip": [[-0.257817350312814, 0.07692884458984499], [-0.09482088263471154, 0.12372412108155255], [0.1566144103519109, 0.23119585700390513], [0.3802873374606584, 0.1895523081870927], [0.5155214392608859, 0.08723229993963527]], "left_eye": [[-1.1648162416009937, -1.0656204292426203], [-0.9550244974311837, -1.1818216204290153], [-0.7174703873834986, -1.1489075268762452], [-0.46603509439687607, -1.0414357909538925], [-0.764265663875206, -0.9859110591981427], [-1.0018197739228911, -1.018825152750913]], "right_eye": [[0.5448578052245088, -0.9982182420513321], [0.7546495493943188, -1.114419433237727], [0.9783224765030665, -1.1560629820545396], [1.2297577694896888, -1.048591246132187], [1.0060848423809414, -1.0069476973153746], [0.7824119152721938, -0.965304148498562]], "top_lip": [[-1.0224266846224714, 0.5278524263964872], [-0.5750808304049766, 0.44456532876286237], [-0.18841143561812662, 0.4497170564377575], [0.049142674429558324, 0.4826311499905276], [0.3473732439078884, 0.4271064182347777], [0.6594849963251558, 0.4461393288486103], [0.9109202893117783, 0.5536110647709629], [0.7618050045726132, 0.5813734306488378], [0.3005779674161808, 0.5901028859128802], [0.07690504030743328, 0.6317464347296926], [-0.17453025267918917, 0.52427469880734], [-0.8733113998833067, 0.5000900605186123]], "bottom_lip": [[0.9109202893117783, 0.5536110647709629], [0.6075379921585531, 0.9958051913135627], [0.3509509714970355, 1.2750028501780601], [0.03883921907976806, 1.2559699395642276], [-0.19871489096791695, 1.2230558460114573], [-0.6270278345715794, 0.9942311912278148], [-1.0224266846224714, 0.5278524263964872], [-0.8733113998833067, 0.5000900605186123], [-0.16580079741514683, 0.9855017359637726], [0.07175331263253815, 1.0184158295165426], [0.3699838821108682, 0.9628910977607928], [0.7618050045726132, 0.5813734306488378]], "transform": {"center": [240.52777777777777, 188.625], "scale": 13.185856123040736, "angle": 0.1840730084746876}}, {"chin": [[-1.5852173207792963, -0.897907523363556], [-1.592416798619937, -0.4426265543546862], [-1.542706155334469, 0.013554349384263753], [-1.4929955120490008, 0.4697352531232137], [-1.386374747637424, 0.9268160915922435], [-1.2228438620997386, 1.3847968647913538], [-1.0015029207058643, 1.7867674515944352], [-0.6076317464735037, 2.077617600335539], [-0.09634059106860528, 2.142627134032369], [0.4176503685265334, 2.0369063043508717], [0.8774310111858036, 1.7595551765609694], [1.2812014674490453, 1.4243939929148777], [1.6307616067764183, 0.9176025111603796], [1.8086914479953853, 0.46502134634175], [1.9315110375484035, -0.10227999545917708], [1.995620636515153, -0.5566610297379668], [2.1184402260681714, -1.1239623715388938]], "left_eyebrow": [[-1.4108872184806496, -1.1228482036777507], [-1.2356571814519233, -1.4046990051180541], [-0.9484067716311392, -1.5709296948459794], [-0.6638561660005955, -1.566430021195579], [-0.32329537397402325, -1.50412029168899]], "right_eyebrow": [[0.3614259489994416, -1.6071413171802462], [0.6477764240901454, -1.7164618857820635], [0.9901370855768779, -1.7679723985276916], [1.3297979428733702, -1.6487525478949936], [1.5547386231875646, -1.474422445596347]], "nose_bridge": [[-0.044144376723960196, -1.158159891281937], [-0.04954398510444072, -0.8166991645252848], [-0.05494359348492125, -0.47523843776863245], [-0.11725332299151049, -0.13467764574206023]], "nose_tip": [[-0.4623137886684832, 0.08756323038189415], [-0.29248336002023717, 0.14717315569824313], [-0.0657428102458823, 0.2076830157446722], [0.16279760898863269, 0.15437263353888384], [0.33532784182711906, 0.043252195476906646]], "left_eye": [[-1.0721262959142375, -0.9467182319189438], [-0.8435858766797227, -1.0000286141247323], [-0.6719555785713163, -1.0542389310606006], [-0.4452150287969615, -0.9937290710141717], [-0.6737554480314765, -0.9404186888083832], [-0.8444858114098028, -0.9431184929986235]], "right_eye": [[0.5240568998070471, -1.0922504228550278], [0.7525973190415619, -1.145560805060816], [0.9242276171499682, -1.1997711219966842], [1.1509681669243228, -1.1392612619502553], [0.922427747689808, -1.085950879744467], [0.7516973843114818, -1.0886506839347074]], "top_lip": [[-0.927494039708234, 0.7063750849284494], [-0.6402436298874501, 0.5401443952005237], [-0.3547930895268263, 0.48773394772481543], [-0.07114241862636282, 0.5491437425013246], [0.15739800060815215, 0.4958333602955362], [0.4997586620948847, 0.44432284754990803], [0.8394195193913768, 0.5635426981826059], [0.7255992771391593, 0.5617428287224457], [0.15649806587807208, 0.5527434814216449], [-0.0720423533564429, 0.6060538636274333], [-0.3565929589869865, 0.6015541899770328], [-0.8136737974560165, 0.7081749543886096]], "bottom_lip": [[0.8394195193913768, 0.5635426981826059], [0.5494693053803525, 0.900503751288858], [0.1474987185772712, 1.1218446926827323], [-0.08194163538732388, 1.2320651960146292], [-0.3655923062877874, 1.1706554012381203], [-0.6483430424581709, 1.0523354853355023], [-0.927494039708234, 0.7063750849284494], [-0.8136737974560165, 0.7081749543886096], [-0.36199256736746704, 0.9430149167336851], [-0.07834189646700353, 1.0044247115101943], [0.15109845749759154, 0.8942042081782973], [0.7255992771391593, 0.5617428287224457]], "transform": {"center": [587.0972222222222, 104.33333333333333], "scale": 17.569370333616202, "angle": -0.015811945418111477}}, {"chin": [[-1.7920546298681979, -0.9357915230677787], [-1.874522305219794, -0.4806260774298279], [-1.8049110427779136, -0.02331789630692453], [-1.7352997803360337, 0.43399028481597884], [-1.589649048997416, 0.8923698336813585], [-1.2919193798653223, 1.3528921180316906], [-0.9160075063515384, 1.662406832331024], [-0.5400956328377544, 1.9719215466303568], [-0.008890718303065783, 2.055460589724429], [0.4484174628198376, 1.9858493272825488], [0.9078683794276935, 1.7641591270471928], [1.368390663778026, 1.4664294579150994], [1.6789767458198352, 1.0144781155045774], [1.8374838900681685, 0.5603840376091032], [1.9210229331622406, 0.02917912307441453], [2.004561976256313, -0.502025791460274], [2.0881010193503844, -1.0332307059949628]], "left_eyebrow": [[-1.6324761178773883, -1.465925069859991], [-1.3261755068054841, -1.6137185366835616], [-1.0209462634760564, -1.685472534610394], [-0.64289165447732, -1.5280367581045367], [-0.4158446155295827, -1.4487831859803701]], "right_eyebrow": [[0.2685106045410579, -1.4391408762980833], [0.5737398478704855, -1.5108948742249158], [0.955008560096651, -1.5815775044092724], [1.2591664356836025, -1.577292033439367], [1.5601102080431248, -1.3448881557792483]], "nose_bridge": [[-0.04100410975827503, -1.0632290027842994], [-0.04636094847065657, -0.68303165830061], [-0.05064641944056179, -0.3788737827136587], [-0.05600325815294333, 0.0013235617700305385]], "nose_tip": [[-0.4383433381215851, 0.1480456608511247], [-0.21129629917384793, 0.22729923297529148], [-0.060288729122848564, 0.30548143735698197], [0.1689010453098413, 0.232656071687673], [0.32205135084579334, 0.15875933827588776]], "left_eye": [[-1.2587069798485568, -1.0043314177671825], [-1.0284458376733905, -1.1531962523332289], [-0.8003274309831772, -1.1499821491058], [-0.5743517597779163, -0.9946891080848956], [-0.8035415342106061, -0.9218637424155867], [-1.030588573158343, -1.0011173145397534]], "right_eye": [[0.48912943703393724, -0.9036504907934895], [0.7193905792091033, -1.0525153253595363], [0.9475089858993169, -1.0493012221321074], [1.1745560248470541, -0.9700476500079406], [0.9453662504143643, -0.8972222843386316], [0.7172478437241507, -0.9004363875660606]], "top_lip": [[-0.8238975213176559, 0.5228861666224325], [-0.5186682779882282, 0.45113216869559974], [-0.21451040240127686, 0.45541763966550497], [0.013608004288936673, 0.4586317428929339], [0.2417264109791502, 0.46184584612036284], [0.5458842865661016, 0.46613131709026806], [0.9250102633073145, 0.5475276246993875], [0.8489707944105767, 0.5464562569569112], [0.2406550432366739, 0.5378853150171007], [0.011465268803984059, 0.6107106806864095], [-0.21558177014375318, 0.5314571085622429], [-0.7489294201633944, 0.5999970032616465]], "bottom_lip": [[0.9250102633073145, 0.5475276246993875], [0.6154955490079816, 0.9234394982131714], [0.23315546903933976, 1.0701615972942655], [0.005037062349126214, 1.0669474940668366], [-0.2230813443410873, 1.0637333908394075], [-0.5250964844430861, 0.9073689820760268], [-0.8238975213176559, 0.5228861666224325], [-0.7489294201633944, 0.5999970032616465], [-0.2198672411136584, 0.8356149841491943], [0.0071797978340788285, 0.9148685562733609], [0.23636957226676866, 0.8420431906040521], [0.8489707944105767, 0.5464562569569112]], "transform": {"center": [353.7361111111111, 203.97222222222223], "scale": 13.149759861441586, "angle": -0.014088694612821426}}, {"chin": [[-2.1841720019355937, -1.0105759696360932], [-2.2077214698019563, -0.5159997974549766], [-2.1549646862633036, 0.04169343024649222], [-2.0390908472042986, 0.5230804065429457], [-1.7837937012199268, 0.9912781869547361], [-1.4653794997152025, 1.3831697159615113], [-0.9444249357647594, 1.685565797678608], [-0.43006496975664776, 1.9182502259330212], [0.07110580036680053, 2.011511347262067], [0.552492776663254, 1.895637508203062], [0.8746726522073456, 1.58381790464067], [1.1902579298091056, 1.202286647615594], [1.436131553948182, 0.8273499885328495], [1.5359872732195596, 0.3958908718720848], [1.5661313390282534, -0.028973646846348455], [1.5962754048369474, -0.4538381655647816], [1.5501132192406262, -0.9418197398035668]], "left_eyebrow": [[-1.5266230549627475, -1.494791869835511], [-1.2543710390543448, -1.5908819150675209], [-0.8361011182782432, -1.6304495027215105], [-0.5506599064851773, -1.5871162410281534], [-0.1823178453447645, -1.4109542703517608]], "right_eyebrow": [[0.4450870358193878, -1.4703056518327453], [0.7173390517277907, -1.5663956970647552], [0.996185665578525, -1.5927740888340816], [1.2119152239089075, -1.5428462291983929], [1.4342393801816213, -1.4232067161000201]], "nose_bridge": [[0.13609635615995952, -1.0190627413449855], [0.16906934587161754, -0.6705044740315675], [0.19544773764094395, -0.3916578601808331], [0.22842072735260197, -0.04309959286741516]], "nose_tip": [[-0.32267790240653516, 0.07936884413392127], [-0.10035374613382117, 0.19900835723229365], [0.1850874656592448, 0.24234161892565084], [0.39422242604729557, 0.22255782509865601], [0.5270511350303313, 0.1396569757513092]], "left_eye": [[-1.201614255515692, -1.033188687366052], [-0.9359568375496208, -1.1989903860607458], [-0.7202272792192383, -1.149062526425057], [-0.42159687154150927, -0.9663059578063327], [-0.7004434853922435, -0.9399275660370062], [-0.9792900992429779, -0.9135491742676798]], "right_eye": [[0.4978438193580407, -0.9126124241312763], [0.6937895838614283, -1.0718195248836384], [0.9726361977121626, -1.0981979166529647], [1.1949603539848765, -0.9785584035545923], [0.9924199915391574, -0.8890629562649139], [0.7832850311511067, -0.8692791624379191]], "top_lip": [[-1.0565331007843968, 0.5004676888129869], [-0.5685515265456115, 0.45430550321666563], [-0.15028160576950997, 0.414737915562676], [0.13515960602355603, 0.45807117725603325], [0.34429456641160683, 0.4382873834290384], [0.6297357782046727, 0.48162064512239566], [0.9217715879400704, 0.5946655602784363], [0.7823482810147032, 0.6078547561630996], [0.36407836023860163, 0.6474223438170892], [0.07863714844553564, 0.604089082123732], [-0.13049781194251514, 0.6238728759507268], [-0.9105151959166978, 0.5569901463910073]], "bottom_lip": [[0.9217715879400704, 0.5946655602784363], [0.6824925617433256, 1.0393138728238642], [0.34712349031457085, 1.2117101694608896], [0.06827687646383648, 1.238088561230216], [-0.21716433532922952, 1.1947552995368589], [-0.5921009944119738, 0.9488816753977825], [-1.0565331007843968, 0.5004676888129869], [-0.9105151959166978, 0.5569901463910073], [-0.17383107363587233, 0.9093140877437927], [0.11161013815719367, 0.95264734943715], [0.39045675200792807, 0.9262689576678236], [0.7823482810147032, 0.6078547561630996]], "transform": {"center": [139.69444444444446, 160.30555555555554], "scale": 14.281046966841604, "angle": 0.09431753905499025}}, {"chin": [[-2.118508365965183, -0.7611013927075738], [-2.122086244148468, -0.15056345099029167], [-2.0937135849609367, 0.3783342448361836], [-1.9269052882517888, 0.9143376237734793], [-1.6713510625410133, 1.3438559025599726], [-1.3270509078286117, 1.6668890811956638], [-0.8691599698545875, 1.9402325513113645], [-0.40416334876974336, 2.0751403839054468], [0.09278380968591637, 2.1284079706087224], [0.5151964053615898, 2.0112893824195655], [0.7246388007356588, 1.7166789362271544], [0.9092363418497323, 1.3652730984039323], [1.0938338829638057, 1.0138672605807104], [1.2535865698178839, 0.6056660311266773], [1.413339256671962, 0.19746480167264419], [1.4346563060044222, -0.21784211089220884], [1.3991779637060715, -0.6083041691970665]], "left_eyebrow": [[-1.4972868629537959, -1.5064970937631885], [-1.1813593674289247, -1.7123616109539725], [-0.8157421633840624, -1.8046353448831345], [-0.4572306424500203, -1.7584734412906788], [-0.04902941299598729, -1.5987207544366007]], "right_eyebrow": [[0.5047131370904836, -1.5702980219933202], [0.7318947036137282, -1.6696774390333022], [1.0087659786569636, -1.6554660728116621], [1.228841862069388, -1.6164098523300265], [1.3530661333693654, -1.3324328941759709]], "nose_bridge": [[0.1816799584547924, -1.2259978672809184], [0.2242639838639633, -0.9739714464976785], [0.2916928635331296, -0.6651496340836274], [0.3591217432022961, -0.3563278216695764]], "nose_tip": [[-0.18398731884581956, -0.05108388743881021], [-0.02070682706420632, 0.012817187302821002], [0.22421391060821355, 0.10866879941526784], [0.33780469386983575, 0.05897909089527682], [0.5081908687622692, -0.015555471884709682]], "left_eye": [[-1.1529867082413938, -1.1834639151274973], [-0.9258051417181494, -1.2828433321674793], [-0.648933866674914, -1.268631965945839], [-0.5176039122641164, -1.123090645313401], [-0.7128349414165452, -1.1053514741642259], [-0.9648613621997852, -1.062767448755055]], "right_eye": [[0.5082409420180188, -1.098195717797656], [0.7105776542812676, -1.254370526468449], [0.9306535376936922, -1.2153143059868134], [1.0619834921044897, -1.0697729853543756], [0.8915973172120564, -0.9952384225743891], [0.6715214337996321, -1.034294643056025]], "top_lip": [[-0.6667731843355889, 0.7014174967276248], [-0.4076410804415288, 0.520397833796836], [-0.06686873065666213, 0.37132870823686304], [0.0964117611249511, 0.4352297829784943], [0.29164279027737994, 0.4174906118293189], [0.4797681363189886, 0.5381870782017613], [0.5791475533589707, 0.7653686447250058], [0.4975073074681641, 0.7334181073541901], [0.28453710716655983, 0.5559262493509366], [0.08930607801413096, 0.573665420500112], [-0.049129559507486764, 0.5665597373892919], [-0.5851329384447823, 0.7333680340984403]], "bottom_lip": [[0.5791475533589707, 0.7653686447250058], [0.4584510869865283, 0.9534939907666143], [0.3129097663540905, 1.0848239451774122], [0.11767873720166161, 1.1025631163265874], [-0.10239714621076268, 1.0635068958449518], [-0.42895812977398917, 0.9357047463616893], [-0.6667731843355889, 0.7014174967276248], [-0.5851329384447823, 0.7333680340984403], [-0.08818577998912253, 0.7866356208017162], [0.13189010342330193, 0.825691841283352], [0.32712113257573067, 0.8079526701341766], [0.4975073074681641, 0.7334181073541901]], "transform": {"center": [325.3888888888889, 414.94444444444446], "scale": 16.131165679294213, "angle": 0.4123641905403967}}, {"chin": [[-2.1493939928332795, -0.49968097111715254], [-2.0799592579502004, -0.0004714094203286945], [-2.020443770907561, 0.42742250060552023], [-1.879693384353507, 0.9167128144619041], [-1.8201778973108678, 1.3446067244877533], [-1.556634703095744, 1.6714272393213077], [-1.098983049548575, 1.825858707291593], [-0.5898542400113118, 1.8277396240794888], [0.0005094690373665944, 1.8910169446979195], [0.580953930245605, 1.8829786136453754], [1.1514791436134038, 1.8036246309218567], [1.559534557958373, 1.6014778405372676], [1.733804521609538, 1.2864574903320487], [1.7456046862378736, 0.84864433246576], [1.8386397503776237, 0.47222757843000607], [1.8504399150059596, 0.034414420563717185], [1.8622400796342953, -0.4033987373025717]], "left_eyebrow": [[-1.749376909540854, -1.2822722227099799], [-1.4938720463782744, -1.5358961690846638], [-1.0758973841928652, -1.6667273077982778], [-0.7093998779975512, -1.6450078953295022], [-0.3329831239617973, -1.551972831189752]], "right_eyebrow": [[0.3286962367578558, -1.4986147584117608], [0.6852744951127301, -1.5482109976139602], [1.0517720013080438, -1.526491585145185], [1.376711599353703, -1.2809059698230452], [1.559019894057412, -1.0154818588200256]], "nose_bridge": [[0.0018757219243013545, -1.2350715641966374], [0.03163346544562093, -1.021124609183713], [0.05147196112650067, -0.8784933058417631], [0.08122970464782026, -0.6645463508288387]], "nose_tip": [[-0.2871487183353895, -0.17713695376035052], [-0.14451741499343987, -0.19697544944123024], [0.008033136188949668, -0.14549829345113513], [0.22198009120187412, -0.17525603697245473], [0.3745306423842637, -0.12377888098235965]], "left_eye": [[-1.2619675124723657, -0.91389379972677], [-1.0579398052998812, -1.0149671949190644], [-0.8439928502869567, -1.044724938440384], [-0.6102073995931525, -0.9318513786197541], [-0.824154354606077, -0.9020936350984344], [-1.0381013096190015, -0.8723358915771149]], "right_eye": [[0.4892851189927896, -0.8666931412134276], [0.7745477256766888, -0.9063701325751871], [0.9984139285300532, -0.8648122244255317], [1.2321993792238575, -0.7519386646049016], [1.018252424210933, -0.722180921083582], [0.7230705696865937, -0.7538195813927975]], "top_lip": [[-0.7584814532987896, 0.6153735456729167], [-0.36034528679426014, 0.341911103617353], [-0.08500192795080067, 0.2309184605846187], [0.06754862323158886, 0.2823956165747138], [0.2814955782445133, 0.25263787305339425], [0.5152810289383175, 0.3655114328740243], [0.8501398748244162, 0.6824126998671389], [0.6975893236420267, 0.6309355438770439], [0.2399376700948581, 0.4765040759067586], [0.08738711891246859, 0.42502691991666347], [-0.1265598361004559, 0.45478466343798307], [-0.6158501499568398, 0.595535049992037]], "bottom_lip": [[0.8501398748244162, 0.6824126998671389], [0.49356161646954205, 0.7320089390693382], [0.1983797619452029, 0.7003702787601229], [0.05574845860325324, 0.7202087744410026], [-0.16811774425011114, 0.6786508662913474], [-0.3919839471034755, 0.6370929581416922], [-0.7584814532987896, 0.6153735456729167], [-0.6158501499568398, 0.595535049992037], [-0.1265598361004559, 0.45478466343798307], [0.025990715081933624, 0.5062618194280781], [0.2399376700948581, 0.4765040759067586], [0.6975893236420267, 0.6309355438770439]], "transform": {"center": [212.61111111111111, 69.98611111111111], "scale": 13.888468743645205, "angle": 0.13820268847220965}}, {"chin": [[-1.6682993827674226, -0.36619357502884065], [-1.674313707405676, 0.0348119134413124], [-1.668514749981776, 0.37095203417679895], [-1.6745290746200299, 0.7719575226469519], [-1.603864749461463, 1.1199109254445918], [-1.480148338630383, 1.5445429780390516], [-1.1263959784088435, 1.8100187736159714], [-0.6841516863283306, 1.9575771157857118], [-0.08855009465417762, 1.999031286610425], [0.5188647790821286, 1.9756200897004716], [1.0614142850837684, 1.9403956107283653], [1.6157770731475614, 1.8403057640215923], [1.9461182364591476, 1.498366685862206], [2.093676578628888, 1.056122393781693], [2.1763695530639615, 0.6020648196390266], [2.206010441826521, 0.07132859569954014], [2.288703416261595, -0.3827289784431262]], "left_eyebrow": [[-1.5089277585355292, -0.8733032348440204], [-1.3731826984279425, -1.2506821591898667], [-1.0546548171785093, -1.5277558696145865], [-0.7067014143808695, -1.598420194773153], [-0.32932249003502306, -1.4626751346655664]], "right_eyebrow": [[0.10712284462159002, -1.6512569132313129], [0.5317548972160497, -1.7749733240623924], [0.9976257534208695, -1.7571457173619858], [1.3631913957045625, -1.5565352895197322], [1.6402651061292823, -1.2380074082702994]], "nose_bridge": [[-0.11711414734496997, -1.1559605354782865], [-0.15255399353143, -0.9613644322742865], [-0.1761805576557367, -0.8316336968049534], [-0.1467550361075302, -0.6252243115388001]], "nose_tip": [[-0.4594839599330634, -0.012010480378593855], [-0.2530745746669103, -0.041436001926800456], [-0.11153055713542366, -0.08267480553716039], [0.09487882813072955, -0.11210032708536698], [0.3012882133968827, -0.1415258486335736]], "left_eye": [[-1.1433621162518361, -0.6726928070017669], [-0.9900048166581963, -0.7787969783467935], [-0.7717821493298896, -0.8730878676296667], [-0.5123206783912232, -0.8258347393810533], [-0.7305433457195297, -0.7315438500981801], [-0.936952730985683, -0.7021183285499736]], "right_eye": [[0.5197262479395428, -0.9729623471220862], [0.7261356332056962, -1.002387868670293], [0.9325450184718492, -1.0318133902184994], [1.1801932073483625, -0.9196948942352197], [0.9855971041443626, -0.9551347404216797], [0.7791877188782094, -0.9257092188734728]], "top_lip": [[-0.9137569012900834, 0.6424421543919723], [-0.6070423021028035, 0.4302338117019191], [-0.312140984977677, 0.28289083674653265], [-0.11754488177367711, 0.3183306829329927], [0.16554315328929606, 0.23585307571227282], [0.48986999196262926, 0.2949194860230396], [0.8554356342463222, 0.4955299138652929], [0.725704898776989, 0.4719033497409862], [0.14191658916498937, 0.3655838111816061], [-0.07630607816331716, 0.45987470046447926], [-0.27090218136731703, 0.42443485427801925], [-0.7722128837585968, 0.6012033507816124]], "bottom_lip": [[0.8554356342463222, 0.4955299138652929], [0.5192955135108358, 0.5013288712891928], [0.24802076051001593, 0.518941110775246], [-0.0232539924908039, 0.5365533502612992], [-0.2296633777569571, 0.5659788718095059], [-0.5127514128199303, 0.6484564790302257], [-0.9137569012900834, 0.6424421543919723], [-0.7722128837585968, 0.6012033507816124], [-0.27090218136731703, 0.42443485427801925], [-0.06449279610116382, 0.39500933272981265], [0.20678195689965598, 0.3773970932437594], [0.725704898776989, 0.4719033497409862]], "transform": {"center": [431.8888888888889, 126.93055555555556], "scale": 15.167070482007158, "angle": -0.1801456635190692}}]},
{"url": "zf18.jpg", "embedding": [[-0.09962975978851318, 0.052587635815143585, -0.01695375330746174, -0.07971713691949844, -0.11049231886863708, -0.11395841836929321, -0.03360334411263466, -0.026305172592401505, 0.13915492594242096, -0.07522648572921753, 0.2168390154838562, -0.15747559070587158, -0.23681260645389557, -0.02362276241183281, -0.1041921004652977, 0.10191202908754349, -0.06792769581079483, -0.0655486136674881, -0.19600459933280945, -0.15759697556495667, -0.0002072749484796077, 0.029544686898589134, 0.018219847232103348, 0.08622267842292786, -0.11926402896642685, -0.30174633860588074, -0.04335858300328255, -0.10255078971385956, 0.011487298645079136, -0.10683336853981018, -0.05009664222598076, 0.07327648997306824, -0.23371122777462006, -0.19455641508102417, 0.02835376374423504, 0.10472648590803146, -0.03912024199962616, -0.04130622744560242, 0.21136164665222168, 0.04149971157312393, -0.1696191132068634, 0.07089634984731674, 0.062102992087602615, 0.29528048634529114, 0.1905813366174698, 0.042980290949344635, -0.025122852995991707, -0.07099732011556625, 0.1974841058254242, -0.29592230916023254, 0.047084543853998184, 0.12207161635160446, 0.21550996601581573, 0.030088847503066063, 0.1038341373205185, -0.11024918407201767, -0.0037640973459929228, 0.1677815467119217, -0.177076518535614, 0.05950873717665672, 0.017608197405934334, -0.00648394413292408, -0.046518608927726746, -0.12227924168109894, 0.15256579220294952, 0.14265188574790955, -0.08822563290596008, -0.06480256468057632, 0.1879541575908661, -0.16443803906440735, 0.012095117010176182, 0.1284860372543335, -0.032947149127721786, -0.1966247409582138, -0.25378841161727905, 0.08551201969385147, 0.3549163043498993, 0.1576404571533203, -0.17319820821285248, -0.04710225760936737, -0.06118915230035782, -0.013600633479654789, 0.02191464602947235, -0.061421219259500504, -0.16419866681098938, 0.021574778482317924, -0.05357281118631363, 0.0455646850168705, 0.23991179466247559, -0.04347235709428787, -0.059891361743211746, 0.21146298944950104, 0.0072537134401500225, 0.0456981398165226, 0.07136885076761246, 0.04443197324872017, -0.16066911816596985, -0.03887820616364479, -0.175095796585083, 0.04977767914533615, 0.13524655997753143, -0.1800367832183838, -0.017944490537047386, 0.017087195068597794, -0.19342908263206482, 0.07841826975345612, -0.0593697652220726, -0.0789092406630516, -0.05806298181414604, 0.02579578571021557, -0.11466029286384583, 0.015837252140045166, 0.20836766064167023, -0.20023928582668304, 0.21704207360744476, 0.1625351458787918, 0.0010365465423092246, 0.14685100317001343, 0.1364307403564453, -0.033065129071474075, 0.026294905692338943, -0.03884606435894966, -0.07483892887830734, -0.17815028131008148, 0.10134990513324738, -0.002648854861035943, 0.08010263741016388, 0.000731215113773942], [-0.21226398646831512, 0.08091305196285248, 0.034870248287916183, -0.006845796946436167, -0.04237344115972519, -0.0005106132011860609, -0.017199654132127762, -0.12066745012998581, 0.0999077633023262, 0.033675990998744965, 0.18402761220932007, 0.032940078526735306, -0.17884275317192078, -0.05953183025121689, 0.04527978226542473, 0.13760383427143097, -0.17137055099010468, -0.07290327548980713, -0.10483413934707642, -0.08171974122524261, 0.03482102230191231, 0.0034957786556333303, 0.06823813915252686, 0.06081020087003708, -0.1582859456539154, -0.3428417146205902, -0.09450981020927429, -0.08310820907354355, 0.08053649961948395, -0.04687979072332382, 0.05930011346936226, -0.002619143109768629, -0.19801320135593414, -0.08059374988079071, 0.0772053450345993, 0.05158820375800133, -0.04340120777487755, -0.0655793622136116, 0.20850323140621185, 0.05533946305513382, -0.1490950584411621, 0.04554338753223419, 0.06308327615261078, 0.30238965153694153, 0.17999280989170074, 0.07774299383163452, 0.05754023790359497, -0.06458065658807755, 0.159134641289711, -0.2611999213695526, 0.11562290787696838, 0.08693403750658035, 0.1417185664176941, 0.026721302419900894, 0.14371803402900696, -0.1625450998544693, 0.07545245438814163, 0.11436771601438522, -0.18648718297481537, 0.10761518031358719, 0.07396264374256134, -0.020353585481643677, 0.006916027050465345, -0.05532817915081978, 0.13721369206905365, 0.09385061264038086, -0.10615930706262589, -0.11543282121419907, 0.06382694095373154, -0.06959975510835648, -0.005597682669758797, 0.08235669881105423, -0.11360089480876923, -0.22483929991722107, -0.373240202665329, 0.06994649767875671, 0.3671625852584839, 0.16606537997722626, -0.22256864607334137, -0.044534701853990555, -0.015048809349536896, 0.04224370792508125, 0.10875777900218964, 0.0760255828499794, -0.11454062163829803, -0.06748323142528534, -0.0706636980175972, -0.02456621639430523, 0.1742451936006546, 0.05375096946954727, -0.08418865501880646, 0.23998287320137024, 0.022812476381659508, -0.007865186780691147, 0.004944709129631519, 0.07378291338682175, -0.133890762925148, -0.036722421646118164, -0.09548315405845642, -0.04050613194704056, 0.038454215973615646, -0.009888698346912861, 0.05245448648929596, 0.11833865195512772, -0.24577176570892334, 0.17210441827774048, -0.03153768926858902, -0.001574173686094582, -0.028054868802428246, 0.003885315265506506, -0.1499233990907669, 0.03517249599099159, 0.09929095953702927, -0.27535873651504517, 0.19071896374225616, 0.24851472675800323, -0.017833689227700233, 0.10119380056858063, 0.08193283528089523, -0.006286805961281061, -0.01922314241528511, 0.0868597999215126, -0.11149165779352188, -0.06785053014755249, 0.06797917932271957, -0.07050629705190659, 0.027216987684369087, 0.012185024097561836], [-0.0635421946644783, 0.0685412660241127, 0.07833440601825714, -0.09098467230796814, -0.09653519839048386, 0.05999181047081947, -0.03536856174468994, -0.1932218372821808, 0.1850978583097458, -0.13896040618419647, 0.1548943966627121, -0.047131624072790146, -0.2961985468864441, -0.04327850043773651, 0.08883296698331833, 0.20704902708530426, -0.21181944012641907, -0.2063661813735962, -0.12514181435108185, -0.005754075478762388, -0.05068882554769516, 0.03371307626366615, 0.11570717394351959, 0.05058752000331879, -0.25498273968696594, -0.4052578806877136, -0.09664813429117203, -0.08323090523481369, 0.013101642951369286, 0.005359644535928965, 0.021057555451989174, 0.1019965261220932, -0.19406084716320038, 0.03253505378961563, 0.0509355328977108, 0.11735070496797562, -0.06731089949607849, -0.16142341494560242, 0.16356787085533142, -0.0023902938701212406, -0.28281545639038086, -0.050513237714767456, 0.031872641295194626, 0.1705193668603897, 0.20748993754386902, -0.011415702290832996, 0.1034461185336113, -0.05297946557402611, 0.12219514697790146, -0.31715714931488037, 0.05315100774168968, 0.09725850820541382, 0.005223043728619814, 0.10129724442958832, 0.05540556088089943, -0.18687859177589417, 0.025766294449567795, 0.17581415176391602, -0.21872009336948395, 0.056904420256614685, 0.08075649291276932, -0.06750673800706863, 0.014640857465565205, -0.06038564071059227, 0.18732336163520813, 0.1583123356103897, -0.16322162747383118, -0.15941022336483002, 0.17156027257442474, -0.17644427716732025, -0.02312672883272171, 0.08268070966005325, -0.1504276543855667, -0.20174933969974518, -0.29956158995628357, -0.0757816880941391, 0.4170627295970917, 0.12470517307519913, -0.16069211065769196, -0.07135611027479172, -0.04697065427899361, 0.01317063719034195, 0.001993982819840312, 0.14625942707061768, 0.025232193991541862, -0.061037641018629074, -0.06504762172698975, -0.0026852029841393232, 0.28655385971069336, -0.03482357785105705, -0.026001013815402985, 0.321857750415802, 0.015497135929763317, -0.010399592109024525, -0.007649258244782686, 0.09659461677074432, -0.08824151009321213, -0.0023728536907583475, -0.07945404946804047, 0.03974961116909981, -0.07852131873369217, -0.02296970598399639, -0.013607786037027836, 0.10701125115156174, -0.13928593695163727, 0.2915726900100708, -0.00012494837574195117, 0.03360770642757416, 0.026144498959183693, 0.02073085866868496, -0.07849902659654617, -0.07439970970153809, 0.16530841588974, -0.29868847131729126, 0.13408590853214264, 0.23954500257968903, 0.023444795981049538, 0.15177276730537415, -0.022036926820874214, 0.1284039169549942, -0.0008224459015764296, 0.026585761457681656, -0.2004709392786026, -0.10951774567365646, 0.031175265088677406, -0.07700392603874207, -0.031110433861613274, 0.07031138241291046], [-0.06700311601161957, 0.04666430130600929, 0.10848425328731537, -0.13279615342617035, -0.1725609004497528, -0.001474451390095055, 0.03639707341790199, -0.09175167977809906, 0.1591651737689972, -0.11648435890674591, 0.16955572366714478, -0.03622102364897728, -0.26598697900772095, 0.03960506618022919, -0.028569793328642845, 0.20720626413822174, -0.13367338478565216, -0.17141687870025635, -0.12173295766115189, -0.06977467238903046, 0.08998449146747589, 0.04825344681739807, 0.0543983094394207, 0.041020479053258896, -0.165375217795372, -0.3281785845756531, -0.06782829016447067, -0.033744096755981445, 0.04601972550153732, -0.10700338333845139, 0.03004387952387333, 0.1462513953447342, -0.1441514939069748, 0.019281987100839615, 0.09266243129968643, 0.08237048238515854, -0.030272357165813446, -0.1635366678237915, 0.25585946440696716, 0.05334864556789398, -0.25226566195487976, -0.0059888348914682865, 0.06687929481267929, 0.23753955960273743, 0.23381459712982178, -0.04831966385245323, 0.0873129591345787, -0.1252807229757309, 0.1594855934381485, -0.3819372057914734, 0.08862940222024918, 0.11193956434726715, 0.02057744190096855, 0.050600066781044006, 0.15518224239349365, -0.16765059530735016, -0.007448943797498941, 0.19483983516693115, -0.2216040939092636, 0.1311410814523697, 0.07785544544458389, -0.11392846703529358, -0.01959047093987465, -0.14908510446548462, 0.18973992764949799, 0.10809679329395294, -0.15075261890888214, -0.1567465215921402, 0.25860854983329773, -0.11624526977539062, -0.04991193488240242, 0.09425440430641174, -0.12341243773698807, -0.15373215079307556, -0.23889610171318054, 0.0004225310403853655, 0.38930365443229675, 0.153408944606781, -0.1801852285861969, 0.01171017624437809, -0.11621847003698349, 0.009143931791186333, -0.0163594800978899, 0.058993034064769745, -0.03552019223570824, -0.05241967737674713, -0.06847524642944336, 0.016279898583889008, 0.28406018018722534, -0.04483649507164955, -0.01258265133947134, 0.36315494775772095, 0.0041343397460877895, -0.053501952439546585, 0.022160975262522697, 0.08524476736783981, -0.1522715836763382, -0.049051683396101, -0.16619345545768738, -0.07498683780431747, 0.0063741737976670265, -0.1607043296098709, 0.018165120854973793, 0.17176546156406403, -0.25849050283432007, 0.14846330881118774, -0.12443602830171585, -0.02024017833173275, -0.02097933366894722, -0.04896678403019905, -0.1319161057472229, 0.004251912236213684, 0.1773652881383896, -0.27491864562034607, 0.16721610724925995, 0.20707614719867706, 0.056586381047964096, 0.09675212949514389, 0.07038728147745132, 0.060246799141168594, 0.06505084037780762, -0.07341722398996353, -0.12365690618753433, -0.06253714114427567, 0.07511848211288452, -0.01564881019294262, -0.053111132234334946, 0.07469446957111359], [-0.2000804990530014, 0.043632205575704575, 0.07097363471984863, -0.04866743087768555, -0.17157471179962158, 0.023772135376930237, 0.06112523004412651, -0.033095598220825195, 0.0893324539065361, -0.0016718467231839895, 0.2255699783563614, -0.09181032329797745, -0.3000616729259491, -0.13988298177719116, 0.06693706661462784, 0.15268288552761078, -0.07693631201982498, -0.1743668168783188, -0.050061896443367004, -0.09922456741333008, 0.05071636661887169, 4.450617325346684e-06, -0.035874925553798676, 0.0667349100112915, -0.17470964789390564, -0.3926069438457489, 0.0030287993140518665, -0.14725157618522644, 0.04241335391998291, -0.15183016657829285, 0.010664455592632294, 0.09777916222810745, -0.14150162041187286, -0.1292932778596878, 0.018526023253798485, 0.13113032281398773, -0.004214284010231495, -0.08443823456764221, 0.24569223821163177, -0.044892922043800354, -0.211483433842659, 0.007446357049047947, 0.09562985599040985, 0.32229724526405334, 0.14792971312999725, -0.04035887494683266, 0.0919961929321289, 0.039887793362140656, 0.1454722285270691, -0.2862311899662018, 0.06676051765680313, 0.08315745741128922, 0.14146944880485535, 0.029111141338944435, 0.1026725247502327, -0.1457551121711731, -0.012144297361373901, 0.18212264776229858, -0.2414850890636444, 0.14394597709178925, 0.07734758406877518, -0.07052601128816605, -0.04373275861144066, -0.08172602951526642, 0.1890239715576172, 0.035244930535554886, -0.1120632141828537, -0.12045170366764069, 0.08785548061132431, -0.09822076559066772, -0.06692202389240265, 0.10899586975574493, -0.16387644410133362, -0.168541818857193, -0.2980671525001526, 0.14970597624778748, 0.35587653517723083, 0.12042197585105896, -0.23673611879348755, -0.00560423219576478, 0.018533902242779732, 0.012429626658558846, 0.10146251320838928, 0.06750577688217163, 0.012479010038077831, -0.03697557747364044, -0.10036470741033554, 0.03574235737323761, 0.16947175562381744, 0.03061249665915966, -0.03293514996767044, 0.22387321293354034, 0.040366120636463165, 0.0016575227491557598, 0.03615114092826843, 0.11939751356840134, -0.09042148292064667, -0.004517856985330582, -0.08846427500247955, -0.0023958326783031225, 0.14250972867012024, -0.10242237150669098, 0.05537974461913109, 0.08545666188001633, -0.20928816497325897, 0.1517297327518463, -0.07283832132816315, 0.05914489924907684, -0.034305550158023834, -0.0410260409116745, -0.06378410011529922, 0.06839628517627716, 0.1544846147298813, -0.2637401819229126, 0.16712532937526703, 0.2188131958246231, -0.02923755533993244, 0.0976458340883255, 0.07564660906791687, -0.05889918655157089, 0.0600200891494751, -0.0032004357781261206, -0.16310015320777893, -0.08051609992980957, 0.10389824211597443, -0.061020053923130035, 0.053510650992393494, 0.045591145753860474], [-0.07284223288297653, 0.06383529305458069, 0.059914957731962204, -0.06016454100608826, -0.18087643384933472, 0.000489362922962755, -0.010249439626932144, -0.0378861166536808, 0.18159885704517365, -0.07366301864385605, 0.23411805927753448, -0.058326393365859985, -0.2083965390920639, 0.007633887697011232, -0.0950474888086319, 0.10822079330682755, -0.12482281774282455, -0.10350989550352097, -0.1418023556470871, -0.10156874358654022, 0.007153923157602549, 0.040824294090270996, -0.04612226411700249, 0.05720851197838783, -0.16774508357048035, -0.2670498490333557, -0.1163763552904129, -0.0501185767352581, 0.13292349874973297, -0.0762919932603836, -0.00841712485998869, 0.08809448033571243, -0.1500316560268402, -0.11425969749689102, 0.023576926440000534, 0.009015051648020744, -0.08828946202993393, -0.115475594997406, 0.28814971446990967, 0.05105525255203247, -0.13649655878543854, 0.040405116975307465, 0.017388414591550827, 0.26559534668922424, 0.18336765468120575, 0.019623292610049248, 0.04047976806759834, -0.053634192794561386, 0.15572857856750488, -0.3057377338409424, 0.06669300049543381, 0.1896750032901764, 0.14505000412464142, 0.090475894510746, 0.08827469497919083, -0.13942040503025055, -0.030709462240338326, 0.23390543460845947, -0.20256617665290833, 0.10931418836116791, -0.02453083172440529, -0.1117856577038765, 0.010071621276438236, -0.10687579214572906, 0.1342577189207077, 0.07418763637542725, -0.08482444286346436, -0.12724632024765015, 0.19914261996746063, -0.1386697143316269, -0.041910696774721146, 0.0852159634232521, -0.06764058768749237, -0.20681613683700562, -0.2975548803806305, 0.15027779340744019, 0.3850637972354889, 0.23260369896888733, -0.15110479295253754, 0.04421740770339966, -0.002675189869478345, -0.1055251806974411, 0.003935998771339655, 0.04241785779595375, -0.12837396562099457, -0.05162791535258293, -0.05487047880887985, 0.032794851809740067, 0.2080433964729309, -0.02532024495303631, -0.021150682121515274, 0.2821025252342224, 0.029683273285627365, 0.04265584796667099, 0.028423404321074486, 0.022982796654105186, -0.12750813364982605, -0.02353529818356037, -0.09291832149028778, 0.050319306552410126, 0.10259047150611877, -0.051495857536792755, 0.0401521772146225, 0.06273294985294342, -0.12100110203027725, 0.14473667740821838, -0.07119609415531158, -0.07202625274658203, -0.11510865390300751, -0.09493055939674377, -0.14407286047935486, 0.04083507880568504, 0.23834139108657837, -0.2331697642803192, 0.1676499992609024, 0.1300850212574005, 0.04581150785088539, 0.17095239460468292, 0.18363189697265625, -0.03669879585504532, 0.06808406114578247, -0.05069862678647041, -0.08849702775478363, -0.10214564949274063, 0.1323794722557068, -0.08049971610307693, 0.0756145566701889, 0.05167863517999649], [-0.021115712821483612, -0.015955640003085136, 0.07645907253026962, -0.11215245723724365, -0.09867385029792786, -0.04865744709968567, -0.048195865005254745, -0.005337137263268232, 0.19742172956466675, -0.07185550034046173, 0.16860142350196838, -0.05565185472369194, -0.20276783406734467, 0.012160089798271656, 0.042245958000421524, 0.11957284808158875, -0.17929065227508545, -0.117977574467659, -0.09665261209011078, -0.00910441018640995, 0.006234575062990189, 0.06211888790130615, 0.06769195199012756, 0.06531708687543869, -0.1482178419828415, -0.41508913040161133, -0.11988939344882965, -0.09197577089071274, -0.02037564292550087, -0.027057165279984474, 0.08286912739276886, 0.10918629914522171, -0.1263495534658432, -0.01040714606642723, 0.09230110049247742, 0.1001729667186737, -0.0263593178242445, -0.10060034692287445, 0.20662251114845276, -0.022863393649458885, -0.28900420665740967, -0.09469686448574066, 0.05790339410305023, 0.2504788041114807, 0.22348831593990326, 0.003339617047458887, 0.02889452688395977, -0.022372541949152946, 0.1721363514661789, -0.29123446345329285, 0.05618462711572647, 0.1581929475069046, 0.07352468371391296, 0.07825028896331787, 0.09246058017015457, -0.0879986584186554, 0.03757541999220848, 0.18673807382583618, -0.19477036595344543, 0.011295456439256668, 0.05698907747864723, -0.09664766490459442, 0.04002814739942551, -0.09109961986541748, 0.20368990302085876, 0.0461171455681324, -0.1699390858411789, -0.1688859909772873, 0.14397962391376495, -0.1743522584438324, -0.01201317086815834, 0.10737594217061996, -0.19443033635616302, -0.23439441621303558, -0.2990700304508209, 0.01020880788564682, 0.3018326163291931, 0.11744227260351181, -0.12346978485584259, 0.031164081767201424, -0.06167841702699661, 0.022395186126232147, -0.027389567345380783, 0.13995717465877533, 0.013152934610843658, 0.04303722083568573, -0.08584359288215637, 0.03955147787928581, 0.22312593460083008, -0.1288580298423767, 0.01707329787313938, 0.2892919182777405, -0.037010740488767624, 0.04024786874651909, -0.01656338945031166, 0.05630183592438698, -0.07478353381156921, 0.04199812933802605, -0.16512465476989746, 0.09556622058153152, 0.03953808918595314, 0.03051757998764515, 0.038195930421352386, 0.09242182224988937, -0.15067847073078156, 0.14296019077301025, -0.039007045328617096, -0.008102361112833023, -0.0015156918670982122, -0.0361333005130291, -0.10937469452619553, -0.1535409837961197, 0.1977604776620865, -0.2408348023891449, 0.10718747973442078, 0.17337091267108917, 0.06693407148122787, 0.14949403703212738, 0.021689392626285553, 0.06548123806715012, 0.01653577759861946, -0.05687590688467026, -0.17177006602287292, 0.02348981238901615, 0.046171218156814575, 0.017670487985014915, -0.0712680071592331, 0.01733185164630413], [-0.08786667138338089, 0.04042704775929451, 0.06298711150884628, -0.11999937891960144, -0.15422458946704865, -0.011021354235708714, -0.04597976803779602, -0.054854609072208405, 0.17598190903663635, -0.06349416077136993, 0.2130952924489975, -0.08185400813817978, -0.25595828890800476, -0.03302207961678505, -0.07338178157806396, 0.2216145396232605, -0.21728745102882385, -0.10146339982748032, 0.01001505833119154, 0.06394542008638382, 0.08490393310785294, 0.00015518825966864824, 0.030360888689756393, 0.016000982373952866, -0.1168215349316597, -0.3816414177417755, -0.13470885157585144, -0.08040007948875427, -0.08672859519720078, -0.038610875606536865, 0.006665973924100399, 0.04497678950428963, -0.16319923102855682, -0.01398550346493721, 0.0730419009923935, 0.07415416836738586, -0.006902167107909918, -0.1027107983827591, 0.11928021907806396, -0.007653543259948492, -0.30597367882728577, -0.038302306085824966, 0.0848892331123352, 0.17195898294448853, 0.14180783927440643, 0.020600395277142525, 0.019954899325966835, -0.0694035142660141, 0.11264552921056747, -0.16819249093532562, 0.025188246741890907, 0.12893885374069214, 0.060671817511320114, 0.030059151351451874, 0.009413360618054867, -0.14062701165676117, 0.0279765035957098, 0.17745989561080933, -0.12076791375875473, -0.007544330321252346, 0.10165060311555862, -0.05436328798532486, -0.014557423070073128, -0.08084800839424133, 0.19118405878543854, 0.0724799782037735, -0.16509193181991577, -0.24485352635383606, 0.12328090518712997, -0.10819542407989502, -0.03559042885899544, 0.08283376693725586, -0.22591304779052734, -0.21965931355953217, -0.26181748509407043, -0.023154225200414658, 0.37495747208595276, 0.07941886782646179, -0.15946456789970398, 0.007032137364149094, -0.09320139139890671, 0.06412332504987717, 0.04038302227854729, 0.1778767704963684, 0.07645124942064285, 0.08442983776330948, -0.11691583693027496, -0.051346052438020706, 0.20314717292785645, -0.12935031950473785, -0.02235444076359272, 0.2621687948703766, -0.05018883943557739, 0.08924207836389542, -0.04240591078996658, -0.010426807217299938, -0.049092911183834076, 0.0514284111559391, -0.09947104007005692, -0.01607426442205906, 0.0003890655643772334, -0.022083450108766556, -0.038527753204107285, 0.11487937718629837, -0.14502254128456116, 0.0847690999507904, 1.9992919987998903e-05, 0.08626338094472885, -0.012493792921304703, 0.014694496989250183, -0.07974621653556824, -0.0962514579296112, 0.14168253540992737, -0.23450782895088196, 0.18401019275188446, 0.19191914796829224, 0.05832485109567642, 0.08929471671581268, 0.1071518212556839, 0.07115396112203598, 0.01974589191377163, -0.0399186946451664, -0.19824035465717316, 0.006229302380234003, 0.04969525709748268, -0.043647654354572296, 0.022742321714758873, -0.018350975587964058], [-0.1317128986120224, 0.20745114982128143, 0.06491627544164658, -0.08033648133277893, -0.1487669050693512, 0.050752006471157074, -0.018397066742181778, -0.06759544461965561, 0.22974085807800293, -0.10873505473136902, 0.23582319915294647, 0.018841439858078957, -0.1652509868144989, -0.07970577478408813, -0.11388557404279709, 0.16527628898620605, -0.14144396781921387, -0.13320627808570862, 0.005241429898887873, -0.03552551195025444, 0.10457149893045425, 0.030198518186807632, -0.005060248076915741, 0.0840069130063057, -0.14701351523399353, -0.3560163378715515, -0.10248421132564545, -0.11643780767917633, 0.0541071854531765, -0.10586261749267578, 0.012710035778582096, -0.01504939328879118, -0.16913169622421265, -0.051377858966588974, -0.020132403820753098, 0.05103592947125435, -0.019655469805002213, -0.034957319498062134, 0.19303452968597412, 0.06882361322641373, -0.1514870524406433, 0.06834284961223602, -0.0085426215082407, 0.33717232942581177, 0.11443815380334854, 0.0047147530131042, 0.06929899752140045, -0.0502532422542572, 0.0865340456366539, -0.15562045574188232, 0.06258144974708557, 0.15300007164478302, 0.12732575833797455, 0.055183712393045425, 0.03885559365153313, -0.08990267664194107, 0.037667300552129745, 0.11217612773180008, -0.23486465215682983, 0.04443107172846794, 0.06571429967880249, -0.01594412885606289, -0.007507380563765764, 0.016673661768436432, 0.1581036001443863, 0.0998714342713356, -0.0597093440592289, -0.14435940980911255, 0.15038463473320007, -0.15368947386741638, -0.012628845870494843, 0.013779610395431519, -0.11751438677310944, -0.16333766281604767, -0.19080418348312378, 0.09702318906784058, 0.445566326379776, 0.24621960520744324, -0.18614889681339264, 0.0008721281192265451, -0.09811843186616898, -0.03018413856625557, 0.059216730296611786, 0.0430804118514061, -0.0788755714893341, 0.008854102343320847, -0.09687820822000504, 0.067605160176754, 0.1368771642446518, 0.003248786088079214, -0.010743919759988785, 0.2533358931541443, 0.08517975360155106, -0.013252847827970982, 0.026796340942382812, -0.013747544959187508, -0.13486222922801971, 0.047442205250263214, -0.08351358771324158, -0.025312870740890503, -0.03704329580068588, -0.0511871762573719, 0.017179004848003387, 0.07884354144334793, -0.22764183580875397, 0.18701179325580597, 0.0031976348254829645, -0.05975745990872383, -0.09003425389528275, 0.09852664917707443, -0.13023164868354797, -0.04325880855321884, 0.1542872041463852, -0.16626785695552826, 0.17133863270282745, 0.17934808135032654, 0.027218028903007507, 0.17522649466991425, 0.12717948853969574, 0.04718072712421417, 0.030935630202293396, -0.0723620355129242, -0.061049167066812515, -0.08684547990560532, 0.0478295236825943, -0.07927500456571579, 0.11221274733543396, 0.0063473437912762165], [-0.11994527280330658, 0.11008837819099426, -0.02780190482735634, -0.04829362407326698, -0.1658271998167038, 0.06909461319446564, 0.022932283580303192, -0.12796558439731598, 0.1440213918685913, -0.11754723638296127, 0.22592733800411224, -0.07774634659290314, -0.2882020175457001, -0.07574959844350815, -0.017063036561012268, 0.13829734921455383, -0.07137779146432877, -0.14579932391643524, -0.1280956268310547, -0.09430056065320969, -0.015231563709676266, 0.09109880030155182, -0.05337788909673691, 0.05945505574345589, -0.11409953236579895, -0.33290475606918335, -0.04060359671711922, -0.10129404813051224, 0.06851236522197723, -0.07410528510808945, -0.03225147724151611, 0.13541650772094727, -0.09444394707679749, -0.0764341652393341, 0.09408296644687653, 0.059142693877220154, -0.11794767528772354, -0.08291956782341003, 0.20607693493366241, -0.01212954893708229, -0.1591092199087143, -0.0441012978553772, 0.05313500389456749, 0.2895582914352417, 0.09753109514713287, -0.06875381618738174, 0.04465850815176964, -0.07985471934080124, 0.12203887104988098, -0.2628956735134125, 0.07469243556261063, 0.15554125607013702, 0.14803288877010345, 0.13145117461681366, 0.09116705507040024, -0.16770395636558533, -0.004128132481127977, 0.16292805969715118, -0.1431727260351181, 0.07730896025896072, 0.08246145397424698, -0.06285905092954636, -0.05816394090652466, -0.07772789150476456, 0.16176417469978333, 0.10276074707508087, -0.09854059666395187, -0.12851715087890625, 0.15593531727790833, -0.1088767722249031, -0.05655143782496452, 0.07920350879430771, -0.12301149219274521, -0.21059229969978333, -0.16526812314987183, 0.10164418816566467, 0.34861066937446594, 0.23437714576721191, -0.1936488151550293, -0.06964951008558273, -0.030424917116761208, -0.002872709184885025, 0.08784037828445435, 0.006742799188941717, -0.08521439135074615, -0.0996554046869278, -0.042030587792396545, 0.0437614768743515, 0.21053403615951538, -0.020379409193992615, -0.05797811225056648, 0.253481388092041, 0.05162110924720764, 0.0013168472796678543, 0.056998033076524734, 0.032006170600652695, -0.06995037943124771, -0.03273280709981918, -0.10829712450504303, -0.0021327489521354437, 0.08728638291358948, -0.12208058685064316, 0.021800553426146507, 0.10457793623209, -0.15307685732841492, 0.2260446399450302, -0.005898089148104191, 0.03974788263440132, 0.013300283811986446, -0.03166551887989044, -0.09634003788232803, 0.041997361928224564, 0.1888328343629837, -0.17740774154663086, 0.21790722012519836, 0.10834923386573792, 0.09001101553440094, 0.16151870787143707, 0.09798421710729599, -0.009256643243134022, 0.043372150510549545, -0.1132681742310524, -0.14009761810302734, -0.1270458698272705, 0.14527513086795807, -0.035934045910835266, -0.012659880332648754, -0.008851088583469391], [-0.16226431727409363, 0.1260087937116623, 0.04559985548257828, -0.05977479740977287, -0.08050785958766937, -0.0876055508852005, 0.009825343266129494, -0.011515919119119644, 0.09236406534910202, 0.021550137549638748, 0.20328389108181, -0.10439333319664001, -0.21175359189510345, -0.059662915766239166, -0.02367161028087139, 0.11528594046831131, -0.200752854347229, -0.09239114820957184, -0.09030233323574066, -0.0935879573225975, 0.11721527576446533, 0.04614702984690666, -0.03541748598217964, 0.07160291075706482, -0.1923559308052063, -0.302456259727478, -0.025006670504808426, -0.08886439353227615, 0.010057391598820686, -0.08601383119821548, 0.05713172256946564, 0.11291245371103287, -0.12946708500385284, -0.07047808915376663, 0.04867606610059738, 0.09474514424800873, -0.015302329324185848, -0.07241150736808777, 0.22452592849731445, 0.007988341152668, -0.11230923980474472, -0.0019463725620880723, 0.016758762300014496, 0.38314005732536316, 0.21019962430000305, -0.057599782943725586, 0.03903276473283768, 0.01753244921565056, 0.21658965945243835, -0.30776911973953247, 0.01703495904803276, 0.15873737633228302, 0.1501644104719162, 0.05556465685367584, 0.1421765685081482, -0.05847610905766487, 0.0029295701533555984, 0.1954028606414795, -0.21127934753894806, 0.08329767733812332, 0.036323726177215576, -0.07847051322460175, -0.005218620877712965, -0.1593683511018753, 0.10973632335662842, 0.06694874167442322, -0.11651238054037094, -0.10877563059329987, 0.12699949741363525, -0.07896026968955994, -0.08411042392253876, 0.06710699200630188, -0.12734995782375336, -0.19493933022022247, -0.2809580862522125, 0.07543123513460159, 0.2963912785053253, 0.15122070908546448, -0.24399332702159882, -0.024251921102404594, 0.011637433432042599, -0.0073286741971969604, 0.09920507669448853, -0.00700205797329545, -0.072792187333107, -0.018362270668148994, -0.13030597567558289, 0.06588517129421234, 0.22686932981014252, -0.036828383803367615, -0.09004123508930206, 0.2084657847881317, 0.009804370813071728, -0.02912081405520439, 0.03732715919613838, 0.004729995038360357, -0.09079915285110474, 0.02161007560789585, -0.1536054164171219, 0.05330822989344597, 0.1101800724864006, -0.11088604480028152, -0.03330940008163452, 0.08059265464544296, -0.12153898924589157, 0.13713473081588745, -0.020975684747099876, 0.019218945875763893, -0.13532008230686188, -0.0751095786690712, -0.19732920825481415, 0.08898058533668518, 0.18721094727516174, -0.18208351731300354, 0.1938038170337677, 0.14823932945728302, -0.008911894634366035, 0.10395827144384384, 0.059008192270994186, -0.06710754334926605, 0.012236451730132103, -0.01521891076117754, -0.0838179886341095, -0.11759451776742935, 0.12610885500907898, 0.0243492741137743, 0.046822719275951385, -0.018120648339390755]], "landmarks": [{"chin": [[-1.7969983414347843, -0.9517781858323163], [-1.874186302116154, -0.4880184921746069], [-1.7658703853344395, 0.006616385755650267], [-1.7503064072842673, 0.4858136715496335], [-1.6419904905025533, 0.9804485494798908], [-1.3327331041214814, 1.4132066729511537], [-1.0080381256041355, 1.7532128576908752], [-0.482401677487432, 2.031342287971602], [0.07410995490181926, 2.1239678407892457], [0.5687448328320764, 2.0156519240075315], [1.0015029563033397, 1.7063945376264595], [1.3415091410430606, 1.381699559109114], [1.604200979187514, 0.9488150497239523], [1.7895784707366993, 0.4077410094709749], [1.8667664314180688, -0.056018684186734446], [1.8512024533678964, -0.5352159699807177], [1.928390414049266, -0.9989756636384273]], "left_eyebrow": [[-1.5497440954266049, -1.291910756485936], [-1.3179274415546995, -1.539291388408014], [-1.0242340332238, -1.5857305507307342], [-0.6532262782976326, -1.5239801821856385], [-0.3904080542392807, -1.3849154670452748]], "right_eyebrow": [[0.3670450477493281, -1.3541666686866256], [0.6916136403527755, -1.5861097084724292], [0.985307048683675, -1.6325488707951492], [1.3563148036098425, -1.5707985022500537], [1.5882578433956467, -1.2462299096466065]], "nose_bridge": [[0.042476455145880776, -1.1222236289008214], [-0.01927391339921486, -0.751215873974654], [0.02716524892350531, -0.45752246564375443], [-0.03458511962159031, -0.08651471071758693]], "nose_tip": [[-0.43646805882030565, 0.0372387982004012], [-0.2664017734934958, 0.1608659212044909], [0.011854042701129844, 0.20717869761331262], [0.2127955123004875, 0.14530194315431855], [0.4137369818998452, 0.08342518869532448]], "left_eye": [[-1.1168595860414436, -1.0292189183414826], [-0.900480524305812, -1.1838476115320187], [-0.7149766468427281, -1.1529724272594708], [-0.45215842278437635, -1.0139077121191071], [-0.745851831115276, -0.9674685497963871], [-0.9313557085783598, -0.998343734068935]], "right_eye": [[0.49079855666731625, -0.9522837294879101], [0.7226152105392217, -1.199664361409988], [0.9081190880023056, -1.1687891771374401], [1.1709373120606572, -1.0297244619970767], [0.9699958424612996, -0.9678477075380824], [0.6763024341304, -0.9214085452153622]], "top_lip": [[-0.9001013665641165, 0.5320000620445569], [-0.606407958233217, 0.4855608997218367], [-0.32815214203859144, 0.5318736761306584], [-0.049896325843965784, 0.5781864525394801], [0.24379708248693374, 0.5317472902167599], [0.5220528986815594, 0.5780600666255817], [0.9084982457440007, 0.5470584964391354], [0.800308714876185, 0.6243728430344034], [0.21292189821438592, 0.7172511676798436], [-0.06533391798023969, 0.670938391271022], [-0.25083779544332346, 0.6400632069984742], [-0.8073494278325747, 0.5474376541808307]], "bottom_lip": [[0.9084982457440007, 0.5470584964391354], [0.5684920610042796, 0.8717534749564811], [0.2439234684008322, 1.103696514742285], [-0.04976993993006737, 1.1501356770650053], [-0.3125881639884191, 1.0110709619246416], [-0.5754063880467708, 0.8720062467842782], [-0.9001013665641165, 0.5320000620445569], [-0.8073494278325747, 0.5474376541808307], [-0.2817129797158713, 0.8255670844615579], [-0.003457163521245643, 0.8718798608703796], [0.27479865267338, 0.9181926372792013], [0.800308714876185, 0.6243728430344034]], "transform": {"center": [414.5138888888889, 390.84722222222223], "scale": 10.635144031946483, "angle": -0.16492770340780627}}, {"chin": [[-1.5796501906320741, -0.8520385737752466], [-1.5776772008411457, -0.3476246961035995], [-1.5761974584979495, 0.030685712150135838], [-1.5742244687070208, 0.535099589821783], [-1.3205377875280009, 0.912423503180054], [-1.1924613283191607, 1.416344133403969], [-0.812671177722229, 1.793174799314508], [-0.5594777439909413, 2.0443952432548675], [-0.054570618871562074, 2.1685257228818506], [0.4493500113523529, 2.0404492636730103], [0.9527773941285358, 1.7862693350462584], [1.3296080600390747, 1.4064791844493267], [1.7064387259496139, 1.0266890338523953], [1.957165922442241, 0.6473921307031956], [2.0812964020692246, 0.14248500558381635], [2.0793234122782964, -0.3619288720878307], [2.2034538919052795, -0.86683599720721]], "left_eyebrow": [[-1.4550264635573587, -1.2308422294767138], [-1.329909489034911, -1.4835424157602697], [-0.9520923282289079, -1.611125627521378], [-0.6998853893930843, -1.612112122416842], [-0.32108173369161686, -1.4874883953421267]], "right_eyebrow": [[0.18283889653229815, -1.6155648545509669], [0.5606560573383014, -1.7431480663120749], [0.9389664655920367, -1.7446278086552711], [1.1916666518755923, -1.6195108341328237], [1.570963555024792, -1.3687836376401965]], "nose_bridge": [[-0.06739505251259698, -1.1101644819838554], [-0.19251202703504455, -0.8574642957002999], [-0.19103228469184821, -0.47915388744656445], [-0.18955254234865188, -0.10084347919282917]], "nose_tip": [[-0.5673697031546551, 0.026739732568278943], [-0.3146695168710994, 0.1518567070907265], [-0.18856604745318764, 0.15136345964299436], [0.06364089138263591, 0.15037696474753015], [0.31535458277072737, 0.02328700043415416]], "left_eye": [[-1.0757295604081591, -0.9801150329840868], [-0.9501193384379794, -1.1067117498497308], [-0.6979123996021558, -1.1076982447451948], [-0.571315682736512, -0.9820880227750152], [-0.6974191521544237, -0.981594775327283], [-0.9496260909902473, -0.9806082804318188]], "right_eye": [[0.563122294576962, -1.112630719222516], [0.6892257639948737, -1.1131239666702482], [0.9414327028306972, -1.1141104615657123], [1.1936396416665207, -1.1150969564611766], [0.9419259502784293, -0.9880069921478005], [0.6897190114426057, -0.9870204972523363]], "top_lip": [[-0.817110404751818, 0.658243574553302], [-0.6915001827816384, 0.5316468576876582], [-0.3136830219756352, 0.40406364592655003], [-0.06147608313981164, 0.4030771510310858], [0.19073085569601192, 0.40209065613562156], [0.5690412639497473, 0.40061091379242525], [0.822234697681035, 0.6518313577327846], [0.6961312282631232, 0.6523246051805166], [0.19122410314374405, 0.5281941255535334], [-0.06098283569207953, 0.5291806204489976], [-0.3131897745279031, 0.5301671153444618], [-0.6910069353339062, 0.6577503271055699]], "bottom_lip": [[0.822234697681035, 0.6518313577327846], [0.5710142537406757, 0.9050247914640723], [0.1931970929346725, 1.0326080032251805], [-0.05900984590115108, 1.0335944981206449], [-0.3112167847369746, 1.034580993016109], [-0.690020440438442, 0.9099572659413935], [-0.817110404751818, 0.658243574553302], [-0.6910069353339062, 0.6577503271055699], [-0.3117100321847067, 0.9084775235981971], [-0.05950309334888319, 0.9074910287027329], [0.1927038454869404, 0.9065045338072687], [0.6961312282631232, 0.6523246051805166]], "transform": {"center": [247.5, 185.80555555555554], "scale": 7.929935274438885, "angle": 0.0039114303084727105}}, {"chin": [[-1.799302370392982, -1.012300875460625], [-1.7619656851153027, -0.4672631640761622], [-1.7527721205211955, -0.025604370831877665], [-1.7154354352435164, 0.519433340552585], [-1.4713409136854811, 1.008184810569905], [-1.2553895128110168, 1.3935573624470465], [-0.8326802756561963, 1.7226436729570453], [-0.5414930773251254, 1.976494186010437], [-0.07169116339726955, 2.070679539556508], [0.4733465479871933, 2.0333428542788288], [0.9339548973209417, 1.6858694145806155], [1.291184328514512, 1.3665390955659729], [1.6202706390245105, 0.9438298584111525], [1.8178349107107596, 0.445884823799725], [1.9120202642568302, -0.02391709012813098], [1.902826699662723, -0.4655758833724155], [1.968868932525222, -1.0387567154404498]], "left_eyebrow": [[-1.4702160598829832, -1.4350101126154458], [-1.18822242614602, -1.622818392806338], [-0.9814645898656633, -1.679104634173481], [-0.6150415940779856, -1.5567761599438388], [-0.38014063711405766, -1.5096834831708035]], "right_eyebrow": [[0.2964191130941548, -1.4717843709918756], [0.5784127468311182, -1.6595926511827683], [0.9166926219352244, -1.6406430950933042], [1.2549724970393308, -1.6216935390038403], [1.4146376565466519, -1.4430788234070555]], "nose_bridge": [[-0.03266719741584387, -1.0490751338370552], [-0.05161675350530781, -0.7107952587329488], [0.0046694878618350755, -0.5040374224525923], [-0.014280068227628822, -0.16575754734848602]], "nose_tip": [[-0.3996526201047705, 0.05019385352597805], [-0.26813058128102074, 0.12542965098258488], [-0.03322962431709275, 0.1725223277556202], [0.17352821196326376, 0.11623608638847732], [0.4084291689271917, 0.1633287631615127]], "left_eye": [[-1.1227426201847694, -0.974401763281697], [-0.9441279045879843, -1.1340669227890183], [-0.7092269476240564, -1.0869742460159828], [-0.446182869976557, -0.9365026511027694], [-0.681083826940485, -0.9835953278758045], [-0.8878416632208415, -0.9273090865086616]], "right_eye": [[0.5405136346521904, -0.9830329009745556], [0.7191283502489755, -1.1426980604818768], [0.9540293072129036, -1.0956053837088415], [1.085551346036653, -1.0203695862522348], [0.982172427896475, -0.9922264655686633], [0.7754145916161184, -0.9359402242015205]], "top_lip": [[-0.9073536462115541, 0.6325682501881198], [-0.6253600124745909, 0.4447599699972272], [-0.2870801373704847, 0.46370952608669114], [-0.08032230109012813, 0.40742328471954825], [0.2579575740139781, 0.42637284080901217], [0.5962374491180844, 0.4453223968984761], [0.8592815267655838, 0.5957939918116898], [0.7559026086254056, 0.6239371124952613], [0.18272177655737132, 0.5578948796327619], [-0.024036059722985226, 0.6141811209999047], [-0.25893701668691327, 0.5670884442268693], [-0.8039747280713759, 0.6044251295045484]], "bottom_lip": [[0.8592815267655838, 0.5957939918116898], [0.6335741343957633, 0.990360108282939], [0.24820158251862173, 1.2063115091574028], [-0.06193517190191311, 1.2907408712081172], [-0.29683612886584104, 1.243648194435082], [-0.6914022453370902, 1.0179408020652616], [-0.9073536462115541, 0.6325682501881198], [-0.8039747280713759, 0.6044251295045484], [-0.24974345209280568, 1.008747237471154], [-0.04298561581244914, 0.952460996104011], [0.29529425929165704, 0.9714105521934748], [0.7559026086254056, 0.6239371124952613]], "transform": {"center": [59.72222222222222, 338.52777777777777], "scale": 9.333478008137966, "angle": 0.26579164637571306}}, {"chin": [[-1.5980161527609247, -1.0338643268671606], [-1.608208901606181, -0.5431150683752541], [-1.4957143358284601, -0.04981762267203348], [-1.5059070846737164, 0.44093163581987305], [-1.2707252042730195, 0.9367772687344077], [-1.032995136661008, 1.3099355870259657], [-0.795265069048997, 1.6830939053175236], [-0.4348476868140092, 2.0588004108203957], [-0.06678574294507929, 2.0664449724543377], [0.42396351554682726, 2.076637721299594], [0.919809148461362, 1.8414558408988968], [1.4182029685872104, 1.483586645875223], [1.7939094740900823, 1.123169263640235], [1.9267895375583153, 0.6349681923596426], [2.062217788237862, 0.02407980645607349], [2.072410537083118, -0.4666694520358331], [2.2078387877626646, -1.0775578379394022]], "left_eyebrow": [[-1.467684276504006, -1.3993780835247764], [-1.3424487746697154, -1.519517210936439], [-1.094525958212448, -1.6371081511367875], [-0.726464014343518, -1.6294635895028455], [-0.4836375723088789, -1.5016799004572408]], "right_eyebrow": [[0.252486315428981, -1.4863907771893565], [0.6230964465092249, -1.601433530178391], [0.8710192629664921, -1.7190244703787398], [1.236533019624108, -1.588692594121821], [1.6020467762817239, -1.458360717864902]], "nose_bridge": [[-0.12322019007389105, -1.1259733949543689], [-0.13086475170783315, -0.7579114510854389], [-0.25864844075343785, -0.5150850090507998], [-0.2662930023873799, -0.14702306518186978]], "nose_tip": [[-0.5167640060559613, 0.09325518964145542], [-0.271389376810008, 0.09835156406408348], [-0.15125024939834542, 0.22358706589837413], [-0.026014747564054745, 0.10344793848671155], [0.21935988168189854, 0.10854431290933962]], "left_eye": [[-1.107266894269018, -1.0236715780219043], [-0.9845795796460414, -1.0211233908105903], [-0.7366567631887742, -1.138714331010939], [-0.493830321154135, -1.0109306419653343], [-0.7417531376114023, -0.8933397017649857], [-0.9871277668573554, -0.8984360761876137]], "right_eye": [[0.48766819582967813, -0.990545144274822], [0.7355910122869455, -1.1081360844751706], [0.9809656415328988, -1.1030397100525426], [1.1011047689445612, -0.9778042082182519], [0.9784174543215847, -0.9803523954295659], [0.7330428250756313, -0.9854487698521939]], "top_lip": [[-0.7723313841471706, 0.5789080737107338], [-0.64709588231288, 0.4587689462990713], [-0.2790339384439501, 0.4664135079330134], [-0.1563466238209735, 0.4689616951443274], [0.09157619263629382, 0.35137075494397885], [0.4570899492939097, 0.48170263120089757], [0.8226037059515255, 0.6120345074578163], [0.699916391328549, 0.6094863202465023], [0.08647981821366577, 0.5967453841899321], [-0.15889481103228753, 0.5916490097673041], [-0.28158212565526414, 0.58910082255599], [-0.6521922567355081, 0.7041435755450245]], "bottom_lip": [[0.8226037059515255, 0.6120345074578163], [0.5695845150716302, 0.9750000769041182], [0.19897438399138628, 1.0900428298931526], [-0.04640024525456701, 1.0849464554705246], [-0.29177487450052025, 1.0798500810478966], [-0.5346013165351595, 0.9520663920022919], [-0.7723313841471706, 0.5789080737107338], [-0.6521922567355081, 0.7041435755450245], [-0.28922668728920625, 0.9571627664249199], [-0.043852058043252984, 0.962259140847548], [0.2015225712027003, 0.967355515270176], [0.699916391328549, 0.6094863202465023]], "transform": {"center": [413.19444444444446, 244.15277777777777], "scale": 8.149044431976119, "angle": -0.02076678341853027}}, {"chin": [[-1.8843224026262755, -1.165693416626268], [-1.8262646688520383, -0.5955087452120863], [-1.777883224040174, -0.12035485236693497], [-1.7295017792283096, 0.35479904047821637], [-1.4910587772783848, 0.8106003553986219], [-1.1672612857218025, 1.1616946027876245], [-0.8434637941652203, 1.512788850176627], [-0.5293425915710108, 1.7688523189965988], [-0.044512409763486666, 1.815501652753765], [0.5353485506130677, 1.852474697548558], [0.9911498655334734, 1.614031695598633], [1.342244112922476, 1.290234204042051], [1.6836620713491053, 0.8714059339164384], [1.9203729622443317, 0.36722317418416844], [1.9670222960014976, -0.11760700762335577], [2.108702408327694, -0.6121134783932528], [2.1456754531224873, -1.1919744387698072]], "left_eyebrow": [[-1.7039371344505878, -1.2800767731200438], [-1.438197376668243, -1.499167197145223], [-1.0580742623921218, -1.5378723529947145], [-0.7536293487602852, -1.3768396627437725], [-0.3638299455217914, -1.320514040024234]], "right_eyebrow": [[0.39641628303045073, -1.397924351723217], [0.6718323297751687, -1.5219839971793656], [1.05195544405129, -1.560689153028857], [1.4320785583274107, -1.5993943088783484], [1.7365234719592473, -1.4383616186274064]], "nose_bridge": [[-0.04970874292758192, -1.0644505712042613], [-0.011003587078090453, -0.6843274569281405], [-0.06732920979762924, -0.2945280536896466], [-0.028624053948137773, 0.08559506058647445]], "nose_tip": [[-0.49410165783091614, 0.22900728396736908], [-0.2943638117304828, 0.3046854846116536], [0.000404812938980835, 0.3706873962935653], [0.1807900811146685, 0.2563040397997893], [0.370851638252729, 0.23695146187504354]], "left_eye": [[-1.2947851532873482, -1.0336895932624446], [-1.0193691065426302, -1.1577492387185933], [-0.8196312604421969, -1.082071038074309], [-0.5248626357727333, -1.016069126392397], [-0.8099549714798241, -0.9870402595052784], [-1.095047307186915, -0.9580113926181598]], "right_eye": [[0.5301522174489726, -1.0274775264094684], [0.8055682641936904, -1.151537171865617], [1.0906605999007815, -1.1805660387527357], [1.3000747349635875, -1.0098570595394212], [1.0149823992564966, -0.9808281926523025], [0.8249208421184362, -0.9614756147275568]], "top_lip": [[-0.825843327295173, 0.7428663326620119], [-0.550427280550455, 0.6188066872058631], [-0.2653349448433642, 0.5897778203187444], [-0.06559709874293082, 0.6654560209630289], [0.1244644583951297, 0.6461034430382832], [0.41923308306459334, 0.7121053547201949], [0.7993561973407144, 0.6734001988707033], [0.6092946402026539, 0.6927527767954491], [0.13414074735750256, 0.7411342216073135], [-0.055920809780557953, 0.7604867995320592], [-0.24598236691861847, 0.7798393774568049], [-0.6357817701571125, 0.7235137547372661]], "bottom_lip": [[0.7993561973407144, 0.6734001988707033], [0.4385856609893391, 0.9021669118582554], [0.15349332528224832, 0.931195778745374], [-0.036568231855812205, 0.9505483566701197], [-0.2266297889938727, 0.9699009345948654], [-0.5213984136633364, 0.9038990229129539], [-0.825843327295173, 0.7428663326620119], [-0.6357817701571125, 0.7235137547372661], [-0.25565865588099135, 0.6848085988877746], [-0.055920809780557953, 0.7604867995320592], [0.13414074735750256, 0.7411342216073135], [0.6092946402026539, 0.6927527767954491]], "transform": {"center": [660.3888888888889, 359.1388888888889], "scale": 10.468777063720315, "angle": 0.10147296281336698}}, {"chin": [[-1.4214640316133325, -1.1370747157878727], [-1.4930554331648556, -0.7217269467544395], [-1.3531793571753286, -0.21961340407214883], [-1.3228306129806602, 0.18814717891261729], [-1.1829545369911334, 0.6902607215949078], [-0.948725501304082, 1.0828469324823398], [-0.7144964656170305, 1.4754331433697718], [-0.48026742992997895, 1.8680193542572037], [-0.06491966089654583, 1.9396107558087268], [0.44478106783441185, 1.9016748255653912], [1.048834756262894, 1.7542115635271973], [1.53577392684785, 1.4104551960452871], [1.913185765637948, 0.972345868865853], [2.181070272633187, 0.43988358198889377], [2.3394274478335677, -0.18693166458558955], [2.403431663336424, -0.7042195793652143], [2.4598486927906125, -1.3234476398910306]], "left_eyebrow": [[-1.4518127758080008, -1.5448352987726388], [-1.255519670364285, -1.6619498166161644], [-0.9345248610283762, -1.4808310832697824], [-0.723057383487326, -1.3940653096209255], [-0.5040027198976087, -1.2053593902258763]], "right_eyebrow": [[0.20199111427706487, -1.3604098383127377], [0.5002243654669724, -1.4851115422049306], [0.79845761665688, -1.609813246097123], [1.2062181996416461, -1.6401619902917914], [1.5196258229288877, -1.5609834026916014]], "nose_bridge": [[-0.18300791056169996, -1.0242406568794946], [-0.2621864981618902, -0.710833033592253], [-0.3337778997134134, -0.29548526455881974], [-0.4129564873136036, 0.017922358728421937]], "nose_tip": [[-0.507309447011128, 0.12744969052328056], [-0.39778211521626944, 0.22180265022080498], [-0.2882547834214108, 0.3161556099183294], [-0.08437449192902775, 0.30098123782099523], [0.11191861351468821, 0.18386671997746953]], "left_eye": [[-1.115643594374758, -1.159836273933874], [-1.0137034486285663, -1.167423459982541], [-0.7078830113899918, -1.1901850181285423], [-0.5907684935464661, -0.9938919126848261], [-0.7946487850388492, -0.9787175405874919], [-1.0061162625798994, -1.0654833142363496]], "right_eye": [[0.42863296391544914, -1.069763773171497], [0.6249260693591653, -1.1868782910150228], [0.9307465065977398, -1.2096398491610243], [1.1422139841387902, -1.1228740755121667], [0.945920878695074, -1.0057595576686411], [0.6401004414564995, -0.9829979995226398]], "top_lip": [[-0.563726476465317, 0.7466777510490968], [-0.4693735167677926, 0.6371504192542382], [-0.36743337102160106, 0.6295632332055711], [-0.16355307952921802, 0.6143888611082369], [0.04032721196316505, 0.5992144890109027], [0.2517946895042152, 0.6859802626597601], [0.6671424585376484, 0.7575716642112833], [0.4632621670452654, 0.7727460363086174], [0.05550158406049923, 0.8030947805032858], [-0.14837870743188383, 0.8182691526006199], [-0.35984618497293397, 0.7315033789517627], [-0.4617863307191255, 0.7390905650004298]], "bottom_lip": [[0.6671424585376484, 0.7575716642112833], [0.376496393396408, 0.9842135138496676], [0.07826314220650052, 1.1089152177418606], [-0.12561714928588255, 1.1240895898391947], [-0.3294974407782656, 1.139263961936529], [-0.4466119586217913, 0.9429708564928129], [-0.563726476465317, 0.7466777510490968], [-0.4617863307191255, 0.7390905650004298], [-0.3522589989242669, 0.8334435246979541], [-0.14079152138321674, 0.9202092983468115], [0.06308877010916633, 0.9050349262494773], [0.4632621670452654, 0.7727460363086174]], "transform": {"center": [654.0416666666666, 241.125], "scale": 9.782619934239385, "angle": 0.07429087551403904}}, {"chin": [[-1.3261143274223912, -0.9075189874762929], [-1.439391129016171, -0.4291965510925587], [-1.4349413825440622, -0.0715671604227854], [-1.3097985903579927, 0.4037887783128762], [-1.1861390469959598, 0.7599349201586133], [-0.943269706744002, 1.1145978131803143], [-0.7004003664920445, 1.469260706202015], [-0.4590142750641231, 1.7047138023337916], [0.01930816131961087, 1.817990603927571], [0.49466410005527245, 1.6928478117415018], [0.9700200387909341, 1.5677050195554325], [1.563102525592484, 1.3218691816554022], [2.0354919666800733, 0.9583067956894841], [2.3871883620537018, 0.47701786165767757], [2.618191711713369, -0.12199762044001711], [2.612258716417224, -0.598836807999715], [2.7240522691869677, -1.1963690412733734]], "left_eyebrow": [[-1.3335305715425725, -1.5035679719259152], [-1.2158040234766843, -1.6242610176398757], [-0.9759011808727991, -1.508017718398024], [-0.7374815870929502, -1.5109842160460962], [-0.49757874448906503, -1.3947409168042444]], "right_eyebrow": [[0.0984702399605572, -1.4021571609244254], [0.4546163818062943, -1.5258167042864585], [0.8107625236520315, -1.6494762476484917], [1.2876017112117293, -1.6554092429446365], [1.6467143507055388, -1.5406491925268209]], "nose_bridge": [[-0.25322615541307125, -0.9208682268926189], [-0.2502596577649988, -0.68244863311277], [-0.36650295700685076, -0.44254579050888476], [-0.48126300742466654, -0.0834331510150752]], "nose_tip": [[-0.5975063066665186, 0.1564696915888099], [-0.4768132609525578, 0.2741962396546982], [-0.238393667172709, 0.2712297420066257], [-0.11918387028278454, 0.2697464931825895], [0.11775247467302816, 0.14757019864459253]], "left_eye": [[-1.0891779824665786, -1.0296952820142897], [-0.9714514344006904, -1.1503883277282505], [-0.7330318406208415, -1.1533548253763228], [-0.49164574919292015, -0.9179017292445465], [-0.730065342972769, -0.914935231596474], [-0.9684849367526179, -0.9119687339484015]], "right_eye": [[0.4620326259264754, -0.9297677198368363], [0.697485722058252, -1.1711538112647577], [0.9359053158381009, -1.17412030891283], [1.175808158441986, -1.0578770096709782], [0.9388718134861733, -0.9357007151329811], [0.7004522197063244, -0.9327342174849087]], "top_lip": [[-0.7092998594362618, 0.7540019248624683], [-0.5915733113703737, 0.6333088791485078], [-0.3531537175905247, 0.6303423815004353], [-0.2339439207006003, 0.628859132676399], [0.0044756730792486, 0.6258926350283266], [0.24289526685909751, 0.6229261373802542], [0.6020079063529071, 0.7376861877980698], [0.4827981094629826, 0.7391694366221061], [0.005958921903284826, 0.745102431918251], [-0.23246067187656408, 0.7480689295663234], [-0.3516704687664885, 0.7495521783903597], [-0.5900900625463374, 0.7525186760384321]], "bottom_lip": [[0.6020079063529071, 0.7376861877980698], [0.24734501333120618, 0.9805555280500274], [0.00892541955135728, 0.9835220256980999], [-0.2280109254044554, 1.105698320236097], [-0.34870397111841606, 0.9879717721702086], [-0.587123564898265, 0.990938269818281], [-0.7092998594362618, 0.7540019248624683], [-0.5900900625463374, 0.7525186760384321], [-0.3516704687664885, 0.7495521783903597], [-0.23246067187656408, 0.7480689295663234], [0.005958921903284826, 0.745102431918251], [0.4827981094629826, 0.7391694366221061]], "transform": {"center": [323.02777777777777, 228.75], "scale": 8.387923049624368, "angle": 0.012441697984177191}}, {"chin": [[-1.583839210532052, -0.9478714467745991], [-1.6041778751425442, -0.5347756930509847], [-1.5212426013221325, -0.11659527317474733], [-1.443391993654344, 0.40485908513239366], [-1.252098115250406, 0.7248502327303504], [-0.9626149645681874, 1.1531999849118337], [-0.6680471477333456, 1.4782757986624138], [-0.37347933089850394, 1.8033516124129936], [0.03961642282511045, 1.8236902770234857], [0.5559861149796284, 1.8491136077866008], [0.9843358671611117, 1.559630457104382], [1.4126856193425952, 1.2701473064221633], [1.742846099245798, 0.8723055511564182], [1.9697326407180973, 0.4693791297380498], [2.2017038483430196, -0.0368212301112221], [2.2271271791061347, -0.5531909222657401], [2.2525505098692498, -1.0695606144202578]], "left_eyebrow": [[-1.4551419413380333, -1.4591564727764939], [-1.23842473217098, -1.655535017333055], [-0.9286029168782692, -1.640281018875186], [-0.7220550400164621, -1.6301116865699399], [-0.4173178908763744, -1.5115837496811673]], "right_eyebrow": [[0.20232573970904716, -1.481075752765429], [0.522316887307004, -1.6723696311693672], [0.9404973071832414, -1.7553049049897789], [1.3485083947542325, -1.631692301948383], [1.6532455438943203, -1.5131643650596105]], "nose_bridge": [[-0.1278347401941557, -1.0832339974996839], [-0.14308873865202476, -0.7734121822069732], [-0.16342740326251684, -0.3603164284833588], [-0.28195534015128954, -0.05557927934327105]], "nose_tip": [[-0.5037572154709657, 0.24407320364419366], [-0.2972093386091586, 0.2542425359494397], [-0.19902006633087801, 0.3626011405329663], [0.01261247668355218, 0.26949653440730875], [0.22424501969798238, 0.17639192828165126]], "left_eye": [[-1.1656587906558147, -1.0308067205950104], [-1.052215519919665, -1.2322699313041947], [-0.7423937046269542, -1.2170159328463255], [-0.5460151600703931, -1.0002987236792722], [-0.7576477030848233, -0.9071941175536149], [-1.067469518377534, -0.922448116011484]], "right_eye": [[0.4867242242386428, -0.949452062153042], [0.708526099558319, -1.2491045451405067], [1.01834791485103, -1.2338505466826377], [1.2198111255602138, -1.120407275946488], [1.0081785825457839, -1.0273026698208305], [0.69327210110045, -0.939282729847796]], "top_lip": [[-0.735728423095888, 0.7502735634934655], [-0.5240958800814579, 0.657168957367808], [-0.31246333706702767, 0.5640643512421505], [-0.21427406478874708, 0.6724229558256771], [-0.0026415217743168892, 0.5793183497000195], [0.30209562736577084, 0.6978462865887922], [0.7101067149367623, 0.8214588896301879], [0.6068327765058587, 0.8163742234775648], [-0.012810854079562933, 0.7858662265618267], [-0.11608479251046652, 0.7807815604092037], [-0.32263266937227375, 0.7706122281039577], [-0.6324544846649844, 0.7553582296460886]], "bottom_lip": [[0.7101067149367623, 0.8214588896301879], [0.39011556733880537, 1.012752768034126], [0.07520908589347161, 1.1007727080071605], [-0.1313387909683356, 1.0906033757019145], [-0.3378866678301428, 1.0804340433966684], [-0.5393498785393269, 0.9669907726605188], [-0.735728423095888, 0.7502735634934655], [-0.6324544846649844, 0.7553582296460886], [-0.32263266937227375, 0.7706122281039577], [-0.12116945866308956, 0.8840554988401073], [0.08537841819871764, 0.8942248311453533], [0.6068327765058587, 0.8163742234775648]], "transform": {"center": [310.75, 402.40277777777777], "scale": 9.671270255979694, "angle": -0.04919502134525352}}, {"chin": [[-1.9048116906532144, -0.9291490044002948], [-1.849394552587299, -0.3798585867899082], [-1.8078316990378624, 0.03210922641788172], [-1.7524145609719468, 0.5813996440282683], [-1.4362064986173169, 0.9656588882031005], [-1.119998436262687, 1.3499181323779328], [-0.817644658424536, 1.5968547721501682], [-0.37796827618378837, 1.8299371274059248], [0.06170810605695923, 2.0630194826616814], [0.4598216347482703, 1.8841340247096485], [0.8579351634395814, 1.7052485667576152], [1.2421944076144136, 1.3890405044029854], [1.4891310473866493, 1.0866867265648343], [1.7222134026424059, 0.6470103443240868], [1.8041188689790872, 0.08386564219722123], [1.899878619832247, -0.34195645552704756], [1.8444614817663316, -0.8912468731374341]], "left_eyebrow": [[-1.6717293353974576, -1.3688253866410425], [-1.424792695625222, -1.6711791644791936], [-1.012824882417432, -1.7127420180286301], [-0.5870027846931632, -1.61698226717547], [-0.2985032913714911, -1.507368231805831]], "right_eyebrow": [[0.11346452183629882, -1.5489310853552676], [0.5115780505276099, -1.7278165433073007], [0.9235458637353997, -1.7693793968567373], [1.3493679614596688, -1.6736196460035773], [1.6655760238142985, -1.2893604018287452]], "nose_bridge": [[0.017704770983138746, -1.1231089876309988], [0.05926762453257532, -0.7111411744232089], [0.08697619356553304, -0.4364959656180156], [-0.008783557287627005, -0.010673867893746814]], "nose_tip": [[-0.4068970859789381, 0.1682115900582864], [-0.2557201970598626, 0.2916799099444042], [0.018925011745330716, 0.2639713409114464], [0.293570220550524, 0.2362627718784887], [0.43089282495312065, 0.22240848736200985]], "left_eye": [[-1.218198668640231, -0.9984204269826891], [-0.9574077443515167, -1.1634516004182436], [-0.6827625355463234, -1.1911601694512013], [-0.5315856466272478, -1.0676918495650833], [-0.8062308554324411, -1.0399832805321256], [-0.9435534598350377, -1.0261289960156468]], "right_eye": [[0.5808494731100042, -1.0412035212943176], [0.7181720775126009, -1.0550578058107964], [0.9928172863177941, -1.0827663748437542], [1.1301398907203908, -1.0966206593602332], [1.0066715708342728, -0.9454437704411576], [0.7320263620290798, -0.9177352014081999]], "top_lip": [[-0.928478934556367, 0.49827393692939514], [-0.516511121348577, 0.4567110833799586], [-0.22801162802690486, 0.5663251187495976], [0.04663358077828844, 0.5386165497166399], [0.18395618518088508, 0.524762265200161], [0.595923998388675, 0.4831994116507244], [0.8844234917103472, 0.5928134470203632], [0.7471008873077505, 0.6066677315368421], [0.19781046969736393, 0.6620848696027576], [0.060487865294767296, 0.6759391541192364], [-0.22801162802690486, 0.5663251187495976], [-0.7773020456372914, 0.621742256815513]], "bottom_lip": [[0.8844234917103472, 0.5928134470203632], [0.6374868519381116, 0.8951672248585142], [0.23937332324680052, 1.0740526828105477], [-0.03527188555839278, 1.1017612518435054], [-0.30991709436358605, 1.129469820876463], [-0.612270872201737, 0.8825331811042274], [-0.928478934556367, 0.49827393692939514], [-0.7773020456372914, 0.621742256815513], [-0.20030305899394713, 0.8409703275547908], [-0.04912617007487165, 0.9644386474409086], [0.22551903873032164, 0.9367300784079509], [0.7471008873077505, 0.6066677315368421]], "transform": {"center": [202.05555555555554, 189.08333333333334], "scale": 7.245342267132812, "angle": 0.1005483711507805}}, {"chin": [[-1.1845742629630238, -0.8800211025252107], [-1.2461150341082956, -0.4947309324600162], [-1.2133792492885056, -0.11762470859976908], [-1.0781829622987065, 0.3455741250205923], [-0.9429866753089071, 0.8087729586409537], [-0.8159743345240553, 1.1776952362962532], [-0.5865014915691944, 1.6327101237116672], [-0.4594891507843426, 2.001632401366967], [-0.06601503451420054, 2.1574497284773], [0.4053677453111083, 2.1165299974525627], [0.954659188691584, 1.8788732082927544], [1.5039506320720597, 1.641216419132946], [1.9425976270775784, 1.2231904642479612], [2.2787841199130883, 0.7190718996028624], [2.4182335546135265, 0.1370446714025968], [2.463406433348904, -0.4367986105927214], [2.4061188099142714, -1.0967345023481538]], "left_eyebrow": [[-1.2336779401927087, -1.4456804383155812], [-1.155769276637542, -1.6424174964506524], [-0.9754001109123658, -1.753061944825609], [-0.7786630527772949, -1.6751532812704424], [-0.5819259946422238, -1.5972446177152755]], "right_eyebrow": [[-0.016266658851853216, -1.6463482949449606], [0.3526556188034464, -1.7733606357298124], [0.7297618426636935, -1.8060964205496022], [1.1232359589338357, -1.6502790934392686], [1.4306174654438635, -1.3920012641589259]], "nose_bridge": [[-0.34426920548241535, -1.0479531743348], [-0.4139939228326346, -0.7569395602346672], [-0.4837186401828539, -0.46592594613453436], [-0.5452594113281257, -0.08063577606933975]], "nose_tip": [[-0.63135202108824, 0.021824726100669517], [-0.5207075727132833, 0.20219389182584557], [-0.33215446078315963, 0.1858259994159506], [-0.1436013488530361, 0.1694581070060556], [0.1392283190421492, 0.14490626839121312]], "left_eye": [[-1.0042050972378476, -0.9906655509001676], [-0.8238359315126716, -1.1013099992751243], [-0.6352828195825482, -1.1176778916850194], [-0.5328223174125388, -1.031585281924905], [-0.7213754293426624, -1.01521738951501], [-0.9099285412727859, -0.9988494971051151]], "right_eye": [[0.3238506324779646, -1.0109642418043705], [0.5042197982031406, -1.1216086901793274], [0.7870494660983259, -1.1461605287941699], [0.9837865242333972, -1.068251865239003], [0.8034173585082209, -0.9576074168640464], [0.5205876906130356, -0.9330555782492038]], "top_lip": [[-0.582248343858555, 0.5874840618910401], [-0.4961557340984408, 0.4850235597210309], [-0.401879178133379, 0.4768396135160834], [-0.20514211999830792, 0.5547482770712501], [-0.01658900806818437, 0.5383803846613552], [0.3687011619970102, 0.599921155806627], [0.7539913320622048, 0.6614619269518988], [0.659714776097143, 0.6696458731568462], [-0.008405061863236876, 0.632656940626417], [-0.19695817379336045, 0.6490248330363119], [-0.3936952319284315, 0.5711161694811451], [-0.4797878416885458, 0.6735766716511544]], "bottom_lip": [[0.7539913320622048, 0.6614619269518988], [0.4014369468168002, 0.977027379666874], [0.03251466916150059, 1.1040397204517258], [-0.15603844276862297, 1.1204076128616207], [-0.34459155469874647, 1.1367755052715158], [-0.4552360030737033, 0.9564063395463398], [-0.582248343858555, 0.5874840618910401], [-0.4797878416885458, 0.6735766716511544], [-0.369143393313589, 0.8539458373763305], [-0.17240633517851794, 0.9318545009314972], [0.016146776751605613, 0.9154866085216024], [0.659714776097143, 0.6696458731568462]], "transform": {"center": [130.66666666666666, 384.34722222222223], "scale": 10.567349953080205, "angle": 0.08659079211013417}}, {"chin": [[-2.130184898190237, -0.9472677172206232], [-2.1344247133262875, -0.4025073280828137], [-2.0024744311778857, 0.14331301483900827], [-2.006714246313936, 0.6880734039768177], [-1.737513913097069, 1.0987636033982], [-1.3321234825957498, 1.5105137566035947], [-0.9246131445264052, 1.6498837152400847], [-0.5181627602410733, 1.9254437711610273], [0.026597628896736086, 1.9296835862970776], [0.43516792075009314, 1.9328634476491153], [0.8458581201714754, 1.6636631144322482], [1.121418176092418, 1.2572127301469165], [1.3969782320133606, 0.8507623458615846], [1.5363481906498506, 0.44325200779224005], [1.6757181492863407, 0.035741669722895546], [1.679957964422391, -0.509018719414914], [1.6831378257744287, -0.917589011268271]], "left_eyebrow": [[-1.5822446477003902, -1.35159819393793], [-1.3077445455634604, -1.6218584809388097], [-1.0353643509945556, -1.6197385733707845], [-0.6267940591411987, -1.6165587120187468], [-0.21928372107185415, -1.4771887533822565]], "right_eyebrow": [[0.4616667653504076, -1.4718889844621936], [0.735106913703325, -1.605959174178621], [1.0074871082722296, -1.6038392666105958], [1.416057400125587, -1.600659405258558], [1.5501275898420142, -1.3272192569056407]], "nose_bridge": [[0.04991661214501282, -1.0664985539608745], [0.18398680186144004, -0.7930584056079569], [0.1808069405094023, -0.3844881137545999], [0.17868703294137714, -0.11210791918569518]], "nose_tip": [[-0.3681932637644575, 0.15603246024715922], [-0.09581306919555276, 0.15815236781518438], [0.1755071715893394, 0.2964623726676619], [0.3127572226578043, 0.16133222916722212], [0.4489473199422567, 0.1623921829512347]], "left_eye": [[-1.1757942634150584, -1.0760381380169877], [-0.902354115062141, -1.2101083277334148], [-0.6299739204932364, -1.2079884201653897], [-0.4948437769927966, -1.0707383690969248], [-0.6320938280612616, -0.9356082255964848], [-0.9044740226301662, -0.93772813316451]], "right_eye": [[0.5946770012828222, -1.0622587388248241], [0.7319270523512873, -1.1973888823252639], [1.004307246920192, -1.1952689747572387], [1.1394373904206319, -1.0580189236887738], [1.0021873393521668, -0.9228887801883339], [0.7298071447832621, -0.925008687756359]], "top_lip": [[-0.9161335142543046, 0.560362936964466], [-0.5075632224009475, 0.5635427983165038], [-0.0989929305475905, 0.5667226596685415], [0.037197166736861874, 0.5677826134525541], [0.3095773613057666, 0.5699025210205793], [0.5819575558746712, 0.5720224285886044], [0.8543377504435761, 0.5741423361566296], [0.7170876993751112, 0.7092724796570693], [0.308517407521754, 0.7060926183050316], [0.036137212952849294, 0.7039727107370064], [-0.10005288433160307, 0.7029127569529938], [-0.7810033707538648, 0.6976129880329309]], "bottom_lip": [[0.8543377504435761, 0.5741423361566296], [0.5798376483066461, 0.8444026231575091], [0.30639749995372884, 0.9784728128739363], [0.034017305384824136, 0.9763529053059111], [-0.23836288918408055, 0.974232997737886], [-0.6458732272534251, 0.8348630391013959], [-0.9161335142543046, 0.560362936964466], [-0.7810033707538648, 0.6976129880329309], [-0.23730293540006797, 0.8380429004534337], [0.035077259168836715, 0.8401628080214588], [0.3074574537377414, 0.842282715589484], [0.7170876993751112, 0.7092724796570693]], "transform": {"center": [464.69444444444446, 201.83333333333334], "scale": 7.342455395476904, "angle": -0.007782741948312161}}]}
]
/*
* FaceMap class - holds all informaiton about one mapped
* face and is able to draw itself.
*/
var rand = new Math.seedrandom(focusedRandom())
function FaceMap() {
this.age = 20;
this.hair_puff = 50;
this.face_hardness = 50;
this.mouthTimingRand = rand();
/*
* Draw a face with position lists that include:
* chin, right_eye, left_eye, right_eyebrow, left_eyebrow
* bottom_lip, top_lip, nose_tip, nose_bridge,
*/
this.draw = function(positions) {
var is_hard = 50 < this.face_hardness;
//i use my variables differently
angleMode(RADIANS);
rectMode(CENTER);
ellipseMode(RADIUS);
colorMode(HSB);
strokeCap(ROUND);
strokeJoin(BEVEL);
let chinRect = Rect.fromPoints(positions.chin);
var higher = pos => [pos[0], pos[1] - chinRect.height*0.25];
positions.left_eyebrow.reverse();
positions.right_eyebrow.reverse();
//fro
if(this.hair_puff != 0){
var hair_puffiness = (70+this.hair_puff/2)/110
fill(0, 80+focusedRandom(-10, 10)+map(this.age, 30, 100, 0, -60), 40+focusedRandom(-10, 10));
noStroke();
let topY = positions.left_eyebrow.concat(positions.right_eyebrow).map(higher).reduce((sum, pos) => min(sum, pos[1]), canvasHeight);
let midX = chinRect.x;
ellipse(midX, topY+0.5, chinRect.width*hair_puffiness+focusedRandom(-.1, .1, 1, 0), chinRect.width*hair_puffiness+focusedRandom(-.1, .1, 1, 0));
}
//background white on whole face
let faceList = positions.chin.concat(positions.right_eyebrow.map(higher), positions.left_eyebrow.map(higher));
strokeWeight(0.15);
//makes edges curvy 'n' smooth and fills the space
var faceBackground = color(0, 0, 100);
drawCurve(faceList, is_hard ? color(0,0,0,0) : faceBackground, true, faceBackground);
//chin border
//scale moves it nicely on the edge
if(!is_hard){
scale(1/0.96)
strokeWeight(0.1)
drawCurve(positions.chin.slice(1, -1), 'black');
scale(0.96)
}
//brows border
strokeWeight(0.15);
drawCurve(positions.left_eyebrow, 'black');
drawCurve(positions.right_eyebrow, 'black');
//mouth paint
doCentered(positions.top_lip.concat(positions.bottom_lip), function(points){
scale(1.5, 1.4);
strokeWeight(0.1);
var paintColor = color(0, 80, 100);
drawCurve(hull(points, 0.7), is_hard ? color(0,0,0,0) : paintColor, true, paintColor);
});
//lips
stroke(0, 90, 85);
strokeWeight(0.05);
doCentered(positions.top_lip, function(points, mapper){
fill(0, 5, 100);
//this map pushes down the positions in the middle of the bottom lip
let lipRect = Rect.fromPoints(points);
let interval = focusedRandom(200, 1000, 3, 600);
drawPolygon(positions.bottom_lip.map(mapper).map(function(val){
val[1] += map(min(abs(val[0]-lipRect.minX()), abs(lipRect.maxX()-val[0])), 0, lipRect.width/2, 0, 0.15*sin(millis()/interval*TAU));
return val;
}), 'red');
drawPolygon(positions.top_lip.map(mapper), 'red');
})
let pupilRadius = [positions.left_eye, positions.right_eye].reduce((tot, val) => tot+Rect.fromPoints(val).height, 0)/10;
//eyes
[positions.left_eye, positions.right_eye].forEach(function(eye){
doCentered(eye, function(points, mapper){
noStroke();
let pointsRect = Rect.fromPoints(points);
//eyes
strokeWeight(0.2);
if(is_hard)
scale(1.5);
var eyeColor = color(50, 98, 95);
drawCurve(hull(points, 2), is_hard ? color(0,0,0,0) : eyeColor, true, eyeColor);
if(is_hard)
scale(1/1.5);
noStroke();
fill(0,0,0);
ellipse(focusedRandom(0, pointsRect.width*0.5, 4)*sin(millis()/focusedRandom(500, 3000)),
focusedRandom(0, pointsRect.height*0.4, 3)*sin(millis()/focusedRandom(300, 1000)),
0.1, 0.1); //black pupil
})
})
//nose
strokeWeight(0.05);
drawCurve(positions.nose_bridge, 'red');
strokeWeight(0.1);
drawCurve(positions.nose_tip, 'red')
//reset direction as tom reuses the lists
positions.left_eyebrow.reverse();
positions.right_eyebrow.reverse();
//reset vars back to tom's defaults
colorMode(RGB);
ellipseMode(CENTER);
angleMode(DEGREES);
}
/* set internal properties based on list numbers 0-100 */
this.setProperties = function(settings) {
this.age = settings[0];
this.hair_puff = settings[1];
this.face_hardness = settings[2];
}
/* get internal properties as list of numbers 0-100 */
this.getProperties = function() {
properties = [];
properties[0] = this.age;
properties[1] = this.hair_puff;
properties[2] = this.face_hardness;
return properties;
}
}
function doCentered(points, func){
push();
var position = average_point(points);
translate(position[0], position[1]);
let centeredMap = point => [point[0]-position[0], point[1]-position[1]];
func(points.map(centeredMap), centeredMap, position);
pop();
}
function drawCurve(points, strokeColor, doFill, fillColor){
let pointMod = i => points[doFill ? i.mod(points.length) : constrain(i, 0, points.length-1)];
if(doFill){
noStroke();
fill(fillColor || strokeColor);
drawPolygon(points);
noFill();
}
stroke(strokeColor);
for(let i = 0; i < points.length; i++){
let controlStart = pointMod(i-1);
let point = pointMod(i);
let pointNext = pointMod(i+1);
let controlEnd = pointMod(i+2);
if(point != pointNext)
curve(...controlStart, ...point, ...pointNext, ...controlEnd);
}
}
function drawPolygon(points){
beginShape();
points.forEach(pos => vertex(...pos));
endShape(CLOSE);
}
class Rect{
constructor(x, y, width, height){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
draw(fillColor){
//white default
fill(fillColor || color(0, 0, 100));
rect(this.x, this.y, this.width, this.height);
}
minX(){
return this.x-this.width/2;
}
minY(){
return this.y-this.height/2;
}
maxX(){
return this.x+this.width/2;
}
maxY(){
return this.y+this.height/2;
}
static fromPoints(points){
var minX = canvasWidth;
var minY = canvasHeight;
var maxY = 0;
var maxX = 0;
points.forEach(point => {
minX = min(point[0], minX);
minY = min(point[1], minY);
maxX = max(point[0], maxX);
maxY = max(point[1], maxY);
});
return this.fromMinMax(minX, minY, maxX, maxY)
}
static fromMinMax(minX, minY, maxX, maxY){
return new Rect(minX+(maxX-minX)/2, minY+(maxX-minX)/2, (maxX-minX), (maxY-minY));
}
}
function cross(a, b, o) {
return (a[0] - o[0]) * (b[1] - o[1]) - (a[1] - o[1]) * (b[0] - o[0])
}
//modulus
Number.prototype.mod = function(n) {
return ((this%n)+n)%n;
};
// given a point, return the average
function average_point(list) {
var sum_x = 0;
var sum_y = 0;
var num_points = 0;
for(var i=0; i<list.length; i++) {
sum_x += list[i][0];
sum_y += list[i][1];
num_points += 1;
}
return [sum_x / num_points, sum_y / num_points];
}
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.hull=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
function _cross(o, a, b) {
return (a[0] - o[0]) * (b[1] - o[1]) - (a[1] - o[1]) * (b[0] - o[0]);
}
function _upperTangent(pointset) {
var lower = [];
for (var l = 0; l < pointset.length; l++) {
while (lower.length >= 2 && (_cross(lower[lower.length - 2], lower[lower.length - 1], pointset[l]) <= 0)) {
lower.pop();
}
lower.push(pointset[l]);
}
lower.pop();
return lower;
}
function _lowerTangent(pointset) {
var reversed = pointset.reverse(),
upper = [];
for (var u = 0; u < reversed.length; u++) {
while (upper.length >= 2 && (_cross(upper[upper.length - 2], upper[upper.length - 1], reversed[u]) <= 0)) {
upper.pop();
}
upper.push(reversed[u]);
}
upper.pop();
return upper;
}
// pointset has to be sorted by X
function convex(pointset) {
var convex,
upper = _upperTangent(pointset),
lower = _lowerTangent(pointset);
convex = lower.concat(upper);
convex.push(pointset[0]);
return convex;
}
module.exports = convex;
},{}],2:[function(require,module,exports){
module.exports = {
toXy: function(pointset, format) {
if (format === undefined) {
return pointset.slice();
}
return pointset.map(function(pt) {
/*jslint evil: true */
var _getXY = new Function('pt', 'return [pt' + format[0] + ',' + 'pt' + format[1] + '];');
return _getXY(pt);
});
},
fromXy: function(pointset, format) {
if (format === undefined) {
return pointset.slice();
}
return pointset.map(function(pt) {
/*jslint evil: true */
var _getObj = new Function('pt', 'var o = {}; o' + format[0] + '= pt[0]; o' + format[1] + '= pt[1]; return o;');
return _getObj(pt);
});
}
}
},{}],3:[function(require,module,exports){
function Grid(points, cellSize) {
this._cells = [];
this._cellSize = cellSize;
points.forEach(function(point) {
var cellXY = this.point2CellXY(point),
x = cellXY[0],
y = cellXY[1];
if (this._cells[x] === undefined) {
this._cells[x] = [];
}
if (this._cells[x][y] === undefined) {
this._cells[x][y] = [];
}
this._cells[x][y].push(point);
}, this);
}
Grid.prototype = {
cellPoints: function(x, y) { // (Number, Number) -> Array
return (this._cells[x] !== undefined && this._cells[x][y] !== undefined) ? this._cells[x][y] : [];
},
rangePoints: function(bbox) { // (Array) -> Array
var tlCellXY = this.point2CellXY([bbox[0], bbox[1]]),
brCellXY = this.point2CellXY([bbox[2], bbox[3]]),
points = [];
for (var x = tlCellXY[0]; x <= brCellXY[0]; x++) {
for (var y = tlCellXY[1]; y <= brCellXY[1]; y++) {
points = points.concat(this.cellPoints(x, y));
}
}
return points;
},
removePoint: function(point) { // (Array) -> Array
var cellXY = this.point2CellXY(point),
cell = this._cells[cellXY[0]][cellXY[1]],
pointIdxInCell;
for (var i = 0; i < cell.length; i++) {
if (cell[i][0] === point[0] && cell[i][1] === point[1]) {
pointIdxInCell = i;
break;
}
}
cell.splice(pointIdxInCell, 1);
return cell;
},
point2CellXY: function(point) { // (Array) -> Array
var x = parseInt(point[0] / this._cellSize),
y = parseInt(point[1] / this._cellSize);
return [x, y];
},
extendBbox: function(bbox, scaleFactor) { // (Array, Number) -> Array
return [
bbox[0] - (scaleFactor * this._cellSize),
bbox[1] - (scaleFactor * this._cellSize),
bbox[2] + (scaleFactor * this._cellSize),
bbox[3] + (scaleFactor * this._cellSize)
];
}
};
function grid(points, cellSize) {
return new Grid(points, cellSize);
}
module.exports = grid;
},{}],4:[function(require,module,exports){
/*
(c) 2014-2016, Andrii Heonia
Hull.js, a JavaScript library for concave hull generation by set of points.
https://github.com/AndriiHeonia/hull
*/
'use strict';
var intersect = require('./intersect.js');
var grid = require('./grid.js');
var formatUtil = require('./format.js');
var convexHull = require('./convex.js');
function _filterDuplicates(pointset) {
return pointset.filter(function(el, idx, arr) {
var prevEl = arr[idx - 1];
return idx === 0 || !(prevEl[0] === el[0] && prevEl[1] === el[1]);
});
}
function _sortByX(pointset) {
return pointset.sort(function(a, b) {
if (a[0] == b[0]) {
return a[1] - b[1];
} else {
return a[0] - b[0];
}
});
}
function _sqLength(a, b) {
return Math.pow(b[0] - a[0], 2) + Math.pow(b[1] - a[1], 2);
}
function _cos(o, a, b) {
var aShifted = [a[0] - o[0], a[1] - o[1]],
bShifted = [b[0] - o[0], b[1] - o[1]],
sqALen = _sqLength(o, a),
sqBLen = _sqLength(o, b),
dot = aShifted[0] * bShifted[0] + aShifted[1] * bShifted[1];
return dot / Math.sqrt(sqALen * sqBLen);
}
function _intersect(segment, pointset) {
for (var i = 0; i < pointset.length - 1; i++) {
var seg = [pointset[i], pointset[i + 1]];
if (segment[0][0] === seg[0][0] && segment[0][1] === seg[0][1] ||
segment[0][0] === seg[1][0] && segment[0][1] === seg[1][1]) {
continue;
}
if (intersect(segment, seg)) {
return true;
}
}
return false;
}
function _occupiedArea(pointset) {
var minX = Infinity,
minY = Infinity,
maxX = -Infinity,
maxY = -Infinity;
for (var i = pointset.length - 1; i >= 0; i--) {
if (pointset[i][0] < minX) {
minX = pointset[i][0];
}
if (pointset[i][1] < minY) {
minY = pointset[i][1];
}
if (pointset[i][0] > maxX) {
maxX = pointset[i][0];
}
if (pointset[i][1] > maxY) {
maxY = pointset[i][1];
}
}
return [
maxX - minX, // width
maxY - minY // height
];
}
function _bBoxAround(edge) {
return [
Math.min(edge[0][0], edge[1][0]), // left
Math.min(edge[0][1], edge[1][1]), // top
Math.max(edge[0][0], edge[1][0]), // right
Math.max(edge[0][1], edge[1][1]) // bottom
];
}
function _midPoint(edge, innerPoints, convex) {
var point = null,
angle1Cos = MAX_CONCAVE_ANGLE_COS,
angle2Cos = MAX_CONCAVE_ANGLE_COS,
a1Cos, a2Cos;
for (var i = 0; i < innerPoints.length; i++) {
a1Cos = _cos(edge[0], edge[1], innerPoints[i]);
a2Cos = _cos(edge[1], edge[0], innerPoints[i]);
if (a1Cos > angle1Cos && a2Cos > angle2Cos &&
!_intersect([edge[0], innerPoints[i]], convex) &&
!_intersect([edge[1], innerPoints[i]], convex)) {
angle1Cos = a1Cos;
angle2Cos = a2Cos;
point = innerPoints[i];
}
}
return point;
}
function _concave(convex, maxSqEdgeLen, maxSearchArea, grid, edgeSkipList) {
var edge,
keyInSkipList,
scaleFactor,
midPoint,
bBoxAround,
bBoxWidth,
bBoxHeight,
midPointInserted = false;
for (var i = 0; i < convex.length - 1; i++) {
edge = [convex[i], convex[i + 1]];
keyInSkipList = edge[0].join() + ',' + edge[1].join();
if (_sqLength(edge[0], edge[1]) < maxSqEdgeLen ||
edgeSkipList[keyInSkipList] === true) { continue; }
scaleFactor = 0;
bBoxAround = _bBoxAround(edge);
do {
bBoxAround = grid.extendBbox(bBoxAround, scaleFactor);
bBoxWidth = bBoxAround[2] - bBoxAround[0];
bBoxHeight = bBoxAround[3] - bBoxAround[1];
midPoint = _midPoint(edge, grid.rangePoints(bBoxAround), convex);
scaleFactor++;
} while (midPoint === null && (maxSearchArea[0] > bBoxWidth || maxSearchArea[1] > bBoxHeight));
if (bBoxWidth >= maxSearchArea[0] && bBoxHeight >= maxSearchArea[1]) {
edgeSkipList[keyInSkipList] = true;
}
if (midPoint !== null) {
convex.splice(i + 1, 0, midPoint);
grid.removePoint(midPoint);
midPointInserted = true;
}
}
if (midPointInserted) {
return _concave(convex, maxSqEdgeLen, maxSearchArea, grid, edgeSkipList);
}
return convex;
}
function hull(pointset, concavity, format) {
var convex,
concave,
innerPoints,
occupiedArea,
maxSearchArea,
cellSize,
points,
maxEdgeLen = concavity || 20;
if (pointset.length < 4) {
return pointset.slice();
}
points = _filterDuplicates(_sortByX(formatUtil.toXy(pointset, format)));
occupiedArea = _occupiedArea(points);
maxSearchArea = [
occupiedArea[0] * MAX_SEARCH_BBOX_SIZE_PERCENT,
occupiedArea[1] * MAX_SEARCH_BBOX_SIZE_PERCENT
];
convex = convexHull(points);
innerPoints = points.filter(function(pt) {
return convex.indexOf(pt) < 0;
});
cellSize = Math.ceil(1 / (points.length / (occupiedArea[0] * occupiedArea[1])));
concave = _concave(
convex, Math.pow(maxEdgeLen, 2),
maxSearchArea, grid(innerPoints, cellSize), {});
return formatUtil.fromXy(concave, format);
}
var MAX_CONCAVE_ANGLE_COS = Math.cos(90 / (180 / Math.PI)); // angle = 90 deg
var MAX_SEARCH_BBOX_SIZE_PERCENT = 0.6;
module.exports = hull;
},{"./convex.js":1,"./format.js":2,"./grid.js":3,"./intersect.js":5}],5:[function(require,module,exports){
function ccw(x1, y1, x2, y2, x3, y3) {
var cw = ((y3 - y1) * (x2 - x1)) - ((y2 - y1) * (x3 - x1));
return cw > 0 ? true : cw < 0 ? false : true; // colinear
}
function intersect(seg1, seg2) {
var x1 = seg1[0][0], y1 = seg1[0][1],
x2 = seg1[1][0], y2 = seg1[1][1],
x3 = seg2[0][0], y3 = seg2[0][1],
x4 = seg2[1][0], y4 = seg2[1][1];
return ccw(x1, y1, x3, y3, x4, y4) !== ccw(x2, y2, x3, y3, x4, y4) && ccw(x1, y1, x2, y2, x3, y3) !== ccw(x1, y1, x2, y2, x4, y4);
}
module.exports = intersect;
},{}]},{},[4])(4)
});
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.js"></script>
<script src="z_clmtrackr.js"></script>
<script src="z_model_pca_20_svm.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.4.0/seedrandom.min.js"></script>
<script src="https://d3js.org/d3-random.v1.min.js"></script>
<script language="javascript" type="text/javascript" src=".purview_helper.js"></script>
<script language="javascript" type="text/javascript" src=".focused_random.js"></script>
<script language="javascript" type="text/javascript" src="hull.js"></script>
<script language="javascript" type="text/javascript" src="kdTree.js"></script>
<script language="javascript" type="text/javascript" src="face.js"></script>
<script language="javascript" type="text/javascript" src="facemap.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>
<style>
body { padding: 0; margin: 0; }
.inner { position: absolute; }
#controls {
font: 300 12px "Helvetica Neue";
padding: 5;
margin: 5;
background: #f0f0f0;
opacity: 0.0;
-webkit-transition: opacity 0.2s ease;
-moz-transition: opacity 0.2s ease;
-o-transition: opacity 0.2s ease;
-ms-transition: opacity 0.2s ease;
}
#controls:hover { opacity: 0.9; }
</style>
</head>
<body style="background-color:white">
<div class="outer">
<div class="inner" id="controls" height="500">
<table>
<tr>
<td>Age</td>
<td id="slider1Container"></td>
</tr>
<tr>
<td>Hair puffiness</td>
<td id="slider2Container"></td>
</tr>
<tr>
<td>Face hardness</td>
<td id="slider3Container"></td>
</tr>
<tr>
<td>setting 4</td>
<td id="slider4Container"></td>
</tr>
<tr>
<td>setting 5</td>
<td id="slider5Container"></td>
</tr>
<tr>
<td>setting 6</td>
<td id="slider6Container"></td>
</tr>
<tr>
<td>setting 7</td>
<td id="slider7Container"></td>
</tr>
<tr>
<td>setting 8</td>
<td id="slider8Container"></td>
</tr>
<tr>
<td>setting 9</td>
<td id="slider9Container"></td>
</tr>
<tr>
<td>setting 10</td>
<td id="slider10Container"></td>
</tr>
<tr>
<td>setting 11</td>
<td id="slider11Container"></td>
</tr>
<tr>
<td>setting 12</td>
<td id="slider12Container"></td>
</tr>
<tr>
</tr>
<tr>
<td>show target</td>
<td id="sliderTintContainer"></td>
</tr>
<tr>
<td>Draw function</td>
<td id="selector1Container"></td>
</tr>
<tr>
<td></td>
<td id="button1Container"></td>
</tr>
<tr>
<td></td>
<td id="button2Container"></td>
</tr>
<tr>
<td></td>
<td id="button3Container"></td>
</tr>
<tr>
<td></td>
<td id="button4Container"></td>
</tr>
</table>
</div>
<div>
<div id="canvasContainer"></div>
</div>
</div>
<pre>
<p id="output">
</p>
</pre>
</body>
/**
* k-d Tree JavaScript - V 1.01
*
* https://github.com/ubilabs/kd-tree-javascript
*
* @author Mircea Pricop <pricop@ubilabs.net>, 2012
* @author Martin Kleppe <kleppe@ubilabs.net>, 2012
* @author Ubilabs http://ubilabs.net, 2012
* @license MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(['exports'], factory);
} else if (typeof exports === 'object') {
factory(exports);
} else {
factory((root.commonJsStrict = {}));
}
}(this, function (exports) {
function Node(obj, dimension, parent) {
this.obj = obj;
this.left = null;
this.right = null;
this.parent = parent;
this.dimension = dimension;
}
function kdTree(points, metric, dimensions) {
var self = this;
function buildTree(points, depth, parent) {
var dim = depth % dimensions.length,
median,
node;
if (points.length === 0) {
return null;
}
if (points.length === 1) {
return new Node(points[0], dim, parent);
}
points.sort(function (a, b) {
return a[dimensions[dim]] - b[dimensions[dim]];
});
median = Math.floor(points.length / 2);
node = new Node(points[median], dim, parent);
node.left = buildTree(points.slice(0, median), depth + 1, node);
node.right = buildTree(points.slice(median + 1), depth + 1, node);
return node;
}
// Reloads a serialied tree
function loadTree (data) {
// Just need to restore the `parent` parameter
self.root = data;
function restoreParent (root) {
if (root.left) {
root.left.parent = root;
restoreParent(root.left);
}
if (root.right) {
root.right.parent = root;
restoreParent(root.right);
}
}
restoreParent(self.root);
}
// If points is not an array, assume we're loading a pre-built tree
if (!Array.isArray(points)) loadTree(points, metric, dimensions);
else this.root = buildTree(points, 0, null);
// Convert to a JSON serializable structure; this just requires removing
// the `parent` property
this.toJSON = function (src) {
if (!src) src = this.root;
var dest = new Node(src.obj, src.dimension, null);
if (src.left) dest.left = self.toJSON(src.left);
if (src.right) dest.right = self.toJSON(src.right);
return dest;
};
this.insert = function (point) {
function innerSearch(node, parent) {
if (node === null) {
return parent;
}
var dimension = dimensions[node.dimension];
if (point[dimension] < node.obj[dimension]) {
return innerSearch(node.left, node);
} else {
return innerSearch(node.right, node);
}
}
var insertPosition = innerSearch(this.root, null),
newNode,
dimension;
if (insertPosition === null) {
this.root = new Node(point, 0, null);
return;
}
newNode = new Node(point, (insertPosition.dimension + 1) % dimensions.length, insertPosition);
dimension = dimensions[insertPosition.dimension];
if (point[dimension] < insertPosition.obj[dimension]) {
insertPosition.left = newNode;
} else {
insertPosition.right = newNode;
}
};
this.remove = function (point) {
var node;
function nodeSearch(node) {
if (node === null) {
return null;
}
if (node.obj === point) {
return node;
}
var dimension = dimensions[node.dimension];
if (point[dimension] < node.obj[dimension]) {
return nodeSearch(node.left, node);
} else {
return nodeSearch(node.right, node);
}
}
function removeNode(node) {
var nextNode,
nextObj,
pDimension;
function findMin(node, dim) {
var dimension,
own,
left,
right,
min;
if (node === null) {
return null;
}
dimension = dimensions[dim];
if (node.dimension === dim) {
if (node.left !== null) {
return findMin(node.left, dim);
}
return node;
}
own = node.obj[dimension];
left = findMin(node.left, dim);
right = findMin(node.right, dim);
min = node;
if (left !== null && left.obj[dimension] < own) {
min = left;
}
if (right !== null && right.obj[dimension] < min.obj[dimension]) {
min = right;
}
return min;
}
if (node.left === null && node.right === null) {
if (node.parent === null) {
self.root = null;
return;
}
pDimension = dimensions[node.parent.dimension];
if (node.obj[pDimension] < node.parent.obj[pDimension]) {
node.parent.left = null;
} else {
node.parent.right = null;
}
return;
}
// If the right subtree is not empty, swap with the minimum element on the
// node's dimension. If it is empty, we swap the left and right subtrees and
// do the same.
if (node.right !== null) {
nextNode = findMin(node.right, node.dimension);
nextObj = nextNode.obj;
removeNode(nextNode);
node.obj = nextObj;
} else {
nextNode = findMin(node.left, node.dimension);
nextObj = nextNode.obj;
removeNode(nextNode);
node.right = node.left;
node.left = null;
node.obj = nextObj;
}
}
node = nodeSearch(self.root);
if (node === null) { return; }
removeNode(node);
};
this.nearest = function (point, maxNodes, maxDistance) {
var i,
result,
bestNodes;
bestNodes = new BinaryHeap(
function (e) { return -e[1]; }
);
function nearestSearch(node) {
var bestChild,
dimension = dimensions[node.dimension],
ownDistance = metric(point, node.obj),
linearPoint = {},
linearDistance,
otherChild,
i;
function saveNode(node, distance) {
bestNodes.push([node, distance]);
if (bestNodes.size() > maxNodes) {
bestNodes.pop();
}
}
for (i = 0; i < dimensions.length; i += 1) {
if (i === node.dimension) {
linearPoint[dimensions[i]] = point[dimensions[i]];
} else {
linearPoint[dimensions[i]] = node.obj[dimensions[i]];
}
}
linearDistance = metric(linearPoint, node.obj);
if (node.right === null && node.left === null) {
if (bestNodes.size() < maxNodes || ownDistance < bestNodes.peek()[1]) {
saveNode(node, ownDistance);
}
return;
}
if (node.right === null) {
bestChild = node.left;
} else if (node.left === null) {
bestChild = node.right;
} else {
if (point[dimension] < node.obj[dimension]) {
bestChild = node.left;
} else {
bestChild = node.right;
}
}
nearestSearch(bestChild);
if (bestNodes.size() < maxNodes || ownDistance < bestNodes.peek()[1]) {
saveNode(node, ownDistance);
}
if (bestNodes.size() < maxNodes || Math.abs(linearDistance) < bestNodes.peek()[1]) {
if (bestChild === node.left) {
otherChild = node.right;
} else {
otherChild = node.left;
}
if (otherChild !== null) {
nearestSearch(otherChild);
}
}
}
if (maxDistance) {
for (i = 0; i < maxNodes; i += 1) {
bestNodes.push([null, maxDistance]);
}
}
if(self.root)
nearestSearch(self.root);
result = [];
for (i = 0; i < Math.min(maxNodes, bestNodes.content.length); i += 1) {
if (bestNodes.content[i][0]) {
result.push([bestNodes.content[i][0].obj, bestNodes.content[i][1]]);
}
}
return result;
};
this.balanceFactor = function () {
function height(node) {
if (node === null) {
return 0;
}
return Math.max(height(node.left), height(node.right)) + 1;
}
function count(node) {
if (node === null) {
return 0;
}
return count(node.left) + count(node.right) + 1;
}
return height(self.root) / (Math.log(count(self.root)) / Math.log(2));
};
}
// Binary heap implementation from:
// http://eloquentjavascript.net/appendix2.html
function BinaryHeap(scoreFunction){
this.content = [];
this.scoreFunction = scoreFunction;
}
BinaryHeap.prototype = {
push: function(element) {
// Add the new element to the end of the array.
this.content.push(element);
// Allow it to bubble up.
this.bubbleUp(this.content.length - 1);
},
pop: function() {
// Store the first element so we can return it later.
var result = this.content[0];
// Get the element at the end of the array.
var end = this.content.pop();
// If there are any elements left, put the end element at the
// start, and let it sink down.
if (this.content.length > 0) {
this.content[0] = end;
this.sinkDown(0);
}
return result;
},
peek: function() {
return this.content[0];
},
remove: function(node) {
var len = this.content.length;
// To remove a value, we must search through the array to find
// it.
for (var i = 0; i < len; i++) {
if (this.content[i] == node) {
// When it is found, the process seen in 'pop' is repeated
// to fill up the hole.
var end = this.content.pop();
if (i != len - 1) {
this.content[i] = end;
if (this.scoreFunction(end) < this.scoreFunction(node))
this.bubbleUp(i);
else
this.sinkDown(i);
}
return;
}
}
throw new Error("Node not found.");
},
size: function() {
return this.content.length;
},
bubbleUp: function(n) {
// Fetch the element that has to be moved.
var element = this.content[n];
// When at 0, an element can not go up any further.
while (n > 0) {
// Compute the parent element's index, and fetch it.
var parentN = Math.floor((n + 1) / 2) - 1,
parent = this.content[parentN];
// Swap the elements if the parent is greater.
if (this.scoreFunction(element) < this.scoreFunction(parent)) {
this.content[parentN] = element;
this.content[n] = parent;
// Update 'n' to continue at the new position.
n = parentN;
}
// Found a parent that is less, no need to move it further.
else {
break;
}
}
},
sinkDown: function(n) {
// Look up the target element and its score.
var length = this.content.length,
element = this.content[n],
elemScore = this.scoreFunction(element);
while(true) {
// Compute the indices of the child elements.
var child2N = (n + 1) * 2, child1N = child2N - 1;
// This is used to store the new position of the element,
// if any.
var swap = null;
// If the first child exists (is inside the array)...
if (child1N < length) {
// Look it up and compute its score.
var child1 = this.content[child1N],
child1Score = this.scoreFunction(child1);
// If the score is less than our element's, we need to swap.
if (child1Score < elemScore)
swap = child1N;
}
// Do the same checks for the other child.
if (child2N < length) {
var child2 = this.content[child2N],
child2Score = this.scoreFunction(child2);
if (child2Score < (swap == null ? elemScore : child1Score)){
swap = child2N;
}
}
// If the element needs to be moved, swap it, and continue.
if (swap != null) {
this.content[n] = this.content[swap];
this.content[swap] = element;
n = swap;
}
// Otherwise, we are done.
else {
break;
}
}
}
};
this.kdTree = kdTree;
exports.kdTree = kdTree;
exports.BinaryHeap = BinaryHeap;
}));
var canvasWidth = 960;
var canvasHeight = 500;
var slider1, slider2, slider3, slider4, slider5;
var drawFaceSelector;
var curRandomSeed = 0;
function setup () {
// create the drawing canvas, save the canvas element
var main_canvas = createCanvas(canvasWidth, canvasHeight);
main_canvas.parent('canvasContainer');
randButton = createButton('randomize');
randButton.mousePressed(changeRandomSeed);
randButton.parent('selector1Container');
// rotation in degrees
angleMode(DEGREES);
rectMode(CENTER);
colorMode(HSB);
noStroke();
bert_drawFace = color(45, 90, 95)
bert_nose = color(29, 96, 94)
ernie_drawFace = color(30, 90, 92)
ernie_drawEars = color(30, 90, 75);
mouth = color(351, 100, 55)
oscar_drawFace = color(75, 80, 50)
oscar_brow = color(23, 80, 30)
elmo_face_color = color(0, 100, 80);
changeRandomSeed()
}
function mouseClicked() {
changeRandomSeed();
}
var ernie_drawFace; //orange
var ernie_drawEars;
var ernie_nose = "rgb(218, 10, 31)" //red
var bert_drawFace //yellow
var bert_nose //orange
var oscar_drawFace;
var oscar_brow;
var elmo_face_color;
function drawErnie(x, y, w, h, tilt_value, eye_value, mouth_value) {
// move to position1, rotate, draw "head" ellipse
push();
translate(x, y);
rotate(-tilt_value/2);
scale(0.6);
//ears
var rotation = -30;
fill(ernie_drawEars);
translate(-290/2, -10);
rotate(rotation)
ellipse(0, 0, 60, 70);
rotate(-rotation)
translate(290, 0);
rotate(-rotation)
ellipse(0, 0, 60, 70);
rotate(rotation)
translate(-290/2, 10);
fill(ernie_drawFace);
ellipse(0, 0, 290, 230);
drawMouthEllipse(0, 30, 230, 50, 0.8-0.4*mouth_value/100, mouth, ernie_drawFace);
// set fill to match background color
var rotation = -40;
fill("white");
// draw two eyes
rotate(rotation)
ellipse(-10, -50, 60, 50);
rotate(-rotation*2)
ellipse(10, -50, 60, 50);
rotate(rotation)
// set fill back to black for eyeballs
fill("black");
rotate(rotation)
ellipse(5-eye_value/100*20, -50, 25, 25);
rotate(-rotation*2)
ellipse(-5+eye_value/100*20, -50, 25, 25);
rotate(rotation)
fill(ernie_nose)
ellipse(0, 5, 65, 70);
pop();
}
function drawBert(x, y, w, h, tilt_value, eye_value, mouth_value) {
// move to position2, rotate, draw "head" ellipse
push();
translate(x, y);
rotate(tilt_value/2);
scale(0.6);
fill(bert_drawFace);
ellipse(0, 0, 240, 370);
translate(0, 30)
var bert_mouth_h = 54;
// mouth-hole with background color
drawMouthArc(0, 30, 200, 5+50*mouth_value/100, mouth);
// set fill to match background color
var diff = map(eye_value, 0, 100, 0, 10);
fill("white");
// draw two eyes
ellipse(-50, -80+diff, 70);
ellipse( 50, -80+diff, 70);
// set fill back to foreground for eyeballs
fill("black");
ellipse(-40, -80+diff, 30);
ellipse( 40, -80+diff, 30);
//bert eyebrows
fill("black")
rect(0, -120-30*eye_value/100, 180, 25)
fill(bert_nose);
ellipse(0, -10, 80, 110)
pop();
}
function drawOscar(x, y, w, h, tilt_value, eye_value, mouth_value) {
// move to position1, rotate, draw "head" ellipse
push();
translate(x, y);
rotate(tilt_value*1.5);
scale(0.6);
//squeeze oscar
fill(oscar_drawFace);
ellipse(0, 0, 290, 200);
drawMouthArc(0, 20, 260, 20+30*mouth_value/100, 'black');
// set fill to match background color
fill("white");
// draw two eyes
ellipse(-40, -20, 60, 45);
ellipse( 40, -20, 60, 45);
// set fill back to black for eyeballs
fill("black");
ellipse(-40, -20, 30);
ellipse( 40, -20, 30);
//oscar eyebrows
fill(oscar_brow)
rect(0, map(eye_value, 0, 100, -65, -40), 180, 20)
pop();
}
function drawElmo(x, y, w, h, tilt_value, eye_value, mouth_value) {
// move to position1, rotate, draw "head" ellipse
push();
translate(x, y);
rotate(tilt_value);
scale(0.6);
//squeeze oscar
fill(elmo_face_color);
ellipse(0, 0, 260, 230);
drawMouthArc(0, 10, 220, 20+60*mouth_value/100, 'black');
// set fill to match background color
fill("white");
// draw two eyes
ellipse(-40, -110, 70);
ellipse( 40, -110, 70);
// set fill back to black for eyeballs
fill("black");
ellipse(-37, -95-30*eye_value/100, 25);
ellipse( 37, -95-30*eye_value/100, 25);
fill(bert_nose)
ellipse(0, -60, 70, 80);
pop();
}
function drawMouthArc(x, y, width, height, mouthColor, inverse){
//default to 0
inverse |= false
fill(mouthColor);
if(inverse)
arc(x, y+height, width, height*2, 180, 180, CHORD)
else
arc(x, y, width, height*2, 0, 180, CHORD)
}
function drawMouthEllipse(x, y, width, height, ellipseMod, mouthColor, faceColor){
var ellipseHeight = height*2*ellipseMod;
var ellipseY = y-height+ellipseHeight/2
// mouth-hole with background color
fill(mouth);
ellipse(x, y, width, height*2);
//cut out mouth
fill(ernie_drawFace);
ellipse(x, ellipseY, width*1.1, ellipseHeight*1.1);
}
var drawFuncs = [drawErnie, drawBert, drawOscar, drawElmo];
var lastSwap;
function changeRandomSeed() {
var startPositions = [createVector(0.25*canvasWidth, 0.25*canvasHeight),
createVector(0.25*canvasWidth, 0.75*canvasHeight),
createVector(0.75*canvasWidth, 0.75*canvasHeight),
createVector(0.75*canvasWidth, 0.25*canvasHeight),
createVector(0.5*canvasWidth, 0.5*canvasHeight)]
curRandomSeed = curRandomSeed + 1;
//randomize draws
drawFuncs = shuffle(drawFuncs);
drawFuncs.forEach(function(val, i){
//if already rendered, just randomize drawFuncs
if(objects[i]){
objects[i].tilt = null;
objects[i].smile = null;
objects[i].eyes = null;
objects[i].draw = drawFuncs[i];
}
else
objects[i] = new PhysicsObject(startPositions[i], p5.Vector.fromAngle(focusedRandom(0, TAU)), drawFuncs[i]);
})
lastSwap = millis();
}
//buffer around edges
var buffer = 60;
class PhysicsObject{
constructor(startPos, startVel, drawFunc){
this.position = startPos.copy();
this.velocity = startVel.copy();
this.draw = drawFunc;
}
updatePhysics(){
var time = millis();
//set velocity of object
if(this.push)
this.velocity = this.push.getVal(time).mult(this.speed.getVal(time));
//if outta bounds
if(this.withinBufferDistance())
this.velocity.rotate(180);
this.position.add(this.velocity)
}
withinBufferDistance(){
var minDist = buffer*2.5;
var pos = this.position;
objects.forEach(function(object){
if(pos != object.position)
minDist = min(pos.dist(object.position), minDist);
})
if(minDist < buffer*2.5)
this.smile = new Lerper(millis(), 1500, function(val){
return 50+50*sin(val*360*6);
})
return this.position.x <= buffer || this.position.y <= buffer ||
canvasWidth-buffer <= this.position.x || canvasHeight-buffer <= this.position.y ||
minDist < buffer*2.5;
}
getHappiness(){
var minDist = buffer*6;
var pos = this.position;
objects.forEach(function(object){
if(pos != object.position)
minDist = min(pos.dist(object.position), minDist);
})
var returnVal = constrain(map(minDist, buffer*6, buffer*2.5, 0, 1), 0, 1);
return returnVal*returnVal;
}
}
//physics update tick
(function doPhysicsUpdate(){
setTimeout(doPhysicsUpdate, 20);
if(objects)
objects.forEach(function(object){
object.updatePhysics();
});
})();
//mod helper
Math.mod = function(x, y){
return x - y * floor(x / y)
}
//list of physics objects
var objects = [];
class Lerper{
constructor(startTime, duration, from, to){
this.startTime = startTime;
this.duration = duration;
if(typeof from == "number"){
this.from = from;
this.to = to;
} else if(from instanceof Function)
this.func = from;
}
getVal(time){
//slerp time to 0..1, slerped 0..1 mapped on from..to
if(this.from !== undefined)
return this.doLerp(time)*(this.to-this.from)+this.from;
else if(this.func !== undefined)
return this.func(this.doLerp(time));
else
return this.doLerp(time);
}
doLerp(time){
return (time-this.startTime)/this.duration;
}
isFinished(time){
return (this.startTime+this.duration) < time;
}
}
class Slerper extends Lerper{
getVal(time){
//slerp time to 0..1, slerped 0..1 mapped on from..to
if(this.from !== undefined)
return this.doSlerp(time)*(this.to-this.from)+this.from;
else if(this.func !== undefined)
return this.func(this.doSlerp(time));
else
return this.doSlerp(time);
}
doSlerp(time){
return slerp((time-this.startTime)/this.duration);
}
}
function slerp(val){
val = constrain(val, 0, 1);
return (cos(180+180*val)+1)/2;
}
var alwaysRand = new Math.seedrandom(focusedRandom())
function draw () {
if(lastSwap+5000 < millis())
changeRandomSeed();
resetFocusedRandom(curRandomSeed);
noStroke();
//light blue
background(210, 70, 100);
var w = canvasWidth / 5;
var h = canvasHeight / 3;
objects.forEach(function(object, i){
var time = millis();
var x = object.position.x;
var y = object.position.y;
//set velocity
if(!object.push || object.push.isFinished(time)){
var div = 20
let delta = focusedRandom(-PI/div, PI/div, 10, 0, alwaysRand);
var duration = focusedRandom(2000, 5000, 1, 3000, alwaysRand)
if(object.speed)
var fromSpeed = object.speed.to;
else
var fromSpeed = focusedRandom(4, 0.2, 2, 1, alwaysRand);
let toSpeed = focusedRandom(5, 0.2, 2, 1, alwaysRand);
object.speed = new Slerper(time, duration, fromSpeed, toSpeed);
object.push = new Lerper(time, duration, function(val){
return p5.Vector.fromAngle(object.velocity.heading()+delta);
})
}
//set tilt
if(!object.tilt || object.tilt.isFinished(time)){
if(object.tilt)
var from = object.tilt.to;
else
var from = focusedRandom(-90, 90, 4, from/3, alwaysRand);
var duration = focusedRandom(500, 2000, 1, 1000, alwaysRand)
var to = focusedRandom(-90, 90, 4, from/3, alwaysRand)
object.tilt = new Slerper(time, duration, from, to)
}
//set smile
if(!object.smile || object.smile.isFinished(time)){
if(object.smile && typeof object.smile.to == "number")
var from = object.smile.to;
else
var from = focusedRandom(40, 100, 1, 60, alwaysRand)
var duration = focusedRandom(100, 3000, 2, 600, alwaysRand)
if(focusedRandom(null, null, null, null, alwaysRand) < 0.3)
var to = from
else
var to = focusedRandom(20, 100, 2, 60, alwaysRand)
object.smile = new Slerper(time, duration, from, to)
}
//set eyes
if(!object.eyes || object.eyes.isFinished(time)){
if(object.eyes && typeof object.eyes.to == "number")
var from = object.eyes.to;
else
var from = 50
var duration = focusedRandom(100, 2000, 1, 1000, alwaysRand)
var to = focusedRandom(0, 100, 1, 50, alwaysRand)
object.eyes = new Slerper(time, duration, from, to)
}
//do the draw
object.draw(x, y, w, h, object.tilt.getVal(time), object.eyes.getVal(time), max(object.smile.getVal(time), 100*object.getHappiness()));
})
}
function keyTyped() {
if (key == '!') {
saveBlocksImages();
}
else if (key == '@') {
saveBlocksImages(true);
}
}
{
"commits": [
{
"sha": "bcd5d80251f82b5424853db9d2da30ad45d3bcac",
"name": "final_version"
},
{
"sha": "716fb7a5ec0d1626a457fa9a83dd750b1e24bb81",
"name": "version_4"
},
{
"sha": "2669d46d1b0d7c2fce77fe376270a2da80a081d6",
"name": "version_3"
},
{
"sha": "1e673cfe614e8bbc66883974715f712daaa9c6cb",
"name": "version_2"
},
{
"sha": "a0053d13e7424789186d4a7d3dc4ec76077a6eb7",
"name": "version_1"
}
]
}
var canvasWidth = 960;
var canvasHeight = 500;
var button;
var curRandomSeed;
var mainFace;
var faceImages = [];
var curFaceIndex = 0;
var curTrainIndex = 0;
var curValidIndex = 0;
var main_canvas;
var faceSelector;
var facelist = [];
var NUMFACES = 6*9;
var sliders = [];
var NUM_SLIDERS = 12;
var sliderTint;
var faceData = [
{"landmarks": [{"nose_bridge": [[-0.09083664800859323, -1.1331171913324525], [-0.08996869920096179, -0.7900363379039251], [-0.08910075039333033, -0.4469554844753977], [-0.08823280158569889, -0.10387463104687027]], "left_eyebrow": [[-1.4637609493587556, -1.3671629100139842], [-1.2796259928409857, -1.6051477809763048], [-0.9895271050493772, -1.6850547038354993], [-0.6727703212070726, -1.6594650524711185], [-0.38220407636520126, -1.5546361311764905]], "left_eye": [[-1.119945677708386, -1.0777316751513233], [-0.9354768947261425, -1.1837623717180563], [-0.7243502156932026, -1.1842964940612142], [-0.539147014489117, -1.0000280069576548], [-0.7238160933500448, -0.9731698150282742], [-0.9614003725549969, -0.9989597622713392]], "right_eye": [[0.49009554579646525, -1.0026318533805492], [0.6743640329000248, -1.1878350545846348], [0.9118147815191875, -1.2148267770998047], [1.0968844521374834, -1.0833399597544804], [0.9122821385694505, -1.0300909329459822], [0.6748313899502878, -1.0030992104308123]], "nose_tip": [[-0.45710360225729124, 0.1345775969657134], [-0.27223422751767934, 0.18689190967368527], [-0.06104078319184466, 0.21274862220964497], [0.12356153037618835, 0.15949959540114686], [0.3610122789953511, 0.13250787288597685]], "chin": [[-1.7000099227058132, -0.8651361596746993], [-1.7252657476057203, -0.4164252014368071], [-1.671349067868275, 0.03208546092240083], [-1.5646507183725944, 0.4804625926958193], [-1.4051706991186794, 0.9287061938834484], [-1.140327636226978, 1.297510229262146], [-0.8490937384561595, 1.666247499347949], [-0.5052784668057901, 1.95567873421061], [-0.029976377810096287, 2.060040298454975], [0.4448583541353344, 1.9796660185455173], [0.9193592596162916, 1.7673375642404725], [1.3407446688745401, 1.423188466125629], [1.6828908082025413, 1.0528488290103528], [1.8401008074980358, 0.6038040443079871], [1.9180715368632832, 0.12856872060518798], [1.9695846660565184, -0.37299067268383396], [1.9683828907844134, -0.8480257005079488]], "bottom_lip": [[0.8635731516777938, 0.5798835252659744], [0.5742754474009223, 0.9764804666745788], [0.205137585557751, 1.1093693551706925], [-0.03231316306141173, 1.1363610776858626], [-0.29622151185258666, 1.1370287306148097], [-0.5869212872802475, 0.9794181395619468], [-0.8516975848790539, 0.6370049390623667], [-0.7460674800696891, 0.6631287127699053], [-0.2704315646095217, 0.8994444514098576], [-0.03284728540456954, 0.9252343986529226], [0.2046034632145932, 0.8982426761377525], [0.8108582472124536, 0.6064078907308814]], "transform": {"angle": 0.002529861247795008, "center": [186.33333333333334, 183.94444444444446], "scale": 37.89182132672947}, "top_lip": [[-0.8516975848790539, 0.6370049390623667], [-0.5615986970874456, 0.5570980162031721], [-0.27149980929583734, 0.47719109334397775], [-0.03384876479799044, 0.52937187546616], [0.17714438364916008, 0.47605608336476735], [0.5467496025425944, 0.527903039022476], [0.8635731516777938, 0.5798835252659744], [0.8108582472124536, 0.6064078907308814], [0.17754497540652844, 0.6344010926394723], [-0.03344817304062208, 0.6877168847408651], [-0.27103245224557426, 0.6619269374978002], [-0.7460674800696891, 0.6631287127699053]], "right_eyebrow": [[0.22478512585450108, -1.556171732913069], [0.567532152818555, -1.6889938561162883], [0.9369370758333051, -1.7163194050959316], [1.2802182251405168, -1.6380148492662108], [1.5447274615677442, -1.4011649882831005]]}], "url": "z_face1.jpg", "embedding": [[-0.09812457114458084, 0.11998496949672699, 0.06276129186153412, -0.05255047231912613, -0.12243147939443588, -0.03132074326276779, -0.09414154291152954, -0.1242457777261734, 0.07002627849578857, -0.08147289603948593, 0.2814253270626068, -0.04594751447439194, -0.22189925611019135, -0.1113772839307785, -0.11815732717514038, 0.2204407900571823, -0.14725343883037567, -0.10374704003334045, -0.08243671804666519, 0.005101572722196579, 0.12012264132499695, -0.0025456342846155167, 0.0014407113194465637, 0.0015963278710842133, -0.08633701503276825, -0.33422884345054626, -0.045525021851062775, -0.03229425102472305, -0.03990006074309349, -0.06796583533287048, -0.04964607208967209, 0.027314048260450363, -0.234699085354805, -0.03814394026994705, 0.02356778085231781, 0.053027696907520294, -0.050578296184539795, -0.06693702191114426, 0.14406313002109528, 0.018536454066634178, -0.22719770669937134, 0.047739796340465546, 0.06735788285732269, 0.19067732989788055, 0.182114377617836, 0.019334735348820686, 0.054091211408376694, -0.15950612723827362, 0.13529177010059357, -0.20682178437709808, 0.021643809974193573, 0.18243306875228882, 0.07248902320861816, 0.06592673063278198, 0.015211593359708786, -0.08783256262540817, 0.03786002844572067, 0.13478770852088928, -0.09582363814115524, 0.016811812296509743, 0.11877749860286713, -0.05823524296283722, -0.0877673402428627, -0.121843121945858, 0.20835383236408234, 0.08842334151268005, -0.13640394806861877, -0.18775177001953125, 0.11289231479167938, -0.09115668386220932, -0.10935712605714798, 0.04192322492599487, -0.15002340078353882, -0.19342319667339325, -0.3086214065551758, 0.048502061516046524, 0.36910122632980347, 0.132289320230484, -0.23331473767757416, 0.03634979575872421, -0.08015844225883484, 0.0484822653234005, 0.12521624565124512, 0.12101111561059952, 0.008804835379123688, 0.0336700864136219, -0.09477405250072479, -0.01780793070793152, 0.22713540494441986, -0.07723923027515411, -0.023343967273831367, 0.264713853597641, 0.0039475541561841965, 0.061221860349178314, 0.009781097993254662, 0.019018054008483887, -0.07865786552429199, 0.0058430954813957214, -0.11374843120574951, -0.03492026403546333, 0.050761688500642776, -0.041851382702589035, -0.020709838718175888, 0.09610284864902496, -0.1072147861123085, 0.10397015511989594, -0.044768959283828735, 0.10082380473613739, 0.04071452468633652, -0.02748667635023594, -0.09102319180965424, -0.07456323504447937, 0.06832525879144669, -0.1713019609451294, 0.24891397356987, 0.14487513899803162, 0.0664646327495575, 0.06269458681344986, 0.20069821178913116, 0.09950415045022964, -0.002668582834303379, -0.016219403594732285, -0.1644577980041504, -0.06623447686433792, 0.10705346614122391, -0.022745352238416672, 0.059049054980278015, -0.034697555005550385]]},
{"url": "z_face2.jpg", "embedding": [[-0.10002943128347397, -0.002971264533698559, 0.04409882426261902, -0.08042342960834503, -0.13918328285217285, -0.05096873641014099, -0.0675748884677887, -0.03445271775126457, 0.17213879525661469, -0.1289740800857544, 0.20593279600143433, -0.038095682859420776, -0.20807456970214844, -0.03513205423951149, 0.04067589342594147, 0.18801690638065338, -0.20172590017318726, -0.14577223360538483, -0.06354935467243195, -0.0328928679227829, 0.007761724293231964, 0.06754852831363678, 0.01997918263077736, 0.0867898017168045, -0.23197656869888306, -0.36380860209465027, -0.08826257288455963, -0.15048570930957794, -0.028067536652088165, -0.006293401122093201, 0.01313356589525938, 0.1122763603925705, -0.18493340909481049, -0.03600311279296875, 0.07104189693927765, 0.10923558473587036, -0.014780500903725624, -0.053669825196266174, 0.21474239230155945, 0.043618202209472656, -0.24918276071548462, -0.04855405539274216, 0.05416091904044151, 0.2509222626686096, 0.11213052272796631, -0.008110547438263893, 0.060037221759557724, -0.020381931215524673, 0.12973971664905548, -0.26530784368515015, 0.005873171612620354, 0.14386363327503204, 0.05093163251876831, 0.06247718259692192, 0.12190939486026764, -0.10820997506380081, 0.08467353880405426, 0.153029203414917, -0.22401994466781616, 0.018371853977441788, -0.0064929090440273285, -0.007204247638583183, 0.001340152695775032, -0.027905315160751343, 0.25697019696235657, 0.11021729558706284, -0.10640345513820648, -0.10520730167627335, 0.1669047623872757, -0.11952564120292664, -0.07537998259067535, 0.11944880336523056, -0.16234096884727478, -0.18609827756881714, -0.3132040798664093, -0.05591844767332077, 0.4329444468021393, 0.08397790789604187, -0.18753360211849213, 0.052566226571798325, -0.012145612388849258, -0.06690485030412674, 0.09321217238903046, 0.10295377671718597, -0.020737331360578537, 0.06169183924794197, -0.05560031533241272, 0.083901546895504, 0.23535601794719696, -0.03588230162858963, 0.01774720288813114, 0.2265700399875641, 0.04118061065673828, 0.023799866437911987, 0.06956352293491364, 0.04878733307123184, -0.043150097131729126, -0.06510938704013824, -0.12393594533205032, 0.0016987025737762451, 0.08229243010282516, -0.012456422671675682, -0.019080791622400284, 0.08945812284946442, -0.17775820195674896, 0.1187109649181366, 0.01918645016849041, -0.06475910544395447, -0.05718757212162018, 0.07448309659957886, -0.0888402909040451, -0.058351099491119385, 0.13630631566047668, -0.24056236445903778, 0.16022630035877228, 0.1560491919517517, -0.08275251090526581, 0.11594061553478241, -0.010273986496031284, 0.013581231236457825, -0.08263693749904633, -0.04651876911520958, -0.1439516544342041, -0.10474348068237305, 0.0713956207036972, -0.021647857502102852, 0.056770212948322296, -0.0075003779493272305]], "landmarks": [{"bottom_lip": [[0.8927581592050962, 0.6424316486467727], [0.5537825636977446, 0.9192459519869604], [0.2746815917751089, 1.0262170020798214], [0.05095887408256518, 1.0374194415612454], [-0.17126505382510382, 1.0239303334973733], [-0.487758802559335, 0.9303714236581127], [-0.8663368756504581, 0.6347837641018552], [-0.7196863801635536, 0.6684680503564], [-0.15627715597635683, 0.7770148580444077], [0.03975643460114093, 0.813696723868702], [0.2649779420785594, 0.7778027368419811], [0.7431100841484422, 0.6581304574828212]], "top_lip": [[-0.8663368756504581, 0.6347837641018552], [-0.4667757455710892, 0.5846897580239607], [-0.1412892581276098, 0.5300993825914422], [0.054744332449887946, 0.5667812484157364], [0.2552742923820098, 0.5293884716041408], [0.5485752833558191, 0.5967570441132304], [0.8927581592050962, 0.6424316486467727], [0.7431100841484422, 0.6581304574828212], [0.2462815536727616, 0.6775377568759201], [0.04725038352551444, 0.6902389861422192], [-0.15028199683685803, 0.6782486678632216], [-0.7196863801635536, 0.6684680503564]], "left_eye": [[-1.3413175025300474, -0.9305643487586496], [-1.0839104985829588, -1.0884172837269783], [-0.7629203804941037, -1.068933016523607], [-0.5048024655597139, -0.8302224009823166], [-0.7809058579126001, -0.7726344459800486], [-1.1265875235467522, -0.7936175029682944]], "nose_tip": [[-0.36422409702258013, 0.12004672401795025], [-0.1681905064450824, 0.15672858984224444], [0.02784308413241536, 0.1934104556665386], [0.2283730440645372, 0.15601767885494308], [0.4042114564513625, 0.11712611225847289]], "right_eyebrow": [[0.43055572940207787, -1.5417039426310204], [0.7867289235303526, -1.6935617184598504], [1.1600997162795503, -1.7204629667773232], [1.5244777703194998, -1.5992149298230165], [1.704024673263376, -1.2909260410004604]], "right_eye": [[0.5105485633671942, -0.8181551148930469], [0.749259178908485, -1.0762730298274366], [1.0717480867822151, -1.0814803101693622], [1.3081720337410576, -0.8936515795035391], [1.101646914669437, -0.7574926125107575], [0.779158006795707, -0.7522853321688321]], "nose_bridge": [[0.02720914095538606, -1.0209717434076166], [0.03391521108218621, -0.7231743830791834], [0.04212007099386105, -0.4500685702960466], [0.050324930905535886, -0.17696275751290974]], "transform": {"center": [272.40277777777777, 193.26388888888889], "angle": -0.060626133324491974, "scale": 40.42528306397457}, "left_eyebrow": [[-1.7879750591175618, -1.3294145678507174], [-1.5477656537913962, -1.6122240303304036], [-1.1683997019026995, -1.7378914688290623], [-0.7748337309628293, -1.6892192847257705], [-0.3857641293775832, -1.5664724579865892]], "chin": [[-2.1082542662191153, -0.9523352845444687], [-2.0394638717354234, -0.45250917449903877], [-1.9444831399215596, 0.024124177785969342], [-1.8218132809926504, 0.45287322476525904], [-1.6250687794278513, 0.8861186410991729], [-1.3235629285423673, 1.2265930263913993], [-0.944984855451244, 1.5221806859476563], [-0.5125273179149036, 1.7466912824377736], [-0.02169394657872184, 1.826050173225861], [0.45344061592141155, 1.7557609889572938], [0.8649920642797783, 1.508134602517027], [1.2286592073324263, 1.232819088961714], [1.5212492873189345, 0.903624110961184], [1.7195695464788803, 0.4943593311852654], [1.7974296474820926, 0.02821750739438028], [1.8490994111551338, -0.4147315586360831], [1.9022679646130496, -0.882372172211843]]}]},
{"landmarks": [{"nose_bridge": [[-0.11915309753870079, -1.0774219445207711], [-0.13194185058151556, -0.7736549202224418], [-0.17555954511257515, -0.4195113024623971], [-0.18834829815538986, -0.11574427816406752]], "left_eye": [[-1.1424886468718944, -1.0458639582140303], [-0.9590224614704648, -1.1759386230976654], [-0.7056320306338502, -1.1939788115430956], [-0.48457800481352026, -0.989457510640156], [-0.68759184218842, -0.9405883807064809], [-0.9409822730250346, -0.9225481922610508]], "top_lip": [[-0.7026664774688184, 0.7812605781600669], [-0.5289741180541238, 0.6105831458014519], [-0.28535751320424413, 0.5519401898810417], [-0.14400155880583426, 0.6038242468707966], [0.059012278569065435, 0.5549551169371215], [0.34172418736588517, 0.658723230916631], [0.6748126896244199, 0.7933202863843856], [0.543230561212745, 0.7820389968696106], [0.06727864102776064, 0.7677427802987561], [-0.10490625485889415, 0.7662353167707163], [-0.2770911507455489, 0.7647278532426764], [-0.5808581750438785, 0.7519391001998618]], "left_eyebrow": [[-1.4936173375758595, -1.4338514445183996], [-1.26954838469945, -1.5736999353887697], [-0.9755551863878553, -1.601513949820935], [-0.6717881620895256, -1.5887251967781202], [-0.37930242730597086, -1.4443543153236307]], "transform": {"scale": 23.944885517334836, "center": [241.73611111111111, 127.75], "angle": 0.23622397528318634}, "right_eyebrow": [[0.20868396931721833, -1.4999823441879612], [0.5545612246185678, -1.6691523130185362], [0.8891571904051424, -1.7067401534374365], [1.2839035756401669, -1.672896284893112], [1.5763893104237214, -1.5285254034386222]], "right_eye": [[0.45755200956971354, -1.001467844973427], [0.6718471364593881, -1.1819191033187768], [0.9658403347709826, -1.2097331177509423], [1.1771205346045774, -1.0458145843229827], [0.9838805232164127, -0.9563426869143276], [0.6898873249048183, -0.9285286724821623]], "nose_tip": [[-0.43347236653330934, 0.11508357364299744], [-0.28234258614816443, 0.20757039810773217], [-0.14098663174975457, 0.259454455097487], [0.062027205625145125, 0.21058532516381184], [0.21466444953832986, 0.13088725374189183]], "chin": [[-1.6394956825583888, -0.9691808138481901], [-1.653791899129243, -0.4932288936632056], [-1.5868825807501379, -0.036824625451691295], [-1.5199732623710325, 0.419579642759823], [-1.3718584090419674, 0.8564362589978674], [-1.1523118467496776, 1.2331424557874615], [-0.8207308080191824, 1.539924407141871], [-0.4989235952754227, 1.8061035910213004], [-0.0034240231169682667, 1.9016053425421149], [0.4935830125695261, 1.8249221981762747], [1.042474105245775, 1.6068830994120242], [1.521440952486839, 1.2768095242095692], [1.9094284387912084, 0.9256808335056042], [2.1056833772354526, 0.49183914432363957], [2.191411302769532, -0.044263195309794834], [2.2463102868153664, -0.5299889414815142], [2.2508326773994862, -1.0465436291414787]], "bottom_lip": [[0.6748126896244199, 0.7933202863843856], [0.3387092603098055, 1.0030930226899408], [0.054489887984945945, 1.071509804597086], [-0.1582977753766888, 1.079776167055781], [-0.34025649725007867, 1.0376659360527611], [-0.5319890451102034, 0.9549529375747614], [-0.7026664774688184, 0.7812605781600669], [-0.5808581750438785, 0.7519391001998618], [-0.31769391822052884, 0.7745016792294115], [-0.13573519634713904, 0.8166119102324313], [0.0266758735527807, 0.7775166062854911], [0.543230561212745, 0.7820389968696106]]}], "url": "z_face3.jpg", "embedding": [[-0.05519425496459007, 0.03493059054017067, 0.08143620938062668, -0.08901284635066986, -0.14302502572536469, -0.02416623942553997, -0.09756344556808472, -0.08315102756023407, 0.23946982622146606, -0.15162669122219086, 0.09232431650161743, -0.014769241213798523, -0.15266633033752441, 0.0738283321261406, -0.08435601741075516, 0.1452733278274536, -0.09795519709587097, -0.16579927504062653, -0.09493180364370346, -0.062312837690114975, -0.08847658336162567, 0.021459033712744713, -0.00294596329331398, 0.012956537306308746, -0.12360681593418121, -0.35962730646133423, -0.08465795964002609, -0.05886299908161163, -0.014770012348890305, 0.003773917444050312, -0.023260220885276794, 0.10789743810892105, -0.1129622533917427, -0.047460466623306274, 0.04806378483772278, 0.11290744692087173, -0.09416302293539047, -0.0867939442396164, 0.24747592210769653, 0.03254516422748566, -0.22027653455734253, 0.0030573979020118713, 0.08847130835056305, 0.2831569314002991, 0.22063785791397095, 0.03714641183614731, 0.13540662825107574, -0.1261082887649536, 0.14653107523918152, -0.3661941885948181, 0.0811522826552391, 0.16923867166042328, 0.011623818427324295, 0.09494776278734207, 0.13868921995162964, -0.17209285497665405, 0.023121878504753113, 0.1638849526643753, -0.1638297140598297, 0.10636025667190552, 0.07150483876466751, 0.000995999202132225, -0.05054526403546333, -0.06572765111923218, 0.3229401111602783, 0.18288353085517883, -0.11134769022464752, -0.16417694091796875, 0.28029778599739075, -0.16538552939891815, -0.06219102442264557, 0.07175640761852264, -0.08962765336036682, -0.22000420093536377, -0.22248777747154236, 0.01842578500509262, 0.3819790482521057, 0.22037602961063385, -0.09785779565572739, 0.10503733158111572, -0.15017080307006836, -0.04053933173418045, 0.008872395381331444, 0.08559748530387878, -0.006650010123848915, -0.02032337710261345, -0.028860213235020638, -0.012347746640443802, 0.2899158298969269, -0.01995079219341278, 0.008609645068645477, 0.22352749109268188, 0.07356566190719604, -0.04810752719640732, -0.03028353489935398, 0.08436368405818939, -0.15227405726909637, 0.02202434279024601, -0.20539432764053345, -0.059333980083465576, 0.10269267857074738, 0.023140307515859604, 0.05972312390804291, 0.12896883487701416, -0.2676396667957306, 0.24129846692085266, -0.08049461990594864, -0.034685902297496796, 0.028595078736543655, -0.032721344381570816, -0.009528398513793945, 0.0033172406256198883, 0.22001129388809204, -0.27409398555755615, 0.15639911592006683, 0.1383773386478424, 0.07004918903112411, 0.18882378935813904, 0.07051581889390945, 0.038776811212301254, 0.0793108195066452, -0.06640178710222244, -0.1935870349407196, -0.0840207114815712, -0.048229992389678955, -0.012153556570410728, -0.03877771645784378, 0.15794801712036133]]},
{"url": "https://scontent-syd2-1.cdninstagram.com/t51.2885-15/e35/20634693_110474426304381_1175536951256678400_n.jpg", "embedding": [[-0.06434948742389679, -0.0024062837474048138, 0.013457316905260086, -0.13760454952716827, -0.07782885432243347, -0.0326097272336483, -0.07550576329231262, -0.11027063429355621, 0.15991172194480896, -0.21385017037391663, 0.14787960052490234, -0.04309634119272232, -0.16878312826156616, 0.004337642341852188, -0.048895012587308884, 0.22118282318115234, -0.2465084344148636, -0.1538938581943512, -0.06121373176574707, 0.017647050321102142, 0.09208934754133224, 0.024556955322623253, -0.04884433001279831, 0.05720386654138565, -0.1205020546913147, -0.2967759370803833, -0.14994552731513977, -0.033904820680618286, -0.06309930980205536, -0.014797422103583813, -0.04614557325839996, -0.00926187913864851, -0.13311146199703217, 0.006801517680287361, 0.04417328163981438, 0.08913587778806686, -0.0224045030772686, -0.1519884169101715, 0.16716164350509644, 0.049321308732032776, -0.2466009110212326, 0.09037433564662933, 0.09041853249073029, 0.20099355280399323, 0.1878717690706253, -0.02567066065967083, -0.015563759952783585, -0.190803661942482, 0.18501657247543335, -0.2248716801404953, -0.012704486958682537, 0.12370685487985611, 0.02906230092048645, 0.12010033428668976, 0.04185774177312851, -0.0715087279677391, 0.08338076621294022, 0.1825292557477951, -0.15724322199821472, 0.008683722466230392, 0.05061739683151245, -0.059865713119506836, 0.008267343044281006, -0.11001555621623993, 0.19872671365737915, 0.13405148684978485, -0.13387998938560486, -0.22018550336360931, 0.10457242280244827, -0.14323820173740387, -0.14457333087921143, 0.026546547189354897, -0.1530495434999466, -0.20092426240444183, -0.2497885376214981, -0.017288561910390854, 0.37686315178871155, 0.15874511003494263, -0.19093939661979675, 0.08379606157541275, -0.032301176339387894, -0.04047559201717377, 0.17002521455287933, 0.1846965253353119, 0.0428498238325119, 0.018862586468458176, -0.03615395724773407, 0.02118091657757759, 0.2795213460922241, -0.055659350007772446, -0.0038115475326776505, 0.24325871467590332, 0.01164834201335907, 0.09222240746021271, 0.032771360129117966, 0.013789206743240356, -0.08343151956796646, 0.04562674090266228, -0.16591206192970276, -0.033202044665813446, 0.03372709080576897, 0.017015967518091202, 0.006566572934389114, 0.11564993858337402, -0.11008727550506592, 0.1600748598575592, -0.003899163566529751, 0.0007363781332969666, 0.02611439675092697, 0.014180602505803108, -0.08694899082183838, -0.036308515816926956, 0.11282915621995926, -0.19615048170089722, 0.17582936584949493, 0.16026270389556885, 0.0727701336145401, 0.08516994118690491, 0.10163966566324234, 0.08326815068721771, -0.03913598507642746, 0.0009636171162128448, -0.23755581676959991, 0.024762913584709167, 0.10351080447435379, 0.02275218814611435, 0.09435515850782394, -0.019461821764707565], [-0.01809755153954029, 0.06842115521430969, 0.022775977849960327, -0.0824776142835617, -0.09563397616147995, -0.006546758580952883, -0.09301387518644333, -0.07580921053886414, 0.15046824514865875, -0.12530161440372467, 0.16738361120224, -0.046050626784563065, -0.22449420392513275, -0.045814380049705505, -0.07524748146533966, 0.23644816875457764, -0.1378936767578125, -0.19163982570171356, -0.08716118335723877, 0.05193939805030823, 0.09445168077945709, 0.09647463262081146, -0.01378897950053215, 0.04350718483328819, -0.11957018077373505, -0.327610045671463, -0.08205433934926987, -0.02312815561890602, -0.04604858160018921, -0.018958216533064842, -0.0672551840543747, 0.033627137541770935, -0.1603398472070694, -0.0036753974854946136, 0.13077445328235626, 0.15468333661556244, 0.002885455032810569, -0.10952965915203094, 0.15249699354171753, 0.05938611552119255, -0.30551767349243164, 0.10706408321857452, 0.07487311959266663, 0.2536681294441223, 0.20432905852794647, -0.012460842728614807, 0.004066009074449539, -0.16353781521320343, 0.13847310841083527, -0.18713155388832092, 0.01564977690577507, 0.14428621530532837, 0.09221404790878296, 0.07784521579742432, 0.05035289749503136, -0.12576442956924438, 0.07877448201179504, 0.18568532168865204, -0.15744075179100037, -0.036223240196704865, 0.08006320148706436, -0.09039562940597534, 0.022176189348101616, -0.11159314215183258, 0.16633199155330658, 0.02285883203148842, -0.12541884183883667, -0.2449038177728653, 0.08156414330005646, -0.16242340207099915, -0.08695457875728607, 0.10465404391288757, -0.1712438017129898, -0.1650429666042328, -0.31114718317985535, -0.016828224062919617, 0.37040528655052185, 0.16854992508888245, -0.230664923787117, 0.07778196036815643, 0.014115212485194206, 0.05530476197600365, 0.1309521198272705, 0.13763107359409332, 0.04680697247385979, 0.03131025284528732, -0.1370338797569275, -0.026650816202163696, 0.27962827682495117, -0.07244673371315002, -0.019146129488945007, 0.21041278541088104, 0.006280992180109024, 0.061172254383563995, 0.018279898911714554, -0.008400768041610718, -0.08105571568012238, 0.012714985758066177, -0.1540411114692688, -0.04211049526929855, -0.041871000081300735, 0.013095813803374767, -0.010684534907341003, 0.1169806718826294, -0.13081030547618866, 0.10444509238004684, -0.028239455074071884, 0.011520422995090485, -0.009466593153774738, 0.02178390696644783, -0.080869659781456, -0.0600883774459362, 0.12233073264360428, -0.21379345655441284, 0.1805155724287033, 0.16242389380931854, 0.09568481892347336, 0.0662851482629776, 0.12738333642482758, 0.07340484857559204, -0.04953833669424057, -0.0140237957239151, -0.2088259905576706, -0.04534842073917389, 0.07840050011873245, -0.01670229062438011, 0.12829247117042542, -0.01978478580713272]], "landmarks": [{"left_eyebrow": [[-1.0893772751733926, -1.5976829602412819], [-0.9765281207841461, -1.7651474966948955], [-0.7807149427418287, -1.787895593659279], [-0.5722639330526317, -1.7018585917112645], [-0.36381292336343446, -1.6158215897632495]], "right_eye": [[0.3186830540979003, -1.0556398732938652], [0.4532892282696265, -1.225631976076855], [0.6759145587531755, -1.2073935998056553], [0.8843655684423727, -1.1213565978576403], [0.6769056359350795, -1.0090528554339617], [0.4810924578927621, -0.986304758469578]], "chin": [[-1.0428900040627211, -1.0077158597849538], [-1.1061789090463523, -0.6034516720534392], [-1.0773846022413127, -0.16578371007446913], [-0.980791669759458, 0.28605857269885276], [-0.8406846977126439, 0.7328457228134228], [-0.7198071791189333, 1.203917459039848], [-0.5387137338365358, 1.6238924567131865], [-0.302459494524203, 1.949256676268478], [0.06334578630110402, 2.0611147534758203], [0.5177156354038019, 1.9862788407764456], [1.0682327517720185, 1.790019997517792], [1.5792998840521235, 1.4439895821111568], [1.9982838045435578, 1.0645553924570659], [2.2958447944757134, 0.5889739355374564], [2.450225834066112, 0.019772777681704046], [2.5150512281972146, -0.5610751346390241], [2.538890149092734, -1.1151108945185204]], "right_eyebrow": [[-0.03745762662623886, -1.653735084703889], [0.2545028186815971, -1.7979061122275513], [0.6000875688718965, -1.8601041932800464], [0.939080697255972, -1.7892325893082872], [1.2664270711750714, -1.6288053398772335]], "transform": {"scale": 45.65512809587349, "angle": 0.11565402067983184, "center": [461.9861111111111, 204.19444444444446]}, "left_eye": [[-0.8278473725673, -1.0547485428611931], [-0.7534571250842611, -1.1736439070910956], [-0.5961028539481512, -1.1478228318317678], [-0.44786777094764124, -1.0106890913306656], [-0.5951117767662473, -0.9494820874600746], [-0.7524660479023572, -0.9753031627194022]], "nose_tip": [[-0.5633442384154955, 0.08320810763397547], [-0.46873346029744895, 0.13836890166391072], [-0.37665024850877815, 0.17177267591136625], [-0.20259409024894054, 0.15155214527635852], [-0.009308478535999127, 0.1070470285294951]], "nose_bridge": [[-0.26216485822282776, -1.1204652674249684], [-0.35984861463581846, -0.8224586122764762], [-0.4383029175957054, -0.5487365432398399], [-0.5577436937911757, -0.24820232176197207]], "bottom_lip": [[0.3721078654818997, 0.922712437764316], [0.12366145973902314, 1.061828332629226], [-0.11061062520950168, 1.133145601817321], [-0.21939572412190023, 1.145783433464201], [-0.308951369581195, 1.134136678999225], [-0.4086172803579936, 1.0354618454043305], [-0.3994980922223937, 0.9241491801625561], [-0.3392821655337066, 0.8730524416094688], [-0.3149975794218509, 0.8922818950625725], [-0.24719895374503587, 0.9064562158569243], [-0.13841385483263732, 0.8938183842100444], [0.2582676339107493, 0.8918362298462365]], "top_lip": [[-0.3994980922223937, 0.9241491801625561], [-0.4490583416280091, 0.6873495288846553], [-0.3938975475980739, 0.5927387507666085], [-0.3018143358094031, 0.6261425250140642], [-0.19808436955575653, 0.5699906538022249], [0.058935812357152, 0.6944865626564473], [0.3721078654818997, 0.922712437764316], [0.2582676339107493, 0.8918362298462365], [-0.17533627259137283, 0.7658038318445423], [-0.28412137150377137, 0.7784416634914221], [-0.3519199971805865, 0.7642673426970703], [-0.3392821655337066, 0.8730524416094688]]}, {"left_eyebrow": [[-1.174153380360984, -1.4239136863612827], [-1.1366209456132446, -1.6667529548899338], [-0.9332950466265433, -1.7425393870187091], [-0.7170079198193443, -1.725078480082173], [-0.4877595651916478, -1.6143702340803257]], "right_eye": [[0.352188049029449, -1.0420168484208006], [0.49268874370787274, -1.2278818404709662], [0.7322877052813994, -1.2136612404895544], [0.988088201630548, -1.0828814666765036], [0.761450467877519, -1.0038547275926042], [0.5250918132591167, -0.9947634928076879]], "chin": [[-1.076314485626795, -0.8909817936908679], [-1.1144766064549914, -0.481719374842798], [-1.07946291602908, -0.05886604209377333], [-0.9978255560705132, 0.35750667674500247], [-0.8695645265792906, 0.7673987816735295], [-0.6914395206002881, 1.1941221074581354], [-0.4964832937652066, 1.5709814567549616], [-0.28469584607404613, 1.8979768295640076], [0.08442351715161711, 1.9892432338351083], [0.577212354199625, 1.9445086225438235], [1.12049485381587, 1.7501820817891993], [1.6540564325667417, 1.4859200367355914], [2.081409444431805, 1.1413718804371702], [2.39607327550081, 0.6699139433612795], [2.51452150757382, 0.1544429576274008], [2.530001479716146, -0.4180023045849637], [2.548721758813596, -0.9671357320310006]], "right_eyebrow": [[-0.0649062324426232, -1.6493839245062372], [0.3417455655307794, -1.8009567887637874], [0.764598898279804, -1.8359704791896987], [1.1868225449483716, -1.7045610192961913], [1.4886170247497188, -1.4138387090739706]], "transform": {"scale": 42.48818258907084, "angle": 0.13811342790067305, "center": [160.08333333333334, 236.79166666666666]}, "left_eye": [[-0.9293331770381225, -1.030223116208378], [-0.8555276797035577, -1.1830553526268421], [-0.6625523876626865, -1.1623541387351817], [-0.49675892342372463, -0.9953013023353057], [-0.6567014598328947, -0.949307318883107], [-0.8464364449186416, -0.9466966980084398]], "nose_tip": [[-0.5840634581064047, 0.08613433170068883], [-0.45778336340939246, 0.13986830122405022], [-0.35805541043383254, 0.1735307429362082], [-0.17156073230321026, 0.14760828729521303], [0.014933945827412063, 0.12168583165421785]], "nose_bridge": [[-0.29991363834727214, -1.1177114039967366], [-0.35427729395109053, -0.8250081589803053], [-0.4585049260426889, -0.5491361348199533], [-0.5329401094577106, -0.22988074808207004]], "bottom_lip": [[0.45147006903023057, 0.868923916337621], [0.13482530316701477, 0.9842237180083461], [-0.12160487926259092, 1.0198670945147144], [-0.26147588786055764, 1.0393089362454608], [-0.3612038408361176, 1.0056464945333028], [-0.44086026600047423, 0.9454319110996926], [-0.5004451633536274, 0.8586651859446303], [-0.4104381312434406, 0.8223921233578049], [-0.36705476866590936, 0.7925996746812283], [-0.27056712264547383, 0.8029502816270585], [-0.1507676418587105, 0.8100605816177643], [0.30511844652201503, 0.8417420885357119]], "top_lip": [[-0.5004451633536274, 0.8586651859446303], [-0.5062960911834192, 0.6456183660925557], [-0.42600997993860557, 0.539409799206747], [-0.32628202696304565, 0.5730722409189051], [-0.1896513253202033, 0.5303185644218308], [0.0894610057952732, 0.6578580312797571], [0.45147006903023057, 0.868923916337621], [0.30511844652201503, 0.8417420885357119], [-0.16048856272408368, 0.7401250773187809], [-0.30359987827717483, 0.7362550842831995], [-0.39684721734248596, 0.7492163121036971], [-0.4104381312434406, 0.8223921233578049]]}]},
{"url": "https://pbs.twimg.com/media/DGnH9l8VwAASYUj.jpg", "landmarks": [{"left_eyebrow": [[-1.2569022247940032, -1.457931461988435], [-1.1414776277708902, -1.5697412065137817], [-1.0260530307477775, -1.6815509510391287], [-0.7988186891993182, -1.6779360985413627], [-0.5733917738997415, -1.5607040752693673]], "bottom_lip": [[0.7538657504133576, 0.7333284552018232], [0.4093993855929024, 0.955140518003634], [0.06674044702133014, 1.0633354100312151], [-0.1604938945271294, 1.0597205575334492], [-0.38772823607558893, 1.0561057050356835], [-0.4995379806009358, 0.9406811080125707], [-0.7231574696516295, 0.7098319139663453], [-0.6095402988773998, 0.7116393402152282], [-0.38230595732894024, 0.7152541927129941], [-0.15687904202936356, 0.8324862159849896], [0.07216272576797887, 0.7224838977085257], [0.6402485796391277, 0.7315210289529402]], "right_eye": [[0.4401256318239119, -0.9763513851582722], [0.6709748258701373, -1.1999708742089659], [0.8982091674185968, -1.1963560217112001], [1.1236360827181733, -1.0791239984392043], [0.8945943149208311, -0.9691216801627406], [0.6673599733723715, -0.9727365326605064]], "top_lip": [[-0.7231574696516295, 0.7098319139663453], [-0.4941157018542871, 0.5998295956898814], [-0.3804985310800573, 0.6016370219387643], [-0.15326418953159773, 0.6052518744365302], [0.07397015201686179, 0.608866726934296], [0.4148216643395511, 0.6142890056809447], [0.7538657504133576, 0.7333284552018232], [0.6402485796391277, 0.7315210289529402], [0.07216272576797887, 0.7224838977085257], [-0.15507161578048065, 0.7188690452107599], [-0.38230595732894024, 0.7152541927129941], [-0.6095402988773998, 0.7116393402152282]], "transform": {"angle": -0.015906696090656917, "scale": 8.800373080615655, "center": [328.2638888888889, 298.65277777777777]}, "chin": [[-1.2677467822873005, -0.7762284373430564], [-1.386786231808179, -0.4371843512692499], [-1.3940159368037106, 0.01728433182766917], [-1.2858210447761298, 0.3599432703992414], [-1.1794335789974315, 0.8162193797450433], [-0.9576215161956207, 1.1606857445654986], [-0.7358094533938099, 1.505152109385954], [-0.5139973905919991, 1.8496184742064088], [-0.1749533045181927, 1.9686579237272874], [0.3949399756018391, 1.8640778841974721], [0.8512160849476411, 1.757690418418774], [1.4247242175654389, 1.4258760373404995], [1.8846151794090067, 1.0922542300133418], [2.2326963967272273, 0.6432078256630713], [2.355350698745872, 0.07692939804080531], [2.478005000764516, -0.48934902958146065], [2.48704213200893, -1.0574348834526095]], "right_eyebrow": [[0.10831125074563713, -1.5498595177760697], [0.4527776155660923, -1.7716715805778807], [0.7936291278887817, -1.766249301831232], [1.1344806402114707, -1.760827023084583], [1.4735247262852775, -1.6417875735637044]], "nose_tip": [[-0.48688599685875544, 0.14536091259296224], [-0.3750762523334086, 0.26078550961607494], [-0.2614590815591788, 0.26259293586495785], [-0.03422474001071924, 0.2662077883627237], [0.19481702778662321, 0.15620547008625973]], "left_eye": [[-1.1505147590153049, -1.001655352642633], [-0.9214729912179624, -1.1116576709190968], [-0.6942386496695029, -1.108042818421331], [-0.582428905144156, -0.9926182213982184], [-0.6978535021672687, -0.8808084768728716], [-0.9250878437157283, -0.8844233293706374]], "nose_bridge": [[-0.23976996657258381, -1.1008131134257992], [-0.24519224531923256, -0.7599616011031102], [-0.3642316948401111, -0.4209175150293037], [-0.36965397358675983, -0.08006600270661439]]}, {"left_eyebrow": [[-1.4945885421746705, -1.2877742060422532], [-1.3780050758797373, -1.5263563663813102], [-1.0217564036959088, -1.5296055030308247], [-0.7831742433568517, -1.4130220367358914], [-0.42584252562318503, -1.2975216159907967]], "bottom_lip": [[0.7789817771203207, 0.5916408468245739], [0.4248991960361685, 0.8323890982633073], [0.06973356940217809, 0.9543877923074312], [-0.16776554538704092, 0.9565538834071076], [-0.4052646601762599, 0.9587199745067839], [-0.5250972631207077, 0.8410534626620126], [-0.7636794234597648, 0.7244699963670794], [-0.6449298660651552, 0.7233869508172412], [-0.4074307512759362, 0.721220859717565], [-0.16993163648671722, 0.7190547686178886], [0.06756747830250177, 0.7168886775182123], [0.6613152652755493, 0.7114734497690215]], "right_eye": [[0.5274030701832054, -0.9499373082056735], [0.7627360938727482, -1.1896025140945687], [1.000235208661967, -1.191768605194245], [1.2388173690010245, -1.0751851388993119], [1.0024012997616434, -0.9542694904050262], [0.7649021849724245, -0.9521033993053498]], "top_lip": [[-0.7636794234597648, 0.7244699963670794], [-0.527263354220384, 0.6035543478727937], [-0.2908472849810031, 0.4826386993785078], [-0.1710146820365554, 0.6003052112232792], [0.06540138720282544, 0.4793895627289933], [0.42273310493649213, 0.5948899834740884], [0.7789817771203207, 0.5916408468245739], [0.6613152652755493, 0.7114734497690215], [0.06756747830250177, 0.7168886775182123], [-0.16993163648671722, 0.7190547686178886], [-0.4074307512759362, 0.721220859717565], [-0.6449298660651552, 0.7233869508172412]], "transform": {"angle": 0.009120164698946614, "scale": 8.420733799144191, "center": [197.48611111111111, 304.9583333333333]}, "chin": [[-1.6100889629197657, -0.9304424883085866], [-1.605756780720413, -0.45544425873014843], [-1.6025076440708985, -0.09919558654631994], [-1.4794259044769362, 0.3747195974822799], [-1.3574272104328122, 0.7298852241162703], [-1.1155959134442406, 1.2027173625950318], [-0.8759307075553452, 1.4380503862845746], [-0.5164328987220024, 1.7910499218188887], [-0.1591011809883356, 1.9065503425639836], [0.43464660598471194, 1.9011351148147928], [0.9074787444634735, 1.6593038178262212], [1.4979773947870065, 1.2976399178932017], [1.9697264877159302, 0.9370590635100206], [2.202893420305797, 0.4598947428319063], [2.436060352895663, -0.017269577846208025], [2.549394682541082, -0.6121004103690937], [2.543979454791891, -1.205848197342141]], "right_eyebrow": [[0.16790526134986247, -1.3029368437399875], [0.5219878424340146, -1.5436850951787209], [0.8782365146178431, -1.5469342318282353], [1.353234744196281, -1.551266414027588], [1.7105664619299477, -1.4357659932824929]], "nose_tip": [[-0.5315955364197367, 0.1285561182943556], [-0.41176293347528886, 0.24622263013912693], [-0.17426381868606988, 0.2440565390394506], [0.06323529610314911, 0.24189044793977427], [0.29965136534252995, 0.12097479944548843]], "left_eye": [[-1.2538402907359372, -0.933691624958101], [-1.017424221496556, -1.0546072734523866], [-0.7799251067073373, -1.056773364552063], [-0.5413429463682802, -0.94018989825713], [-0.7777590156076609, -0.8192742497628441], [-1.0152581303968797, -0.8171081586631678]], "nose_bridge": [[-0.1861773197342897, -1.062188592301254], [-0.1829281830847752, -0.7059399201174255], [-0.1796790464352607, -0.3496912479335969], [-0.29517946718035576, 0.007640469800069753]]}, {"left_eyebrow": [[-1.695963881336698, -1.3350696451193353], [-1.293307087708677, -1.4818170260880448], [-1.0261220702659335, -1.6248058721289431], [-0.6159482067822916, -1.5006097007270982], [-0.20577434329864946, -1.376413529325253]], "bottom_lip": [[0.8026646488432618, 0.7648251451445056], [0.5317210964727076, 0.7723422150001271], [0.2607775441021534, 0.7798592848557485], [0.12530576791687628, 0.7836178197835593], [-0.14563778445367798, 0.7911348896391807], [-0.4165813368242322, 0.7986519594948022], [-0.691283424122597, 0.6706972531651464], [-0.5558116479373201, 0.6669387182373356], [-0.14939631938148867, 0.6556631134539035], [0.12154723298906556, 0.6481460435982821], [0.3924907853596198, 0.6406289737426607], [0.6671928726579847, 0.7685836800723164]], "right_eye": [[0.4828601424111683, -0.9887908754084754], [0.7538036947817225, -0.9963079452640969], [1.0247472471522767, -1.0038250151197183], [1.1602190233375538, -1.007583550047529], [1.0285057820800876, -0.8683532389344413], [0.7575622297095332, -0.8608361690788199]], "top_lip": [[-0.691283424122597, 0.6706972531651464], [-0.42033987175204296, 0.663180183309525], [-0.01768307812402229, 0.5164328023408158], [0.12154723298906556, 0.6481460435982821], [0.3887322504318091, 0.5051571975573836], [0.527962561544897, 0.63687043881485], [0.8026646488432618, 0.7648251451445056], [0.6671928726579847, 0.7685836800723164], [0.3924907853596198, 0.6406289737426607], [0.12530576791687628, 0.7836178197835593], [-0.14939631938148867, 0.6556631134539035], [-0.5558116479373201, 0.6669387182373356]], "transform": {"angle": 0.02773692885637404, "scale": 7.378772052731596, "center": [163.23611111111111, 90.19444444444444]}, "chin": [[-2.5012774685927393, -1.041574883181917], [-2.350771552696219, -0.5034463133686191], [-2.335737412984976, 0.0384407913724894], [-2.1852314970884565, 0.5765693611857873], [-2.0347255811919363, 1.1146979309990848], [-1.6207931827804836, 1.374365878586207], [-1.0713890081837534, 1.6302752912455185], [-0.5257433685148344, 1.7507129277195526], [0.01990227115408489, 1.8711505641935868], [0.42255906478210553, 1.7244031832248774], [0.8252158584101261, 1.5776558022561684], [1.224114117110336, 1.295436645102182], [1.4837820646974582, 0.8815042466907291], [1.6079782360993031, 0.47133038320708714], [1.732174407501148, 0.061156519723445], [1.7171402677899053, -0.48073058501766347], [1.705864663006473, -0.8871459135734948]], "right_eyebrow": [[0.33611276144245905, -1.391447669036496], [0.7387695550704797, -1.5381950500052055], [1.009713107441034, -1.5457121198608268], [1.419886970924676, -1.4215159484589817], [1.559117282037764, -1.2898027072015155]], "nose_tip": [[-0.2999022352780087, 0.11753454364060575], [-0.028958682907454444, 0.11001747378498433], [0.24574340439091052, 0.23797218011464003], [0.37745664564837694, 0.09874186900155217], [0.5129284218336541, 0.09498333407374146]], "left_eye": [[-1.2782729479974342, -0.9399299213469361], [-1.0110879305546907, -1.0829187673878347], [-0.7401443781841364, -1.0904358372434562], [-0.46544229088577155, -0.9624811309138004], [-0.7363858432563257, -0.954964061058179], [-1.00732939562688, -0.9474469912025576]], "nose_bridge": [[0.07268627892752623, -1.1129870468103205], [0.21567512496842478, -0.845802029367577], [0.22695072975185696, -0.4393867008117456], [0.23446779960747838, -0.16844314844119132]]}, {"left_eyebrow": [[-1.4120926389470776, -1.305110305553343], [-1.3092780088810692, -1.5579185678405774], [-1.0659055470248784, -1.5767901687026644], [-0.6914110538095488, -1.4834113390676997], [-0.4386027915223144, -1.3805967090016913]], "bottom_lip": [[0.816981894158284, 0.6031470128965386], [0.47079480223608483, 0.87482687604586], [0.11517190988284223, 1.0248205082670858], [-0.1282005519733485, 1.0436921091291729], [-0.38100881426058286, 0.9408774790631645], [-0.5121308456197218, 0.8286270485661126], [-0.7743749083379996, 0.6041261875720089], [-0.6432528769788606, 0.7163766180690608], [-0.39988041512266986, 0.6975050172069738], [-0.14707215283543557, 0.8003196472729821], [0.09630030902075518, 0.781448046410895], [0.6952956632301887, 0.6125828133275821]], "right_eye": [[0.4509440266985273, -0.9599023883066145], [0.6848806881236746, -1.1004602200967968], [0.9188173495488217, -1.2410180518869793], [1.1810614122670997, -1.0165171908928756], [0.9471247508419522, -0.8759593591026932], [0.7037522889857617, -0.8570877582406061]], "top_lip": [[-0.7743749083379996, 0.6041261875720089], [-0.5310024464818088, 0.5852545867099218], [-0.29706578505666154, 0.4446967549197394], [-0.16594375369752262, 0.5569471854167913], [0.07742870815866813, 0.5380755845547043], [0.4424874009429543, 0.5097681832615737], [0.816981894158284, 0.6031470128965386], [0.6952956632301887, 0.6125828133275821], [0.08686450858971166, 0.6597618154827998], [-0.1565079532664791, 0.6786334163448868], [-0.2781941841945745, 0.6880692167759304], [-0.6432528769788606, 0.7163766180690608]], "transform": {"angle": 0.07738719925750356, "scale": 8.193261449448098, "center": [338.7083333333333, 170.55555555555554]}, "chin": [[-1.5054714685820423, -0.9306158123380134], [-1.5894144977859634, -0.4344350881945884], [-1.5611070964928329, -0.06937639541030223], [-1.5233638947686587, 0.41736852830207927], [-1.3639344621163894, 0.8946776515834173], [-1.092254598967068, 1.2408647435056166], [-0.8205747358177468, 1.5870518354278158], [-0.5488948726684253, 1.9332389273500148], [-0.05271414852500031, 2.017181956553936], [0.4340307751873812, 1.979438754829762], [0.9113398984687193, 1.8200093221774925], [1.500899452247109, 1.529457858166084], [1.8376507437382645, 1.1360917640886672], [2.1649662347983765, 0.6210394390831551], [2.2394734635712545, 0.003172484011634641], [2.323416492775176, -0.49300824013179034], [2.3979237215480538, -1.110875195203311]], "right_eyebrow": [[0.16982836311816252, -1.427775711156909], [0.5160154550403616, -1.6994555743062303], [0.8810741478246475, -1.7277629755993609], [1.2461328406089338, -1.7560703768924915], [1.630063134255307, -1.5410053163294313]], "nose_tip": [[-0.4470594172778875, 0.08907386256649683], [-0.3159373859187486, 0.20132429306354868], [-0.19425115499065318, 0.19188849263250515], [0.04912130686553756, 0.1730168917704181], [0.17080753779363295, 0.16358109133937457]], "left_eye": [[-1.1404127757977562, -0.958923213631144], [-0.906476114372609, -1.0994810454213264], [-0.7847898834445135, -1.10891684585237], [-0.5225458207262357, -0.8844159848582663], [-0.7659182825824264, -0.8655443839961793], [-1.0092907444386172, -0.8466727831340922]], "nose_bridge": [[-0.16692292837299308, -1.034409617079492], [-0.14805132751090602, -0.7910371552233014], [-0.24143015714587082, -0.4165426620079718], [-0.22255855628378376, -0.173170200151781]]}, {"left_eyebrow": [[-1.467082372450008, -1.2452843310861488], [-1.3409717499609948, -1.4734446884330716], [-0.9867007701250587, -1.575494423290981], [-0.758540412778136, -1.449383800801968], [-0.41389378799464155, -1.318461000786734]], "bottom_lip": [[0.6691618684253232, 0.7099273208971927], [0.3148908885893873, 0.8119770557551023], [0.08191835371624384, 0.8023527007026607], [-0.15586635868312032, 0.9092146130867911], [-0.272352626119692, 0.9044024355605703], [-0.5053251609928355, 0.8947780805081289], [-0.7334855183397582, 0.7686674580191156], [-0.6169992509031865, 0.7734796355453364], [-0.2675404485934713, 0.7879161681239986], [-0.1510541811568996, 0.7927283456502193], [0.08673053124246458, 0.685866433266089], [0.5526756009887515, 0.7051151433709719]], "right_eye": [[0.5083719964454907, -1.0469910457038247], [0.746156708844855, -1.1538529580879548], [0.9791292437179985, -1.1442286030355135], [1.207289601064921, -1.0181179805465004], [0.969504888665557, -0.91125606816237], [0.7365323537924134, -0.9208804232148114]], "top_lip": [[-0.7334855183397582, 0.7686674580191156], [-0.495700805940394, 0.6618055456349854], [-0.25791609354102984, 0.5549436332508552], [-0.14142982610445812, 0.5597558107770759], [0.09154270876868531, 0.5693801658295173], [0.32451524364182877, 0.5790045208819589], [0.6691618684253232, 0.7099273208971927], [0.5526756009887515, 0.7051151433709719], [0.08673053124246458, 0.685866433266089], [-0.14624200363067885, 0.6762420782136476], [-0.2627282710672506, 0.6714299006874268], [-0.6169992509031865, 0.7734796355453364]], "transform": {"angle": -0.04128763785847867, "scale": 8.577386918987896, "center": [568.0138888888889, 228.15277777777777]}, "chin": [[-1.5980051724652418, -0.9006377063026543], [-1.6172538825701248, -0.4346926365563674], [-1.520016325238436, 0.036064610716140186], [-1.4227787679067474, 0.5068218579886479], [-1.3207290330488377, 0.8610928378245838], [-1.107005208280577, 1.336662262623312], [-0.8884692059860958, 1.6957454199854687], [-0.5486347587288221, 1.9431544874372744], [-0.08268968898253518, 1.9624031975421572], [0.3880675582899724, 1.8651656402104686], [0.9801232505252726, 1.6562539929684288], [1.455692675324001, 1.442530168200168], [1.93607427764895, 1.1123200759953362], [2.1882955226269765, 0.6559993613014905], [2.328842677694652, 0.07838020164485261], [2.352903565325755, -0.504051135538006], [2.4934507203934304, -1.081670295194644]], "right_eyebrow": [[0.17334972671443777, -1.410886380592202], [0.5324328840765944, -1.6294223828866832], [0.8867038639125303, -1.7314721177445929], [1.3478367561325963, -1.5957371402031382], [1.6876712033898702, -1.3483280727513327]], "nose_tip": [[-0.4668277407830696, -0.037112058984444946], [-0.35515365087271866, 0.08418638597834752], [-0.23866738343614693, 0.08899856350456825], [-0.0008826710367827465, -0.017863348879562018], [0.2320898638363607, -0.008238993827120556]], "left_eye": [[-1.127247925192734, -0.9978752636343432], [-1.0059494802299418, -1.1095493535446943], [-0.7729769453567982, -1.0999249984922528], [-0.5448165880098755, -0.9738143760032395], [-0.7826013004092397, -0.8669524636191092], [-1.015573835282383, -0.8765768186715507]], "nose_bridge": [[-0.19054560817393962, -1.075864110861149], [-0.2001699632263811, -0.8428915759880056], [-0.20979431827882253, -0.6099190411148621], [-0.219418673331264, -0.37694650624171866]]}, {"left_eyebrow": [[-1.495838286723166, -1.5126393389948927], [-1.262726566984722, -1.7839949076064416], [-0.8843761007222272, -1.8126777942612706], [-0.6225814943289543, -1.705682896610325], [-0.22510910362990671, -1.4821321390901576]], "bottom_lip": [[0.7036891488240572, 0.730604885175154], [0.46101646686733694, 0.8758436316992049], [0.20878282269234033, 0.8949655561357576], [0.082666000604842, 0.904526518354034], [-0.16956764357015458, 0.9236484427905866], [-0.4313622499634276, 0.816653545139641], [-0.8192736784441988, 0.7192196097069717], [-0.6931568563567004, 0.7096586474886954], [-0.18868956800670728, 0.6714147986155901], [0.06354407616828933, 0.6522928741790375], [0.31577772034328594, 0.6331709497424848], [0.7036891488240572, 0.730604885175154]], "right_eye": [[0.45327981789896654, -0.8993528397440477], [0.822069321943185, -1.054152548486375], [1.0743029661181815, -1.0732744729229275], [1.2099807504239564, -0.9567186130537058], [0.967308068467236, -0.8114798665296548], [0.7150744242922394, -0.7923579420931021]], "top_lip": [[-0.8192736784441988, 0.7192196097069717], [-0.44092321218170394, 0.6905367230521428], [-0.07213370813748532, 0.5357370143098154], [0.06354407616828933, 0.6522928741790375], [0.3062167581250096, 0.5070541276549864], [0.5680113645182826, 0.6140490253059321], [0.7036891488240572, 0.730604885175154], [0.7036891488240572, 0.730604885175154], [0.3253386825615623, 0.759287771829983], [0.07310503838656567, 0.7784096962665357], [-0.17912860578843093, 0.7975316207030883], [-0.6931568563567004, 0.7096586474886954]], "transform": {"angle": 0.07566563026752006, "scale": 7.906468821692466, "center": [452.8888888888889, 107.81944444444444]}, "chin": [[-2.204734408156774, -0.824689455247743], [-2.1664905592836687, -0.3202221668977496], [-2.1282467104105636, 0.18424512145224353], [-2.090002861537458, 0.6887124098022367], [-1.9352031527951308, 1.0575019138464552], [-1.528169799877807, 1.4071694934541212], [-1.004580587091261, 1.6211592887560125], [-0.49055233652299146, 1.7090322619704053], [0.02347591404527806, 1.7969052351847983], [0.5279432023952713, 1.758661386311693], [1.013288566308712, 1.4681838932635911], [1.3820780703529305, 1.313384184521264], [1.4795120057855997, 0.9254727560404925], [1.576945941218269, 0.5375613275597214], [1.664818914432662, 0.023533076991451768], [1.6361360277778327, -0.3548173892710431], [1.724009000992226, -0.8688456398393127]], "right_eyebrow": [[0.5315918288950832, -1.5394979123998156], [0.7742645108518034, -1.6847366589238666], [1.0264981550268, -1.7038585833604194], [1.2787317992017968, -1.722980507796972], [1.4239705457258476, -1.4803078258402518]], "nose_tip": [[-0.3530502389673109, 0.17650847248387314], [-0.10081659479231432, 0.15738654804732047], [0.16097801160095865, 0.2643814456982661], [0.2775338714701806, 0.12870366139249145], [0.4036506935576789, 0.11914269917421512]], "left_eye": [[-1.205360793675064, -1.0272939750814518], [-0.9531271495000676, -1.0464158995180044], [-0.7008935053250709, -1.0655378239545572], [-0.43909889893179793, -0.9585429263036116], [-0.6913325431067946, -0.9394210018670589], [-0.9435661872817913, -0.9202990774305063]], "nose_bridge": [[0.055807427199918935, -1.1229035972642152], [0.08449031385474795, -0.7445531310017204], [0.10361223829130062, -0.4923194868267237], [0.2584119470336279, -0.12352998278250515]]}, {"left_eyebrow": [[-1.5315844979912365, -1.2472068461352324], [-1.2876069672868535, -1.4974965398239057], [-1.042051395836398, -1.6242194274143151], [-0.6713509775416058, -1.6289535496525331], [-0.29907251850074096, -1.510120865792487]], "bottom_lip": [[0.8398554290668707, 0.5763124711633484], [0.47231109226422385, 0.8281802055980944], [0.22675552081376837, 0.9549030931885037], [-0.02037809138275975, 0.958059174680649], [-0.2675117035792879, 0.9612152561727944], [-0.5162233565218887, 0.8408045315666756], [-0.7649350094644894, 0.7203938069605569], [-0.6413682033662254, 0.7188157662144843], [-0.1471009789731691, 0.7125036032301937], [-0.023534172874905054, 0.710925562484121], [0.22359943932162307, 0.7077694809919757], [0.7178666637146793, 0.7014573180076851]], "right_eye": [[0.5722072871713981, -1.0268999266219392], [0.6941960525235895, -1.152044773466276], [0.9413296647201176, -1.1552008549584214], [1.1900413176627185, -1.0347901303523024], [0.9444857462122629, -0.9080672427618932], [0.6973521340157348, -0.9049111612697479]], "top_lip": [[-0.7649350094644894, 0.7203938069605569], [-0.519379438014034, 0.5936709193701475], [-0.1502570604653144, 0.4653699910336654], [0.09845459247728637, 0.5857807156397843], [0.22044335782947777, 0.46063586879544743], [0.46915501077207855, 0.5810465934015663], [0.8398554290668707, 0.5763124711633484], [0.7178666637146793, 0.7014573180076851], [0.22359943932162307, 0.7077694809919757], [-0.023534172874905054, 0.710925562484121], [-0.1471009789731691, 0.7125036032301937], [-0.6413682033662254, 0.7188157662144843]], "transform": {"angle": 0.012770055451461797, "scale": 8.092128424479656, "center": [317.2638888888889, 78.25]}, "chin": [[-1.895972753301738, -0.7482054995039581], [-1.8896605903174475, -0.2539382751109018], [-1.8849264680792295, 0.11676214318389037], [-1.7550474989966747, 0.609451326830874], [-1.6267465706601927, 0.9785737043795936], [-1.3748788362254465, 1.3461180411822404], [-0.9994442956924364, 1.7120843372388146], [-0.6255877959054988, 1.9544838271971245], [-0.12974253076636993, 2.0717384703110984], [0.48809149972495036, 2.063848266580735], [0.9792026426258613, 1.8104024913999162], [1.3451689386824357, 1.434967950866906], [1.7111352347390099, 1.0595334103338958], [1.8283898778529832, 0.5636881451947671], [1.9456445209669568, 0.06784288005563814], [1.9409103987287388, -0.302857538239154], [1.9345982357444482, -0.7971247626322103]], "right_eyebrow": [[0.3187615119905794, -1.5180110695228504], [0.5658951241871075, -1.5211671510149956], [0.935017501735827, -1.6494680793514775], [1.307295960776692, -1.5306353954914316], [1.5575856544653652, -1.2866578647870486]], "nose_tip": [[-0.40370283564613313, -0.025741151867245515], [-0.15656922344960503, -0.028897233359390817], [-0.03142437660526832, 0.09309153199280058], [0.21413119484518714, -0.03363135559760878], [0.33769800094345126, -0.03520939634368143]], "left_eye": [[-1.1577279982042987, -1.0048073561769222], [-0.9121724267538432, -1.1315302437673316], [-0.6650388145573152, -1.134686325259477], [-0.5398939677129784, -1.0126975599072854], [-0.7870275799095066, -1.00954147841514], [-1.0341611921060347, -1.0063853969229948]], "nose_bridge": [[-0.04720478406599484, -1.1425765289898402], [-0.04404870257384954, -0.895442916793312], [-0.04089262108170423, -0.6483093045967838], [-0.03773653958955893, -0.4011756924002557]]}, {"left_eyebrow": [[-1.4321182903859127, -1.768137204639537], [-1.1747344061529708, -1.765839941489729], [-1.0460424640364998, -1.764691309914825], [-0.789807211378462, -1.633702104648546], [-0.5335719587204242, -1.5027128993822672]], "bottom_lip": [[0.7326720940960129, 0.8252283744632496], [0.3442990045967921, 1.0791663639714795], [0.08691512036385024, 1.0768691008216715], [-0.1704687638690916, 1.0745718376718634], [-0.29916070598556255, 1.0734232060969595], [-0.4267040165271294, 0.9435826324055844], [-0.5530986954937923, 0.6850501165977386], [-0.4244067533773214, 0.6861987481726426], [-0.2968634428357545, 0.8160393218640175], [-0.1681715007192836, 0.8171879534389216], [0.08921238351365826, 0.8194852165887296], [0.6039801519795419, 0.8240797428883456]], "right_eye": [[0.3626771097952562, -0.9799047098920554], [0.6223582571780061, -1.2349913309751892], [0.8797421414109479, -1.232694067825381], [1.1359773940689857, -1.1017048625591022], [1.0049881888027068, -0.8454696099010643], [0.6189123624532941, -0.8489155046257764]], "top_lip": [[-0.5530986954937923, 0.6850501165977386], [-0.4244067533773214, 0.6861987481726426], [-0.2945661796859465, 0.5586554376310756], [-0.16702286914437958, 0.6884960113224506], [-0.03718229545300465, 0.5609527007808837], [0.3477448993215041, 0.6930905376220666], [0.7326720940960129, 0.8252283744632496], [0.6039801519795419, 0.8240797428883456], [-0.03947955860281267, 0.8183365850138256], [-0.1681715007192836, 0.8171879534389216], [-0.2968634428357545, 0.8160393218640175], [-0.4244067533773214, 0.6861987481726426]], "transform": {"angle": -0.008925198082928344, "scale": 7.770184785765283, "center": [195.25, 173.63888888888889]}, "chin": [[-1.4390100798353367, -0.9959855519407115], [-1.4436046061349528, -0.48121778347482774], [-1.4470505008596648, -0.09514195712541498], [-1.194261142926339, 0.4219230744902768], [-1.06901509553458, 0.8091475324145935], [-0.8139284744514461, 1.0688286797973434], [-0.5599904849432163, 1.457201769296564], [-0.30490386386008256, 1.716882916679314], [-0.04866861120204473, 1.847872121945593], [0.46609915726383894, 1.852466648245209], [0.8533236151881557, 1.72722060085345], [1.3715372783787514, 1.3457393008036531], [1.7599103678779724, 1.0918013112954237], [2.1505807205270013, 0.5804794375542518], [2.283867188943088, 0.06686030066327214], [2.288461715242704, -0.44790746780261154], [2.4228968152336954, -1.090218546810062]], "right_eyebrow": [[0.1098877518619304, -1.496969741507747], [0.49711220978624715, -1.622215788899506], [0.8843366677105639, -1.7474618362912648], [1.1417205519435059, -1.745164573141457], [1.5266477467180146, -1.613026736300274]], "nose_tip": [[-0.5485041691941763, 0.17028234813185492], [-0.4209608586526094, 0.3001229218232298], [-0.2922689165361385, 0.30127155339813383], [-0.03488503230319664, 0.3035688165479418], [0.09380690981327429, 0.30471744812284585]], "left_eye": [[-1.180477564027491, -1.1223802309073743], [-1.050636990336116, -1.2499235414489411], [-0.793253106103174, -1.2476262782991332], [-0.5381664850200403, -0.9879451309163834], [-0.7955503692529821, -0.9902423940661914], [-1.0529342534859238, -0.9925396572159995]], "nose_bridge": [[-0.2796339692121944, -1.1143398098830462], [-0.28307986393690643, -0.7282639835336336], [-0.28652575866161845, -0.3421881571842208], [-0.41866359550280136, 0.04273903759028799]]}], "embedding": [[-0.09555099904537201, 0.16100333631038666, 0.114013671875, -0.10550063848495483, -0.17316247522830963, 0.0003031361848115921, -0.02101157419383526, -0.1523474156856537, 0.2055245339870453, -0.08199616521596909, 0.15374496579170227, -0.14285975694656372, -0.21737152338027954, -0.02694089710712433, -0.07539112865924835, 0.24140071868896484, -0.17529304325580597, -0.21227288246154785, -0.11455661058425903, -0.04663703963160515, -0.02666894719004631, 0.001536218449473381, 0.03450958803296089, 0.08960705995559692, -0.11777001619338989, -0.39649659395217896, 0.03918265178799629, 0.009057432413101196, -0.0031562689691781998, -0.11602485179901123, 0.018092213198542595, 0.24065245687961578, -0.18606367707252502, -0.005706915631890297, -0.012779219076037407, 0.16050094366073608, -0.06945296376943588, -0.1276630461215973, 0.22517135739326477, -0.003785761073231697, -0.2972310185432434, -0.020925864577293396, 0.024193856865167618, 0.3356132507324219, 0.25565844774246216, -0.07252389192581177, 0.0013285166351124644, -0.044685542583465576, 0.15590234100818634, -0.34999752044677734, 0.08624151349067688, 0.1861003190279007, 0.0319412499666214, 0.030668139457702637, 0.0346926748752594, -0.1464601308107376, -0.011154953390359879, 0.10815595090389252, -0.22219833731651306, -0.02331114374101162, 0.13032041490077972, -0.14427004754543304, -0.04789900407195091, -0.19844754040241241, 0.13685472309589386, 0.1699795126914978, -0.08447131514549255, -0.144407719373703, 0.17018888890743256, -0.103545181453228, -0.02784065529704094, 0.02097257226705551, -0.12993858754634857, -0.17165662348270416, -0.3161972463130951, -0.012428290210664272, 0.31125408411026, 0.1548791378736496, -0.16219519078731537, -0.014534791931509972, -0.028455864638090134, -0.008602878078818321, -0.02085123397409916, 0.11690464615821838, -0.012760691344738007, -0.02326570451259613, -0.0806707963347435, 0.07665363699197769, 0.15195253491401672, -0.0440463125705719, -0.06744293868541718, 0.28329700231552124, 0.022604838013648987, -0.09674552828073502, -0.053441137075424194, 0.058107901364564896, -0.10260812193155289, 0.10332262516021729, -0.20232537388801575, 0.014880817383527756, 0.032586369663476944, 0.0059830378741025925, 0.003903573378920555, 0.11562206596136093, -0.21585631370544434, 0.2508561313152313, 0.0027535390108823776, 0.06529760360717773, 0.018312672153115273, -0.09627360850572586, -0.07973918318748474, -0.025065289810299873, 0.19842973351478577, -0.20414122939109802, 0.12313675135374069, 0.1656058132648468, 0.09502585232257843, 0.1603691279888153, 0.07435094565153122, 0.03584934026002884, 0.08582143485546112, -0.05960646644234657, -0.17060241103172302, -0.03811211884021759, 0.0926462784409523, -0.026989353820681572, -0.021829772740602493, 0.15693193674087524], [-0.19912414252758026, 0.11310044676065445, 0.10596735775470734, -0.09305858612060547, -0.19174526631832123, -0.037992872297763824, -0.03418964520096779, -0.14689524471759796, 0.18345510959625244, -0.2107744961977005, 0.09103585034608841, -0.038803961127996445, -0.13419920206069946, 0.13754549622535706, -0.08009887486696243, 0.12083140015602112, -0.14264066517353058, -0.13691620528697968, -0.03379198908805847, -0.08073707669973373, -0.023350872099399567, -0.013377414084970951, 0.02212318778038025, 0.09961340576410294, -0.11194176971912384, -0.34542179107666016, -0.11990387737751007, -0.06612789630889893, -0.040249522775411606, -0.000568790826946497, 0.04518583416938782, 0.03417780250310898, -0.16206079721450806, -0.015255659818649292, -0.042158015072345734, 0.055601101368665695, -0.11929797381162643, -0.050411637872457504, 0.2021344006061554, -0.019239526242017746, -0.2718188762664795, 0.009329663589596748, 0.05227317288517952, 0.299659788608551, 0.2596239447593689, 0.022927507758140564, 0.025882553309202194, -0.08490794897079468, 0.20189611613750458, -0.27401506900787354, 0.061983928084373474, 0.1066640317440033, 0.016324196010828018, 0.005902301520109177, 0.10248390585184097, -0.08381611108779907, 0.04600672796368599, 0.13504137098789215, -0.166660875082016, 0.02652529813349247, 0.136223703622818, -0.08560866117477417, 0.025548160076141357, -0.05189378932118416, 0.2504345774650574, 0.1853356957435608, -0.058741457760334015, -0.14730456471443176, 0.2494833916425705, -0.20922186970710754, 0.0031270072795450687, 0.1085415631532669, -0.08667396754026413, -0.20909494161605835, -0.19186951220035553, 0.0469689704477787, 0.37100279331207275, 0.20633013546466827, -0.008660205639898777, 0.01866273209452629, -0.07590781152248383, 0.035775262862443924, 0.08886750787496567, 0.10508541762828827, -0.06600047647953033, -0.06192578375339508, -0.04652952775359154, 0.01140403002500534, 0.24022746086120605, 0.0030888470355421305, -0.06105293333530426, 0.23491966724395752, 0.043827518820762634, -0.09871334582567215, 0.04527592658996582, 0.05719098448753357, -0.19608630239963531, 0.02134275808930397, -0.20863457024097443, -0.009449198842048645, 0.007893296889960766, 0.0013002674095332623, 0.005520444363355637, 0.12713629007339478, -0.22509697079658508, 0.2092984914779663, -0.1340453028678894, -0.010865282267332077, -0.06895396113395691, -0.05850188434123993, -0.08393965661525726, 0.014516854658722878, 0.14761151373386383, -0.1992620974779129, 0.11173040419816971, 0.08736229687929153, -0.004731782246381044, 0.17608331143856049, 0.0701696053147316, -0.004268733784556389, 0.013340242207050323, -0.04153905063867569, -0.17485269904136658, -0.04100392758846283, 0.11401185393333435, -0.06532545387744904, 0.07744408398866653, 0.04035797715187073], [-0.11083175241947174, -0.008426103740930557, -0.03031899780035019, -0.06919342279434204, -0.10449941456317902, -0.10146000981330872, 0.004085135646164417, -0.06473754346370697, 0.1586197167634964, -0.10264547169208527, 0.15072154998779297, -0.017335155978798866, -0.23801189661026, -0.09513352811336517, -0.026668913662433624, 0.06953546404838562, -0.19157296419143677, -0.13276009261608124, -0.10630708187818527, -0.17597579956054688, 0.052454933524131775, 0.02077970840036869, -0.033954326063394547, -0.030674347653985023, -0.13216018676757812, -0.31584432721138, -0.07011326402425766, -0.14082202315330505, 0.1337193250656128, -0.09803490340709686, 0.09192274510860443, 0.1353990137577057, -0.11999844014644623, -0.10131365060806274, 0.002048984169960022, 0.049757957458496094, 0.03187915310263634, -0.020126823335886, 0.27284812927246094, 0.00872001051902771, -0.15878164768218994, -0.0029004625976085663, 0.07960819453001022, 0.3008769452571869, 0.20626477897167206, -0.020551851019263268, 0.057172589004039764, -0.023166941478848457, 0.2137724906206131, -0.2076154351234436, 0.08358553797006607, 0.14057864248752594, 0.2059171199798584, 0.03267420083284378, 0.14733639359474182, -0.1418784260749817, -0.00035900436341762543, 0.13213282823562622, -0.23983822762966156, 0.1000661849975586, 0.09251684695482254, -0.10560590028762817, -0.10406635701656342, -0.021798595786094666, 0.09445758163928986, 0.01273965835571289, -0.05924282595515251, -0.13301487267017365, 0.2785544991493225, -0.13701769709587097, -0.05158807337284088, 0.05363340303301811, -0.10270749777555466, -0.09226787090301514, -0.2483098804950714, 0.023037932813167572, 0.33675000071525574, 0.09501002728939056, -0.118843674659729, 0.09582271426916122, -0.07013839483261108, -0.0923575609922409, 0.03174939006567001, -0.001870499923825264, -0.06963229179382324, -0.06372886151075363, -0.08119206130504608, 0.047561343759298325, 0.1301455795764923, 0.01460215449333191, -0.025986695662140846, 0.11997301876544952, 0.03273420035839081, -0.045829884707927704, 0.05430135130882263, 0.0670628771185875, -0.18666532635688782, -0.021125217899680138, -0.10567526519298553, -0.05116601660847664, 0.14443713426589966, -0.16226083040237427, 0.015594061464071274, 0.06063693016767502, -0.17102964222431183, 0.21750245988368988, -0.02456943318247795, 0.005646850913763046, -0.04342526197433472, -0.0482649952173233, -0.028390277177095413, 0.07781729102134705, 0.17324042320251465, -0.1903623342514038, 0.198843315243721, 0.13710230588912964, -0.018996501341462135, 0.16643498837947845, 0.0357469841837883, 0.0021855831146240234, -0.0048753563314676285, -0.04370753839612007, -0.20061466097831726, -0.1680174469947815, -0.039891451597213745, 0.010210918262600899, 0.02920261025428772, 0.08030089735984802], [-0.10105118900537491, 0.0685158520936966, 0.12290483713150024, -0.08109816908836365, -0.13829240202903748, -0.030604951083660126, 0.031518179923295975, -0.08302783966064453, 0.2524496018886566, -0.12668538093566895, 0.13867506384849548, -0.055843643844127655, -0.28421467542648315, 0.060379885137081146, -0.02854311466217041, 0.16928496956825256, -0.21350954473018646, -0.20485936105251312, -0.022078394889831543, 0.005135660991072655, 0.09498246759176254, 0.004343104548752308, 0.05010414496064186, 0.05403031408786774, -0.1755346953868866, -0.3620776832103729, -0.1649441421031952, -0.03929172828793526, -0.048520125448703766, -0.021776355803012848, 0.04312663525342941, 0.06825757771730423, -0.15866711735725403, -0.038399145007133484, 0.09873704612255096, 0.04452918469905853, -0.0637952908873558, -0.263394832611084, 0.18404266238212585, 0.015429641120135784, -0.2529401481151581, -0.0930786281824112, 0.055771976709365845, 0.2665455639362335, 0.19254013895988464, -0.007163079455494881, -0.003668401390314102, -0.11008425056934357, 0.11281418055295944, -0.34257927536964417, 0.05003039911389351, 0.18990632891654968, 0.03471185639500618, 0.05767303332686424, 0.09107767045497894, -0.13738739490509033, 0.0819857120513916, 0.1584147959947586, -0.25993773341178894, 0.03294035419821739, 0.09060312807559967, -0.13158591091632843, 0.021561671048402786, -0.1215762123465538, 0.10352414846420288, 0.1535012423992157, -0.13737428188323975, -0.13130918145179749, 0.16814367473125458, -0.1477411687374115, 0.010630546137690544, 0.04906647652387619, -0.1745961755514145, -0.30140426754951477, -0.2024002969264984, -0.0386543832719326, 0.40463557839393616, 0.18347272276878357, -0.12593068182468414, -0.04380251467227936, -0.0581994466483593, 0.06023385375738144, 0.02524534985423088, 0.14269593358039856, -0.009530367329716682, -0.0844326913356781, -0.11579626053571701, 0.04288889095187187, 0.2257557362318039, -0.10368996858596802, -0.06346160918474197, 0.27130115032196045, -0.03402264416217804, -0.12788152694702148, 0.023566851392388344, 0.07976812869310379, -0.10896559804677963, 0.05298768728971481, -0.17038795351982117, 0.011268280446529388, 0.01504220999777317, -0.07066524773836136, -0.052752189338207245, 0.11404122412204742, -0.1920924335718155, 0.0643681064248085, -0.011935201473534107, -0.11256472766399384, -0.045976195484399796, -0.16036762297153473, -0.17205344140529633, -0.03194429725408554, 0.15238584578037262, -0.24374039471149445, 0.1519966423511505, 0.2072836458683014, -0.007266482338309288, 0.21633553504943848, -0.006069302558898926, 0.07916797697544098, 0.03207412362098694, -0.1211070716381073, -0.09015271067619324, -0.0819355845451355, 0.054380252957344055, 0.06905446201562881, 0.003413834609091282, -0.04826675355434418], [-0.1317601203918457, 0.08566931635141373, 0.03223549574613571, -0.0076329149305820465, -0.07194279879331589, -0.08208703249692917, -0.012437853962182999, -0.12107841670513153, 0.08703897148370743, -0.06259439140558243, 0.22010868787765503, -0.06373400241136551, -0.25012969970703125, -0.04278326407074928, -0.061506275087594986, 0.13810782134532928, -0.1460530310869217, -0.038189709186553955, -0.24118754267692566, -0.13167399168014526, 0.026474829763174057, 0.03513995558023453, 0.08379387855529785, -0.020026620477437973, -0.14405927062034607, -0.2491932213306427, -0.03180642053484917, -0.07230058312416077, 0.08246190845966339, -0.05906286463141441, 0.010455312207341194, 0.10049304366111755, -0.26480743288993835, -0.12121391296386719, -0.003548629581928253, -0.0064993673004209995, -0.06051916256546974, -0.025818366557359695, 0.2420918345451355, 0.042692024260759354, -0.17575518786907196, 0.026179317384958267, -0.020802631974220276, 0.2213136851787567, 0.24607034027576447, -0.030506888404488564, -0.027998482808470726, -0.062339186668395996, 0.12024790048599243, -0.3132965862751007, 0.015613519586622715, 0.1779041588306427, 0.07255423814058304, 0.10199952125549316, 0.018924513831734657, -0.12230619043111801, 0.05873775854706764, 0.12183993309736252, -0.19798621535301208, 0.0512763187289238, 0.11464959383010864, -0.19450688362121582, -0.034708403050899506, -0.04004047438502312, 0.04615582153201103, 0.09522724151611328, -0.0514916256070137, -0.09658438712358475, 0.15566754341125488, -0.09891489893198013, 0.0712931677699089, 0.07742604613304138, -0.08328402042388916, -0.19454732537269592, -0.3237733244895935, 0.03504788130521774, 0.3104519248008728, 0.18454128503799438, -0.13587234914302826, -0.031343840062618256, -0.11732566356658936, 0.023368900641798973, 0.06617419421672821, -0.06200949102640152, -0.09482520073652267, -0.06200771778821945, -0.06057383492588997, 0.073717400431633, 0.1419648975133896, -0.044904086738824844, -0.08640635013580322, 0.26504233479499817, -0.011502668261528015, -0.03649939224123955, 0.07301725447177887, 0.07583572715520859, -0.1336018592119217, -0.09187649190425873, -0.11173474788665771, 0.0496302992105484, 0.056338366121053696, -0.1821882575750351, 0.038979701697826385, 0.041744254529476166, -0.10069452226161957, 0.16352824866771698, -0.05109165236353874, 0.021570993587374687, -0.05722763016819954, -0.07622262090444565, -0.09383565187454224, 0.0440315380692482, 0.1574743539094925, -0.12336299568414688, 0.2978881597518921, 0.18156036734580994, -0.028640324249863625, 0.147153839468956, 0.1303107738494873, 0.03826127201318741, -0.0922948569059372, 0.011988095939159393, -0.06922439485788345, -0.15255823731422424, 0.06797333061695099, 0.03973044827580452, 0.09655510634183884, 0.026927094906568527], [-0.1953759491443634, 0.11616070568561554, 0.04952749237418175, -0.0625142753124237, -0.12232927978038788, -0.07125937193632126, -0.09838294982910156, -0.14440694451332092, 0.1507897675037384, -0.07727353274822235, 0.19383589923381805, -0.04409119486808777, -0.1804366260766983, -0.022723108530044556, -0.1360623985528946, 0.20516836643218994, -0.2316243052482605, -0.20586465299129486, -0.05514538288116455, -0.012581542134284973, 0.025786716490983963, -0.03176800534129143, 0.037194106727838516, 0.06949266791343689, -0.14290805160999298, -0.39243873953819275, -0.07709622383117676, -0.05923723429441452, 0.0018115940038114786, -0.012223459780216217, 0.0241513941437006, 0.07155432552099228, -0.2252202033996582, -0.04557530954480171, 0.040545571595430374, 0.08057137578725815, 0.0694110170006752, -0.13488827645778656, 0.1820911318063736, -0.06456223130226135, -0.2853987514972687, -0.06493481248617172, 0.1098601445555687, 0.26444289088249207, 0.17635099589824677, -0.06139986589550972, 0.06326072663068771, -0.12408971041440964, 0.15555179119110107, -0.18372872471809387, 0.052130624651908875, 0.13453523814678192, 0.02451041154563427, 0.017626237124204636, 0.03932303190231323, -0.141190305352211, 0.03293476998806, 0.12657292187213898, -0.14540521800518036, -0.04535806179046631, 0.07833290100097656, -0.005611127242445946, -0.02573331445455551, -0.13900743424892426, 0.1876329779624939, 0.17016184329986572, -0.09544135630130768, -0.23866397142410278, 0.1950165331363678, -0.12035998702049255, -0.002939896658062935, 0.03845291584730148, -0.14555370807647705, -0.1683969646692276, -0.3372572064399719, -0.03951326012611389, 0.34885478019714355, 0.09857738018035889, -0.15239453315734863, 0.07416006177663803, -0.0462246797978878, -0.005949161946773529, 0.03855734318494797, 0.1447109580039978, -0.04708985984325409, 0.1086229532957077, -0.11320115625858307, 0.03804444894194603, 0.2451222687959671, 0.009034529328346252, -0.0743163526058197, 0.16956205666065216, -0.022814467549324036, -0.07165074348449707, 0.08896931260824203, 0.13339684903621674, -0.16781997680664062, 0.023959200829267502, -0.2034907341003418, 0.008165013045072556, 0.05379018932580948, 0.04875408858060837, -0.02823106199502945, 0.13586261868476868, -0.0898415818810463, 0.08842305094003677, -0.03272230550646782, 0.037077344954013824, -0.055292367935180664, -0.03348226845264435, -0.06478527188301086, -0.08514159172773361, 0.11211563646793365, -0.12054508924484253, 0.17039181292057037, 0.0732864961028099, 0.0326225608587265, 0.15554893016815186, 0.11273061484098434, 0.057724714279174805, -0.020757699385285378, 0.0008560828864574432, -0.13159121572971344, -0.05334945023059845, 0.06255146116018295, -0.05255579948425293, 0.09134221076965332, 0.02642076462507248], [-0.032503001391887665, 0.02013520523905754, 0.04763973504304886, -0.06322728097438812, -0.017650991678237915, -0.05488434061408043, 0.0016862023621797562, -0.05150897055864334, 0.08872608095407486, 0.002252791542559862, 0.24601168930530548, -0.05109585076570511, -0.22707918286323547, -0.09594018757343292, -0.0467873178422451, 0.0967026948928833, -0.15864787995815277, -0.06826885044574738, -0.1388961523771286, -0.1583675891160965, 0.08352729678153992, 0.04565753787755966, 0.05242960527539253, 0.10219034552574158, -0.24864965677261353, -0.2054588347673416, -0.0847189873456955, -0.1685318648815155, 0.04462369531393051, -0.11370782554149628, 0.04437728226184845, 0.06409904360771179, -0.18228492140769958, -0.09471423923969269, 0.03192223608493805, 0.03588150069117546, -0.016538191586732864, -0.08955013751983643, 0.15442314743995667, 0.0360126867890358, -0.12391982227563858, 0.14790651202201843, 0.04856511577963829, 0.2782529890537262, 0.22512604296207428, 0.013139177113771439, 0.041232530027627945, -0.09898475557565689, 0.1366262137889862, -0.23987148702144623, 0.14252407848834991, 0.12032388150691986, 0.15276435017585754, 0.07245717942714691, 0.1353827714920044, -0.11572003364562988, -0.024237867444753647, 0.2301693707704544, -0.17063386738300323, 0.17080514132976532, 0.04369126260280609, 0.012267038226127625, 0.01332475058734417, -0.11451327800750732, -0.0034415237605571747, 0.033610112965106964, -0.12976208329200745, -0.10654206573963165, 0.1503874808549881, -0.1344010978937149, -0.058663297444581985, 0.15861806273460388, -0.11591240763664246, -0.21483877301216125, -0.27766504883766174, 0.13322597742080688, 0.3466844856739044, 0.19872823357582092, -0.1901906430721283, -0.016230175271630287, -0.05959086865186691, 0.03761933743953705, 0.04290449246764183, -0.0050288476049900055, -0.0485408790409565, -0.09060655534267426, -0.0524548701941967, 0.04901214316487312, 0.1467503011226654, -0.0026657916605472565, -0.053453028202056885, 0.2992626428604126, -0.013089245185256004, -0.040538642555475235, 0.018210802227258682, 0.05390964448451996, -0.1350427269935608, 0.0529986172914505, -0.10418957471847534, 0.02521906979382038, 0.04450581967830658, -0.10390078276395798, 0.013036264106631279, 0.031619079411029816, -0.13158413767814636, 0.10102246701717377, -0.019149772822856903, -0.0244196355342865, -0.013653401285409927, 0.05076272040605545, -0.16911707818508148, 0.012968271970748901, 0.188484787940979, -0.28907930850982666, 0.19613415002822876, 0.2133665233850479, 0.07349758595228195, 0.08077957481145859, 0.1158648133277893, 0.05145728215575218, 0.03461455553770065, -0.059410449117422104, -0.12422847002744675, -0.06694341450929642, 0.09565974771976471, -0.01687927544116974, 0.010533860884606838, 0.009955432265996933], [-0.05431688576936722, 0.020937873050570488, 0.0645132064819336, -0.13130271434783936, -0.12904559075832367, -0.0350111722946167, -0.020131180062890053, -0.05224763602018356, 0.2603417932987213, -0.14887435734272003, 0.017324047163128853, -0.05150360241532326, -0.19921600818634033, 0.12102243304252625, -0.07291790097951889, 0.15952539443969727, -0.20859619975090027, -0.2335115224123001, -0.08884205669164658, -0.07622936367988586, 0.03805357217788696, 0.07168565690517426, 0.0008366554975509644, 0.12817467749118805, -0.1650182604789734, -0.3655838668346405, -0.05594026297330856, -0.12413053214550018, -0.05779474601149559, -0.0335003025829792, 0.11775517463684082, 0.0726497545838356, -0.17575788497924805, 0.014440679922699928, 0.047864194959402084, 0.05293009430170059, -0.006775527261197567, -0.12122400104999542, 0.22987927496433258, 0.09697724878787994, -0.3049658536911011, -0.01878730207681656, 0.05519614741206169, 0.29048678278923035, 0.22376501560211182, -0.030088897794485092, -0.028523080050945282, -0.06777875125408173, 0.22052814066410065, -0.3743607997894287, 0.07851576805114746, 0.16058802604675293, 0.00830779504030943, 0.1363598108291626, 0.12656109035015106, -0.14452910423278809, 0.12296953052282333, 0.1490156501531601, -0.2103140503168106, 0.05239805951714516, 0.05781900882720947, -0.06621624529361725, 0.054526738822460175, -0.01397452037781477, 0.19892865419387817, 0.08005325496196747, -0.09550700336694717, -0.11777760833501816, 0.1501842588186264, -0.1705571562051773, -0.04473038762807846, 0.07376941293478012, -0.11198748648166656, -0.1894932985305786, -0.20819738507270813, 0.009680735878646374, 0.35790184140205383, 0.2264876365661621, -0.1669207364320755, 0.06395714730024338, -0.06829769909381866, 0.03353113308548927, 0.05175966024398804, 0.14601242542266846, -0.013269510120153427, 0.05090819299221039, -0.04620956629514694, 0.05283406376838684, 0.18472576141357422, 0.008136854507029057, -0.03229353949427605, 0.37278854846954346, 0.004187900573015213, -0.005341455340385437, 0.05071863532066345, 0.052726611495018005, -0.16534416377544403, 0.012244366109371185, -0.20720532536506653, -0.0687117651104927, 0.08978749811649323, 0.12249631434679031, 0.021418262273073196, 0.09783954918384552, -0.22633622586727142, 0.21717563271522522, -0.07682160288095474, -0.029324863106012344, -0.05823137238621712, -0.027134312316775322, -0.03737996146082878, 0.002033555880188942, 0.16810177266597748, -0.17732614278793335, 0.14412182569503784, 0.12707683444023132, 0.04237756133079529, 0.16564922034740448, 0.03165323659777641, -0.05999714136123657, 0.02131885662674904, -0.09920847415924072, -0.17547960579395294, 0.0011263471096754074, 0.09275525063276291, 0.0014747502282261848, -0.0002117697149515152, 0.03986369073390961]]}
]
var trainData = {}
var trainDataKeys = []
var trainValues = {}
var validData = {}
var validDataKeys = []
var faceMapping = null;
function preload () {
extraFaceData = loadJSON('face_data.json');
trainData = loadJSON('train_data.json');
validData = loadJSON('valid_data.json');
trainValues = loadJSON('train_values.json');
}
var allEmbeddingsTree;
var allEmbeddings = [];
var embeddingDimensions;
var curNeighbors = [];
function squaredDistance(a, b) {
var sum = 0;
var length = 128;
for(var i=0; i<128; i++) {
var diff = a[i] - b[i];
sum += diff * diff;
}
// print(a.length,diff);
// print(sum, a==b);
return sum;
}
var haveStarted = false;
function setup () {
var extraFaceDataArray = Object.values(extraFaceData);
Array.prototype.unshift.apply(faceData, extraFaceDataArray);
// create the drawing canvas, save the canvas element
main_canvas = createCanvas(canvasWidth, canvasHeight);
main_canvas.parent('canvasContainer');
curRandomSeed = int(focusedRandom(0, 100));
for(var i=0; i<NUMFACES; i++) {
var face = new Face();
facelist.push(face);
}
mainFace = new FaceMap();
littleFace = new FaceMap();
for(var i=0; i<faceData.length; i++) {
var data = faceData[i];
data.image = loadImage(data.url);
}
trainDataKeys = Object.keys(trainData);
for(var i=0; i<trainDataKeys.length; i++) {
var curKey = trainDataKeys[i];
var data = trainData[curKey];
var curEmbedding = data.embedding[0];
if(curEmbedding.length == 128) {
curEmbedding.push(curKey);
allEmbeddings.push(curEmbedding);
}
else {
print("rejected embedding ", curEmbedding);
}
data.image = loadImage(data.url);
}
validDataKeys = Object.keys(validData);
for(var i=0; i<validDataKeys.length; i++) {
var curKey = validDataKeys[i];
var data = validData[curKey];
data.image = loadImage(data.url);
}
// print("Length: ", allEmbeddings.length);
// setup k-d tree
var N = allEmbeddings[0].length - 1;
embeddingDimensions = Array.apply(null, {length: N}).map(Number.call, Number);
// print(embeddingDimensions)
allEmbeddingsTree = new kdTree(allEmbeddings, squaredDistance, embeddingDimensions);
// print(allEmbeddingsTree)
faceSelector = createSelect();
faceSelector.option('Face');
faceSelector.option('FaceMap');
faceSelector.option('Train');
faceSelector.option('Neighbors');
faceSelector.option('TrainQuiz');
faceSelector.option('ValidQuiz');
faceSelector.value('FaceMap');
faceSelector.parent('selector1Container');
/* create the sliders */
for(i=1; i<=NUM_SLIDERS; i++) {
var slider = createSlider(0, 100, 50);
var parentStr = 'slider' + i + 'Container';
slider.parent(parentStr);
sliders.push(slider);
}
sliderTint = createSlider(0, 100, 10);
sliderTint.parent("sliderTintContainer");
/* and the buttons */
var loadButton = createButton('load');
loadButton.mousePressed(loadCurrentSettings);
loadButton.parent('button1Container');
var interpButton = createButton('interpolate');
interpButton.mousePressed(interpolateCurrent);
interpButton.parent('button1Container');
var saveButton = createButton('save');
saveButton.mousePressed(saveCurrentSettings);
saveButton.parent('button2Container');
var getValuesButton = createButton('get values');
getValuesButton.mousePressed(getSingleJson);
getValuesButton.parent('button3Container');
var randButton = createButton('get all values');
randButton.mousePressed(getAllJson);
randButton.parent('button4Container');
updateSlidersForTraining();
// rotation in degrees
angleMode(DEGREES);
haveStarted = true;
}
function saveCurrentSettings() {
var curKey = trainDataKeys[curTrainIndex];
obj = mainFace.getProperties();
trainValues[curKey] = obj;
// for(var i=0; i<obj.length; i++) {
// trainData[curKey][i] = obj[i];
// }
var text = select('#output');
text.html("Storing values for " + curKey);
// getAllJson();
}
function getSingleJson() {
obj = mainFace.getProperties();
var text = select('#output');
var json = JSON.stringify(obj, null, 2);
text.html(json)
}
function getAllJson() {
obj = trainValues;
var text = select('#output');
var json = JSON.stringify(obj, null, 2);
// alert(json);
text.html(json)
}
// global variables for colors
var bg_color1 = [50, 50, 50];
var lastSwapTime = 0;
var millisPerSwap = 5000;
function changeRandomSeed() {
curRandomSeed = curRandomSeed + 1;
lastSwapTime = millis();
}
function mouseClicked() {
// changeRandomSeed();
}
var quiz_done = false;
var guessed_answer = 0;
function draw () {
var mode = faceSelector.value();
if(millis() > lastSwapTime + millisPerSwap) {
lastSwapTime = millis();
// changeRandomSeed();
}
resetFocusedRandom(curRandomSeed);
noStroke();
background(bg_color1);
var textDisplay = "unknown";
var params = [];
for(var i=0; i<NUM_SLIDERS; i++) {
params.push(sliders[i].value());
}
if (mode == 'Face') {
var w = canvasWidth / 10;
var h = canvasHeight / 6;
var max_shift = 0.2 * w;
var cur_face = 0;
for(var i=0; i<6; i++) {
for(var j=0; j<9; j++) {
var face = facelist[cur_face];
cur_face = cur_face + 1;
var y = h/2 + h*i;
var x = w/2 + w*j;
// shift even rows over by half a face
if(i%2 == 0) {
x = x + w/2;
}
// noFill();
// stroke(255, 0, 0);
// rect(x-w/2, y-w/2, w, h);
face.randomize();
face.draw1(x, y, w, h);
// noStroke();
// fill(255, 0, 0);
// ellipse(x-2, y-2, 4, 4);
}
}
textDisplay = "facegrid";
}
else if (mode == 'FaceMap' || mode == 'Train') {
var do_train = true;
if (mode == 'FaceMap') {
do_train = false;
}
if(do_train) {
// var keys = Object.keys(trainData);
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
}
else {
var data = faceData[curFaceIndex];
}
// Displays the image at its actual size at point (0,0)
var img = data.image
var x1 = (width/4-400/2);
var x2 = (3*width/4-400/2);
var y1 = (height/2-400/2);
image(img, x1, y1, 400, 400);
if(do_train) {
if (curKey in trainValues) {
fill(0, 200, 0);
}
else {
fill(200, 0, 0);
}
ellipse(x1+400/2, y1+400+15, 10, 10);
}
image(img, x2, y1, 400, 400);
noStroke();
var curSliderTintValue = sliderTint.value();
var overlayAlpha = map(curSliderTintValue, 0, 100, 255, 0);
fill(bg_color1[0], bg_color1[1], bg_color1[2], overlayAlpha);
rect(x2, y1, 400, 400);
stroke(0);
fill(255);
for(var i=0; i<data.landmarks.length; i++) {
// get array of face marker positions [x, y] format
var positions = data.landmarks[i];
var shifted_positions = JSON.parse(JSON.stringify(positions))
var data_mean = [0.0, 0.0];
var data_scale = 1.0;
var data_angle = 0.0;
if ('transform' in positions) {
data_mean = positions.transform.center;
data_scale = positions.transform.scale;
data_angle = positions.transform.angle;
delete shifted_positions.transform
}
var scale_x = 400.0 / img.width;
var scale_y = 400.0 / img.height;
push();
translate(x1, y1)
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
stroke(0);
fill(255);
strokeWeight(1/data_scale);
Object.keys(positions).forEach(function(key) {
if (key=='transform') {
return;
}
var curSection = positions[key];
var shiftedSection = shifted_positions[key];
for (var i=0; i<curSection.length; i++) {
var cur_x = curSection[i][0];
var cur_y = curSection[i][1];
ellipse(cur_x, cur_y, 3/data_scale, 3/data_scale);
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
noFill();
stroke(0, 0, 255);
ellipse(0, 0, 4, 4);
line(0, -2, 0, 2);
line(-2, 0, 2, 0);
// ellipse(x1+data_mean[0], y1+data_mean[1], 4*data_scale, 4*data_scale);
// line(x1+data_mean[0], y1+data_mean[1]-2*data_scale, x1+data_mean[0], y1+data_mean[1]+2*data_scale);
pop();
push();
translate(x2, y1)
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
mainFace.setProperties(params);
mainFace.draw(shifted_positions);
pop();
}
if(do_train) {
textDisplay = "Train: " + curKey;
}
else {
textDisplay = "FaceMap: " + curFaceIndex;
}
}
else if (mode == 'Neighbors') {
// var keys = Object.keys(trainData);
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = data.image
var x1 = (width/4-250/2);
var y1 = (height/3-250/2);
image(img, x1, y1, 250, 250);
if (curKey in trainValues) {
fill(0, 200, 0);
}
else {
fill(200, 0, 0);
}
ellipse(x1+250/2, y1+250+15, 10, 10);
var y2 = (3*height/4-80/2);
for(var i=0; i<4; i++) {
// var keys = Object.keys(trainData);
var curKey = curNeighbors[i];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/4 - 200 + i*100);
image(img, x2, y2, 80, 80);
}
for(var i=0; i<1; i++) {
// get array of face marker positions [x, y] format
var positions = data.landmarks[i];
var shifted_positions = JSON.parse(JSON.stringify(positions))
var data_mean = [0.0, 0.0];
var data_scale = 1.0;
var data_angle = 0.0;
if ('transform' in positions) {
data_mean = positions.transform.center;
data_scale = positions.transform.scale;
data_angle = positions.transform.angle;
delete shifted_positions.transform
}
var scale_x = 400.0 / img.width;
var scale_y = 400.0 / img.height;
Object.keys(positions).forEach(function(key) {
if (key=='transform') {
return;
}
var curSection = positions[key];
var shiftedSection = shifted_positions[key];
for (var i=0; i<curSection.length; i++) {
var cur_x = curSection[i][0];
var cur_y = curSection[i][1];
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
var scale_x = 250.0 / img.width;
var scale_y = 250.0 / img.height;
var x2 = (3*width/4-250/2);
push();
translate(x2, y1);
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
mainFace.setProperties(params);
mainFace.draw(shifted_positions);
pop();
var scale_x = 80.0 / img.width;
var scale_y = 80.0 / img.height;
for(var j=0; j<4; j++) {
// var keys = Object.keys(trainData);
var curKey = curNeighbors[j];
var x2 = (3*width/4 - 200 + j*100);
push();
translate(x2, y2);
if (curKey in trainValues) {
var settings = trainValues[curKey]
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
littleFace.setProperties(settings);
littleFace.draw(shifted_positions);
}
else {
noFill();
stroke(100);
rect(10, 10, 70, 70);
}
pop();
}
}
textDisplay = "Neighbors: " + trainDataKeys[curTrainIndex];
}
else if (mode == 'TrainQuiz' || mode == 'ValidQuiz') {
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
var valid_mode = false;
if (mode == 'ValidQuiz') {
valid_mode = true;
curKey = validDataKeys[curValidIndex];
data = validData[curKey];
}
// Displays the image at its actual size at point (0,0)
var img = data.image
var x1 = (width/2-200/2);
var y1 = (height/3-300/2);
image(img, x1, y1, 200, 200);
if(valid_mode) {
fill(0, 0, 200);
}
else if (curKey in trainValues) {
fill(0, 200, 0);
}
else {
fill(200, 0, 0);
}
ellipse(x1+200/2, y1+200+15, 10, 10);
var y2 = (3*height/5-80/2);
var y3 = (4*height/5-80/2);
/*
for(var i=0; i<4; i++) {
// var keys = Object.keys(trainData);
var curKey = curNeighbors[i];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/4 - 200 + i*100);
image(img, x2, y2, 80, 80);
}
*/
for(var i=0; i<1; i++) {
// get array of face marker positions [x, y] format
var positions = data.landmarks[i];
var shifted_positions = JSON.parse(JSON.stringify(positions))
var data_mean = [0.0, 0.0];
var data_scale = 1.0;
var data_angle = 0.0;
if ('transform' in positions) {
data_mean = positions.transform.center;
data_scale = positions.transform.scale;
data_angle = positions.transform.angle;
delete shifted_positions.transform
}
var scale_x = 400.0 / img.width;
var scale_y = 400.0 / img.height;
Object.keys(positions).forEach(function(key) {
if (key=='transform') {
return;
}
var curSection = positions[key];
var shiftedSection = shifted_positions[key];
for (var i=0; i<curSection.length; i++) {
var cur_x = curSection[i][0];
var cur_y = curSection[i][1];
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
/*
var scale_x = 250.0 / img.width;
var scale_y = 250.0 / img.height;
var x2 = (3*width/4-250/2);
push();
translate(x2, y1);
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
mainFace.setProperties(params);
mainFace.draw(shifted_positions);
pop();
*/
var scale_x = 80.0 / img.width;
var scale_y = 80.0 / img.height;
var otherKeys = Object.keys(trainValues);
var index = otherKeys.indexOf(trainDataKeys[curTrainIndex]);
if(index >= 0) {
otherKeys.splice(index, 1);
}
var answerSlot = int(focusedRandom(0, 4));
var answerKeys = Array(4);
for(var j=0; j<4; j++) {
if(j == answerSlot) {
curKey = trainDataKeys[curTrainIndex];
}
else {
var guess = int(focusedRandom(0, otherKeys.length));
// if(otherKeys.length > j+2) {
// while(answerKeys.indexOf(guess) == -1) {
// guess = int(focusedRandom(0, otherKeys.length));
// }
// }
curKey = otherKeys[guess];
}
answerKeys[j] = curKey;
// print("Answer", j, " is ", curKey);
var x2 = (width/2 - 200 + j*100);
var settings = params;
if (valid_mode && j == answerSlot) {
var curEmbedding = data.embedding[0];
results = getAverageSettingsFrom(curEmbedding);
settings = results[0];
var validTrainKeys = results[1];
}
else if (curKey in trainValues) {
settings = trainValues[curKey];
}
push();
translate(x2, y2);
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
littleFace.setProperties(settings);
littleFace.draw(shifted_positions);
pop();
if(quiz_done && guessed_answer == (j+1)) {
push();
translate(x2, y2);
noFill();
strokeWeight(4);
if(guessed_answer == (answerSlot+1)) {
stroke(0, 100, 0);
}
else {
stroke(100, 0, 0);
}
rect(-10, -10, 100, 100);
pop();
}
}
if(quiz_done) {
for(var j=0; j<4; j++) {
if (valid_mode && (answerSlot+1) == (j+1)) {
for(var k=0; k<4; k++) {
var curKey = validTrainKeys[k];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/2 - 200 + j*100 + (k%2)*40);
var y4 = y3 + (int(k/2))*40;
image(img, x2, y4, 40, 40);
}
}
else {
var curKey = answerKeys[j];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/2 - 200 + j*100);
image(img, x2, y3, 80, 80);
}
}
}
}
if(valid_mode) {
if(quiz_done) {
textDisplay = "ValidQuiz: hit spacebar to continue";
}
else {
textDisplay = "ValidQuiz: hit 1, 2, 3, or 4 to guess";
}
}
else {
if(quiz_done) {
textDisplay = "TrainQuiz: hit spacebar to continue";
}
else {
textDisplay = "TrainQuiz: hit 1, 2, 3, or 4 to guess";
}
}
}
fill(255);
textSize(32);
textAlign(CENTER);
text(textDisplay, width/2, height-12);
}
function keyTyped() {
if(!haveStarted) {
return;
}
var mode = faceSelector.value();
if (key == 'q' && mode != 'Face') {
print("face")
faceSelector.value('Face');
}
else if (key == 'w' && mode != 'FaceMap') {
print("facemap")
faceSelector.value('FaceMap');
}
else if (key == 'e' && mode != 'Train') {
faceSelector.value('Train');
}
else if (key == 'r' && mode != 'Neighbors') {
faceSelector.value('Neighbors');
}
else if (key == 't' && mode != 'TrainQuiz') {
faceSelector.value('TrainQuiz');
}
else if (key == 'y' && mode != 'ValidQuiz') {
faceSelector.value('ValidQuiz');
}
if (key == ' ' &&
(mode == 'TrainQuiz' || mode == 'ValidQuiz') && quiz_done) {
quiz_done = false;
if(mode == 'TrainQuiz') {
curTrainIndex = (curTrainIndex + 1) % trainDataKeys.length;
}
else {
curValidIndex = (curValidIndex + 1) % validDataKeys.length;
}
changeRandomSeed();
}
else if ((mode == 'TrainQuiz' || mode == 'ValidQuiz') && quiz_done == false) {
if(key >= '1' && key <= '4') {
guessed_answer = key - '0';
quiz_done = true;
}
}
if (key == 's') {
saveCurrentSettings();
}
else if (key == 'i') {
interpolateCurrent();
}
else if (key == 'l') {
loadCurrentSettings();
}
if (key == '!') {
saveBlocksImages();
}
else if (key == '@') {
saveBlocksImages(true);
}
}
function interpolateCurrent() {
var curNeighborSettings = [];
for(var i=0; i<4; i++) {
neighborKey = curNeighbors[i]
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
for(var i=0; i<NUM_SLIDERS; i++) {
sliders[i].value(50);
}
if(curNeighborSettings.length > 0) {
settings = curNeighborSettings[0];
for(var i=0; i<settings.length; i++) {
var sum = 0;
for(j=0; j<curNeighborSettings.length; j++) {
sum += curNeighborSettings[j][i];
}
var avg = int(sum / curNeighborSettings.length)
sliders[i].value(avg);
}
}
}
function loadCurrentSettings() {
var curKey = trainDataKeys[curTrainIndex];
for(var i=0; i<NUM_SLIDERS; i++) {
sliders[i].value(50);
}
if (curKey in trainValues) {
var settings = trainValues[curKey]
for(var i=0; i<settings.length; i++) {
sliders[i].value(settings[i]);
}
}
}
function updateSlidersForTraining() {
var mode = faceSelector.value();
var curKey = trainDataKeys[curTrainIndex];
// first find the closest neighbors
var nearest = allEmbeddingsTree.nearest(trainData[curKey].embedding[0], 5);
curNeighbors = [];
curNeighborSettings = [];
for(var i=0; i<5; i++) {
if(nearest[i][0][128] != curKey) {
var neighborKey = nearest[i][0][128];
curNeighbors.push(neighborKey);
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
}
loadCurrentSettings();
// if(mode == 'Neighbors') {
// interpolateCurrent();
// }
// else {
// loadCurrentSettings();
// }
}
function getAverageSettingsFrom(e) {
// first find the closest neighbors
var nearest = allEmbeddingsTree.nearest(e, 4);
curNeighbors = [];
curNeighborSettings = [];
for(var i=0; i<4; i++) {
var neighborKey = nearest[i][0][128];
curNeighbors.push(neighborKey);
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
for(var i=0; i<4; i++) {
neighborKey = curNeighbors[i]
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
var trainValueKeys = Object.keys(trainValues);
var props = trainValues[trainValueKeys[0]];
if(curNeighborSettings.length > 0) {
settings = curNeighborSettings[0];
for(var i=0; i<settings.length; i++) {
var sum = 0;
for(j=0; j<curNeighborSettings.length; j++) {
sum += curNeighborSettings[j][i];
}
var avg = int(sum / curNeighborSettings.length)
props[i] = avg;
}
}
return [props, curNeighbors];
}
function keyPressed() {
if(!haveStarted) {
return;
}
var mode = faceSelector.value();
if (mode == 'FaceMap') {
if (keyCode == LEFT_ARROW || keyCode == UP_ARROW) {
curFaceIndex = (curFaceIndex + faceData.length - 1) % faceData.length;
} else if (keyCode === RIGHT_ARROW || keyCode == DOWN_ARROW) {
curFaceIndex = (curFaceIndex + 1) % faceData.length;
}
}
else if (mode == 'Train' || mode == 'Neighbors') {
if (keyCode == LEFT_ARROW || keyCode == UP_ARROW) {
curTrainIndex = (curTrainIndex + trainDataKeys.length - 1) % trainDataKeys.length;
updateSlidersForTraining();
} else if (keyCode == RIGHT_ARROW || keyCode == DOWN_ARROW) {
curTrainIndex = (curTrainIndex + 1) % trainDataKeys.length;
updateSlidersForTraining();
}
}
}
This file has been truncated, but you can view the full file.
{
"000001": {"landmarks": [{"left_eye": [[-1.082368150584677, -1.1315914745344497], [-0.9593439214531732, -1.280429936290964], [-0.7185988847742163, -1.2464195066724204], [-0.5410534149832094, -1.0324529610883009], [-0.7526093143927599, -1.0056744699934634], [-0.9933543510717169, -1.039684899612007]], "nose_tip": [[-0.6517630300672874, 0.2325432722547785], [-0.5325958348150934, 0.3249319764121349], [-0.3526397188495179, 0.3881315433000849], [-0.17075508594428748, 0.33071752723109965], [0.041282942700176795, 0.27378564039702813]], "top_lip": [[-0.6273951851470185, 0.5948661503604983], [-0.5364528686944032, 0.5661591423260055], [-0.35553249425900024, 0.5690519177354879], [-0.2057297740326586, 0.6317693553885243], [0.0058261253768919375, 0.6049908642936865], [0.4284557949610792, 0.5815872778432448], [0.9104279975539068, 0.6194547413410985], [0.788850156127144, 0.6778330158799111], [0.00437973767215075, 0.695451051511388], [-0.17702276599816597, 0.7227116718411394], [-0.35746101119865514, 0.6896655006924233], [-0.5378992563991444, 0.6566193295437069]], "right_eye": [[0.33243080298474414, -0.9581644217973353], [0.5162439528296294, -1.1361920208232559], [0.7881066437176477, -1.162006253448266], [0.9967697677177159, -1.0078643701077008], [0.7842496098383378, -0.9207790875343954], [0.5425403146895535, -0.8944827256744714]], "right_eyebrow": [[0.007493259141964269, -1.3856153837306597], [0.40189804992657274, -1.5301146823729506], [0.7953385822413537, -1.6143071895367735], [1.1868505976164798, -1.577886113743661], [1.5457985710778033, -1.3911801884892936]], "nose_bridge": [[-0.3601330405478064, -1.0295601856788186], [-0.39655411634091875, -0.6380481703036927], [-0.46264645863835113, -0.2771716799027142], [-0.5292209301706973, 0.11385820623749812]], "bottom_lip": [[0.9104279975539068, 0.6194547413410985], [0.48104851868092724, 1.0650058681408137], [0.0861615986614051, 1.239658562522338], [-0.15506556725246554, 1.2358015286430282], [-0.33550381245295474, 1.2027553574943122], [-0.5130492822439616, 0.9887888119101929], [-0.6273951851470185, 0.5948661503604983], [-0.5378992563991444, 0.6566193295437069], [-0.361318045077965, 0.9308926666062939], [-0.18136192911238952, 0.9940922334942438], [0.02971184106224728, 0.99746713813864], [0.788850156127144, 0.6778330158799111]], "left_eyebrow": [[-1.345552515244248, -1.6485383652156484], [-1.2234925445825717, -1.7370700354936948], [-1.0133830328777622, -1.6733883393708313], [-0.8343911753820142, -1.5498819810044133], [-0.6257280513819461, -1.395740097663848]], "transform": {"center": [129.48611111111111, 164.94444444444446], "angle": -0.01598785619757211, "scale": 33.15952225070593}, "chin": [[-1.2642527834899076, -1.0741774584654644], [-1.3313093842571675, -0.6529941765860182], [-1.3079057978067257, -0.23036450700183098], [-1.133735232660115, 0.19467580875692503], [-0.9294112717742705, 0.6201982537505948], [-0.7246051816535122, 1.0155673030050305], [-0.5801058830112215, 1.4099720937896392], [-0.3757819221253769, 1.8354945387833088], [-0.04650521516837345, 1.9915649390635288], [0.40627785015504764, 1.968643481848001], [0.9227426116013326, 1.7356125129276636], [1.4406537607523586, 1.4121213567896251], [1.9298579018688922, 0.9976878841989713], [2.23910592701985, 0.5200548447203672], [2.3990333611793804, -0.05044902815050689], [2.4991361330953565, -0.6520705552304422], [2.5389321135328644, -1.254656340780205]]}], "url": "http://i.imgur.com/iBvM5aU.jpg", "embedding": [[-0.1066107302904129, 0.1485077291727066, 0.039523154497146606, -0.03118717670440674, -0.14745712280273438, 0.057141903787851334, -0.0691254585981369, -0.09960339963436127, 0.22188687324523926, -0.1243767961859703, 0.23935052752494812, -0.07511913776397705, -0.34320682287216187, 0.076741062104702, -0.08805474638938904, 0.20431597530841827, -0.2400541603565216, -0.13779573142528534, -0.12186677008867264, -0.12693065404891968, -0.03830017149448395, -0.025015411898493767, 0.06169622018933296, 0.1271224021911621, -0.20797201991081238, -0.36247333884239197, 0.022544126957654953, -0.06996633112430573, -0.01914086937904358, -0.25682058930397034, 0.008568190969526768, 0.065699502825737, -0.1454155594110489, 0.07797020673751831, -0.009573593735694885, 0.11103647947311401, -0.0285562202334404, -0.15743309259414673, 0.2089920938014984, -0.060973260551691055, -0.20405620336532593, -0.129622682929039, 0.10013291239738464, 0.2830047309398651, 0.29707640409469604, -0.08574699610471725, 0.008662041276693344, -0.09223061054944992, 0.17101623117923737, -0.2949543595314026, 0.0042231082916259766, 0.1493961662054062, -0.003148164600133896, 0.10517379641532898, 0.1334391087293625, -0.16013196110725403, -0.04087948054075241, 0.15982848405838013, -0.07950172573328018, -0.026963332667946815, 0.06907039880752563, -0.020525097846984863, 0.033665142953395844, -0.1001741886138916, 0.31165194511413574, 0.09398506581783295, -0.1851806640625, -0.11977623403072357, 0.14412885904312134, -0.166152685880661, -0.05420549213886261, 0.07561560720205307, -0.11570170521736145, -0.21482019126415253, -0.31546851992607117, -0.013671251945197582, 0.33818429708480835, 0.16871163249015808, -0.1523156762123108, 0.03564263880252838, -0.041831448674201965, -0.057398829609155655, 0.0007435409352183342, 0.15268775820732117, -0.05465215817093849, 0.025998586788773537, -0.10950946062803268, 0.10757769644260406, 0.24762581288814545, 0.01226470060646534, -0.055185332894325256, 0.2214655578136444, -0.04510842263698578, -0.09844058752059937, 0.0459165945649147, 0.11920461803674698, -0.22929653525352478, -0.022295590490102768, -0.19496098160743713, -0.048880964517593384, 0.018183540552854538, 0.011494350619614124, -0.011754537001252174, 0.09797869622707367, -0.12854936718940735, 0.1525353044271469, -0.03767697885632515, -0.007157992571592331, -0.04525915905833244, -0.030064966529607773, -0.12139441817998886, 0.004227103665471077, 0.19985349476337433, -0.32485613226890564, 0.15989111363887787, 0.0861654207110405, 0.08745167404413223, 0.14284919202327728, 0.03687800467014313, 0.06106988713145256, 0.012853779830038548, 0.01497199758887291, -0.05323990061879158, -0.05195643752813339, 0.008762119337916374, -0.059743717312812805, 0.08953282237052917, 0.005234583280980587]]},
"000002": {"url": "http://i.imgur.com/jOx5g4v.jpg", "landmarks": [{"transform": {"center": [128.375, 165.83333333333334], "angle": -0.007359635338350166, "scale": 34.180370727298374}, "right_eyebrow": [[0.028368803398605258, -1.3700104553085821], [0.40998565160510364, -1.5427459460800845], [0.8197816872519248, -1.5689872926282846], [1.228716460280025, -1.4782055763215871], [1.5782784392619549, -1.270831428469353]], "left_eyebrow": [[-1.4055943478832487, -1.3220493909604683], [-1.258023625386545, -1.4965074069694129], [-0.9945064183083454, -1.5238253317910146], [-0.7314198425395065, -1.4926317251851675], [-0.4689792137347087, -1.3736708214381472]], "chin": [[-1.3782764230616469, -1.058532183882269], [-1.4105466079408955, -0.6491667795448084], [-1.4137763427611, -0.210330293838943], [-1.2999830147264073, 0.22936745448564347], [-1.1571492366326703, 0.6985362841786347], [-0.9263328457430801, 1.1390952951219424], [-0.6955164548534899, 1.5796543060652501], [-0.4350136669408146, 1.9619171012357892], [-0.02650952522207519, 2.111210348969935], [0.4710538075659191, 2.0856149493857763], [0.9993801156503997, 1.8554445054602267], [1.4993119206398773, 1.5080356830250994], [1.912122375452223, 1.0722136164847587], [2.1498288672915833, 0.5765881245888871], [2.3004140089538105, -0.007450611412198382], [2.3634471691295453, -0.6213910600910493], [2.4264803293052806, -1.2353315087699]], "bottom_lip": [[0.8916156259467554, 0.5965853171513583], [0.5080609368481344, 1.0326226993463798], [0.12622877298695567, 1.2346139558316063], [-0.1372884340912438, 1.261931880653208], [-0.3416481627779536, 1.2019131396429972], [-0.5741870789049864, 0.9954002544094842], [-0.8052187854492568, 0.5840970091799008], [-0.6886263539037202, 0.6434698032260708], [-0.3397103218858309, 0.938611248219478], [-0.13535059319912107, 0.9986299892296887], [0.09891084816535405, 0.9710967487534068], [0.7743772474371778, 0.6249798202463615]], "nose_tip": [[-0.5965527436689411, 0.059000435915624636], [-0.4509198620643601, 0.14784431133019918], [-0.2465601333776503, 0.20786305234041], [-0.012083376358494864, 0.15107404615040373], [0.22260869631534086, 0.06502927424667312]], "right_eye": [[0.37663888845245347, -0.987101713174002], [0.5829364580312861, -1.1903848635873102], [0.8462383494548052, -1.1884470226951875], [1.108463662604923, -1.0402303532344432], [0.8737715899310872, -0.9541855813307125], [0.610469698507568, -0.9561234222228352]], "left_eye": [[-1.144230297351852, -1.0568096586448266], [-0.9678344404507848, -1.1725408275716422], [-0.7337883147409899, -1.1708183023341998], [-0.5302898486730013, -0.9937764984690914], [-0.7647666056921567, -0.9369874922790852], [-0.9988127314019515, -0.9387100175165276]], "top_lip": [[-0.8052187854492568, 0.5840970091799008], [-0.5997824784891456, 0.49783692162148985], [-0.3655210371246704, 0.470303681145208], [-0.1611613084379606, 0.5303224221554188], [0.0440596828674705, 0.47331810031073224], [0.4826808529186555, 0.5058036008446611], [0.8916156259467554, 0.5965853171513583], [0.7743772474371778, 0.6249798202463615], [0.07245418596247363, 0.5905564788203099], [-0.1618072554020015, 0.6180897192965918], [-0.3663822997433916, 0.5873267440001053], [-0.6886263539037202, 0.6434698032260708]], "nose_bridge": [[-0.23708624457171693, -1.0793906390634613], [-0.297966248200649, -0.7580078475218541], [-0.32937517046117637, -0.46566550603929097], [-0.3902551740901084, -0.1442827144976837]]}], "embedding": [[-0.12037080526351929, 0.03749090060591698, 0.045407697558403015, -0.04478744789958, -0.04764515161514282, -0.006907154340296984, 0.005972076207399368, -0.10542856156826019, 0.14295288920402527, -0.09997256100177765, 0.21441863477230072, -0.0513451024889946, -0.3523358106613159, -0.037741631269454956, -0.006192009896039963, 0.1582765132188797, -0.18614409863948822, -0.14054059982299805, -0.11978139728307724, -0.1259090155363083, 0.0949140191078186, 0.07833552360534668, 0.11771806329488754, 0.045201338827610016, -0.24501872062683105, -0.22651973366737366, -0.08845460414886475, -0.16605664789676666, -0.044129081070423126, -0.1511019468307495, 0.04749206453561783, 0.03995933383703232, -0.15163084864616394, -0.003514232113957405, 0.08082987368106842, 0.08683636784553528, -0.0799194797873497, -0.13217027485370636, 0.24530331790447235, -0.052129123359918594, -0.23659057915210724, -0.11538589000701904, 0.14392505586147308, 0.14539273083209991, 0.15861822664737701, -0.034020304679870605, 0.022781506180763245, -0.1414259672164917, 0.08858159184455872, -0.28399649262428284, 0.08719547837972641, 0.13119705021381378, 0.018745873123407364, 0.1704985797405243, 0.08732201904058456, -0.2575688660144806, 0.019225724041461945, 0.26145508885383606, -0.18699201941490173, 0.08288976550102234, 0.016980858519673347, -0.1294630467891693, -0.01230871956795454, -0.0031735170632600784, 0.14888083934783936, 0.0734291672706604, -0.1506129503250122, -0.2540396451950073, 0.15908631682395935, -0.1872425228357315, -0.05555734038352966, 0.3292992115020752, -0.1046946793794632, -0.2722305357456207, -0.24218958616256714, -0.03561791405081749, 0.4187271296977997, 0.10029162466526031, -0.08589155226945877, 0.016436416655778885, -0.11715260148048401, -0.09231382608413696, -0.008593427017331123, 0.12582415342330933, 0.02645774558186531, 0.014513108879327774, -0.08202856034040451, 0.005438998341560364, 0.2321903109550476, -0.041500870138406754, -0.07377777248620987, 0.2722841501235962, -0.0018758028745651245, -0.006018860265612602, 0.05323300510644913, 0.08911178261041641, -0.11155626177787781, -0.025044120848178864, -0.08318047225475311, -0.0871301144361496, -0.05117402970790863, -0.12127435952425003, -0.06783691793680191, 0.028693366795778275, -0.14985291659832, 0.15886175632476807, -0.02184174209833145, -0.057883307337760925, -0.10489897429943085, -0.08808303624391556, -0.06696747988462448, 0.03768002241849899, 0.20136496424674988, -0.4171253442764282, 0.17753958702087402, 0.21306639909744263, 0.07231452316045761, 0.1981665939092636, 0.031079236418008804, 0.10218647122383118, 0.020191770046949387, -0.08699503540992737, -0.20210224390029907, -0.023845812305808067, 0.06982298940420151, -0.010472597554326057, 0.040090203285217285, -0.010263604111969471]]},
"000005": {"embedding": [[-0.08472214639186859, 0.03194201737642288, 0.030310407280921936, -0.05851529538631439, -0.149995818734169, -0.015514515340328217, 0.013238154351711273, -0.057169295847415924, 0.1834779679775238, -0.12884166836738586, 0.11645298451185226, -0.046902552247047424, -0.25739264488220215, 0.018732478842139244, -0.08673983812332153, 0.080474354326725, -0.17339354753494263, -0.22670459747314453, -0.06766659766435623, -0.09060454368591309, -0.007942110300064087, -0.0005566515028476715, 0.01388474553823471, 0.050538185983896255, -0.12924279272556305, -0.3598056435585022, -0.04504040256142616, -0.029742378741502762, 0.025390159338712692, -0.08417949825525284, 0.05414523929357529, 0.18607468903064728, -0.22414836287498474, 0.029294848442077637, 0.020756427198648453, 0.22000306844711304, 0.03202294185757637, -0.02565551921725273, 0.20296832919120789, 0.02554469369351864, -0.2394534796476364, -0.037707798182964325, 0.046160344034433365, 0.3316062390804291, 0.21049347519874573, -0.04131569340825081, 0.00862395204603672, -0.085904560983181, 0.16596370935440063, -0.33631154894828796, 0.07407910376787186, 0.1960446834564209, 0.01797172799706459, 0.044147610664367676, 0.1362227201461792, -0.1945013701915741, 0.025888388976454735, 0.14120051264762878, -0.12248510867357254, 0.06490324437618256, 0.04631290212273598, -0.10042215883731842, 0.012805568985641003, -0.1166156679391861, 0.23193660378456116, 0.04795489087700844, -0.0807693600654602, -0.19046394526958466, 0.2716844081878662, -0.20044012367725372, -0.02001744508743286, 0.19841362535953522, -0.0646972581744194, -0.15014302730560303, -0.28008681535720825, 0.054681990295648575, 0.43460163474082947, 0.17419132590293884, -0.09069496393203735, 0.11180910468101501, -0.09523343294858932, -0.03506598621606827, 0.04687333479523659, 0.1291203498840332, -0.047241389751434326, 0.09027120471000671, -0.16822853684425354, 0.07783623784780502, 0.2386399805545807, 0.030934782698750496, -0.0476747527718544, 0.22516460716724396, 0.00754619762301445, 0.016410091891884804, 0.07873943448066711, 0.05746617913246155, -0.1234959214925766, -0.001109059900045395, -0.2353278398513794, -0.028311647474765778, 0.03381293639540672, -0.10852688550949097, -0.04091397672891617, 0.11155542731285095, -0.16116061806678772, 0.10330680012702942, -0.08764906227588654, -0.03291036933660507, -0.07099036127328873, -0.06769483536481857, -0.030301425606012344, 0.024111978709697723, 0.17304259538650513, -0.39394769072532654, 0.15081745386123657, 0.1293189972639084, 0.03524641692638397, 0.17413562536239624, 0.032787296921014786, 0.05589491128921509, 0.01944032311439514, -0.12800844013690948, -0.15188102424144745, -0.048212867230176926, -0.025100942701101303, -0.032420866191387177, -0.03750632330775261, 0.06819707155227661]], "url": "http://i.imgur.com/WQbXo4V.jpg", "landmarks": [{"chin": [[-1.8616951298144135, -0.4074913939727611], [-1.830218116704077, 0.02449605498098053], [-1.7412968126772292, 0.42731702498419527], [-1.6235644964936713, 0.8299602615905016], [-1.5058321803101133, 1.232603498196808], [-1.3022000278471504, 1.5482804981422589], [-0.9552237481882714, 1.7478247824763278], [-0.49353662009327776, 1.860225096752633], [0.05387261088421231, 1.8568481622113728], [0.6300928540184124, 1.8532934942732044], [1.1483356060453753, 1.7924722688154324], [1.550623375857865, 1.6171179283184547], [1.8367784300589725, 1.2984194606255604], [1.949711944526003, 0.9231653690006965], [2.004490234488888, 0.4618337076995197], [2.0598017246424987, 0.08693508286847279], [2.08612446924249, -0.31659682072237566]], "bottom_lip": [[0.5943502393822736, 0.7298417535584226], [0.3640398755255021, 0.7600746328904001], [0.1337295116687305, 0.7903075122223774], [-0.06794757342823952, 0.7915516460007365], [-0.2406359129715911, 0.8214290585388971], [-0.4999350223819811, 0.8230286591110729], [-0.7304231196356612, 0.8244505262863404], [-0.586723525645928, 0.7659398349883783], [-0.24276871373449221, 0.47569691265837705], [-0.06990264079423222, 0.4746305122769265], [0.1317744443027378, 0.4733863784985675], [0.4499397118049068, 0.6731083962295447]], "left_eye": [[-1.2301633965266032, -0.7859446867419765], [-1.0291972450172668, -0.9024328691471756], [-0.7988868811604952, -0.932665748479153], [-0.5104212927995784, -0.8768210581348171], [-0.7691872020192431, -0.7887884210925113], [-1.0281308446358164, -0.7295667962069156]], "transform": {"center": [125.52777777777777, 169.54166666666666], "scale": 34.70829026052194, "angle": 0.0061688614546630645}, "right_eyebrow": [[0.407087761292431, -1.602783830753637], [0.751931240188409, -1.7489716923000882], [1.0976633860689289, -1.7511044930629893], [1.386662174620571, -1.6088267662485236], [1.6475608846031369, -1.3511272574103093]], "left_eyebrow": [[-1.6653500466246964, -1.27306589245242], [-1.4364615499431923, -1.5337868690380776], [-1.1492400953606343, -1.6796192637907117], [-0.7746969373234044, -1.6819297979505212], [-0.4280761244583422, -1.5400075379298725]], "nose_tip": [[-0.33311188493660765, -0.15761215459851774], [-0.21786783630976764, -0.15832308818615143], [-0.07381277552621764, -0.15921175517069358], [0.09887556401713396, -0.18908916770885414], [0.27174163695739395, -0.1901555680903047]], "right_eye": [[0.5842194357584932, -0.9123859393740474], [0.814174332821448, -1.000240843019445], [1.073828909025655, -0.9442184192782007], [1.305205673263877, -0.8015852256699182], [1.045906563853487, -0.7999856250977423], [0.8152407332028986, -0.8273747700791848]], "top_lip": [[-0.7304231196356612, 0.8244505262863404], [-0.5027787567325159, 0.3620524646037128], [-0.24490151449739334, 0.12996476677785698], [-0.07185770816022494, 0.15770937855311645], [0.10083063138312666, 0.12783196601495586], [0.3613738745718757, 0.32790945053975], [0.5943502393822736, 0.7298417535584226], [0.4499397118049068, 0.6731083962295447], [0.13159671090582936, 0.4445753663418575], [-0.07025810758804908, 0.4170084879635065], [-0.24294644713140065, 0.44688590050166704], [-0.586723525645928, 0.7659398349883783]], "nose_bridge": [[-0.0512224322613026, -1.1677749140524518], [-0.050156031879852035, -0.9949088411121921], [-0.0780783770520199, -0.8506760469317336], [-0.10600072222418777, -0.7064432527512752]]}]},
"000006": {"embedding": [[-0.037340518087148666, -0.009861281141638756, 0.01682112365961075, 0.015028830617666245, -0.03984393551945686, 0.008840582333505154, -0.0016342755407094955, -0.14040151238441467, 0.1643073558807373, -0.04492109641432762, 0.23604202270507812, -0.09034944325685501, -0.2694287896156311, -0.03287893161177635, -0.17971572279930115, 0.10200217366218567, -0.1373196393251419, -0.13152699172496796, -0.0013713634107261896, -0.015583427622914314, 0.09445367008447647, -0.02705235406756401, 0.07680214196443558, 0.05951646342873573, -0.1298561692237854, -0.30151045322418213, -0.06509877741336823, -0.12767644226551056, -0.005780412815511227, -0.08428351581096649, -0.03085245192050934, 0.140376478433609, -0.18022111058235168, 0.029040010645985603, 0.018802300095558167, 0.06316819041967392, -0.014823711477220058, -0.09253495931625366, 0.14967061579227448, -0.08809986710548401, -0.19789695739746094, -0.07851918041706085, 0.07258162647485733, 0.26135769486427307, 0.18978539109230042, -0.09924253821372986, -0.03210604935884476, -0.0996297150850296, 0.07887569069862366, -0.29079535603523254, -0.012564423494040966, 0.15846040844917297, 0.13357052206993103, 0.08310223370790482, 0.0454026497900486, -0.11486513167619705, -0.020452361553907394, 0.13021445274353027, -0.12178590148687363, 0.05759982019662857, -0.015261940658092499, -0.08329445123672485, 0.036210570484399796, -0.16699472069740295, 0.21097762882709503, 0.07997196912765503, -0.16715091466903687, -0.10631788522005081, 0.12208883464336395, -0.14506393671035767, 0.015350818634033203, 0.117909274995327, -0.12119773775339127, -0.26833781599998474, -0.1865665316581726, -0.042581960558891296, 0.42389464378356934, 0.16043372452259064, -0.15177103877067566, 0.13627862930297852, -0.20112580060958862, -0.020550575107336044, -0.01641790196299553, 0.08351384103298187, 0.056368980556726456, 0.08287335932254791, -0.13589587807655334, 0.029553383588790894, 0.19450071454048157, -0.1520422399044037, -0.018039241433143616, 0.22141842544078827, -0.11370934545993805, 0.01859600841999054, 0.0064492132514715195, 0.04184103012084961, -0.11594384163618088, 0.07563938945531845, -0.12959477305412292, -0.01979164406657219, -0.10515623539686203, -0.07123018056154251, 0.03821875900030136, 0.0028341785073280334, -0.11969949305057526, 0.10799863934516907, 0.04363052546977997, 0.03618684411048889, 0.07277362048625946, -0.06492020934820175, -0.029409365728497505, -0.026074212044477463, 0.13603699207305908, -0.3846019506454468, 0.20211362838745117, 0.043041616678237915, 0.0991889014840126, 0.21639572083950043, -0.01706680655479431, 0.10247599333524704, -0.010260730050504208, -0.09328348189592361, -0.10795947164297104, 0.006460946053266525, 0.029768522828817368, -0.01863664761185646, -0.018566535785794258, -0.009757953695952892]], "landmarks": [{"right_eyebrow": [[0.5840756689481463, -1.5557005335979652], [0.7974193244068781, -1.7182664530850578], [1.0457793017860226, -1.757133756579308], [1.263936684212051, -1.763872974333523], [1.3934117725656496, -1.611897254174483]], "nose_tip": [[-0.145957824649816, 0.05780045891386709], [0.011794367869980048, 0.1153174126397215], [0.19974915534289225, 0.14070628062554114], [0.3234477713357348, 0.1056899587051284], [0.415981046982002, 0.07163638217817499]], "transform": {"center": [121.73611111111111, 165.29166666666666], "angle": 0.030881720293956815, "scale": 32.071627855031075}, "left_eyebrow": [[-1.5380557107993644, -1.5837298678824585], [-1.2623813746474817, -1.7482212781564699], [-0.9195626308351513, -1.7588114774845223], [-0.6050209911890185, -1.6749429103793887], [-0.28855386075596723, -1.5287436625811046]], "chin": [[-2.180974913355938, -1.1895281304609076], [-2.1646082416671297, -0.659717344569124], [-2.0859108892851705, -0.13183204946425958], [-1.9760481965566359, 0.3950905002471457], [-1.8048175685284094, 0.888922218825057], [-1.4485203892076486, 1.3146467843490612], [-1.0327807653741148, 1.6449498380464205], [-0.4952680163346573, 1.877905889130216], [0.006265665390928363, 1.9559979838745936], [0.43872944866914787, 1.8178581869798613], [0.7407553982003096, 1.4965773295795135], [0.9785251762514018, 1.114891282272933], [1.1227989332627673, 0.7360934711467307], [1.233981859140639, 0.29592772472083684], [1.3451647850185104, -0.14423802170505717], [1.3940170302032313, -0.5824782773440326], [1.3815013400882603, -0.9876277018495138]], "nose_bridge": [[0.16220208499797917, -1.0747419928909026], [0.17086679353911297, -0.7942539297717234], [0.2408994373799384, -0.5468566977860382], [0.2807294862676477, -0.2673313800603181]], "left_eye": [[-1.146742209558191, -1.0343066863656116], [-0.9012704683594244, -1.1666700108995882], [-0.5886543195002103, -1.1451321244876056], [-0.42705114540657707, -0.9629538093754493], [-0.6432830370456869, -0.8938839109280832], [-0.9247338455583255, -0.9163845427335249]], "right_eye": [[0.44654112969099574, -0.9587453400457345], [0.6900873801028438, -1.1534393452728617], [0.9394101028754477, -1.1611413084205364], [1.0990877861821624, -1.041293674001531], [0.9782774063696975, -0.9127813310413918], [0.7289546835970937, -0.9050793678937173]], "bottom_lip": [[0.6260789785044784, 0.8138280781352307], [0.5110450710527695, 1.129332463174823], [0.32886675594061315, 1.290935637268456], [0.14283745925461955, 1.3278774499757873], [-0.04511732821829263, 1.3024885819899676], [-0.3284936275178499, 1.2176572694913752], [-0.6205346353585409, 0.8523378938736031], [-0.46470793362566354, 0.8475241669063066], [-0.023579441806310244, 0.9898724331307537], [0.16341260027314264, 0.9840959607699977], [0.31827655661256077, 0.9481168934561257], [0.4712150221650602, 0.8498071454491027]], "top_lip": [[-0.6205346353585409, 0.8523378938736031], [-0.314657704253542, 0.6557183978595571], [-0.005892536968165097, 0.5525949228852376], [0.15185965555163092, 0.6101118766110919], [0.3057608664975897, 0.5429674689506445], [0.49564114475742055, 0.630687017629615], [0.6260789785044784, 0.8138280781352307], [0.4712150221650602, 0.8498071454491027], [0.31346282964526423, 0.7922901917232482], [0.15763612791238676, 0.7971039186905448], [-0.029355914167066104, 0.8028803910513007], [-0.46470793362566354, 0.8475241669063066]]}], "url": "http://i.imgur.com/rhEt5N6.jpg"},
"000007": {"landmarks": [{"left_eye": [[-1.0931910224172077, -1.1667936206965623], [-0.9072617228393265, -1.2867503934808842], [-0.6618151245924685, -1.2830616916954083], [-0.4804967022464322, -1.0962102166711578], [-0.726865475939659, -1.0385372688949193], [-0.9416312494056597, -1.0417648829572108]], "nose_tip": [[-0.46825938639295517, 0.1314838622863159], [-0.34691935043907973, 0.22537068752162562], [-0.16375657720030537, 0.28949886342244713], [0.021711634654391538, 0.20022291541898243], [0.23739958356676116, 0.14208887991955949]], "transform": {"scale": 32.589967769674075, "angle": -0.015027399619280415, "center": [127.19444444444444, 164.48611111111111]}, "chin": [[-1.552942306406882, -1.2043907613251872], [-1.5603197099778339, -0.7134975648314714], [-1.4751935514830297, -0.25190192994905947], [-1.39052848071141, 0.2403745297142097], [-1.243579584931707, 0.6722115152621334], [-1.0045882148094323, 1.1054317639796107], [-0.7655968446871574, 1.538652012697088], [-0.46386056183361457, 1.8807519625183624], [0.025188283767363057, 2.0108526652127434], [0.5170036557074478, 1.9568684192219812], [0.9818269046521511, 1.6569764872611765], [1.3862106794815092, 1.2948007302922881], [1.7306160679187064, 0.8396603235344592], [1.9834400697365162, 0.3524558288262196], [2.114462947877266, -0.19795466633647257], [2.184585264179486, -0.7799681617263908], [2.1928848431968073, -1.3322230077818211]], "nose_bridge": [[-0.1430076296570027, -1.091138251716128], [-0.17876041939288947, -0.7541102668498832], [-0.21497429685196073, -0.3864014572027809], [-0.251188174311032, -0.018692647555678708]], "top_lip": [[-0.6624882649881575, 0.8036954811260679], [-0.4774811408566452, 0.7451003579034605], [-0.2929351044483174, 0.7171860594617103], [-0.10977233120954295, 0.7813142353625319], [0.044553968141112205, 0.7222580244167399], [0.3504400405033155, 0.7882305512102994], [0.6879291130927451, 0.7933025161653289], [0.564283638522947, 0.8528198148343054], [0.07292935430604691, 0.8761232360442105], [-0.11161668210228097, 0.9040375344859608], [-0.29524054306423986, 0.8705901833659964], [-0.5709068783687704, 0.8357595690764786]], "right_eye": [[0.4399280411792847, -1.0823775849756225], [0.626779516203535, -1.263696007321659], [0.9029069392312502, -1.2595462178129986], [1.1158283618045128, -1.1335953046272782], [0.9298990622266314, -1.0136385318429562], [0.6537716391989162, -1.0177883213516168]], "right_eyebrow": [[0.2293120572219446, -1.3617326220656292], [0.5379646559232549, -1.4798450439572133], [0.9075178164630953, -1.5663544656215709], [1.2450068890525248, -1.5612825006665414], [1.6113324355300735, -1.433026148864898]], "left_eyebrow": [[-1.4576722180020185, -1.4177732716216342], [-1.301040480035441, -1.6302336064717122], [-1.0253741447309104, -1.5954029921821946], [-0.7506299848727488, -1.4992107283309624], [-0.4763469127377717, -1.372337639698873]], "bottom_lip": [[0.6879291130927451, 0.7933025161653289], [0.3774321634986967, 1.0341382371803418], [0.10038256502461264, 1.0913500972333956], [-0.11438320844138798, 1.088122483171104], [-0.2984681571265314, 1.085355956831997], [-0.48116984264212126, 0.9905469561503183], [-0.6624882649881575, 0.8036954811260679], [-0.5709068783687704, 0.8357595690764786], [-0.2943183676178709, 0.809228533804282], [-0.11115559437909646, 0.8733567097051035], [0.07339044202923141, 0.8454424112633533], [0.564283638522947, 0.8528198148343054]]}], "embedding": [[0.0007259082049131393, 0.19465941190719604, -0.010147977620363235, 0.034770261496305466, -0.05515235662460327, 0.03367019444704056, -0.016617178916931152, -0.06582227349281311, 0.15987910330295563, 0.03704320266842842, 0.16595369577407837, -0.075181744992733, -0.28983786702156067, -0.07164004445075989, -0.0690021961927414, 0.07388981431722641, -0.18128344416618347, -0.11775344610214233, -0.13268226385116577, -0.10314063727855682, 0.01810559630393982, 0.017883362248539925, 0.09431864321231842, 0.008697524666786194, -0.16968858242034912, -0.38846808671951294, -0.05519406870007515, -0.1838705688714981, -0.012349460273981094, -0.14603731036186218, -0.03430596739053726, 0.0842689797282219, -0.1523318886756897, -0.057055290788412094, 0.028209291398525238, 0.026094354689121246, -0.05098777636885643, -0.011781413108110428, 0.1785731166601181, -0.046844009310007095, -0.09967761486768723, 0.07884758710861206, 0.09317293763160706, 0.2780848741531372, 0.23515918850898743, 0.034521978348493576, 0.019941655918955803, -0.05969041585922241, 0.14150038361549377, -0.21218852698802948, 0.129740372300148, 0.1751473844051361, 0.17024973034858704, 0.07109884172677994, 0.13747678697109222, -0.1923958659172058, -0.01917063631117344, 0.12999606132507324, -0.19591528177261353, 0.11038082838058472, 0.037057504057884216, -0.02431129664182663, -0.04205906391143799, 0.03293204307556152, 0.16692739725112915, 0.08212815225124359, -0.10648854076862335, -0.1367456614971161, 0.12749609351158142, -0.14297617971897125, 0.08554922044277191, 0.129977747797966, -0.11860746145248413, -0.2194715291261673, -0.23596595227718353, 0.09177421778440475, 0.4537779688835144, 0.07773697376251221, -0.15449056029319763, -0.0014827251434326172, -0.12465507537126541, -0.03626052290201187, 0.018618298694491386, -0.030386002734303474, -0.17166529595851898, -0.09662649035453796, -0.19926343858242035, 0.06987422704696655, 0.1612050086259842, -0.031168611720204353, -0.10798272490501404, 0.1970548927783966, -0.02633446827530861, -0.008556774817407131, 0.04204708710312843, 0.06205200403928757, -0.16556373238563538, 0.0205097533762455, -0.11465752124786377, 0.004059862345457077, 0.02753473073244095, -0.1938042938709259, -0.11418565362691879, 0.029492609202861786, -0.13503772020339966, 0.03922915458679199, 0.0054579246789216995, -0.0028379112482070923, -0.04461018741130829, -0.0178971029818058, -0.16357725858688354, -0.02520890161395073, 0.2130015641450882, -0.374010294675827, 0.18687213957309723, 0.11489154398441315, 0.018094563856720924, 0.1646260917186737, 0.024396954104304314, 0.05165451765060425, 0.030602889135479927, -0.05696411058306694, -0.1306934356689453, -0.06390225887298584, 0.05578415095806122, 0.027428552508354187, -0.009128216654062271, 0.03172878175973892]], "url": "http://i.imgur.com/2bmpGiw.jpg"},
"000009": {"landmarks": [{"bottom_lip": [[0.803085784212075, 0.5491762338781955], [0.5685850357680547, 0.951660553240564], [0.3289359878567092, 1.1405907310800114], [0.11685278903873787, 1.2067544995538857], [-0.1584522928432075, 1.1828660072228865], [-0.5587301981481511, 1.0398884622886897], [-0.9351196111220955, 0.6216058354725476], [-0.8123532017565226, 0.6491716845659218], [-0.13382832915973342, 0.9380686598442156], [0.11023354686646245, 0.9321848890244152], [0.32231674568443375, 0.866021120550541], [0.6825257889039271, 0.6131335882946445]], "nose_bridge": [[0.18666526102610748, -0.9622365355885029], [0.22526318040660748, -0.6273869274049586], [0.2638610997871075, -0.29253731922141435], [0.33296675367088197, 0.0415768176096549]], "left_eye": [[-1.1564105284704447, -0.9603835305828753], [-0.9457982723574236, -1.0875627680632987], [-0.6704931904754783, -1.0636742757322994], [-0.4525262208377066, -0.8857761681799778], [-0.6958526255114273, -0.8493846628569031], [-0.9704222360408978, -0.8427654206846276]], "chin": [[-2.3230591531196256, -1.2375129642215683], [-2.2488051997685257, -0.6898446858675777], [-2.174551246417426, -0.1421764075135871], [-2.100297293066326, 0.4054918708404035], [-1.874975609903804, 0.8884673234254699], [-1.4680784624265852, 1.306014478889137], [-1.0023722600002423, 1.6305674881380308], [-0.4771215312723008, 1.8926340856754253], [-0.018034571018233393, 1.9426174843948485], [0.4068672979701842, 1.8407976819503744], [0.733626721276503, 1.4666146830338551], [1.061121615935297, 1.12293941862061], [1.3268655702350665, 0.750227362409041], [1.4988799069675878, 0.28819851674507346], [1.5793710401902854, -0.1716239148614689], [1.5988467044064345, -0.6299754037630612], [1.5878146341193087, -1.0875914213121785]], "top_lip": [[-0.9351196111220955, 0.6216058354725476], [-0.4782390649254533, 0.5800660306821475], [-0.08237398773536005, 0.5399971685966973], [0.13265109649251142, 0.595864338135921], [0.3447342953104827, 0.5297005696620467], [0.5880606999842035, 0.4933090643389717], [0.803085784212075, 0.5491762338781955], [0.6825257889039271, 0.6131335882946445], [0.349147123425333, 0.7127469766816935], [0.13632845325488666, 0.7484030106522934], [-0.10773342277130922, 0.7542867814720937], [-0.8123532017565226, 0.6491716845659218]], "nose_tip": [[-0.15147964161913455, 0.20588303176562806], [0.03303770810546246, 0.26248567265732675], [0.21829052918253453, 0.34959604805229993], [0.3991305221447562, 0.2536600164276262], [0.5196905174529042, 0.18970266201117703]], "left_eyebrow": [[-1.625794087659163, -1.4374752123481414], [-1.2938863648855188, -1.5981040697417392], [-0.927793550846225, -1.60692972597144], [-0.5594943227495061, -1.5242321786913169], [-0.21949641509863643, -1.3492759565488956]], "right_eye": [[0.5237212832670769, -0.9093112514591793], [0.7321271253226729, -1.1280136924494262], [0.9754535299963937, -1.164405197772501], [1.1912140855767401, -1.0780302937300028], [1.042352769822743, -0.9218142644512551], [0.7685186306457478, -0.8846872877757053]], "right_eyebrow": [[0.5126892129799512, -1.3669272690082968], [0.7843169380995213, -1.49557744919367], [1.0552091918666167, -1.654735363882318], [1.3290433310436118, -1.6918623405578677], [1.515031623473159, -1.5742442306596203]], "transform": {"center": [122.125, 164.375], "angle": 0.024103032669836145, "scale": 32.76905192233808}}], "url": "http://i.imgur.com/Z6TLieh.jpg", "embedding": [[-0.14828094840049744, 0.06601322442293167, 0.09660305082798004, -0.11211568117141724, -0.07580295205116272, -0.005075429566204548, -0.01978028565645218, -0.12387266755104065, 0.1629769206047058, -0.08182785660028458, 0.1376246064901352, -0.10959750413894653, -0.39590856432914734, 0.09763310849666595, -0.07782592624425888, 0.13769716024398804, -0.20720979571342468, -0.25750645995140076, -0.11253654211759567, -0.027053840458393097, -0.005309998989105225, 0.11878751218318939, -0.04326042905449867, 0.09624260663986206, -0.08525785058736801, -0.34946057200431824, -0.1012767106294632, -0.022452060133218765, 0.009547286666929722, -0.09280454367399216, 0.06388996541500092, 0.054124340415000916, -0.150180384516716, -0.0010997317731380463, 0.02918238192796707, 0.15554116666316986, -0.03509681299328804, -0.24986249208450317, 0.15997064113616943, 0.03502193093299866, -0.28953057527542114, -0.14662382006645203, 0.10596326738595963, 0.3211566209793091, 0.1826849728822708, -0.050713345408439636, -0.04814297705888748, -0.0802825316786766, 0.08931650966405869, -0.33276256918907166, 0.029941927641630173, 0.20957523584365845, 0.03968146815896034, 0.14604808390140533, 0.12102644145488739, -0.1912834495306015, 0.0611376091837883, 0.10648265480995178, -0.19706608355045319, 0.028500761836767197, 0.06818552315235138, -0.1220565140247345, 0.09562859684228897, -0.14847403764724731, 0.1838555932044983, 0.05879156291484833, -0.12340665608644485, -0.21143905818462372, 0.24994871020317078, -0.16736526787281036, -0.153510183095932, 0.09139476716518402, -0.11090578883886337, -0.16476738452911377, -0.29688355326652527, 0.013247909024357796, 0.37460315227508545, 0.12913580238819122, -0.07069650292396545, 0.15040120482444763, -0.03445710241794586, -0.11025367677211761, -0.0621057003736496, 0.199875146150589, 0.009862672537565231, 0.07479875534772873, -0.11626739799976349, 0.057332973927259445, 0.22065062820911407, -0.0036045247688889503, -0.03991447389125824, 0.2471020221710205, -0.07800240814685822, -0.03887832909822464, 0.12237954139709473, 0.16395464539527893, -0.14429952204227448, 0.07857689261436462, -0.15656158328056335, 0.00903983786702156, 0.11920484900474548, -0.029867682605981827, 0.03246336057782173, 0.13733261823654175, -0.06889346241950989, 0.1766374409198761, 0.011919759213924408, -0.004027841612696648, 0.015658531337976456, -0.07380598038434982, -0.0820431262254715, -0.020451243966817856, 0.21987177431583405, -0.3155346214771271, 0.1882849931716919, 0.11214617639780045, 0.06839137524366379, 0.10850806534290314, 0.0393541119992733, 0.08060096949338913, 0.04394157603383064, -0.05240675061941147, -0.21079586446285248, -0.10483581572771072, 0.01346999779343605, -0.0017359091434627771, -0.03814465180039406, 0.12760062515735626]]},
"000010": {"embedding": [[-0.07911072671413422, 0.13816410303115845, -0.0333247110247612, -0.1589442789554596, -0.16233257949352264, -0.04183566942811012, -0.07710370421409607, -0.0794021338224411, 0.2622031271457672, 0.01841481402516365, 0.13281142711639404, -0.06310953199863434, -0.2633556127548218, -0.0061302389949560165, -0.06842458248138428, 0.21095353364944458, -0.25354403257369995, -0.1307756006717682, -0.051088202744722366, -0.06485781073570251, -0.02051284909248352, 0.008870168589055538, 0.006564833223819733, 0.15464206039905548, -0.0877838060259819, -0.27338707447052, -0.06376959383487701, -0.11708737909793854, -0.08178187906742096, -0.17548952996730804, 0.06459113955497742, 0.1687178611755371, -0.18327103555202484, -0.04342100769281387, 0.034532539546489716, 0.15123438835144043, -0.05529721453785896, -0.2000071108341217, 0.16299419105052948, 0.04749839007854462, -0.14772658050060272, -0.14587806165218353, 0.1117900088429451, 0.24250999093055725, 0.30112341046333313, -0.04209339991211891, 0.011062082834541798, -0.0496465340256691, 0.1958070993423462, -0.298350065946579, 0.0077898441813886166, 0.16607119143009186, 0.05359843373298645, 0.15059947967529297, 0.05595889315009117, -0.2106628715991974, 0.10075165331363678, 0.11351919174194336, -0.24018895626068115, -0.053766801953315735, 0.09171808511018753, -0.08055304735898972, -0.033619385212659836, -0.08882049471139908, 0.29512321949005127, 0.20514899492263794, -0.12073202431201935, -0.16527314484119415, 0.20091983675956726, -0.16155320405960083, -0.11515003442764282, 0.055063165724277496, -0.13998976349830627, -0.18030349910259247, -0.24989043176174164, -0.01992315798997879, 0.23175670206546783, 0.1441127359867096, -0.13079099357128143, 0.014247564598917961, -0.04877573996782303, -0.0809389129281044, -0.10129741579294205, 0.12783250212669373, -0.022132055833935738, 0.006511997431516647, -0.09031534940004349, 0.022139672189950943, 0.24120423197746277, -0.027897559106349945, 0.018616775050759315, 0.26452988386154175, -0.034428417682647705, -0.04191341996192932, 0.0006988197565078735, 0.04681665822863579, -0.0893673375248909, 0.07441891729831696, -0.1459590047597885, 0.01641312800347805, 0.017934750765562057, -0.05068080872297287, -0.05558670312166214, 0.06961008906364441, -0.16022546589374542, 0.152951180934906, -0.007342688739299774, -0.018954912200570107, -0.1769370585680008, -0.2036430537700653, -0.09071506559848785, 0.07956411689519882, 0.2629999816417694, -0.2259558141231537, 0.2691151201725006, 0.07947744429111481, 0.07271087169647217, 0.14757315814495087, -0.002506266115233302, 0.09569576382637024, 0.017116602510213852, -0.15552553534507751, -0.1250411719083786, -0.042153649032115936, 0.04483330622315407, -0.05595889315009117, -0.013445007614791393, 0.06538913398981094]], "url": "http://i.imgur.com/BN1bS1x.jpg", "landmarks": [{"nose_tip": [[-0.3781167533442019, 0.14589918808315683], [-0.194399651201113, 0.20844598443958212], [-0.010878713404333391, 0.301677685935292], [0.17381921047030227, 0.21079995659529427], [0.3583209699986286, 0.15060713239458115]], "top_lip": [[-0.8110402191814452, 0.6647962746026642], [-0.47311393395669593, 0.6055842721334979], [-0.16606871821754052, 0.5768610104573068], [0.017648383925548405, 0.639407806813732], [0.23283504859315934, 0.5794111469593283], [0.5394879356396961, 0.6120576955617063], [0.8461408226862327, 0.6447042441640843], [0.723205037782785, 0.6746044919181315], [0.23165806251530327, 0.7635205777950358], [0.016667562194001676, 0.792832332510155], [-0.19793060943468122, 0.760774276946705], [-0.6578118578313316, 0.6964620014734956]], "chin": [[-2.027451221359506, -1.0614049870496476], [-1.9692200406218863, -0.5700541761284751], [-1.8496190496056975, -0.07831103651468402], [-1.7300180585895086, 0.41343210309910705], [-1.5486549286021318, 0.8441977611269476], [-1.2443560137113072, 1.245063171400741], [-0.8780987955029854, 1.554266194949299], [-0.45027560266978517, 1.8331766420511912], [0.009409481380555869, 1.9281738226636853], [0.4700753871624436, 1.8697464775797565], [0.8703523043973089, 1.6575022781067856], [1.240728973878127, 1.3223222937303671], [1.51944325663371, 0.9251840060364515], [1.7064951526640577, 0.4660874150250384], [1.8016884976228609, -0.02428257416458722], [1.8968818425816645, -0.5146525633542127], [1.9307053772618985, -1.005414881236457]], "transform": {"center": [125.29166666666667, 165.16666666666666], "scale": 32.58864779762698, "angle": -0.006392774335090093}, "bottom_lip": [[0.8461408226862327, 0.6447042441640843], [0.5682111973158872, 0.9191029113008617], [0.29106622933077897, 1.0707619578805005], [0.04558698821650216, 1.0691926431100256], [-0.16901118341218072, 1.0371345875465756], [-0.4750755774197894, 0.912433323526344], [-0.8110402191814452, 0.6647962746026642], [-0.6578118578313316, 0.6964620014734956], [-0.16744186864170596, 0.7916553464322988], [0.04735246733328627, 0.7930284968564643], [0.2621468033082785, 0.7944016472806297], [0.723205037782785, 0.6746044919181315]], "right_eye": [[0.5496884816477822, -0.9835573716810931], [0.7656598037006302, -1.1662936520926352], [1.0111390448149074, -1.1647243373221605], [1.225148723404662, -1.0406115663408568], [1.0404507995300265, -0.949733837000859], [0.7949715584157495, -0.9513031517713337]], "left_eyebrow": [[-1.7178558691183292, -1.4890320155365384], [-1.4100259959939363, -1.640494897769868], [-1.041807134322521, -1.6381409256141557], [-0.7048616708293185, -1.543928402386899], [-0.3681123716824253, -1.419030974020358]], "right_eyebrow": [[0.3374442821748113, -1.3838342889159583], [0.7062516368851546, -1.4735350321781], [1.0134930169706193, -1.5329431989935758], [1.3510269735027498, -1.530785391184173], [1.687580108303334, -1.3752030576783472]], "nose_bridge": [[-0.0022474821667221624, -1.0484581401932307], [-0.0044052899761249705, -0.7109241836611], [-0.006563097785527778, -0.37339022712896924], [-0.008720905594930585, -0.035856270596838644]], "left_eye": [[-1.2908173336703663, -1.0873819478775077], [-1.0752383403101367, -1.2087484180104806], [-0.7990741940565751, -1.2069829388936966], [-0.6161417492987236, -1.0216965219801328], [-0.8313284139663345, -0.9616998621257291], [-1.107492560219896, -0.9634653412425132]]}]},
"000013": {"embedding": [[-0.015015589073300362, 0.09079690277576447, 0.02322271466255188, -0.11722830682992935, -0.13075974583625793, 0.020044727250933647, 0.01487589068710804, -0.012897282838821411, 0.15700940787792206, -0.07059793174266815, 0.20109963417053223, 0.02908036857843399, -0.2607272267341614, -0.08351251482963562, -0.030536212027072906, 0.03808794915676117, -0.15053367614746094, -0.12096621096134186, -0.10280611366033554, -0.169711634516716, -0.06194208562374115, 0.03917642682790756, -0.016696834936738014, 0.006592068821191788, -0.20820282399654388, -0.15664002299308777, -0.03137172758579254, -0.1631300300359726, 0.03975557163357735, -0.20310892164707184, 0.023996621370315552, 0.14490759372711182, -0.11170466244220734, -0.014412090182304382, -0.038238294422626495, 0.010302167385816574, -0.06760350614786148, -0.0750238373875618, 0.18316319584846497, 0.030795272439718246, -0.07538256049156189, -0.04617326706647873, -0.03046243265271187, 0.3085274398326874, 0.18538732826709747, -0.06657512485980988, 0.08590241521596909, -0.07665517926216125, 0.16569426655769348, -0.2519795298576355, 0.02956504374742508, 0.15816670656204224, 0.07006263732910156, 0.06979350745677948, 0.06228281930088997, -0.17717039585113525, 0.004498736932873726, 0.1332901269197464, -0.20004424452781677, 0.1319199502468109, 0.004764221608638763, -0.11436571925878525, -0.08660342544317245, -0.1089191883802414, 0.1654125452041626, 0.06708680093288422, -0.0709734708070755, -0.19192937016487122, 0.2522912919521332, -0.17899848520755768, -0.12577280402183533, 0.15385058522224426, -0.10735003650188446, -0.1637498289346695, -0.23865088820457458, 0.0681178867816925, 0.27140095829963684, 0.2065403312444687, -0.08221754431724548, 0.05225352197885513, -0.0984848365187645, -0.08341525495052338, -0.0408182293176651, 0.05499757081270218, -0.1268661916255951, -0.0016085468232631683, -0.05768803879618645, 0.07961564511060715, 0.24000155925750732, -0.051840197294950485, -0.06360475718975067, 0.15821270644664764, 0.028650982305407524, -0.0361083559691906, 0.01605837047100067, -0.04265674203634262, -0.08128304034471512, 0.036303043365478516, -0.08655069768428802, 0.04912537336349487, 0.060332298278808594, -0.22460013628005981, -0.023578617721796036, 0.0896819606423378, -0.1511174738407135, 0.18085019290447235, -0.025181202217936516, -0.07537595182657242, -0.11146104335784912, -0.1023755818605423, -0.08277805149555206, 0.0638277530670166, 0.26543524861335754, -0.29614704847335815, 0.22830381989479065, 0.19227172434329987, 0.16658782958984375, 0.14010584354400635, 0.05132646486163139, 0.01864086277782917, 0.005345663987100124, -0.07407832145690918, -0.13140904903411865, -0.09023258090019226, 0.043132174760103226, -0.05960492789745331, 0.00861272681504488, 0.05138770490884781]], "landmarks": [{"left_eyebrow": [[-1.6869317922418194, -1.159762937324792], [-1.3660559400310501, -1.3354965970541555], [-0.9865856085819193, -1.3945390781640172], [-0.5777682595278851, -1.3660382863163916], [-0.1980490381501431, -1.2790923491875705]], "left_eye": [[-1.1611743746396723, -1.0438682064768452], [-0.9277422394149463, -1.1318594813058327], [-0.6649630865853172, -1.1323074831773325], [-0.4603304111225502, -0.9866675108387051], [-0.6938621023187206, -0.9570716033051909], [-0.9274435715006131, -0.9566733794194133]], "right_eyebrow": [[0.32745948952339293, -1.3091860365783068], [0.677632581353343, -1.4265741069979194], [1.057152690788196, -1.4564189044600448], [1.407574672546757, -1.4278185566409745], [1.6123069039809685, -1.2237832170068739]], "nose_bridge": [[0.06512833856526366, -1.0459588818771777], [0.09492335804166666, -0.6956364560900611], [0.12471837751806966, -0.3453140303029446], [0.12531571334673608, 0.005058173469894281]], "transform": {"scale": 34.24924246706635, "angle": 0.0017048591283966295, "center": [123.70833333333333, 164.81944444444446]}, "bottom_lip": [[0.8562035862688722, 0.558569713133834], [0.5355268460009919, 0.851094107454144], [0.2729965830999739, 0.9975305275643267], [0.03946489190380347, 1.0271264350978409], [-0.1941663552638113, 0.9983269753358819], [-0.5447376709795388, 0.882133576573602], [-0.9249048942287807, 0.5324084866151517], [-0.8080146036663901, 0.5906047419677362], [-0.1944650231781445, 0.8231408734494625], [0.039166223989470256, 0.8519403332114215], [0.27264813719991843, 0.7931467420301708], [0.7394626296636481, 0.5879665087244594]], "top_lip": [[-0.9249048942287807, 0.5324084866151517], [-0.5160377671890244, 0.5901069621105142], [-0.16566556341618555, 0.5895096262818477], [0.06801546173715141, 0.6475067696915432], [0.27229969129986303, 0.5887629564960147], [0.5642765277772286, 0.5882651766387926], [0.8562035862688722, 0.558569713133834], [0.7394626296636481, 0.5879665087244594], [0.27244902525702963, 0.6763560074392244], [0.06811501770859582, 0.7059021369870163], [-0.16551622945901895, 0.6771026772250573], [-0.8080146036663901, 0.5906047419677362]], "nose_tip": [[-0.341598335088438, 0.1518430394801324], [-0.1370652155971154, 0.23908764452328668], [0.09661580955622154, 0.29708478793298215], [0.30090003911893315, 0.23834097473745364], [0.475936807048186, 0.1504492558799107]], "right_eye": [[0.5031931492527566, -0.9883101843675378], [0.736475950520316, -1.1638945101397347], [0.9700076417164862, -1.193490417673249], [1.1745905391935312, -1.0770481289823581], [0.9995039932785561, -1.0183540937725517], [0.7367746184346492, -0.9887084082533154]], "chin": [[-2.2126892098439663, -1.2756576681727385], [-2.153298282834049, -0.6918035511894515], [-2.064759450162118, -0.13719689583962338], [-1.9762703954759082, 0.3882120758624683], [-1.8002380678322114, 0.8842740299596568], [-1.4491191942735395, 1.3216419488470388], [-1.039704509390839, 1.7005149444675034], [-0.5428958855078174, 1.962447871539855], [-0.01718824589139257, 2.049144918740065], [0.508220725810699, 1.9606558640538558], [0.9456384226838034, 1.6387346741429205], [1.2953635126422536, 1.2585674508936786], [1.5865936793337863, 0.8201044163204082], [1.7025879661531773, 0.3527423660137342], [1.760137107691373, -0.14371781196923192], [1.846834154891583, -0.6694254515856568], [1.9042837404583344, -1.224280996864096]]}], "url": "http://i.imgur.com/O93NgpE.jpg"},
"000014": {"landmarks": [{"nose_bridge": [[0.16531322063507284, -0.9939442591748996], [0.17240731525309064, -0.6106791965885789], [0.21144016508663518, -0.22800530855375978], [0.218534259704653, 0.1552597540325608]], "right_eye": [[0.5805170384369202, -1.0016295283444188], [0.8011324521880998, -1.1654615262825627], [1.0560513193608119, -1.2021296779101014], [1.249457374308477, -1.10986045957253], [1.092128296436849, -0.9791495659529158], [0.8372094292641369, -0.9424814143253772]], "left_eyebrow": [[-1.6664281431284782, -1.5670836588343224], [-1.3494052891792168, -1.700750425211444], [-0.9661402265928962, -1.707844519829462], [-0.5816928149035727, -1.6510611040164265], [-0.19547187955974477, -1.4984614225568107]], "transform": {"center": [122.25, 164.01388888888889], "scale": 31.304561935823784, "angle": 0.018507516901952095}, "top_lip": [[-0.6976396741700965, 0.715362654690058], [-0.37884329656633087, 0.6775121539595165], [-0.09198567417809188, 0.6402528277804764], [0.1008292062180714, 0.7005832909025208], [0.2599318077442035, 0.6656886629294867], [0.45156433903736376, 0.6621416156204778], [0.6763179746490537, 0.7218809041910209], [0.5491541283384485, 0.7561843576125535], [0.2628876805017109, 0.8253824390071204], [0.0718463237600521, 0.8608682415316559], [-0.08843862686908298, 0.8318853590736368], [-0.5692934787564882, 0.7449367116995789]], "nose_tip": [[-0.25877354487374327, 0.2599436379516632], [-0.06536748992607852, 0.35221285628923443], [0.15997732023711295, 0.4438909000753042], [0.3498363278757688, 0.34452758711971515], [0.5077565802988979, 0.24575544871562757]], "chin": [[-2.204066410828919, -1.2695848945190567], [-2.1614865136863655, -0.6952784751910774], [-2.055029106112759, -0.12215440496610096], [-1.8858765372111013, 0.38590980572481903], [-1.6214988772143655, 0.860261737545708], [-1.2630784752255537, 1.2370238800655124], [-0.8727193180212153, 1.613194848033815], [-0.4202561740403279, 1.8923672012525345], [0.028068748080049145, 1.9479682679625672], [0.40896911246036377, 1.8131191524824426], [0.6579762341180613, 1.457063448699637], [0.8744534260087304, 1.0696601642528059], [1.0909306178993994, 0.6822568798059748], [1.2748778800230407, 0.26350601469511864], [1.4262952123796535, -0.18659243107976278], [1.545182614969238, -0.6680384575186694], [1.5682537519122424, -1.1477109603030717]], "right_eyebrow": [[0.5391194903973697, -1.5120584372413448], [0.8236124145796028, -1.6770727842824917], [1.1098788624163403, -1.7462708656770585], [1.3961453102530779, -1.8154689470716254], [1.5907337143037454, -1.6593222183030008]], "bottom_lip": [[0.6763179746490537, 0.7218809041910209], [0.45806725910388013, 1.0134679229912718], [0.2687994260167258, 1.1447699911623874], [0.07775806927506695, 1.1802557936869231], [-0.11387446201809334, 1.183802840995932], [-0.4048703062668427, 0.9974908806662851], [-0.6976396741700965, 0.715362654690058], [-0.5692934787564882, 0.7449367116995789], [-0.08843862686908298, 0.8318853590736368], [0.10378507897557882, 0.8602770669801544], [0.2628876805017109, 0.8253824390071204], [0.5491541283384485, 0.7561843576125535]], "left_eye": [[-1.2405831833996042, -0.9998713341243609], [-0.9874378398813963, -1.1323557513984797], [-0.7313366236056812, -1.105146392594965], [-0.5048094643394867, -0.9495908383778415], [-0.7591371569606974, -0.8809839315347763], [-1.0146471986849113, -0.8762545351227644]]}], "embedding": [[-0.19078142940998077, 0.15320372581481934, 0.09610514342784882, -0.07675475627183914, -0.15212464332580566, -0.06438332796096802, -0.05636508762836456, -0.12805578112602234, 0.17420761287212372, -0.08977990597486496, 0.12108366936445236, -0.14288312196731567, -0.26823487877845764, 0.018783241510391235, -0.07658238708972931, 0.19422613084316254, -0.10990110784769058, -0.16183383762836456, 0.0001901756040751934, -0.038291625678539276, 0.018295910209417343, 0.020120451226830482, -0.038111548870801926, 0.14163920283317566, -0.07757440209388733, -0.31876224279403687, -0.0844162106513977, -0.026875201612710953, -0.08582715690135956, -0.10710103809833527, -0.04406451806426048, 0.13529150187969208, -0.20349007844924927, -0.07481124997138977, 0.023188769817352295, 0.1998881697654724, 0.05805741623044014, 0.010434351861476898, 0.10637291520833969, -0.017586590722203255, -0.25604480504989624, -0.03430800884962082, 0.16654953360557556, 0.3179265558719635, 0.203018918633461, 0.056219976395368576, -0.06633883714675903, -0.04288332536816597, 0.09195776283740997, -0.16716960072517395, -0.0130617031827569, 0.14273357391357422, 0.11289376020431519, 0.07249082624912262, 0.006346874870359898, -0.19010883569717407, 0.020337089896202087, 0.07896337658166885, -0.15130183100700378, -0.01808561384677887, 0.06259961426258087, -0.10053049027919769, 2.3107975721359253e-05, -0.0687364935874939, 0.30798056721687317, 0.08611877262592316, -0.11449038237333298, -0.11383265256881714, 0.1754230260848999, -0.19172260165214539, -0.0944138765335083, 0.02078838460147381, -0.14575549960136414, -0.11428271234035492, -0.3333059549331665, -0.014449606649577618, 0.35361745953559875, 0.1074255034327507, -0.19418774545192719, 0.10578873008489609, -0.057375337928533554, -0.002765803597867489, -0.01406557485461235, 0.1565524786710739, -0.049752794206142426, 0.12758910655975342, -0.044607438147068024, -0.005315661430358887, 0.21914878487586975, 0.0032231006771326065, 0.009839462116360664, 0.20991410315036774, 0.021306533366441727, 0.02908417582511902, 0.04631969705224037, 0.00971224531531334, -0.0644729733467102, -0.05678102374076843, -0.22817906737327576, -0.06894827634096146, -0.048293955624103546, -0.08468042314052582, -0.017117172479629517, 0.12903070449829102, -0.30930212140083313, 0.13737042248249054, 0.06825105845928192, 0.003995874896645546, -0.07926973700523376, 0.11375398933887482, -0.06182840093970299, -0.05455769598484039, 0.1838061511516571, -0.26859062910079956, 0.1841675490140915, 0.19109533727169037, 0.011685467325150967, 0.13962936401367188, 0.07409952580928802, 0.09629752486944199, 0.03647056594491005, -0.017349861562252045, -0.03527785837650299, -0.08744103461503983, 0.11364249885082245, -0.09112948179244995, 0.10300110280513763, 0.10101291537284851]], "url": "http://i.imgur.com/pVhTFtq.jpg"},
"000015": {"landmarks": [{"top_lip": [[-0.6644639653875787, 0.6866063383630392], [-0.40005018237495715, 0.5398894316028899], [-0.1356821565572911, 0.4812850318497504], [0.06988318832909435, 0.5401334699759867], [0.3048803784777572, 0.4815138178245286], [0.5398013066348273, 0.5697483440180866], [0.7159500586572539, 0.716694036753014], [0.598466715981241, 0.7166330271597399], [0.3047888640878459, 0.6577388318385479], [0.06982217873582017, 0.6576168126519994], [-0.13575841854888382, 0.6281392101947665], [-0.5763514583805691, 0.6866520955579948]], "right_eye": [[0.5406554409406658, -1.0750184534460936], [0.746297047818644, -1.1630241936648733], [0.9518776451033479, -1.1335465912076403], [1.128041649524093, -1.0159717341417163], [0.9518166355100738, -1.0160632485316274], [0.7462360382253698, -1.0455408509888606]], "nose_tip": [[-0.34103396786721685, 0.011244894357469164], [-0.13546862298083145, 0.0700933324837054], [0.09946755757455718, 0.12895702300826023], [0.2757078239868951, 0.09967770172916825], [0.4519633427975514, 0.0410275447810731]], "left_eye": [[-1.1628225230648837, -1.1346447638865755], [-0.9571656637885869, -1.2520213397743585], [-0.7515698141055646, -1.2519145729861287], [-0.5754058096848194, -1.1343397159202047], [-0.7516308236988387, -1.134431230310116], [-0.9572266733818611, -1.1345379970983458]], "chin": [[-2.073409943193895, -0.9588925742204311], [-2.0443136506946256, -0.43020227978005465], [-1.9564756868573496, 0.09851851945695883], [-1.8686224706217551, 0.5978684830249692], [-1.7220123306498354, 1.0678781157206134], [-1.4285327599345816, 1.508593174738847], [-1.0175088369500407, 1.831885900674342], [-0.5183266497635343, 2.067111876797783], [0.03968872315088971, 2.1261433437038417], [0.5390386867189, 2.0382901274682474], [0.9503524052714935, 1.8035369756926813], [1.2736146264103514, 1.4512547240461466], [1.4794392620681518, 1.0107989557993282], [1.5384402241775739, 0.5115252542229107], [1.5680550982196737, 0.04160713591717781], [1.627040807930777, -0.4282957299902365], [1.6566556819728768, -0.8982138482959695]], "left_eyebrow": [[-1.5445518723720142, -1.3110680590787358], [-1.30946316783344, -1.5459127252442133], [-0.9863229658811306, -1.6632282915387222], [-0.6339034426497291, -1.6043035914208932], [-0.31088525988396787, -1.4866524723633763]], "right_eyebrow": [[0.3939995437737908, -1.456915579134728], [0.68773840526046, -1.515504726489549], [1.0108175976194953, -1.515336950108045], [1.304480197114572, -1.4270719191178498], [1.4805831919420427, -1.1920137193759128]], "bottom_lip": [[0.7159500586572539, 0.716694036753014], [0.51026269458432, 0.8928122839788034], [0.3046210877063419, 0.9808180241975833], [0.06963914995599763, 1.0100668406800382], [-0.16531228299770956, 0.9805739858244866], [-0.42960404682378284, 0.8923242072326101], [-0.6644639653875787, 0.6866063383630392], [-0.5763514583805691, 0.6866520955579948], [-0.1651902638111612, 0.7456073004724609], [0.06976116914254599, 0.7751001553280124], [0.30474310689289025, 0.7458513388455577], [0.598466715981241, 0.7166330271597399]], "nose_bridge": [[0.04142749655920384, -1.2221319225625247], [0.0706153034483845, -0.8696666421361677], [0.09980311033756517, -0.5172013617098106], [0.12899091722674588, -0.1647360812834534]], "transform": {"angle": -0.000519304153254618, "scale": 34.04737530900288, "center": [123.61111111111111, 167.61111111111111]}}], "url": "http://i.imgur.com/78khl5B.jpg", "embedding": [[-0.10258230566978455, 0.15717366337776184, 0.11837825179100037, 0.0059003643691539764, -0.12416578829288483, -0.028757311403751373, -0.000505080446600914, -0.04081471264362335, 0.10880092531442642, 0.006849881261587143, 0.22189809381961823, -0.02899339236319065, -0.30653178691864014, -0.14382120966911316, 0.03714456409215927, 0.14383883774280548, -0.17435602843761444, -0.08876410126686096, -0.10821787267923355, -0.1385476142168045, 0.07439427822828293, 0.06224603205919266, 0.026843484491109848, -0.015133127570152283, -0.2476813644170761, -0.3036960959434509, -0.06934276223182678, -0.049998387694358826, 0.08678610622882843, -0.13059622049331665, -0.09192703664302826, 0.056576721370220184, -0.20718713104724884, -0.1730954349040985, 0.09906986355781555, 0.07905785739421844, 0.0029310297686606646, -0.10893039405345917, 0.14376766979694366, 0.0220232754945755, -0.08653560280799866, 0.07849143445491791, 0.07572343945503235, 0.25982919335365295, 0.20223352313041687, 0.07509607076644897, 0.0034187748096883297, -0.06723232567310333, 0.14584600925445557, -0.29654139280319214, 0.07533444464206696, 0.1553412675857544, 0.1002737432718277, 0.03261232376098633, 0.1300806850194931, -0.16972015798091888, 0.0031981109641492367, 0.172773540019989, -0.2790283262729645, 0.054933831095695496, 0.034280989319086075, -0.09096232801675797, -0.11615252494812012, -0.10429065674543381, 0.10349301248788834, 0.10710444301366806, -0.12361001968383789, -0.11862088739871979, 0.15502198040485382, -0.12296032160520554, -0.02404380775988102, 0.05014756694436073, -0.10388681292533875, -0.1359846442937851, -0.36478278040885925, 0.09818979352712631, 0.40703085064888, 0.15307609736919403, -0.26011714339256287, -0.026929108425974846, 0.04244135692715645, 0.011674202978610992, 0.070799820125103, 0.1009531170129776, -0.1008605808019638, -0.07273536920547485, -0.06783298403024673, 0.07542220503091812, 0.10485686361789703, 0.024786584079265594, -0.03828660398721695, 0.24393753707408905, 0.06409783661365509, 0.0567513145506382, 0.055215880274772644, 0.034926898777484894, -0.13296498358249664, -0.08901380747556686, -0.10374116897583008, 0.019656063988804817, 0.09669991582632065, -0.10734487324953079, -0.031930528581142426, 0.17562611401081085, -0.12753643095493317, 0.09277384728193283, -0.027679115533828735, -0.07394474744796753, -0.04874253645539284, -0.10093522071838379, -0.06002964824438095, 0.01754133775830269, 0.09514699876308441, -0.31853610277175903, 0.17750239372253418, 0.2433702051639557, -0.09314316511154175, 0.1045404002070427, 0.021167200058698654, 0.01707564666867256, 0.05007932707667351, 0.022420521825551987, -0.1274241954088211, -0.15806053578853607, 0.06272908300161362, -0.1433103233575821, 0.024959344416856766, -0.03172530606389046]]},
"000016": {"landmarks": [{"top_lip": [[-0.7700127828062002, 0.6493476569348918], [-0.561425328974926, 0.5625828600306741], [-0.29446568918554417, 0.5654393953492721], [-0.05780301722133757, 0.6273029022523329], [0.15046704379675901, 0.5702002875469354], [0.44677147297178355, 0.6030363978775309], [0.7721032987192732, 0.6955142654189447], [0.6237923877251722, 0.6939273013530569], [0.17885965474286902, 0.6891664091553937], [-0.05875519566087022, 0.7162894488487934], [-0.32508004982389704, 0.6541085491325551], [-0.6516814468240969, 0.6802794103864223]], "nose_bridge": [[-0.09840120564150255, -1.1234006331044148], [-0.10220991939963316, -0.7674544467185721], [-0.10601863315776375, -0.41150826033272964], [-0.13948952911471454, -0.05587946676006466]], "chin": [[-1.6730360046843942, -0.9029249946122632], [-1.6187899252975946, -0.4276952938047847], [-1.5645438459107948, 0.04753440700269379], [-1.5102977665239954, 0.5227641078101722], [-1.3964099299263775, 0.9689664120451856], [-1.1929007611059443, 1.3567965303220912], [-0.8704254706770527, 1.7162340376528868], [-0.5176532124229856, 2.0166645733992192], [-0.044010475681394864, 2.1107294050065213], [0.46088140732490385, 2.056800718432899], [0.997339829409088, 1.8252163314795333], [1.4164190939507018, 1.4737136444781762], [1.7471465975222098, 1.0619344146396463], [1.9301979757259717, 0.5892438563375884], [1.9949180179476307, 0.08562154458399977], [2.0599554529824666, -0.4476629493684089], [2.095648098631661, -1.0109270183328154]], "bottom_lip": [[0.7721032987192732, 0.6955142654189447], [0.4148875410807205, 0.8103542804560949], [0.14729311566498351, 0.8668221095351374], [-0.09032173473875574, 0.8939451492285373], [-0.3569639817149601, 0.861426431711119], [-0.5639644714803465, 0.7998803176212358], [-0.7700127828062002, 0.6493476569348918], [-0.6516814468240969, 0.6802794103864223], [-0.32508004982389704, 0.6541085491325551], [-0.0880999850465129, 0.6863098738367958], [0.1491974725440488, 0.6888490163422162], [0.6237923877251722, 0.6939273013530569]], "transform": {"center": [126.72222222222223, 166.83333333333334], "scale": 33.71103145819345, "angle": -0.010699843273325842}, "left_eye": [[-1.1671919432385627, -1.0458402277823458], [-0.9579697037809336, -1.1919293890842042], [-0.720672246190372, -1.1893902465787838], [-0.48496175266569796, -1.0385401930792622], [-0.7225766030694373, -1.0114171533858625], [-0.9598740606599989, -1.0139562958912829]], "left_eyebrow": [[-1.521868558371695, -1.1682976703357573], [-1.400045901444639, -1.4636499210712492], [-1.1318166904025468, -1.5794421145479323], [-0.8055326862155243, -1.575950793602979], [-0.45053867826921445, -1.483155533248388]], "nose_tip": [[-0.4376983151688044, 0.0892575161022609], [-0.2606774004154158, 0.18014841957778685], [-0.0836564856620272, 0.2710393230533128], [0.12493096816924694, 0.18427452614909498], [0.33351842200052106, 0.09750972924487719]], "right_eye": [[0.4942076527085466, -1.0577284124432234], [0.7334094671781736, -1.2331623631307242], [0.9707069247687352, -1.2306232206253038], [1.1770726289077664, -1.1097527421377802], [0.9688025678896699, -1.0526501274323825], [0.7315051102991083, -1.055189269937803]], "right_eyebrow": [[0.29133326951446836, -1.504882895117769], [0.6488664199661986, -1.6493850923537396], [1.0347921813640388, -1.674921167981252], [1.3897861893103487, -1.5821259076266605], [1.623909718769135, -1.2829649431330379]]}], "embedding": [[-0.08782485127449036, 0.07313388586044312, 0.10722362995147705, 0.06715099513530731, -0.12049150466918945, -0.06705790758132935, -0.04909858852624893, -0.07186180353164673, 0.13561899960041046, -0.0777859315276146, 0.1807136833667755, 0.009798074141144753, -0.2702034115791321, -0.13984404504299164, 0.01254948228597641, 0.147077739238739, -0.012118928134441376, -0.2181759625673294, -0.08443492650985718, -0.12861663103103638, -0.04576931148767471, 0.014312852174043655, -0.03207075223326683, -0.014228135347366333, -0.17386238276958466, -0.3614879250526428, -0.0217145923525095, -0.03452374041080475, 0.06481938809156418, -0.1416805386543274, -0.03518572449684143, 0.13368719816207886, -0.14336499571800232, -0.03698687255382538, 0.08083150535821915, 0.16325846314430237, -0.00621146010234952, -0.016158275306224823, 0.19771318137645721, -0.043479546904563904, -0.16716767847537994, 0.06242315471172333, 0.02868662029504776, 0.2901252508163452, 0.13937155902385712, 0.025900939479470253, 0.11646589636802673, -0.0375606007874012, 0.12665769457817078, -0.23658519983291626, 0.05778277665376663, 0.1454935371875763, 0.03504357486963272, 0.021619074046611786, 0.10410833358764648, -0.20950356125831604, -0.06629414856433868, 0.1676729917526245, -0.21825118362903595, 0.1773800253868103, 0.09624689817428589, -0.10669241845607758, -0.16564813256263733, -0.07688945531845093, 0.1295531839132309, 0.03992085158824921, -0.0998639166355133, -0.1587163507938385, 0.22401505708694458, -0.21035532653331757, 0.033744703978300095, 0.12031029909849167, -0.06084798276424408, -0.1984386146068573, -0.20231440663337708, 0.10720781981945038, 0.3964362144470215, 0.1948123574256897, -0.16793133318424225, 0.05637538433074951, 0.031644295901060104, 0.03181832656264305, 0.053728677332401276, -0.04923667013645172, -0.05688606947660446, -0.015804871916770935, -0.1340140849351883, 0.039723895490169525, 0.24419279396533966, 0.11032144725322723, 0.001537613570690155, 0.19141864776611328, 0.04342581331729889, 0.015736710280179977, 0.01966196484863758, 0.012404270470142365, -0.061628904193639755, -0.05102302134037018, -0.1420004665851593, -0.029202140867710114, 0.07056824862957001, -0.18488597869873047, 0.03442801535129547, 0.011329397559165955, -0.12540991604328156, 0.18003597855567932, -0.02742040529847145, 0.07098498195409775, -0.02671886421740055, 0.10571913421154022, -0.13332800567150116, 0.02974172681570053, 0.19102703034877777, -0.3004200756549835, 0.26265472173690796, 0.20063313841819763, 0.0969846323132515, 0.132806658744812, 0.07733336836099625, 0.04608969762921333, 0.05176360905170441, -0.08775874227285385, -0.09972406178712845, -0.1731777787208557, -0.02656564861536026, -0.09405243396759033, 0.08162131905555725, 0.08709476888179779]], "url": "http://i.imgur.com/eSxCkUx.jpg"},
"000018": {"embedding": [[-0.07676579803228378, 0.1285332292318344, 0.08278213441371918, -0.08645616471767426, -0.12261722981929779, -0.02738957852125168, -0.023623883724212646, -0.10135780274868011, 0.20791095495224, -0.12336353957653046, 0.09756016731262207, -0.16508789360523224, -0.2669979929924011, 0.06677640229463577, -0.144120454788208, 0.20980030298233032, -0.22783342003822327, -0.2256648987531662, -0.10469811409711838, -0.1224578395485878, -0.03407061845064163, 0.09314566850662231, -0.041741907596588135, 0.13471904397010803, -0.15415823459625244, -0.3796447515487671, -0.036854878067970276, -0.12534093856811523, -0.006814959459006786, -0.10052825510501862, -0.007453525438904762, 0.21074259281158447, -0.11245417594909668, -0.0022057555615901947, 0.052898287773132324, 0.1713489592075348, -0.06886996328830719, -0.07752303779125214, 0.21513012051582336, 0.07900978624820709, -0.23916718363761902, -0.03751396760344505, 0.15672045946121216, 0.3650020658969879, 0.29059281945228577, -0.07667483389377594, 0.013896821066737175, -0.034980982542037964, 0.2131308615207672, -0.3062657415866852, -0.04170463606715202, 0.20314854383468628, 0.16262713074684143, 0.17099687457084656, 0.09733471274375916, -0.16427361965179443, -0.025731481611728668, 0.14432968199253082, -0.1984924077987671, 0.09374076873064041, 0.09776878356933594, -0.2444433569908142, 0.04938904196023941, -0.030633028596639633, 0.22406913340091705, 0.10593395680189133, -0.12190967053174973, -0.11844783276319504, 0.26177525520324707, -0.18326546251773834, -0.0116601986810565, 0.08368795365095139, -0.10173341631889343, -0.09218253195285797, -0.21910150349140167, -0.013195931911468506, 0.38409507274627686, 0.0943848267197609, -0.02422509156167507, 0.03619300574064255, -0.1026664450764656, -0.04629794508218765, -0.07355470210313797, 0.12894293665885925, -0.07575076818466187, -0.06837321817874908, -0.08518563210964203, 0.0853666216135025, 0.20267906785011292, -0.04880574345588684, 0.04231739416718483, 0.1785225123167038, -0.06355703622102737, -0.01368547324091196, 0.0097695617005229, 0.07615214586257935, -0.2751445472240448, 0.033394813537597656, -0.10304693877696991, -0.0016402825713157654, -0.08002530038356781, -0.10419649630784988, 0.06526657193899155, 0.05707168951630592, -0.10526297986507416, 0.11960339546203613, -0.049235910177230835, 0.0030553899705410004, -0.05219580605626106, 0.011962726712226868, -0.03626943379640579, -0.035727452486753464, 0.20974676311016083, -0.2273242473602295, 0.15889015793800354, 0.08724688738584518, -0.028669241815805435, 0.15184015035629272, 0.025697648525238037, 0.08524089306592941, -0.011613855138421059, -0.09870626032352448, -0.08777875453233719, -0.04864778742194176, 0.02951090782880783, 0.015572074800729752, -0.02003082074224949, 0.02957015112042427]], "landmarks": [{"top_lip": [[-0.8620675452973154, 0.6200758923864983], [-0.5235527792828554, 0.4974692009030121], [-0.21591571812468355, 0.46710252488331794], [-0.0006366021618255246, 0.4981374693816351], [0.24548090874681341, 0.46769217354092646], [0.5530393500839709, 0.4988450477707654], [0.8605191716001137, 0.5915174722501371], [0.7374407611905407, 0.6221200077328746], [0.24528435919427724, 0.6214910491647588], [-0.0008331517143617069, 0.6519363450054674], [-0.24687204280198619, 0.620862090596643], [-0.7083079795839904, 0.651032217063801]], "right_eye": [[0.5856860009130846, -0.9775848483075177], [0.8012009763389861, -1.1311085545577995], [1.0164800923018442, -1.1000736100594821], [1.200881503408414, -0.976798650097373], [1.016283542749308, -0.9462747344356498], [0.8009651168759426, -0.9465499038092005]], "transform": {"scale": 32.509964047129905, "center": [125.0, 166.80555555555554], "angle": -0.0012779641251463194}, "nose_tip": [[-0.3692035649119218, 0.06702889870881774], [-0.18472353398433747, 0.12878430842139407], [-0.031003278181519624, 0.19050040822346317], [0.15363399238809364, 0.12921671743697366], [0.3075114878329404, 0.06789371673997695]], "left_eyebrow": [[-1.5976290743772186, -1.4725322539497951], [-1.3820354791303027, -1.6875755104496095], [-1.0743197981511161, -1.7794617367188366], [-0.7360015816891924, -1.7482695525784906], [-0.4593601551188304, -1.5941168877600929]], "chin": [[-1.936890728691316, -0.7654898350957459], [-1.8759608270993917, -0.3040145884032344], [-1.784310460293208, 0.1882597433245507], [-1.692620783576517, 0.6497742999275694], [-1.5085731616645124, 1.0498872360125766], [-1.232206904467701, 1.4193583267043397], [-0.8634433921650687, 1.6966680217533245], [-0.4022826247566152, 1.8818163211595318], [0.05903538229386729, 1.9439255200666736], [0.48975085386161227, 1.8829563085642418], [0.9206235650713862, 1.6989479965627443], [1.2286144154241232, 1.391743344420152], [1.4751250254378345, 1.0537002973317786], [1.629434929898261, 0.6540197702623509], [1.7222645940196617, 0.22350084824714214], [1.8150942581410625, -0.20701807376806666], [1.877203457048204, -0.6683360808185491]], "bottom_lip": [[0.8605191716001137, 0.5915174722501371], [0.5832880963721432, 0.8987614343032366], [0.27553310548244964, 1.02140743569723], [0.029415594573810683, 1.0518527315379385], [-0.21666260642432103, 1.0515382522538805], [-0.5548628931547231, 0.9280667427392353], [-0.8620675452973154, 0.6200758923864983], [-0.7083079795839904, 0.651032217063801], [-0.21634812714026314, 0.805460051255749], [0.029730073857868574, 0.805774530539807], [0.2758082748560003, 0.8060890098238648], [0.7374407611905407, 0.6221200077328746]], "nose_bridge": [[0.0014468230950580086, -1.1321306122309875], [0.0010144140794784075, -0.7937730858585564], [-0.030177770060867658, -0.45545486939663254], [-0.030570869165940023, -0.1478571181489679]], "right_eyebrow": [[0.46343309862416354, -1.592937590444876], [0.7711880895138571, -1.7155835918388695], [1.0787858407615216, -1.715190492733797], [1.3555058871528982, -1.6225573781649323], [1.5705491436527126, -1.4069637829180166]], "left_eye": [[-1.2291407314481368, -0.9799041330274447], [-1.0136257560222355, -1.1334278392777264], [-0.7983466400593773, -1.102392894779409], [-0.583185453828041, -0.9790786249067928], [-0.7985431896119135, -0.9485940191555768], [-1.0446213906100452, -0.9489084984396347]]}], "url": "http://i.imgur.com/21S3Dz3.jpg"},
"000020": {"landmarks": [{"left_eye": [[-1.0787081805135257, -0.9402856896722117], [-0.8902958979845143, -1.1085343235157423], [-0.6717105391094149, -1.140375637805265], [-0.45034478366192465, -1.0352535532263014], [-0.6415374627633268, -1.0039683182512569], [-0.8601228216384262, -0.9721270039617343]], "right_eye": [[0.4804502493293017, -1.0815529296922568], [0.69625521163201, -1.2503576428502656], [0.9159527291360658, -1.2274135975923939], [1.1104818841243371, -1.094342753925255], [0.9187331257084568, -1.0904501987239077], [0.6995916875188791, -1.0860015642080822]], "right_eyebrow": [[0.11489206392510906, -1.539999454756893], [0.4967213428134352, -1.6299626044806788], [0.880218859645196, -1.6377477148833735], [1.211711413501953, -1.507457267788626], [1.4632502452955314, -1.2659278636556548]], "nose_bridge": [[-0.07185198066046763, -1.2895727815922708], [-0.09479602591833935, -1.069875264088215], [-0.11829615049068927, -0.8775704263578565], [-0.1406841164340828, -0.6304802290801036]], "chin": [[-1.754071826509826, -0.4607081506574049], [-1.7457306367926535, -0.04981795405194702], [-1.7362772884465243, 0.4158576021009052], [-1.726823940100395, 0.8815331582537574], [-1.6357486317476526, 1.318147796689478], [-1.4093781624698587, 1.669803999231716], [-1.0482686115814919, 1.9091090861067743], [-0.5798126588562486, 2.036619136629131], [-0.058239584527045495, 2.0808389892014403], [0.4890579316324202, 2.0423247231381794], [0.9525091705273597, 1.9233006556972614], [1.4142921714788645, 1.722098548935252], [1.7363313769894928, 1.3867134398771475], [1.9745243052355947, 0.9708185294413859], [2.0740855966697764, 0.47552597625692383], [2.091468848782866, -0.01809833898410389], [2.108852100895956, -0.5117226542251315]], "bottom_lip": [[0.7077880838717857, 0.667686020623016], [0.4081368443045512, 0.7559809324033676], [0.13365396725310105, 0.7341490457744523], [-0.05809479116277927, 0.7380416009757995], [-0.24984354957865967, 0.7419341561771469], [-0.44159230799453997, 0.7458267113784941], [-0.662401984127552, 0.668097306573228], [-0.5533873443472415, 0.638480309541618], [-0.22523126637735333, 0.6044146779941828], [-0.060875187735170186, 0.6010782021073137], [0.13087357068071015, 0.5971856469059664], [0.5976612854625187, 0.6425176581072316]], "transform": {"scale": 36.49858360180942, "center": [125.66666666666667, 171.11111111111111], "angle": 0.020297501043008346}, "left_eyebrow": [[-1.4090885757413263, -1.015790777219565], [-1.2782420493321003, -1.3198906513026252], [-0.9528663679346031, -1.4909196817185466], [-0.5978736895054961, -1.5529340723541571], [-0.24065669381847626, -1.5053777438949794]], "top_lip": [[-0.662401984127552, 0.668097306573228], [-0.4477091804538, 0.44450723386782504], [-0.20284330043395982, 0.3573244807164298], [-0.037931142477298466, 0.3813806846032579], [0.1532615366241037, 0.35009544962821343], [0.4294126516189884, 0.45410537557822034], [0.7077880838717857, 0.667686020623016], [0.5976612854625187, 0.6425176581072316], [0.1565980125109728, 0.5144515282703966], [-0.03515074590490755, 0.5183440834717439], [-0.1995068245470907, 0.521680559358613], [-0.5533873443472415, 0.638480309541618]], "nose_tip": [[-0.4051575658249256, -0.1592438797824696], [-0.2676380876419615, -0.1346315965811633], [-0.07533324991160295, -0.11113147200881338], [0.14325210896349638, -0.14297278629833604], [0.3344447880648985, -0.17425802127338053]]}], "url": "http://i.imgur.com/9C9pYHh.jpg", "embedding": [[-0.13022197782993317, 0.1275848150253296, 0.006177887320518494, 0.03659515827894211, -0.10536201298236847, -0.007645617239177227, 0.038294125348329544, -0.11574135720729828, 0.09774501621723175, -0.004206994082778692, 0.20297180116176605, -0.013056041672825813, -0.26009058952331543, 0.02944641187787056, 0.019020773470401764, 0.07763385772705078, -0.1238659918308258, -0.13719291985034943, -0.14096686244010925, -0.06365484744310379, 0.041185975074768066, 0.04484891891479492, -0.01699031889438629, 0.07585810124874115, -0.10514861345291138, -0.36931467056274414, -0.09871460497379303, -0.11984720826148987, 0.045827917754650116, -0.03297963738441467, 0.031248774379491806, 0.021629521623253822, -0.1581013947725296, -0.014426764100790024, 0.04243513196706772, 0.015545522794127464, -0.05653068795800209, -0.07226105034351349, 0.18509171903133392, -0.0455741286277771, -0.1321147382259369, 0.03929886966943741, 0.09479141980409622, 0.2519412338733673, 0.1461767703294754, 0.0577397458255291, 0.07550603151321411, -0.11734439432621002, 0.13626150786876678, -0.1926385462284088, 0.15419864654541016, 0.16086088120937347, 0.16503606736660004, 0.11205877363681793, 0.1425691545009613, -0.1596025824546814, 0.02697591483592987, 0.10056544095277786, -0.20330975949764252, 0.08920484036207199, 0.06421011686325073, -0.013920661993324757, -0.06370431184768677, -0.10175757110118866, 0.1829422563314438, 0.109507717192173, -0.11842234432697296, -0.14592748880386353, 0.1054098829627037, -0.16616083681583405, -0.11004441976547241, 0.0512525849044323, -0.09819197654724121, -0.17619001865386963, -0.2772921919822693, 0.08627976477146149, 0.375198096036911, 0.1334448605775833, -0.2543012201786041, 0.02649853564798832, -0.06398749351501465, -0.03552531450986862, 0.0753973200917244, 0.044788800179958344, -0.07608197629451752, -0.13190937042236328, -0.18394485116004944, 0.002768121659755707, 0.18995246291160583, -0.006683974992483854, -0.03453201800584793, 0.20247481763362885, 0.006763864308595657, -0.05995609238743782, 0.03162924945354462, 0.17187285423278809, -0.2095438539981842, -0.019626600667834282, -0.049185775220394135, -0.062213458120822906, 0.10555186867713928, -0.018826059997081757, -0.07780271768569946, 0.06562070548534393, -0.18185171484947205, 0.22248601913452148, -0.04792284965515137, 0.03265310823917389, 0.006291828118264675, -0.07416442036628723, -0.09620209038257599, 0.028157752007246017, 0.11219087243080139, -0.2831008732318878, 0.22014844417572021, 0.04071152210235596, -0.0986531674861908, 0.15938939154148102, -0.0032951822504401207, 0.08710268884897232, -0.052355654537677765, -0.03310254588723183, -0.22423838078975677, -0.1551109105348587, 0.0899321436882019, 0.009141836315393448, -0.013134455308318138, 0.037502218037843704]]},
"000023": {"url": "http://i.imgur.com/t6b8e5B.jpg", "embedding": [[-0.13233816623687744, 0.09754839539527893, 0.015584547072649002, -0.053526125848293304, -0.2105167806148529, 0.048278335481882095, -0.013939093798398972, -0.06122520938515663, 0.18022939562797546, -0.08404012769460678, 0.258704274892807, -0.029465310275554657, -0.2692786157131195, -0.016924764961004257, 0.08834517002105713, 0.1812961995601654, -0.2710159718990326, -0.1033654734492302, -0.16090324521064758, -0.12357696145772934, -0.08779580146074295, 0.08962522447109222, -0.02631550095975399, 0.04279787465929985, -0.1474553942680359, -0.3185504376888275, 0.004693835973739624, -0.07303610444068909, 0.171047642827034, -0.12828238308429718, 0.04240882396697998, 0.06905482709407806, -0.12181451916694641, -0.02579321712255478, 0.08303043246269226, -0.002238759072497487, -0.11041554063558578, -0.07614919543266296, 0.29761555790901184, 0.005105027928948402, -0.16749653220176697, 0.028060073032975197, 0.0786619707942009, 0.2752508223056793, 0.14226168394088745, 0.06096767634153366, 0.00963114108890295, -0.07782907783985138, 0.13333314657211304, -0.3242338001728058, 0.042492784559726715, 0.20163412392139435, 0.1383877843618393, 0.033921804279088974, 0.09124636650085449, -0.23325441777706146, 0.014947118237614632, 0.16067661345005035, -0.20272906124591827, 0.12222050130367279, 0.1438775658607483, -0.1250573694705963, -0.05964691936969757, -0.07485000789165497, 0.22507311403751373, 0.06444261968135834, -0.11009486019611359, -0.11203751713037491, 0.1317877471446991, -0.09056055545806885, -0.14427940547466278, 0.021007684990763664, -0.0843527540564537, -0.20061209797859192, -0.32916179299354553, -0.004001626744866371, 0.33475542068481445, 0.2131773978471756, -0.24220196902751923, 0.004021039232611656, 0.022347189486026764, -0.005690194666385651, 0.06894369423389435, 0.09875669330358505, -0.16198408603668213, -0.1896616667509079, -0.06597598642110825, 0.010966718196868896, 0.15970487892627716, 0.02577083185315132, 0.010961255058646202, 0.21785391867160797, 0.11025486886501312, -0.005939137190580368, -0.031042156741023064, -0.042940653860569, -0.1172652319073677, -0.10885526984930038, -0.08622899651527405, -0.041007980704307556, 0.059337519109249115, -0.03942308574914932, 0.05962787941098213, 0.13875073194503784, -0.2515832185745239, 0.2918889820575714, 0.0012081246823072433, -0.054199930280447006, 0.003285118378698826, 0.029006952419877052, -0.017476461827754974, 0.07531291246414185, 0.1765565425157547, -0.2670535743236542, 0.2570115029811859, 0.2235420048236847, 0.07596924155950546, 0.18167844414710999, 0.08054056018590927, 0.024016300216317177, -0.03105062060058117, 0.0657903328537941, -0.17859743535518646, -0.16101323068141937, 0.020976196974515915, -0.12968198955059052, 0.08808453381061554, 0.08454146981239319]], "landmarks": [{"nose_tip": [[-0.3593374194015867, 0.16217064337789894], [-0.14906330975790683, 0.27988083499898697], [0.0609473368515099, 0.3677024184048425], [0.26937720525534786, 0.2761923525193032], [0.44791846544395336, 0.18494574966802696]], "right_eyebrow": [[0.34323524784525755, -1.5179145294974348], [0.7008446942909947, -1.6406305187695223], [1.0293559216242887, -1.673417220361649], [1.3594479271631617, -1.5268722726623811], [1.5408872807286615, -1.2893441851461003]], "right_eye": [[0.5267823056848624, -1.041277576259294], [0.7346852480201742, -1.1925648585752981], [0.9439055055268015, -1.19440909981514], [1.153916152136218, -1.1065875164092847], [0.9753748919476127, -1.0153409135580087], [0.736266026225753, -1.0132332092839036]], "transform": {"scale": 33.45626348470529, "center": [124.06944444444444, 165.68055555555554], "angle": 0.008814602837371049}, "top_lip": [[-0.7135218464019032, 0.6734385394480086], [-0.41489922728384154, 0.6409153008901448], [-0.20594243281147734, 0.6091824514350704], [0.03369335897890871, 0.6668519635914304], [0.24238669041700978, 0.6052305059211235], [0.45187041095790026, 0.6332748728965141], [0.6912427397140232, 0.6610557768376415], [0.5719517698873564, 0.6919982371899265], [0.2434405425540623, 0.7247849387820534], [0.03422028504743497, 0.7266291800218954], [-0.2048885806744248, 0.7287368842960004], [-0.5638153422914777, 0.7020098324919254]], "left_eye": [[-1.1173546091871867, -1.0566757175900545], [-0.8790361325681164, -1.1484492465098566], [-0.6401907298805197, -1.1804455589991942], [-0.4595417654178093, -1.0325832961286108], [-0.6684985598901735, -1.0008504466735366], [-0.9076074256120332, -0.9987427423994315]], "chin": [[-2.044691852962183, -1.1381741881735947], [-1.9801723019149817, -0.6007061663679365], [-1.886027605686811, -0.09339021581177379], [-1.7918829094586404, 0.41392573474438893], [-1.6379609968000048, 0.9207147592320254], [-1.3054978239527637, 1.3362571808683854], [-0.9434095059245535, 1.7216475312552504], [-0.5223343605686674, 2.016845130927891], [-0.043326240022158534, 2.1022955470253786], [0.4044759571378023, 2.038566385080966], [0.8501704500236582, 1.735728357414695], [1.2054087291610271, 1.3440148942055152], [1.5302314740146374, 0.8927876776001338], [1.6751956435083268, 0.38336402276986603], [1.7601191335372879, -0.15542131420710797], [1.8151540153510166, -0.6939431881498188], [1.9003409684142407, -1.2028399169115602]], "nose_bridge": [[0.048037648172616604, -1.096839384141549], [0.05146266761803727, -0.7082874773435267], [0.054887687063457945, -0.31973557054550444], [0.08820131472411108, 0.0685528732182546]], "bottom_lip": [[0.6912427397140232, 0.6610557768376415], [0.42408950701677284, 0.872647201652637], [0.21565963861293486, 0.9641572675381763], [0.006702844140570651, 0.9958901169932507], [-0.2326694846155523, 0.9681092130521233], [-0.442680131224969, 0.8802876296462677], [-0.7135218464019032, 0.6734385394480086], [-0.5638153422914777, 0.7020098324919254], [-0.20436165460589856, 0.7885141007264653], [0.0051220659349918785, 0.8165584677018559], [0.2140788604073561, 0.7848256182467815], [0.5719517698873564, 0.6919982371899265]], "left_eyebrow": [[-1.6270417270517177, -1.231528495298976], [-1.390304028638226, -1.5026336735101733], [-1.0326945821924889, -1.6253496627822608], [-0.673767820575436, -1.598622610978186], [-0.28442552467462445, -1.512381805777909]]}]},
"000025": {"url": "http://i.imgur.com/E08UrAD.jpg", "landmarks": [{"nose_bridge": [[-0.1240799416885891, -1.2027227766489361], [-0.1556065652484786, -0.9373571687317722], [-0.18713318880836805, -0.6719915608146082], [-0.2186598123682575, -0.40662595289744413]], "top_lip": [[-0.8175979594053199, 0.7397812009479636], [-0.5801738035120763, 0.5645139992905067], [-0.34342186728182694, 0.4777766913457705], [-0.13730026172747478, 0.5383651330345707], [0.09945167450277459, 0.4516278250898345], [0.3938791005488494, 0.5423984510125358], [0.7471023825157399, 0.6631271879481402], [0.6288384510111142, 0.6917408596350548], [0.09788316195578815, 0.6581975770861829], [-0.1384206278324651, 0.6859149558891052], [-0.3447663066078153, 0.6548364787712119], [-0.6995581011216921, 0.7406774938319558]], "transform": {"angle": -0.007592991656754929, "center": [127.51388888888889, 167.72222222222223], "scale": 33.88588186795698}, "right_eye": [[0.4352649458326535, -1.0214055980245316], [0.702199066296804, -1.1964487264609904], [0.938054709643061, -1.1651461761220994], [1.173238133326324, -1.045313732070487], [0.9662202348879797, -0.9878623154756596], [0.7006305537498175, -0.9898789744646421]], "nose_tip": [[-0.45787655402948557, 0.004720965327267906], [-0.31077487761694716, 0.06486126057407202], [-0.13393916341250384, 0.09571566447096727], [0.04356877045493365, 0.03804017465514186], [0.25036259567228, 0.010098722631221397]], "left_eyebrow": [[-1.5117204961842075, -1.1247243243231244], [-1.3912158324696013, -1.448437641719108], [-1.065485856084635, -1.5935226591426639], [-0.7113662812337523, -1.5908337804906871], [-0.3581429992668618, -1.4701050435550826]], "bottom_lip": [[0.7471023825157399, 0.6631271879481402], [0.4211483329097756, 0.837722169942603], [0.12560054075871055, 0.894501366874436], [-0.11070324902954269, 0.9222187456773584], [-0.3170489278048929, 0.891140268559465], [-0.5526804979301521, 0.8303277536496669], [-0.8175979594053199, 0.7397812009479636], [-0.6995581011216921, 0.7406774938319558], [-0.34499037982881336, 0.6843464433421188], [-0.1384206278324651, 0.6859149558891052], [0.09788316195578815, 0.6581975770861829], [0.6288384510111142, 0.6917408596350548]], "chin": [[-1.5736533771989962, -0.7415429313433308], [-1.5472804377220621, -0.3281793541296363], [-1.521131571466126, 0.11469418765496527], [-1.4654727406392831, 0.5577918026605648], [-1.3505699074496285, 0.9718275995372536], [-1.146913107326255, 1.35702565150603], [-0.8542782670481647, 1.6838759939959862], [-0.5021753511862646, 1.9521545537861251], [-0.0005059534808472804, 1.9559637985430922], [0.5308974820164748, 1.9304871519501503], [1.0631972103977894, 1.7869706470735809], [1.5373733025212821, 1.5249661374713879], [1.9236917205950486, 1.1737595144934798], [2.1336225709063674, 0.7326785584768628], [2.2259617093760555, 0.23168138043443984], [2.229995027354021, -0.2994979818418843], [2.2633142366818952, -0.8009433063263036]], "left_eye": [[-1.158721287438315, -0.9744856228166131], [-0.9805411339078832, -1.1206910063451592], [-0.7147273795487232, -1.1481843119270836], [-0.4795439558654603, -1.0283518678754715], [-0.7160718188747116, -0.9711245245016422], [-0.9523756086629648, -0.9434071456987199]], "right_eyebrow": [[0.08495461573873785, -1.5257638743819255], [0.49899041261542665, -1.6406667075715804], [0.9418639544000281, -1.6668155738275163], [1.3541071655087324, -1.5456386904499158], [1.6469660790078209, -1.2482983125308664]]}], "embedding": [[-0.048494238406419754, 0.059917327016592026, 0.02105654776096344, -0.009778741747140884, -0.12205001711845398, 0.0008123870939016342, 0.017683682963252068, 0.012315772473812103, 0.22339008748531342, -0.04738346487283707, 0.14461587369441986, -0.15530461072921753, -0.30612045526504517, -0.044483769685029984, 0.04127458110451698, 0.10217373073101044, -0.10318631678819656, -0.11365676671266556, -0.12917368113994598, -0.03572908043861389, 0.05217202752828598, -0.019894525408744812, 0.005537424236536026, 0.051014482975006104, -0.21293412148952484, -0.38203200697898865, -0.05898870900273323, -0.09859638661146164, 0.023306729272007942, -0.19451892375946045, 0.0169607475399971, 0.057637643069028854, -0.13706398010253906, -0.10411524027585983, 0.0031376443803310394, 0.1267961710691452, -0.07588636875152588, -0.028821174055337906, 0.23452511429786682, -0.02310868911445141, -0.2098442018032074, 0.09227487444877625, -0.0193328857421875, 0.29290005564689636, 0.15511563420295715, 0.06140100210905075, 0.05931168794631958, -0.07499091327190399, 0.053328610956668854, -0.32515421509742737, 0.05394527316093445, 0.19779226183891296, 0.09124572575092316, 0.043190762400627136, 0.13692940771579742, -0.13415004312992096, 0.017253760248422623, 0.12055237591266632, -0.2753393054008484, 0.11451397836208344, 0.1575642079114914, 0.018072061240673065, -0.0032197795808315277, -0.010424468666315079, 0.17421108484268188, 0.06494437158107758, -0.10837917774915695, -0.09871356934309006, 0.17118722200393677, -0.22084888815879822, 0.04918435961008072, 0.12712261080741882, -0.05958949029445648, -0.24432837963104248, -0.2755433917045593, 0.05321329087018967, 0.42203488945961, 0.13903135061264038, -0.1823883354663849, -0.033290497958660126, -0.08861922472715378, 0.022928643971681595, 0.0681932345032692, -0.06048288568854332, -0.10839490592479706, -0.0603930726647377, -0.10772381722927094, 0.09932316839694977, 0.1830943524837494, -0.005068670958280563, 0.018622364848852158, 0.19498172402381897, 0.1289128065109253, -0.06417375802993774, 0.05670918524265289, 0.04248936474323273, -0.05693530663847923, -0.024503791704773903, -0.11200352013111115, 0.1071469783782959, 0.07513919472694397, -0.20261690020561218, 0.02797188237309456, 0.05782204493880272, -0.21560747921466827, 0.19486112892627716, -0.007442912086844444, -0.11230496317148209, -0.04398294538259506, 0.086205393075943, -0.18969576060771942, 0.012920547276735306, 0.2674885392189026, -0.3803434669971466, 0.1638522744178772, 0.22612044215202332, 0.010909667238593102, 0.09635958075523376, -0.007107173558324575, 0.09448148310184479, -0.010032692924141884, -0.00032017752528190613, -0.11796089261770248, -0.10385867953300476, -0.051596347242593765, -0.015231998637318611, 0.01754290983080864, 0.0645587146282196]]},
"000028": {"embedding": [[-0.11845312267541885, 0.13963933289051056, 0.05980578064918518, -0.10392583906650543, -0.13615268468856812, -0.011556101031601429, -0.0646212249994278, -0.1391819417476654, 0.09452647715806961, -0.06872650235891342, 0.25857463479042053, -0.0905275046825409, -0.2606193423271179, 0.04668613523244858, -0.08711537718772888, 0.1687861829996109, -0.07837167382240295, -0.12965941429138184, -0.10210351645946503, -0.07850508391857147, 0.018931381404399872, -0.055264588445425034, 0.0028295107185840607, 0.1108768880367279, -0.08137500286102295, -0.3023594319820404, -0.02848878875374794, 0.02499949187040329, -0.0261303149163723, -0.06927909702062607, -0.0036313384771347046, 0.06630555540323257, -0.24234531819820404, 0.039190635085105896, 0.01876402273774147, 0.16416200995445251, 0.036960601806640625, -0.09088931977748871, 0.13570402562618256, -0.025774270296096802, -0.21725237369537354, -0.0324733704328537, 0.17707610130310059, 0.23504066467285156, 0.19077391922473907, -0.031096044927835464, 0.01227345410734415, -0.04458992928266525, 0.11161058396100998, -0.2559458911418915, 0.11366117745637894, 0.09166518598794937, 0.13610638678073883, 0.08858022093772888, 0.04138137027621269, -0.21093519032001495, -0.0013571595773100853, 0.17082829773426056, -0.14398059248924255, 0.0017079925164580345, 0.035086579620838165, -0.08096812665462494, -0.037088871002197266, -0.17094703018665314, 0.30680060386657715, 0.23125872015953064, -0.15265503525733948, -0.15710239112377167, 0.15022948384284973, -0.12743765115737915, -0.05996733158826828, 0.004790410399436951, -0.0838455930352211, -0.11185538023710251, -0.296464204788208, 0.05279729887843132, 0.3405892252922058, 0.16218098998069763, -0.22130145132541656, 0.09156598150730133, -0.12322349101305008, -0.03537309169769287, -0.06255162507295609, 0.0851622149348259, -0.020463639870285988, 0.09472441673278809, -0.09945619106292725, -0.007555536925792694, 0.23936399817466736, -0.031241584569215775, 0.013778133317828178, 0.2812574803829193, -0.03789839521050453, -0.03146599233150482, 0.0104361055418849, 0.06993506848812103, -0.19363075494766235, -0.02938595600426197, -0.1632397323846817, -0.08270812034606934, -0.09191963821649551, -0.09538193047046661, -0.004558242857456207, 0.046676285564899445, -0.3123154044151306, 0.15659239888191223, -0.004399439319968224, 0.029227495193481445, -0.009077684953808784, 0.03115350380539894, -0.00459371879696846, -0.05378146097064018, 0.11788852512836456, -0.31909215450286865, 0.1987665295600891, 0.09720861911773682, 0.09528490155935287, 0.20448969304561615, 0.11848912388086319, 0.11140545457601547, 0.10011434555053711, -0.03966086730360985, -0.04136039689183235, -0.07389838248491287, 0.023919859901070595, -0.06842969357967377, 0.02601776272058487, 0.1499873399734497]], "url": "http://i.imgur.com/CdXSDXI.jpg", "landmarks": [{"transform": {"angle": 0.000206695430585881, "center": [124.94444444444444, 164.29166666666666], "scale": 32.02957105657054}, "right_eyebrow": [[0.4385383010600577, -1.4141485328747159], [0.6882752187925704, -1.5703058990720808], [1.0004673390815613, -1.6640338757878599], [1.3126659126392755, -1.7265407044941234], [1.5936820577998123, -1.6017141918745672]], "left_eyebrow": [[-1.5596280780864145, -1.4761778196954685], [-1.3098847070851787, -1.6011140378833177], [-1.0288879217308113, -1.5699509692923097], [-0.7166635350982047, -1.5075732059605087], [-0.404426241928152, -1.3827531466096756]], "top_lip": [[-0.9348050152352609, 0.45940429152006296], [-0.5913723871305846, 0.4593333055641087], [-0.27914800049797805, 0.5217110688959096], [0.001848784856389407, 0.5528741374869176], [0.2516115156637945, 0.5216013633276166], [0.5950376904997478, 0.4903092293621464], [0.9384767718731472, 0.5214593914157082], [0.8136050863725293, 0.5839275005096327], [0.2516437820074101, 0.6777071033751968], [0.0018745979312818609, 0.6777587295249817], [-0.2791221874230856, 0.6465956609339737], [-0.8411286646692666, 0.5218272277329257]], "bottom_lip": [[0.9384767718731472, 0.5214593914157082], [0.6263749973462798, 1.0522834402647119], [0.25176639411314927, 1.2709089155560012], [0.00200366330574413, 1.3021816897153022], [-0.2789931220486233, 1.2710186211242942], [-0.6537049775813237, 0.9901057282633274], [-0.9348050152352609, 0.45940429152006296], [-0.8411286646692666, 0.5218272277329257], [-0.2790576547358544, 0.9588071410291339], [0.0019455838872361087, 1.021191357629658], [0.2517083146946413, 0.9899185834703571], [0.8136050863725293, 0.5839275005096327]], "left_eye": [[-1.2161051042196147, -1.0391527335181985], [-0.9975828812278948, -1.1640824984373244], [-0.7478072438830435, -1.1329129765775932], [-0.5292269414728156, -0.976852409411075], [-0.7789961255489438, -0.97680078326129], [-1.0287653096250722, -0.9767491571115051]], "right_eye": [[0.5322920908507294, -0.9770718205476608], [0.7820225553145189, -1.1644503347545418], [1.0317852861219239, -1.1957231089138427], [1.2503526819947055, -1.1021048377663565], [1.0318240057342627, -1.0083962208567465], [0.8132824229363737, -0.9771298999661688]], "chin": [[-1.8405409709473814, -1.1014659641627684], [-1.8092230239070186, -0.633155197288751], [-1.7778986235979328, -0.1336232824052176], [-1.652917232529022, 0.33466812466263035], [-1.4030512494220473, 0.8029337186555859], [-1.1219770248430023, 1.2087505633607865], [-0.8408963469952345, 1.6457885560755028], [-0.4661715849250878, 1.9891437449555016], [0.002171448292545079, 2.1139315379627193], [0.4704628553603931, 1.9889501468938082], [0.8450456455186311, 1.6454400795644546], [1.157173233120391, 1.2395006227535152], [1.4380796727126348, 0.8335676192112986], [1.6565373630171234, 0.39642637419701243], [1.750104008014825, -0.07191020575189735], [1.7812219037247712, -0.571455027172877], [1.7811186514252013, -1.0709933953251336]], "nose_bridge": [[0.0015325746889568487, -0.9769621149793679], [0.0016164671823573234, -0.5710871908556595], [0.001700359675757798, -0.16521226673195108], [0.0017777989004351593, 0.2094415093822413]], "nose_tip": [[-0.4665394212423053, 0.209538308413088], [-0.24796557210080064, 0.33437772757009027], [0.0018229717814969534, 0.4279895454488534], [0.2515727960514559, 0.33427447527052045], [0.5013161670526918, 0.20933825708267145]]}]},
"000029": {"embedding": [[-0.16137836873531342, 0.09376926720142365, 0.11693772673606873, -0.16385796666145325, -0.12708231806755066, -0.03670426830649376, -0.012707291170954704, -0.17026537656784058, 0.25396865606307983, -0.12201644480228424, 0.2045082151889801, -0.14625723659992218, -0.272278755903244, -0.019114792346954346, -0.002789650112390518, 0.18365129828453064, -0.13106374442577362, -0.17503690719604492, -0.12060877680778503, -0.08047898858785629, 0.01777302473783493, 0.015624790452420712, 0.05940597131848335, 0.10732223838567734, -0.1828785389661789, -0.20903503894805908, -0.10381662845611572, -0.11779536306858063, -0.06767947971820831, -0.1850723922252655, 0.07975579798221588, 0.08422348648309708, -0.1832708716392517, -0.03714365139603615, -0.03309231996536255, 0.13509348034858704, -0.09938301146030426, -0.2395077645778656, 0.14241604506969452, -0.04682595655322075, -0.14936688542366028, -0.17511728405952454, 0.05073681101202965, 0.21333612501621246, 0.11242283135652542, -0.032380957156419754, 0.0488123893737793, -0.0918513685464859, 0.11229006201028824, -0.3413183391094208, -0.08591800928115845, 0.1546141505241394, -0.09386773407459259, 0.11055606603622437, 0.1173434630036354, -0.1399090588092804, 0.13185358047485352, 0.14117631316184998, -0.18022269010543823, 0.13347399234771729, 0.08607426285743713, -0.09604445844888687, -0.04036608710885048, -0.09918046742677689, 0.2649725079536438, 0.11162850260734558, -0.14970095455646515, -0.09509270638227463, 0.14702248573303223, -0.09863566607236862, -0.11506704986095428, 0.1323263794183731, -0.1737930029630661, -0.2688586115837097, -0.271224707365036, -0.045432429760694504, 0.3683401048183441, 0.09216970205307007, -0.12998035550117493, 0.0034396573901176453, -0.0750630795955658, -0.017582518979907036, -0.05433114618062973, 0.13694320619106293, 0.01573597453534603, 0.012249533087015152, -0.12612712383270264, 0.06576220691204071, 0.3068169057369232, -0.1226799413561821, 0.03774113953113556, 0.31411564350128174, -0.0045784469693899155, -0.07976891100406647, -0.06870611011981964, 0.0715668722987175, -0.06250817328691483, 0.01553594134747982, -0.09745385497808456, 0.05151556804776192, 0.11575324088335037, -0.06506074219942093, -0.0848422721028328, 0.044990506023168564, -0.15982602536678314, 0.1275399923324585, 0.029900027438998222, -0.08565040677785873, -0.1359759420156479, -0.14930760860443115, -0.16128140687942505, 0.023174697533249855, 0.24488000571727753, -0.2551284730434418, 0.18026264011859894, 0.25566938519477844, 0.09171167016029358, 0.11665797233581543, 0.01916794665157795, 0.08102241158485413, 0.0519435778260231, -0.025485798716545105, -0.04766910523176193, -0.10079865157604218, 0.04471536725759506, 0.005661326460540295, -0.083545982837677, 0.04322988539934158]], "landmarks": [{"nose_tip": [[-0.24007708554125293, -0.006625005149511912], [-0.09213361219272709, 0.02325752894734854], [0.0557533535736535, 0.0827400592303432], [0.20380984208646982, 0.05342260095493523], [0.32232284199529715, -0.005551361088752219]], "chin": [[-2.103125110221206, -0.9277848645948232], [-2.0153422581414175, -0.39481541049797153], [-1.9275028984794842, 0.10855404741274588], [-1.8396635388175506, 0.6119235053234632], [-1.6629111754329242, 1.056262493608348], [-1.338045815953336, 1.4416840274316907], [-0.9242109451689094, 1.738475095443066], [-0.4510630668479239, 1.9761791862464637], [0.022423856965932982, 2.0362832999330567], [0.49613681110837093, 1.9779874288751116], [0.9110453259535571, 1.7123785693499372], [1.2373233749867765, 1.3578001985199244], [1.4748579430437383, 0.9734523087573415], [1.6237620452887334, 0.5001349076899203], [1.71346615516146, 0.026704491458208603], [1.8327702612203207, -0.44666941719135783], [1.8929308824890585, -0.9497563371913489]], "transform": {"center": [124.11111111111111, 167.20833333333334], "angle": -0.0019090378641943289, "scale": 33.78372657548543}, "nose_bridge": [[0.057957149277318126, -1.0716597920288913], [0.057448581038010905, -0.8052598263536833], [0.08659651656698315, -0.5684033492824643], [0.08608794832767593, -0.3020033836072563]], "bottom_lip": [[0.7650231103979698, 0.6760961649245134], [0.5276580650874436, 0.9716440661286936], [0.2610320690836546, 1.0895354826339234], [0.0538320957807151, 1.0891399295589066], [-0.18296787370835862, 1.0886878689017445], [-0.5083418014272539, 0.9696663007536099], [-0.8037201798849984, 0.6435012668846811], [-0.6557767065364726, 0.6733838009815416], [-0.18251581305119663, 0.8518878994126708], [0.024627652669597613, 0.8818834486738217], [0.23188413355468238, 0.8526790055627043], [0.6170231294672986, 0.6758136270137872]], "right_eye": [[0.5312745503447394, -0.9227556897838962], [0.7092135729544161, -1.10001662140783], [0.9756135386296241, -1.0995080531685228], [1.1825309740218373, -0.9511125191628348], [0.9751614779724621, -0.8627080836794491], [0.7383615084833884, -0.863160144336611]], "left_eye": [[-1.1558122171006204, -0.9851766143384436], [-0.9187862172829657, -1.1031245384258186], [-0.681986247793892, -1.1026724777686567], [-0.475125319983824, -0.9246769475768346], [-0.7119817970550428, -0.8955290120478623], [-0.9487817665441166, -0.8959810727050243]], "left_eyebrow": [[-1.6284515271822988, -1.4892806708170494], [-1.3320560122459397, -1.6959155682985363], [-0.976799550430184, -1.7248374734989276], [-0.621769118943009, -1.635359393954782], [-0.29650820638840425, -1.457137833434379]], "top_lip": [[-0.8037201798849984, 0.6435012668846811], [-0.50743768011293, 0.49606636177546254], [-0.2113247030872974, 0.43743144522464655], [0.025362251237485825, 0.497083498254077], [0.23267523970471582, 0.4382790589568253], [0.49896219021563326, 0.497987619568401], [0.7650231103979698, 0.6760961649245134], [0.6170231294672986, 0.6758136270137872], [0.23233619421184434, 0.6158790360736305], [0.025136220908904838, 0.6154834829986138], [-0.2116072409980236, 0.5854314261553176], [-0.6557767065364726, 0.6733838009815416]], "right_eyebrow": [[0.3546917097065485, -1.4558946666271837], [0.680574205664751, -1.603273064154257], [1.0063436864586632, -1.6914514693090619], [1.3614306255279833, -1.6315733859510504], [1.5978350419420402, -1.4239213519909488]]}], "url": "http://i.imgur.com/ql34tyY.jpg"},
"000030": {"landmarks": [{"left_eye": [[-1.1456841394498716, -1.0991760315949257], [-0.9398493242106601, -1.2247041259086218], [-0.7007162677270583, -1.2315173442765022], [-0.4872165818239814, -1.088020750046146], [-0.6956063539511481, -1.0521675519138005], [-0.9338877581387649, -1.01546270148547]], "nose_bridge": [[0.19943930327038925, -1.1375003849142518], [0.20965913082220955, -0.778800800188849], [0.24891893813849514, -0.45084449981988123], [0.2890303977507656, -0.09299656739046332]], "left_eyebrow": [[-1.6042784479084458, -1.4451008318805534], [-1.2199454926025177, -1.6056304720306098], [-0.8322059281126496, -1.6465935839388655], [-0.4718030387952765, -1.5970301473697854], [-0.10884519258994849, -1.4577918146193543]], "right_eye": [[0.47016729640641153, -1.0853819914572165], [0.7058937437060734, -1.211761738066898], [0.9450268001896753, -1.218574956434778], [1.0978915696758669, -1.103266689672902], [0.9210967342011203, -1.0084818797156412], [0.7110036574819836, -1.0324119457041963]], "chin": [[-2.435282579529158, -1.2120131431698207], [-2.4182495336094574, -0.6141805019608159], [-2.3721765079252912, -0.047091145108246274], [-2.2065369539993243, 0.5165916025603833], [-1.8931425443630765, 1.016232824628187], [-1.463588215668968, 1.39290090927025], [-0.9469139476814634, 1.6773391408430072], [-0.46183461634637923, 1.9028457605908486], [0.01813480121279469, 1.9490025879759887], [0.40417106111069284, 1.8482562119468327], [0.6646792266948947, 1.5416750206784648], [0.9251873922790967, 1.235093829410097], [1.1532489689148935, 0.8396893942563639], [1.2600407127169189, 0.38790830416567007], [1.3668324565189445, -0.06387278592502375], [1.47362420032097, -0.5156538760157175], [1.4907410479416447, -0.9648800092184563]], "bottom_lip": [[0.6732795513557193, 0.7935325668712238], [0.498188020472943, 0.9481006409493851], [0.35043316476266184, 1.0121421665502108], [0.17108337239996035, 1.017252080326121], [-0.009118072258726129, 0.9924703620415808], [-0.24995443333429815, 0.9395003162885606], [-0.5531290154187258, 0.7985586789461596], [-0.46345411923737495, 0.7960037220582045], [0.014811993729828936, 0.7823772853224441], [0.19501343838851543, 0.8071590036069841], [0.34361994639478166, 0.7730091100666088], [0.5827530028783836, 0.7661958916987286]], "transform": {"center": [121.25, 165.83333333333334], "scale": 33.44060863016036, "angle": 0.028483622502785192}, "right_eyebrow": [[0.4010158570296758, -1.4124866395301994], [0.696525568450238, -1.5405696907318505], [0.9937385844627706, -1.6088694778126011], [1.2943582096592432, -1.557602736651551], [1.4497779360333893, -1.3526195737083244]], "top_lip": [[-0.5531290154187258, 0.7985586789461596], [-0.25676765170217836, 0.7003672598049585], [0.01055373224990381, 0.6329191250201929], [0.16171519714412508, 0.6884441276611681], [0.3393616849148565, 0.6235509497643575], [0.520414781869528, 0.6782243001093478], [0.6732795513557193, 0.7935325668712238], [0.5827530028783836, 0.7661958916987286], [0.3137283143343314, 0.7738607623625938], [0.16427015403208015, 0.778119023842519], [0.014811993729828936, 0.7823772853224441], [-0.46345411923737495, 0.7960037220582045]], "nose_tip": [[-0.15253086478810784, 0.15891127353291404], [0.027670579870578665, 0.18369299181745413], [0.2087236768252502, 0.23836634216244448], [0.3573301848315164, 0.20421644862206909], [0.44530177642089713, 0.14187822761321353]]}], "url": "http://i.imgur.com/Wolh1MC.jpg", "embedding": [[-0.04495656490325928, 0.1289292871952057, 0.037160925567150116, -0.0903349220752716, -0.01528393104672432, 0.09886183589696884, 0.04248815402388573, -0.12356332689523697, 0.1335393190383911, 0.004305695183575153, 0.13572640717029572, 0.001925034448504448, -0.3118908405303955, -0.018724191933870316, -0.013959620147943497, 0.10719407349824905, -0.17303162813186646, -0.21083424985408783, -0.13443994522094727, -0.15903909504413605, 0.006409939378499985, 0.03997927904129028, -0.026793990284204483, 0.06656508147716522, -0.18343758583068848, -0.20335814356803894, -0.07768872380256653, -0.11464043706655502, 0.04250451922416687, -0.08644532412290573, 0.025352835655212402, 0.0034745577722787857, -0.18933658301830292, 0.01744314841926098, 0.001250341534614563, 0.031131118535995483, -0.06292212009429932, -0.16315051913261414, 0.2713526487350464, 0.04671413078904152, -0.10215302556753159, 0.04062388464808464, 0.005463719367980957, 0.2669489085674286, 0.17379990220069885, -0.01580386608839035, 0.035235445946455, -0.059849098324775696, 0.07579538226127625, -0.23283278942108154, 0.05729985237121582, 0.23365440964698792, 0.021380532532930374, 0.13982361555099487, -0.021326575428247452, -0.18868909776210785, 0.02387976460158825, 0.14261312782764435, -0.19537954032421112, 0.06407688558101654, -0.01660805754363537, -0.23342527449131012, -0.016454361379146576, -0.046160437166690826, 0.1634264588356018, 0.09027844667434692, -0.08868558704853058, -0.17427034676074982, 0.17216216027736664, -0.1094035655260086, -0.1328808218240738, 0.022935355082154274, -0.13622330129146576, -0.09690011292695999, -0.32473647594451904, 0.11300905793905258, 0.3624863922595978, 0.11136708408594131, -0.20504555106163025, 0.04960259422659874, -0.0954182967543602, -0.01698329672217369, 0.05568556487560272, 0.09786306321620941, -0.09502649307250977, -0.0746050775051117, -0.12890830636024475, 0.05813950300216675, 0.22501137852668762, -0.017057914286851883, -0.09219812601804733, 0.1592458039522171, -0.00040637701749801636, -0.026583632454276085, 0.05374850332736969, 0.13022436201572418, -0.12125161290168762, -0.010024011135101318, -0.08482186496257782, -0.006848033517599106, 0.10108847916126251, -0.021319570019841194, -0.006000783294439316, 0.1704515814781189, -0.16166047751903534, 0.16696062684059143, 0.005273895338177681, -0.1251765787601471, -0.08463279902935028, -0.09993445873260498, -0.07710763067007065, 0.030359849333763123, 0.2049880474805832, -0.26973432302474976, 0.2205972522497177, 0.21218764781951904, 0.006486639380455017, 0.13078604638576508, 0.07095508277416229, 0.05237990617752075, -0.045362215489149094, -0.01921125128865242, -0.20723076164722443, -0.11810648441314697, 0.10594049096107483, 0.08322355151176453, 0.07510921359062195, 0.07150547951459885]]},
"000031": {"url": "http://i.imgur.com/z2PVGjo.jpg", "embedding": [[-0.16724835336208344, 0.07496073842048645, 0.13514217734336853, -0.05146966874599457, -0.24986112117767334, -0.029796725139021873, -0.007479079067707062, -0.06602193415164948, 0.1553700566291809, -0.015023692511022091, 0.23947563767433167, -0.013464270159602165, -0.28953495621681213, 0.022866059094667435, 0.007801461964845657, 0.19315317273139954, -0.2069963812828064, -0.1594276875257492, -0.050842590630054474, 0.041235119104385376, -0.060580868273973465, 0.049060750752687454, 0.013772543519735336, 0.016374416649341583, -0.049168579280376434, -0.3538321554660797, -0.017906401306390762, -0.05443241819739342, 0.10342752188444138, -0.08631423115730286, -0.02063162624835968, 0.10803499072790146, -0.20307818055152893, -0.10571493953466415, 0.1311255246400833, 0.15464270114898682, -0.10270387679338455, -0.1399679183959961, 0.19223539531230927, 0.014926401898264885, -0.2506973445415497, -0.09205060452222824, 0.08373419940471649, 0.24999886751174927, 0.22352725267410278, -0.029847057536244392, 0.00888519175350666, -0.11352938413619995, 0.07929275184869766, -0.35671699047088623, 0.061984796077013016, 0.11022815853357315, 0.04778025299310684, 0.06912803649902344, 0.08076737821102142, -0.22156350314617157, 0.016384761780500412, 0.1533336341381073, -0.26123183965682983, 0.11526446044445038, 0.08987520635128021, -0.11793243139982224, 0.0004983749240636826, -0.06695258617401123, 0.25007185339927673, 0.1029084324836731, -0.11209013313055038, -0.16843949258327484, 0.20692993700504303, -0.1253434270620346, -0.07142608612775803, 0.12082335352897644, -0.07031905651092529, -0.18371953070163727, -0.2719677686691284, -0.004736912902444601, 0.4220300614833832, 0.0975545272231102, -0.1962229609489441, -0.015879372134804726, -0.03701170161366463, -0.12583206593990326, -0.019350267946720123, 0.171165332198143, 0.009902657940983772, -0.03402014821767807, -0.11551156640052795, -0.015552956610918045, 0.23375040292739868, -0.027828767895698547, 0.029894620180130005, 0.3026953637599945, 0.01194828748703003, -0.03824380785226822, 0.07561333477497101, 0.10499485582113266, -0.09194409847259521, -0.0649086982011795, -0.21736419200897217, -0.1718224287033081, 0.019076377153396606, -0.11737876385450363, 0.004166534170508385, 0.16485446691513062, -0.16897425055503845, 0.08705644309520721, -0.021269099786877632, -0.023953070864081383, 0.003780580125749111, -0.13328510522842407, -0.00899944081902504, -0.05496741831302643, 0.178094744682312, -0.2554040849208832, 0.25138700008392334, 0.16382363438606262, 0.0569753497838974, 0.12410704791545868, 0.02261658012866974, 0.013601565733551979, 0.06553579121828079, -0.08103492856025696, -0.06798437982797623, -0.05554504692554474, -0.020460039377212524, -0.04380534961819649, -0.007255992386490107, 0.06477642804384232]], "landmarks": [{"right_eyebrow": [[0.3946206622655911, -1.4397290477846088], [0.696312531070274, -1.5528406065410032], [1.0266083752867055, -1.6054833572474012], [1.324387215419589, -1.5391450061897054], [1.5896490514689248, -1.3538255533679164]], "transform": {"angle": -0.0218022324632193, "center": [125.86111111111111, 166.40277777777777], "scale": 33.42756789724152}, "top_lip": [[-0.9643886584275285, 0.5055244165771862], [-0.6054888387993484, 0.5133504739207848], [-0.2764973374735168, 0.5205243598190836], [-0.038535133945329876, 0.5855583679861796], [0.2020357553640566, 0.5309591029438819], [0.5609355749922366, 0.5387851602874806], [0.950395884368065, 0.5173550707740309], [0.8294582682680718, 0.574563021597528], [0.19942706958285703, 0.6505923761532753], [-0.040491648281229545, 0.6752833228932246], [-0.27910602325471634, 0.640157633028477], [-0.8753158749657834, 0.5373892492154342]], "right_eye": [[0.5343796820978344, -0.9878434160228843], [0.7469987674407722, -1.1328198074175269], [0.986265313859559, -1.1276024358551278], [1.1637587093377493, -1.0339644522762832], [0.9830044566330595, -0.9780608443433859], [0.7437379102142727, -0.983278215905785]], "nose_bridge": [[-0.0020135330085359546, -1.0893074569453274], [-0.00983959035213465, -0.7304076373171473], [-0.01766564769573335, -0.3715078176889673], [-0.025491705039332044, -0.012607998060787244]], "left_eye": [[-1.1404861428336723, -1.024365016959678], [-0.9285192289360344, -1.1394330900519722], [-0.719161000819596, -1.134867889934873], [-0.48250314018200896, -1.0100172451630807], [-0.7224218580460955, -0.9853262984231314], [-0.9317800861625339, -0.9898914985402306]], "nose_tip": [[-0.38700021044871163, 0.09919921780500741], [-0.2095068149705213, 0.19283720138385177], [-0.00145292974468273, 0.2572190381056476], [0.1793013229600071, 0.20131543017275036], [0.3906160654123451, 0.11615567538280458]], "bottom_lip": [[0.950395884368065, 0.5173550707740309], [0.5823656645056864, 0.928245469663309], [0.22020498765100688, 1.0699610038314518], [-0.01971373021307969, 1.0946519505714012], [-0.2882364234889148, 1.0588740892613535], [-0.6438753858905953, 0.9015064404060135], [-0.9643886584275285, 0.5055244165771862], [-0.8753158749657834, 0.5373892492154342], [-0.2843233948171155, 0.8794241794472636], [-0.015800701541280344, 0.9152020407573112], [0.22411801632280623, 0.8905110940173617], [0.8294582682680718, 0.574563021597528]], "chin": [[-1.8296818066782838, -0.9795483235968789], [-1.810208231500734, -0.5003630593140057], [-1.7614785094661354, 0.009382694716515719], [-1.712748787431537, 0.5191284487470372], [-1.5138253024398967, 1.0022267417017099], [-1.2232203482053121, 1.3975565940852372], [-0.8422382676183824, 1.7649346425023156], [-0.4293913543932046, 2.0432399074576493], [0.017929077251420684, 2.1128391157418442], [0.4984186844248937, 2.033548903959598], [0.9243090265560693, 1.7136878028679643], [1.2611265852254996, 1.361961869138083], [1.5693401684831816, 0.9497671273582055], [1.7293165031197213, 0.47449489174713133], [1.8002200542945161, -0.03264217650219054], [1.8711236054693108, -0.5397792447515125], [1.9420271566441059, -1.0469163130008343]], "left_eyebrow": [[-1.5520287131682504, -1.3624869185197084], [-1.3381052849347128, -1.5672799465190477], [-1.0377177590206295, -1.6205748686707453], [-0.7093784291400976, -1.583492664470098], [-0.412903931897814, -1.457337676807706]]}]},
"000032": {"url": "http://i.imgur.com/bAq6Ifv.jpg", "landmarks": [{"chin": [[-1.8870650879334472, -1.081956628599479], [-1.8539258346611707, -0.5632959014731916], [-1.7600578570032612, -0.10598054119463925], [-1.6660357187298263, 0.3818533418922551], [-1.5111306954552333, 0.8388603809397565], [-1.2648242643711396, 1.2648864153323391], [-0.9274247467085971, 1.5988943994533193], [-0.49877798185207983, 1.8714028561110387], [-0.040383497264848384, 1.9911645381115228], [0.4476045464375715, 1.92766092264643], [0.8734764202146286, 1.6508359687539944], [1.2685214499522925, 1.3131281298604007], [1.5410299066100122, 0.8844813650038834], [1.691155950803313, 0.3954141969927846], [1.8106093115727457, -0.12401733321113073], [1.869025626725495, -0.6431405421839949], [1.8970775796854278, -1.1315910677329917]], "right_eye": [[0.523898213925566, -1.094135317225999], [0.6757200248896481, -1.2474987343453365], [0.8893496845480416, -1.2485778586540157], [1.1035959866685374, -1.127582891729327], [0.9209473316650626, -1.0351023596111475], [0.7071635113911433, -1.0645417581108105]], "transform": {"scale": 32.76656764519155, "angle": 0.005051335718456244, "center": [124.65277777777777, 165.76388888888889]}, "nose_bridge": [[0.004775004952701978, -1.1525516323787484], [0.006316611107957661, -0.8473664042953288], [0.008012377878738913, -0.5116626534035674], [-0.02081037815882178, -0.17580474189628054]], "bottom_lip": [[0.6256283829752795, 0.9196247062779925], [0.38240516420169735, 1.1039691280522488], [0.16908382577435488, 1.1660852979776113], [-0.014027311075696778, 1.1670102616707647], [-0.22781113134961595, 1.137570863171102], [-0.4113847500462443, 1.0469402584392296], [-0.5650564883966329, 0.8340814018584638], [-0.4429823971632652, 0.8334647593963616], [-0.19852589346547855, 0.8932685200888408], [-0.015260595999901323, 0.9228620792040294], [0.16785054085015033, 0.921937115510876], [0.5034001311263862, 0.8897228259317528]], "right_eyebrow": [[0.2772834616104215, -1.5811983972352655], [0.5820062078472642, -1.674295571815547], [0.9174016375079745, -1.7370283842030123], [1.2230493474379704, -1.647014421933242], [1.4379122920205687, -1.4039453637751853]], "left_eyebrow": [[-1.5222302597730741, -1.3584732612608632], [-1.2791612016150173, -1.5733362058434615], [-0.943919932569833, -1.6665875410392685], [-0.5775434982542039, -1.6379189456172336], [-0.24137726551586594, -1.548059143962989]], "top_lip": [[-0.5650564883966329, 0.8340814018584638], [-0.38271615462420916, 0.6805638241236007], [-0.20006749962073422, 0.5880832920054214], [-0.01664804153963144, 0.6481953739289519], [0.16630893469489466, 0.6167518874274565], [0.38055523681539055, 0.7377468543521454], [0.6256283829752795, 0.9196247062779925], [0.5034001311263862, 0.8897228259317528], [0.1670797377725225, 0.7693445014691662], [-0.016031399077529165, 0.7702694651623196], [-0.1992966965431064, 0.7406759060471312], [-0.4429823971632652, 0.8334647593963616]], "left_eye": [[-1.0935834949165568, -1.0859648046031438], [-0.9110890005286074, -1.208963859529665], [-0.6670949786773974, -1.2407156672622117], [-0.45254035532585046, -1.058683654720839], [-0.6660158543687185, -1.027086007603818], [-0.910164036835454, -1.0258527226796132]], "nose_tip": [[-0.3247623213180367, 0.06988504672571069], [-0.17186138604527582, 0.1301512892647667], [0.011558072035826981, 0.1902633711882972], [0.16399652546201113, 0.15897404530232745], [0.3467993410810116, 0.09701203599249014]]}], "embedding": [[-0.10603578388690948, 0.14116699993610382, 0.030885137617588043, 0.002767235040664673, -0.028445005416870117, 0.07374998182058334, -0.006263156421482563, -0.10012756288051605, 0.09874238818883896, -0.10668497532606125, 0.32063716650009155, 0.03216256946325302, -0.2669740319252014, -0.1034453809261322, 0.022702444344758987, 0.1682029366493225, -0.11265691369771957, -0.13820694386959076, -0.24483758211135864, -0.0016203448176383972, -0.03882378339767456, 0.030968312174081802, -0.0006989464163780212, -0.08527356386184692, -0.031528376042842865, -0.36079156398773193, -0.0604819729924202, -0.039747338742017746, 0.06594634056091309, -0.13517048954963684, 0.015601452440023422, 0.017970111221075058, -0.1620008945465088, -0.0791943371295929, 0.0357639454305172, 0.08418582379817963, -0.15077155828475952, -0.0931258499622345, 0.197183758020401, -0.008128274232149124, -0.17052096128463745, 0.013598918914794922, 0.03384031727910042, 0.2516902685165405, 0.2545916736125946, 0.019051387906074524, -0.005448055919259787, -0.12638436257839203, 0.06616010516881943, -0.2741212844848633, 0.015366761013865471, 0.1091347485780716, 0.15205112099647522, 0.1440887153148651, 0.07785013318061829, -0.08831164985895157, 0.07275866717100143, 0.12885436415672302, -0.22740516066551208, -0.06700152903795242, 0.03646756336092949, -0.12450564652681351, -0.07546737790107727, -0.030553050339221954, 0.1924409121274948, 0.12857922911643982, -0.10388235747814178, -0.1692541539669037, 0.18369042873382568, -0.13860708475112915, -0.09341710805892944, 0.02749858796596527, -0.07035281509160995, -0.18816250562667847, -0.30208978056907654, 0.041225358843803406, 0.3373691737651825, 0.14013147354125977, -0.18509650230407715, 0.04190068319439888, 0.010504768230021, -0.05644813925027847, 0.06765928864479065, 0.10584794729948044, -0.07351469993591309, -0.11456994712352753, -0.04413741081953049, -0.014091826975345612, 0.16809968650341034, -0.009329869411885738, -0.05104494467377663, 0.16299596428871155, -0.011877134442329407, -0.019364936277270317, 0.09240745007991791, 0.04432649537920952, -0.028782479465007782, 0.002503853291273117, -0.13401547074317932, -0.027358558028936386, 0.020896553993225098, -0.0555456206202507, 0.005250103771686554, 0.10277967154979706, -0.07556302100419998, 0.19757023453712463, -0.02414487674832344, 0.056916676461696625, 0.11035844683647156, -0.10362391918897629, -0.01983863301575184, -0.01848703622817993, 0.11940958350896835, -0.2813597619533539, 0.21919523179531097, 0.17599605023860931, -0.04299387335777283, 0.09407244622707367, 0.13485732674598694, 0.0971800684928894, 0.01244275737553835, 0.034633539617061615, -0.3013392686843872, -0.10344506800174713, 0.04536161944270134, 0.001298075309023261, 0.010876570828258991, 0.006034551188349724]]},
"000035": {"embedding": [[-0.16229480504989624, 0.10888229310512543, 0.10294254124164581, -0.12611006200313568, -0.11459463089704514, 0.0036051981151103973, -0.006221741903573275, -0.08742401003837585, 0.188841313123703, -0.037979189306497574, 0.09135114401578903, -0.02948090434074402, -0.27248919010162354, 0.03862700238823891, 0.011941924691200256, 0.2032099962234497, -0.1765531301498413, -0.2446185201406479, -0.10642849653959274, -0.09272611886262894, 0.055555105209350586, 0.12367293983697891, -0.08039893209934235, 0.13740572333335876, -0.1905786246061325, -0.21770548820495605, -0.037868089973926544, -0.10764464735984802, -0.016984760761260986, -0.047908682376146317, 0.040211524814367294, 0.10746587812900543, -0.14398151636123657, 0.04345545917749405, 0.05283068120479584, 0.13431088626384735, 0.014712950214743614, -0.18136830627918243, 0.14135009050369263, 0.009912452660501003, -0.29265761375427246, 0.0261809304356575, 0.0950528085231781, 0.24811416864395142, 0.30901992321014404, -0.06496971100568771, -0.006717092357575893, -0.02074877917766571, 0.1224709078669548, -0.3617078959941864, -0.020623426884412766, 0.16339801251888275, 0.08851496130228043, 0.034750211983919144, 0.15504640340805054, -0.26324763894081116, 0.03848689794540405, 0.11664299666881561, -0.19919542968273163, 0.05270114541053772, 0.042727239429950714, -0.16825203597545624, 0.06579814106225967, -0.06879358738660812, 0.1609499305486679, 0.08793466538190842, -0.14062802493572235, -0.08248722553253174, 0.2392003834247589, -0.14835050702095032, -0.036012034863233566, 0.15974301099777222, -0.15052330493927002, -0.1809859573841095, -0.23499225080013275, 0.020544813945889473, 0.4316488802433014, 0.18300040066242218, -0.2403310239315033, 0.0503949299454689, -0.002645723521709442, 0.08086023479700089, 0.04773770645260811, 0.15393777191638947, -0.006844857707619667, -0.12214195728302002, -0.17372404038906097, 0.008149251341819763, 0.2401820868253708, 0.02435116656124592, 0.04316651448607445, 0.31883013248443604, 0.0416395477950573, -0.07527635246515274, 0.002741662785410881, 0.09430767595767975, -0.08636107295751572, -0.046479061245918274, -0.07515405118465424, -0.02531607076525688, -0.00017023924738168716, -0.015047170221805573, -0.005911549553275108, 0.19269877672195435, -0.12082606554031372, 0.09739062190055847, -0.03852260485291481, 0.005579343065619469, -0.11160439997911453, -0.020239941775798798, 0.04357542470097542, 0.029023228213191032, 0.15759357810020447, -0.2022801637649536, 0.09482763707637787, 0.14184704422950745, -0.10984110832214355, 0.0928739458322525, -0.03478573262691498, 0.10066749900579453, -0.013360431417822838, -0.09393077343702316, -0.17404286563396454, -0.0731051117181778, 0.038080379366874695, -0.08436388522386551, 0.0025115003809332848, 0.08260124176740646]], "url": "http://i.imgur.com/YJTVfC1.jpg", "landmarks": [{"transform": {"center": [124.94444444444444, 164.48611111111111], "angle": -0.002356567041777583, "scale": 31.9356736147587}, "chin": [[-1.9055048262593832, -1.2096072952409207], [-1.8753726237220105, -0.7085277711121384], [-1.782614704541853, -0.20730066501035369], [-1.6898567853616955, 0.293926441091431], [-1.534399358552251, 0.7639882708448257], [-1.2536167074707358, 1.2030324062228328], [-0.9100607577734326, 1.5795984069310571], [-0.47249244212545055, 1.925072922277393], [0.028365709043827944, 1.9888792947041982], [0.4982799568242201, 1.8960475845375393], [0.8748459575324447, 1.5524916348402364], [1.2201728909057776, 1.1775490358350391], [1.5029478986228273, 0.7711459965354471], [1.66069284601381, 0.27050921832567243], [1.7244254274541138, -0.19903607452221345], [1.8194708672158104, -0.6685075763835981], [1.8518905903347218, -1.1381266602179854]], "nose_bridge": [[0.004358158386059352, -1.1111674701001666], [0.0035464575345455773, -0.7667260285648485], [0.00266096569653055, -0.3909717287081377], [0.001849264845016775, -0.046530287172819526]], "left_eyebrow": [[-1.6544116317962327, -1.4595198339200512], [-1.3722269519711932, -1.6154200066485027], [-1.027711719449374, -1.6459211641183815], [-0.6521050015656656, -1.5824099556375812], [-0.3393453732842463, -1.425107754165606]], "left_eye": [[-1.2482299654561444, -1.0828062512388241], [-1.02867100227389, -1.2388540059402782], [-0.7156162100464657, -1.206803237753873], [-0.4969427387022266, -0.9870966925986164], [-0.7789060455677622, -0.9251350948343425], [-1.0607217704602954, -0.9257992137128538]], "bottom_lip": [[0.6888135822666206, 0.7692274308864145], [0.46903324612486264, 1.0192137605520464], [0.2182352156077171, 1.1438748659456064], [-0.0010285836285320636, 1.1746711873614903], [-0.18890573355688742, 1.1742284414424828], [-0.439113436182023, 1.0483866802649024], [-0.7203388331825459, 0.7972196948152508], [-0.5638483325620844, 0.8289015080691498], [-0.15685496537048232, 0.8611736492150585], [-0.00029067376351954097, 0.8615426041475647], [0.21897312547272965, 0.830746282731681], [0.563488357994549, 0.8002451252618021]], "top_lip": [[-0.7203388331825459, 0.7972196948152508], [-0.4382279443440079, 0.6726323804081917], [-0.15619084649197107, 0.5793579243225254], [0.00022586314198922504, 0.6423525958978168], [0.1882505950433471, 0.5801696251740391], [0.4698449469763764, 0.6747723190167281], [0.6888135822666206, 0.7692274308864145], [0.563488357994549, 0.8002451252618021], [0.18773405813783833, 0.7993596334237871], [-0.00021688277701828896, 0.8302297458261723], [-0.15678117438398106, 0.829860790893666], [-0.5638483325620844, 0.8289015080691498]], "right_eye": [[0.5363815859037279, -0.984661590044075], [0.7560881310589845, -1.2033350613883143], [1.0379038559515175, -1.202670942509803], [1.2567249092687593, -1.0455901139973314], [1.0685525953943988, -0.9207814266307687], [0.7867368705018659, -0.9214455455092799]], "right_eyebrow": [[0.34961130077289126, -1.454797210783971], [0.6943479062542145, -1.5792369432180273], [1.0076240714411426, -1.6411247499958002], [1.3519917219899595, -1.6090001908228937], [1.6334384919499862, -1.4517717803374197]], "nose_tip": [[-0.3117220642879163, 0.1406089528905233], [-0.15537914564045727, 0.23491648278720728], [0.0011113549800042524, 0.2665982960411061], [0.15782322855996955, 0.20434153433082725], [0.28314845283204104, 0.17332383995543968]]}]},
"000037": {"landmarks": [{"nose_tip": [[-0.12315955079940503, 0.1007670662576623], [0.11391240187117352, 0.14385656581751366], [0.3509843545417521, 0.18694606537736502], [0.5240299400423938, 0.14636779958827076], [0.6641106661576087, 0.0493765730329072]], "nose_bridge": [[0.2710435873032441, -1.0376964943335454], [0.3483934156795989, -0.7499216356994479], [0.4238398924550367, -0.49130493324894375], [0.5303478770149846, -0.20543342621576333]], "bottom_lip": [[0.6571848470151775, 0.8404534931917547], [0.5830338396708163, 1.0502706412796567], [0.41569830897292515, 1.1783233756195304], [0.24265272347228334, 1.2189016414086247], [0.0366422785862148, 1.2030669464314496], [-0.23339453346979055, 1.1035644861053286], [-0.5129481035303801, 0.8582712448612426], [-0.3671573226124147, 0.8487544868566583], [0.07021502014148187, 0.8202042128429056], [0.27622546502755047, 0.8360389078200806], [0.4201128943445991, 0.7973639936319032], [0.5697103784643984, 0.8461635479945052]], "top_lip": [[-0.5129481035303801, 0.8582712448612426], [-0.20553184671727404, 0.6332272839660055], [0.10759446489858268, 0.49565779162154777], [0.3174116129864849, 0.5698087989659091], [0.45939569070261677, 0.5019757285941385], [0.6127998780242496, 0.6090915953239266], [0.6571848470151775, 0.8404534931917547], [0.5697103784643984, 0.8461635479945052], [0.4473676989272754, 0.7663024858473935], [0.2743221134266336, 0.8068807516364875], [0.09746982472415813, 0.7891427050583957], [-0.3671573226124147, 0.8487544868566583]], "left_eye": [[-1.0778450035457061, -1.0667749454257422], [-0.8211316526961185, -1.1713795783847734], [-0.5276467392592709, -1.1612549382103488], [-0.3412776925522111, -0.9977261107142914], [-0.5707362388191222, -0.9241829855397703], [-0.835062996072377, -0.9362109773151117]], "chin": [[-2.6207160475053835, -1.3760148487483692], [-2.609903820069723, -0.7617902172919973], [-2.5990915926340614, -0.14756558583562532], [-2.4735500920649454, 0.42988748303348623], [-2.147708201412511, 0.9357007783289936], [-1.7109437408284545, 1.346426198670054], [-1.1613533587118596, 1.691221900240261], [-0.617473031398015, 1.9485431332596885], [-0.0596613607079125, 1.9706957652094546], [0.3409394194587236, 1.8274162180622462], [0.5805226059000592, 1.460388179450877], [0.7598861283732918, 1.068008687857749], [0.9354429476446907, 0.6173128838974343], [1.0526834545489032, 0.17042378313895357], [1.1718273130540329, -0.24730716143593412], [1.17433854682479, -0.6574246996071544], [1.118533468228361, -1.0637355345765411]], "left_eyebrow": [[-1.5127061125288455, -1.4483422095832097], [-1.1431668401467192, -1.6188765613130944], [-0.7019877941909891, -1.5891105229596612], [-0.3134150057996945, -1.4680633128536147], [0.10431593877519318, -1.348919454348485]], "right_eyebrow": [[0.4561171645792273, -1.3426015173758943], [0.6836723592452214, -1.4453027987340086], [0.8820693977276226, -1.5461007284912058], [1.080466436210024, -1.646898658248403], [1.2066158189489804, -1.508721283734105]], "right_eye": [[0.4497992276066365, -0.9908002915718602], [0.6716443674698802, -1.1809760414807535], [0.8757514607550319, -1.1942995026871717], [1.0019008434939884, -1.0561221281728737], [0.8928816251632835, -0.9318760970348337], [0.686871180277215, -0.9477107920120088]], "transform": {"angle": 0.06518433628519528, "center": [118.43055555555556, 164.83333333333334], "scale": 34.22288594008257}}], "url": "http://i.imgur.com/ByYnQne.jpg", "embedding": [[-0.07586882263422012, 0.06340279430150986, 0.08880384266376495, -0.003071911633014679, -0.06318926811218262, -0.025980159640312195, 0.03933136165142059, -0.08269795775413513, 0.1575581282377243, -0.011203356087207794, 0.28706416487693787, 0.0032861270010471344, -0.13281863927841187, -0.1995629221200943, 0.07174552232027054, 0.0923432782292366, -0.20861341059207916, -0.13837850093841553, -0.014756565913558006, -0.06689697504043579, 0.046334706246852875, -0.08642029762268066, 0.01921580359339714, 0.04768843948841095, -0.1881805956363678, -0.33791160583496094, -0.1104312390089035, -0.18416419625282288, 0.06516091525554657, -0.07195621728897095, -0.02361786924302578, -0.052055615931749344, -0.2270939201116562, -0.11791015416383743, -0.05624864250421524, 0.028299009427428246, 0.045512862503528595, -0.11947599053382874, 0.08462192863225937, -0.045185208320617676, -0.13686008751392365, 0.00021468009799718857, -0.006023865193128586, 0.2791852653026581, 0.16178345680236816, -0.0027761049568653107, 0.031026873737573624, 0.04369572177529335, 0.07772840559482574, -0.2241820991039276, 0.08216191828250885, 0.1031331792473793, 0.11505090445280075, 0.007299821823835373, 0.05876706540584564, -0.052111584693193436, 0.005419770255684853, 0.07510948926210403, -0.21152251958847046, 0.03256230056285858, 0.06377533078193665, 0.04952302575111389, 0.04675348103046417, -0.08543230593204498, 0.22826358675956726, 0.1233479231595993, -0.05751466006040573, -0.0688079372048378, 0.1098925992846489, -0.09522102028131485, -0.01844017580151558, -0.020192062482237816, -0.1830390989780426, -0.1764543652534485, -0.3131839334964752, 0.09112417697906494, 0.41596028208732605, 0.17142082750797272, -0.15716317296028137, -0.005604647099971771, -0.2376798689365387, 0.057887788861989975, 0.029556475579738617, -0.06689157336950302, -0.02106129564344883, 0.07704947888851166, -0.16187642514705658, 0.10361024737358093, 0.1796836405992508, -0.04956279695034027, -0.016081111505627632, 0.2212340235710144, -0.040896352380514145, -0.07351284474134445, 0.014141688123345375, -0.013662293553352356, -0.03703310340642929, 0.0608539879322052, -0.10930934548377991, 0.022168181836605072, 0.0742727518081665, -0.0631207600235939, 0.06748630106449127, 0.1086379662156105, -0.25014644861221313, 0.036035411059856415, 0.05908753722906113, -0.02263626828789711, 0.01433480903506279, 0.03356309235095978, -0.16711969673633575, -0.06880220770835876, 0.1480739712715149, -0.24586287140846252, 0.18699461221694946, 0.19536806643009186, 0.05770890414714813, 0.12664037942886353, -0.01131339743733406, 0.018889816477894783, -0.08352749049663544, -0.0968998521566391, -0.07452784478664398, -0.00991562195122242, 0.020419878885149956, 0.0008353320881724358, 0.05674770474433899, 0.0769009217619896]]},
"000038": {"url": "http://i.imgur.com/xZIdVfW.jpg", "embedding": [[-0.0929848849773407, 0.17766335606575012, 0.006681997328996658, -0.07815089821815491, -0.15167632699012756, 0.0146271837875247, -0.07927458733320236, -0.12324769794940948, 0.04976724833250046, 0.05863408371806145, 0.2702985405921936, -0.04054317623376846, -0.2147652953863144, -0.031029123812913895, -0.1093219518661499, 0.07234901934862137, -0.19898484647274017, -0.12582947313785553, -0.15422594547271729, -0.11077827960252762, -0.01851048320531845, 0.05633844435214996, 0.058197133243083954, 0.11551153659820557, -0.11925780773162842, -0.23886731266975403, -0.053294118493795395, -0.1316920816898346, 0.10345792770385742, -0.20331834256649017, -0.007757140323519707, 0.004507327452301979, -0.15335650742053986, -0.05425182729959488, 0.006287362426519394, -0.015092579647898674, -0.09723788499832153, -0.059839535504579544, 0.2468004673719406, 0.0686567947268486, -0.14077728986740112, 0.1375327706336975, 0.05621398985385895, 0.39743557572364807, 0.3252929449081421, 0.04252257198095322, -0.028829511255025864, -0.053515173494815826, 0.11579970270395279, -0.284803181886673, 0.09147131443023682, 0.21553382277488708, 0.16368697583675385, 0.011859823018312454, 0.1568884402513504, -0.1865309327840805, -0.023073235526680946, 0.12653714418411255, -0.10613999515771866, 0.12539279460906982, -0.006183888763189316, -0.01420702412724495, 0.06127549707889557, -0.12679405510425568, 0.1537642627954483, 0.06780481338500977, -0.107791006565094, -0.07213416695594788, 0.057794537395238876, -0.1251797080039978, -0.08702307939529419, 0.1715797781944275, -0.11447983235120773, -0.18618008494377136, -0.2902772128582001, 0.03914619982242584, 0.43474438786506653, 0.16247427463531494, -0.24365730583667755, -0.011412061750888824, -0.01374821923673153, -0.05380824953317642, 0.06771289557218552, 0.02222631871700287, -0.19333906471729279, -0.08172844350337982, -0.14594897627830505, 0.00295102596282959, 0.16538062691688538, -0.003440556116402149, -0.08179447054862976, 0.25628504157066345, -0.00388210266828537, -0.006559534929692745, 0.09697657823562622, 0.08725237101316452, -0.1241021677851677, -0.024267755448818207, -0.0914546549320221, -0.019073810428380966, 0.019452745094895363, -0.15744221210479736, -0.026980090886354446, 0.06135298311710358, -0.16501377522945404, 0.09182843565940857, 0.007253224030137062, 0.0054768286645412445, -0.09883706271648407, -0.012408856302499771, -0.09042699635028839, 0.05188307538628578, 0.2390889823436737, -0.3306853473186493, 0.21090497076511383, 0.20272621512413025, -0.0063005480915308, 0.08162203431129456, 0.11098018288612366, -0.015606861561536789, -0.061701949685811996, 0.01846339739859104, -0.03239813446998596, -0.08961474895477295, 0.02521926537156105, -0.07236461341381073, 0.08368770033121109, 0.04033617675304413]], "landmarks": [{"top_lip": [[-0.9465414497909811, 0.5718806985686556], [-0.5554637518015807, 0.5130529742102301], [-0.19465458260534552, 0.5142595623711042], [0.04568376549866554, 0.5751988160110595], [0.2863237606428951, 0.545935777351956], [0.5869980683064244, 0.5469412674860178], [0.8575043961901946, 0.5779136393730262], [0.7370335750979705, 0.6376463048521074], [0.2860221136026766, 0.6361380696510147], [0.045382118458447016, 0.6654011083101182], [-0.22502366041191696, 0.6043613056567568], [-0.8263722757389755, 0.6023503253886333]], "left_eye": [[-1.1514832694181119, -1.0825318366745984], [-0.9707770377797756, -1.1721308348932202], [-0.7302375916489523, -1.1713264427859709], [-0.5501346540910533, -1.080520856406475], [-0.7607072184689299, -1.0511572687339652], [-0.9712797828468065, -1.0217936810614554]], "bottom_lip": [[0.8575043961901946, 0.5779136393730262], [0.5557240493791973, 0.9076498876688467], [0.28451387840158393, 1.0871495311463084], [0.013806452491001446, 1.1163120207920059], [-0.25669987539276873, 1.0853396489049973], [-0.617006299521973, 0.9337959069123587], [-0.9465414497909811, 0.5718806985686556], [-0.8263722757389755, 0.6023503253886333], [-0.2559960322989255, 0.874867633540527], [0.014510295584844679, 0.9058400054275355], [0.2852177214954272, 0.8766775157818382], [0.7370335750979705, 0.6376463048521074]], "nose_bridge": [[0.05141505926281758, -1.1386447376710573], [0.11034333263464932, -0.7776344704480098], [0.13920417524012813, -0.4167247522383685], [0.1679644688322008, -0.025747603262374328]], "nose_tip": [[-0.34348350123601745, 0.06274535580877945], [-0.10314515313200645, 0.1236846094487347], [0.13709264595859844, 0.21469129385504288], [0.34776575934988124, 0.1552602754161803], [0.5283714419748112, 0.09572870796391149]], "chin": [[-1.933839763423725, -0.9047415264250416], [-1.8753136861055177, -0.42346153613658233], [-1.8467544905402575, 0.02765047437211773], [-1.7881278642086444, 0.47886303389422397], [-1.6092315148116194, 0.9304777894699549], [-1.3400323241021295, 1.3523267613195513], [-0.9805302920801747, 1.7444099494430136], [-0.5605917514852957, 2.0464919432942295], [-0.019679644731161464, 2.138504117834599], [0.5219363051168159, 2.0200442770104985], [0.9139189442268718, 1.6906096757548967], [1.2459678198310344, 1.3008391149397769], [1.517881833902491, 0.9108674560978443], [1.6698277719487544, 0.43029130890322836], [1.7314708686825528, -0.020519054565253176], [1.7630465346499986, -0.47142996704714085], [1.7947227496308502, -0.9524083102953814]], "right_eye": [[0.5321923044842459, -1.0468336611574998], [0.7429659668889349, -1.1363321103627153], [0.9534379822534054, -1.135628267268872], [1.1335409198113044, -1.0448226808893761], [0.9530357861997807, -1.01535854420346], [0.7425637708353102, -1.0160623872973034]], "right_eyebrow": [[0.35329595508722095, -1.4984484167332308], [0.7144067713236747, -1.5874441208714154], [1.0451485097535567, -1.5863380817239474], [1.3454206213634614, -1.465062868524474], [1.5249202648409232, -1.1938526975468604]], "left_eyebrow": [[-1.6018914368329684, -1.2644446564738088], [-1.3905144803478426, -1.5343476902771418], [-1.0594710948777417, -1.6234439434287327], [-0.698863023708319, -1.5621024937351524], [-0.3383555015523025, -1.4706936132752197]], "transform": {"center": [124.41666666666667, 165.875], "angle": -0.00334410476813936, "scale": 33.258392320168184}}]},
"000040": {"url": "http://i.imgur.com/CDMPJq7.jpg", "landmarks": [{"right_eyebrow": [[0.3644977350226659, -1.400094020367373], [0.7031142667224366, -1.5285380852274308], [1.0735220048562277, -1.5955318024260732], [1.4138441887212991, -1.6002223458806504], [1.6948480901315814, -1.4184297811443562]], "top_lip": [[-0.6584111101138056, 0.7182138869308523], [-0.3494537196414295, 0.6830113761662302], [-0.13288505718183857, 0.6800264848769539], [0.05359805100903258, 0.739344767331743], [0.238375507034603, 0.6749095283810517], [0.4244322021841489, 0.7032894304844707], [0.6723656580364352, 0.7308165065052392], [0.5490385496722799, 0.7634605390219102], [0.20914277884853363, 0.7990894628278574], [0.054877290133008155, 0.8321599083858534], [-0.13117940501653783, 0.8037800062824345], [-0.5028663822743046, 0.7779585824269667]], "right_eye": [[0.5251594193580693, -0.9690887606548172], [0.7696815708797539, -1.1890687274450096], [1.0167622006493897, -1.223418412126981], [1.2659748956256516, -1.1030761950521022], [1.0820502656827315, -0.9767641953986707], [0.8040312555617256, -0.9419880976753737]], "chin": [[-2.1398054212730138, -1.2418010426145523], [-2.0706796388677455, -0.7167014027239103], [-2.001553856462477, -0.19160176283326846], [-1.9324280740572086, 0.3334978770573734], [-1.7399751832877846, 0.8259534844313444], [-1.3941096298854858, 1.223461885544579], [-0.9562817615117268, 1.5578142868310978], [-0.48794192582792295, 1.8608018947249212], [-0.023013394474720585, 1.9162824598077837], [0.40927110436181086, 1.8484359165264908], [0.8381442988677408, 1.5330823304342367], [1.17334952623691, 1.1571312227632178], [1.4462515798620137, 0.7510945608234797], [1.5941208729576613, 0.25394840999493157], [1.6801134053505684, -0.24234491475096606], [1.797044318094846, -0.7390646525381889], [1.8516720570950582, -1.2658699445941317]], "nose_bridge": [[0.05980447496354169, -1.0555077060890496], [0.06492143145944397, -0.6842471418726082], [0.07046480099667143, -0.28204819730479647], [0.07558175749257372, 0.08921236691164512]], "left_eyebrow": [[-1.708800161560458, -1.4024627269499554], [-1.3706100429020127, -1.5618451721613833], [-0.999349478685571, -1.5669621286572855], [-0.627236088386479, -1.5102023244504477], [-0.28520825235610686, -1.391139346499544]], "left_eye": [[-1.209095532483959, -1.068963151746087], [-0.9942325221896687, -1.1957015644408437], [-0.6844223056346422, -1.1690273145027257], [-0.49580713223714507, -0.9550171302910859], [-0.7428877620067809, -0.9206674456091142], [-1.0217595982104375, -0.9477681085885578]], "nose_tip": [[-0.26303477420719695, 0.21765643177170274], [-0.10706363332637074, 0.30833950761918716], [0.048481094513130304, 0.36808420311530154], [0.2332585505387007, 0.30364896416461007], [0.35573283282020574, 0.20912817094519892]], "bottom_lip": [[0.6723656580364352, 0.7308165065052392], [0.4587818868661206, 0.9503700602541065], [0.24349246353050527, 1.0461700925974933], [0.026923801070914355, 1.0491549838867695], [-0.1277681006859363, 1.0512870490933954], [-0.3765543826208729, 0.9618832123698867], [-0.6584111101138056, 0.7182138869308523], [-0.5028663822743046, 0.7779585824269667], [-0.131605818057863, 0.7728416259310644], [0.05445087709168296, 0.8012215280344833], [0.20871636580720845, 0.7681510824764873], [0.5490385496722799, 0.7634605390219102]], "transform": {"center": [123.59722222222223, 164.08333333333334], "angle": 0.013781782978267338, "scale": 32.319243004194846}}], "embedding": [[-0.08782172203063965, 0.09908975660800934, 0.06520165503025055, -0.09248742461204529, -0.19729681313037872, -0.05075441300868988, -0.08978702872991562, -0.05828753113746643, 0.12975528836250305, -0.14649584889411926, 0.1628243625164032, -0.041060544550418854, -0.17936237156391144, 0.059688299894332886, -0.1261177659034729, 0.16056472063064575, -0.21480682492256165, -0.19061677157878876, 0.05643397569656372, -0.04368174076080322, 0.0678785964846611, 0.0603625513613224, 0.0038724690675735474, 0.07716599106788635, -0.17354631423950195, -0.2623629868030548, -0.034959644079208374, -0.06894972920417786, 0.010777337476611137, -0.15205815434455872, -0.027960728853940964, 0.027159417048096657, -0.1819675862789154, 0.04891403019428253, 0.07279133796691895, 0.11902183294296265, -0.04886537045240402, -0.14172659814357758, 0.22348059713840485, 0.18405722081661224, -0.22427348792552948, 0.002152077853679657, 0.057716622948646545, 0.36924514174461365, 0.2944784164428711, -0.017367098480463028, 0.0004042296204715967, -0.08937057107686996, 0.16404490172863007, -0.28742578625679016, 0.0046676285564899445, 0.16286711394786835, 0.0827731341123581, -0.014529962092638016, 0.05569705739617348, -0.14406821131706238, 0.04237982630729675, 0.166976198554039, -0.22618506848812103, 0.08206544816493988, 0.0968935489654541, -0.11009819805622101, 0.0010507553815841675, -0.050921693444252014, 0.30595529079437256, 0.10735873878002167, -0.12059935927391052, -0.14027148485183716, 0.22905071079730988, -0.19723133742809296, -0.14202168583869934, 0.06792805343866348, -0.08119897544384003, -0.1755218654870987, -0.19012139737606049, -0.05135847255587578, 0.3093351423740387, 0.20913375914096832, -0.15403924882411957, 0.1252109408378601, -0.016602257266640663, 0.019934814423322678, 0.06279323995113373, 0.22995832562446594, -0.03557862341403961, 0.06261790543794632, -0.09324832260608673, -0.030648820102214813, 0.23925597965717316, -0.0020734407007694244, -0.024120964109897614, 0.2554570734500885, -0.01397278718650341, -0.05512580648064613, 0.09204710274934769, -0.075127013027668, -0.18253137171268463, -0.05334950238466263, -0.16917599737644196, -0.1853434443473816, -0.06318915635347366, -0.0859842374920845, -0.006389595568180084, 0.1776416301727295, -0.24639122188091278, 0.1023213192820549, -0.11726628243923187, -0.07936449348926544, -0.08221438527107239, -0.09532385319471359, -0.0036383531987667084, 0.022096291184425354, 0.10818790644407272, -0.28251323103904724, 0.16297805309295654, 0.15231698751449585, 0.0848478227853775, 0.1466565877199173, 0.11471056193113327, -0.015304727479815483, 0.05036129057407379, -0.032041750848293304, -0.12073028087615967, -0.059186901897192, -0.028728675097227097, -0.0776568278670311, 0.1321336030960083, -0.012934142723679543]]},
"000041": {"url": "http://i.imgur.com/DlF4sIE.jpg", "embedding": [[-0.18416233360767365, 0.18683771789073944, 0.05169786512851715, -0.055502891540527344, -0.09354718029499054, 0.001363561488687992, -0.025051763281226158, -0.09123221039772034, 0.1559399962425232, -0.03429520130157471, 0.22506415843963623, -0.06901481747627258, -0.2212834656238556, 0.09588755667209625, -0.1625295728445053, 0.14716506004333496, -0.2299269139766693, -0.11487527191638947, -0.1917424201965332, -0.09469325840473175, 0.003425203263759613, 0.08755060285329819, -0.03376463055610657, 0.06758907437324524, -0.17796441912651062, -0.21864622831344604, -0.035609789192676544, -0.10287639498710632, 0.0799722969532013, -0.14275389909744263, -0.01354670338332653, -0.021373046562075615, -0.130335733294487, -0.038217343389987946, 0.023097697645425797, 0.06296245008707047, -0.06993327289819717, -0.07617753744125366, 0.21748094260692596, 0.028691833838820457, -0.1870528608560562, 0.13979272544384003, 0.030900821089744568, 0.4073755145072937, 0.15527726709842682, 0.008956095203757286, -0.016184458509087563, -0.10194707661867142, 0.08465569466352463, -0.26251474022865295, 0.10859765112400055, 0.19192932546138763, 0.08898898214101791, 0.06473876535892487, 0.1421380639076233, -0.1751508116722107, -0.003865904174745083, 0.17359019815921783, -0.0964060053229332, 0.09822903573513031, 0.13621613383293152, 0.03314758092164993, 0.06359079480171204, -0.10800531506538391, 0.11310762912034988, 0.09311537444591522, -0.10560066998004913, -0.0739511176943779, 0.12300164997577667, -0.1127568781375885, -0.038792453706264496, 0.05953981354832649, -0.06358306109905243, -0.1850973218679428, -0.24837765097618103, 0.043775077909231186, 0.41627559065818787, 0.17570537328720093, -0.17528055608272552, -0.003937710076570511, -0.03538648039102554, -0.025632638484239578, 0.0815153568983078, -0.0007992889732122421, -0.2112056314945221, 0.005246762186288834, -0.08681033551692963, 0.05393056198954582, 0.21517789363861084, 0.06541183590888977, -0.029171058908104897, 0.22693802416324615, 0.04305866360664368, -0.16127514839172363, 0.07989435642957687, 0.029705055058002472, -0.13437125086784363, -0.06125909090042114, -0.10209488868713379, 0.0034127309918403625, 0.05875782296061516, -0.17187324166297913, -0.04036416485905647, 0.10903884470462799, -0.22731521725654602, 0.14796409010887146, 0.013931570574641228, -0.0152264554053545, -0.042062096297740936, 0.0911315530538559, -0.11563347280025482, 0.04375261068344116, 0.2650417983531952, -0.2288668155670166, 0.1877766251564026, 0.18725238740444183, 0.040710654109716415, 0.08595561236143112, 0.11705759167671204, 0.009950053878128529, -0.04433205723762512, 0.06913898140192032, -0.10197298228740692, -0.12785668671131134, 0.044725097715854645, -0.05774810165166855, 0.1035982146859169, 0.08018101006746292]], "landmarks": [{"right_eye": [[0.23034912150646641, -1.0027749797991725], [0.3780062813636233, -1.1304340376803623], [0.6228609861553713, -1.1092733344854357], [0.8700408933850374, -1.0271896053973124], [0.6286739922501665, -0.9569657697524427], [0.4154434016239762, -0.9488275612197294]], "left_eye": [[-0.9060276672693548, -1.2034508382704767], [-0.8485924450330347, -1.2971605795481906], [-0.6646607661344839, -1.2736746739153464], [-0.5370017082532943, -1.1260175140581896], [-0.6893092729862874, -1.1202045079633944], [-0.8416168377192804, -1.114391501868599]], "transform": {"center": [137.19444444444446, 163.58333333333334], "scale": 32.804426549393725, "angle": 0.03814771802124735}, "bottom_lip": [[0.8098127062034721, 0.5919209856482506], [0.3680038278509605, 1.0053596722384184], [-0.021020233141067303, 1.2032425657644774], [-0.26471233671385624, 1.2125433755161499], [-0.4205077051037265, 1.1269718427711495], [-0.5504919654228343, 0.9183916570207951], [-0.6546651176711795, 0.5868028182650875], [-0.5914168893400642, 0.6454006417203666], [-0.4286459136364398, 0.9137412521449589], [-0.27285054524656954, 0.9993127848899596], [-0.059619954620379216, 0.9911745763572463], [0.6891292556360368, 0.6270329034706855]], "nose_tip": [[-0.8548732136351569, 0.13685573137986248], [-0.6967526428073686, 0.2833502900180604], [-0.48003424852430115, 0.36659662032514295], [-0.20936843566179075, 0.26474867051471573], [0.06245997841967875, 0.19336223365088703]], "left_eyebrow": [[-1.0746116490677744, -1.6240990134280622], [-1.049963142215971, -1.7775691793800144], [-0.896492976264019, -1.752920672528211], [-0.7395350066551898, -1.6368876268366117], [-0.6118759487740001, -1.489230466979455]], "top_lip": [[-0.6546651176711795, 0.5868028182650875], [-0.5632805788313837, 0.5833150146082103], [-0.4402719258260302, 0.6091261226789728], [-0.3161006716017177, 0.6653987436963339], [-0.10403268219448636, 0.6267990222170219], [0.32359110027685334, 0.640984118098194], [0.8098127062034721, 0.5919209856482506], [0.6891292556360368, 0.6270329034706855], [-0.07008336559101061, 0.7170209598378587], [-0.31377546916379956, 0.7263217695895311], [-0.4367841221691531, 0.7005106615187687], [-0.5914168893400642, 0.6454006417203666]], "right_eyebrow": [[-0.27447410392349714, -1.441096054494807], [0.11687515950644872, -1.5780559221276689], [0.5410111383209112, -1.6552553650862927], [0.9428238127214886, -1.5180616161997675], [1.2872012648857458, -1.2871581260355278]], "nose_bridge": [[-0.4432919669755803, -1.0685822918218693], [-0.5207252911878677, -0.6995563328058088], [-0.6274575271277946, -0.2989062596241905], [-0.7037282501211228, 0.10058121233846865]], "chin": [[-0.8369664328434442, -0.9925454500822045], [-0.882775642890174, -0.5942205793385044], [-0.898123339990305, -0.1970583098137633], [-0.7904623840850825, 0.22591506778174025], [-0.6535025164522206, 0.6172643312116861], [-0.4849185346538008, 1.0379125063692716], [-0.37842017996753746, 1.4304243710181765], [-0.270759224062315, 1.85339774861368], [0.04199411393638453, 2.0550023270502797], [0.5305409223009215, 2.0668622204935336], [1.101171459753582, 1.8315422067071216], [1.6401778830406846, 1.56692328119307], [2.113610875558754, 1.1827835063305419], [2.5226330385267492, 0.7095843950661359], [2.6528511800995203, 0.12500264298596697], [2.62843655450138, -0.514689128892604], [2.6040219289032405, -1.154380900771175]]}]},
"000042": {"embedding": [[-0.09611489623785019, 0.06550261378288269, 0.0904214084148407, -0.1648351103067398, -0.0811580941081047, -0.00382057623937726, 0.009609912522137165, -0.14744533598423004, 0.23119157552719116, -0.22189968824386597, 0.1610739529132843, -0.10519722104072571, -0.26269420981407166, -0.0225900337100029, 0.017018858343362808, 0.20768550038337708, -0.24697692692279816, -0.22562254965305328, -0.1616915464401245, -0.07759556919336319, 0.0036324821412563324, 0.06788357347249985, 0.038949280977249146, 0.1293095052242279, -0.21150796115398407, -0.23631280660629272, -0.023739205673336983, -0.11864297091960907, -0.037487275898456573, -0.11746622622013092, 0.1483946442604065, 0.07891147583723068, -0.1854572296142578, 0.06135399639606476, -0.053676169365644455, 0.08413588255643845, -0.12922964990139008, -0.2794520854949951, 0.15687954425811768, -0.036522116512060165, -0.2119569629430771, -0.05154874920845032, 0.020165175199508667, 0.2152121663093567, 0.15366119146347046, -0.09593624621629715, 0.0251472145318985, -0.06864383816719055, 0.11495061218738556, -0.4704973101615906, -3.166496753692627e-05, 0.10626967251300812, -0.06536442041397095, 0.1019415408372879, 0.11756874620914459, -0.21868576109409332, 0.10916359722614288, 0.15762709081172943, -0.20623964071273804, 0.13651372492313385, 0.07195988297462463, -0.11583328992128372, 0.03880003094673157, -0.030009128153324127, 0.2151399850845337, 0.15014274418354034, -0.1579376757144928, -0.06013495847582817, 0.09805561602115631, -0.1376180499792099, -0.02745433896780014, 0.11327247321605682, -0.08837880939245224, -0.2660699486732483, -0.19087059795856476, 0.01471738051623106, 0.34404999017715454, 0.17531637847423553, -0.12100247293710709, 0.014575030654668808, -0.039244867861270905, 0.043363433331251144, -0.008142948150634766, 0.14923661947250366, -0.03218827769160271, -0.08067380636930466, -0.12491928786039352, 0.09855037927627563, 0.227146178483963, -0.051505208015441895, -0.014125863090157509, 0.3976230323314667, -0.001184716820716858, -0.16741010546684265, -0.013719847425818443, 0.0007237941026687622, -0.1128300353884697, 0.015891656279563904, -0.05911631882190704, 0.0380665622651577, 0.10662558674812317, -0.04414372146129608, -0.06077660247683525, 0.03559019789099693, -0.10678954422473907, 0.19743183255195618, -0.04943238943815231, -0.06898483633995056, -0.017267638817429543, -0.1029331162571907, -0.11887369304895401, 0.02584005706012249, 0.1874372959136963, -0.20780031383037567, 0.17563195526599884, 0.16649100184440613, 0.1132502481341362, 0.21660664677619934, 0.051128607243299484, 0.08936982601881027, 0.03151994198560715, -0.021821606904268265, -0.09705182909965515, -0.05134443938732147, 0.09799101948738098, 0.013032647781074047, 0.018805500119924545, 0.0387515053153038]], "landmarks": [{"nose_tip": [[-0.24129935381036965, 0.15382305340569088], [-0.0909975799117174, 0.2121803366621186], [0.08954697217732388, 0.3001723200734066], [0.26826729015977907, 0.20853186844894644], [0.3874141688147492, 0.14743823403263961]], "right_eye": [[0.5258584210205919, -0.9618153104432964], [0.7333013221046144, -1.1735147577760197], [1.002749974658237, -1.176251108935899], [1.213537304937667, -1.0586244253697505], [1.0351210259729764, -0.9370452345726654], [0.7659764124371183, -0.9043701442401616]], "nose_bridge": [[0.0755611773601639, -1.07700968186733], [0.10884434572819643, -0.7479875899862225], [0.11249281394136859, -0.388722719914726], [0.14608002132716547, -0.029761888860993853]], "transform": {"angle": 0.010155022382572378, "center": [123.11111111111111, 165.94444444444446], "scale": 33.39981795618313}, "left_eye": [[-1.2111965290271698, -1.0040585257582137], [-0.9732068107349939, -1.156184533763452], [-0.7034541191636072, -1.1289821457507063], [-0.49205871084864816, -0.9514779838393085], [-0.730960546194117, -0.8891681933519443], [-1.0004091987477395, -0.8864318421920652]], "bottom_lip": [[0.7808743243075713, 0.562628075218449], [0.5144660619315924, 0.8647518181045752], [0.2761723046216521, 0.9869390869371888], [0.06720920844880786, 1.0489448384067888], [-0.17260474394995415, 1.0214384113762789], [-0.4732082917472586, 0.9047238448634235], [-0.8055748128237739, 0.6086808823325841], [-0.6552730389251216, 0.6670381655890117], [-0.14540235593720857, 0.751685719804892], [0.06447285728892874, 0.7794961858531664], [0.27343595346177296, 0.7174904343835664], [0.6317887064799765, 0.6240257486525203]], "left_eyebrow": [[-1.604960723537756, -1.4491871061166477], [-1.3070935269003308, -1.6019211921574148], [-0.9481326958465988, -1.6355083995432114], [-0.6178944478944339, -1.5490366112207452], [-0.2571093827341157, -1.402991383570794]], "chin": [[-2.1396014823963, -1.0245720553801436], [-2.1044940799216816, -0.5159175284632879], [-2.0092051600840493, 0.02206765959066386], [-1.9142202792641811, 0.5301141084719908], [-1.6997844807715783, 1.0070056621096357], [-1.3964445818143951, 1.3931688811761136], [-1.003896543374866, 1.7185425048440488], [-0.5517750656078519, 2.0133693113038307], [-0.07184312179256352, 2.0983209045374753], [0.4059605488983744, 1.9737013235627467], [0.7921237679648522, 1.6703614246055631], [1.1477401698231764, 1.3074480863208946], [1.4428710153007227, 0.8852653477265052], [1.588004125897381, 0.43466406504831284], [1.7025904192858858, -0.07551065695736463], [1.7872379735017663, -0.5853813399452777], [1.8419467885450216, -1.0949479839154266]], "right_eyebrow": [[0.43178565725401696, -1.380045541806749], [0.7296528538914422, -1.532779627847516], [1.0281281285643964, -1.6256362355430338], [1.3574542594632681, -1.6289806647384417], [1.5984843679330876, -1.4817192810174329]], "top_lip": [[-0.8055748128237739, 0.6086808823325841], [-0.44661398177004175, 0.5750936749467872], [-0.147530629061559, 0.5421145455965191], [0.062344584164578304, 0.5699250116447934], [0.2716117193551869, 0.5378579993478182], [0.5111216327361846, 0.5354256872057035], [0.7808743243075713, 0.562628075218449], [0.6317887064799765, 0.6240257486525203], [0.27343595346177296, 0.7174904343835664], [0.06416881827116439, 0.7495574466805416], [-0.14540235593720857, 0.751685719804892], [-0.6552730389251216, 0.6670381655890117]]}], "url": "http://i.imgur.com/0ZzIM8G.jpg"},
"000043": {"url": "http://i.imgur.com/H17JhKv.jpg", "landmarks": [{"left_eyebrow": [[-1.5881519205072294, -1.4909235660708813], [-1.3145630708240423, -1.6401556829971466], [-0.9813751675631023, -1.6678448629490807], [-0.6488907132478098, -1.60472856464309], [-0.3473782006308063, -1.451041271061057]], "right_eyebrow": [[0.3487971326799504, -1.4456481624777593], [0.682688484886538, -1.564142820687618], [0.985842378376719, -1.6223349763740762], [1.3187957986557766, -1.6197556635733685], [1.589805335538256, -1.4360343602205765]], "left_eye": [[-1.168144749680367, -1.0033449202822606], [-0.9550928855024634, -1.1530460031722911], [-0.6826764507286891, -1.1509356563353486], [-0.4421698895807338, -0.9371803432117972], [-0.7150552903182732, -0.8787537045434567], [-0.9874717250920475, -0.8808640513803992]], "nose_bridge": [[0.013029916618302734, -1.0850055622467678], [0.04071909657023674, -0.7518176589858275], [0.03813978376952916, -0.41886423870677], [0.03556047096882157, -0.08591081842771241]], "bottom_lip": [[0.8779196424413712, 0.5865615456231129], [0.6022204459212416, 1.0082100973231527], [0.267860127750889, 1.1872417410382947], [-0.005025272986650378, 1.2456683797066355], [-0.27697274179665976, 1.1830210473644096], [-0.6087537471663047, 1.029099270800494], [-0.8776529372118416, 0.5729615326739275], [-0.7870819419357993, 0.6039334743722166], [-0.24506286817084058, 0.9713760810778009], [-0.003149409131590314, 1.0035204376855025], [0.26973599160594913, 0.945093799017162], [0.7566111884489222, 0.6158921064482245]], "transform": {"angle": -0.0077466127348326305, "scale": 33.03666301845666, "center": [124.84722222222223, 165.84722222222223]}, "nose_tip": [[-0.298799847201531, 0.09312082528742958], [-0.14792634940208804, 0.15483022570212532], [0.032981158168113985, 0.24704260185134516], [0.1850270708769695, 0.1574095385028329], [0.36710699335658414, 0.09827945088884477]], "top_lip": [[-0.8776529372118416, 0.5729615326739275], [-0.5737955947760129, 0.42396389872954454], [-0.24084217449695544, 0.42654321153025215], [0.03133977729493643, 0.45892205111983636], [0.24345370954531012, 0.43029493924037227], [0.5764071298243676, 0.4328742520410799], [0.8779196424413712, 0.5865615456231129], [0.7566111884489222, 0.6158921064482245], [0.2727842703704217, 0.5516033932328213], [0.030401845367406394, 0.5799960221304027], [-0.24178010642448547, 0.5476171825408186], [-0.7870819419357993, 0.6039334743722166]], "chin": [[-1.9548910782671662, -1.0397099705638475], [-1.8983403034538857, -0.5246766278051752], [-1.8115210358879634, -0.009408802064620598], [-1.7247017683220414, 0.505859023675934], [-1.5468425395163117, 0.9915618056094946], [-1.2472058907543684, 1.3873970412126606], [-0.8867977735052595, 1.7534327500269498], [-0.46514922180521956, 2.0291319465470794], [-0.011825279461243107, 2.1234546695332415], [0.44314004375591093, 2.005897943250913], [0.8692437721117184, 1.706495777470852], [1.205010988173366, 1.3458531772398605], [1.480944667675378, 0.8939361327871791], [1.6358043761668237, 0.44108115640696766], [1.7303615821348686, -0.042511278689650364], [1.825153271084796, -0.55637220653891], [1.9199449600347234, -1.0702331343881697]], "right_eye": [[0.46588489299851416, -0.930145853755322], [0.7096742158928245, -1.1401494391687532], [0.9820906506665988, -1.1380390923318107], [1.1927976850256776, -0.985055247695425], [0.9802147868115388, -0.8958911503106778], [0.7077983520377645, -0.8980014971476203]]}], "embedding": [[-0.13478921353816986, 0.06466294080018997, 0.023594200611114502, -0.04790177568793297, -0.14793497323989868, 0.013445102609694004, -0.023541128262877464, -0.13676291704177856, 0.2028353363275528, -0.17954669892787933, 0.11668910831212997, -0.04376756772398949, -0.2564381957054138, 0.2249859720468521, -0.12948200106620789, 0.12044721841812134, -0.16108539700508118, -0.21712803840637207, -0.013008205220103264, -0.1213919147849083, 0.030374296009540558, 0.03343974053859711, -0.051352307200431824, 0.059022434055805206, -0.1366974413394928, -0.29698193073272705, -0.0977686271071434, -0.005745332688093185, -0.035206738859415054, -0.05120573192834854, 0.15052776038646698, 0.07515046000480652, -0.19699862599372864, 0.11836972832679749, 0.04890415072441101, 0.09358977526426315, 0.01573309302330017, -0.09191805124282837, 0.2631627321243286, 0.027642827481031418, -0.2293194830417633, -0.06744862347841263, 0.09348517656326294, 0.3067663908004761, 0.13309746980667114, -0.023373138159513474, -0.03421550989151001, -0.0686575248837471, 0.10160808265209198, -0.33942797780036926, 0.059206243604421616, 0.1566339135169983, 0.062268249690532684, 0.08571425080299377, 0.0820578783750534, -0.17344564199447632, 0.010959547944366932, 0.07193462550640106, -0.10220737010240555, 0.08490224182605743, 0.08199324458837509, -0.058675993233919144, 0.024950802326202393, -0.09708072990179062, 0.3088284432888031, 0.07855485379695892, -0.16468898952007294, -0.13673584163188934, 0.20820201933383942, -0.19655320048332214, -0.07414723932743073, 0.1491728127002716, -0.0537509061396122, -0.2356850951910019, -0.21444682776927948, 0.05529318004846573, 0.44485044479370117, 0.18514473736286163, -0.14654310047626495, 0.055882178246974945, -0.05731813609600067, -0.01060782466083765, 0.05789481848478317, 0.13597500324249268, -0.0017011463642120361, 0.028559017926454544, -0.07407210022211075, 0.030843224376440048, 0.34717217087745667, 0.008181682787835598, -0.14106905460357666, 0.3033074736595154, -0.02195645496249199, -0.015648100525140762, 0.015189731493592262, 0.130944162607193, -0.06425938755273819, -0.06226413697004318, -0.15730682015419006, -0.03884560614824295, 0.04542161524295807, 0.012185553088784218, -0.05427571386098862, 0.16302889585494995, -0.2103816717863083, 0.1717785894870758, -0.09471546113491058, -0.04472467303276062, -0.06026936322450638, 0.04256211221218109, -0.1315315067768097, 0.00786466896533966, 0.19192761182785034, -0.37304437160491943, 0.16087356209754944, 0.11658069491386414, -0.017416134476661682, 0.1611708253622055, 0.019852735102176666, 0.03426652029156685, 0.07717527449131012, -0.07551322132349014, -0.13827936351299286, -0.14153727889060974, 0.00980208907276392, -0.03438364341855049, -0.0017802724614739418, 0.0567304790019989]]},
"000044": {"landmarks": [{"nose_bridge": [[-0.033170114618274675, -1.0881780868978859], [-0.07120932752804277, -0.7034656131437265], [-0.07714792734843373, -0.3182582560712009], [-0.08308652716882471, 0.06694910100132462]], "bottom_lip": [[0.6754509873354443, 0.8492410147871575], [0.44629274584451123, 1.1346823493629903], [0.18750830785603056, 1.2591257351735716], [-0.03769086708797521, 1.2877621650343871], [-0.22979966230587204, 1.2526922520348147], [-0.4841301504290595, 1.0882301200410016], [-0.7038856088710401, 0.763759805918669], [-0.6080786529212747, 0.7973450689631438], [-0.22485082912221288, 0.9316861211410434], [-0.03274203390431606, 0.9667560341406158], [0.1603565279503126, 0.9376247209614343], [0.5470485349779358, 0.8472614815136938]], "nose_tip": [[-0.40656707465442554, 0.22250333326455107], [-0.24705377584427174, 0.2891789760351349], [-0.05543986394474082, 0.3563495021240846], [0.13815358122825377, 0.2951175758555259], [0.33174702640124837, 0.23388564958696711]], "transform": {"scale": 31.148351657138942, "center": [125.55555555555556, 163.875], "angle": -0.015415410162291972}, "top_lip": [[-0.7038856088710401, 0.763759805918669], [-0.44658582083765724, 0.7356182593762192], [-0.22138664589365148, 0.7069818295154034], [-0.02977273399412058, 0.7741523556043532], [0.163820711178874, 0.7129204293357944], [0.4201307325755251, 0.7489801089720989], [0.6754509873354443, 0.8492410147871575], [0.5470485349779358, 0.8472614815136938], [0.19295202435805564, 0.9060189911904231], [-0.03224715058595015, 0.9346554210512389], [-0.22435594580384696, 0.8995855080516663], [-0.6080786529212747, 0.7973450689631438]], "right_eye": [[0.47895504485666157, -0.9839581145359], [0.706628636392497, -1.1730976098436012], [0.963433541107514, -1.1691385432966739], [1.1866531827780562, -1.0693725207999811], [0.9920699709683296, -0.9439393683526682], [0.7352650662533127, -0.9478984348995955]], "left_eyebrow": [[-1.5354654466802429, -1.5287455730229866], [-1.3072969718260412, -1.749985681420065], [-1.0174016873849152, -1.809732957733526], [-0.697385323127876, -1.7405828983711127], [-0.4109542219153114, -1.5756258830589336]], "chin": [[-1.6994326953556897, -1.3065156979891763], [-1.675745098678533, -0.7603103921513993], [-1.6194620055936335, -0.2457108160846334], [-1.5310782994193568, 0.26938364330049835], [-1.3133023742508396, 0.7222564097803394], [-1.0308303395852025, 1.1440183298075355], [-0.7152679251934562, 1.502073906974343], [-0.3666151310756011, 1.796423141280762], [0.0492081891312038, 1.8991584636876502], [0.4675059259298382, 1.841390720647653], [0.8576621161860228, 1.5263231895742726], [1.1846068469001851, 1.146064665685406], [1.4799458478433363, 0.7332106453887969], [1.6799727761550876, 0.2546707489583355], [1.7515972521093306, -0.22584868074558956], [1.8242114947003052, -0.7705693366282688], [1.8326245111125257, -1.3162797591476798]], "left_eye": [[-1.1561966894281082, -1.13759961613007], [-0.9621083609367476, -1.2309321554880062], [-0.7057983395400965, -1.1948724758517015], [-0.5161639609140293, -0.9992994974052434], [-0.7413631358580351, -0.9706630675444275], [-0.9976731572546863, -1.006722747180732]], "right_eyebrow": [[0.32735987914036235, -1.5642435667365175], [0.6503455433075973, -1.687697185910367], [1.0044420539274774, -1.7464546955870965], [1.324458418184517, -1.677304636224683], [1.5777991396709725, -1.4486412780521158]]}], "embedding": [[0.036550819873809814, 0.08096906542778015, 0.062242574989795685, -0.060595784336328506, -0.10328355431556702, -0.03403573855757713, -0.004550294950604439, -0.16323970258235931, 0.20055769383907318, -0.15919636189937592, 0.28884726762771606, -0.06407755613327026, -0.17672066390514374, -0.0393909253180027, -0.08571470528841019, 0.20632408559322357, -0.16783159971237183, -0.19388709962368011, 0.0399593710899353, -0.04671035334467888, -0.006754901260137558, -0.008451445028185844, 0.0009446442127227783, 0.15032736957073212, -0.09465835243463516, -0.3599175810813904, -0.07969982177019119, -0.12113057076931, 0.07388961315155029, -0.10050421953201294, 0.009133760817348957, 0.17270496487617493, -0.1865634322166443, 0.05706530809402466, 0.02490774542093277, 0.002090715803205967, 0.010549399070441723, -0.054840948432683945, 0.1811971366405487, 0.06276682019233704, -0.24434007704257965, -0.04375307261943817, 0.056272320449352264, 0.2693975865840912, 0.14941535890102386, -0.0011439453810453415, 0.03865322843194008, -0.07934018969535828, 0.017794393002986908, -0.1305149495601654, 0.0009761834517121315, 0.12435802817344666, 0.12487252056598663, -0.01606931909918785, 0.020923437550663948, -0.20771637558937073, -0.057658884674310684, 0.025332367047667503, -0.167979434132576, 0.07298476994037628, 0.013131201267242432, 0.006485404446721077, -0.04311782494187355, -0.06811027973890305, 0.2542876899242401, 0.060062553733587265, -0.1453079730272293, -0.08439691364765167, 0.21842694282531738, -0.2088354080915451, -0.047249797731637955, 0.0917215570807457, -0.13289734721183777, -0.17825348675251007, -0.1990843266248703, -0.08575782179832458, 0.43664079904556274, 0.11660879850387573, -0.2091328501701355, 0.03192763775587082, -0.060873016715049744, -0.029208073392510414, 0.06082358583807945, 0.15459229052066803, -0.016489248722791672, 0.00961286574602127, -0.051455289125442505, -0.024325676262378693, 0.18472571671009064, 3.283657133579254e-05, -0.043479688465595245, 0.22938460111618042, -0.1003154069185257, 0.00450746389105916, -0.03731399402022362, -0.010460931807756424, -0.06184879690408707, 0.026036236435174942, -0.11751905083656311, -0.10684359073638916, -0.12246142327785492, -0.029565587639808655, -0.07140672206878662, 0.1159273236989975, -0.24409589171409607, 0.11790129542350769, 0.05358347296714783, -0.011063605546951294, 0.027716651558876038, 0.17853975296020508, -0.10241790115833282, -0.10812146961688995, 0.1626228243112564, -0.27980729937553406, 0.16265706717967987, 0.18765921890735626, 0.05116468667984009, 0.11106783896684647, 0.0336286835372448, 0.07989774644374847, 0.02365449070930481, -0.14545874297618866, -0.1496061384677887, -0.05480565130710602, 0.022824376821517944, -0.16491076350212097, 0.03642014041543007, -0.03629275783896446]], "url": "http://i.imgur.com/edJtHJ9.jpg"},
"000045": {"url": "http://i.imgur.com/hBHDWAa.jpg", "embedding": [[-0.09245225042104721, 0.07195089757442474, 0.08522453159093857, -0.08135883510112762, -0.06842730194330215, 0.061233729124069214, -0.1277243047952652, -0.14809030294418335, 0.0968487486243248, -0.052012957632541656, 0.17871035635471344, -0.09177732467651367, -0.2929074764251709, 0.12052825838327408, -0.10531638562679291, 0.141799196600914, -0.164107546210289, -0.13423967361450195, -0.01587500236928463, -0.028771957382559776, 0.02448594756424427, -0.001218651421368122, -0.040961164981126785, 0.08358128368854523, -0.12755869328975677, -0.2508073151111603, -0.049905166029930115, -0.024549275636672974, -0.028899308294057846, -0.15296295285224915, -0.11194244027137756, -0.07856859266757965, -0.1666945517063141, 0.06819041818380356, 0.08613838255405426, 0.16246452927589417, -0.07133799046278, -0.2026732861995697, 0.11046867817640305, 0.0004992298781871796, -0.17445982992649078, -0.07766073942184448, 0.10264653712511063, 0.2276771366596222, 0.23832747340202332, 0.011841252446174622, -0.05587415769696236, -0.05006128549575806, 0.07300341129302979, -0.3421909511089325, 0.07469867914915085, 0.12414512038230896, 0.07973361015319824, 0.09282487630844116, 0.08228498697280884, -0.22530482709407806, -0.026544930413365364, 0.14890047907829285, -0.12006809562444687, 0.060209665447473526, 0.015312694013118744, -0.08363305777311325, -0.008266756311058998, -0.10328098386526108, 0.17445676028728485, 0.16804780066013336, -0.13919326663017273, -0.15683703124523163, 0.17631976306438446, -0.17217665910720825, -0.062320586293935776, 0.03170601278543472, -0.05162937194108963, -0.25837284326553345, -0.19037726521492004, -0.022559838369488716, 0.31479600071907043, 0.21756911277770996, -0.23356153070926666, 0.04613855108618736, -0.011713200248777866, -0.0031302757561206818, 0.022730840370059013, 0.09816455841064453, 0.050407394766807556, 0.07714742422103882, -0.1056816428899765, -0.022657491266727448, 0.22449618577957153, -0.06044694036245346, 0.028614919632673264, 0.25577512383461, -0.07415899634361267, -0.08504582196474075, 0.07113510370254517, 0.09925965219736099, -0.11791501939296722, -0.00226442888379097, -0.15857234597206116, -0.13057048618793488, 0.01988675817847252, -0.04608762264251709, 0.020849842578172684, 0.15341563522815704, -0.24608704447746277, 0.1318114548921585, -0.014192832633852959, -0.060626521706581116, 0.03773896396160126, -0.048817846924066544, -0.027653992176055908, -0.04864396154880524, 0.194241002202034, -0.36442166566848755, 0.10911504924297333, 0.20915013551712036, 0.05660922825336456, 0.14804767072200775, -0.018220877274870872, 0.06542838364839554, 0.1142488345503807, -0.033108845353126526, -0.1319011002779007, -0.10309722274541855, -0.08861289173364639, -0.005246999207884073, -0.06956594437360764, 0.053437985479831696]], "landmarks": [{"top_lip": [[-0.8478088893835176, 0.5707017489428664], [-0.602028570854576, 0.4784809932182888], [-0.2947755127139943, 0.5091474851814027], [-0.04897190157081734, 0.5398256234516343], [0.1968142401116832, 0.4783295912257591], [0.5655109220961105, 0.47825971338305306], [0.903500350042512, 0.5703698291900128], [0.7806072792012617, 0.6011178453029503], [0.22757390253173845, 0.6626721090644139], [-0.048942785803023164, 0.6934492409451457], [-0.29474639694620014, 0.6627711026749141], [-0.755628895733852, 0.6014090029808921]], "nose_bridge": [[-0.04928052870943561, -1.0885847219795863], [-0.07993537436543187, -0.7198822168416001], [-0.07986549652272584, -0.3511855348571728], [-0.11052616533228092, -0.013207753217888947]], "right_eyebrow": [[0.31935209858584446, -1.4266265583080173], [0.626576040958632, -1.5495836838384147], [0.9645363531372392, -1.6110971855249665], [1.302508311622964, -1.6111612402141136], [1.5790599388790787, -1.4575900311026315]], "nose_tip": [[-0.4177501077050683, 0.1097493723125085], [-0.26410902075088044, 0.20189442704082114], [-0.0797432102979903, 0.29403365861557496], [0.10458766123354683, 0.20182454919811513], [0.2889243559186428, 0.14034016327935755]], "chin": [[-1.7084155976393585, -1.088270271687409], [-1.6775977036837146, -0.5966805188617316], [-1.6775045332267733, -0.10508494288249516], [-1.6159619157724274, 0.3864989867896235], [-1.4315262274768314, 0.8473349003488047], [-1.1549221918386872, 1.277428620948607], [-0.8168803555102561, 1.646061248243887], [-0.41739489533797935, 1.9839575057333474], [0.043499249756790086, 2.1067690524247737], [0.47363373243150425, 2.0452380812775455], [0.93444635337645, 1.7379034989871402], [1.303073157518171, 1.369136939160007], [1.6102388683553703, 0.9389325786425867], [1.7637751385454992, 0.4780326103942585], [1.7944008684337012, -0.04429351223723901], [1.8250265983219034, -0.5666196348687366], [1.8556523282101054, -1.0889457575002341]], "left_eye": [[-1.1553705746627174, -1.0883750884514682], [-0.9403208027860369, -1.2113147445211891], [-0.6945230147964186, -1.2113613297496597], [-0.479409188230591, -0.9963290273336557], [-0.725206976220209, -0.996282442105185], [-0.9710047642098273, -0.9962358568767143]], "right_eye": [[0.47305724022917955, -0.9965095450939796], [0.6880953657987424, -1.180898648161105], [0.9338873306348018, -1.211669956888278], [1.179714234392214, -1.0580929246232373], [0.9646528162084159, -0.996602715550921], [0.7188550282187978, -0.9965561303224503]], "left_eyebrow": [[-1.5548676811421118, -1.487720792938333], [-1.309093185766729, -1.6106662721616125], [-1.0018459507797064, -1.6107245036972009], [-0.6945870694855658, -1.5493332882353847], [-0.41804126538301006, -1.4264868026226052]], "bottom_lip": [[0.903500350042512, 0.5703698291900128], [0.6270768321646918, 1.0927425370499808], [0.2584150891016174, 1.2771607558849005], [-0.018101599233144187, 1.3079378877656325], [-0.29462993387502345, 1.2772655726489597], [-0.6019237540905169, 1.0315260161949298], [-0.8478088893835176, 0.5707017489428664], [-0.755628895733852, 0.6014090029808921], [-0.29468816541061177, 0.9700183376619369], [-0.018154007615173707, 1.031415376277312], [0.2583626807195879, 1.00063824439658], [0.7806072792012617, 0.6011178453029503]], "transform": {"scale": 32.5470783189331, "angle": 0.00018952663607723068, "center": [125.59722222222223, 165.43055555555554]}}]},
"000047": {"landmarks": [{"left_eyebrow": [[-1.5760577257254105, -1.507838843482722], [-1.3584052840403582, -1.6637119854244415], [-1.1094780863800215, -1.6951407838411738], [-0.8293531539651234, -1.6643666658005931], [-0.5491126897191398, -1.5402304071585005]], "chin": [[-1.6998473888742465, -0.9475119574322023], [-1.6681490161849812, -0.48073976503500393], [-1.6364506434957165, -0.01396757263780556], [-1.6047522708064512, 0.45280461975939285], [-1.4486095545921982, 0.8883020561813063], [-1.1991817189971574, 1.2614425337044597], [-0.8564302534109662, 1.6033467658626903], [-0.45151438197782406, 1.882932549732522], [0.015450363471183517, 2.006837744712444], [0.48218404525801994, 1.944018658489341], [0.9486866633826854, 1.6944752910632148], [1.3217116090747532, 1.3516853148666614], [1.601297392944585, 0.9467694434335195], [1.7874440149921815, 0.4797276767637882], [1.8491077829044285, 0.012839952535504282], [1.9107330402063134, -0.485168485226617], [1.9411990733639992, -1.0142591259122138]], "left_eye": [[-1.2020315041639344, -1.041490267799504], [-0.9843020412581587, -1.1351219826735488], [-0.7664570465212973, -1.135391556946082], [-0.5484194987326265, -0.9800575635494281], [-0.7973466963929634, -0.948628765132696], [-1.0151916911298249, -0.9483591908601631]], "bottom_lip": [[0.822894448495033, 0.6365250733541923], [0.5121494404810019, 1.0103587418638589], [0.2010963475840757, 1.135226702102827], [-0.016710136542423853, 1.1666169899091974], [-0.2657528660338463, 1.1046836477244173], [-0.5460318408901916, 0.9494266755484874], [-0.8577011035529074, 0.5763632192460577], [-0.702020514662997, 0.638412093261923], [-0.23490172677254195, 0.8868001423771941], [-0.017018221425318676, 0.9176512816384985], [0.16970605977770542, 0.9174202179763274], [0.6984886155804074, 0.6989205428633145]], "nose_tip": [[-0.36034734616693764, 0.10893634647270786], [-0.2046667572770272, 0.17098522048857331], [-0.04898616838711678, 0.23303409450443874], [0.1376610915951836, 0.17056160377459292], [0.2932261486540085, 0.13924833718894628]], "nose_bridge": [[-0.05064212463267645, -1.1051565874505673], [-0.050218507918696066, -0.7628287385783564], [-0.04979489120471569, -0.4205008897061455], [-0.08049198802457265, -0.07813453022357289]], "transform": {"angle": 0.001237458474814035, "scale": 32.13291473092565, "center": [125.58333333333333, 165.51388888888889]}, "right_eyebrow": [[0.4156294298298178, -1.541424236079718], [0.6955618091929066, -1.6662536857083239], [1.0066919233105562, -1.728880218879617], [1.3490967934034908, -1.6670624085259227], [1.5982935653363606, -1.4806462122057935]], "top_lip": [[-0.8577011035529074, 0.5763632192460577], [-0.5153732546806966, 0.5759396025320773], [-0.23528683287616048, 0.5755930070388207], [-0.017403327528937203, 0.6064441463001249], [0.16928244306372503, 0.5750923691041165], [0.4805280890124603, 0.6058279765343353], [0.822894448495033, 0.6365250733541923], [0.6984886155804074, 0.6989205428633145], [0.16943648550517243, 0.699575223239466], [-0.017249285087489793, 0.7309270004354744], [-0.23513279043471308, 0.7000758611741701], [-0.702020514662997, 0.638412093261923]], "right_eye": [[0.5408439855620424, -0.9502847213782557], [0.7585349378574564, -1.0750371497861382], [1.0074621355177933, -1.1064659482028703], [1.1943404591622648, -0.9822141577296919], [1.0076931991799642, -0.919741666999846], [0.7587274909092657, -0.9194335821169513]]}], "url": "http://i.imgur.com/yZcVZ52.jpg", "embedding": [[-0.01732226088643074, 0.10529457032680511, 0.12181215733289719, -0.03496082127094269, -0.11546632647514343, 0.004366197623312473, -0.061760783195495605, -0.10978486388921738, 0.09444178640842438, -0.050113558769226074, 0.20655477046966553, -0.11464081704616547, -0.3383495807647705, 0.008399467915296555, -0.10246587544679642, 0.1553977131843567, -0.15298476815223694, -0.2138691246509552, -0.0651727169752121, 0.01261301152408123, 0.023500874638557434, 0.029151853173971176, -0.0034671053290367126, 0.07245389372110367, -0.2220425307750702, -0.2881627380847931, 0.004607414826750755, -0.10198953002691269, -0.09650007635354996, -0.14268188178539276, -0.026330726221203804, 0.09221459925174713, -0.1513749212026596, 0.05086110159754753, 0.028465505689382553, 0.14125721156597137, -0.06480075418949127, -0.0850277692079544, 0.1808375120162964, 0.09063372015953064, -0.3162316381931305, -0.010354293510317802, -0.01564822345972061, 0.34529367089271545, 0.2900097072124481, -0.040683820843696594, -0.012157848104834557, -0.04351229593157768, 0.13986974954605103, -0.37273740768432617, 0.01421581394970417, 0.1782587170600891, 0.07986524701118469, 0.06906434148550034, 0.03718717396259308, -0.1443593055009842, -0.0038046985864639282, 0.1431443691253662, -0.24304094910621643, 0.03412821516394615, 0.03245263546705246, -0.20706744492053986, -0.020911511033773422, -0.09712012857198715, 0.23530152440071106, 0.08726333826780319, -0.1920015513896942, -0.08470948040485382, 0.14966008067131042, -0.16487111151218414, -0.09153524786233902, 0.14504969120025635, -0.10536084324121475, -0.187273770570755, -0.3089582324028015, 0.020178724080324173, 0.420951247215271, 0.09356892853975296, -0.2045443058013916, 0.07354237139225006, -0.016432108357548714, 0.029059141874313354, -0.02210700884461403, 0.19207440316677094, -0.013702915981411934, 0.1285252571105957, -0.11173655092716217, 0.03424873948097229, 0.15747782588005066, -0.10121212154626846, -0.021999267861247063, 0.2933380603790283, -0.07987745106220245, -0.013243583030998707, 0.10874922573566437, 0.09951136261224747, -0.09538673609495163, -0.033484138548374176, -0.1032765805721283, -0.09067272394895554, 0.10089880228042603, -0.08526846766471863, 0.0305008701980114, 0.06019328162074089, -0.15757469832897186, 0.15784606337547302, -0.05673780292272568, 0.02319408394396305, 0.042345985770225525, -0.12029971182346344, 0.007540538907051086, -0.026004236191511154, 0.20615608990192413, -0.3794389069080353, 0.13549566268920898, 0.1213904619216919, 0.0030001364648342133, 0.10092540085315704, 0.040825989097356796, 0.010142271406948566, -0.03242404758930206, -0.04218653589487076, -0.12522244453430176, -0.07297676801681519, 0.06181460991501808, -0.00045338133350014687, 0.07397286593914032, -0.003401470370590687]]},
"000048": {"embedding": [[-0.11050457507371902, 0.06187581270933151, 0.0633741021156311, -0.0911935418844223, -0.11513294279575348, -0.005531934089958668, -0.01324678398668766, -0.06955587863922119, 0.09639869630336761, -0.1473308801651001, 0.12365651875734329, 0.044088214635849, -0.22016870975494385, 0.00912037119269371, 0.03480805084109306, 0.08227081596851349, -0.1639806032180786, -0.1818273514509201, -0.18562188744544983, -0.10744582116603851, 0.04696070775389671, 0.11983076483011246, -0.03897716850042343, 0.03041113168001175, -0.04326115548610687, -0.2793594002723694, -0.006850197911262512, 0.008433111011981964, 0.14954735338687897, -0.004446722567081451, 0.006950540468096733, -0.002248460426926613, -0.23214305937290192, 0.014947785064578056, 0.03290905803442001, 0.062131475657224655, -0.05581434816122055, -0.07189400494098663, 0.20789478719234467, 0.06940314173698425, -0.1942104548215866, 0.020719267427921295, -0.02981487661600113, 0.2806713581085205, 0.25151678919792175, 0.010195491835474968, 0.0065557449124753475, -0.05907963961362839, 0.17702199518680573, -0.30024924874305725, 0.11920260637998581, 0.19630247354507446, 0.06853507459163666, 0.06982602924108505, 0.12882070243358612, -0.19465520977973938, 0.00016679847612977028, 0.13896533846855164, -0.1109757199883461, 0.0864071324467659, 0.02995472028851509, -0.13262198865413666, -0.0007997527718544006, -0.12831419706344604, 0.16468408703804016, -0.011156611144542694, -0.10304917395114899, -0.1559966802597046, 0.1416909098625183, -0.12101399898529053, -0.11500032246112823, 0.03795299306511879, -0.10894215106964111, -0.10481399297714233, -0.2948606014251709, 0.0847952663898468, 0.39382871985435486, 0.1965419203042984, -0.1872328519821167, 0.12318563461303711, -0.02929157391190529, -0.012079311534762383, 0.12837141752243042, 0.11015123128890991, -0.0700068548321724, 0.021756120026111603, -0.06770473718643188, 0.06344752758741379, 0.18648922443389893, 0.012970133684575558, -0.09749700129032135, 0.25109368562698364, -0.0006814002990722656, 0.0026212120428681374, 0.0644250363111496, 0.008661065250635147, -0.06838500499725342, -0.06128595769405365, -0.15157930552959442, -0.05627865716814995, 0.07746555656194687, -0.06719867140054703, 0.014303114265203476, 0.0985475704073906, -0.1573461890220642, 0.19651395082473755, -0.03212457895278931, 0.05749242752790451, -0.03214046359062195, -0.05098506063222885, -0.12428000569343567, 0.04066995158791542, 0.09951477497816086, -0.24421337246894836, 0.25123563408851624, 0.16936227679252625, 0.05496075749397278, 0.1618196964263916, 0.11956964433193207, -0.0039058253169059753, 0.042452696710824966, 0.003254581242799759, -0.1420285552740097, -0.1286325752735138, 0.08643060177564621, 0.06135572865605354, 0.09668879956007004, 0.10119529813528061]], "landmarks": [{"chin": [[-1.413864697639591, -0.47542532326683135], [-1.439517614192486, -0.048240983056798976], [-1.3797711765015306, 0.378380650180889], [-1.3202123078013568, 0.7765358320039604], [-1.2889323215250181, 1.2033450342324299], [-1.1728156879771736, 1.5441921752447045], [-0.9430208177616439, 1.855822588879237], [-0.6291395762377341, 1.967625135639108], [-0.1165558817838515, 1.9927153452196584], [0.4808644599415368, 1.9318434935840143], [1.0498183502523084, 1.8711592109391517], [1.5326226103561043, 1.6971718296081666], [1.9006232198475257, 1.3816024671672236], [2.0972624138789024, 0.9817591644271193], [2.1794730952794676, 0.4972667834062906], [2.2330297562746346, -0.015504480038373462], [2.258495103836748, -0.47115527166302257]], "nose_bridge": [[-0.16621762915677288, -1.2238060956412504], [-0.22164998005975467, -0.9956993463427536], [-0.277269899953518, -0.7960590484588737], [-0.3325146818657183, -0.5394858477457601]], "left_eyebrow": [[-1.3331545681652774, -1.187649315604594], [-1.221164452414625, -1.473064105713887], [-0.9947458240331613, -1.6738298175424557], [-0.6819899964539402, -1.7328259792702851], [-0.42504165775926384, -1.6206482945288514]], "right_eyebrow": [[0.1439122325515078, -1.681332577173714], [0.512663118006055, -1.88303613395619], [0.9679387716491413, -1.9145036892233103], [1.3674069364076828, -1.7747973980211669], [1.654509847434009, -1.4066092195389641]], "nose_tip": [[-0.4714706971047357, -0.02615187732875178], [-0.3576048914462688, -0.026902153291877607], [-0.1868061829585684, -0.02802756723656635], [-0.01638261245243097, -0.08608588401048854], [0.18269497845910468, -0.11586531836057547]], "top_lip": [[-0.6649212182928277, 0.857621099459837], [-0.49637333769450476, 0.5148982685397475], [-0.29823359173687636, 0.34278657711657695], [-0.15590133466379275, 0.34184873216266964], [0.014522235842344697, 0.28379041538874744], [0.27147057453702106, 0.39596810013018124], [0.586289661014838, 0.6501029039631357], [0.4722362863655898, 0.6223867285116448], [0.016022787768596353, 0.5115220267056813], [-0.1261219003137058, 0.5409263230742053], [-0.2967330398106247, 0.5705181884335108], [-0.5516181196067051, 0.771471469252861]], "right_eye": [[0.46116971590948386, -1.057133904950742], [0.6881510512632918, -1.1725002625354606], [0.9158826625802257, -1.1740008144617122], [1.1158980984456683, -1.0614479917387156], [0.9170080765249143, -1.003202105974012], [0.689088896217199, -1.030168005462377]], "left_eye": [[-1.0745181085535678, -0.8192735681316096], [-0.9331236964343914, -0.9625436701586004], [-0.7340461055228558, -0.9923231045086874], [-0.505939356224359, -0.9368907536057056], [-0.7046418091543317, -0.8501784164263851], [-0.9037194000658675, -0.8203989820762982]], "bottom_lip": [[0.586289661014838, 0.6501029039631357], [0.33046673626485057, 0.7087239277094024], [0.07464381151486292, 0.7673449514556689], [-0.09596732798205598, 0.7969368168149743], [-0.2665784674789749, 0.8265286821742799], [-0.43700203798511233, 0.8845869989482021], [-0.6649212182928277, 0.857621099459837], [-0.5516181196067051, 0.771471469252861], [-0.26807901940522655, 0.598797070857346], [-0.09746787990830764, 0.5692052054980405], [0.04467680817399454, 0.5398009091295165], [0.4722362863655898, 0.6223867285116448]], "transform": {"scale": 35.1283086838472, "angle": 0.006589029085035656, "center": [126.55555555555556, 170.02777777777777]}}], "url": "http://i.imgur.com/yUMfayP.jpg"},
"000050": {"landmarks": [{"top_lip": [[-0.9101102328327189, 0.5485291421087267], [-0.52479437787436, 0.46050086081793856], [-0.1692983582115941, 0.4612815287793877], [0.06763393256679577, 0.491426642392251], [0.3046963346720939, 0.4623224193946533], [0.6009430177243988, 0.4629729760291943], [0.8674349211445651, 0.522807813610742], [0.7488711922601892, 0.5521722592621563], [0.30443611201827747, 0.5808210926155752], [0.06737370991297938, 0.609925315613173], [-0.199183249170641, 0.5797151463368556], [-0.8212362279170273, 0.5487243090990891]], "right_eyebrow": [[0.33854962110184084, -1.463215964781875], [0.7239305317236537, -1.5808689143778936], [1.0794916070498737, -1.609712914721675], [1.4347274040588234, -1.490433573539304], [1.5820700776235266, -1.1346122755592674]], "transform": {"angle": -0.0021959928195417204, "center": [123.68055555555556, 166.41666666666666], "scale": 33.75557081367148}, "nose_bridge": [[0.1007065510350935, -1.0786157221215114], [0.1296156070423289, -0.7526793151005219], [0.15845960738611023, -0.39711823977430166], [0.15767893942466105, -0.041622220111535706]], "bottom_lip": [[0.8674349211445651, 0.522807813610742], [0.6000322384360415, 0.8777183323024212], [0.3330198897082424, 1.0548808411627175], [0.0663328192977138, 1.083920008496861], [-0.22984880809113709, 1.0536447835570897], [-0.555394881131402, 0.9048058297329419], [-0.9101102328327189, 0.5485291421087267], [-0.8212362279170273, 0.5487243090990891], [-0.19983380580518198, 0.8759618293891607], [0.0667882089418925, 0.8765473303602476], [0.3038506110471906, 0.8474431073626498], [0.7488711922601892, 0.5521722592621563]], "right_eye": [[0.5153217959814124, -1.018455606222693], [0.7229546967718422, -1.1364988897994361], [0.9599520432136861, -1.1359784444918035], [1.1375048860547068, -1.0467141055953872], [0.9596267648964156, -0.9878551029656509], [0.7522540867598022, -0.9883104926098296]], "nose_tip": [[-0.34613558875461975, 0.04614583852543611], [-0.10933340930313803, 0.1355402887487604], [0.12746877014834365, 0.22493473897208469], [0.33503661527531947, 0.13651612370057187], [0.5129147364336107, 0.07765712107083546]], "chin": [[-2.062024346573641, -1.0241154489431996], [-2.0335706802105844, -0.4908063637855965], [-1.9754923455422972, 0.04256777703546069], [-1.9173489552105558, 0.5463172495512874], [-1.6814575550474316, 1.0504570560478388], [-1.3565620386417074, 1.4955426929242912], [-0.9426624059933838, 1.881574160180645], [-0.4693182697442368, 2.1788617338482155], [0.03417098011777347, 2.2392170167373964], [0.4788012273500474, 2.121694178468286], [0.8351429706377166, 1.7373541584617382], [1.1026757646731484, 1.3231943031595983], [1.3406489460668038, 0.8793447238887737], [1.548997459155229, 0.43543008895449486], [1.6092876863809553, -0.038434492602284875], [1.6398881896379973, -0.48273946151728825], [1.6704886928950393, -0.9270444304322917]], "left_eyebrow": [[-1.6469537119831437, -1.1713280111809945], [-1.4092407532433047, -1.4966789172308974], [-0.994170118652807, -1.6438914794686923], [-0.5794898180430342, -1.6133560318751046], [-0.1650046844236236, -1.4939465793658253]], "left_eye": [[-1.1435945734480415, -1.0517233916813529], [-0.9360267283210658, -1.1401420069528658], [-0.6990293818792218, -1.139621561645233], [-0.4919169263964247, -1.0206674987801323], [-0.6993546601964923, -0.9914982201190805], [-0.9363520066383363, -0.9920186654267132]]}], "url": "http://i.imgur.com/sXgzssE.jpg", "embedding": [[-0.18783821165561676, 0.17763441801071167, 0.017937026917934418, -0.1245763748884201, -0.1820494830608368, -0.02325594052672386, -0.06824919581413269, -0.05155541002750397, 0.08012249320745468, 0.010276208631694317, 0.18196982145309448, -0.044179897755384445, -0.15710660815238953, 0.0297908503562212, -0.10067357122898102, 0.13260401785373688, -0.20352551341056824, -0.15011446177959442, -0.17460554838180542, -0.038914065808057785, 0.0050556957721710205, 0.03741423785686493, 0.012164991348981857, 0.11278503388166428, -0.10189385712146759, -0.2526600956916809, -0.019338859245181084, -0.09209546446800232, 0.07075569778680801, -0.12249213457107544, 0.04470356926321983, -0.0359160378575325, -0.21249321103096008, -0.06672624498605728, 0.012267205864191055, 0.0968363806605339, -0.004122771322727203, -0.0633406788110733, 0.25344809889793396, 0.043539099395275116, -0.2269081473350525, 0.14751072227954865, 0.0242343507707119, 0.3982502520084381, 0.18671146035194397, -0.00855346955358982, -0.019838081672787666, 0.00454842671751976, 0.1304732859134674, -0.23369690775871277, 0.15990105271339417, 0.1503324955701828, 0.1831241250038147, -0.03103448823094368, 0.13397915661334991, -0.13388845324516296, 0.04486736282706261, 0.19041213393211365, -0.16422106325626373, 0.07331712543964386, 0.081000417470932, 0.0015813373029232025, 0.07795051485300064, -0.1319771111011505, 0.13576963543891907, 0.12755520641803741, -0.04566395655274391, -0.10306520015001297, 0.12801305949687958, -0.07595475018024445, -0.04900414124131203, 0.03203106299042702, -0.08502420783042908, -0.10959429293870926, -0.3027230501174927, 0.030269484966993332, 0.3763536810874939, 0.1681136041879654, -0.2657797038555145, -0.00975717045366764, -0.020998653024435043, -0.017736345529556274, 0.06263034045696259, -0.004272108897566795, -0.17470991611480713, 0.016281671822071075, -0.12140850722789764, 0.01992291584610939, 0.18717673420906067, 0.04342179000377655, -0.05866405367851257, 0.2181696891784668, 0.06851263344287872, -0.13931772112846375, 0.10651670396327972, -0.01312151551246643, -0.0986027717590332, -0.05385939031839371, -0.14178822934627533, 0.025119896978139877, -0.0035399398766458035, -0.16885946691036224, -0.044755902141332626, 0.08923300355672836, -0.23971152305603027, 0.057693324983119965, 0.013261618092656136, -0.025408176705241203, -0.11713224649429321, 0.12320666015148163, -0.1322854608297348, -0.03047943487763405, 0.20981743931770325, -0.2000383883714676, 0.20903480052947998, 0.19105759263038635, -0.020718557760119438, 0.09377580136060715, 0.13807745277881622, 0.013951729983091354, -0.011441564187407494, 0.060048531740903854, -0.036200493574142456, -0.13684043288230896, 0.06336086988449097, -0.015353485010564327, 0.13537700474262238, 0.14345785975456238]]},
"000051": {"embedding": [[-0.08015099912881851, 0.12178363651037216, -0.0345768965780735, -0.05449463799595833, -0.07341118156909943, -0.1603495329618454, -0.002347029745578766, -0.06552419066429138, 0.1881236433982849, -0.1243305653333664, 0.19982385635375977, -0.0193827822804451, -0.14295099675655365, -0.10185277462005615, -0.03933537006378174, 0.11112367361783981, -0.23536957800388336, -0.14517389237880707, -0.07652006298303604, -0.08052785694599152, 0.07516302913427353, 0.020853061228990555, -0.04689672589302063, -0.020229309797286987, -0.13303720951080322, -0.3290904760360718, -0.13692067563533783, -0.1125623881816864, 0.08050940930843353, -0.037693098187446594, 0.09670465439558029, 0.002786052878946066, -0.22092178463935852, -0.08427076041698456, 0.04727393761277199, -0.023306164890527725, -0.045662786811590195, -0.060207266360521317, 0.1856660395860672, 0.06409016996622086, -0.1670185625553131, 0.013908753171563148, 0.07029157131910324, 0.2955232262611389, 0.12868967652320862, 0.005791019648313522, 0.03209688514471054, -0.10018539428710938, 0.10984398424625397, -0.18998369574546814, 0.0396847277879715, 0.17453961074352264, 0.16146808862686157, 0.07683068513870239, 0.1442624181509018, -0.06184585019946098, 0.08086562156677246, 0.10972853749990463, -0.258766770362854, 0.06418737769126892, 0.10029155015945435, -0.0757865309715271, -0.0709424763917923, -0.03251511603593826, 0.14030686020851135, 0.086477130651474, -0.056645240634679794, -0.13235877454280853, 0.24294491112232208, -0.16321860253810883, -0.07392430305480957, 0.0203314870595932, -0.03500505909323692, -0.1808982789516449, -0.29834505915641785, -0.004997839219868183, 0.3946496844291687, 0.2308410108089447, -0.0740547850728035, 0.07999168336391449, -0.10297621786594391, -0.0428827628493309, 0.05509524419903755, 0.04989355057477951, -0.1056678295135498, -0.030556172132492065, -0.06980644166469574, 0.11635952442884445, 0.149620920419693, -0.020436471328139305, -0.03733403608202934, 0.14050258696079254, -0.028776682913303375, -0.014371075667440891, -0.04101985692977905, -0.05364494025707245, -0.142959862947464, 0.003012346103787422, -0.03938332200050354, -0.0165596641600132, 0.07976140081882477, -0.08938154578208923, 0.004738215357065201, 0.13259157538414001, -0.16936448216438293, 0.1021847352385521, 0.023570509627461433, -0.07664364576339722, -0.05599138140678406, 0.0579352006316185, -0.03092704527080059, 0.013240698724985123, 0.038412630558013916, -0.2119998186826706, 0.29885929822921753, 0.15316839516162872, -0.031159767881035805, 0.15218207240104675, 0.03369343280792236, -0.008330787532031536, -0.02326987311244011, -0.13384723663330078, -0.16643409430980682, -0.14610448479652405, -0.06337318569421768, 0.0437481589615345, 0.07324021309614182, 0.00726955384016037]], "url": "http://i.imgur.com/7jboVfu.jpg", "landmarks": [{"left_eyebrow": [[-1.594482831249576, -1.3468902777303138], [-1.4316830453290004, -1.5814506035545945], [-1.094783192824529, -1.6561234279132033], [-0.765164051457316, -1.57964560417085], [-0.4701434663926505, -1.4139335337953713]], "bottom_lip": [[0.821424824669486, 0.7086978228404887], [0.4470141314075637, 0.9330651530726077], [0.11302656335799569, 0.9472777181908317], [-0.09858434398335109, 0.93708472259867], [-0.3389692387174386, 0.8952054551588642], [-0.5476678616038819, 0.8245522003263177], [-0.7778597607458078, 0.571062025545165], [-0.6598515267199415, 0.6373468536953566], [-0.33023238535272853, 0.7138246774377098], [-0.12007762023883342, 0.7542478026500639], [0.09153328710251335, 0.7644407982422255], [0.6990481639612647, 0.7331033835508745]], "right_eyebrow": [[0.22660565709922637, -1.410672392184175], [0.5981040659062452, -1.5745794631759096], [0.9940080354236496, -1.6161098734594224], [1.4157737078788917, -1.5654937526549066], [1.7395682803362977, -1.3680954104317837]], "top_lip": [[-0.7778597607458078, 0.571062025545165], [-0.5087008786189796, 0.644627564832615], [-0.2970899712776328, 0.6548205604247767], [-0.08693520616373769, 0.6952436856371309], [0.09590171378486836, 0.6737504093816484], [0.42697699737953304, 0.7199981035038093], [0.821424824669486, 0.7086978228404887], [0.6990481639612647, 0.7331033835508745], [0.12030727449525405, 0.7961270700898698], [-0.09130363284609272, 0.7859340744977081], [-0.30145839795998786, 0.7455109492853538], [-0.6598515267199415, 0.6373468536953566]], "right_eye": [[0.5660689369023084, -0.9095166115316766], [0.8151906850011059, -1.0490181218130252], [1.0584878641900968, -1.0675991136136043], [1.295960474469281, -0.9652595869334135], [1.0785249982181273, -0.8545320640448059], [0.8366839612565883, -0.8661812018644193]], "nose_tip": [[-0.5458628622201376, 0.1580332064546333], [-0.40053678302898227, 0.28623443607266125], [-0.16306417274979812, 0.3885739627528519], [0.08460143312154776, 0.2793025820916957], [0.3293547545379903, 0.23049146067092427]], "left_eye": [[-1.217508710689043, -0.9954290029513255], [-1.0317595062855336, -1.0773825384471927], [-0.7596883397038022, -1.0642772584001274], [-0.5553581434997138, -0.9029336147070038], [-0.8001114649161563, -0.8541224932862325], [-1.0419525018776954, -0.8657716311058459]], "nose_bridge": [[-0.09462548805956937, -1.0322421293961908], [-0.14378546663663355, -0.6407065865611413], [-0.19148930298624606, -0.2794011733462842], [-0.24064928156331022, 0.11213436948876525]], "transform": {"angle": -0.04813137174581458, "scale": 33.04127113162911, "center": [127.76388888888889, 163.91666666666666]}, "chin": [[-1.8206551608654393, -1.0547819771205516], [-1.784949319491733, -0.5379574891223774], [-1.716101064042931, -0.08013711813713643], [-1.647252808594129, 0.37768325284810456], [-1.5164881516774902, 0.8081857786680565], [-1.2604345495977272, 1.1538224845372378], [-0.8488618727346471, 1.4160495126831005], [-0.4358330536441153, 1.648046411208771], [0.04493673582405973, 1.7318049460883824], [0.5617612238222338, 1.6960991047146763], [1.0844102807302145, 1.5394727448602001], [1.4919633880672325, 1.2561012976151482], [1.8434246628462205, 0.8791271770546154], [2.048103716206602, 0.404181956496247], [2.1635485229338576, -0.10536182036466872], [2.2502193422683727, -0.6465918690732286], [2.3066600319826946, -1.18927806000924]]}]},
"000052": {"embedding": [[-0.07129108905792236, 0.09763678163290024, 0.11580368876457214, -0.015694517642259598, -0.11281588673591614, -0.033157527446746826, -0.06371784210205078, 0.007641907781362534, 0.04007149860262871, 0.002594449557363987, 0.15916723012924194, 0.015318477526307106, -0.19099444150924683, -0.05763518810272217, -0.057220082730054855, 0.07329066097736359, -0.12706725299358368, -0.041258905082941055, -0.1462375670671463, -0.003921331837773323, -0.02711254358291626, 0.10037166625261307, 0.025488942861557007, -0.04359796270728111, -0.10644226521253586, -0.267548143863678, -0.06273865699768066, -0.07752931118011475, 0.042525261640548706, -0.09686224162578583, 0.08184649795293808, 0.07958710938692093, -0.19335812330245972, -0.09080204367637634, 0.03493185341358185, 0.023055827245116234, -0.07701975852251053, -0.039704881608486176, 0.1797606199979782, 0.09788660705089569, -0.17699547111988068, 0.028642170131206512, -0.037123121321201324, 0.3678699731826782, 0.2792380750179291, 0.0009373482316732407, -0.06072719022631645, -0.000834430567920208, 0.09041090309619904, -0.3329578638076782, 0.11320503056049347, 0.1388988196849823, 0.0850566104054451, 0.06250127404928207, 0.1553208827972412, -0.08486217260360718, 0.10371419042348862, 0.15052837133407593, -0.22123342752456665, 0.06406417489051819, -0.002502378076314926, -0.11279647052288055, 0.025371741503477097, -0.06002482771873474, 0.1563384234905243, 0.061882320791482925, -0.07434942573308945, -0.11407545953989029, 0.12970441579818726, -0.1080096885561943, -0.013245017267763615, 0.1454515904188156, -0.08812664449214935, -0.11905080080032349, -0.34504929184913635, 0.041415199637413025, 0.37730294466018677, 0.17271780967712402, -0.2193625122308731, -0.004010036587715149, -0.07302121818065643, -0.03477134928107262, 0.11098891496658325, 0.054929204285144806, -0.028608113527297974, -0.10231272131204605, -0.01805388554930687, -0.006380915641784668, 0.14002762734889984, -0.007725473493337631, -0.15219725668430328, 0.21421703696250916, -0.016120770946145058, -0.08963500708341599, 0.06644292920827866, -0.06772409379482269, -0.021047193557024002, -0.06335638463497162, -0.10626000165939331, -0.02410011552274227, 0.06038332358002663, -0.14151765406131744, -0.04158340394496918, 0.12700329720973969, -0.16425631940364838, 0.12304772436618805, 0.039408717304468155, 0.005336537957191467, 0.05005832388997078, -0.08929943293333054, -0.14608576893806458, 0.041200339794158936, 0.21876263618469238, -0.3115861415863037, 0.31085821986198425, 0.138798788189888, -0.03543497622013092, 0.07296324521303177, 0.07837647199630737, -0.006198979914188385, -0.044153835624456406, -0.021907318383455276, -0.06300602108240128, -0.10683352500200272, 0.05940945819020271, -0.03210742026567459, 0.07621318101882935, 0.003619515337049961]], "landmarks": [{"top_lip": [[-0.635027410484762, 0.725141473713899], [-0.4401061293477527, 0.6677005659257258], [-0.24631477609936778, 0.6423698956975127], [-0.08802344407681642, 0.7122400102605553], [0.10576790917156845, 0.686909340032342], [0.36151988176262445, 0.728059000701298], [0.6814923294736007, 0.7714685171475029], [0.5519214513451359, 0.799059043152965], [0.13335843517703058, 0.8164802181608067], [-0.09141322774268987, 0.8085707229404354], [-0.2519644155424902, 0.802921083497313], [-0.5398266256935064, 0.7606414949397325]], "nose_bridge": [[-0.08783802954514094, -1.1203033864344174], [-0.09913730843138578, -0.7992010108348169], [-0.14367675276621517, -0.44711832556388065], [-0.1561059595410845, -0.09390571240431991]], "right_eyebrow": [[0.21584317104661793, -1.5275671237162778], [0.5747054236493011, -1.6756891047412088], [0.9611582022574464, -1.6942402076376752], [1.3430912693110937, -1.5843503602943012], [1.5909337466817781, -1.3184290367056248]], "chin": [[-1.7288499287689778, -1.081598996074386], [-1.7148185374270093, -0.5667052672264005], [-1.6675469806364565, -0.08279184804975054], [-1.5239447111660236, 0.40451135479277284], [-1.3138621107984214, 0.8298539382926251], [-1.0384291074222745, 1.225346140009766], [-0.7286260107089187, 1.5577477944956117], [-0.41769298610693845, 1.8580392114214972], [0.02846055606662902, 1.97018891454212], [0.48026373768331887, 1.9217874298629427], [0.9067362490717956, 1.6795945919353805], [1.3664489259088568, 1.4064214443364826], [1.734350601620536, 1.0014175628318713], [1.9439609453096636, 0.5265435667642171], [2.0583705042075353, 0.016169549470729586], [2.141799753434072, -0.5274446332713426], [2.161008527540688, -1.0733186717906635]], "left_eyebrow": [[-1.560389245748806, -1.300721019550984], [-1.3896687069513853, -1.584063518147502], [-1.0961568573572469, -1.7023351173897219], [-0.7440741720863105, -1.6577956730548926], [-0.45960174560116795, -1.519185371817432]], "right_eye": [[0.4878863907568912, -1.0357442093192564], [0.6861974555597741, -1.18951582978731], [0.9109691184794945, -1.1816063345669388], [1.1323509977333412, -1.077366126666687], [0.9684100262676677, -0.9866850534299292], [0.7103981978993628, -0.9636142389789651]], "left_eye": [[-1.1486057969124475, -1.1254807691990654], [-0.9525545878868137, -1.2150319145471986], [-0.7277829249670933, -1.207122419326827], [-0.5407711390504554, -1.03979166419528], [-0.7356924201874647, -0.9823507564071069], [-0.9925743206671452, -0.9913901795161028]], "transform": {"center": [126.95833333333333, 166.75], "scale": 31.12345210341124, "angle": -0.035174509327341334}, "nose_tip": [[-0.4530075928010965, 0.12069659951778017], [-0.2947162607785451, 0.1905667140808227], [-0.10318476330740922, 0.2294565189725297], [0.09173651782960014, 0.17201561118435646], [0.25341763351802493, 0.14555501306751883]], "bottom_lip": [[0.6814923294736007, 0.7714685171475029], [0.3868505519908376, 0.921850353949683], [0.12770879573390814, 0.9770314059606071], [-0.09819279507443678, 1.0012321483001958], [-0.25761405498561263, 0.9634722712971133], [-0.44801562456812405, 0.8924722288454463], [-0.635027410484762, 0.725141473713899], [-0.5398266256935064, 0.7606414949397325], [-0.25083448765386573, 0.7708108459373529], [-0.09141322774268987, 0.8085707229404354], [0.10237812550569499, 0.7832400527122223], [0.5519214513451359, 0.799059043152965]]}], "url": "http://i.imgur.com/vsXak0b.jpg"},
"000054": {"url": "http://i.imgur.com/4yW3KzA.jpg", "landmarks": [{"top_lip": [[-0.9040406865019297, 0.5477814233375404], [-0.5709924963475584, 0.4558584357363146], [-0.2679694921551151, 0.4549347208785939], [-0.02545871731538848, 0.4844980494116615], [0.24707724348626622, 0.4230621052012242], [0.6107972200029701, 0.45225594779120365], [0.9745171965196741, 0.481449790381183], [0.853492737814241, 0.5424238771627601], [0.2476314724008987, 0.6048759077166901], [-0.024996859886528104, 0.6360095515078832], [-0.2675076347262548, 0.6064462229748153], [-0.7523444414341638, 0.6079241667471685]], "bottom_lip": [[0.9745171965196741, 0.481449790381183], [0.6425774641945676, 0.9370003830133407], [0.24938653063056812, 1.180619615682332], [-0.023241801656858668, 1.2117532594735252], [-0.2656602050108132, 1.2124922313597017], [-0.5996321100229053, 1.0013922147684844], [-0.9040406865019297, 0.5477814233375404], [-0.7523444414341638, 0.6079241667471685], [-0.2664915483827619, 0.9397715275865028], [-0.023980773543035273, 0.9693348561195706], [0.24855518725861944, 0.9078989119091334], [0.853492737814241, 0.5424238771627601]], "right_eye": [[0.5155488589139496, -0.9716750574559632], [0.7272031044197995, -1.1238331599525895], [0.9393192073545097, -1.124479760352994], [1.1517124247465362, -1.0342194594956653], [0.9700833652026144, -0.9730606297425444], [0.727757333334432, -0.9420193574371233]], "nose_bridge": [[-0.06047196350900865, -1.0608269004840267], [-0.059363505679743744, -0.6971992954530949], [-0.08864971975549524, -0.36378161935563524], [-0.0876336334120024, -0.03045631474394773]], "left_eye": [[-1.1814723360495043, -0.9968045546719712], [-0.9697257190578824, -1.1186603567493532], [-0.7272149442181558, -1.0890970282162853], [-0.5449392842738294, -0.9381397550346962], [-0.7569630157227676, -0.9071908542150473], [-0.9994737905624942, -0.936754182748115]], "transform": {"scale": 33.00064153650634, "angle": 0.0030483230111315947, "center": [125.88888888888889, 166.01388888888889]}, "left_eyebrow": [[-1.5161832129477728, -1.450322974617143], [-1.2743190385084509, -1.6328757490187855], [-0.9713884058017798, -1.6641017642957507], [-0.637878358218548, -1.604513249800755], [-0.3647881685022609, -1.4841353914957265]], "nose_tip": [[-0.4204047091090575, 0.152373574115011], [-0.26870846404129173, 0.21251631752463926], [-0.05631524664926525, 0.30277661838196773], [0.12522144140888444, 0.21131548820960228], [0.3068505009528062, 0.1501566584564812]], "right_eyebrow": [[0.24125783988262547, -1.4859828212111679], [0.5741212870654526, -1.6385104096508822], [0.9072618487055959, -1.7001310968328636], [1.2406795248030555, -1.6708448827571123], [1.544164386424359, -1.5202570955186117]], "chin": [[-1.7874259729486188, -0.9646548245372855], [-1.7556457287570209, -0.4799103893151484], [-1.7238654845654235, 0.004834045906988667], [-1.6315730110211095, 0.45909143773833727], [-1.508978237057551, 0.9132564580839138], [-1.2350567039693152, 1.3063550201621412], [-0.9006229415283629, 1.66896653884958], [-0.5057693212204659, 1.9707887137269864], [-0.05095770047448487, 2.0603100426981387], [0.40329969135686367, 1.9680175691538242], [0.8570028542735798, 1.6939112930940439], [1.2803113452852797, 1.3895950881007917], [1.612528192067702, 1.024951396726367], [1.8232587227158312, 0.569770290037298], [1.912687680201211, 0.08465636887207255], [1.9717219657815743, -0.43066748122662507], [2.0004539509426933, -0.9458989598395504]]}], "embedding": [[-0.10082656890153885, 0.13979963958263397, 0.0679706484079361, -0.15825599431991577, -0.047593437135219574, -0.003193933516740799, -0.07789216935634613, -0.09299299865961075, 0.21734386682510376, -0.16251224279403687, 0.14183638989925385, -0.014312885701656342, -0.2226039469242096, 0.010436590760946274, -0.043346814811229706, 0.21827489137649536, -0.15035615861415863, -0.24022932350635529, -0.18100380897521973, 0.027413545176386833, 0.021770358085632324, 0.03939622640609741, -0.041514284908771515, 0.09817297011613846, -0.04436063766479492, -0.341342031955719, -0.05858032405376434, -0.006322581321001053, -0.062304459512233734, -0.07191941142082214, 0.07332059741020203, 0.09733936935663223, -0.21707189083099365, 0.00011228024959564209, -0.006712757050991058, 0.12148798257112503, -0.06514107435941696, -0.16422563791275024, 0.1380717009305954, 0.07225421071052551, -0.24920709431171417, -0.08671894669532776, 0.06807515025138855, 0.2625332474708557, 0.22283439338207245, -0.011956866830587387, 0.026165569201111794, -0.04995666444301605, 0.12277743220329285, -0.3289404511451721, -0.015247470699250698, 0.2214905172586441, 0.019263338297605515, 0.1780523806810379, 0.057590555399656296, -0.16067549586296082, 0.13776452839374542, 0.11194678395986557, -0.20806942880153656, 0.07579750567674637, 0.08119425177574158, -0.10622265189886093, -0.00952860713005066, -0.0961349755525589, 0.19784781336784363, 0.14078566431999207, -0.14635151624679565, -0.18374302983283997, 0.22774559259414673, -0.1514042764902115, -0.10500812530517578, -0.006428717635571957, -0.17543728649616241, -0.21212124824523926, -0.2746233344078064, -0.03254812955856323, 0.3349789083003998, 0.21987712383270264, -0.11647222936153412, 0.05626789852976799, -0.06880690157413483, -0.04948050528764725, -0.07835212349891663, 0.17157164216041565, 0.004964282736182213, -0.016626786440610886, -0.05347110703587532, 0.02176966518163681, 0.24804504215717316, 0.05712495371699333, -0.008410625159740448, 0.3142167329788208, -0.033465735614299774, -0.08144889026880264, -0.03844869136810303, 0.06289032101631165, -0.0839952677488327, 0.0390300452709198, -0.1622130274772644, 0.008869349956512451, -0.06864556670188904, -0.05324419215321541, -0.03174581751227379, 0.1314167082309723, -0.11569994688034058, 0.21390990912914276, -0.010311277583241463, 0.09898388385772705, -0.024750124663114548, 0.061534952372312546, -0.12694798409938812, -0.08724597096443176, 0.15113931894302368, -0.10593414306640625, 0.19646932184696198, 0.20868165791034698, 0.13717405498027802, 0.07470420002937317, 0.11902866512537003, 0.16392305493354797, 0.06962279230356216, -0.04096757248044014, -0.2097378969192505, -0.10554765909910202, -0.01657409965991974, 0.011637380346655846, -0.05299903452396393, 0.12416969984769821]]},
"000055": {"embedding": [[-0.14213891327381134, 0.18722262978553772, 0.017722688615322113, 0.016781743615865707, -0.038163088262081146, -0.016915660351514816, -0.06861220300197601, -0.17342697083950043, 0.15363702178001404, 0.06410887092351913, 0.12669417262077332, 0.013291871175169945, -0.198444664478302, -0.054463256150484085, -0.04827054589986801, 0.0757390558719635, -0.17350655794143677, -0.1665952056646347, -0.15527990460395813, -0.07030379772186279, 0.00024234503507614136, 0.07414984703063965, 0.021446365863084793, 0.08398284018039703, -0.20047083497047424, -0.23990097641944885, -0.0049186646938323975, -0.11650994420051575, 0.023719357326626778, -0.1509016454219818, 0.0024044960737228394, 0.018920041620731354, -0.264364093542099, -0.08201392740011215, 0.06922870874404907, 0.08523862808942795, -0.02516917511820793, -0.023520834743976593, 0.20101967453956604, 0.04084780812263489, -0.15611198544502258, 0.0465390682220459, 0.03442646935582161, 0.32259929180145264, 0.21197395026683807, 0.053165026009082794, -0.0686245933175087, -0.11103162169456482, 0.2198907732963562, -0.28934812545776367, 0.12169785052537918, 0.14769881963729858, 0.07994431257247925, 0.05142833665013313, 0.15150773525238037, -0.26048123836517334, 0.049592602998018265, 0.1272590160369873, -0.2002725750207901, 0.10289710015058517, 0.030321283265948296, -0.08613887429237366, -0.007998714223504066, -0.061924345791339874, 0.11444991827011108, 0.1046597808599472, -0.044886525720357895, -0.11461354047060013, 0.05404909700155258, -0.08869203925132751, -0.010217289440333843, 0.14171309769153595, -0.029436318203806877, -0.18504773080348969, -0.3778919577598572, 0.03359893709421158, 0.4467373490333557, 0.12355178594589233, -0.2490191012620926, -0.018249360844492912, -0.009736270643770695, -0.009766865521669388, 0.110625259578228, -0.038760554045438766, -0.18196925520896912, -0.04203075170516968, -0.1309329718351364, 0.031116928905248642, 0.2232036590576172, 0.10191838443279266, -0.09157585352659225, 0.17498257756233215, -0.04498894885182381, -0.01289860438555479, 0.05389474332332611, 0.04617661237716675, -0.15065866708755493, -0.010691465809941292, -0.1307322382926941, -0.02894333377480507, 0.06396519392728806, -0.04693594202399254, -0.009689591825008392, 0.11407403647899628, -0.20215921103954315, 0.0999060794711113, 0.05021298676729202, -0.04167140647768974, -0.06629669666290283, -0.029593942686915398, -0.1690855771303177, 0.0642549991607666, 0.18011581897735596, -0.3269714117050171, 0.31123873591423035, 0.12163563072681427, -0.008123807609081268, 0.13016261160373688, 0.035315439105033875, -0.025172285735607147, -0.06253013014793396, 0.04723625257611275, -0.09280385076999664, -0.10867395997047424, 0.12675023078918457, -0.040657706558704376, 0.1083979383111, 0.01995426043868065]], "url": "http://i.imgur.com/5WFc4PQ.jpg", "landmarks": [{"top_lip": [[-0.6576909025600637, 0.7298407937897473], [-0.4774908206908383, 0.640138245045923], [-0.23733004278274805, 0.5805485417184606], [-0.05739495570738163, 0.6408802304687279], [0.12275212720307194, 0.581184529223722], [0.3926547578161216, 0.6716820623491231], [0.6625043894703994, 0.7921864429733424], [0.5424769994751261, 0.7919744471382553], [0.15249397990803137, 0.7312717656765855], [-0.05760695154246877, 0.7609076204640012], [-0.23759503757660697, 0.7305827792125523], [-0.5676703600636086, 0.7299997906660627]], "chin": [[-1.7949301668651685, -0.9825634740762255], [-1.7358174541666525, -0.47234106867877024], [-1.676651742509364, 0.007874489219866665], [-1.6174860308520762, 0.48809004711850357], [-1.468246777739561, 0.9384577543946374], [-1.2288809842130477, 1.32897076354945], [-0.8693818027737172, 1.6596820735417133], [-0.47982277487679675, 1.9604395349939296], [-0.02982606031206532, 2.021248214373143], [0.5104031925842083, 1.9621885006333986], [0.990936744235476, 1.7229817039832003], [1.4116155977654221, 1.3936483669190036], [1.7123730592176385, 1.0040893390220833], [1.8932621275508972, 0.5242977727936206], [1.954176804847654, 0.014287363231252424], [2.015091482144411, -0.49572304633111564], [2.0460523109011217, -1.0357933023510737]], "right_eye": [[0.5457629349189766, -1.0684500977884814], [0.7260160157469737, -1.188159494031124], [0.9660707957375204, -1.1877355023609497], [1.1759067323941617, -1.067337119654274], [0.9657528019848898, -1.0076944173680398], [0.7557048694931615, -1.0080654100794422]], "nose_tip": [[-0.38646329797771944, 0.07016713944469001], [-0.23648205944239953, 0.10043898173736726], [-0.056546972367033106, 0.16077067048763463], [0.12354711158464868, 0.131081816741447], [0.3337010419939206, 0.07143911445521281]], "nose_bridge": [[-0.05426801713984643, -1.1295237719615536], [-0.05479800672756426, -0.8294552969733704], [-0.0853878427728722, -0.4994329734451405], [-0.08591783236059003, -0.19936449845695717]], "left_eyebrow": [[-1.5843522447857223, -1.2822609563530063], [-1.4038341691638665, -1.5520045900897408], [-1.0736528487593213, -1.6114352965408876], [-0.7135706787735012, -1.610799309035626], [-0.3537005046227684, -1.4901359315350915]], "left_eye": [[-1.1646273725136682, -1.071471038438473], [-0.9843742916856711, -1.1911804346811157], [-0.7143126641963062, -1.1907034440521695], [-0.5045297264984367, -1.0402982138466754], [-0.7446905044065271, -0.980708510519213], [-0.9847452843970737, -0.9811325021893873]], "right_eyebrow": [[0.2764432928524166, -1.4890229534008839], [0.6367374586733239, -1.6084143558908959], [0.9968726276179156, -1.637785215884453], [1.356848799686192, -1.5771355333815549], [1.6264864355053825, -1.3366037627620622]], "bottom_lip": [[0.6625043894703994, 0.7921864429733424], [0.3922307661459473, 0.9117368423396697], [0.12211613969781053, 0.941266699209542], [-0.05797794425387125, 0.9709555529557296], [-0.2679728777868278, 0.9405777127455088], [-0.4779148123610126, 0.8801930250364697], [-0.6576909025600637, 0.7298407937897473], [-0.5676703600636086, 0.7299997906660627], [-0.2676018850754253, 0.7305297802537806], [-0.057553952583696985, 0.730900772965183], [0.12248713240921302, 0.7312187667178137], [0.5424769994751261, 0.7919744471382553]], "transform": {"angle": -0.0017662269807834565, "center": [125.875, 166.63888888888889], "scale": 33.32567475676715}}]},
"000056": {"landmarks": [{"nose_bridge": [[0.19578163753370859, -1.1266287077804782], [0.23187894748417034, -0.8157173191055291], [0.29911696235245344, -0.505301590933844], [0.3357099328061792, -0.16324949734107352]], "left_eye": [[-1.236195128182808, -1.072687619712511], [-0.9890521308532938, -1.2012157234099086], [-0.7394308310074591, -1.1740403025181998], [-0.5189675940663897, -1.0218064014519412], [-0.7359612074846108, -0.9560553680934504], [-1.0167232122482668, -0.9827351284818954]], "right_eye": [[0.509171328724978, -1.0070224931418335], [0.7246779606334071, -1.1661956412537884], [0.9738035999759777, -1.1701609252799008], [1.1626304714959617, -1.0485720686281996], [0.977273223498826, -0.9521759908551515], [0.7281475841562554, -0.9482107068290391]], "transform": {"center": [122.13888888888889, 166.06944444444446], "scale": 32.10824399685739, "angle": 0.015915460272553954}, "right_eyebrow": [[0.5625308495018678, -1.5685465026691454], [0.8096738468313822, -1.697074606366543], [1.0573125046641607, -1.794462005146119], [1.3385701699310806, -1.736641539839853], [1.4661069526219503, -1.5517799523459812]], "nose_tip": [[-0.15808040134958554, 0.12494741497154309], [0.029259488660606445, 0.15311415686978017], [0.21709503917406245, 0.2124216036858385], [0.372302903259905, 0.17880259625169698], [0.49587440192466226, 0.11453854440299817]], "chin": [[-2.1694249547109195, -0.995536394778947], [-2.160998726155431, -0.46614441117598454], [-2.0902910877642995, 0.06225625142044981], [-1.988938404958611, 0.5590205485957989], [-1.763518562984901, 1.0226614988402702], [-1.3843778384351406, 1.3592613268971363], [-0.974096408967559, 1.6953654944507384], [-0.5030205511741268, 1.9370562262443483], [-0.03541431690354299, 1.960762023613209], [0.367432205015078, 1.829755617399491], [0.6738826491606508, 1.5133919631886377], [0.9175560229673168, 1.1668789250664906], [1.1612293967739828, 0.8203658869443435], [1.3104893348206568, 0.4130584204963462], [1.3969722025284244, -0.024398429862944385], [1.4523143653183703, -0.46135961971897094], [1.4765158231904951, -0.8978251490717335]], "bottom_lip": [[0.5997053872466711, 0.7670063661674538], [0.44747148618041277, 0.9874696031085232], [0.2932549431010983, 1.0833700203783072], [0.13804707901525576, 1.1169890278124488], [-0.049292810994936216, 1.0888222859142118], [-0.3310461367651203, 0.9998611156901243], [-0.677063514384003, 0.7873284468012796], [-0.5208643292916324, 0.8159908492027806], [-0.02211739010322724, 0.8392009860683772], [0.1647268394037007, 0.8362270230487929], [0.2887939985717219, 0.8031036761179154], [0.4756382280786498, 0.8001297130983313]], "left_eyebrow": [[-1.55602840591651, -1.597122998282833], [-1.246603998751353, -1.7266424229867585], [-0.9351969495731398, -1.731599028019399], [-0.5921535349738412, -1.7059105886374824], [-0.27826818327930786, -1.5551636690810162]], "top_lip": [[-0.677063514384003, 0.7873284468012796], [-0.273721331962118, 0.687462745505383], [0.0055536912917457755, 0.6207203911403639], [0.16175287638411645, 0.649382793541865], [0.31696074046995903, 0.6157637861077235], [0.47365558606559366, 0.675566893427046], [0.5997053872466711, 0.7670063661674538], [0.4756382280786498, 0.8001297130983313], [0.28829833806845784, 0.7719629712000942], [0.16423117890043665, 0.8050863181309716], [0.008031993808065994, 0.7764239157294706], [-0.5208643292916324, 0.8159908492027806]]}], "url": "http://i.imgur.com/rupbujV.jpg", "embedding": [[-0.1802159696817398, 0.042935408651828766, 0.04581107199192047, 0.02294294722378254, -0.1131555512547493, 0.03491734340786934, 0.03617074340581894, -0.07744492590427399, 0.12695421278476715, -0.03472967445850372, 0.2619808614253998, 0.024764318019151688, -0.26642629504203796, -0.09857715666294098, 0.038820695132017136, 0.08885903656482697, -0.10619427263736725, -0.0942302793264389, -0.01891915686428547, -0.06754801422357559, 0.10175298154354095, 0.06098588556051254, 0.0832633301615715, 0.095578633248806, -0.20988155901432037, -0.3176613450050354, 0.0001529790461063385, -0.10994790494441986, -0.11090603470802307, -0.14657801389694214, 0.04880620911717415, 0.1203104704618454, -0.15303349494934082, 7.70464539527893e-05, 0.03650331869721413, 0.14592601358890533, -0.0072014168836176395, 0.029985956847667694, 0.23165102303028107, -0.04388847202062607, -0.2643478214740753, -0.024575065821409225, 0.11915542185306549, 0.28449565172195435, 0.1715872436761856, -0.012892968021333218, -0.0038114096969366074, -0.038973286747932434, 0.21007081866264343, -0.34341922402381897, 0.0491304025053978, 0.14034689962863922, 0.06107814237475395, -0.0031362008303403854, 0.0593578964471817, -0.149817556142807, -0.051356904208660126, 0.08145656436681747, -0.15447542071342468, 0.05827607214450836, 0.04944848269224167, -0.12029793113470078, -0.010253533720970154, -0.09059285372495651, 0.15995310246944427, 0.06320138275623322, -0.15624678134918213, -0.1342162936925888, 0.06644940376281738, -0.1746734380722046, -0.0886562168598175, 0.23726509511470795, -0.14354556798934937, -0.26039260625839233, -0.3122178018093109, 0.05735897272825241, 0.42891210317611694, 0.07564631849527359, -0.11154313385486603, 0.025520285591483116, -0.07164743542671204, -0.026477251201868057, -0.021146642044186592, 0.1426749974489212, 0.027914922684431076, 0.060958269983530045, -0.11250029504299164, 0.095283642411232, 0.24344532191753387, -0.016909945756196976, -0.02142154797911644, 0.30819079279899597, 0.03935112804174423, 0.09316860139369965, 0.021681353449821472, 0.13815200328826904, -0.06500875949859619, -0.00635157898068428, -0.14844830334186554, 0.03176598995923996, -0.021345695480704308, -0.07560312002897263, 0.05768468230962753, 0.06010071188211441, -0.25259944796562195, 0.20094238221645355, -0.06185638904571533, 0.019219012930989265, -0.02898498810827732, -0.054240524768829346, -0.0695381909608841, 0.058263517916202545, 0.1109912246465683, -0.34065526723861694, 0.16010166704654694, 0.12928321957588196, 0.06322190165519714, 0.15585526823997498, 0.017090896144509315, 0.012771249748766422, 0.0035324348136782646, -0.044971439987421036, -0.168172687292099, -0.04056185483932495, 0.05674595385789871, -0.08725279569625854, 0.022892888635396957, 0.005791123956441879]]},
"000058": {"landmarks": [{"nose_tip": [[-0.279797304450068, 0.023327731589280244], [-0.13113117078761413, 0.11492425977896902], [0.048184631486707395, 0.14698383897449338], [0.19826067573281803, 0.11880151388402502], [0.3187444843048035, 0.06032199782760316]], "bottom_lip": [[0.7302159625752416, 0.7240403779112661], [0.4589511544653171, 0.8705916456982349], [0.18839130164722093, 0.957253486845125], [0.0386677350470245, 0.9554910986155541], [-0.14100054487321123, 0.953376232740069], [-0.4094455318158222, 0.8603697939667236], [-0.7071302767866442, 0.7071214509073853], [-0.5574067101864477, 0.7088838391369562], [-0.13747576841406942, 0.6539290995396762], [0.04184003386025213, 0.6859886787352006], [0.19191607810636274, 0.6578063536447322], [0.5505476826550059, 0.7219255120357809]], "chin": [[-1.9774815448985388, -0.7753260405488496], [-1.9831211872331655, -0.296210627428221], [-1.958816116247753, 0.18325726333832182], [-1.8746216186222624, 0.663430109396693], [-1.699888025744825, 1.0847709617527281], [-1.4050231019413164, 1.4775770113723807], [-0.9889694142739942, 1.7520141182955327], [-0.4827291090006397, 1.9975639448363882], [0.025626062148199773, 2.0634454914570077], [0.47585419488653163, 1.9788985161856025], [0.8986049578262234, 1.6843860700280082], [1.2917634850917903, 1.3595764329044604], [1.535903401048989, 0.9731149809112632], [1.6606169413719445, 0.55529890501437], [1.72614601034665, 0.0768884471855697], [1.761377888355402, -0.37192977496910545], [1.7666650530441148, -0.8211004747696947]], "right_eyebrow": [[0.39661027088650536, -1.4661534262025722], [0.6974673146705549, -1.5824075030235876], [1.0279165941287298, -1.6683643888786492], [1.3566034853573334, -1.6045977081335148], [1.594046326042163, -1.4221096070459656]], "right_eye": [[0.5403417175061608, -0.9553309115323333], [0.7820142899419601, -1.1321793702852556], [1.0515167098223137, -1.129007071472028], [1.2590148371871037, -0.9468714480303929], [1.0486968886550003, -0.8894493649117137], [0.8094916597406001, -0.9222138993990664]], "transform": {"angle": -0.011770403820415908, "center": [124.33333333333333, 167.11111111111111], "scale": 33.39256311822946}, "left_eye": [[-1.2559886040502823, -1.0064242836072235], [-1.014668509260397, -1.1533280290401065], [-0.7448136117341294, -1.1801004435469182], [-0.5077232486952143, -0.9676676291393297], [-0.7775781462214821, -0.940895214632518], [-1.0171358527817964, -0.9437150357998315]], "nose_bridge": [[0.06298869261510302, -1.1106941204671565], [0.05981639380187539, -0.841191700586803], [0.08658880830868704, -0.5713368030605352], [0.08306403184954522, -0.27188966986014246]], "top_lip": [[-0.7071302767866442, 0.7071214509073853], [-0.4052158000648521, 0.5010332341262521], [-0.13465594724675595, 0.41437139297936193], [0.014715141707526297, 0.4460784945289721], [0.1947358992736762, 0.4182486470844179], [0.46282840857037305, 0.5411997991778027], [0.7302159625752416, 0.7240403779112661], [0.5505476826550059, 0.7219255120357809], [0.19156360046044857, 0.6877510669647715], [0.011895320540212844, 0.6856362010892865], [-0.1378282460599836, 0.6838738128597155], [-0.5574067101864477, 0.7088838391369562]], "left_eyebrow": [[-1.6695749481962054, -1.4904743837706507], [-1.3680129491203274, -1.6666178872317448], [-1.0076189563421134, -1.7522222954408921], [-0.6193951161193453, -1.65780594608389], [-0.26217342215435896, -1.4739079344126842]]}], "embedding": [[-0.07468327134847641, -0.007433852646499872, 0.02950534224510193, -0.11029880493879318, -0.17452570796012878, -0.07634755223989487, -0.018642717972397804, -0.15946684777736664, 0.22724834084510803, -0.13126593828201294, 0.10286952555179596, -0.0447511225938797, -0.22498668730258942, 0.07671867311000824, 0.004640307277441025, 0.14402037858963013, -0.14176885783672333, -0.11357489228248596, -0.07361099869012833, -0.08791188895702362, -0.009168889373540878, 0.020306531339883804, -0.01729009859263897, 0.19030100107192993, -0.17620056867599487, -0.18886908888816833, -0.10726487636566162, -0.09677921235561371, -0.0749686062335968, -0.06884455680847168, 0.12623167037963867, 0.10083834081888199, -0.19938179850578308, -0.07215652614831924, 0.07867211103439331, 0.17065444588661194, -0.024121323600411415, -0.14148053526878357, 0.18519441783428192, -0.020984044298529625, -0.20714232325553894, -0.0500483512878418, 0.09473748505115509, 0.22451213002204895, 0.13355393707752228, 0.013372675515711308, 0.03240831941366196, -0.09962575137615204, 0.17729805409908295, -0.2676483392715454, 0.013593443669378757, 0.08583325892686844, 0.052551597356796265, -0.03354766219854355, 0.13137981295585632, -0.16767413914203644, 0.10340213030576706, 0.18142372369766235, -0.22701327502727509, 0.0825493261218071, 0.16228142380714417, -0.09478495270013809, -0.005179106257855892, -0.09338178485631943, 0.24845968186855316, 0.009088832885026932, -0.16330291330814362, -0.027262577787041664, 0.18505850434303284, -0.1665395051240921, -0.033365648239851, 0.10824491083621979, -0.10229755938053131, -0.25890207290649414, -0.2903090715408325, 0.04139513522386551, 0.49858027696609497, 0.2046698033809662, -0.1062617227435112, 0.07339106500148773, -0.022489920258522034, -0.002022489905357361, 0.008515533059835434, 0.1709774136543274, 0.019187714904546738, -0.014202840626239777, -0.026165196672081947, 0.1016608327627182, 0.20532231032848358, 0.020602330565452576, 0.07691238820552826, 0.29833152890205383, -0.0035097822546958923, -0.0628439411520958, -0.06302119046449661, -0.017352230846881866, -0.12731802463531494, -0.004251556470990181, -0.08610710501670837, 0.0436897948384285, 0.04548696428537369, 0.005318598356097937, 0.08273882418870926, 0.10709358751773834, -0.21658261120319366, 0.09628048539161682, -0.06920874118804932, -0.10976149886846542, -0.03721294552087784, -0.014503946527838707, -0.15175604820251465, -0.04069451987743378, 0.20940688252449036, -0.3179371953010559, 0.06704680621623993, 0.12484349310398102, -0.007176749408245087, 0.12386946380138397, 0.004654577001929283, 0.10898490250110626, 0.06901541352272034, -0.04130754992365837, -0.18139809370040894, -0.05201072618365288, 0.08891768753528595, -0.11647665500640869, 0.08364738523960114, 0.01501757837831974]], "url": "http://i.imgur.com/a4eq0PO.jpg"},
"000060": {"url": "http://i.imgur.com/Ef6PdVn.jpg", "landmarks": [{"left_eye": [[-0.9069904302652265, -0.8670013490509295], [-0.7922454469820108, -1.0033708658603244], [-0.6524311924679209, -1.0277511895502593], [-0.4882366142638956, -0.9123172587261047], [-0.6280508687779857, -0.8879369350361698], [-0.7956901846867058, -0.8642455588871735]], "left_eyebrow": [[-1.119945655849122, -1.2620637889032644], [-1.1130561804397319, -1.5403144028495663], [-0.8863220040370563, -1.7017531908898353], [-0.6637215128800148, -1.6962416105623233], [-0.4723908208222984, -1.5522936708025994]], "right_eyebrow": [[-0.0522591097390895, -1.6532597032670349], [0.2864642597830459, -1.839767762538178], [0.7052180757843769, -1.8850836722133535], [1.1205271540810129, -1.7912742749153778], [1.4753634768018151, -1.5040673429368687]], "bottom_lip": [[0.6995518674300654, 0.592724686990612], [0.30380048003679166, 0.8335049739691376], [-0.06137005579809593, 0.9636739629100814], [-0.2568344331014463, 0.9866763915181387], [-0.4516098628638577, 0.9818537587315656], [-0.6443184500034521, 0.8935559417611019], [-0.776554281567213, 0.611860590110105], [-0.6652540359886921, 0.6146163802738609], [-0.4467872300772846, 0.7870783289691542], [-0.2798368617095034, 0.7912120142147883], [-0.08437248440615305, 0.7682095856067311], [0.5604265604569145, 0.589279949285917]], "top_lip": [[-0.776554281567213, 0.611860590110105], [-0.6611203507430581, 0.44766601190607974], [-0.4642780783578297, 0.3690134605087622], [-0.2980166575309875, 0.4009722071490265], [-0.10255228022763714, 0.3779697785409693], [0.25779562282067736, 0.44257621936243685], [0.6995518674300654, 0.592724686990612], [0.5604265604569145, 0.589279949285917], [-0.10599701793233218, 0.5170950855141203], [-0.30077244769474354, 0.5122724527275473], [-0.44058670220883356, 0.5366527764174823], [-0.6652540359886921, 0.6146163802738609]], "right_eye": [[0.43274620192265684, -1.0008822354536382], [0.6031413079951331, -1.1358738571811553], [0.8264307466931136, -1.1581873382482732], [1.046964395227338, -1.0692005737368706], [0.8501221228421098, -0.990548022339553], [0.6268326841441292, -0.968234541272435]], "nose_tip": [[-0.7050583653363554, -0.026737926884511598], [-0.5401748395913911, 0.060870942545013046], [-0.3467773049108578, 0.1213436981208465], [-0.09428490973636904, 0.04406904180540699], [0.15820748543811977, -0.033205614510032525]], "chin": [[-1.0251801512531376, -0.5915065252683835], [-1.0904755396155439, -0.2033335608254389], [-1.1286348141242595, 0.21335341255307502], [-1.083318904449084, 0.632107228554406], [-0.9823528719846484, 1.052238939637615], [-0.8243588216490744, 1.4180984230134417], [-0.637850762377931, 1.756821792535577], [-0.39362573769471043, 2.0134478729557], [-0.006141720792704704, 2.1065683227127363], [0.4967762269334558, 2.0354941942657483], [1.057411140071694, 1.8823227767167472], [1.5922878344381186, 1.6449872274429165], [2.04575618724347, 1.3221096513623785], [2.3906800846340563, 0.8851760395395633], [2.542895394885049, 0.3599446107462846], [2.558052240785707, -0.25220673993557974], [2.599656252999117, -0.8080190202872447]], "transform": {"center": [128.34722222222223, 169.33333333333334], "scale": 35.92781337515203, "angle": -0.02475490692216797}, "nose_bridge": [[-0.28863855171491126, -1.1022700557019431], [-0.3511781499135617, -0.8253973368375193], [-0.4415428095068424, -0.5492135655140342], [-0.5040824077054927, -0.2723408466496103]]}], "embedding": [[-0.19943656027317047, 0.09005788713693619, 0.1312020719051361, -0.0675521045923233, -0.10148134082555771, -0.1734139770269394, 0.011290233582258224, -0.09450431168079376, 0.07958141714334488, -0.01787760853767395, 0.292245090007782, -0.07435546815395355, -0.1792943924665451, -0.12104128301143646, -0.011583706364035606, 0.09528385102748871, -0.07824157178401947, -0.14824725687503815, -0.06996419280767441, -0.07764548808336258, -0.0011658817529678345, 0.020244741812348366, -0.01460648700594902, 0.026904668658971786, -0.04273918643593788, -0.2947937548160553, -0.06567984074354172, -0.08420087397098541, 0.07040312886238098, -0.07889055460691452, 0.007747566793113947, 0.06538313627243042, -0.2128661423921585, -0.06429445743560791, -0.023477302864193916, 0.13321547210216522, 0.018736079335212708, -0.05710215866565704, 0.17887499928474426, 0.006839054636657238, -0.15529215335845947, -0.16345511376857758, -0.022057540714740753, 0.2508643567562103, 0.0882844626903534, -0.0005377829074859619, 0.007930414751172066, 0.07213222980499268, 0.030837567523121834, -0.21914498507976532, 0.05072714760899544, 0.13620403409004211, 0.16321371495723724, 0.02278391271829605, 0.015619296580553055, -0.143469899892807, 0.04850160703063011, 0.04577223211526871, -0.21348899602890015, -0.018178293481469154, 0.09101840853691101, -0.10291646420955658, -0.12436056137084961, -0.08286106586456299, 0.2880310118198395, 0.15894350409507751, -0.09338118135929108, -0.0782690942287445, 0.22242340445518494, -0.08760863542556763, -0.05827387794852257, 0.04449838772416115, -0.09655517339706421, -0.07382534444332123, -0.2344406247138977, 0.08282040059566498, 0.30413368344306946, 0.0710434764623642, -0.1963280439376831, -0.035048432648181915, -0.14515088498592377, 0.03299152851104736, -0.0329764187335968, -0.07768776267766953, -0.14571550488471985, 0.12655609846115112, -0.17697711288928986, -0.0024700500071048737, 0.13263724744319916, -0.006810019724071026, -0.026238687336444855, 0.15819624066352844, -0.023553278297185898, 0.03093782439827919, 0.05902451276779175, -0.0013629794120788574, 0.019412130117416382, -0.021490179002285004, -0.05733325332403183, 0.04773727431893349, 0.1749964952468872, -0.1711331009864807, -0.03757466748356819, 0.10598927736282349, -0.19287742674350739, 0.1118440106511116, 0.008370190858840942, 0.005210780538618565, -0.039218321442604065, -0.0151907317340374, -0.08630487322807312, -0.04866756498813629, 0.1561105102300644, -0.17838065326213837, 0.2345399707555771, 0.1544458568096161, -0.012175509706139565, 0.1386108547449112, 0.062135498970746994, 0.04625047370791435, -0.04770484194159508, -0.09740415960550308, -0.09906303882598877, -0.14216402173042297, 0.05144287273287773, -0.04884890466928482, 0.027111459523439407, 0.10592876374721527]]},
"000064": {"url": "http://i.imgur.com/VjhuFll.jpg", "landmarks": [{"chin": [[-1.9178887549901613, -0.8562455307936401], [-1.8577450013549317, -0.37968414219233465], [-1.7976365449541676, 0.06708774746708096], [-1.707703292377048, 0.5436138388339209], [-1.5582263391506148, 0.9902798367899396], [-1.2896619846255535, 1.3772256479243161], [-0.9318350249782195, 1.6746970705296267], [-0.48471016297414765, 1.9124836035477606], [-0.03776178714240383, 2.0013226418564454], [0.4387996014589016, 1.9411788882212158], [0.915184503887879, 1.7320876398765372], [1.3318845167296796, 1.4336984891751205], [1.65914543827688, 1.075836232293321], [1.8373176761767684, 0.5989924658162905], [1.955875618958412, 0.09242979486630147], [2.014854563856276, -0.4140622816147563], [2.044008712577785, -0.9503085598032383]], "nose_bridge": [[-0.04150329399576052, -1.1563642459838728], [-0.0411150244166386, -0.828679757623085], [-0.04079734930644793, -0.5605742671460767], [-0.04040907972732602, -0.2328897787852891]], "left_eyebrow": [[-1.5609795234389339, -1.3333010806774643], [-1.3824896104288544, -1.5420393566774866], [-1.0549110137714637, -1.6317961230822782], [-0.7272265254106759, -1.6321843926614001], [-0.39943614534649124, -1.5432041654148523]], "transform": {"scale": 33.5688525668412, "angle": 0.0011848879370496743, "center": [125.34722222222223, 166.81944444444446]}, "nose_tip": [[-0.3974947974508816, 0.09521827638908617], [-0.2186872093306116, 0.15458549086607198], [-0.03987962121034158, 0.2139527053430578], [0.1685762769139557, 0.1541266268180188], [0.37699687780378743, 0.06451104935109003]], "right_eyebrow": [[0.31551182925886384, -1.5440512990420274], [0.6728799248581445, -1.6338433626812845], [1.0303186149263561, -1.6640564284367618], [1.358108994990541, -1.5750762011902144], [1.5967073644013843, -1.3370425875308212]], "bottom_lip": [[0.7947911049140227, 0.6895963658482569], [0.43749360378367336, 0.8389674273712935], [0.16945870777559643, 0.8988641003652637], [-0.00927828587574231, 0.8990758837720574], [-0.21780477846897087, 0.8993229644133168], [-0.4562266617074861, 0.8102368454633725], [-0.7542981372987122, 0.6616423230985798], [-0.6351048442966873, 0.6912906331026071], [-0.21801656187576463, 0.7205859707619781], [-0.009490069282536085, 0.7203388901207186], [0.16924692436880268, 0.7201271067139249], [0.6756331091464636, 0.6897375547861194]], "top_lip": [[-0.7542981372987122, 0.6616423230985798], [-0.4564737423487455, 0.601710352870144], [-0.21819304804809278, 0.571638476052529], [-0.0096312582203986, 0.6011808943531595], [0.13928093925458473, 0.5712149092389415], [0.4372112259079483, 0.6006514358361751], [0.7947911049140227, 0.6895963658482569], [0.6756331091464636, 0.6897375547861194], [0.16921162713433704, 0.6903376077720351], [-0.009525366517001713, 0.6905493911788289], [-0.21805185911023026, 0.6907964718200883], [-0.6351048442966873, 0.6912906331026071]], "right_eye": [[0.5246736720724737, -1.0080873987292707], [0.7330589757278398, -1.1274924751380895], [0.9713749672629581, -1.1277748530138145], [1.209832147735939, -1.0088992351219803], [0.9715514534352863, -0.9788273583043654], [0.733235461900168, -0.9785449804286404]], "left_eye": [[-1.1732924703807788, -0.9762859574228402], [-0.9946966656673026, -1.0956557365971928], [-0.75641597136665, -1.125727613414808], [-0.5179234936592034, -0.977062496581084], [-0.7562041879598562, -0.9469906197634691], [-0.9945201794949745, -0.946708241887744]]}], "embedding": [[-0.10201483964920044, 0.08911806344985962, 0.049541644752025604, -0.017952866852283478, -0.19738078117370605, -0.04186747223138809, -0.04015723615884781, 0.007917597889900208, 0.19145269691944122, -0.021367628127336502, 0.19583822786808014, -0.0027636848390102386, -0.13724622130393982, -0.12357278168201447, 0.0576544851064682, 0.10320085287094116, -0.22075091302394867, -0.1421990841627121, -0.052150167524814606, -0.07263258844614029, 0.02927304059267044, 0.07079717516899109, -0.08984877914190292, 0.11956660449504852, -0.2154940366744995, -0.3122285008430481, -0.004377376288175583, -0.13315363228321075, 0.088896244764328, -0.11727797985076904, 0.031948406249284744, 0.09170089662075043, -0.16772782802581787, -0.14133009314537048, 0.06341054290533066, 0.16905833780765533, -0.03912987932562828, -0.04685691371560097, 0.22273938357830048, -0.021457817405462265, -0.19804058969020844, 0.013796363025903702, 0.04484282806515694, 0.2889173626899719, 0.192655548453331, 0.03807448223233223, -0.016532259061932564, 0.01843126118183136, 0.2533555328845978, -0.2819978594779968, 0.07643476128578186, 0.16822463274002075, 0.226465106010437, 0.06384359300136566, 0.05313707888126373, -0.18872669339179993, -0.0013199672102928162, 0.19722840189933777, -0.3118620216846466, 0.0708748996257782, 0.021732734516263008, -0.1617242842912674, 0.018232228234410286, -0.0509653240442276, 0.2002658247947693, 0.08508827537298203, -0.12251679599285126, -0.06766967475414276, 0.11943768709897995, -0.11565814167261124, -0.054246582090854645, 0.1124579980969429, -0.0649472326040268, -0.17196205258369446, -0.27822259068489075, 0.07478194683790207, 0.44601619243621826, 0.11876074224710464, -0.25417548418045044, -0.0526432991027832, -0.006184056401252747, -0.07638123631477356, 0.031225014477968216, 0.08893755823373795, -0.040939733386039734, -0.10627748817205429, -0.11139170825481415, 0.061389897018671036, 0.17351709306240082, 0.030976856127381325, 0.013601014390587807, 0.17881998419761658, 0.049281999468803406, 0.07618217170238495, -0.004646001383662224, 0.0176435187458992, -0.13755211234092712, 0.032828208059072495, -0.05239597335457802, 0.02099677361547947, 0.06364809721708298, -0.01908053830265999, 0.021607620641589165, 0.049600157886743546, -0.12316769361495972, 0.2341660112142563, 0.04256598278880119, -0.008511833846569061, -0.06400801986455917, -0.0635697990655899, -0.0874379351735115, 0.04009877145290375, 0.21136298775672913, -0.2361309826374054, 0.27303144335746765, 0.07223859429359436, -0.027702683582901955, 0.23740917444229126, 0.034076444804668427, 0.005114386789500713, -0.005785966757684946, -0.11505445837974548, -0.14910727739334106, -0.09065236151218414, 0.08858804404735565, -0.1355900913476944, 0.16467389464378357, 0.01619821973145008]]},
"000065": {"landmarks": [{"right_eye": [[0.515639476251333, -0.9633957813819364], [0.728942195035616, -1.113645529650792], [0.9717760806939065, -1.1423785691713169], [1.2138118389987143, -1.0497944317818821], [1.0007086520528021, -0.9298739777405165], [0.7580742982328823, -0.9314702324474815]], "nose_tip": [[-0.4622806170480594, 0.15240308620733295], [-0.2503746211323708, 0.21445839753090723], [-0.03826909337831156, 0.2461844146269916], [0.17443502989085954, 0.18692254904060598], [0.38693962132166, 0.1579899776817104]], "right_eyebrow": [[0.30612786239609185, -1.3894026234353904], [0.6407477580903348, -1.5388542443507636], [1.0054974161736971, -1.657777039200276], [1.3694489469035769, -1.6553826571398285], [1.6410158720823922, -1.441281811002063]], "nose_bridge": [[-0.029888756166745384, -1.0276459429275877], [-0.03208360638882224, -0.6940237064251978], [-0.06440821900001845, -0.3909302959886686], [-0.0666030692220953, -0.05730805948627884]], "top_lip": [[-0.7691651324136304, 0.6963350639184464], [-0.49560288885110876, 0.607142967781312], [-0.22204064528858705, 0.5179508716441776], [-0.010134649372898439, 0.5800061829677519], [0.20236994205790204, 0.5510736116088564], [0.5052638206560606, 0.6137275184475426], [0.8079581674158486, 0.7067107195137188], [0.6864414586675179, 0.7362418863877263], [0.20137228286604894, 0.7027200827463063], [-0.011132308564751555, 0.7316526541052019], [-0.22323783631881078, 0.6999266370091175], [-0.6480474873420412, 0.7274624854994188]], "left_eye": [[-1.1824019368113647, -1.0352281527856713], [-0.9694982817038228, -1.124819312599547], [-0.696534633656413, -1.1230235260542114], [-0.5157560593216969, -0.9398505696590477], [-0.7282606507524974, -0.910917998300152], [-0.9708950045724172, -0.912514253007117]], "transform": {"angle": -0.006578753804367742, "center": [125.20833333333333, 164.875], "scale": 32.97070985485956}, "chin": [[-1.9394371014683902, -1.2221922141098767], [-1.9126993803315717, -0.6760653861766864], [-1.825303070739773, -0.12953949456675495], [-1.737507697471233, 0.3563278085881966], [-1.558724441520223, 0.84279370725826], [-1.2580254131441413, 1.239069850599336], [-0.9267975587021989, 1.6052162315512926], [-0.503983226062675, 1.8809733253358913], [-0.019313113937947105, 1.975153717432291], [0.4665541892170044, 1.8873583441637511], [0.9232893891746898, 1.6173876736919006], [1.289635301965017, 1.2558305250224684], [1.5957216899771056, 0.8332157242213148], [1.7806904329176048, 0.37947350183918893], [1.8449405944632558, -0.16605473057888948], [1.9393205183980264, -0.6810541369311073], [1.9732413857161875, -1.2267819011875565]], "left_eyebrow": [[-1.6347474363248962, -1.4325019553186005], [-1.3302573030197729, -1.612482402299834], [-0.9966350665173829, -1.610287552077757], [-0.6332821313026151, -1.5169052873348396], [-0.30065755399207833, -1.3630639659753128]], "bottom_lip": [[0.8079581674158486, 0.7067107195137188], [0.5026699067572424, 1.0080083434049123], [0.2289081313563502, 1.1275297337695367], [-0.01392575430194028, 1.1562627732900617], [-0.2260312820559995, 1.1245367561939772], [-0.49799727091155627, 0.9710944985111918], [-0.7691651324136304, 0.6963350639184464], [-0.6480474873420412, 0.7274624854994188], [-0.22443502734903453, 0.8819024023740574], [-0.012329499594975294, 0.9136284194701417], [0.19997555999745456, 0.9150251423387361], [0.6864414586675179, 0.7362418863877263]]}], "url": "http://i.imgur.com/Pitgp7I.jpg", "embedding": [[-0.12005043774843216, 0.08865515142679214, 0.025634735822677612, -0.021902479231357574, -0.07446400076150894, 0.02375912107527256, -0.08508217334747314, -0.16439640522003174, 0.14431124925613403, -0.10315980017185211, 0.2836017310619354, -0.07009872794151306, -0.19633027911186218, -0.1560649573802948, -0.04249229282140732, 0.15429097414016724, -0.13270311057567596, -0.1413528472185135, -0.0399397648870945, -0.022822557017207146, 0.09161960333585739, -0.08655819296836853, 0.06537637859582901, 0.07744860649108887, -0.18554681539535522, -0.276996374130249, -0.10933545231819153, -0.09705188125371933, -0.026198411360383034, -0.07532177865505219, -0.10733946412801743, 0.02920461818575859, -0.22207531332969666, -0.09224894642829895, -0.022831905633211136, 0.07942259311676025, 0.014709586277604103, -0.0340130440890789, 0.17812392115592957, -0.08085402101278305, -0.18371157348155975, 0.02435244247317314, 0.043842561542987823, 0.22408640384674072, 0.18704159557819366, 0.03345321863889694, -0.02526675909757614, -0.08496548235416412, 0.16762395203113556, -0.14637866616249084, 0.09236019849777222, 0.12107622623443604, 0.14491137862205505, 0.011133210733532906, 0.027655594050884247, -0.10010484606027603, 0.017317034304142, 0.15807783603668213, -0.12229445576667786, 0.004873447120189667, 0.01444627158343792, -0.08836393803358078, -0.05043594539165497, -0.11896240711212158, 0.20074988901615143, 0.12972614169120789, -0.08071579039096832, -0.2309948056936264, 0.08483795821666718, -0.048634640872478485, -0.0544314980506897, 0.1175033301115036, -0.20287594199180603, -0.18771854043006897, -0.35627326369285583, 0.04633677750825882, 0.3961920738220215, 0.07824201136827469, -0.22441263496875763, 0.06967861205339432, -0.031842634081840515, -0.020841069519519806, 0.08938799053430557, 0.09720495343208313, 0.006333455443382263, 0.024284590035676956, -0.1384366899728775, 0.019150778651237488, 0.1822453737258911, -0.0940762460231781, -0.07571367174386978, 0.18332165479660034, -0.038728807121515274, 0.06295352429151535, 0.02013380266726017, 0.03901663422584534, -0.09496934711933136, 0.08125390857458115, -0.13446567952632904, -0.009453952312469482, 0.08189657330513, 0.04451022669672966, -0.019396834075450897, 0.06002572551369667, -0.11776453256607056, 0.0709020271897316, -0.0045438650995492935, 0.060101769864559174, -0.00958623830229044, -0.05920690298080444, -0.14652657508850098, -0.04826236888766289, 0.11071974039077759, -0.2821120023727417, 0.15956926345825195, 0.09777746349573135, 0.04510074853897095, 0.10072945803403854, 0.13072893023490906, 0.06114157289266586, 0.01672622561454773, 0.049596186727285385, -0.19857506453990936, -0.01700432412326336, 0.177877277135849, -0.04803885519504547, 0.12378363311290741, 0.017780335620045662]]},
"000068": {"embedding": [[-0.0640389621257782, 0.13193078339099884, 0.0055447593331336975, 0.012554340064525604, -0.11827687919139862, -0.00048047397285699844, -0.057740699499845505, -0.07738356292247772, 0.11323216557502747, 0.029314391314983368, 0.1212102398276329, 0.06766390800476074, -0.22397691011428833, 0.03870144486427307, -0.02934125065803528, 0.06462035328149796, -0.07782476395368576, -0.0948762521147728, -0.19670556485652924, -0.027075808495283127, 0.020807821303606033, 0.023499876260757446, 0.03147415444254875, -0.02176249772310257, -0.1865766942501068, -0.2179338037967682, -0.060723718255758286, -0.015420190989971161, 0.015087103471159935, -0.0833941176533699, 0.014074422419071198, -0.0383908636868, -0.29966768622398376, -0.09193801134824753, 0.027833152562379837, 0.017349760979413986, -0.13115781545639038, -0.001459859311580658, 0.17347517609596252, 0.010416727513074875, -0.19651347398757935, 0.04149268940091133, 0.07714326679706573, 0.19203472137451172, 0.2752673327922821, 0.009272947907447815, 0.018335431814193726, -0.007233227603137493, 0.02985166758298874, -0.2819569408893585, 0.04718853533267975, 0.1145922914147377, 0.24415560066699982, 0.10294440388679504, 0.0800245851278305, -0.13345547020435333, -0.025484852492809296, 0.20697152614593506, -0.11052440851926804, 0.11513417214155197, 0.06101062148809433, -0.08138479292392731, -0.015849215909838676, -0.04503609985113144, 0.15980185568332672, 0.08497059345245361, -0.10688596963882446, -0.1464691311120987, 0.1429767906665802, -0.1608835756778717, -0.005226463545113802, 0.16051732003688812, 0.006941378116607666, -0.19493581354618073, -0.2875813841819763, -0.0077724577859044075, 0.3580906093120575, 0.16906018555164337, -0.23447243869304657, -0.10934445261955261, -0.11210627108812332, -0.0027656061574816704, -0.06145511940121651, -0.06691166013479233, -0.0867575854063034, -0.049219101667404175, -0.12633304297924042, 0.01150309294462204, 0.27677175402641296, 0.002739259973168373, -0.013194285333156586, 0.2167106419801712, 0.05550280585885048, -0.035692621022462845, -0.02579173445701599, 0.06421356648206711, -0.1331280916929245, -0.07754102349281311, -0.0802488923072815, -0.028889242559671402, -0.056410957127809525, -0.0992075726389885, 0.012764252722263336, 0.1667909175157547, -0.10555008053779602, 0.2014334350824356, -0.04456357657909393, 0.012381350621581078, -0.05091731622815132, 0.052811399102211, -0.05809063836932182, -0.0381331667304039, 0.14943738281726837, -0.2279973179101944, 0.19428151845932007, 0.1409938782453537, -0.09504041820764542, 0.02586611546576023, 0.004230457823723555, 0.06873471289873123, -0.04807859659194946, 0.05393511801958084, -0.14605067670345306, -0.13840430974960327, -0.04275895282626152, -0.12131606042385101, 0.07409849762916565, 0.053625427186489105]], "url": "http://i.imgur.com/CDct2qj.jpg", "landmarks": [{"right_eye": [[0.49175017026678947, -1.1164700371309313], [0.7042145156812861, -1.29478393545707], [0.9445731236655505, -1.26219753449836], [1.123825449669478, -1.1399849705376863], [0.942383459084044, -1.0516100444394403], [0.7020248510997796, -1.0841964453981505]], "left_eyebrow": [[-1.491286547909874, -1.3777868632524717], [-1.2186543481928291, -1.5554751431267517], [-0.886792721851024, -1.6422860230953498], [-0.5558695231870074, -1.6388451216101254], [-0.22588475220077925, -1.5451524386710784]], "bottom_lip": [[0.7437369610724881, 0.6913808749788883], [0.5601053059055477, 0.9903432911360538], [0.28841153386629115, 1.077779789556511], [0.04742730743016776, 1.1053612429003494], [-0.19293130055409666, 1.0727748419416392], [-0.5226032623143952, 0.9489982318513177], [-0.7902305144165684, 0.64534367730521], [-0.6698948058114715, 0.646594914208928], [-0.1910544451985197, 0.8922712790339937], [0.04930416278574471, 0.924857679992704], [0.28997557999593865, 0.9273601538001398], [0.6531723703927358, 0.7205263744523741]], "transform": {"scale": 33.238544334481745, "center": [124.04166666666667, 167.27777777777777], "angle": -0.010397510666022063}, "right_eyebrow": [[0.37548098159877596, -1.5088123270012144], [0.6772586807893067, -1.5959360161957419], [0.9780979523020491, -1.592807923936447], [1.2479148689857287, -1.499740859449259], [1.4265415765377973, -1.3173604411860365]], "chin": [[-2.0070926386445485, -0.9619296399754336], [-1.9826392775600057, -0.42010614202656793], [-1.9277891800982585, 0.09194623799695305], [-1.8428551554852373, 0.6043114272464035], [-1.637585422267119, 1.117927853399572], [-1.3411254799173895, 1.5422309257767062], [-0.923078592058845, 1.8474495264524615], [-0.4439254222199638, 2.063041964126253], [0.03679179374856501, 2.1282147660436737], [0.5190730558467412, 2.0429679322047227], [0.8828954646953975, 1.7759662985544085], [1.1574045197680194, 1.417774455772483], [1.312516293913333, 0.9680795946330167], [1.4378569501333018, 0.487987997116347], [1.5027169428247926, 0.03735470829909247], [1.5378058175909388, -0.44367531689536577], [1.5428107652058107, -0.9250181513157535]], "nose_tip": [[-0.30231868625166136, 0.018586154743322928], [-0.09266962387053015, 0.11102760077865209], [0.11729224773653048, 0.173385119662707], [0.32850535624730914, 0.11540692994166499], [0.47955061045553926, 0.05680312176876396]], "nose_bridge": [[0.10128473575208342, -1.1807044113705631], [0.12792776141813322, -0.849468403480617], [0.15425797785825357, -0.48814846843939663], [0.1805881942983739, -0.12682853339817637]], "top_lip": [[-0.7902305144165684, 0.64534367730521], [-0.4884528152260376, 0.5582199881106822], [-0.15721680733609156, 0.5315769624446325], [0.05274506427096913, 0.5939344813286874], [0.2937292907070925, 0.566353027984849], [0.5340878986913569, 0.5989394289435592], [0.7437369610724881, 0.6913808749788883], [0.6531723703927358, 0.7205263744523741], [0.29310367225523354, 0.6265208822873974], [0.05211944581911015, 0.6541023356312359], [-0.15815523501388004, 0.6218287438984551], [-0.6698948058114715, 0.646594914208928]], "left_eye": [[-1.1023851595248155, -1.1631328532564686], [-0.9206303597134521, -1.2815917065059887], [-0.6796461332773287, -1.3091731598498269], [-0.47093549857398603, -1.1264799323606751], [-0.6818357978588352, -1.0985856697909073], [-0.9225072150690291, -1.1010881435983433]]}]},
"000069": {"landmarks": [{"nose_bridge": [[0.0016208158496523834, -1.2077287996066615], [0.002569770132315876, -1.010554428090501], [0.0035187244149793677, -0.8133800565743409], [0.03277101095461768, -0.5881734825962526]], "right_eye": [[0.45298291808849267, -1.0690590011697776], [0.7055438700408924, -1.2674534567636484], [0.9591893411734789, -1.240505773481907], [1.1573126669723026, -1.0442803562484102], [0.9605449901487124, -0.9588280998873923], [0.6785961867591511, -1.0138079856310616]], "left_eye": [[-1.1527153862977644, -1.089499569370398], [-0.984657736423719, -1.2874873302716983], [-0.7311478301886558, -1.2887074143494086], [-0.5048567370303806, -1.092617562013435], [-0.7299277461109457, -1.0351975081143454], [-0.9833020874484855, -1.0058096566771835]], "bottom_lip": [[0.5743301409677932, 0.7331358502450226], [0.3491235669897049, 0.762388136784661], [0.15181363057602126, 0.735169323707873], [-0.017192973580687526, 0.7359827130930131], [-0.15803181037794486, 0.7366605375806299], [-0.35507061699658177, 0.7657772592227449], [-0.5523805534102654, 0.7385584461459569], [-0.43998061376750625, 0.6816806518369605], [-0.15884519976308498, 0.567653933423921], [0.010161404393623808, 0.5668405440387809], [0.15086467629335779, 0.5379949521917128], [0.43322017437548926, 0.6774781400137365]], "right_eyebrow": [[0.2820784053664569, -1.462594354816958], [0.6478526863467559, -1.5488600005631161], [1.0423369942765996, -1.5225901417689918], [1.381028027077634, -1.3833780837420149], [1.6077258149284794, -1.1027849293276868]], "top_lip": [[-0.5523805534102654, 0.7385584461459569], [-0.35656183086933874, 0.45593181826877877], [-0.16006528384079519, 0.31414402718885787], [0.00907688521343696, 0.3414984051631692], [0.14978015711317094, 0.31265281331610095], [0.34763235311694796, 0.4525426958306949], [0.5743301409677932, 0.7331358502450226], [0.43322017437548926, 0.6774781400137365], [0.15072911139583442, 0.5098271848322614], [0.009890274598577097, 0.5105050093198782], [-0.1591163295581317, 0.5113183987050183], [-0.43998061376750625, 0.6816806518369605]], "nose_tip": [[-0.3315120561529244, -0.19206239589612836], [-0.1622343222011689, -0.13654025056236552], [0.00677228195553991, -0.13735363994750566], [0.17577888611224868, -0.1381670293326458], [0.34464992537143413, -0.16714818607723742]], "transform": {"angle": 0.004812729710658828, "scale": 35.50116010537065, "center": [124.73611111111111, 169.875]}, "chin": [[-1.8825016045905587, -0.5507873022052128], [-1.8520292339732103, -0.07207082199206126], [-1.7935246608939333, 0.3783423259641155], [-1.7067167555576823, 0.8567876763822204], [-1.563573315502528, 1.3349618970052783], [-1.3364688329591123, 1.7000583534979608], [-0.9689322083110098, 1.979973683424672], [-0.5175701060721696, 2.118643481861555], [0.017888603552455095, 2.1724032835275144], [0.5529406184845096, 2.141659783115119], [1.002811506850593, 1.970484140598037], [1.3393335012912537, 1.6590119208737906], [1.5910810638585133, 1.291610861123211], [1.7297508622953968, 0.840248758884371], [1.840252893372829, 0.38902222154305405], [1.8944193897313581, -0.06193318600321612], [1.9202825538329127, -0.5409207960114144]], "left_eyebrow": [[-1.631838561203486, -1.1435305008314038], [-1.4361554035600825, -1.4543248960680333], [-1.0706522523748303, -1.5969260765330942], [-0.6763035093425098, -1.5988239850984212], [-0.3095802740795473, -1.487915259328419]]}], "url": "http://i.imgur.com/ZMQmtxO.jpg", "embedding": [[-0.07946590334177017, 0.14227263629436493, 0.02637472003698349, -0.13764417171478271, -0.138149231672287, -0.021494699642062187, -0.07406453043222427, -0.03678002953529358, 0.0659509152173996, -0.10170270502567291, 0.17044313251972198, -0.07746390253305435, -0.25621458888053894, -0.016905419528484344, -0.048465874046087265, 0.10653235763311386, -0.1717931181192398, -0.036112044006586075, -0.1529858410358429, -0.07215980440378189, 0.11750447750091553, 0.06262091547250748, 0.023433968424797058, 0.02427874505519867, -0.13754437863826752, -0.25436267256736755, -0.0639125257730484, -0.12581302225589752, -0.04396001994609833, -0.17943888902664185, -0.03635280579328537, 0.004011233802884817, -0.1565837860107422, -0.04324789717793465, -0.03827325999736786, 0.039884380996227264, -0.06769929081201553, -0.08535688370466232, 0.13450513780117035, 0.002843082882463932, -0.10427649319171906, 0.07119161635637283, -0.007190961390733719, 0.19756346940994263, 0.1975751668214798, 0.02526530809700489, -0.031002715229988098, -0.06356820464134216, 0.20333202183246613, -0.2909959554672241, 0.010316286236047745, 0.11741067469120026, 0.07808184623718262, 0.11486795544624329, 0.09719276428222656, -0.09182168543338776, 0.10701140016317368, 0.08892660588026047, -0.2549777030944824, -0.0036617200821638107, 0.023641785606741905, -0.07830852270126343, -0.01546703651547432, -0.07481161504983902, 0.21418806910514832, 0.08407196402549744, -0.12949326634407043, -0.06293986737728119, 0.11122798174619675, -0.09295906126499176, -0.01106798555701971, 0.05874240770936012, -0.08252161741256714, -0.17735320329666138, -0.17586058378219604, 0.09651302546262741, 0.3073914051055908, 0.19449420273303986, -0.15579625964164734, 0.027964428067207336, -0.12593881785869598, -0.0645897313952446, -0.00875224731862545, -0.04211696237325668, -0.12213020026683807, 0.045964960008859634, -0.06767331063747406, 0.12582381069660187, 0.15306203067302704, -0.11145451664924622, 0.0014946497976779938, 0.33862248063087463, 0.03296559303998947, 0.07066259533166885, 0.07748468965291977, 0.0072988420724868774, -0.1364680826663971, -0.027183271944522858, -0.06832645833492279, 0.0755012258887291, 0.12665636837482452, -0.213486447930336, -0.03493841364979744, 0.03286528214812279, -0.11930902302265167, 0.14661113917827606, -0.06379274278879166, -0.015270784497261047, -0.10235210508108139, -0.08456778526306152, -0.1706000417470932, 0.019729427993297577, 0.16687221825122833, -0.2630351781845093, 0.19840863347053528, 0.14129354059696198, 0.03373781591653824, 0.1306411623954773, 0.10281822830438614, 0.0028529921546578407, -0.015118995681405067, -0.05413250997662544, -0.12103290110826492, -0.09852362424135208, 0.19899411499500275, 0.03215523064136505, 0.05033262073993683, 0.026940040290355682]]},
"000071": {"landmarks": [{"nose_tip": [[-0.4016410164005476, 0.15324392330445336], [-0.28111894415995764, 0.2467227246479121], [-0.09959489647994892, 0.3411894450835361], [0.08489290847655556, 0.2526502392009035], [0.26888675388697747, 0.19461202103798037]], "right_eyebrow": [[0.29309077164502567, -1.299936377227782], [0.6305774747461599, -1.4165067730997112], [0.9375631901275848, -1.5335711285177227], [1.2735680145904713, -1.5586385612305231], [1.6385919481348192, -1.491709071238113]], "chin": [[-1.843460247372883, -1.243010582294437], [-1.7908555842168685, -0.7235058719672113], [-1.6767549860753526, -0.23351423026752982], [-1.5316594406680448, 0.2264703832585248], [-1.356062907541027, 0.6869489563306621], [-1.088469451708799, 1.1184084203213378], [-0.789387089064696, 1.4893598684186773], [-0.42930275098117415, 1.861299235608182], [-0.00426476108957247, 1.9902186201321763], [0.4847389615179437, 1.9371199974300792], [0.9781883200402034, 1.6095124852505973], [1.3806286749494177, 1.2499221067131578], [1.7235489330574607, 0.7978408459244253], [1.9149521716591218, 0.2822878119658605], [2.0453534348213642, -0.23425314108486947], [2.1462416293560618, -0.8122900291211008], [2.185633888905259, -1.3608138485297883]], "top_lip": [[-0.8060572094940921, 0.6348382527207304], [-0.5320422795627898, 0.6697848763551834], [-0.25703943053932227, 0.6437295245502174], [-0.07502142331323088, 0.707695257266132], [0.10897242209719099, 0.6496570391032088], [0.4139822992942853, 0.6545966345640349], [0.779500192384716, 0.6910251368367359], [0.6570022819597957, 0.7195502863721148], [0.13749757163256995, 0.7721549495281291], [-0.07650330195147872, 0.7991982204252603], [-0.28951625644336215, 0.7652395158829726], [-0.6850411777074196, 0.6978160663444797]], "left_eye": [[-1.2354163311630246, -1.1111274404939468], [-1.0204275384868107, -1.1991726868304968], [-0.7459186490094257, -1.1947270509157533], [-0.5353754922479553, -1.0082634077749184], [-0.7803713130977961, -0.9512131087041604], [-1.054880202575181, -0.955658744618904]], "transform": {"center": [126.08333333333333, 163.76388888888889], "scale": 32.78152491528735, "angle": -0.016193454887269317}, "left_eyebrow": [[-1.6255076974201734, -1.5140617549492437], [-1.3195099011309135, -1.5701241349278363], [-1.0154879430259847, -1.5041825640275912], [-0.7124539040132205, -1.3772390176879272], [-0.408925905454374, -1.2807964590679728]], "nose_bridge": [[-0.07687275736014854, -1.061855990023098], [-0.08280027191313995, -0.6958441373865848], [-0.11972273373192341, -0.2998252565764447], [-0.1256502482849148, 0.06618659606006858]], "bottom_lip": [[0.779500192384716, 0.6910251368367359], [0.43904973200708597, 0.9906014590269214], [0.13157005707957856, 1.1381668021646425], [-0.08243081650447012, 1.1652100730617736], [-0.29544377099635355, 1.1312513685194858], [-0.5369818750236159, 0.9747947535522776], [-0.8060572094940921, 0.6348382527207304], [-0.6850411777074196, 0.6978160663444797], [-0.2604971473619006, 0.8572364385881834], [-0.07798518058972657, 0.8907011835843888], [0.13601569299432212, 0.8636579126872574], [0.6570022819597957, 0.7195502863721148]], "right_eye": [[0.5316651183957923, -0.9604738359423173], [0.7481357897102541, -1.140022045437996], [1.022644679187639, -1.1355764095232523], [1.2646767427609842, -1.0096207822757532], [1.0491939905386878, -0.8910745482194941], [0.7746851010613026, -0.8955201841342376]]}], "embedding": [[-0.029317734763026237, 0.019389476627111435, 0.025603055953979492, -0.06315150856971741, -0.059600673615932465, -0.1150858998298645, 0.03502407670021057, -0.09481318295001984, 0.24138328433036804, -0.10966251790523529, 0.15345589816570282, -0.07414930313825607, -0.2515263557434082, -0.03530316799879074, -0.07339785993099213, 0.12787508964538574, -0.12265637516975403, -0.24917398393154144, -0.09030895680189133, -0.009466240182518959, 0.10295751690864563, -0.06182113662362099, 0.056235264986753464, 0.08342304825782776, -0.17522145807743073, -0.22967156767845154, -0.05924263224005699, -0.10286206007003784, 0.03330076113343239, -0.12300696223974228, 0.10445863753557205, 0.14517195522785187, -0.2144027054309845, 0.011576175689697266, -0.01558549702167511, 0.029698938131332397, -0.017277151346206665, -0.11581341922283173, 0.3405449688434601, 0.014452855102717876, -0.2472374588251114, -0.1102420836687088, 0.06997303664684296, 0.2548142969608307, 0.2417878657579422, 0.022596437484025955, 0.033545587211847305, -0.028756454586982727, 0.15322569012641907, -0.40977680683135986, -0.01615983061492443, 0.1845369040966034, 0.02715481072664261, 0.13022169470787048, 0.09118950366973877, -0.20642267167568207, 0.07651329040527344, 0.10547710210084915, -0.23645980656147003, 0.15549081563949585, -0.001830119639635086, -0.07885073125362396, 0.0128428153693676, -0.017339754849672318, 0.29811230301856995, 0.05160290747880936, -0.130892813205719, -0.07230086624622345, 0.26514697074890137, -0.2252432256937027, -0.04144689440727234, 0.18124617636203766, -0.11188624799251556, -0.21819087862968445, -0.21067935228347778, -0.08367757499217987, 0.35595035552978516, 0.16597133874893188, -0.11070835590362549, 0.10369660705327988, -0.1036408543586731, -0.027368653565645218, -0.011507198214530945, 0.051238562911748886, 0.0047021955251693726, 0.021947037428617477, -0.1351417601108551, -0.012867454439401627, 0.34032613039016724, -0.05330726504325867, -0.030206959694623947, 0.31916365027427673, 0.005700454115867615, -0.04364576190710068, -0.032304033637046814, 0.011007800698280334, -0.03357305750250816, -0.01464165560901165, -0.16444016993045807, -0.0126023069024086, 0.020145142450928688, -0.03416774794459343, -0.01673162169754505, 0.04932324215769768, -0.1617586761713028, 0.10465528815984726, -0.024571150541305542, -0.011904176324605942, -0.13917145133018494, -0.03142830356955528, -0.1360497772693634, 0.02593149244785309, 0.14891864359378815, -0.2745206654071808, 0.2795030176639557, 0.15174365043640137, 0.07854185253381729, 0.08496466279029846, 0.021549569442868233, 0.029632821679115295, 0.07706156373023987, -0.09548866748809814, -0.06643136590719223, -0.10777855664491653, 0.021424569189548492, -0.0019876277074217796, 0.047571614384651184, 0.07000085711479187]], "url": "http://i.imgur.com/Arky1iY.jpg"},
"000073": {"embedding": [[-0.18568217754364014, 0.04932505264878273, 0.08206261694431305, -0.07571130245923996, -0.15564247965812683, -0.045307762920856476, -0.031223265454173088, -0.02939445525407791, 0.23179802298545837, -0.06682833284139633, 0.13717691600322723, 0.13297414779663086, -0.21472783386707306, 0.041996777057647705, -0.017911717295646667, 0.11679695546627045, -0.1522601693868637, -0.21018409729003906, -0.03575307875871658, -0.034466736018657684, 0.09567480534315109, -0.004103171639144421, -0.063152015209198, 0.14549189805984497, -0.163287952542305, -0.2842084765434265, -0.028966691344976425, -0.005303023383021355, -0.049471206963062286, -0.06279648840427399, 0.02203117311000824, 0.16473343968391418, -0.21812033653259277, -0.033776916563510895, 0.0538899302482605, 0.20454879105091095, -0.03956161439418793, -0.10422667860984802, 0.208006352186203, 0.0728888213634491, -0.28628116846084595, -0.0016108956187963486, 0.09705667197704315, 0.2518390119075775, 0.284249871969223, -0.033398717641830444, 0.027397096157073975, -0.06982706487178802, 0.1949174404144287, -0.35101211071014404, 0.09532180428504944, 0.23947690427303314, 0.09724608063697815, 0.09292091429233551, 0.1657315194606781, -0.22158005833625793, 0.024951551109552383, 0.09254759550094604, -0.22423899173736572, 0.0036694360896945, 0.0403144508600235, -0.1222771629691124, 0.004147147759795189, -0.1612566113471985, 0.17116235196590424, 0.1563621312379837, -0.1300957053899765, -0.1539614200592041, 0.21187672019004822, -0.12061510235071182, -0.08650004118680954, 0.20375746488571167, -0.1238623708486557, -0.20455247163772583, -0.23592381179332733, 0.11674345284700394, 0.39487943053245544, 0.2030295431613922, -0.09590818732976913, 0.09911969304084778, -0.07307901233434677, -0.07794816792011261, -0.07351622730493546, 0.10450654476881027, -0.01761779561638832, 0.00849304348230362, -0.05243587866425514, 0.07355275005102158, 0.18598265945911407, 0.13535310328006744, -0.013279959559440613, 0.24158181250095367, 0.02150096371769905, -0.06933286786079407, 0.05700787901878357, 0.155016228556633, -0.1314295381307602, 0.0001575872302055359, -0.19064871966838837, -0.09183220565319061, 0.029589572921395302, -0.06165415421128273, 0.03946036845445633, 0.09387101978063583, -0.18971537053585052, 0.09795328974723816, -0.08987785875797272, -0.003156304359436035, -0.08043380826711655, -0.06691563874483109, -0.11418432742357254, 0.06453794986009598, 0.0784432515501976, -0.32677891850471497, 0.24521484971046448, 0.03762444853782654, -0.019905176013708115, 0.1321483850479126, 0.043105386197566986, 0.06625871360301971, 0.004017752595245838, -0.15481197834014893, -0.07745623588562012, -0.08513171970844269, 0.06597767770290375, -0.008303890936076641, 0.08984261006116867, 0.04690249636769295]], "url": "http://i.imgur.com/G54ryw8.jpg", "landmarks": [{"nose_bridge": [[-0.3423413353978563, -1.0456589596345618], [-0.40681502454934304, -0.7537494839344246], [-0.5005968111556793, -0.4624257576584662], [-0.5943785977620155, -0.1711020313825079]], "left_eye": [[-1.0469071731626012, -1.0011007509051535], [-0.9261602867981306, -1.174606337937535], [-0.7210036046141842, -1.1705060919682837], [-0.4900533215204612, -0.9899715118457567], [-0.7256896000076144, -0.9360413123294881], [-0.9314320316157395, -0.9108334608438899]], "nose_tip": [[-0.6289584400344739, 0.09208509628695857], [-0.5134832984876125, 0.18235238634822212], [-0.39683665809239327, 0.2140034814997867], [-0.21981657451493894, 0.15890178313516046], [-0.01348839348263508, 0.10438583419471298]], "top_lip": [[-0.5539206350018587, 0.7386204885661832], [-0.5802999853358143, 0.5914942518677572], [-0.4320022497890306, 0.5064987066241027], [-0.2866332613631408, 0.5680436486546954], [-0.1389212752405359, 0.5123562008658905], [0.27022059027899914, 0.5791728877140923], [0.6776052075259977, 0.7339138669268426], [0.5597870682824212, 0.7608789666849769], [-0.08440532630008843, 0.7186843818981943], [-0.2602539110291852, 0.7151698853531216], [-0.40679439830343256, 0.7122411382322277], [-0.4953044400921598, 0.7397919874145408]], "chin": [[-1.1371744632238645, -0.8856256093582919], [-1.2034054006478876, -0.5057918412936064], [-1.1817120457073624, -0.12420082495638456], [-1.0427863009474392, 0.2597331890775525], [-0.9044463056116948, 0.672975300566339], [-0.7362124633969221, 1.057495064024455], [-0.5685643706063283, 1.47132292493742], [-0.3411285840576778, 1.827706089789044], [0.00763983827962187, 1.9812755701534366], [0.4478470495265427, 1.960753714061269], [0.9800787991072635, 1.7368324240576911], [1.512896298112163, 1.4836030365992638], [2.018748697358928, 1.1125555098972604], [2.380403607028161, 0.6213468462549645], [2.566795681392476, 0.09731558861274678], [2.637712614209929, -0.5169829590907346], [2.6793214495725333, -1.1318672562183947]], "right_eyebrow": [[0.0181420754230191, -1.4782514283671584], [0.4020760894569561, -1.6171771731270814], [0.8135609526732063, -1.6675928760982777], [1.2525966650717695, -1.6294985372807465], [1.6306731848639189, -1.475343307492175]], "bottom_lip": [[0.6776052075259977, 0.7339138669268426], [0.34994439070504463, 0.9912435003545212], [-0.004095776449864169, 1.1014468970837736], [-0.20983820805798925, 1.1266547485693719], [-0.3557929459080578, 1.0944179039936284], [-0.49940468606141125, 0.9449486695984871], [-0.5539206350018587, 0.7386204885661832], [-0.4953044400921598, 0.7397919874145408], [-0.3798292985452983, 0.8300592774758043], [-0.2338745606952297, 0.8622961220515478], [-0.058611725390311634, 0.8951187160514699], [0.5597870682824212, 0.7608789666849769]], "left_eyebrow": [[-1.3300304075000564, -1.5051959018793823], [-1.2110407694081222, -1.5907771965472157], [-1.0351921846790255, -1.5872627000021429], [-0.8312070013434368, -1.5245462591231924], [-0.6283933168562056, -1.4032136233345434]], "transform": {"angle": -0.019983264138325418, "scale": 34.11345082231015, "center": [130.38888888888889, 166.43055555555554]}, "right_eye": [[0.36105300351853103, -1.031600973454271], [0.5404160847927004, -1.2039350616382951], [0.8047747113105246, -1.2279714142755356], [1.0656188412832759, -1.0761591821836791], [0.828811063947765, -0.9636127877577115], [0.5943462843089693, -0.9682987831511418]]}]},
"000076": {"url": "http://i.imgur.com/2vIoioO.jpg", "landmarks": [{"left_eye": [[-1.1704574033206367, -0.8002529016130445], [-1.00550241813883, -0.9697532199772945], [-0.7829109935399957, -1.000654717394428], [-0.5026831295241341, -0.892957393864445], [-0.7523882738880657, -0.8059345680910984], [-1.0028509737824047, -0.7746542929087613]], "top_lip": [[-0.8437981535142944, 0.6727581336314666], [-0.5681156226808758, 0.4460001536153929], [-0.3187892560821477, 0.33110605254654174], [-0.09544027595290624, 0.3559471057204177], [0.12677237088072443, 0.2971743330077795], [0.4623640077223919, 0.37624282571185064], [0.8548345284506798, 0.5381675887720287], [0.7158569297383597, 0.5679327528935514], [0.12904503747194596, 0.46440198478080785], [-0.09354638712688829, 0.4953034821979414], [-0.31651658949092615, 0.49833370431957014], [-0.7044417770367708, 0.6708642448054487]], "nose_tip": [[-0.4913197965680263, -0.056819134999302974], [-0.32371336702979436, -0.03122052629501978], [-0.15610693749156238, -0.005621917590736596], [0.03823443404656356, -0.06401591253817118], [0.26082585864539776, -0.09491740995530464]], "chin": [[-1.5843599773359682, -0.4879872068844387], [-1.6347996392141273, -0.09703179721696523], [-1.6016254752057726, 0.29278727915489733], [-1.5680725334322139, 0.7104776308222648], [-1.5341408138934516, 1.1560392577851368], [-1.361610273407573, 1.5439644453309813], [-1.051238467504985, 1.8185106428687894], [-0.6308966714811926, 1.980056628163764], [-0.10096366310139918, 2.0007311259204004], [0.48395434033899654, 1.9649055175556205], [1.0681147882489852, 1.8733373585998305], [1.5950175745071498, 1.6710416539924293], [1.9527988201662683, 1.3316622394987256], [2.1414585252263403, 0.8551991151187204], [2.21825435133919, 0.35237982650402444], [2.267557679921738, -0.12218940904996313], [2.2889897332087816, -0.5963798668387471]], "right_eye": [[0.49992522558362906, -0.9623359440027835], [0.7488728144171537, -1.1051013203671396], [0.9997142920766963, -1.108510320253972], [1.224578383266752, -0.9721841658980769], [1.0023657364331213, -0.9134113931854387], [0.7515242587735788, -0.9100023932986064]], "transform": {"center": [126.59722222222223, 169.27777777777777], "scale": 35.87592080592273, "angle": 0.013589419368557247}, "right_eyebrow": [[0.2132581395593064, -1.5438449475563467], [0.5740696073400535, -1.6602541596860128], [0.9921387367726244, -1.6659358261640667], [1.3567379822054075, -1.5036322853386848], [1.638859735047287, -1.256578585331178]], "left_eyebrow": [[-1.4525791561625165, -1.047306601620551], [-1.3173893351022323, -1.3557845186971211], [-1.0688205240339113, -1.5264211703569817], [-0.7351227760182616, -1.5867090541304343], [-0.39953113917659405, -1.5076405614263633]], "bottom_lip": [[0.8548345284506798, 0.5381675887720287], [0.46577300760922424, 0.6270843033713932], [0.1599465348890794, 0.6869934093796422], [-0.09051616500525957, 0.7182736845619792], [-0.3134863673692974, 0.7213039066836079], [-0.5639490672636364, 0.752584181865945], [-0.8437981535142944, 0.6727581336314666], [-0.7044417770367708, 0.6708642448054487], [-0.31613781172572253, 0.5262049796150747], [-0.0931676093616847, 0.523174757493446], [0.12942381523714955, 0.49227326007631267], [0.7158569297383597, 0.5679327528935514]], "nose_bridge": [[-0.14376555056940485, -1.148722982471634], [-0.19685665680398917, -0.9528664998726938], [-0.22169770997786514, -0.7295175197434524], [-0.2744100384472459, -0.5057897618490075]]}], "embedding": [[-0.1878655105829239, 0.14179125428199768, 0.03729677572846413, -0.0725674107670784, -0.13777278363704681, -0.039034873247146606, -0.06302230805158615, -0.10082350671291351, 0.14926140010356903, -0.0986371710896492, 0.21999451518058777, -0.06112635135650635, -0.2166072428226471, -0.07627604901790619, 0.057316649705171585, 0.07647493481636047, -0.194564089179039, -0.12751421332359314, -0.05587000027298927, -0.16896086931228638, 0.044798191636800766, 0.020213155075907707, -0.03226644545793533, 0.09535516798496246, -0.16203321516513824, -0.27623212337493896, -0.12985871732234955, -0.12597261369228363, 0.11363133043050766, -0.1335645467042923, 0.011975187808275223, 0.0210474394261837, -0.18516455590724945, -0.08722928166389465, 0.03391190618276596, 0.13832207024097443, -0.0451023206114769, -0.034293245524168015, 0.15078496932983398, -0.09985113143920898, -0.11465031653642654, -0.058346278965473175, 0.08829274773597717, 0.22214992344379425, 0.09392525255680084, 0.06900054216384888, 0.011559502221643925, -0.0331154465675354, 0.19896280765533447, -0.2030361145734787, 0.1038515493273735, 0.17668652534484863, 0.20452679693698883, 0.12915849685668945, 0.10337098687887192, -0.14958804845809937, 0.0715363621711731, 0.15485551953315735, -0.207495778799057, 0.14705274999141693, 0.08071596175432205, -0.1049954742193222, -0.03504081070423126, 0.0013663079589605331, 0.18581469357013702, 0.1258726418018341, -0.080464206635952, -0.18744048476219177, 0.136051744222641, -0.17578501999378204, -0.08752793073654175, 0.21666939556598663, -0.08762146532535553, -0.19790636003017426, -0.25653183460235596, 0.03796916827559471, 0.4036169946193695, 0.19094054400920868, -0.14166215062141418, -0.018485140055418015, -0.013965627178549767, -0.0760582834482193, 0.05445496737957001, 0.08127879351377487, -0.137872576713562, 0.020398572087287903, -0.11337777972221375, 0.12641894817352295, 0.21929316222667694, 0.0029670149087905884, -0.03972902521491051, 0.25749310851097107, 0.05993538349866867, 0.1402827948331833, -0.004444427788257599, 0.04819010570645332, -0.06000351533293724, -0.05971232056617737, -0.030391015112400055, -0.012843657284975052, 0.12895497679710388, -0.03833519667387009, -0.045029982924461365, 0.05219985544681549, -0.12894950807094574, 0.19316282868385315, -0.01207577995955944, 0.03941333666443825, -0.14112861454486847, -0.011212058365345001, -0.0754285380244255, 0.04281454533338547, 0.17822298407554626, -0.2912469506263733, 0.20066797733306885, 0.17837989330291748, -0.016552351415157318, 0.12699156999588013, 0.024571143090724945, -0.006248146295547485, 0.059276729822158813, -0.1725292205810547, -0.12334422022104263, -0.10294132679700851, 0.08231496810913086, -0.10225383937358856, 0.05349366366863251, 0.010470033623278141]]},
"000077": {"landmarks": [{"top_lip": [[-0.7884836311603879, 0.6016998625100124], [-0.5151099119326402, 0.6003507416354016], [-0.2721110503968644, 0.599151523080192], [-0.08971200192563139, 0.6286269668557569], [0.09238724190679923, 0.5973526952473778], [0.45703543652986406, 0.6259287251065354], [0.8822834442174716, 0.6238300926349187], [0.7609339157689848, 0.6548045596044956], [0.09328665582320639, 0.7796018413992095], [-0.08896249032862542, 0.7805012553156166], [-0.2713615387998584, 0.7510258115400519], [-0.6363095380617256, 0.6617000662969504]], "nose_tip": [[-0.45645882902031293, 0.17480292930899166], [-0.3345096912942214, 0.26532789310730276], [-0.15196074050358727, 0.3251781945748396], [0.029988601009442166, 0.26352906527448844], [0.24231280021444354, 0.2017300336547362]], "left_eyebrow": [[-1.5581983334983693, -1.4904177602510238], [-1.3157990812401985, -1.613116409574121], [-1.0422754596930497, -1.5840906727567599], [-0.7380771758151262, -1.494465122874856], [-0.4337289896178018, -1.37446471530098]], "chin": [[-1.6168494164106966, -1.0648699479246138], [-1.6449757393116506, -0.609097180225633], [-1.581977489136689, -0.15377411948485584], [-1.4582295235777831, 0.30124913661711894], [-1.2737318426349333, 0.7559725880802913], [-0.99840939325497, 1.1494966172013161], [-0.6928619885024361, 1.5124958863109677], [-0.3874644860693033, 1.8451202977286476], [-0.02221668216863376, 1.995195758355693], [0.43325628089154455, 1.9625723658727032], [0.918354590046689, 1.7779247826104523], [1.3724784322322563, 1.4719276708997149], [1.7654028520756768, 1.0751057907518637], [2.036378134193005, 0.5877589468057014], [2.1551793232116716, 0.04041189907260119], [2.2130808945269926, -0.5370102017136685], [2.21023275045837, -1.1141324978611362]], "bottom_lip": [[0.8822834442174716, 0.6238300926349187], [0.45868436204327717, 0.960052159718227], [0.12516053670919028, 1.0832005159995282], [-0.0874634671346135, 1.0842498322353367], [-0.2698625156058465, 1.0547743884597716], [-0.5136108887386283, 0.9040993185551213], [-0.7884836311603879, 0.6016998625100124], [-0.6363095380617256, 0.6617000662969504], [-0.2713615387998584, 0.7510258115400519], [-0.08881258800922423, 0.8108761130075887], [0.09328665582320639, 0.7796018413992095], [0.7609339157689848, 0.6548045596044956]], "nose_bridge": [[-0.15870634487664095, -1.0416904015638988], [-0.1874322770551998, -0.7074170646328062], [-0.21615820923375864, -0.3731437277017133], [-0.2447342390929163, -0.008495533078648485]], "left_eye": [[-1.2525010264264342, -1.0970436334494], [-1.040326729540834, -1.1892175227611244], [-0.7973278680050583, -1.1904167413163338], [-0.5838044502448473, -1.0092169114003104], [-0.8266534094612219, -0.9776428351531289], [-1.0696522709969976, -0.9764436165979193]], "transform": {"scale": 32.92156404027647, "center": [127.05555555555556, 165.31944444444446], "angle": 0.004935038839750987}, "right_eyebrow": [[0.11301844883769364, -1.3771629570502015], [0.44639237185237934, -1.5306861710234743], [0.8104409571978393, -1.6236095719322046], [1.2051642048740736, -1.6559331597763922], [1.6006369641473142, -1.5363824591607196]], "right_eye": [[0.5098403289855447, -0.9842385372067813], [0.7217148212323425, -1.1371621419024496], [0.9949386381406893, -1.1688861204690322], [1.2385371089540698, -1.0485859082563538], [1.0263628120684694, -0.9564120189446296], [0.7529890928407216, -0.9550628980700188]]}], "embedding": [[-0.13829216361045837, 0.001734407152980566, -0.004227187484502792, -0.0904327780008316, -0.13235081732273102, -0.06923219561576843, -0.049417637288570404, -0.10883930325508118, 0.21807217597961426, -0.19190248847007751, 0.1799386739730835, -0.08689524978399277, -0.24721208214759827, 0.040930185467004776, -0.13824114203453064, 0.20155462622642517, -0.1727638989686966, -0.13630300760269165, -0.06250841915607452, -0.016026634722948074, 0.1281982660293579, -0.016139719635248184, -0.038289349526166916, 0.16137754917144775, -0.13844703137874603, -0.25458693504333496, -0.06709039956331253, -0.13386891782283783, -0.0718034952878952, -0.08339904248714447, 0.00377105176448822, -0.04682742804288864, -0.23993295431137085, -0.01750640571117401, -0.03592235594987869, 0.1290625035762787, -0.0031308070756495, -0.15540608763694763, 0.11198712140321732, -0.02203604206442833, -0.32249343395233154, -0.08791272342205048, 0.12137708067893982, 0.16027367115020752, 0.12397287786006927, -0.03205442056059837, -0.023124556988477707, -0.1668889820575714, 0.14169378578662872, -0.25320175290107727, 0.01352688204497099, 0.08190031349658966, 0.06047223508358002, 0.0745609700679779, 0.06227165088057518, -0.19711965322494507, 0.14192526042461395, 0.10593777149915695, -0.20978204905986786, 0.03483656048774719, 0.08985995501279831, -0.02024238370358944, -0.015553569421172142, -0.01961938478052616, 0.17770342528820038, 0.10916537046432495, -0.09412072598934174, -0.17340369522571564, 0.22427113354206085, -0.2547687292098999, -0.04985559731721878, 0.12694287300109863, -0.07510261237621307, -0.29916051030158997, -0.3132941722869873, -0.02127934992313385, 0.4402175843715668, 0.22261160612106323, -0.14524929225444794, 0.0647151842713356, -0.017636071890592575, -0.03798266872763634, 0.10242168605327606, 0.1912773847579956, 0.05684934929013252, 0.09747868776321411, -0.1414393186569214, 0.06848754733800888, 0.21799923479557037, -0.05065591633319855, 0.03849876672029495, 0.2641674280166626, 0.02495831437408924, -0.054635196924209595, 0.03354153037071228, 0.10779649019241333, -0.17137262225151062, 0.04700411111116409, -0.1618298888206482, -0.013465534895658493, 0.0698540061712265, 0.016485873609781265, -0.03318171203136444, 0.06719289720058441, -0.13157759606838226, 0.10046859085559845, -0.026543106883764267, -0.1195182353258133, -0.08074676245450974, -0.02323371171951294, -0.09088437259197235, -0.04976499080657959, 0.1373923420906067, -0.14695556461811066, 0.1575642228126526, 0.1294790655374527, 0.10874354839324951, 0.1530970185995102, 0.07029888033866882, 0.08283135294914246, 0.038484394550323486, -0.09914593398571014, -0.2207479476928711, -0.04471632465720177, 0.010171255096793175, -0.09200925379991531, 0.05806201696395874, 0.000593333039432764]], "url": "http://i.imgur.com/tm5SItY.jpg"},
"000078": {"landmarks": [{"chin": [[-2.117341501275926, -0.6687692648428729], [-2.0909378338433835, -0.17336716092834198], [-2.035241824371045, 0.2930635647916432], [-1.8921502345471932, 0.759975736279504], [-1.6906344425663746, 1.198077011495444], [-1.430373484583339, 1.5491036702051222], [-1.0532641222863688, 1.8425085363709588], [-0.5588249099075892, 1.9908960296414422], [-0.005480049603966752, 2.023077046288492], [0.5192143963503603, 1.9677020006614034], [0.9571551896436753, 1.795318068797756], [1.2793709520814327, 1.4766329086577528], [1.5146725799355532, 1.0700707223983617], [1.6336072492436147, 0.6337347483312984], [1.7235705403571306, 0.16810643222443927], [1.7842414894308503, -0.2685505056878742], [1.7575168581530574, -0.7056888893680633]], "right_eye": [[0.5639130029621754, -0.857927948781551], [0.8267416717072147, -0.9730110519466079], [1.1178997909562987, -0.9422743726031849], [1.3213413660086197, -0.8537554187932959], [1.1169368994205475, -0.7674832119001594], [0.8257787801714634, -0.7982198912435824]], "left_eye": [[-1.3584688009258552, -0.926783475909156], [-1.0958006141034413, -1.0127347189570421], [-0.8044820129317319, -1.01112989973079], [-0.5429371995676944, -0.8931581219584795], [-0.8054449044674832, -0.8363387390277646], [-1.0967635056391924, -0.8379435582540166]], "top_lip": [[-0.6971020420526846, 0.6500280546384535], [-0.3752072434601776, 0.38960661473279234], [-0.1123785747151385, 0.2745235115677354], [0.06225210406526184, 0.30461826322065755], [0.2372037466909126, 0.27644929463923784], [0.4403243578979831, 0.42323196868346885], [0.6428030414145527, 0.6865420831963835], [0.4973042227513233, 0.6566078134660867], [0.23575940938728582, 0.5386360356937762], [0.06096824868426025, 0.5376731441580249], [-0.1138229120187653, 0.5367102526222738], [-0.5512822595442047, 0.6216986041344085]], "nose_bridge": [[0.12853992043086365, -1.1516537787926382], [0.12725606504986206, -0.9185988978552709], [0.12613269159148566, -0.7146758770350745], [0.12484883621048407, -0.48162099609770703]], "left_eyebrow": [[-1.76390761372687, -1.3660081245834725], [-1.4421732970569883, -1.5972977043719627], [-1.0631381516885157, -1.653475159612177], [-0.6552921100481229, -1.6512284126954244], [-0.3063517163325727, -1.5327751891552381]], "right_eyebrow": [[0.4219447865967004, -1.528763141089608], [0.7721690356932523, -1.6433647984867896], [1.1508832172164745, -1.641278533492662], [1.4708522327374791, -1.5521176519922721], [1.6441990561368778, -1.2889680194019826]], "bottom_lip": [[0.6428030414145527, 0.6865420831963835], [0.43807761098123027, 0.8310780103238617], [0.23383362631578342, 0.8882183570998272], [0.05904246561275786, 0.887255465564076], [-0.14488055520743862, 0.8861320921056997], [-0.40658585049410134, 0.7972921744505601], [-0.6971020420526846, 0.6500280546384535], [-0.5512822595442047, 0.6216986041344085], [-0.11430435778664089, 0.6241058329737865], [0.060486802916384655, 0.6250687245095377], [0.2354384455420354, 0.5968997559281181], [0.4973042227513233, 0.6566078134660867]], "nose_tip": [[-0.3435076725810035, -0.07634266521931726], [-0.13990561560605744, -0.016955571526599017], [0.09298878340868476, 0.013460143971573498], [0.2679404260343355, -0.01470882460984623], [0.44305255058261145, -0.0720096533084369]], "transform": {"scale": 34.32615778127071, "angle": -0.005508755658838925, "center": [123.80555555555556, 168.55555555555554]}}], "embedding": [[-0.08778868615627289, 0.015351293608546257, 0.040911249816417694, -0.10000833123922348, -0.0681162178516388, -0.15753525495529175, -0.09369968622922897, -0.1351986527442932, 0.15488071739673615, -0.1489333063364029, 0.1404433250427246, -0.07369273900985718, -0.2457386702299118, 0.005416642874479294, -0.08764609694480896, 0.18667300045490265, -0.1071515828371048, -0.14509618282318115, -0.05384279415011406, -0.027560533955693245, 0.060670919716358185, 0.03969660773873329, 0.0059425681829452515, 0.21598781645298004, -0.025880884379148483, -0.3577103316783905, -0.12684625387191772, -0.07714084535837173, -0.14249663054943085, -0.054182715713977814, 0.03778529912233353, 0.11363866180181503, -0.19919636845588684, -0.021101152524352074, 0.0013813599944114685, 0.10447684675455093, 0.009740219451487064, -0.09397131204605103, 0.18178048729896545, 0.11718560755252838, -0.252745121717453, -0.09069719910621643, 0.08773873001337051, 0.2505195438861847, 0.19337691366672516, -0.00948057509958744, 0.04893726110458374, -0.08022405952215195, 0.10362520068883896, -0.2594752609729767, 0.031469330191612244, 0.14807406067848206, 0.034670859575271606, 0.10599784553050995, 0.0950469970703125, -0.18571776151657104, 0.0500187911093235, 0.07104232162237167, -0.1225837841629982, 0.020716842263936996, 0.01573917083442211, -0.10263830423355103, -0.013979615643620491, -0.07965375483036041, 0.3259809613227844, 0.15980026125907898, -0.12171170115470886, -0.07953695952892303, 0.2548522651195526, -0.21499764919281006, -0.11260336637496948, 0.02113751880824566, -0.15085479617118835, -0.13434745371341705, -0.30449414253234863, 0.009407797828316689, 0.31303030252456665, 0.11634007096290588, -0.1726454794406891, 0.10888353735208511, -0.06992916017770767, 0.012023011222481728, 0.024991579353809357, 0.2272453010082245, 0.036777690052986145, 0.11068341135978699, 0.012426293455064297, 0.004598803818225861, 0.18751703202724457, 0.010245861485600471, 0.004640773870050907, 0.2936946153640747, -0.0420023538172245, 0.03638450801372528, 0.12351849675178528, 0.015345524996519089, -0.051405228674411774, -0.0532560870051384, -0.16123487055301666, 0.04249332845211029, -0.020056266337633133, -0.04139867052435875, -0.011481061577796936, 0.058738406747579575, -0.16895560920238495, 0.06293077021837234, -0.02191709354519844, -0.04480668529868126, -0.03754343092441559, 0.06576216220855713, -0.09361470490694046, -0.10805804282426834, 0.12525303661823273, -0.20655962824821472, 0.2292918711900711, 0.10857891291379929, 0.014640100300312042, 0.1498856544494629, 0.015339494682848454, 0.17300653457641602, -0.011389234103262424, -0.09517543017864227, -0.09633313119411469, -0.023532571271061897, 0.08814668655395508, 0.0100850909948349, -0.0213706586509943, 0.023416314274072647]], "url": "http://i.imgur.com/oLKIJpW.jpg"},
"000079": {"embedding": [[-0.041570913046598434, 0.1362660974264145, 0.008188080042600632, -0.07518889755010605, -0.14779488742351532, 0.07981052249670029, 0.017305050045251846, -0.12522795796394348, 0.20672623813152313, -0.09800982475280762, 0.19368188083171844, -0.0025433283299207687, -0.228663831949234, -0.060605838894844055, 0.021887335926294327, 0.134253591299057, -0.15711788833141327, -0.17032857239246368, -0.18177010118961334, -0.15572595596313477, 0.12161967158317566, 0.06295211613178253, -0.029196500778198242, 0.030332021415233612, -0.27483347058296204, -0.3295017182826996, -0.028815217316150665, -0.12542593479156494, 0.13970139622688293, -0.15383505821228027, 0.02346773073077202, -0.03931257128715515, -0.16339591145515442, 0.014679733663797379, 0.03162754699587822, 0.1327272355556488, -0.009416840970516205, -0.052381422370672226, 0.16818919777870178, 0.011326504871249199, -0.2056124359369278, 0.12338123470544815, 0.06782861053943634, 0.2255852073431015, 0.14057162404060364, 0.056577447801828384, 0.12649206817150116, -0.11930562555789948, 0.14136341214179993, -0.14166706800460815, 0.07187668979167938, 0.1388578861951828, 0.07219970226287842, 0.10862333327531815, 0.09675394743680954, -0.20332305133342743, 0.02304808236658573, 0.16260811686515808, -0.24558699131011963, 0.11093402653932571, 0.16724298894405365, -0.0730777233839035, -0.06348272413015366, 0.02142525464296341, 0.20553019642829895, 0.011899642646312714, -0.13998031616210938, -0.16226541996002197, 0.10064586251974106, -0.20847958326339722, -0.0520661436021328, 0.061117418110370636, -0.09343162178993225, -0.09874317049980164, -0.28210651874542236, 0.07006010413169861, 0.4938293695449829, 0.10986591875553131, -0.21976840496063232, -0.0021578408777713776, -0.06743935495615005, 0.029722105711698532, 0.11267874389886856, 0.043239906430244446, -0.09203177690505981, -0.02611866220831871, -0.14043021202087402, 0.06168714910745621, 0.2263786792755127, 0.019887275993824005, 0.07625696808099747, 0.24896959960460663, 0.08734375238418579, -0.04005030542612076, -0.004922861233353615, 0.0943802073597908, -0.24199363589286804, -0.029784053564071655, 0.03441298380494118, -0.041272785514593124, 0.03725706413388252, -0.11912128329277039, 0.030638927593827248, 0.0621115118265152, -0.24042698740959167, 0.2686002552509308, -0.05566437542438507, -0.023841701447963715, -0.0345468744635582, 0.047022756189107895, -0.0735657662153244, -0.03246689587831497, 0.18962277472019196, -0.3142330050468445, 0.16968810558319092, 0.25373756885528564, 0.03883052617311478, 0.13797436654567719, 0.06182776391506195, 0.10824195295572281, -0.021462958306074142, 0.05307359620928764, -0.17398451268672943, -0.0956464558839798, -0.0334160216152668, -0.11575360596179962, 0.056055665016174316, 0.035615887492895126]], "url": "http://i.imgur.com/4gSU23I.jpg", "landmarks": [{"bottom_lip": [[0.7092880845327793, 0.6793814257941954], [0.37005077034120637, 0.9510008808026759], [0.0935806849393444, 1.0703912065504813], [-0.12076892239192419, 1.0987027550295283], [-0.30389660300811666, 1.0661873268762172], [-0.45580235690923315, 0.9728449220905477], [-0.6669182106449141, 0.6954047106100095], [-0.5452642573801973, 0.7578485640401618], [-0.3013096001316466, 0.8215859189085489], [-0.11818191951545408, 0.85410134706186], [0.06559251181985598, 0.825466423223254], [0.5869873805489451, 0.6780879243559603]], "left_eyebrow": [[-1.3481577341019646, -1.391144890385023], [-1.2235934026012192, -1.603877620918498], [-0.9783452439144332, -1.6624409700339449], [-0.7340672113063237, -1.6292787911615163], [-0.46018412878093184, -1.5040677089416532]], "nose_tip": [[-0.5693719261849807, 0.14602166876143205], [-0.44836472363938157, 0.26961587418350125], [-0.23498524238678925, 0.33302985369232974], [-0.01998888433640316, 0.24356795322136543], [0.19500747371398294, 0.15410605275040115]], "top_lip": [[-0.6669182106449141, 0.6954047106100095], [-0.4834671546691628, 0.6973449627673621], [-0.2996927233338528, 0.6687100389287562], [-0.11656504271766026, 0.7012254670820672], [0.06720938861764979, 0.6725905432434613], [0.3423859725812767, 0.6755009214794903], [0.7092880845327793, 0.6793814257941954], [0.5869873805489451, 0.6780879243559603], [0.06591588717941474, 0.7948912472272954], [-0.11753516879633655, 0.7929509950699428], [-0.3009862247720878, 0.7910107429125903], [-0.5452642573801973, 0.7578485640401618]], "chin": [[-1.3822900390530697, -1.0551413297890377], [-1.3871406694464512, -0.5965136898496597], [-1.3308409478479155, -0.13723929919116395], [-1.213067498897904, 0.29210666619049075], [-1.0650422493114928, 0.7523511829276628], [-0.8857950730100054, 1.1517687230324765], [-0.7068712720680768, 1.5817614391332486], [-0.4664737437746723, 1.98182572995718], [-0.0400381566290465, 2.1392288649707956], [0.44916465930629024, 2.1444028707237357], [0.9409544781180971, 1.9049754685090075], [1.3732108217357808, 1.5120254355953688], [1.7449635640806649, 1.0572782999706958], [1.995062353160832, 0.5400873109158707], [2.154082364972241, -0.03922415620954783], [2.221376848795775, -0.6195057494136427], [2.2275209806273915, -1.2004340933368551]], "transform": {"angle": -0.010576007895779165, "center": [127.56944444444444, 166.02777777777777], "scale": 32.70444214881875}, "right_eye": [[0.45286727142356065, -1.096889160207429], [0.6379352041971057, -1.2478247880298694], [0.8828599875243329, -1.2758129611493578], [1.0955927180578076, -1.1512486296486124], [0.9111715360033801, -1.061463353818089], [0.6665701280357118, -1.0640503566945594]], "right_eyebrow": [[0.1513193911382391, -1.497600201750478], [0.4892632038915769, -1.646918952775124], [0.8568120665621971, -1.7041888004523362], [1.1924922517986234, -1.6394813195052726], [1.4963037596008564, -1.4527965099339337]], "left_eye": [[-1.1064667043703253, -1.113381303544926], [-0.9522973229522974, -1.2340651307309665], [-0.7073725396250703, -1.262053303850455], [-0.49528655981071307, -1.0763386203577923], [-0.740534718497499, -1.0177752712423451], [-0.9545609504692087, -1.0200388987592566]], "nose_bridge": [[-0.25003840112392717, -1.1349019694732392], [-0.2844940814345909, -0.7683232328812954], [-0.3192731371048134, -0.3711693202933931], [-0.3843039934114356, -0.004913959061008113]]}]},
"000080": {"landmarks": [{"right_eye": [[0.5267077184000643, -1.070474730531295], [0.7396325680764297, -1.2279308507711855], [0.9550958362188361, -1.2314846366236425], [1.1413016885633802, -1.1421893381504316], [0.9889224052555717, -1.0473095190519308], [0.7426786702356787, -1.0432480495062657]], "nose_bridge": [[0.09476581472883533, -1.1249280925813543], [0.13163848592481975, -0.756070173744723], [0.1372230065501094, -0.41748503809237025], [0.1433152108686072, -0.04811943556253086]], "left_eyebrow": [[-1.635032534728913, -1.4658634082915372], [-1.3297662844200877, -1.6248425796110517], [-0.95989299819704, -1.600154317052063], [-0.6192771277718546, -1.4826169701674061], [-0.2781535736534611, -1.3342991564052626]], "nose_tip": [[-0.3158533738276513, 0.11339815422302447], [-0.0988670546056205, 0.20218576900302726], [0.11761158092320212, 0.2601929169055434], [0.3012790148017055, 0.1955858809913213], [0.45365829810951414, 0.1007060618928207]], "right_eyebrow": [[0.4303048482219392, -1.3151954144715639], [0.7355710985307645, -1.4741745857910782], [1.0423603999192144, -1.5408123564781329], [1.380437851878359, -1.5771773439809091], [1.5378939721182492, -1.3642524943045438]], "top_lip": [[-0.7361185525550927, 0.7668955303551576], [-0.4288215674734347, 0.7310382265455894], [-0.15179736557605517, 0.726469073306716], [0.06468126995276746, 0.7844762212092322], [0.2791291707087574, 0.7193615016018019], [0.5253729057286504, 0.7153000320561367], [0.7711089570553351, 0.6804580956329849], [0.6484947732385968, 0.713269297283304], [0.2806522217883819, 0.8117029022342618], [0.0662043210323919, 0.876817621841692], [-0.14976663080322256, 0.8495909408166625], [-0.6124890013519381, 0.7956452624598115]], "bottom_lip": [[0.7711089570553351, 0.6804580956329849], [0.5607225258450104, 0.9918165502603081], [0.3472899924754366, 1.1184922036227116], [0.10155394114875188, 1.1533341400458634], [-0.11390932699365441, 1.1568879258983205], [-0.42374473054135314, 1.0388428953204554], [-0.7361185525550927, 0.7668955303551576], [-0.6124890013519381, 0.7956452624598115], [-0.11847848023252777, 0.8798637240009409], [0.09749247160308668, 0.9070904050259705], [0.3119403723590766, 0.8419756854185403], [0.6484947732385968, 0.713269297283304]], "left_eye": [[-1.168248694634532, -1.1656739949147932], [-0.9543084775717503, -1.26156918139971], [-0.7383375257361359, -1.2343425003746806], [-0.520843522820897, -1.1147744187171913], [-0.7357991072700951, -1.0804401659872476], [-0.9825505259831963, -1.107159163319069]], "chin": [[-2.1557620531801445, -1.3033304511195656], [-2.115843279824911, -0.7497897310180146], [-2.0451440395921914, -0.19675669460967185], [-1.8826110824202196, 0.32397282384155984], [-1.6282444083089964, 0.8123988243356806], [-1.2820440172585215, 1.26852130687269], [-0.8752980598394894, 1.6620674882683102], [-0.40851421974510865, 1.962256901645054], [0.08498861768109349, 2.015694896308697], [0.5138844191930735, 1.885465457093836], [0.8473927179133448, 1.5720762676936804], [1.0875442486147398, 1.1986491956181757], [1.2343390112972588, 0.7651842408673225], [1.3811337739797778, 0.3317192861164691], [1.4658599192141155, -0.13151076812545456], [1.550586064448453, -0.5947408223673782], [1.5737512759278172, -1.0569555092228857]], "transform": {"scale": 32.483718025010546, "angle": 0.016492201552340116, "center": [123.31944444444444, 164.48611111111111]}}], "url": "http://i.imgur.com/lUVjmOD.jpg", "embedding": [[-0.025017010048031807, 0.05179397389292717, 0.04860977455973625, -0.0040968358516693115, -0.09818071871995926, 0.006630029529333115, 0.007124889642000198, -0.10796478390693665, 0.010502828285098076, 0.031783632934093475, 0.13944320380687714, -0.15346136689186096, -0.31539610028266907, 0.00411885604262352, -0.09758833050727844, 0.06935447454452515, -0.16735117137432098, 0.013329917564988136, -0.12680383026599884, -0.12579862773418427, 0.05053802579641342, 0.02230416238307953, 0.018511615693569183, 0.025443296879529953, -0.16190582513809204, -0.22181791067123413, -0.10345511138439178, -0.09781171381473541, 0.03492613881826401, -0.12471151351928711, 0.014933805912733078, 0.06432173401117325, -0.22426483035087585, -0.0006558410823345184, -0.08795478194952011, -0.04358719289302826, 0.015904784202575684, -0.0981530249118805, 0.12987849116325378, 0.04190528020262718, -0.08243512362241745, 0.041489094495773315, 0.10081718862056732, 0.19337128102779388, 0.23864032328128815, 0.04042763262987137, -0.018917880952358246, -0.04490542411804199, 0.13132895529270172, -0.20316922664642334, 0.02494099922478199, 0.13794219493865967, 0.144204244017601, 0.045245762914419174, 0.10076871514320374, -0.11191944777965546, 0.018981341272592545, 0.10359600186347961, -0.2030564695596695, 0.15735770761966705, -9.812228381633759e-05, -0.027751445770263672, 0.026253264397382736, -0.053691018372774124, 0.09482330828905106, 0.019991394132375717, -0.05703580006957054, -0.05908576771616936, 0.2141120284795761, -0.17711639404296875, -0.0239852387458086, 0.07513101398944855, -0.05987189710140228, -0.20082537829875946, -0.2906132638454437, 0.057895563542842865, 0.3985808789730072, 0.15252870321273804, -0.2065710425376892, 0.03943895921111107, -0.05855947732925415, -0.139515683054924, 0.10481239855289459, 0.058794185519218445, -0.03953252360224724, -0.07239542156457901, -0.10200070589780807, 0.06607770919799805, 0.2200576812028885, -0.07137205451726913, -0.007077621296048164, 0.29675447940826416, -0.0003761500120162964, -0.06821126490831375, 0.011995995417237282, 0.03856266289949417, -0.1443941593170166, 0.029712578281760216, -0.04477626085281372, 0.021773777902126312, 0.06894800812005997, -0.19179892539978027, -0.03377920389175415, 0.032727357000112534, -0.13558241724967957, 0.11107281595468521, 0.029729483649134636, -0.07406754046678543, -0.06703527271747589, -0.0972512811422348, -0.1386074423789978, 0.07232122123241425, 0.22799009084701538, -0.31927981972694397, 0.17625796794891357, 0.12569181621074677, -0.062048282474279404, 0.08529111742973328, 0.0015860344283282757, 0.11733920872211456, 0.03914337232708931, -0.04013748839497566, -0.08095615357160568, -0.1392425298690796, 0.06263992935419083, -0.08556904643774033, 0.004107200540602207, 0.05708668753504753]]},
"000081": {"embedding": [[-0.09089255332946777, 0.16951234638690948, 0.09222905337810516, -0.05959325283765793, -0.06251463294029236, -0.02172071672976017, -0.037863075733184814, -0.06593576818704605, 0.2343033403158188, 0.012731180526316166, 0.2143109291791916, 0.0011270996183156967, -0.2136639654636383, -0.05218636617064476, 0.030373986810445786, 0.11323060840368271, -0.28157633543014526, -0.12904806435108185, 0.019788667559623718, -0.06709885597229004, 0.02196367084980011, 0.03112138994038105, 0.016808927059173584, 0.062367845326662064, -0.12947216629981995, -0.3567468523979187, -0.09497557580471039, -0.13317152857780457, 0.005064636468887329, -0.08828979730606079, -0.02602962963283062, -0.036952439695596695, -0.19329620897769928, -0.09370057284832001, 0.03648509085178375, 0.04387623071670532, 0.028630375862121582, -0.056959524750709534, 0.10104212164878845, -0.04654724523425102, -0.0849674642086029, 0.06695712357759476, 0.04484536126255989, 0.249084010720253, 0.12805381417274475, 0.12446112185716629, -0.039298877120018005, -0.05393460765480995, 0.10047423094511032, -0.20418676733970642, 0.11178699880838394, 0.135719433426857, 0.03226950392127037, 0.022959431633353233, 0.061473771929740906, -0.2598683834075928, -0.044091202318668365, 0.109642393887043, -0.2578912675380707, 0.08917837589979172, -0.0001417640596628189, 0.005361916497349739, 0.016422072425484657, -0.04046676680445671, 0.23061713576316833, 0.20120032131671906, -0.111330546438694, -0.16982564330101013, 0.0623680055141449, -0.1292848438024521, -0.04460308700799942, -0.0398697666823864, -0.13921557366847992, -0.1598900556564331, -0.31661146879196167, 0.05569983646273613, 0.3301769196987152, 0.07164115458726883, -0.21685892343521118, -0.0042847804725170135, -0.07224856317043304, 0.01660306006669998, 0.022575516253709793, 0.03644413501024246, -0.1246137022972107, 0.023528914898633957, -0.15488594770431519, 0.011353686451911926, 0.12698060274124146, 0.03367375582456589, -0.07669803500175476, 0.23434856534004211, -0.07405261695384979, 0.05709977447986603, 0.03265424072742462, 0.04803057014942169, -0.1430383026599884, 0.0038381721824407578, -0.18560032546520233, -0.0414394773542881, 0.03583872318267822, -0.02153879404067993, -0.04427946358919144, 0.16831013560295105, -0.2010837346315384, 0.04679330438375473, 0.01824154146015644, -0.04388190433382988, -0.09312635660171509, 0.07155309617519379, -0.13292638957500458, -0.0638580471277237, 0.17108064889907837, -0.27087581157684326, 0.2776629626750946, 0.19340023398399353, 0.03371075168251991, 0.19383540749549866, 0.015153368934988976, 0.0009627696126699448, -0.015813011676073074, 0.0001420825719833374, -0.10519040375947952, -0.030985986813902855, 0.02859797701239586, -0.0136981550604105, 0.08267111331224442, 0.08241663128137589]], "url": "http://i.imgur.com/W5wZMzU.jpg", "landmarks": [{"bottom_lip": [[0.7776769747724619, 0.6214927529220096], [0.6265971439602914, 1.0036250352036753], [0.3597159513868274, 1.1486518734318376], [0.12343591541296174, 1.1759513977128861], [-0.1712950734946422, 1.1436994249540129], [-0.553152219749762, 0.9631189816484272], [-0.874082188832231, 0.5765845229420286], [-0.8150809638454011, 0.5771347949951202], [-0.16881884925572982, 0.878193912513278], [0.12563700362532831, 0.9399464977655664], [0.3621921756257398, 0.8831463609911029], [0.6889000012656712, 0.6501679573357871]], "transform": {"angle": -0.00932618092813866, "scale": 33.89612713000676, "center": [122.44444444444444, 167.18055555555554]}, "nose_bridge": [[0.17412200195040498, -1.0953206282535213], [0.2303718666717767, -0.79976423126628], [0.2863465953666026, -0.47470722178562363], [0.3128207115680136, -0.14992534833151297]], "nose_tip": [[-0.24961687799269178, 0.05135135461802125], [-0.01388711407191775, 0.08305305532380279], [0.19179176530234965, 0.1734808449898685], [0.3988463248093462, 0.11640557218885927], [0.5761251357963818, 0.08855577585471922]], "left_eyebrow": [[-1.5945390675217646, -1.2593318523133457], [-1.3262821948155716, -1.551861753008583], [-0.9711743007884087, -1.666562570663693], [-0.5584408619071447, -1.6332100537986365], [-0.17575830757238747, -1.541131447973296]], "left_eye": [[-1.06517885879957, -1.077375728875031], [-0.8575740272394817, -1.1934522266628702], [-0.621569127292162, -1.1912511384505036], [-0.44594113246440126, -1.0420972598241536], [-0.6529956919713977, -0.9850219870231445], [-0.8887254558921718, -1.0167236877289263]], "right_eye": [[0.4975281952717865, -0.9742916819878574], [0.7054081628584205, -1.1198687922691115], [0.9414130628057402, -1.1176677040567449], [1.087815581166632, -0.9982895739503562], [0.9397622466464652, -0.9406640290962553], [0.7332579591925604, -0.942589981282076]], "right_eyebrow": [[0.4434794187627813, -1.5058529789224189], [0.7688115642699836, -1.5913283201106596], [1.063817689204133, -1.5885769598452013], [1.2987220450452697, -1.468373421659175], [1.4142482707800175, -1.201767365112257]], "top_lip": [[-0.874082188832231, 0.5765845229420286], [-0.5186991587785222, 0.4323830927935036], [-0.10569058387071255, 0.43623499716514513], [0.15953979254347644, 0.46821183389747245], [0.3958198285173421, 0.4409123096164241], [0.6315495924381161, 0.4726140103222056], [0.7776769747724619, 0.6214927529220096], [0.6889000012656712, 0.6501679573357871], [0.394444148384613, 0.5884153720834989], [0.12866349991733236, 0.6154397603380015], [-0.13656687649685662, 0.5834629236056741], [-0.8150809638454011, 0.5771347949951202]], "chin": [[-2.1867524056024306, -1.0288296728969424], [-2.1624793776133866, -0.46804289949551175], [-2.1677069621177574, 0.09246873787937282], [-2.1139333216352973, 0.6535306473073491], [-1.882330598112711, 1.1277415354143554], [-1.472898791549997, 1.5151014022003915], [-0.9738646034008547, 1.7852842270924052], [-0.4748304152517125, 2.055467051984419], [0.05563033757666551, 2.119420725449074], [0.4992400690840734, 2.0055453158736016], [0.8270484388301881, 1.6545644622446256], [1.0666301071226036, 1.2732575880425974], [1.306486911441565, 0.8624501013471542], [1.428891537839958, 0.39154084555869784], [1.4920198032249752, -0.050418069789435215], [1.4666462311297477, -0.4932023932172057], [1.4409975230079741, -0.9064861041515613]]}]},
"000083": {"url": "http://i.imgur.com/OEo2Tjt.jpg", "landmarks": [{"bottom_lip": [[0.8649293751134066, 0.5945866455013696], [0.5340055808116531, 0.9569821083935633], [0.20267857171234613, 1.1083498314964015], [-0.03843838593298156, 1.138957468377799], [-0.24952372783627363, 1.1092138632054442], [-0.5512799381050343, 0.9590557844952659], [-0.8534969652852846, 0.567723146025824], [-0.7026476612078723, 0.6277287753959591], [-0.24992694263382692, 0.8981861234160882], [-0.03884160073053484, 0.9279297285884428], [0.17212853694488484, 0.8973796938209816], [0.7443996973477108, 0.6249638739270224]], "nose_bridge": [[-0.04275854447819523, -1.1220540293652999], [-0.04212492122489722, -0.7904390096963121], [-0.07158051582757101, -0.4286195679434802], [-0.07088929046033683, -0.06685772830458439]], "right_eye": [[0.4999994192080208, -1.0627972274763353], [0.7107967505416319, -1.1837877221535205], [0.9519713103008958, -1.18424853906501], [1.1631718564320603, -1.0942112939528392], [0.9522593208705766, -1.03351443921547], [0.7110847611113128, -1.0330536223039806]], "nose_tip": [[-0.37201187747579956, 0.11459921265422532], [-0.2512517912543591, 0.20480926410820455], [-0.07025566720703882, 0.2647572913644034], [0.1405992662405085, 0.17391361665712618], [0.32136498183208406, 0.11327436403369313]], "top_lip": [[-0.8534969652852846, 0.567723146025824], [-0.5218243435023605, 0.597236342742434], [-0.2204137459172169, 0.5665135016331642], [-0.03941762186989666, 0.626461528889363], [0.17149491369158684, 0.5657646741519938], [0.5031099333605746, 0.5651310508986958], [0.8649293751134066, 0.5945866455013696], [0.7443996973477108, 0.6249638739270224], [0.17178292426126776, 0.7164987740015337], [-0.039187213414151933, 0.7470488087689949], [-0.220125735347536, 0.7172476014827041], [-0.7026476612078723, 0.6277287753959591]], "chin": [[-1.7306924522233613, -0.9680942111353339], [-1.7297708184003824, -0.4857450916168061], [-1.7288491845774037, -0.003395972098278404], [-1.6676915129285448, 0.448691123222469], [-1.5160933813699622, 0.9006054122014078], [-1.274112392015592, 1.3222000748686302], [-0.9116593270094618, 1.6832706891402918], [-0.48902782629138825, 1.983932459244265], [-0.00650590043105193, 2.07345128533101], [0.4757280148596034, 2.012236011568215], [0.9274118953827974, 1.7400506001300007], [1.3186293296243672, 1.3775399330099345], [1.6192910997283403, 0.9549084322918607], [1.7993079878387455, 0.5023605200596241], [1.8586223918416462, -0.010250623656684086], [1.9481412179283917, -0.4927725495170204], [2.0074556219312925, -1.0053836932333284]], "transform": {"center": [125.34722222222223, 166.22222222222223], "scale": 33.170933968453554, "angle": 0.001910717080440541}, "right_eyebrow": [[0.2580184298536504, -1.4843918901435575], [0.5894030410668935, -1.6056127932764876], [0.9509920743639807, -1.6967444785534458], [1.2827222982608408, -1.6370844618669278], [1.5543892906736299, -1.4567219610729054]], "left_eyebrow": [[-1.4602351042032322, -1.420814929709379], [-1.2193485550136494, -1.5720098464704086], [-0.9480847773984137, -1.6026750854657423], [-0.6465013734714614, -1.5429574666652883], [-0.3749495852865449, -1.4228886058110817]], "left_eye": [[-1.1580756791369184, -1.0596291112098453], [-0.9472207456893709, -1.1504727859171224], [-0.7361930059000149, -1.1508760007146757], [-0.5249348576549144, -1.0306919356325972], [-0.7660518153002421, -1.0000842987511998], [-0.977079555089598, -0.9996810839536464]]}], "embedding": [[-0.1132429987192154, 0.1394076645374298, 0.11939050257205963, -0.05325969308614731, -0.16153639554977417, 0.019694481045007706, -0.03901224583387375, -0.12202724814414978, 0.0983266532421112, -0.0684962123632431, 0.12210894376039505, -0.12115026265382767, -0.29974493384361267, 0.12055181711912155, 0.0074571967124938965, 0.17397111654281616, -0.21016450226306915, -0.14729920029640198, -0.10235927253961563, 0.03984192758798599, -0.02226591482758522, 0.09569279104471207, -0.016787175089120865, 0.10024359822273254, -0.08509699255228043, -0.34570130705833435, -0.029400432482361794, -0.0735764354467392, 0.06895877420902252, 0.0017788410186767578, -0.009221833199262619, -0.06882371753454208, -0.16444893181324005, -0.006548704579472542, 0.111257404088974, 0.03026813082396984, -0.10373891890048981, -0.20569738745689392, 0.12259934842586517, -0.050086356699466705, -0.23505420982837677, -0.08642926812171936, 0.07301181554794312, 0.14389994740486145, 0.20771129429340363, 0.03875286132097244, 0.03749878332018852, -0.20896270871162415, 0.12256132066249847, -0.3535473346710205, -0.05161363631486893, 0.11375416815280914, -0.03994569182395935, 0.11039894819259644, 0.019665786996483803, -0.20160473883152008, 0.03033486381173134, 0.11234170943498611, -0.2642591595649719, 0.05849696323275566, 0.06571070849895477, -0.012696785852313042, 0.02871539816260338, -0.06475362181663513, 0.16579358279705048, 0.051184337586164474, -0.15075282752513885, -0.1758163571357727, 0.14830870926380157, -0.2769324779510498, -0.018497880548238754, 0.09380162507295609, -0.0042851027101278305, -0.2423664629459381, -0.2528267502784729, -0.02276262268424034, 0.4351550042629242, 0.1595219075679779, -0.13534855842590332, -0.06401757150888443, -0.05940397083759308, -0.031247170642018318, 0.02455182932317257, 0.08001379668712616, -0.03961022198200226, -0.12727715075016022, -0.08557914942502975, -0.03222530707716942, 0.30090922117233276, -0.09241627901792526, 0.07485982030630112, 0.27711978554725647, 0.03375547379255295, -0.07379283756017685, 0.038130905479192734, 0.1851622313261032, -0.16352063417434692, 0.002591347321867943, -0.11496292054653168, -0.010196594521403313, -0.022074328735470772, -0.04971206933259964, 0.046882692724466324, 0.15233342349529266, -0.1838613599538803, 0.1724345088005066, -0.04624532163143158, -0.11298274248838425, 0.036743927747011185, -0.03874063119292259, -0.12473072856664658, -0.1321401745080948, 0.20204783976078033, -0.2203904539346695, 0.11171355098485947, 0.20993557572364807, 0.06453254073858261, 0.15463173389434814, -0.005391932558268309, 0.10456299036741257, 0.005198553670197725, -0.0004023648798465729, -0.09536431729793549, -0.12119019031524658, 0.02926081418991089, -0.01644596830010414, -0.08326414972543716, -0.027961257845163345]]},
"000085": {"landmarks": [{"right_eyebrow": [[0.2640872788112012, -1.4560824634149454], [0.6042530177116815, -1.575581218021195], [0.9745462371702927, -1.63313973213406], [1.3434912331272053, -1.5674918770110038], [1.6190202845309036, -1.4104504125872814]], "left_eyebrow": [[-1.6148098520365886, -1.476642871815848], [-1.3667118341876239, -1.6279543863573518], [-1.089160447531378, -1.6557224757875102], [-0.7818186361924258, -1.5907487324153033], [-0.47515093660432267, -1.4641718044251366]], "bottom_lip": [[0.7945849732176953, 0.7368975962802893], [0.4527339549400919, 1.01040431243144], [0.144043920099441, 1.068636938295154], [-0.07190428193884474, 1.0970791394761616], [-0.2868413163508566, 1.0331165637302289], [-0.5014412948874438, 0.9383523956753159], [-0.7140189381714833, 0.6587786737665221], [-0.591486680686412, 0.7217300818861809], [-0.25300622116305477, 0.756239288824832], [-0.06853372318459844, 0.7890632163863601], [0.14707742297826268, 0.7914226075143325], [0.6710415481063501, 0.766350965087571]], "chin": [[-1.7413867800267555, -1.1699751722277447], [-1.7159780817245696, -0.6768126394086377], [-1.6286291429289985, -0.21377758714766132], [-1.5724188523178322, 0.27972200154687055], [-1.4234667289043008, 0.743431165558696], [-1.1506341245039997, 1.14688536845426], [-0.8155242237348888, 1.4894104984827126], [-0.41847408247239304, 1.8018081479530343], [0.042538634536035486, 1.8992687630113443], [0.5357011673551426, 1.8738600647091583], [1.0000844431178175, 1.6633047566776666], [1.4042127577642305, 1.328868967659405], [1.6864829266764214, 0.8698785859035244], [1.8458837822281164, 0.3787383883369649], [1.9748201013462559, -0.14354045741399932], [2.072954828155415, -0.6661563590403882], [2.1406250185310185, -1.219910908851182]], "nose_bridge": [[-0.1099135552770809, -1.0597064339032989], [-0.11395822578217647, -0.6900873261955369], [-0.11833995216269667, -0.28966662617879485], [-0.15318621497677243, 0.07961542565354243]], "top_lip": [[-0.7140189381714833, 0.6587786737665221], [-0.4980707361331975, 0.6303364725855144], [-0.2516579976613562, 0.6330329195889115], [-0.06752255555832455, 0.6966584394594196], [0.1484256464799612, 0.6682162382784117], [0.4561045136943382, 0.7023883893416383], [0.7945849732176953, 0.7368975962802893], [0.6710415481063501, 0.766350965087571], [0.14606625535198878, 0.8838273844412728], [-0.06954489081087233, 0.8814679933133005], [-0.25401738878932867, 0.8486440657517726], [-0.591486680686412, 0.7217300818861809]], "left_eye": [[-1.218433822524942, -1.1026420377275659], [-1.0014744528603825, -1.223489015835514], [-0.7550617143885411, -1.2207925688321168], [-0.5418099593536524, -1.0028220315412835], [-0.788896809576343, -0.9439152939267201], [-1.0349724921727597, -0.9774133332390973]], "right_eye": [[0.4743055309672683, -0.9608975953432904], [0.6919390123826772, -1.1433477580691989], [0.9694903990389232, -1.1711158474993575], [1.1834162658246612, -1.0147484948264842], [0.9972584884690818, -0.8935644608431114], [0.7200441576882602, -0.896597963721933]], "nose_tip": [[-0.40094717695031223, 0.200125347886066], [-0.2787519753406655, 0.29387834831470505], [-0.09461653323763378, 0.3575038681852132], [0.09086713236709645, 0.2979230188198006], [0.2763507979718267, 0.23834216945438808]], "transform": {"angle": -0.010942370102897664, "center": [125.94444444444444, 164.36111111111111], "scale": 32.46391039901173}}], "embedding": [[-0.1176426112651825, 0.1032189354300499, 0.0013742595911026, -0.07379307597875595, -0.07281077653169632, -0.061613451689481735, -0.07332250475883484, -0.13855333626270294, 0.08587218075990677, -0.08565148711204529, 0.07868754118680954, -0.06815927475690842, -0.29534322023391724, 0.08657374233007431, -0.06588494777679443, 0.1782294362783432, -0.2280960977077484, -0.2085922807455063, -0.1453661471605301, 0.011763924732804298, 0.022101493552327156, 0.015199121087789536, 0.024890083819627762, 0.10485932230949402, -0.046934060752391815, -0.4350888729095459, -0.104930579662323, -0.05190352350473404, -0.0223412923514843, -0.036966726183891296, 0.011415772140026093, 0.02521245926618576, -0.17013432085514069, 0.0012237690389156342, 0.03660285845398903, 0.042221084237098694, -0.03449322655797005, -0.1865968406200409, 0.20418019592761993, 0.028255391865968704, -0.2750788629055023, -0.049417972564697266, 0.12780453264713287, 0.30851906538009644, 0.27142637968063354, -0.004526509903371334, 0.029363250359892845, -0.09813179820775986, 0.15153974294662476, -0.39288485050201416, 0.08022865653038025, 0.16065239906311035, 0.04200848937034607, 0.17049163579940796, 0.024078432470560074, -0.18792949616909027, 0.03646204620599747, 0.18497377634048462, -0.2354024350643158, 0.0719066932797432, 0.02758333645761013, -0.0720711201429367, 0.03467268869280815, -0.11715548485517502, 0.26798492670059204, 0.1862606257200241, -0.20362526178359985, -0.14473088085651398, 0.17973527312278748, -0.2082124650478363, -0.04102478548884392, -0.020587028935551643, -0.13298840820789337, -0.23762574791908264, -0.31715497374534607, -0.0007117604836821556, 0.2956753075122833, 0.18595339357852936, -0.12616361677646637, 0.014488227665424347, -0.12338973581790924, -0.04996848851442337, -0.03726895898580551, 0.1906687319278717, -0.0034225136041641235, -0.03186940774321556, -0.07173610478639603, 0.02678404375910759, 0.2659974694252014, -0.032597243785858154, -0.03794168680906296, 0.3335033059120178, -0.0326460562646389, -0.034274209290742874, 0.008200330659747124, 0.2093680202960968, -0.2009902149438858, -0.027851678431034088, -0.19140009582042694, -0.00848882645368576, -0.026713209226727486, 0.002545315772294998, -0.014405157417058945, 0.17461282014846802, -0.14516335725784302, 0.1903546154499054, -0.04280492663383484, 0.024943048134446144, 0.0021436959505081177, -0.09183429181575775, -0.03639707714319229, -0.1058657243847847, 0.12863992154598236, -0.19092555344104767, 0.18115192651748657, 0.20177695155143738, 0.10621942579746246, 0.15738996863365173, 0.017112787812948227, 0.03003941848874092, 0.04241340234875679, -0.06599642336368561, -0.23893964290618896, -0.01596113108098507, 0.07063469290733337, 0.04239773377776146, -0.08962158113718033, 0.07915609329938889]], "url": "http://i.imgur.com/zakRfSN.jpg"},
"000086": {"url": "http://i.imgur.com/m9nknMT.jpg", "embedding": [[-0.1187974363565445, 0.06299831718206406, 0.03244861215353012, -0.16508688032627106, -0.12562662363052368, -0.02504172921180725, 0.0018459782004356384, -0.10339602828025818, 0.12802064418792725, -0.16124120354652405, 0.2593252658843994, -0.10822628438472748, -0.25184276700019836, -0.023588959127664566, -0.04687849059700966, 0.1868998259305954, -0.0770830512046814, -0.15015201270580292, -0.05322439223527908, -0.025446580722928047, 0.0925188958644867, -0.014425143599510193, -0.0003665722906589508, 0.10919322073459625, -0.08615776896476746, -0.30960458517074585, -0.07729246467351913, 0.0010071787983179092, -0.13555850088596344, -0.05696261301636696, 0.030405763536691666, 0.14179734885692596, -0.168563574552536, 0.02106587402522564, -0.012188516557216644, 0.10405772924423218, -0.03606972098350525, -0.11109527945518494, 0.20327302813529968, 0.05854026600718498, -0.23700721561908722, 0.004683207720518112, 0.06576316803693771, 0.2618582248687744, 0.11097254604101181, -0.03647088259458542, 0.002779876347631216, -0.05151612311601639, 0.11947065591812134, -0.29456061124801636, 0.04966919124126434, 0.16368412971496582, 0.0620185025036335, 0.008505471050739288, 0.039450839161872864, -0.12439888715744019, 0.05323542654514313, 0.15576663613319397, -0.20949381589889526, -0.035279057919979095, 0.035205937922000885, -0.11338888108730316, -0.04886532574892044, -0.19017936289310455, 0.193780779838562, 0.20608890056610107, -0.1097053587436676, -0.09685321152210236, 0.20115596055984497, -0.03246966376900673, -0.07535608857870102, 0.054978031665086746, -0.20517286658287048, -0.21836885809898376, -0.2147947996854782, 0.07446689903736115, 0.33954691886901855, 0.19441205263137817, -0.1314333975315094, 0.03603499382734299, -0.0707072764635086, 0.01884428597986698, -0.011173906736075878, 0.0731184333562851, -0.0024064257740974426, 0.007756195962429047, -0.09253239631652832, 0.06377720832824707, 0.15248320996761322, -0.04607012867927551, -0.0509941540658474, 0.25987789034843445, 0.012411732226610184, -0.013928251340985298, 0.010901630856096745, 0.02179637923836708, -0.0975487008690834, -0.001941809430718422, -0.20136189460754395, -0.03963397815823555, -0.014598138630390167, -0.07651135325431824, -0.030701829120516777, 0.10684438049793243, -0.2317928820848465, 0.1499291956424713, -0.026967791840434074, -0.052965790033340454, -0.0767344981431961, -0.014799481257796288, -0.019945451989769936, 0.02111532911658287, 0.0559205487370491, -0.18624566495418549, 0.12582184374332428, 0.1201118603348732, 0.09472834318876266, 0.17581583559513092, 0.09386478364467621, 0.04856458306312561, 0.00877152569591999, -0.1124962791800499, -0.17639575898647308, -0.08128432184457779, 0.12170270085334778, 0.06409495323896408, 0.06445997208356857, 0.06094054877758026]], "landmarks": [{"nose_tip": [[-0.12132563467624372, 0.07744531010732222], [0.08416066324076368, 0.1283621668573776], [0.2896469611577711, 0.17927902360743295], [0.434952413885994, 0.17413236336369453], [0.5781992025167215, 0.11086352202866698]], "left_eyebrow": [[-1.5749299076458017, -1.52962891265453], [-1.2334021454393005, -1.7454085310590142], [-0.8286055418977716, -1.8179413608327708], [-0.3896011875668599, -1.7461980699270525], [-0.033662776677891165, -1.5551224206925123]], "bottom_lip": [[0.5458103226441244, 0.8394494497672766], [0.4316246245590415, 0.9016889590535566], [0.3164095944252109, 0.934867377794192], [0.22819699073952948, 0.9088942833947904], [0.11092329650820348, 0.8839505210441366], [-0.09456300140880392, 0.8330336642940812], [-0.3882619030114927, 0.7561437131446243], [-0.2439857823320176, 0.7219359623552414], [0.16184015325825885, 0.6784642231271292], [0.24902342489519258, 0.6753762269808862], [0.3362066965321263, 0.6722882308346431], [0.45656838690969537, 0.7844152648222307]], "transform": {"scale": 34.38870658271548, "angle": 0.03540479398522069, "center": [119.26388888888889, 166.48611111111111]}, "left_eye": [[-1.1225442366811698, -1.0800914446554317], [-0.8931435084622562, -1.175509372682347], [-0.6305643615027073, -1.1557122705754315], [-0.4489924938876061, -0.9584606290484057], [-0.6524201277071181, -0.9512553047071718], [-0.914999274666667, -0.9710524068140872]], "nose_bridge": [[0.27650543770476066, -1.0132550208127422], [0.34389160723477896, -0.7537638699994367], [0.41024844471604954, -0.5233338097317753], [0.4766052821973202, -0.292903749464114]], "chin": [[-2.7239922128378646, -1.1106614536112427], [-2.731437330359808, -0.4993492201039592], [-2.6797309347417144, 0.1389654398514739], [-2.542899931584182, 0.7160699225693747], [-2.176668200207737, 1.1977564772603602], [-1.6422459178499096, 1.4989004963849923], [-1.0507307864495414, 1.7689247608664844], [-0.46230365119541594, 1.9517657537110427], [0.03379355217803717, 1.9923892899736213], [0.43550215957332283, 1.8326731885629308], [0.6867586539966472, 1.5327982946677559], [0.8467145485880472, 1.1197670347362456], [1.0076997752281946, 0.73579686535038], [1.1396239113226976, 0.35285602801326216], [1.2123965342771639, -0.05708723577200498], [1.2291056402378362, -0.40684965436848763], [1.216753655652864, -0.7555827409162226]], "right_eye": [[0.45601864122236646, -0.8741255603770056], [0.6542996147981401, -1.0266363374464622], [0.8878176712120445, -1.0058099032907992], [1.009208693638361, -0.8646217787575671], [0.8960523276020259, -0.7733211789256427], [0.6625342711881216, -0.7941476130813057]], "top_lip": [[-0.3882619030114927, 0.7561437131446243], [-0.04570480875624393, 0.5694251852857847], [0.2127570100083142, 0.4729779252101218], [0.30199894574274333, 0.5280121101551679], [0.38918221737967706, 0.5249241140089248], [0.48048281721160147, 0.6380804800452602], [0.5458103226441244, 0.8394494497672766], [0.45656838690969537, 0.7844152648222307], [0.3652677870777709, 0.6712588987858954], [0.2780845154408371, 0.6743468949321385], [0.18987191175515572, 0.648373800532737], [-0.2439857823320176, 0.7219359623552414]], "right_eyebrow": [[0.5817667850243834, -1.4314329409879911], [0.8101381811945493, -1.5559119595605508], [1.0125364829653136, -1.592178374447429], [1.2180227808823212, -1.5412615176973736], [1.311382044811741, -1.3699829705697493]]}]},
"000088": {"url": "http://i.imgur.com/n5kfdfx.jpg", "landmarks": [{"left_eye": [[-1.0855712285652082, -1.0426055947987378], [-0.9330362394075445, -1.1918988541621263], [-0.6915736405907027, -1.189305470326706], [-0.5124217293546365, -1.0062634833375095], [-0.7243498492782281, -0.9481670444892918], [-0.9658124480950698, -0.950760428324712]], "left_eyebrow": [[-1.322171232690637, -1.4979413514157363], [-1.1998190683850785, -1.6475587837585524], [-0.9583564695682367, -1.644965399923132], [-0.7175422167102501, -1.5820063663835013], [-0.47737630981111845, -1.4586816831396603]], "chin": [[-1.2673165236366948, -0.9841849829710926], [-1.3322205950528903, -0.5622737810004745], [-1.306900364892198, -0.10920723523946875], [-1.1907074871957624, 0.3146490046077144], [-1.0751629554581819, 0.798870894159108], [-0.8684216032054307, 1.2236996529445738], [-0.6305249071622918, 1.5583041101531512], [-0.3316142154560874, 1.8331912636163734], [0.029607163830892673, 1.9276298139258197], [0.4829978825713261, 1.872126758913022], [0.9983751159131073, 1.6663579255985534], [1.5147248681931713, 1.370040617727769], [1.940850318896347, 1.042567966066597], [2.2173583372567074, 0.5927431500998664], [2.373783402167501, 0.08125599251121542], [2.4098013406493015, -0.46171068184725095], [2.3851294564474643, -0.975142877312467]], "right_eye": [[0.45407701187158545, -1.0562555977000392], [0.6374431718402096, -1.2655903337882106], [0.9094127684885839, -1.2928556018254682], [1.1193958505356103, -1.1698550915610546], [0.9370022095052689, -1.0510688300291988], [0.6650326128568944, -1.0238035619919414]], "nose_bridge": [[-0.17943813704319655, -1.0932460551201224], [-0.2436938625005373, -0.7317005028537149], [-0.30762541497845053, -0.4003377754394126], [-0.37155696745636374, -0.06897504802511024]], "top_lip": [[-0.5321962810997155, 0.8348888326409087], [-0.5000684183710452, 0.6541160565077049], [-0.37836460002434175, 0.5648642738690992], [-0.2579574735953484, 0.5963437906389146], [-0.10639500337596726, 0.5375990058318418], [0.1642779013546971, 0.6310650372030052], [0.49434393685128947, 0.8157278890893392], [0.40379546229497376, 0.8147553701510567], [-0.07848138937985472, 0.7492029527760059], [-0.22971968661980835, 0.7777649127309735], [-0.3504509860282292, 0.7764682208132634], [-0.4416478065433999, 0.8358613515791913]], "bottom_lip": [[0.49434393685128947, 0.8157278890893392], [0.19057065045367202, 0.9935831084076954], [-0.02168164244934706, 1.0818623721080183], [-0.20310276454140588, 1.1101001590835584], [-0.3235098909703992, 1.078620642313743], [-0.47377566927207027, 1.016634127712395], [-0.5321962810997155, 0.8348888326409087], [-0.4416478065433999, 0.8358613515791913], [-0.32091650713497905, 0.8371580434969014], [-0.20018520772655818, 0.8384547354146115], [-0.07945390831813728, 0.8397514273323216], [0.40379546229497376, 0.8147553701510567]], "nose_tip": [[-0.4952058236796323, 0.20137368372612663], [-0.37479869725063897, 0.23285320049594194], [-0.25439157082164565, 0.26433271726575724], [-0.07264627575015926, 0.20591210543811198], [0.07891619446922188, 0.14716732063103916]], "right_eyebrow": [[0.15808387698022874, -1.6027881748322084], [0.46153299039841855, -1.7504605692984592], [0.8246994075619637, -1.8371189681016447], [1.1563863079556935, -1.8033702404758365], [1.4562695186001808, -1.6190315615689301]], "transform": {"center": [128.33333333333334, 166.15277777777777], "scale": 33.12951430921071, "angle": -0.01073989982583955}}], "embedding": [[-0.1015278697013855, 0.13843028247356415, 0.017889879643917084, -0.14156822860240936, -0.12930823862552643, 0.005763009190559387, -0.09406350553035736, -0.13198930025100708, 0.15955336391925812, -0.17391805350780487, 0.19003185629844666, -0.10899236053228378, -0.2709636092185974, -0.008454550057649612, -0.11408549547195435, 0.27331626415252686, -0.21511530876159668, -0.21632058918476105, -0.07904259860515594, 0.004175050184130669, 0.040325313806533813, 0.029838085174560547, -0.0998886451125145, 0.05665788799524307, -0.07698779553174973, -0.32661065459251404, -0.0505983941257, 0.04714981094002724, 0.013839864172041416, -0.05245795100927353, -0.046736977994441986, 0.0453956201672554, -0.18737082183361053, -0.009095720946788788, 0.06358037143945694, 0.2334851771593094, -0.0314427874982357, -0.1926468163728714, 0.10815653949975967, 0.0218440480530262, -0.28045713901519775, -0.0039265211671590805, 0.06925053894519806, 0.329216331243515, 0.2038043737411499, -0.07392706722021103, 0.005156924948096275, -0.15692877769470215, 0.0989404171705246, -0.2614028751850128, 0.020706497132778168, 0.12792301177978516, 0.05535329505801201, 0.12023264169692993, -0.030780112370848656, -0.1655030995607376, 0.08692512661218643, 0.16184505820274353, -0.18687410652637482, -0.09691845625638962, 0.16484420001506805, -0.15416589379310608, -0.003643617033958435, -0.1163058802485466, 0.2097049206495285, 0.14178767800331116, -0.10621272027492523, -0.23434807360172272, 0.1618613451719284, -0.18061760067939758, -0.067599356174469, -0.02979794517159462, -0.08386599272489548, -0.14500924944877625, -0.31581392884254456, -0.003233823925256729, 0.3115319311618805, 0.2188253402709961, -0.16249898076057434, 0.09429414570331573, 0.008470523171126842, 0.044403720647096634, 0.1331556737422943, 0.1795618087053299, 0.018471362069249153, 0.086295485496521, -0.1287534385919571, 0.05828773230314255, 0.2418426126241684, -0.07975335419178009, 0.018235713243484497, 0.22306664288043976, 0.028940904885530472, -0.060778941959142685, 0.07900264859199524, 0.047709621489048004, -0.10656224936246872, 0.04766857624053955, -0.17201489210128784, -0.015591006726026535, 0.02810918353497982, -0.01545044407248497, 0.0388002023100853, 0.13343395292758942, -0.13037140667438507, 0.17689046263694763, -0.0007301289588212967, 0.023009013384580612, 0.028049655258655548, -0.09297671914100647, -0.005137905478477478, -0.08443938195705414, 0.1513974368572235, -0.18098758161067963, 0.1337336301803589, 0.1591326743364334, 0.10550040751695633, 0.16816695034503937, 0.15032634139060974, 0.1119765043258667, 0.014272069558501244, -0.07790720462799072, -0.19157788157463074, -0.0248897485435009, 0.022281475365161896, 0.013628433458507061, 0.08459246158599854, 0.054585132747888565]]},
"000091": {"landmarks": [{"right_eyebrow": [[0.25932315632892955, -1.237319911194496], [0.6191722496747403, -1.3223525291498042], [0.9786347033828143, -1.3774943825690622], [1.3676012819892014, -1.4023588318145337], [1.7251305375085912, -1.3080468625535417]], "right_eye": [[0.49574279515317204, -1.024991442340251], [0.6770205805581562, -1.1721254271940804], [0.9464241010203435, -1.198536434990499], [1.1541128942217462, -1.0762668993821412], [0.9736083880922357, -0.988914443600412], [0.7045915072677854, -0.9923942003400434]], "chin": [[-1.8908786920779883, -1.414611787791797], [-1.8380566764851511, -0.8758047468674229], [-1.7553438963562638, -0.336611066305312], [-1.7021352411256896, 0.1723052100830121], [-1.5891450568230154, 0.6819947657468098], [-1.2960370060285675, 1.1342226301649283], [-0.9124833823504958, 1.5278288844241574], [-0.49865235449863726, 1.8919310137850733], [0.008330723701002778, 1.9881761812347492], [0.5176336397270638, 1.9050767614681252], [1.000525547956706, 1.5525738212393139], [1.4535266916502985, 1.199684241372766], [1.8180154606489507, 0.7559624489848574], [1.9744287968084637, 0.219861885524641], [2.0116657144615133, -0.34767600102257273], [2.1086841611866634, -0.9144406082943128], [2.1761984830134993, -1.5114826197398397]], "top_lip": [[-0.6928087603792514, 0.7234847194149645], [-0.48280012935142763, 0.6664096678070223], [-0.24328737342529058, 0.6396120203728667], [-0.034825300948414004, 0.7021000269091245], [0.14490592590562298, 0.6745291001994954], [0.3836454025562863, 0.70751298183744], [0.6518890041052628, 0.7707742676491713], [0.5319393063233261, 0.7991184736342741], [0.1433593673546757, 0.7940921583436954], [-0.035985219861624465, 0.7917723205172745], [-0.24483393197623785, 0.7591750785170668], [-0.5736323418727881, 0.7549220425019618]], "left_eyebrow": [[-1.6831898988765854, -1.2923422521834393], [-1.412626459501188, -1.408425553588008], [-1.0539372850685875, -1.403785877935166], [-0.6960213899114609, -1.3393646732102242], [-0.33849213439207104, -1.2450527039492323]], "bottom_lip": [[0.6518890041052628, 0.7707742676491713], [0.410056410352705, 0.976916502299627], [0.14026625025278114, 1.0332182746320957], [-0.06896910149956906, 1.030511797167938], [-0.27781781361418245, 0.9979145551677303], [-0.486279886091059, 0.9354265486314725], [-0.6928087603792514, 0.7234847194149645], [-0.5736323418727881, 0.7549220425019618], [-0.24483393197623785, 0.7591750785170668], [-0.0658759843976745, 0.7913856808795378], [0.1433593673546757, 0.7940921583436954], [0.5319393063233261, 0.7991184736342741]], "transform": {"scale": 33.45235117869469, "center": [125.86111111111111, 163.5], "angle": -0.012934365586671447}, "nose_bridge": [[-0.01278684159741525, -1.0016735516457271], [-0.017426517250257095, -0.6429843772131267], [-0.022452832540835757, -0.25440443824447634], [-0.027092508193677603, 0.10428473618812395]], "left_eye": [[-1.176980099952419, -1.136315555661663], [-0.9665848292868583, -1.2232813718056557], [-0.727845352636195, -1.190297490167711], [-0.5205431990725289, -1.0381371900233032], [-0.7600559549986659, -1.0113395425891476], [-0.9987954316493295, -1.0443234242270922]], "nose_tip": [[-0.3873282411772252, 0.2192081186794822], [-0.20914357287413549, 0.3112002501140532], [-0.030572264933308984, 0.3733016170125742], [0.17943636609451485, 0.3162265654046319], [0.3599408722240255, 0.2288741096229027]]}], "embedding": [[-0.1102110892534256, 0.09516645222902298, 0.023083072155714035, -0.13382795453071594, -0.1679643988609314, 0.078953817486763, -0.05482190474867821, -0.05136796087026596, 0.16214963793754578, -0.061718910932540894, 0.19336041808128357, 0.08853746950626373, -0.17884588241577148, -0.0993792712688446, -0.03348686918616295, 0.1497882604598999, -0.1797260046005249, -0.12925276160240173, -0.04088030382990837, -0.12751834094524384, -0.018877878785133362, 0.030428459867835045, -0.05551370605826378, 0.07288597524166107, -0.19857650995254517, -0.1863778680562973, -0.03791017830371857, -0.08726673573255539, -0.03933204710483551, -0.17211532592773438, 0.06969836354255676, 0.06294801831245422, -0.17015618085861206, 0.00017046555876731873, -0.04020402580499649, 0.05934621021151543, -0.1394624561071396, -0.019375324249267578, 0.18912474811077118, 0.10220305621623993, -0.11119452863931656, 0.028747648000717163, 0.03349202498793602, 0.28538739681243896, 0.2688170373439789, 0.018717927858233452, 0.01397845707833767, -0.025948837399482727, 0.22550614178180695, -0.34369710087776184, 0.08279909193515778, 0.1201111227273941, 0.07566016912460327, 0.020048905164003372, 0.11904429644346237, -0.18147516250610352, -0.01061435416340828, 0.20015139877796173, -0.23823148012161255, 0.1189611554145813, -0.04622615873813629, -0.08422952890396118, -0.06185966357588768, -0.04540815204381943, 0.18178977072238922, 0.1413080096244812, -0.10741342604160309, -0.19664886593818665, 0.1352248340845108, -0.11931675672531128, -0.11689606308937073, 0.17742189764976501, -0.0752163678407669, -0.21015313267707825, -0.3568509519100189, 0.11966509371995926, 0.3930153250694275, 0.18049240112304688, -0.11017197370529175, 0.024113794788718224, -0.003776613622903824, -0.06779855489730835, 0.04318464919924736, 0.031099438667297363, -0.11096848547458649, -0.09637080132961273, -0.08755476027727127, 0.004613921046257019, 0.14398005604743958, 0.05164433270692825, -0.08723883330821991, 0.25049683451652527, 0.005938529968261719, 0.023229407146573067, -0.023405548185110092, 0.05366017669439316, -0.12056790292263031, 0.03710927814245224, -0.08243753015995026, -0.09389621019363403, 0.06326451152563095, -0.05480245128273964, 0.048095233738422394, 0.10809482634067535, -0.14797161519527435, 0.18452154099941254, -0.06386067718267441, 0.02719276398420334, -0.11626219749450684, -0.04942099004983902, -0.1810826063156128, 0.08385159820318222, 0.178480863571167, -0.3291514217853546, 0.17525051534175873, 0.13022243976593018, 0.008375151082873344, 0.10820293426513672, 0.16958273947238922, -0.029738668352365494, -0.01260500866919756, -0.04664865508675575, -0.12518106400966644, -0.022500084713101387, 0.08374971151351929, -0.07982582598924637, 0.11556439846754074, 0.061699140816926956]], "url": "http://i.imgur.com/LOxz7ZB.jpg"},
"000092": {"url": "http://i.imgur.com/V9TCz10.jpg", "landmarks": [{"right_eyebrow": [[0.46795314721921266, -1.4634082542103373], [0.8048526568366666, -1.5846562675798224], [1.1109592727163038, -1.6448246938899327], [1.447251341834248, -1.5825302258315377], [1.6299839025961151, -1.3371994767615205]], "bottom_lip": [[0.705792130128607, 0.6175497893049869], [0.4905455942136451, 0.9533356580066729], [0.2761089789646963, 1.0443982181378513], [0.06187484388225092, 1.0742799511264032], [-0.12166763754562947, 1.0736725106268932], [-0.4271668129257568, 0.9502984555091231], [-0.7626489613776876, 0.6432806788802208], [-0.6403885471756856, 0.6742760527845408], [-0.12095895696286788, 0.8595396156276994], [0.06258352446501252, 0.8601470561272093], [0.24622724597614457, 0.8301640830554059], [0.5526375821055368, 0.6782244160313555]], "nose_bridge": [[0.16093537059031046, -1.1279261057584065], [0.19031090316260396, -0.760739902819394], [0.21978767581814912, -0.42414411345169495], [0.24926444847369428, -0.08754832408399595]], "top_lip": [[-0.7626489613776876, 0.6432806788802208], [-0.3953615183554235, 0.5833147327366138], [-0.0893561425590379, 0.5537367199978172], [0.09398385870233918, 0.6155249876399538], [0.2776275802134712, 0.5855420145681504], [0.49176047521266497, 0.586250695150912], [0.705792130128607, 0.6175497893049869], [0.5526375821055368, 0.6782244160313555], [0.2772226198804646, 0.7079036688534041], [0.09357889836933254, 0.7378866419252075], [-0.12045275654660959, 0.7065875477711325], [-0.6403885471756856, 0.6742760527845408]], "left_eye": [[-1.2466286140231122, -1.010221495302729], [-1.001399105036347, -1.1623636424932828], [-0.7259841428112747, -1.1920428953153315], [-0.5430491018829043, -1.007892973387941], [-0.7573844770486013, -0.9474208268280758], [-1.032698199190422, -0.9483319875773407]], "right_eye": [[0.5582057866843779, -1.0042483303908811], [0.7729461221830817, -1.1870821312360003], [1.0482598443249023, -1.1861709704867351], [1.231397365419776, -1.0632018757019717], [1.0475511637421406, -0.9720380754875413], [0.8028278551716335, -0.9728479961535546]], "nose_tip": [[-0.21009795551226498, 0.06388514252379617], [0.0038324593204255037, 0.12577465024918458], [0.1870712204985509, 0.21815333146263466], [0.34022576852162123, 0.15747870473626618], [0.46278990297337813, 0.09670283792664604]], "transform": {"center": [122.86111111111111, 165.88888888888889], "scale": 32.68980071807802, "angle": -0.0033095241876840253}, "left_eyebrow": [[-1.6735782829392283, -1.4093142328953263], [-1.3670667067265845, -1.59184431349069], [-0.9997792637043206, -1.6518102596342972], [-0.602205127360498, -1.6199037249807122], [-0.23562636492099545, -1.4657367761251254]], "chin": [[-2.195336395066834, -0.890998
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment