Skip to content

Instantly share code, notes, and snippets.

@micahstubbs
Last active June 14, 2016 22:32
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 micahstubbs/42b1361b49ed2cc4e0ae to your computer and use it in GitHub Desktop.
Save micahstubbs/42b1361b49ed2cc4e0ae to your computer and use it in GitHub Desktop.
Correlation Matrix II
license: CC0-1.0

This example adds labels for the index, row, and column of the scatterplot matrix to help reason about the grid layout. I wanted this example to maintain the color-by-diagonal pattern. After labeling the grid cells and some experimentation, I realized that

var row = Math.floor(i % rows);
var col = Math.floor(i / rows);
colors(row + col)

would generate the pattern I was looking for.

When a measure intersects with itself, this example shows the name of that measure in the style of the pairs plot implemented in the R package ggplot2.

Forked from Correlation Matrix I by micahstubbs

Originally inspired by the Simple Correlation Matrix block from emeeks

[
{
"id":1,
"carat":0.23,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.5,
"table":55,
"price":326,
"x":3.95,
"y":3.98,
"z":2.43
},
{
"id":2,
"carat":0.21,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.8,
"table":61,
"price":326,
"x":3.89,
"y":3.84,
"z":2.31
},
{
"id":3,
"carat":0.23,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":56.9,
"table":65,
"price":327,
"x":4.05,
"y":4.07,
"z":2.31
},
{
"id":4,
"carat":0.29,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":62.4,
"table":58,
"price":334,
"x":4.2,
"y":4.23,
"z":2.63
},
{
"id":5,
"carat":0.31,
"cut":"Good",
"color":"J",
"clarity":"SI2",
"depth":63.3,
"table":58,
"price":335,
"x":4.34,
"y":4.35,
"z":2.75
},
{
"id":6,
"carat":0.24,
"cut":"Very Good",
"color":"J",
"clarity":"VVS2",
"depth":62.8,
"table":57,
"price":336,
"x":3.94,
"y":3.96,
"z":2.48
},
{
"id":7,
"carat":0.24,
"cut":"Very Good",
"color":"I",
"clarity":"VVS1",
"depth":62.3,
"table":57,
"price":336,
"x":3.95,
"y":3.98,
"z":2.47
},
{
"id":8,
"carat":0.26,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":337,
"x":4.07,
"y":4.11,
"z":2.53
},
{
"id":9,
"carat":0.22,
"cut":"Fair",
"color":"E",
"clarity":"VS2",
"depth":65.1,
"table":61,
"price":337,
"x":3.87,
"y":3.78,
"z":2.49
},
{
"id":10,
"carat":0.23,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":59.4,
"table":61,
"price":338,
"x":4,
"y":4.05,
"z":2.39
},
{
"id":11,
"carat":0.3,
"cut":"Good",
"color":"J",
"clarity":"SI1",
"depth":64,
"table":55,
"price":339,
"x":4.25,
"y":4.28,
"z":2.73
},
{
"id":12,
"carat":0.23,
"cut":"Ideal",
"color":"J",
"clarity":"VS1",
"depth":62.8,
"table":56,
"price":340,
"x":3.93,
"y":3.9,
"z":2.46
},
{
"id":13,
"carat":0.22,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":60.4,
"table":61,
"price":342,
"x":3.88,
"y":3.84,
"z":2.33
},
{
"id":14,
"carat":0.31,
"cut":"Ideal",
"color":"J",
"clarity":"SI2",
"depth":62.2,
"table":54,
"price":344,
"x":4.35,
"y":4.37,
"z":2.71
},
{
"id":15,
"carat":0.2,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.2,
"table":62,
"price":345,
"x":3.79,
"y":3.75,
"z":2.27
},
{
"id":16,
"carat":0.32,
"cut":"Premium",
"color":"E",
"clarity":"I1",
"depth":60.9,
"table":58,
"price":345,
"x":4.38,
"y":4.42,
"z":2.68
},
{
"id":17,
"carat":0.3,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":62,
"table":54,
"price":348,
"x":4.31,
"y":4.34,
"z":2.68
},
{
"id":18,
"carat":0.3,
"cut":"Good",
"color":"J",
"clarity":"SI1",
"depth":63.4,
"table":54,
"price":351,
"x":4.23,
"y":4.29,
"z":2.7
},
{
"id":19,
"carat":0.3,
"cut":"Good",
"color":"J",
"clarity":"SI1",
"depth":63.8,
"table":56,
"price":351,
"x":4.23,
"y":4.26,
"z":2.71
},
{
"id":20,
"carat":0.3,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":62.7,
"table":59,
"price":351,
"x":4.21,
"y":4.27,
"z":2.66
},
{
"id":21,
"carat":0.3,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":63.3,
"table":56,
"price":351,
"x":4.26,
"y":4.3,
"z":2.71
},
{
"id":22,
"carat":0.23,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.8,
"table":55,
"price":352,
"x":3.85,
"y":3.92,
"z":2.48
},
{
"id":23,
"carat":0.23,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61,
"table":57,
"price":353,
"x":3.94,
"y":3.96,
"z":2.41
},
{
"id":24,
"carat":0.31,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":59.4,
"table":62,
"price":353,
"x":4.39,
"y":4.43,
"z":2.62
},
{
"id":25,
"carat":0.31,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":58.1,
"table":62,
"price":353,
"x":4.44,
"y":4.47,
"z":2.59
},
{
"id":26,
"carat":0.23,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":60.4,
"table":58,
"price":354,
"x":3.97,
"y":4.01,
"z":2.41
},
{
"id":27,
"carat":0.24,
"cut":"Premium",
"color":"I",
"clarity":"VS1",
"depth":62.5,
"table":57,
"price":355,
"x":3.97,
"y":3.94,
"z":2.47
},
{
"id":28,
"carat":0.3,
"cut":"Very Good",
"color":"J",
"clarity":"VS2",
"depth":62.2,
"table":57,
"price":357,
"x":4.28,
"y":4.3,
"z":2.67
},
{
"id":29,
"carat":0.23,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":60.5,
"table":61,
"price":357,
"x":3.96,
"y":3.97,
"z":2.4
},
{
"id":30,
"carat":0.23,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60.9,
"table":57,
"price":357,
"x":3.96,
"y":3.99,
"z":2.42
},
{
"id":31,
"carat":0.23,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60,
"table":57,
"price":402,
"x":4,
"y":4.03,
"z":2.41
},
{
"id":32,
"carat":0.23,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":59.8,
"table":57,
"price":402,
"x":4.04,
"y":4.06,
"z":2.42
},
{
"id":33,
"carat":0.23,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":60.7,
"table":59,
"price":402,
"x":3.97,
"y":4.01,
"z":2.42
},
{
"id":34,
"carat":0.23,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":59.5,
"table":58,
"price":402,
"x":4.01,
"y":4.06,
"z":2.4
},
{
"id":35,
"carat":0.23,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":61.9,
"table":58,
"price":402,
"x":3.92,
"y":3.96,
"z":2.44
},
{
"id":36,
"carat":0.23,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":58.2,
"table":59,
"price":402,
"x":4.06,
"y":4.08,
"z":2.37
},
{
"id":37,
"carat":0.23,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":64.1,
"table":59,
"price":402,
"x":3.83,
"y":3.85,
"z":2.46
},
{
"id":38,
"carat":0.31,
"cut":"Good",
"color":"H",
"clarity":"SI1",
"depth":64,
"table":54,
"price":402,
"x":4.29,
"y":4.31,
"z":2.75
},
{
"id":39,
"carat":0.26,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":60.8,
"table":59,
"price":403,
"x":4.13,
"y":4.16,
"z":2.52
},
{
"id":40,
"carat":0.33,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.8,
"table":55,
"price":403,
"x":4.49,
"y":4.51,
"z":2.78
},
{
"id":41,
"carat":0.33,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.2,
"table":56,
"price":403,
"x":4.49,
"y":4.5,
"z":2.75
},
{
"id":42,
"carat":0.33,
"cut":"Ideal",
"color":"J",
"clarity":"SI1",
"depth":61.1,
"table":56,
"price":403,
"x":4.49,
"y":4.55,
"z":2.76
},
{
"id":43,
"carat":0.26,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":65.2,
"table":56,
"price":403,
"x":3.99,
"y":4.02,
"z":2.61
},
{
"id":44,
"carat":0.26,
"cut":"Good",
"color":"D",
"clarity":"VS1",
"depth":58.4,
"table":63,
"price":403,
"x":4.19,
"y":4.24,
"z":2.46
},
{
"id":45,
"carat":0.32,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.1,
"table":56,
"price":403,
"x":4.34,
"y":4.37,
"z":2.75
},
{
"id":46,
"carat":0.29,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":62.4,
"table":58,
"price":403,
"x":4.24,
"y":4.26,
"z":2.65
},
{
"id":47,
"carat":0.32,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":61.8,
"table":55,
"price":403,
"x":4.35,
"y":4.42,
"z":2.71
},
{
"id":48,
"carat":0.32,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.8,
"table":56,
"price":403,
"x":4.36,
"y":4.38,
"z":2.79
},
{
"id":49,
"carat":0.25,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.3,
"table":60,
"price":404,
"x":4,
"y":4.03,
"z":2.54
},
{
"id":50,
"carat":0.29,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":60.7,
"table":60,
"price":404,
"x":4.33,
"y":4.37,
"z":2.64
},
{
"id":51,
"carat":0.24,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":60.9,
"table":61,
"price":404,
"x":4.02,
"y":4.03,
"z":2.45
},
{
"id":52,
"carat":0.23,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.9,
"table":54,
"price":404,
"x":3.93,
"y":3.95,
"z":2.44
},
{
"id":53,
"carat":0.32,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":60.9,
"table":55,
"price":404,
"x":4.45,
"y":4.48,
"z":2.72
},
{
"id":54,
"carat":0.22,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.6,
"table":58,
"price":404,
"x":3.93,
"y":3.89,
"z":2.41
},
{
"id":55,
"carat":0.22,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":59.3,
"table":62,
"price":404,
"x":3.91,
"y":3.88,
"z":2.31
},
{
"id":56,
"carat":0.3,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61,
"table":59,
"price":405,
"x":4.3,
"y":4.33,
"z":2.63
},
{
"id":57,
"carat":0.3,
"cut":"Premium",
"color":"J",
"clarity":"SI2",
"depth":59.3,
"table":61,
"price":405,
"x":4.43,
"y":4.38,
"z":2.61
},
{
"id":58,
"carat":0.3,
"cut":"Very Good",
"color":"I",
"clarity":"SI1",
"depth":62.6,
"table":57,
"price":405,
"x":4.25,
"y":4.28,
"z":2.67
},
{
"id":59,
"carat":0.3,
"cut":"Very Good",
"color":"I",
"clarity":"SI1",
"depth":63,
"table":57,
"price":405,
"x":4.28,
"y":4.32,
"z":2.71
},
{
"id":60,
"carat":0.3,
"cut":"Good",
"color":"I",
"clarity":"SI1",
"depth":63.2,
"table":55,
"price":405,
"x":4.25,
"y":4.29,
"z":2.7
},
{
"id":61,
"carat":0.35,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":60.9,
"table":57,
"price":552,
"x":4.54,
"y":4.59,
"z":2.78
},
{
"id":62,
"carat":0.3,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.6,
"table":59,
"price":552,
"x":4.23,
"y":4.27,
"z":2.66
},
{
"id":63,
"carat":0.3,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":552,
"x":4.29,
"y":4.32,
"z":2.69
},
{
"id":64,
"carat":0.3,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.1,
"table":56,
"price":552,
"x":4.3,
"y":4.33,
"z":2.68
},
{
"id":65,
"carat":0.42,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":61.5,
"table":59,
"price":552,
"x":4.78,
"y":4.84,
"z":2.96
},
{
"id":66,
"carat":0.28,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.4,
"table":56,
"price":553,
"x":4.19,
"y":4.22,
"z":2.58
},
{
"id":67,
"carat":0.32,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":62,
"table":55.3,
"price":553,
"x":4.39,
"y":4.42,
"z":2.73
},
{
"id":68,
"carat":0.31,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":63.3,
"table":57,
"price":553,
"x":4.33,
"y":4.3,
"z":2.73
},
{
"id":69,
"carat":0.31,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":61.8,
"table":58,
"price":553,
"x":4.35,
"y":4.32,
"z":2.68
},
{
"id":70,
"carat":0.24,
"cut":"Premium",
"color":"E",
"clarity":"VVS1",
"depth":60.7,
"table":58,
"price":553,
"x":4.01,
"y":4.03,
"z":2.44
},
{
"id":71,
"carat":0.24,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":61.5,
"table":60,
"price":553,
"x":3.97,
"y":4,
"z":2.45
},
{
"id":72,
"carat":0.3,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63.1,
"table":56,
"price":554,
"x":4.29,
"y":4.27,
"z":2.7
},
{
"id":73,
"carat":0.3,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.9,
"table":59,
"price":554,
"x":4.28,
"y":4.24,
"z":2.68
},
{
"id":74,
"carat":0.3,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":554,
"x":4.29,
"y":4.25,
"z":2.67
},
{
"id":75,
"carat":0.3,
"cut":"Good",
"color":"H",
"clarity":"SI1",
"depth":63.7,
"table":57,
"price":554,
"x":4.28,
"y":4.26,
"z":2.72
},
{
"id":76,
"carat":0.26,
"cut":"Very Good",
"color":"F",
"clarity":"VVS2",
"depth":59.2,
"table":60,
"price":554,
"x":4.19,
"y":4.22,
"z":2.49
},
{
"id":77,
"carat":0.26,
"cut":"Very Good",
"color":"E",
"clarity":"VVS2",
"depth":59.9,
"table":58,
"price":554,
"x":4.15,
"y":4.23,
"z":2.51
},
{
"id":78,
"carat":0.26,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":62.4,
"table":54,
"price":554,
"x":4.08,
"y":4.13,
"z":2.56
},
{
"id":79,
"carat":0.26,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":62.8,
"table":60,
"price":554,
"x":4.01,
"y":4.05,
"z":2.53
},
{
"id":80,
"carat":0.26,
"cut":"Very Good",
"color":"E",
"clarity":"VVS1",
"depth":62.6,
"table":59,
"price":554,
"x":4.06,
"y":4.09,
"z":2.55
},
{
"id":81,
"carat":0.26,
"cut":"Very Good",
"color":"E",
"clarity":"VVS1",
"depth":63.4,
"table":59,
"price":554,
"x":4,
"y":4.04,
"z":2.55
},
{
"id":82,
"carat":0.26,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":62.1,
"table":60,
"price":554,
"x":4.03,
"y":4.12,
"z":2.53
},
{
"id":83,
"carat":0.26,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.9,
"table":58,
"price":554,
"x":4.02,
"y":4.06,
"z":2.54
},
{
"id":84,
"carat":0.38,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.6,
"table":56,
"price":554,
"x":4.65,
"y":4.67,
"z":2.87
},
{
"id":85,
"carat":0.26,
"cut":"Good",
"color":"E",
"clarity":"VVS1",
"depth":57.9,
"table":60,
"price":554,
"x":4.22,
"y":4.25,
"z":2.45
},
{
"id":86,
"carat":0.24,
"cut":"Premium",
"color":"G",
"clarity":"VVS1",
"depth":62.3,
"table":59,
"price":554,
"x":3.95,
"y":3.92,
"z":2.45
},
{
"id":87,
"carat":0.24,
"cut":"Premium",
"color":"H",
"clarity":"VVS1",
"depth":61.2,
"table":58,
"price":554,
"x":4.01,
"y":3.96,
"z":2.44
},
{
"id":88,
"carat":0.24,
"cut":"Premium",
"color":"H",
"clarity":"VVS1",
"depth":60.8,
"table":59,
"price":554,
"x":4.02,
"y":4,
"z":2.44
},
{
"id":89,
"carat":0.24,
"cut":"Premium",
"color":"H",
"clarity":"VVS2",
"depth":60.7,
"table":58,
"price":554,
"x":4.07,
"y":4.04,
"z":2.46
},
{
"id":90,
"carat":0.32,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":62.9,
"table":58,
"price":554,
"x":4.35,
"y":4.33,
"z":2.73
},
{
"id":91,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":2757,
"x":5.7,
"y":5.72,
"z":3.57
},
{
"id":92,
"carat":0.86,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":55.1,
"table":69,
"price":2757,
"x":6.45,
"y":6.33,
"z":3.52
},
{
"id":93,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.6,
"table":56,
"price":2757,
"x":5.7,
"y":5.67,
"z":3.5
},
{
"id":94,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.4,
"table":57,
"price":2759,
"x":5.68,
"y":5.73,
"z":3.56
},
{
"id":95,
"carat":0.78,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":63.8,
"table":56,
"price":2759,
"x":5.81,
"y":5.85,
"z":3.72
},
{
"id":96,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":57.5,
"table":58,
"price":2759,
"x":5.85,
"y":5.9,
"z":3.38
},
{
"id":97,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":59.4,
"table":62,
"price":2759,
"x":5.71,
"y":5.76,
"z":3.4
},
{
"id":98,
"carat":0.96,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":66.3,
"table":62,
"price":2759,
"x":6.27,
"y":5.95,
"z":4.07
},
{
"id":99,
"carat":0.73,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61.6,
"table":59,
"price":2760,
"x":5.77,
"y":5.78,
"z":3.56
},
{
"id":100,
"carat":0.8,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":61.5,
"table":58,
"price":2760,
"x":5.97,
"y":5.93,
"z":3.66
},
{
"id":101,
"carat":0.75,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.2,
"table":56,
"price":2760,
"x":5.8,
"y":5.75,
"z":3.65
},
{
"id":102,
"carat":0.75,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.9,
"table":54,
"price":2760,
"x":6,
"y":5.96,
"z":3.58
},
{
"id":103,
"carat":0.74,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":2760,
"x":5.8,
"y":5.85,
"z":3.59
},
{
"id":104,
"carat":0.75,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.7,
"table":58,
"price":2760,
"x":5.85,
"y":5.79,
"z":3.59
},
{
"id":105,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62.9,
"table":56,
"price":2760,
"x":5.94,
"y":5.87,
"z":3.72
},
{
"id":106,
"carat":0.75,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.2,
"table":55,
"price":2760,
"x":5.87,
"y":5.8,
"z":3.63
},
{
"id":107,
"carat":0.8,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":63,
"table":59,
"price":2760,
"x":5.9,
"y":5.81,
"z":3.69
},
{
"id":108,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"VVS2",
"depth":62.3,
"table":55,
"price":2761,
"x":5.77,
"y":5.81,
"z":3.61
},
{
"id":109,
"carat":0.81,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":58.8,
"table":57,
"price":2761,
"x":6.14,
"y":6.11,
"z":3.6
},
{
"id":110,
"carat":0.59,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62,
"table":55,
"price":2761,
"x":5.38,
"y":5.43,
"z":3.35
},
{
"id":111,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":61.4,
"table":57,
"price":2761,
"x":5.96,
"y":6,
"z":3.67
},
{
"id":112,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.2,
"table":56,
"price":2761,
"x":5.8,
"y":5.84,
"z":3.62
},
{
"id":113,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":63,
"table":58,
"price":2761,
"x":6.16,
"y":6.12,
"z":3.87
},
{
"id":114,
"carat":0.74,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":62.2,
"table":59,
"price":2762,
"x":5.73,
"y":5.82,
"z":3.59
},
{
"id":115,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":2762,
"x":5.77,
"y":5.74,
"z":3.6
},
{
"id":116,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.7,
"table":53,
"price":2762,
"x":5.8,
"y":5.75,
"z":3.62
},
{
"id":117,
"carat":0.8,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":61.7,
"table":58,
"price":2762,
"x":5.98,
"y":5.94,
"z":3.68
},
{
"id":118,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":62.4,
"table":54,
"price":2762,
"x":5.72,
"y":5.76,
"z":3.58
},
{
"id":119,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":60.7,
"table":58,
"price":2762,
"x":5.73,
"y":5.76,
"z":3.49
},
{
"id":120,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":59.9,
"table":59,
"price":2762,
"x":6.01,
"y":6.07,
"z":3.62
},
{
"id":121,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.3,
"table":56,
"price":2762,
"x":5.73,
"y":5.69,
"z":3.56
},
{
"id":122,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.3,
"table":54,
"price":2762,
"x":5.8,
"y":5.83,
"z":3.62
},
{
"id":123,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":61.7,
"table":63,
"price":2762,
"x":5.64,
"y":5.61,
"z":3.47
},
{
"id":124,
"carat":0.7,
"cut":"Fair",
"color":"F",
"clarity":"VS2",
"depth":64.5,
"table":57,
"price":2762,
"x":5.57,
"y":5.53,
"z":3.58
},
{
"id":125,
"carat":0.7,
"cut":"Fair",
"color":"F",
"clarity":"VS2",
"depth":65.3,
"table":55,
"price":2762,
"x":5.63,
"y":5.58,
"z":3.66
},
{
"id":126,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.6,
"table":60,
"price":2762,
"x":5.65,
"y":5.59,
"z":3.46
},
{
"id":127,
"carat":0.91,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2763,
"x":6.09,
"y":5.97,
"z":3.7
},
{
"id":128,
"carat":0.61,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":59.6,
"table":57,
"price":2763,
"x":5.56,
"y":5.58,
"z":3.32
},
{
"id":129,
"carat":0.91,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":64.4,
"table":57,
"price":2763,
"x":6.11,
"y":6.09,
"z":3.93
},
{
"id":130,
"carat":0.91,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":65.7,
"table":60,
"price":2763,
"x":6.03,
"y":5.99,
"z":3.95
},
{
"id":131,
"carat":0.77,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":62,
"table":56,
"price":2763,
"x":5.89,
"y":5.86,
"z":3.64
},
{
"id":132,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.6,
"table":58,
"price":2764,
"x":5.64,
"y":5.68,
"z":3.6
},
{
"id":133,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.9,
"table":59,
"price":2764,
"x":5.69,
"y":5.72,
"z":3.53
},
{
"id":134,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":60,
"price":2765,
"x":5.62,
"y":5.65,
"z":3.53
},
{
"id":135,
"carat":0.77,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61.3,
"table":60,
"price":2765,
"x":5.88,
"y":5.9,
"z":3.61
},
{
"id":136,
"carat":0.63,
"cut":"Premium",
"color":"E",
"clarity":"VVS1",
"depth":60.9,
"table":60,
"price":2765,
"x":5.52,
"y":5.55,
"z":3.37
},
{
"id":137,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60.1,
"table":62,
"price":2765,
"x":5.74,
"y":5.77,
"z":3.46
},
{
"id":138,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":61.8,
"table":59,
"price":2765,
"x":5.69,
"y":5.73,
"z":3.53
},
{
"id":139,
"carat":0.76,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.2,
"table":57,
"price":2765,
"x":5.88,
"y":5.91,
"z":3.61
},
{
"id":140,
"carat":0.64,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.9,
"table":56,
"price":2766,
"x":5.53,
"y":5.56,
"z":3.43
},
{
"id":141,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":60.9,
"table":57,
"price":2766,
"x":5.78,
"y":5.75,
"z":3.51
},
{
"id":142,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":59.8,
"table":56,
"price":2766,
"x":5.89,
"y":5.81,
"z":3.5
},
{
"id":143,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":2767,
"x":5.68,
"y":5.72,
"z":3.52
},
{
"id":144,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60,
"table":57,
"price":2767,
"x":5.8,
"y":5.87,
"z":3.5
},
{
"id":145,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":61.6,
"table":55,
"price":2767,
"x":5.74,
"y":5.76,
"z":3.54
},
{
"id":146,
"carat":0.7,
"cut":"Good",
"color":"H",
"clarity":"VVS2",
"depth":62.1,
"table":64,
"price":2767,
"x":5.62,
"y":5.65,
"z":3.5
},
{
"id":147,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":63.3,
"table":59,
"price":2768,
"x":5.52,
"y":5.61,
"z":3.52
},
{
"id":148,
"carat":0.73,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":60.2,
"table":56,
"price":2768,
"x":5.83,
"y":5.87,
"z":3.52
},
{
"id":149,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":61.1,
"table":58,
"price":2768,
"x":5.66,
"y":5.73,
"z":3.48
},
{
"id":150,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.9,
"table":57,
"price":2768,
"x":5.73,
"y":5.76,
"z":3.5
},
{
"id":151,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":61.7,
"table":59,
"price":2768,
"x":5.71,
"y":5.67,
"z":3.51
},
{
"id":152,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.3,
"table":56,
"price":2769,
"x":5.82,
"y":5.86,
"z":3.57
},
{
"id":153,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":62.5,
"table":60,
"price":2770,
"x":5.65,
"y":5.61,
"z":3.52
},
{
"id":154,
"carat":0.73,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.4,
"table":59,
"price":2770,
"x":5.83,
"y":5.76,
"z":3.56
},
{
"id":155,
"carat":0.76,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":62.9,
"table":57,
"price":2770,
"x":5.79,
"y":5.81,
"z":3.65
},
{
"id":156,
"carat":0.76,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.4,
"table":57,
"price":2770,
"x":5.78,
"y":5.83,
"z":3.62
},
{
"id":157,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":60.7,
"table":56,
"price":2770,
"x":5.77,
"y":5.8,
"z":3.51
},
{
"id":158,
"carat":0.73,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":60.7,
"table":58,
"price":2770,
"x":5.87,
"y":5.82,
"z":3.55
},
{
"id":159,
"carat":0.73,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":61.5,
"table":58,
"price":2770,
"x":5.79,
"y":5.75,
"z":3.55
},
{
"id":160,
"carat":0.73,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":59.9,
"table":57,
"price":2770,
"x":5.92,
"y":5.89,
"z":3.54
},
{
"id":161,
"carat":0.73,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":59.2,
"table":59,
"price":2770,
"x":5.92,
"y":5.87,
"z":3.49
},
{
"id":162,
"carat":0.72,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":60.3,
"table":56,
"price":2771,
"x":5.81,
"y":5.83,
"z":3.51
},
{
"id":163,
"carat":0.73,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.7,
"table":60,
"price":2771,
"x":5.79,
"y":5.82,
"z":3.58
},
{
"id":164,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.9,
"table":57,
"price":2771,
"x":5.73,
"y":5.77,
"z":3.56
},
{
"id":165,
"carat":0.79,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":61.9,
"table":55,
"price":2771,
"x":5.97,
"y":5.92,
"z":3.68
},
{
"id":166,
"carat":0.73,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":60.4,
"table":59,
"price":2772,
"x":5.83,
"y":5.89,
"z":3.54
},
{
"id":167,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":61,
"table":57,
"price":2772,
"x":6.01,
"y":6.03,
"z":3.67
},
{
"id":168,
"carat":0.58,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.5,
"table":55,
"price":2772,
"x":5.39,
"y":5.44,
"z":3.33
},
{
"id":169,
"carat":0.58,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.7,
"table":56,
"price":2772,
"x":5.33,
"y":5.37,
"z":3.3
},
{
"id":170,
"carat":0.71,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":59.2,
"table":61,
"price":2772,
"x":5.8,
"y":5.88,
"z":3.46
},
{
"id":171,
"carat":0.75,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":61.3,
"table":56,
"price":2773,
"x":5.85,
"y":5.89,
"z":3.6
},
{
"id":172,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":58,
"table":62,
"price":2773,
"x":5.87,
"y":5.78,
"z":3.38
},
{
"id":173,
"carat":1.17,
"cut":"Very Good",
"color":"J",
"clarity":"I1",
"depth":60.2,
"table":61,
"price":2774,
"x":6.83,
"y":6.9,
"z":4.13
},
{
"id":174,
"carat":0.6,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":61.7,
"table":55,
"price":2774,
"x":5.41,
"y":5.44,
"z":3.35
},
{
"id":175,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":55,
"price":2774,
"x":5.68,
"y":5.74,
"z":3.58
},
{
"id":176,
"carat":0.83,
"cut":"Good",
"color":"I",
"clarity":"VS2",
"depth":64.6,
"table":54,
"price":2774,
"x":5.85,
"y":5.88,
"z":3.79
},
{
"id":177,
"carat":0.74,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":61.3,
"table":61,
"price":2775,
"x":5.8,
"y":5.84,
"z":3.57
},
{
"id":178,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":63.7,
"table":56.4,
"price":2776,
"x":5.62,
"y":5.69,
"z":3.61
},
{
"id":179,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":58,
"price":2776,
"x":5.74,
"y":5.68,
"z":3.58
},
{
"id":180,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.2,
"table":57,
"price":2776,
"x":5.79,
"y":5.62,
"z":3.55
},
{
"id":181,
"carat":0.54,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":61.6,
"table":56,
"price":2776,
"x":5.25,
"y":5.27,
"z":3.24
},
{
"id":182,
"carat":0.54,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":61.5,
"table":57,
"price":2776,
"x":5.24,
"y":5.26,
"z":3.23
},
{
"id":183,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.8,
"table":56,
"price":2776,
"x":5.72,
"y":5.75,
"z":3.55
},
{
"id":184,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.7,
"table":56,
"price":2776,
"x":5.79,
"y":5.82,
"z":3.53
},
{
"id":185,
"carat":0.72,
"cut":"Good",
"color":"G",
"clarity":"VS2",
"depth":59.7,
"table":60.5,
"price":2776,
"x":5.8,
"y":5.84,
"z":3.47
},
{
"id":186,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.5,
"table":56,
"price":2776,
"x":5.8,
"y":5.76,
"z":3.5
},
{
"id":187,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":62.7,
"table":58,
"price":2777,
"x":5.66,
"y":5.73,
"z":3.57
},
{
"id":188,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.1,
"table":58,
"price":2777,
"x":5.67,
"y":5.7,
"z":3.53
},
{
"id":189,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.8,
"table":57,
"price":2777,
"x":5.64,
"y":5.69,
"z":3.56
},
{
"id":190,
"carat":0.71,
"cut":"Good",
"color":"F",
"clarity":"VS2",
"depth":63.8,
"table":58,
"price":2777,
"x":5.61,
"y":5.64,
"z":3.59
},
{
"id":191,
"carat":0.71,
"cut":"Good",
"color":"F",
"clarity":"VS2",
"depth":57.8,
"table":60,
"price":2777,
"x":5.87,
"y":5.9,
"z":3.4
},
{
"id":192,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.1,
"table":55,
"price":2777,
"x":5.7,
"y":5.67,
"z":3.53
},
{
"id":193,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.1,
"table":60,
"price":2777,
"x":5.71,
"y":5.64,
"z":3.47
},
{
"id":194,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":60,
"table":59,
"price":2777,
"x":5.79,
"y":5.75,
"z":3.46
},
{
"id":195,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.2,
"table":57,
"price":2777,
"x":5.73,
"y":5.68,
"z":3.49
},
{
"id":196,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":59,
"price":2777,
"x":5.67,
"y":5.63,
"z":3.54
},
{
"id":197,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":57,
"price":2777,
"x":5.73,
"y":5.68,
"z":3.48
},
{
"id":198,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":58,
"price":2777,
"x":5.78,
"y":5.72,
"z":3.51
},
{
"id":199,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":57,
"price":2777,
"x":5.76,
"y":5.7,
"z":3.52
},
{
"id":200,
"carat":0.72,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.8,
"table":61,
"price":2777,
"x":5.82,
"y":5.71,
"z":3.56
},
{
"id":201,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":59.9,
"table":63,
"price":2777,
"x":5.76,
"y":5.7,
"z":3.43
},
{
"id":202,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2777,
"x":5.71,
"y":5.68,
"z":3.49
},
{
"id":203,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":60.5,
"table":58,
"price":2777,
"x":5.77,
"y":5.74,
"z":3.48
},
{
"id":204,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":64.1,
"table":59,
"price":2777,
"x":5.64,
"y":5.59,
"z":3.6
},
{
"id":205,
"carat":0.98,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":67.9,
"table":60,
"price":2777,
"x":6.05,
"y":5.97,
"z":4.08
},
{
"id":206,
"carat":0.78,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":62.4,
"table":58,
"price":2777,
"x":5.83,
"y":5.8,
"z":3.63
},
{
"id":207,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.2,
"table":60,
"price":2777,
"x":5.6,
"y":5.51,
"z":3.51
},
{
"id":208,
"carat":0.52,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.3,
"table":55,
"price":2778,
"x":5.19,
"y":5.22,
"z":3.19
},
{
"id":209,
"carat":0.73,
"cut":"Very Good",
"color":"H",
"clarity":"VS2",
"depth":60.8,
"table":56,
"price":2779,
"x":5.82,
"y":5.84,
"z":3.55
},
{
"id":210,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.7,
"table":56,
"price":2779,
"x":5.84,
"y":5.8,
"z":3.59
},
{
"id":211,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":63.6,
"table":57,
"price":2780,
"x":5.61,
"y":5.65,
"z":3.58
},
{
"id":212,
"carat":0.77,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.2,
"table":58,
"price":2780,
"x":5.9,
"y":5.93,
"z":3.62
},
{
"id":213,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.1,
"table":54,
"price":2780,
"x":5.68,
"y":5.72,
"z":3.54
},
{
"id":214,
"carat":0.74,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.5,
"table":55,
"price":2780,
"x":5.81,
"y":5.86,
"z":3.59
},
{
"id":215,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.4,
"table":59,
"price":2780,
"x":5.64,
"y":5.73,
"z":3.49
},
{
"id":216,
"carat":1.01,
"cut":"Premium",
"color":"F",
"clarity":"I1",
"depth":61.8,
"table":60,
"price":2781,
"x":6.39,
"y":6.36,
"z":3.94
},
{
"id":217,
"carat":0.77,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.2,
"table":56,
"price":2781,
"x":5.83,
"y":5.88,
"z":3.64
},
{
"id":218,
"carat":0.78,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.2,
"table":56,
"price":2781,
"x":5.92,
"y":5.99,
"z":3.64
},
{
"id":219,
"carat":0.72,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":60.6,
"table":63,
"price":2782,
"x":5.83,
"y":5.76,
"z":3.51
},
{
"id":220,
"carat":0.53,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":57.5,
"table":64,
"price":2782,
"x":5.34,
"y":5.37,
"z":3.08
},
{
"id":221,
"carat":0.76,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":56,
"price":2782,
"x":5.9,
"y":5.94,
"z":3.63
},
{
"id":222,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":57.2,
"table":62,
"price":2782,
"x":5.81,
"y":5.77,
"z":3.31
},
{
"id":223,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.9,
"table":60,
"price":2782,
"x":5.62,
"y":5.54,
"z":3.51
},
{
"id":224,
"carat":0.75,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":63.1,
"table":58,
"price":2782,
"x":5.78,
"y":5.73,
"z":3.63
},
{
"id":225,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":60.8,
"table":57,
"price":2782,
"x":5.76,
"y":5.75,
"z":3.5
},
{
"id":226,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.7,
"table":59,
"price":2782,
"x":5.73,
"y":5.69,
"z":3.58
},
{
"id":227,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.8,
"table":60,
"price":2782,
"x":5.68,
"y":5.66,
"z":3.56
},
{
"id":228,
"carat":0.84,
"cut":"Fair",
"color":"G",
"clarity":"SI1",
"depth":55.1,
"table":67,
"price":2782,
"x":6.39,
"y":6.2,
"z":3.47
},
{
"id":229,
"carat":0.75,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.4,
"table":59,
"price":2782,
"x":5.88,
"y":5.85,
"z":3.6
},
{
"id":230,
"carat":0.52,
"cut":"Ideal",
"color":"F",
"clarity":"IF",
"depth":62.2,
"table":55,
"price":2783,
"x":5.14,
"y":5.18,
"z":3.21
},
{
"id":231,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":63,
"table":54,
"price":2784,
"x":5.69,
"y":5.73,
"z":3.6
},
{
"id":232,
"carat":0.79,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":63.7,
"table":56,
"price":2784,
"x":5.85,
"y":5.92,
"z":3.75
},
{
"id":233,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":63.6,
"table":58,
"price":2787,
"x":5.66,
"y":5.69,
"z":3.61
},
{
"id":234,
"carat":0.51,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":62,
"table":57,
"price":2787,
"x":5.11,
"y":5.15,
"z":3.18
},
{
"id":235,
"carat":0.64,
"cut":"Ideal",
"color":"D",
"clarity":"VS1",
"depth":61.5,
"table":56,
"price":2787,
"x":5.54,
"y":5.55,
"z":3.41
},
{
"id":236,
"carat":0.7,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":60.5,
"table":60,
"price":2788,
"x":5.74,
"y":5.77,
"z":3.48
},
{
"id":237,
"carat":0.83,
"cut":"Very Good",
"color":"I",
"clarity":"VS1",
"depth":61.1,
"table":60,
"price":2788,
"x":6.07,
"y":6.1,
"z":3.72
},
{
"id":238,
"carat":0.76,
"cut":"Ideal",
"color":"I",
"clarity":"VVS2",
"depth":61.8,
"table":56,
"price":2788,
"x":5.85,
"y":5.87,
"z":3.62
},
{
"id":239,
"carat":0.71,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":63.3,
"table":56,
"price":2788,
"x":5.64,
"y":5.68,
"z":3.58
},
{
"id":240,
"carat":0.77,
"cut":"Good",
"color":"G",
"clarity":"VS1",
"depth":59.4,
"table":64,
"price":2788,
"x":5.97,
"y":5.92,
"z":3.53
},
{
"id":241,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.5,
"table":55,
"price":2788,
"x":5.71,
"y":5.65,
"z":3.55
},
{
"id":242,
"carat":1.01,
"cut":"Fair",
"color":"E",
"clarity":"I1",
"depth":64.5,
"table":58,
"price":2788,
"x":6.29,
"y":6.21,
"z":4.03
},
{
"id":243,
"carat":1.01,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":62.7,
"table":59,
"price":2788,
"x":6.31,
"y":6.22,
"z":3.93
},
{
"id":244,
"carat":0.77,
"cut":"Good",
"color":"F",
"clarity":"SI1",
"depth":64.2,
"table":52,
"price":2789,
"x":5.81,
"y":5.77,
"z":3.72
},
{
"id":245,
"carat":0.76,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.7,
"table":54,
"price":2789,
"x":5.76,
"y":5.85,
"z":3.7
},
{
"id":246,
"carat":0.76,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":60.4,
"table":58,
"price":2789,
"x":5.92,
"y":5.94,
"z":3.58
},
{
"id":247,
"carat":0.76,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.8,
"table":58,
"price":2789,
"x":5.82,
"y":5.86,
"z":3.61
},
{
"id":248,
"carat":1.05,
"cut":"Very Good",
"color":"J",
"clarity":"SI2",
"depth":63.2,
"table":56,
"price":2789,
"x":6.49,
"y":6.45,
"z":4.09
},
{
"id":249,
"carat":0.81,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":61.6,
"table":56,
"price":2789,
"x":5.97,
"y":6.01,
"z":3.69
},
{
"id":250,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.6,
"table":56,
"price":2789,
"x":5.72,
"y":5.75,
"z":3.53
},
{
"id":251,
"carat":0.55,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":60.9,
"table":57,
"price":2789,
"x":5.28,
"y":5.3,
"z":3.22
},
{
"id":252,
"carat":0.81,
"cut":"Good",
"color":"G",
"clarity":"SI2",
"depth":61,
"table":61,
"price":2789,
"x":5.94,
"y":5.99,
"z":3.64
},
{
"id":253,
"carat":0.63,
"cut":"Premium",
"color":"E",
"clarity":"VVS2",
"depth":62.1,
"table":57,
"price":2789,
"x":5.48,
"y":5.41,
"z":3.38
},
{
"id":254,
"carat":0.63,
"cut":"Premium",
"color":"E",
"clarity":"VVS1",
"depth":60.9,
"table":60,
"price":2789,
"x":5.55,
"y":5.52,
"z":3.37
},
{
"id":255,
"carat":0.77,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":61.3,
"table":60,
"price":2789,
"x":5.9,
"y":5.88,
"z":3.61
},
{
"id":256,
"carat":1.05,
"cut":"Fair",
"color":"J",
"clarity":"SI2",
"depth":65.8,
"table":59,
"price":2789,
"x":6.41,
"y":6.27,
"z":4.18
},
{
"id":257,
"carat":0.64,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.3,
"table":56,
"price":2790,
"x":5.54,
"y":5.58,
"z":3.41
},
{
"id":258,
"carat":0.76,
"cut":"Premium",
"color":"I",
"clarity":"VVS1",
"depth":58.8,
"table":59,
"price":2790,
"x":6,
"y":5.94,
"z":3.51
},
{
"id":259,
"carat":0.83,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":55,
"price":2790,
"x":6.02,
"y":6.05,
"z":3.76
},
{
"id":260,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":60.1,
"table":62,
"price":2790,
"x":5.77,
"y":5.74,
"z":3.46
},
{
"id":261,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":61.8,
"table":59,
"price":2790,
"x":5.73,
"y":5.69,
"z":3.53
},
{
"id":262,
"carat":0.87,
"cut":"Very Good",
"color":"I",
"clarity":"SI1",
"depth":63.6,
"table":55.8,
"price":2791,
"x":6.07,
"y":6.1,
"z":3.87
},
{
"id":263,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":56,
"price":2791,
"x":5.74,
"y":5.78,
"z":3.58
},
{
"id":264,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.2,
"table":59,
"price":2792,
"x":5.83,
"y":5.86,
"z":3.46
},
{
"id":265,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.8,
"table":59,
"price":2792,
"x":5.7,
"y":5.75,
"z":3.54
},
{
"id":266,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":55,
"price":2792,
"x":5.72,
"y":5.77,
"z":3.52
},
{
"id":267,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":60,
"price":2792,
"x":5.71,
"y":5.65,
"z":3.53
},
{
"id":268,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":60.7,
"table":60,
"price":2792,
"x":5.78,
"y":5.75,
"z":3.5
},
{
"id":269,
"carat":0.76,
"cut":"Premium",
"color":"H",
"clarity":"VVS2",
"depth":59.6,
"table":57,
"price":2792,
"x":5.91,
"y":5.86,
"z":3.51
},
{
"id":270,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":56,
"price":2792,
"x":5.73,
"y":5.68,
"z":3.55
},
{
"id":271,
"carat":0.79,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":60.6,
"table":57,
"price":2793,
"x":5.98,
"y":6.06,
"z":3.65
},
{
"id":272,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.9,
"table":57,
"price":2793,
"x":5.66,
"y":5.69,
"z":3.57
},
{
"id":273,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":64.1,
"table":55,
"price":2793,
"x":5.6,
"y":5.66,
"z":3.61
},
{
"id":274,
"carat":0.76,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.3,
"table":56,
"price":2793,
"x":5.87,
"y":5.91,
"z":3.61
},
{
"id":275,
"carat":0.73,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":62.7,
"table":55,
"price":2793,
"x":5.72,
"y":5.76,
"z":3.6
},
{
"id":276,
"carat":0.79,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.2,
"table":56,
"price":2794,
"x":5.91,
"y":5.86,
"z":3.72
},
{
"id":277,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":60.7,
"table":56,
"price":2795,
"x":5.81,
"y":5.82,
"z":3.53
},
{
"id":278,
"carat":0.81,
"cut":"Premium",
"color":"I",
"clarity":"VVS2",
"depth":61.9,
"table":60,
"price":2795,
"x":5.91,
"y":5.86,
"z":3.64
},
{
"id":279,
"carat":0.81,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.6,
"table":55,
"price":2795,
"x":5.92,
"y":5.96,
"z":3.72
},
{
"id":280,
"carat":0.72,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":60.7,
"table":60,
"price":2795,
"x":5.74,
"y":5.72,
"z":3.48
},
{
"id":281,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":62,
"table":60,
"price":2795,
"x":5.73,
"y":5.69,
"z":3.54
},
{
"id":282,
"carat":0.72,
"cut":"Premium",
"color":"I",
"clarity":"IF",
"depth":63,
"table":57,
"price":2795,
"x":5.72,
"y":5.7,
"z":3.6
},
{
"id":283,
"carat":0.81,
"cut":"Premium",
"color":"H",
"clarity":"VS2",
"depth":58,
"table":59,
"price":2795,
"x":6.17,
"y":6.13,
"z":3.57
},
{
"id":284,
"carat":0.72,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":62.9,
"table":57,
"price":2795,
"x":5.73,
"y":5.65,
"z":3.58
},
{
"id":285,
"carat":1,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":58.2,
"table":60,
"price":2795,
"x":6.61,
"y":6.55,
"z":3.83
},
{
"id":286,
"carat":0.73,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.2,
"table":58,
"price":2796,
"x":5.7,
"y":5.76,
"z":3.62
},
{
"id":287,
"carat":0.81,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":61.3,
"table":59,
"price":2797,
"x":5.94,
"y":6.01,
"z":3.66
},
{
"id":288,
"carat":0.81,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":60.3,
"table":60,
"price":2797,
"x":6.07,
"y":6.1,
"z":3.67
},
{
"id":289,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.7,
"table":60,
"price":2797,
"x":5.67,
"y":5.71,
"z":3.57
},
{
"id":290,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2797,
"x":5.73,
"y":5.75,
"z":3.52
},
{
"id":291,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.6,
"table":60,
"price":2797,
"x":5.74,
"y":5.69,
"z":3.52
},
{
"id":292,
"carat":0.57,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":61.9,
"table":55,
"price":2797,
"x":5.34,
"y":5.35,
"z":3.31
},
{
"id":293,
"carat":0.51,
"cut":"Ideal",
"color":"D",
"clarity":"VVS1",
"depth":61.7,
"table":56,
"price":2797,
"x":5.12,
"y":5.16,
"z":3.17
},
{
"id":294,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.9,
"table":58,
"price":2797,
"x":5.72,
"y":5.75,
"z":3.55
},
{
"id":295,
"carat":0.74,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.8,
"table":58,
"price":2797,
"x":5.77,
"y":5.81,
"z":3.58
},
{
"id":296,
"carat":0.74,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.6,
"table":56,
"price":2797,
"x":5.81,
"y":5.82,
"z":3.58
},
{
"id":297,
"carat":0.7,
"cut":"Fair",
"color":"G",
"clarity":"VVS1",
"depth":58.8,
"table":66,
"price":2797,
"x":5.81,
"y":5.9,
"z":3.44
},
{
"id":298,
"carat":0.8,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":61,
"table":57,
"price":2797,
"x":6.03,
"y":6.01,
"z":3.67
},
{
"id":299,
"carat":1.01,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":67.4,
"table":60,
"price":2797,
"x":6.19,
"y":6.05,
"z":4.13
},
{
"id":300,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"VS2",
"depth":63.4,
"table":60,
"price":2797,
"x":5.92,
"y":5.82,
"z":3.72
},
{
"id":301,
"carat":0.77,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.5,
"table":59,
"price":2798,
"x":5.87,
"y":5.91,
"z":3.62
},
{
"id":302,
"carat":0.83,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":58,
"table":62,
"price":2799,
"x":6.19,
"y":6.25,
"z":3.61
},
{
"id":303,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.4,
"table":54,
"price":2799,
"x":5.97,
"y":6.02,
"z":3.74
},
{
"id":304,
"carat":0.78,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.9,
"table":57,
"price":2799,
"x":5.91,
"y":5.86,
"z":3.64
},
{
"id":305,
"carat":0.6,
"cut":"Very Good",
"color":"G",
"clarity":"IF",
"depth":61.6,
"table":56,
"price":2800,
"x":5.43,
"y":5.46,
"z":3.35
},
{
"id":306,
"carat":0.9,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":62.2,
"table":59,
"price":2800,
"x":6.07,
"y":6.11,
"z":3.79
},
{
"id":307,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2800,
"x":5.6,
"y":5.66,
"z":3.5
},
{
"id":308,
"carat":0.9,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":61.3,
"table":56,
"price":2800,
"x":6.17,
"y":6.23,
"z":3.8
},
{
"id":309,
"carat":0.83,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2800,
"x":5.99,
"y":6.08,
"z":3.76
},
{
"id":310,
"carat":0.83,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.8,
"table":57,
"price":2800,
"x":6.03,
"y":6.07,
"z":3.74
},
{
"id":311,
"carat":0.83,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":59,
"price":2800,
"x":5.95,
"y":6.02,
"z":3.74
},
{
"id":312,
"carat":0.74,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":62.9,
"table":60,
"price":2800,
"x":5.74,
"y":5.68,
"z":3.59
},
{
"id":313,
"carat":0.79,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.8,
"table":59,
"price":2800,
"x":5.92,
"y":5.95,
"z":3.67
},
{
"id":314,
"carat":0.61,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":62.3,
"table":56,
"price":2800,
"x":5.43,
"y":5.45,
"z":3.39
},
{
"id":315,
"carat":0.76,
"cut":"Fair",
"color":"G",
"clarity":"VS1",
"depth":59,
"table":70,
"price":2800,
"x":5.89,
"y":5.8,
"z":3.46
},
{
"id":316,
"carat":0.96,
"cut":"Ideal",
"color":"F",
"clarity":"I1",
"depth":60.7,
"table":55,
"price":2801,
"x":6.37,
"y":6.41,
"z":3.88
},
{
"id":317,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.5,
"table":55,
"price":2801,
"x":5.8,
"y":5.76,
"z":3.61
},
{
"id":318,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.7,
"table":58,
"price":2801,
"x":5.76,
"y":5.7,
"z":3.59
},
{
"id":319,
"carat":0.75,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":60.4,
"table":57,
"price":2801,
"x":5.93,
"y":5.96,
"z":3.59
},
{
"id":320,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.1,
"table":58,
"price":2801,
"x":5.7,
"y":5.67,
"z":3.53
},
{
"id":321,
"carat":0.71,
"cut":"Good",
"color":"F",
"clarity":"VS2",
"depth":57.8,
"table":60,
"price":2801,
"x":5.9,
"y":5.87,
"z":3.4
},
{
"id":322,
"carat":0.71,
"cut":"Good",
"color":"F",
"clarity":"VS2",
"depth":63.8,
"table":58,
"price":2801,
"x":5.64,
"y":5.61,
"z":3.59
},
{
"id":323,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.8,
"table":57,
"price":2801,
"x":5.69,
"y":5.64,
"z":3.56
},
{
"id":324,
"carat":1.04,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":62.2,
"table":58,
"price":2801,
"x":6.46,
"y":6.41,
"z":4
},
{
"id":325,
"carat":1,
"cut":"Premium",
"color":"J",
"clarity":"SI2",
"depth":62.3,
"table":58,
"price":2801,
"x":6.45,
"y":6.34,
"z":3.98
},
{
"id":326,
"carat":0.87,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":59.9,
"table":58,
"price":2802,
"x":6.19,
"y":6.23,
"z":3.72
},
{
"id":327,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"IF",
"depth":61.9,
"table":54,
"price":2802,
"x":5.22,
"y":5.25,
"z":3.24
},
{
"id":328,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":63,
"table":55,
"price":2802,
"x":5.79,
"y":5.61,
"z":3.59
},
{
"id":329,
"carat":0.72,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.4,
"table":58,
"price":2802,
"x":5.83,
"y":5.7,
"z":3.6
},
{
"id":330,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.9,
"table":58,
"price":2803,
"x":5.63,
"y":5.65,
"z":3.55
},
{
"id":331,
"carat":0.74,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.5,
"table":56,
"price":2803,
"x":5.74,
"y":5.79,
"z":3.66
},
{
"id":332,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":56,
"price":2803,
"x":5.75,
"y":5.71,
"z":3.51
},
{
"id":333,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.6,
"table":54,
"price":2803,
"x":5.84,
"y":5.89,
"z":3.55
},
{
"id":334,
"carat":0.7,
"cut":"Good",
"color":"G",
"clarity":"VS1",
"depth":65.1,
"table":58,
"price":2803,
"x":5.56,
"y":5.59,
"z":3.63
},
{
"id":335,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":2803,
"x":5.7,
"y":5.67,
"z":3.56
},
{
"id":336,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":58,
"table":62,
"price":2803,
"x":5.85,
"y":5.81,
"z":3.38
},
{
"id":337,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":62.4,
"table":61,
"price":2803,
"x":5.7,
"y":5.65,
"z":3.54
},
{
"id":338,
"carat":0.77,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":57,
"price":2803,
"x":5.93,
"y":5.88,
"z":3.62
},
{
"id":339,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":59.9,
"table":60,
"price":2803,
"x":5.81,
"y":5.77,
"z":3.47
},
{
"id":340,
"carat":0.78,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":60.8,
"table":58,
"price":2803,
"x":6.03,
"y":5.95,
"z":3.64
},
{
"id":341,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":63.5,
"table":55,
"price":2803,
"x":5.66,
"y":5.64,
"z":3.59
},
{
"id":342,
"carat":0.91,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.2,
"table":57,
"price":2803,
"x":6.21,
"y":6.15,
"z":3.85
},
{
"id":343,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.8,
"table":58,
"price":2804,
"x":5.62,
"y":5.66,
"z":3.6
},
{
"id":344,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":64,
"table":57,
"price":2804,
"x":5.66,
"y":5.68,
"z":3.63
},
{
"id":345,
"carat":0.8,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":62.5,
"table":56,
"price":2804,
"x":5.88,
"y":5.96,
"z":3.7
},
{
"id":346,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.3,
"table":58,
"price":2804,
"x":5.69,
"y":5.73,
"z":3.56
},
{
"id":347,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.7,
"table":57,
"price":2804,
"x":5.74,
"y":5.77,
"z":3.55
},
{
"id":348,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2804,
"x":5.75,
"y":5.7,
"z":3.56
},
{
"id":349,
"carat":0.82,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.5,
"table":56,
"price":2804,
"x":6.01,
"y":6.08,
"z":3.72
},
{
"id":350,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61,
"table":59,
"price":2804,
"x":5.68,
"y":5.7,
"z":3.47
},
{
"id":351,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.2,
"table":56,
"price":2804,
"x":5.74,
"y":5.77,
"z":3.58
},
{
"id":352,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":54,
"price":2804,
"x":5.77,
"y":5.8,
"z":3.56
},
{
"id":353,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":67.3,
"table":59,
"price":2804,
"x":5.93,
"y":5.84,
"z":3.96
},
{
"id":354,
"carat":0.74,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.7,
"table":58,
"price":2805,
"x":5.85,
"y":5.78,
"z":3.59
},
{
"id":355,
"carat":0.74,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.9,
"table":56,
"price":2805,
"x":5.8,
"y":5.77,
"z":3.58
},
{
"id":356,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.8,
"table":58,
"price":2805,
"x":5.77,
"y":5.81,
"z":3.58
},
{
"id":357,
"carat":0.57,
"cut":"Fair",
"color":"E",
"clarity":"VVS1",
"depth":58.7,
"table":66,
"price":2805,
"x":5.34,
"y":5.43,
"z":3.16
},
{
"id":358,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.5,
"table":57,
"price":2805,
"x":5.75,
"y":5.7,
"z":3.58
},
{
"id":359,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":62.8,
"table":56,
"price":2805,
"x":5.74,
"y":5.7,
"z":3.59
},
{
"id":360,
"carat":0.74,
"cut":"Fair",
"color":"F",
"clarity":"VS2",
"depth":61.1,
"table":68,
"price":2805,
"x":5.82,
"y":5.75,
"z":3.53
},
{
"id":361,
"carat":0.82,
"cut":"Good",
"color":"G",
"clarity":"VS2",
"depth":64,
"table":57,
"price":2805,
"x":5.92,
"y":5.89,
"z":3.78
},
{
"id":362,
"carat":0.81,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":62.5,
"table":60,
"price":2806,
"x":5.89,
"y":5.94,
"z":3.69
},
{
"id":363,
"carat":0.75,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":60.6,
"table":58,
"price":2806,
"x":5.85,
"y":5.9,
"z":3.56
},
{
"id":364,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":2806,
"x":5.72,
"y":5.74,
"z":3.53
},
{
"id":365,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2807,
"x":5.66,
"y":5.72,
"z":3.54
},
{
"id":366,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60,
"table":57,
"price":2807,
"x":5.84,
"y":5.9,
"z":3.52
},
{
"id":367,
"carat":0.93,
"cut":"Premium",
"color":"J",
"clarity":"SI2",
"depth":61.9,
"table":57,
"price":2807,
"x":6.21,
"y":6.19,
"z":3.84
},
{
"id":368,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"VS2",
"depth":62.8,
"table":57,
"price":2808,
"x":5.87,
"y":5.91,
"z":3.7
},
{
"id":369,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62,
"table":57,
"price":2808,
"x":5.64,
"y":5.71,
"z":3.52
},
{
"id":370,
"carat":1,
"cut":"Fair",
"color":"G",
"clarity":"I1",
"depth":66.4,
"table":59,
"price":2808,
"x":6.16,
"y":6.09,
"z":4.07
},
{
"id":371,
"carat":0.75,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":63.4,
"table":56,
"price":2808,
"x":5.78,
"y":5.74,
"z":3.65
},
{
"id":372,
"carat":0.58,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":60.9,
"table":56,
"price":2808,
"x":5.41,
"y":5.43,
"z":3.3
},
{
"id":373,
"carat":0.73,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.1,
"table":57,
"price":2808,
"x":5.74,
"y":5.7,
"z":3.61
},
{
"id":374,
"carat":0.81,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.1,
"table":59,
"price":2809,
"x":5.85,
"y":5.79,
"z":3.67
},
{
"id":375,
"carat":0.81,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":59.2,
"table":57,
"price":2809,
"x":6.15,
"y":6.05,
"z":3.61
},
{
"id":376,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":60.7,
"table":54,
"price":2809,
"x":5.84,
"y":5.8,
"z":3.53
},
{
"id":377,
"carat":1.2,
"cut":"Fair",
"color":"F",
"clarity":"I1",
"depth":64.6,
"table":56,
"price":2809,
"x":6.73,
"y":6.66,
"z":4.33
},
{
"id":378,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":61.8,
"table":56,
"price":2810,
"x":5.63,
"y":5.7,
"z":3.5
},
{
"id":379,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":59.9,
"table":60,
"price":2810,
"x":5.77,
"y":5.84,
"z":3.48
},
{
"id":380,
"carat":0.74,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":61.7,
"table":55,
"price":2810,
"x":5.81,
"y":5.85,
"z":3.6
},
{
"id":381,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":62.8,
"table":61,
"price":2810,
"x":5.57,
"y":5.61,
"z":3.51
},
{
"id":382,
"carat":0.8,
"cut":"Good",
"color":"G",
"clarity":"SI1",
"depth":62.7,
"table":57,
"price":2810,
"x":5.84,
"y":5.93,
"z":3.69
},
{
"id":383,
"carat":0.75,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.4,
"table":58,
"price":2811,
"x":5.72,
"y":5.76,
"z":3.64
},
{
"id":384,
"carat":0.83,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.5,
"table":54,
"price":2811,
"x":5.98,
"y":5.95,
"z":3.79
},
{
"id":385,
"carat":1,
"cut":"Fair",
"color":"J",
"clarity":"VS2",
"depth":65.7,
"table":59,
"price":2811,
"x":6.14,
"y":6.07,
"z":4.01
},
{
"id":386,
"carat":0.99,
"cut":"Fair",
"color":"I",
"clarity":"SI2",
"depth":68.1,
"table":56,
"price":2811,
"x":6.21,
"y":6.06,
"z":4.18
},
{
"id":387,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":63,
"table":60,
"price":2812,
"x":5.57,
"y":5.64,
"z":3.53
},
{
"id":388,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":59.5,
"table":58,
"price":2812,
"x":5.75,
"y":5.85,
"z":3.45
},
{
"id":389,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.5,
"table":59,
"price":2812,
"x":5.49,
"y":5.53,
"z":3.5
},
{
"id":390,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":61.7,
"table":58,
"price":2812,
"x":5.63,
"y":5.69,
"z":3.49
},
{
"id":391,
"carat":0.32,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":62.7,
"table":58,
"price":554,
"x":4.37,
"y":4.34,
"z":2.73
},
{
"id":392,
"carat":0.32,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":62.8,
"table":58,
"price":554,
"x":4.39,
"y":4.34,
"z":2.74
},
{
"id":393,
"carat":0.32,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":554,
"x":4.37,
"y":4.35,
"z":2.72
},
{
"id":394,
"carat":0.32,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":61,
"table":59,
"price":554,
"x":4.39,
"y":4.36,
"z":2.67
},
{
"id":395,
"carat":0.32,
"cut":"Very Good",
"color":"I",
"clarity":"SI1",
"depth":63.1,
"table":56,
"price":554,
"x":4.39,
"y":4.36,
"z":2.76
},
{
"id":396,
"carat":0.32,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":60.7,
"table":57,
"price":554,
"x":4.47,
"y":4.42,
"z":2.7
},
{
"id":397,
"carat":0.3,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":60.9,
"table":59,
"price":554,
"x":4.31,
"y":4.29,
"z":2.62
},
{
"id":398,
"carat":0.3,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":60.1,
"table":55,
"price":554,
"x":4.41,
"y":4.38,
"z":2.64
},
{
"id":399,
"carat":0.3,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.9,
"table":58,
"price":554,
"x":4.28,
"y":4.24,
"z":2.68
},
{
"id":400,
"carat":0.3,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63.3,
"table":56,
"price":554,
"x":4.29,
"y":4.27,
"z":2.71
},
{
"id":401,
"carat":0.3,
"cut":"Good",
"color":"H",
"clarity":"SI1",
"depth":63.8,
"table":55,
"price":554,
"x":4.26,
"y":4.2,
"z":2.7
},
{
"id":402,
"carat":0.3,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.9,
"table":57,
"price":554,
"x":4.27,
"y":4.22,
"z":2.67
},
{
"id":403,
"carat":0.3,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63.4,
"table":60,
"price":554,
"x":4.25,
"y":4.23,
"z":2.69
},
{
"id":404,
"carat":0.32,
"cut":"Good",
"color":"I",
"clarity":"SI1",
"depth":63.9,
"table":55,
"price":554,
"x":4.36,
"y":4.34,
"z":2.78
},
{
"id":405,
"carat":0.33,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":61.4,
"table":56,
"price":554,
"x":4.85,
"y":4.79,
"z":2.95
},
{
"id":406,
"carat":0.29,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":61.9,
"table":55,
"price":555,
"x":4.28,
"y":4.33,
"z":2.66
},
{
"id":407,
"carat":0.29,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62.4,
"table":55,
"price":555,
"x":4.2,
"y":4.25,
"z":2.63
},
{
"id":408,
"carat":0.31,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.8,
"table":58,
"price":555,
"x":4.32,
"y":4.35,
"z":2.68
},
{
"id":409,
"carat":0.34,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.5,
"table":56,
"price":555,
"x":4.47,
"y":4.5,
"z":2.76
},
{
"id":410,
"carat":0.34,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":60.4,
"table":57,
"price":555,
"x":4.54,
"y":4.57,
"z":2.75
},
{
"id":411,
"carat":0.34,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.8,
"table":55,
"price":555,
"x":4.48,
"y":4.52,
"z":2.78
},
{
"id":412,
"carat":0.34,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62,
"table":56,
"price":555,
"x":4.5,
"y":4.53,
"z":2.8
},
{
"id":413,
"carat":0.3,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.3,
"table":56,
"price":555,
"x":4.29,
"y":4.31,
"z":2.68
},
{
"id":414,
"carat":0.29,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.6,
"table":56,
"price":555,
"x":4.26,
"y":4.31,
"z":2.64
},
{
"id":415,
"carat":0.35,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.6,
"table":56,
"price":555,
"x":4.56,
"y":4.58,
"z":2.77
},
{
"id":416,
"carat":0.43,
"cut":"Very Good",
"color":"E",
"clarity":"I1",
"depth":58.4,
"table":62,
"price":555,
"x":4.94,
"y":5,
"z":2.9
},
{
"id":417,
"carat":0.32,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":61.4,
"table":58,
"price":556,
"x":4.37,
"y":4.42,
"z":2.7
},
{
"id":418,
"carat":0.36,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.9,
"table":56,
"price":556,
"x":4.54,
"y":4.57,
"z":2.82
},
{
"id":419,
"carat":0.3,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":62,
"table":56,
"price":556,
"x":4.28,
"y":4.3,
"z":2.66
},
{
"id":420,
"carat":0.26,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":61.5,
"table":57,
"price":556,
"x":4.09,
"y":4.12,
"z":2.52
},
{
"id":421,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.3,
"table":58,
"price":2812,
"x":5.64,
"y":5.72,
"z":3.54
},
{
"id":422,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":60.9,
"table":61,
"price":2812,
"x":5.66,
"y":5.71,
"z":3.46
},
{
"id":423,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":2812,
"x":5.69,
"y":5.72,
"z":3.56
},
{
"id":424,
"carat":0.99,
"cut":"Fair",
"color":"J",
"clarity":"SI1",
"depth":55,
"table":61,
"price":2812,
"x":6.72,
"y":6.67,
"z":3.68
},
{
"id":425,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":58.6,
"table":60,
"price":2812,
"x":5.92,
"y":5.89,
"z":3.46
},
{
"id":426,
"carat":0.51,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":62,
"table":57,
"price":2812,
"x":5.15,
"y":5.11,
"z":3.18
},
{
"id":427,
"carat":0.91,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":59.8,
"table":58,
"price":2813,
"x":6.3,
"y":6.29,
"z":3.77
},
{
"id":428,
"carat":0.84,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.4,
"table":55,
"price":2813,
"x":6,
"y":5.95,
"z":3.79
},
{
"id":429,
"carat":0.91,
"cut":"Good",
"color":"I",
"clarity":"VS2",
"depth":64.3,
"table":58,
"price":2813,
"x":6.09,
"y":6.05,
"z":3.9
},
{
"id":430,
"carat":0.76,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":59,
"price":2814,
"x":5.86,
"y":5.81,
"z":3.63
},
{
"id":431,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.7,
"table":57,
"price":2814,
"x":5.88,
"y":5.85,
"z":3.62
},
{
"id":432,
"carat":0.75,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.1,
"table":59,
"price":2814,
"x":5.86,
"y":5.83,
"z":3.57
},
{
"id":433,
"carat":0.55,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":61.5,
"table":56,
"price":2815,
"x":5.23,
"y":5.27,
"z":3.23
},
{
"id":434,
"carat":0.76,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":58.5,
"table":62,
"price":2815,
"x":5.93,
"y":6.01,
"z":3.49
},
{
"id":435,
"carat":0.74,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":61.7,
"table":58,
"price":2815,
"x":5.79,
"y":5.81,
"z":3.58
},
{
"id":436,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":60.4,
"table":56,
"price":2815,
"x":5.75,
"y":5.81,
"z":3.49
},
{
"id":437,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2815,
"x":5.7,
"y":5.76,
"z":3.52
},
{
"id":438,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.5,
"table":55,
"price":2815,
"x":5.73,
"y":5.79,
"z":3.54
},
{
"id":439,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2815,
"x":5.72,
"y":5.77,
"z":3.53
},
{
"id":440,
"carat":0.9,
"cut":"Fair",
"color":"J",
"clarity":"VS2",
"depth":65,
"table":56,
"price":2815,
"x":6.08,
"y":6.04,
"z":3.94
},
{
"id":441,
"carat":0.95,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":56,
"table":60,
"price":2815,
"x":6.62,
"y":6.53,
"z":3.68
},
{
"id":442,
"carat":0.89,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":60.2,
"table":59,
"price":2815,
"x":6.26,
"y":6.23,
"z":3.76
},
{
"id":443,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":58.3,
"table":58,
"price":2815,
"x":5.99,
"y":5.92,
"z":3.47
},
{
"id":444,
"carat":0.96,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":53.1,
"table":63,
"price":2815,
"x":6.73,
"y":6.65,
"z":3.55
},
{
"id":445,
"carat":1.02,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":60.3,
"table":58,
"price":2815,
"x":6.55,
"y":6.5,
"z":3.94
},
{
"id":446,
"carat":0.78,
"cut":"Very Good",
"color":"I",
"clarity":"VVS2",
"depth":61.4,
"table":56,
"price":2816,
"x":5.91,
"y":5.95,
"z":3.64
},
{
"id":447,
"carat":0.61,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":60.1,
"table":57,
"price":2816,
"x":5.52,
"y":5.54,
"z":3.32
},
{
"id":448,
"carat":0.71,
"cut":"Good",
"color":"D",
"clarity":"VS1",
"depth":63.4,
"table":55,
"price":2816,
"x":5.61,
"y":5.69,
"z":3.58
},
{
"id":449,
"carat":0.78,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.5,
"table":59,
"price":2816,
"x":5.96,
"y":5.88,
"z":3.64
},
{
"id":450,
"carat":0.87,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":62.7,
"table":56,
"price":2816,
"x":6.16,
"y":6.13,
"z":3.85
},
{
"id":451,
"carat":0.83,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":55,
"price":2816,
"x":6.04,
"y":6,
"z":3.76
},
{
"id":452,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":56,
"price":2817,
"x":5.78,
"y":5.73,
"z":3.53
},
{
"id":453,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VVS2",
"depth":60.2,
"table":56,
"price":2817,
"x":5.84,
"y":5.89,
"z":3.53
},
{
"id":454,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":57,
"price":2817,
"x":5.66,
"y":5.64,
"z":3.54
},
{
"id":455,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.3,
"table":58,
"price":2817,
"x":5.69,
"y":5.65,
"z":3.53
},
{
"id":456,
"carat":0.63,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":61.5,
"table":56,
"price":2817,
"x":5.48,
"y":5.52,
"z":3.38
},
{
"id":457,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.2,
"table":59,
"price":2817,
"x":5.86,
"y":5.83,
"z":3.46
},
{
"id":458,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.8,
"table":59,
"price":2817,
"x":5.75,
"y":5.7,
"z":3.54
},
{
"id":459,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":55,
"price":2817,
"x":5.77,
"y":5.72,
"z":3.52
},
{
"id":460,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":58,
"price":2817,
"x":5.77,
"y":5.73,
"z":3.53
},
{
"id":461,
"carat":0.9,
"cut":"Ideal",
"color":"J",
"clarity":"VS2",
"depth":62.8,
"table":55,
"price":2817,
"x":6.2,
"y":6.16,
"z":3.88
},
{
"id":462,
"carat":0.71,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":62.8,
"table":64,
"price":2817,
"x":5.6,
"y":5.54,
"z":3.5
},
{
"id":463,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.4,
"table":61,
"price":2818,
"x":5.66,
"y":5.63,
"z":3.52
},
{
"id":464,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":59.3,
"table":60,
"price":2818,
"x":5.78,
"y":5.73,
"z":3.41
},
{
"id":465,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":63,
"table":60,
"price":2818,
"x":5.64,
"y":5.6,
"z":3.54
},
{
"id":466,
"carat":1,
"cut":"Premium",
"color":"H",
"clarity":"I1",
"depth":61.3,
"table":60,
"price":2818,
"x":6.43,
"y":6.39,
"z":3.93
},
{
"id":467,
"carat":0.86,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":59.3,
"table":62,
"price":2818,
"x":6.36,
"y":6.22,
"z":3.73
},
{
"id":468,
"carat":0.8,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61,
"table":57,
"price":2818,
"x":6.07,
"y":6,
"z":3.68
},
{
"id":469,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.9,
"table":57,
"price":2818,
"x":5.66,
"y":5.61,
"z":3.54
},
{
"id":470,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":59.6,
"table":57,
"price":2818,
"x":5.91,
"y":5.83,
"z":3.5
},
{
"id":471,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.8,
"table":60,
"price":2818,
"x":5.69,
"y":5.64,
"z":3.5
},
{
"id":472,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.7,
"table":57,
"price":2818,
"x":5.68,
"y":5.64,
"z":3.55
},
{
"id":473,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":65.3,
"table":62,
"price":2818,
"x":6.34,
"y":6.12,
"z":4.08
},
{
"id":474,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":63.8,
"table":58,
"price":2819,
"x":5.64,
"y":5.68,
"z":3.61
},
{
"id":475,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":62.3,
"table":56,
"price":2819,
"x":5.73,
"y":5.77,
"z":3.58
},
{
"id":476,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":59.7,
"table":63,
"price":2819,
"x":5.76,
"y":5.79,
"z":3.45
},
{
"id":477,
"carat":0.86,
"cut":"Good",
"color":"F",
"clarity":"SI2",
"depth":64.3,
"table":60,
"price":2819,
"x":5.97,
"y":5.95,
"z":3.83
},
{
"id":478,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.9,
"table":58,
"price":2820,
"x":5.66,
"y":5.69,
"z":3.57
},
{
"id":479,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62,
"table":57,
"price":2821,
"x":5.8,
"y":5.78,
"z":3.59
},
{
"id":480,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.6,
"table":59,
"price":2821,
"x":5.77,
"y":5.73,
"z":3.54
},
{
"id":481,
"carat":0.53,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":61.9,
"table":55,
"price":2821,
"x":5.2,
"y":5.21,
"z":3.22
},
{
"id":482,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2821,
"x":5.83,
"y":5.76,
"z":3.55
},
{
"id":483,
"carat":0.73,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.6,
"table":57,
"price":2821,
"x":5.72,
"y":5.7,
"z":3.63
},
{
"id":484,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.6,
"table":61,
"price":2821,
"x":5.92,
"y":5.85,
"z":3.51
},
{
"id":485,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":59,
"price":2821,
"x":5.77,
"y":5.68,
"z":3.56
},
{
"id":486,
"carat":0.73,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.7,
"table":55,
"price":2821,
"x":5.84,
"y":5.82,
"z":3.6
},
{
"id":487,
"carat":0.73,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.2,
"table":58,
"price":2821,
"x":5.76,
"y":5.7,
"z":3.62
},
{
"id":488,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":60.8,
"table":60,
"price":2822,
"x":5.74,
"y":5.71,
"z":3.48
},
{
"id":489,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":60.3,
"table":59,
"price":2822,
"x":5.84,
"y":5.8,
"z":3.51
},
{
"id":490,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":60.9,
"table":60,
"price":2822,
"x":5.8,
"y":5.76,
"z":3.52
},
{
"id":491,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.4,
"table":59,
"price":2822,
"x":5.77,
"y":5.7,
"z":3.58
},
{
"id":492,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":60.2,
"table":60,
"price":2822,
"x":5.73,
"y":5.7,
"z":3.44
},
{
"id":493,
"carat":0.6,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":62,
"table":55,
"price":2822,
"x":5.37,
"y":5.4,
"z":3.34
},
{
"id":494,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":60.8,
"table":57,
"price":2822,
"x":5.85,
"y":5.89,
"z":3.57
},
{
"id":495,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.1,
"table":55,
"price":2822,
"x":5.75,
"y":5.78,
"z":3.58
},
{
"id":496,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.7,
"table":60,
"price":2822,
"x":5.71,
"y":5.67,
"z":3.57
},
{
"id":497,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2822,
"x":5.75,
"y":5.73,
"z":3.52
},
{
"id":498,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.2,
"table":60,
"price":2822,
"x":5.82,
"y":5.75,
"z":3.48
},
{
"id":499,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":60.7,
"table":56,
"price":2822,
"x":5.75,
"y":5.72,
"z":3.48
},
{
"id":500,
"carat":0.9,
"cut":"Good",
"color":"J",
"clarity":"VS2",
"depth":64,
"table":61,
"price":2822,
"x":6.04,
"y":6.03,
"z":3.86
},
{
"id":501,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":60.2,
"table":56,
"price":2822,
"x":5.86,
"y":5.83,
"z":3.52
},
{
"id":502,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.5,
"table":59,
"price":2822,
"x":5.73,
"y":5.68,
"z":3.51
},
{
"id":503,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":2822,
"x":5.71,
"y":5.66,
"z":3.56
},
{
"id":504,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":59.7,
"table":58,
"price":2822,
"x":5.82,
"y":5.77,
"z":3.46
},
{
"id":505,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":64,
"price":2822,
"x":5.71,
"y":5.66,
"z":3.49
},
{
"id":506,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":2822,
"x":5.62,
"y":5.59,
"z":3.51
},
{
"id":507,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.8,
"table":56,
"price":2822,
"x":5.73,
"y":5.63,
"z":3.51
},
{
"id":508,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":60.7,
"table":62,
"price":2822,
"x":5.72,
"y":5.68,
"z":3.46
},
{
"id":509,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":60.6,
"table":58,
"price":2822,
"x":5.8,
"y":5.72,
"z":3.49
},
{
"id":510,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":54,
"price":2822,
"x":5.75,
"y":5.71,
"z":3.52
},
{
"id":511,
"carat":0.79,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":62.8,
"table":59,
"price":2823,
"x":5.86,
"y":5.9,
"z":3.69
},
{
"id":512,
"carat":0.9,
"cut":"Good",
"color":"I",
"clarity":"SI1",
"depth":63.8,
"table":57,
"price":2823,
"x":6.06,
"y":6.13,
"z":3.89
},
{
"id":513,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.3,
"table":58,
"price":2823,
"x":5.71,
"y":5.66,
"z":3.54
},
{
"id":514,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":61.3,
"table":54,
"price":2823,
"x":5.51,
"y":5.59,
"z":3.4
},
{
"id":515,
"carat":0.9,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":65.8,
"table":54,
"price":2823,
"x":6.05,
"y":5.98,
"z":3.96
},
{
"id":516,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.5,
"table":56,
"price":2823,
"x":5.77,
"y":5.73,
"z":3.47
},
{
"id":517,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":61.2,
"table":59,
"price":2824,
"x":5.74,
"y":5.69,
"z":3.5
},
{
"id":518,
"carat":0.77,
"cut":"Ideal",
"color":"I",
"clarity":"VVS2",
"depth":62.1,
"table":57,
"price":2824,
"x":5.84,
"y":5.86,
"z":3.63
},
{
"id":519,
"carat":0.74,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":63.1,
"table":58,
"price":2824,
"x":5.73,
"y":5.75,
"z":3.62
},
{
"id":520,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.4,
"table":54,
"price":2824,
"x":6.02,
"y":5.97,
"z":3.74
},
{
"id":521,
"carat":0.82,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.8,
"table":60,
"price":2824,
"x":6.05,
"y":6.03,
"z":3.67
},
{
"id":522,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":62.2,
"table":59,
"price":2825,
"x":5.73,
"y":5.66,
"z":3.54
},
{
"id":523,
"carat":0.83,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":60,
"table":59,
"price":2825,
"x":6.08,
"y":6.05,
"z":3.64
},
{
"id":524,
"carat":0.73,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":62,
"table":57,
"price":2825,
"x":5.75,
"y":5.8,
"z":3.58
},
{
"id":525,
"carat":0.83,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":59,
"price":2825,
"x":6.02,
"y":5.95,
"z":3.74
},
{
"id":526,
"carat":1.17,
"cut":"Premium",
"color":"J",
"clarity":"I1",
"depth":60.2,
"table":61,
"price":2825,
"x":6.9,
"y":6.83,
"z":4.13
},
{
"id":527,
"carat":0.91,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":61.3,
"table":67,
"price":2825,
"x":6.24,
"y":6.19,
"z":3.81
},
{
"id":528,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.6,
"table":60,
"price":2826,
"x":5.75,
"y":5.68,
"z":3.58
},
{
"id":529,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":57.2,
"table":59,
"price":2826,
"x":5.94,
"y":5.88,
"z":3.38
},
{
"id":530,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":62.2,
"table":59,
"price":2826,
"x":6.11,
"y":6.07,
"z":3.79
},
{
"id":531,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2826,
"x":5.66,
"y":5.6,
"z":3.5
},
{
"id":532,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63.3,
"table":56,
"price":2826,
"x":5.6,
"y":5.58,
"z":3.54
},
{
"id":533,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":59.4,
"table":61,
"price":2826,
"x":5.78,
"y":5.74,
"z":3.42
},
{
"id":534,
"carat":0.9,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":63.5,
"table":56,
"price":2826,
"x":6.17,
"y":6.07,
"z":3.88
},
{
"id":535,
"carat":0.78,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":60.8,
"table":60,
"price":2826,
"x":5.97,
"y":5.94,
"z":3.62
},
{
"id":536,
"carat":0.96,
"cut":"Ideal",
"color":"F",
"clarity":"I1",
"depth":60.7,
"table":55,
"price":2826,
"x":6.41,
"y":6.37,
"z":3.88
},
{
"id":537,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.3,
"table":59,
"price":2827,
"x":5.67,
"y":5.7,
"z":3.54
},
{
"id":538,
"carat":0.72,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":64,
"table":54,
"price":2827,
"x":5.68,
"y":5.7,
"z":3.64
},
{
"id":539,
"carat":0.79,
"cut":"Premium",
"color":"H",
"clarity":"VVS2",
"depth":62.6,
"table":58,
"price":2827,
"x":5.96,
"y":5.9,
"z":3.71
},
{
"id":540,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":61.6,
"table":57,
"price":2827,
"x":5.69,
"y":5.74,
"z":3.52
},
{
"id":541,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.3,
"table":55,
"price":2827,
"x":5.66,
"y":5.7,
"z":3.54
},
{
"id":542,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":60.6,
"table":57,
"price":2828,
"x":5.74,
"y":5.77,
"z":3.49
},
{
"id":543,
"carat":1.01,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":61.6,
"table":61,
"price":2828,
"x":6.39,
"y":6.31,
"z":3.91
},
{
"id":544,
"carat":0.72,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2829,
"x":5.75,
"y":5.7,
"z":3.56
},
{
"id":545,
"carat":0.8,
"cut":"Good",
"color":"E",
"clarity":"SI2",
"depth":63.7,
"table":54,
"price":2829,
"x":5.91,
"y":5.87,
"z":3.75
},
{
"id":546,
"carat":0.59,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":62,
"table":56,
"price":2829,
"x":5.36,
"y":5.38,
"z":3.33
},
{
"id":547,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.7,
"table":57,
"price":2829,
"x":5.77,
"y":5.74,
"z":3.55
},
{
"id":548,
"carat":0.75,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":61.9,
"table":57,
"price":2829,
"x":5.88,
"y":5.82,
"z":3.62
},
{
"id":549,
"carat":0.8,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.2,
"table":57,
"price":2829,
"x":6.05,
"y":6.01,
"z":3.63
},
{
"id":550,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":59,
"price":2830,
"x":5.65,
"y":5.7,
"z":3.56
},
{
"id":551,
"carat":0.77,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":61.7,
"table":56,
"price":2830,
"x":5.84,
"y":5.89,
"z":3.62
},
{
"id":552,
"carat":0.97,
"cut":"Ideal",
"color":"F",
"clarity":"I1",
"depth":60.7,
"table":56,
"price":2830,
"x":6.41,
"y":6.43,
"z":3.9
},
{
"id":553,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":60.9,
"table":57,
"price":2830,
"x":5.23,
"y":5.29,
"z":3.19
},
{
"id":554,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.8,
"table":57,
"price":2830,
"x":5.16,
"y":5.19,
"z":3.2
},
{
"id":555,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":62.1,
"table":54.4,
"price":2830,
"x":5.94,
"y":5.99,
"z":3.7
},
{
"id":556,
"carat":0.9,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":60.6,
"table":62,
"price":2830,
"x":6.21,
"y":6.13,
"z":3.74
},
{
"id":557,
"carat":0.76,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":60.8,
"table":60,
"price":2831,
"x":5.89,
"y":5.98,
"z":3.61
},
{
"id":558,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2831,
"x":5.7,
"y":5.76,
"z":3.57
},
{
"id":559,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":57,
"price":2831,
"x":5.82,
"y":5.87,
"z":3.59
},
{
"id":560,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.1,
"table":58,
"price":2831,
"x":5.73,
"y":5.76,
"z":3.57
},
{
"id":561,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.8,
"table":56,
"price":2831,
"x":5.93,
"y":5.91,
"z":3.66
},
{
"id":562,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.5,
"table":58,
"price":2832,
"x":5.71,
"y":5.75,
"z":3.58
},
{
"id":563,
"carat":0.91,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":62.8,
"table":61,
"price":2832,
"x":6.15,
"y":6.18,
"z":3.87
},
{
"id":564,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":62.1,
"table":57,
"price":2832,
"x":5.75,
"y":5.65,
"z":3.54
},
{
"id":565,
"carat":0.81,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":63,
"table":60,
"price":2832,
"x":5.87,
"y":5.81,
"z":3.68
},
{
"id":566,
"carat":0.82,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":2832,
"x":5.91,
"y":5.97,
"z":3.71
},
{
"id":567,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2832,
"x":5.72,
"y":5.66,
"z":3.54
},
{
"id":568,
"carat":0.9,
"cut":"Good",
"color":"J",
"clarity":"SI1",
"depth":64.3,
"table":63,
"price":2832,
"x":6.05,
"y":6.01,
"z":3.88
},
{
"id":569,
"carat":0.8,
"cut":"Very Good",
"color":"I",
"clarity":"VS2",
"depth":62,
"table":58,
"price":2833,
"x":5.86,
"y":5.95,
"z":3.66
},
{
"id":570,
"carat":0.56,
"cut":"Very Good",
"color":"E",
"clarity":"IF",
"depth":61,
"table":59,
"price":2833,
"x":5.28,
"y":5.34,
"z":3.24
},
{
"id":571,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":59.6,
"table":61,
"price":2833,
"x":5.77,
"y":5.8,
"z":3.45
},
{
"id":572,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":61,
"table":57,
"price":2833,
"x":5.74,
"y":5.76,
"z":3.51
},
{
"id":573,
"carat":0.61,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":61.7,
"table":55,
"price":2833,
"x":5.45,
"y":5.48,
"z":3.37
},
{
"id":574,
"carat":0.85,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":62.5,
"table":57,
"price":2833,
"x":6.02,
"y":6.07,
"z":3.78
},
{
"id":575,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":60.7,
"table":57,
"price":2833,
"x":5.73,
"y":5.75,
"z":3.49
},
{
"id":576,
"carat":0.8,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":62.2,
"table":56,
"price":2834,
"x":5.94,
"y":5.87,
"z":3.67
},
{
"id":577,
"carat":0.8,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":62.8,
"table":57,
"price":2834,
"x":5.91,
"y":5.87,
"z":3.7
},
{
"id":578,
"carat":0.51,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":59.9,
"table":58,
"price":2834,
"x":5.16,
"y":5.19,
"z":3.1
},
{
"id":579,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.4,
"table":57,
"price":2834,
"x":5.2,
"y":5.23,
"z":3.2
},
{
"id":580,
"carat":0.78,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":2834,
"x":5.92,
"y":5.95,
"z":3.67
},
{
"id":581,
"carat":0.9,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":63.4,
"table":54,
"price":2834,
"x":6.17,
"y":6.14,
"z":3.9
},
{
"id":582,
"carat":0.9,
"cut":"Fair",
"color":"G",
"clarity":"SI2",
"depth":65.3,
"table":59,
"price":2834,
"x":6.07,
"y":6,
"z":3.94
},
{
"id":583,
"carat":0.77,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":60.7,
"table":55,
"price":2834,
"x":6.01,
"y":5.95,
"z":3.63
},
{
"id":584,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.2,
"table":56,
"price":2835,
"x":5.89,
"y":5.81,
"z":3.58
},
{
"id":585,
"carat":0.63,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":61.9,
"table":57,
"price":2835,
"x":5.47,
"y":5.51,
"z":3.4
},
{
"id":586,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.5,
"table":54,
"price":2835,
"x":5.7,
"y":5.75,
"z":3.52
},
{
"id":587,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.8,
"table":57,
"price":2835,
"x":5.71,
"y":5.73,
"z":3.59
},
{
"id":588,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":57,
"price":2835,
"x":5.78,
"y":5.8,
"z":3.53
},
{
"id":589,
"carat":0.75,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.6,
"table":59,
"price":2835,
"x":6.04,
"y":5.94,
"z":3.57
},
{
"id":590,
"carat":0.82,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":60.7,
"table":56,
"price":2836,
"x":6.04,
"y":6.06,
"z":3.67
},
{
"id":591,
"carat":0.71,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":62.8,
"table":60,
"price":2836,
"x":5.6,
"y":5.65,
"z":3.53
},
{
"id":592,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.6,
"table":59,
"price":2837,
"x":5.69,
"y":5.66,
"z":3.55
},
{
"id":593,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":61.8,
"table":56,
"price":2837,
"x":5.74,
"y":5.69,
"z":3.53
},
{
"id":594,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":59.8,
"table":53,
"price":2838,
"x":5.86,
"y":5.82,
"z":3.49
},
{
"id":595,
"carat":0.76,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":60.9,
"table":55,
"price":2838,
"x":5.92,
"y":5.94,
"z":3.61
},
{
"id":596,
"carat":0.82,
"cut":"Fair",
"color":"F",
"clarity":"SI1",
"depth":64.9,
"table":58,
"price":2838,
"x":5.83,
"y":5.79,
"z":3.77
},
{
"id":597,
"carat":0.72,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":58.8,
"table":60,
"price":2838,
"x":5.91,
"y":5.89,
"z":3.47
},
{
"id":598,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.3,
"table":58,
"price":2838,
"x":5.72,
"y":5.64,
"z":3.54
},
{
"id":599,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.7,
"table":58,
"price":2838,
"x":5.69,
"y":5.63,
"z":3.49
},
{
"id":600,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":62.6,
"table":55,
"price":2838,
"x":5.73,
"y":5.64,
"z":3.56
},
{
"id":601,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.4,
"table":61,
"price":2838,
"x":5.83,
"y":5.79,
"z":3.45
},
{
"id":602,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.5,
"table":59,
"price":2838,
"x":5.53,
"y":5.49,
"z":3.5
},
{
"id":603,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":60.9,
"table":61,
"price":2838,
"x":5.71,
"y":5.66,
"z":3.46
},
{
"id":604,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.5,
"table":58,
"price":2838,
"x":5.85,
"y":5.75,
"z":3.45
},
{
"id":605,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":63,
"table":60,
"price":2838,
"x":5.64,
"y":5.57,
"z":3.53
},
{
"id":606,
"carat":0.74,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":60,
"table":57,
"price":2839,
"x":5.85,
"y":5.89,
"z":3.52
},
{
"id":607,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.5,
"table":57,
"price":2839,
"x":5.74,
"y":5.71,
"z":3.52
},
{
"id":608,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.6,
"table":54,
"price":2839,
"x":5.75,
"y":5.72,
"z":3.53
},
{
"id":609,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":55,
"price":2839,
"x":5.82,
"y":5.68,
"z":3.57
},
{
"id":610,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":59.1,
"table":61,
"price":2839,
"x":5.84,
"y":5.81,
"z":3.44
},
{
"id":611,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":59,
"table":60,
"price":2839,
"x":5.82,
"y":5.8,
"z":3.43
},
{
"id":612,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":60.5,
"table":58,
"price":2839,
"x":5.75,
"y":5.72,
"z":3.47
},
{
"id":613,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.4,
"table":53,
"price":2839,
"x":5.73,
"y":5.71,
"z":3.57
},
{
"id":614,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.8,
"table":54,
"price":2839,
"x":5.8,
"y":5.82,
"z":3.59
},
{
"id":615,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.1,
"table":54,
"price":2839,
"x":5.69,
"y":5.72,
"z":3.54
},
{
"id":616,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.3,
"table":57,
"price":2839,
"x":5.71,
"y":5.74,
"z":3.51
},
{
"id":617,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":60.3,
"table":58,
"price":2839,
"x":5.82,
"y":5.78,
"z":3.5
},
{
"id":618,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":59.2,
"table":58,
"price":2839,
"x":5.87,
"y":5.82,
"z":3.46
},
{
"id":619,
"carat":0.79,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":59.3,
"table":62,
"price":2839,
"x":6.09,
"y":6.01,
"z":3.59
},
{
"id":620,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.7,
"table":59,
"price":2839,
"x":5.7,
"y":5.62,
"z":3.55
},
{
"id":621,
"carat":0.77,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61,
"table":60,
"price":2840,
"x":5.9,
"y":5.87,
"z":3.59
},
{
"id":622,
"carat":0.75,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":59.8,
"table":56,
"price":2840,
"x":5.85,
"y":5.92,
"z":3.52
},
{
"id":623,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61,
"table":56,
"price":2840,
"x":5.75,
"y":5.8,
"z":3.52
},
{
"id":624,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.3,
"table":56,
"price":2840,
"x":5.88,
"y":5.82,
"z":3.47
},
{
"id":625,
"carat":0.92,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":61.9,
"table":56,
"price":2840,
"x":6.27,
"y":6.2,
"z":3.86
},
{
"id":626,
"carat":0.83,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":61.4,
"table":59,
"price":2840,
"x":6.08,
"y":6.04,
"z":3.72
},
{
"id":627,
"carat":0.7,
"cut":"Premium",
"color":"H",
"clarity":"VVS1",
"depth":59.2,
"table":60,
"price":2840,
"x":5.87,
"y":5.78,
"z":3.45
},
{
"id":628,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":60.3,
"table":59,
"price":2841,
"x":5.9,
"y":5.87,
"z":3.55
},
{
"id":629,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":63.4,
"table":55,
"price":2841,
"x":5.69,
"y":5.61,
"z":3.58
},
{
"id":630,
"carat":0.73,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.9,
"table":57,
"price":2841,
"x":5.66,
"y":5.71,
"z":3.63
},
{
"id":631,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":61.7,
"table":53,
"price":2841,
"x":6,
"y":6.12,
"z":3.74
},
{
"id":632,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":56,
"price":2841,
"x":5.96,
"y":6.02,
"z":3.73
},
{
"id":633,
"carat":0.82,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":59.7,
"table":57,
"price":2841,
"x":6.12,
"y":6.14,
"z":3.66
},
{
"id":634,
"carat":0.52,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.2,
"table":56,
"price":2841,
"x":5.19,
"y":5.21,
"z":3.18
},
{
"id":635,
"carat":1,
"cut":"Premium",
"color":"F",
"clarity":"I1",
"depth":58.9,
"table":60,
"price":2841,
"x":6.6,
"y":6.55,
"z":3.87
},
{
"id":636,
"carat":0.95,
"cut":"Fair",
"color":"G",
"clarity":"SI1",
"depth":66.7,
"table":56,
"price":2841,
"x":6.16,
"y":6.03,
"z":4.06
},
{
"id":637,
"carat":0.73,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":57,
"price":2841,
"x":5.76,
"y":5.8,
"z":3.55
},
{
"id":638,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.9,
"table":59,
"price":2841,
"x":5.87,
"y":5.77,
"z":3.5
},
{
"id":639,
"carat":0.73,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":61.4,
"table":58,
"price":2841,
"x":5.82,
"y":5.77,
"z":3.56
},
{
"id":640,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62.6,
"table":54,
"price":2842,
"x":5.92,
"y":5.96,
"z":3.72
},
{
"id":641,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":58.7,
"table":61,
"price":2842,
"x":5.8,
"y":5.72,
"z":3.38
},
{
"id":642,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":60.2,
"table":62,
"price":2843,
"x":5.71,
"y":5.75,
"z":3.45
},
{
"id":643,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":58,
"price":2843,
"x":5.65,
"y":5.67,
"z":3.55
},
{
"id":644,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":59.4,
"table":58,
"price":2843,
"x":5.76,
"y":5.82,
"z":3.44
},
{
"id":645,
"carat":0.81,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":63.2,
"table":58,
"price":2843,
"x":5.91,
"y":5.92,
"z":3.74
},
{
"id":646,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":58,
"price":2843,
"x":5.73,
"y":5.79,
"z":3.54
},
{
"id":647,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.3,
"table":57,
"price":2843,
"x":5.81,
"y":5.84,
"z":3.57
},
{
"id":648,
"carat":0.73,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":61.8,
"table":59,
"price":2843,
"x":5.73,
"y":5.79,
"z":3.56
},
{
"id":649,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62,
"table":57,
"price":2843,
"x":5.71,
"y":5.74,
"z":3.55
},
{
"id":650,
"carat":0.81,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.1,
"table":57,
"price":2843,
"x":5.91,
"y":5.95,
"z":3.68
},
{
"id":651,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":60.7,
"table":57,
"price":2843,
"x":5.81,
"y":5.78,
"z":3.52
},
{
"id":652,
"carat":0.73,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":57.7,
"table":61,
"price":2844,
"x":5.92,
"y":5.96,
"z":3.43
},
{
"id":653,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62,
"table":59,
"price":2844,
"x":5.65,
"y":5.68,
"z":3.51
},
{
"id":654,
"carat":1.01,
"cut":"Ideal",
"color":"I",
"clarity":"I1",
"depth":61.5,
"table":57,
"price":2844,
"x":6.45,
"y":6.46,
"z":3.97
},
{
"id":655,
"carat":1.01,
"cut":"Good",
"color":"I",
"clarity":"I1",
"depth":63.1,
"table":57,
"price":2844,
"x":6.35,
"y":6.39,
"z":4.02
},
{
"id":656,
"carat":0.79,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":62.5,
"table":57,
"price":2844,
"x":5.91,
"y":5.93,
"z":3.7
},
{
"id":657,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":61.8,
"table":59,
"price":2845,
"x":5.65,
"y":5.68,
"z":3.5
},
{
"id":658,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":58.9,
"table":60,
"price":2845,
"x":5.83,
"y":5.85,
"z":3.44
},
{
"id":659,
"carat":0.8,
"cut":"Good",
"color":"H",
"clarity":"VS2",
"depth":63.4,
"table":60,
"price":2845,
"x":5.92,
"y":5.82,
"z":3.72
},
{
"id":660,
"carat":1.27,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":59.3,
"table":61,
"price":2845,
"x":7.12,
"y":7.05,
"z":4.2
},
{
"id":661,
"carat":0.79,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2846,
"x":5.96,
"y":5.91,
"z":3.65
},
{
"id":662,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60.2,
"table":59,
"price":2846,
"x":5.79,
"y":5.84,
"z":3.5
},
{
"id":663,
"carat":0.73,
"cut":"Ideal",
"color":"H",
"clarity":"VVS2",
"depth":61.6,
"table":56,
"price":2846,
"x":5.79,
"y":5.84,
"z":3.58
},
{
"id":664,
"carat":1.01,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":65.4,
"table":59,
"price":2846,
"x":6.3,
"y":6.26,
"z":4.11
},
{
"id":665,
"carat":1.01,
"cut":"Good",
"color":"H",
"clarity":"I1",
"depth":64.2,
"table":61,
"price":2846,
"x":6.25,
"y":6.18,
"z":3.99
},
{
"id":666,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":59.1,
"table":59,
"price":2846,
"x":5.92,
"y":5.95,
"z":3.51
},
{
"id":667,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.6,
"table":57,
"price":2846,
"x":5.71,
"y":5.76,
"z":3.53
},
{
"id":668,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS2",
"depth":59.1,
"table":61,
"price":2846,
"x":5.76,
"y":5.84,
"z":3.43
},
{
"id":669,
"carat":0.77,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.9,
"table":59,
"price":2846,
"x":5.84,
"y":5.79,
"z":3.66
},
{
"id":670,
"carat":0.77,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":60,
"price":2846,
"x":5.91,
"y":5.81,
"z":3.59
},
{
"id":671,
"carat":0.77,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":61.4,
"table":58,
"price":2846,
"x":5.94,
"y":5.89,
"z":3.63
},
{
"id":672,
"carat":0.84,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":61.2,
"table":57,
"price":2847,
"x":6.1,
"y":6.12,
"z":3.74
},
{
"id":673,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.3,
"table":57,
"price":2847,
"x":5.83,
"y":5.85,
"z":3.52
},
{
"id":674,
"carat":0.76,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.1,
"table":59,
"price":2847,
"x":5.93,
"y":5.88,
"z":3.61
},
{
"id":675,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":62.9,
"table":59,
"price":2848,
"x":5.61,
"y":5.68,
"z":3.55
},
{
"id":676,
"carat":0.54,
"cut":"Ideal",
"color":"D",
"clarity":"VVS2",
"depth":61.5,
"table":55,
"price":2848,
"x":5.25,
"y":5.29,
"z":3.24
},
{
"id":677,
"carat":0.75,
"cut":"Fair",
"color":"D",
"clarity":"SI2",
"depth":64.6,
"table":57,
"price":2848,
"x":5.74,
"y":5.72,
"z":3.7
},
{
"id":678,
"carat":0.79,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":64.1,
"table":54,
"price":2849,
"x":5.86,
"y":5.84,
"z":3.75
},
{
"id":679,
"carat":0.74,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.1,
"table":58,
"price":2849,
"x":5.75,
"y":5.73,
"z":3.62
},
{
"id":680,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":61,
"table":60,
"price":2850,
"x":5.74,
"y":5.77,
"z":3.51
},
{
"id":681,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":60.8,
"table":59,
"price":2850,
"x":5.69,
"y":5.79,
"z":3.49
},
{
"id":682,
"carat":0.75,
"cut":"Ideal",
"color":"J",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2850,
"x":5.83,
"y":5.87,
"z":3.6
},
{
"id":683,
"carat":1.2,
"cut":"Very Good",
"color":"H",
"clarity":"I1",
"depth":63.1,
"table":60,
"price":2850,
"x":6.75,
"y":6.67,
"z":4.23
},
{
"id":684,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.4,
"table":57,
"price":2851,
"x":5.89,
"y":5.82,
"z":3.71
},
{
"id":685,
"carat":0.66,
"cut":"Ideal",
"color":"D",
"clarity":"VS1",
"depth":62.1,
"table":56,
"price":2851,
"x":5.54,
"y":5.57,
"z":3.45
},
{
"id":686,
"carat":0.87,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":61,
"table":63,
"price":2851,
"x":6.22,
"y":6.07,
"z":3.75
},
{
"id":687,
"carat":0.86,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.7,
"table":59,
"price":2851,
"x":6.04,
"y":5.98,
"z":3.77
},
{
"id":688,
"carat":0.74,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61,
"table":57,
"price":2851,
"x":5.85,
"y":5.81,
"z":3.56
},
{
"id":689,
"carat":0.58,
"cut":"Very Good",
"color":"E",
"clarity":"IF",
"depth":60.6,
"table":59,
"price":2852,
"x":5.37,
"y":5.43,
"z":3.27
},
{
"id":690,
"carat":0.78,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.5,
"table":57,
"price":2852,
"x":5.88,
"y":5.92,
"z":3.63
},
{
"id":691,
"carat":0.74,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.3,
"table":55,
"price":2852,
"x":5.85,
"y":5.86,
"z":3.59
},
{
"id":692,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":55,
"price":2852,
"x":5.7,
"y":5.79,
"z":3.6
},
{
"id":693,
"carat":0.91,
"cut":"Very Good",
"color":"I",
"clarity":"SI1",
"depth":63.5,
"table":57,
"price":2852,
"x":6.12,
"y":6.07,
"z":3.87
},
{
"id":694,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":2853,
"x":5.67,
"y":5.7,
"z":3.56
},
{
"id":695,
"carat":0.71,
"cut":"Good",
"color":"G",
"clarity":"VS1",
"depth":63.5,
"table":55,
"price":2853,
"x":5.64,
"y":5.66,
"z":3.59
},
{
"id":696,
"carat":0.79,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.8,
"table":57,
"price":2853,
"x":5.9,
"y":5.85,
"z":3.69
},
{
"id":697,
"carat":0.79,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":60,
"table":60,
"price":2853,
"x":6.07,
"y":6.03,
"z":3.63
},
{
"id":698,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":58,
"price":2853,
"x":5.73,
"y":5.66,
"z":3.57
},
{
"id":699,
"carat":0.82,
"cut":"Premium",
"color":"I",
"clarity":"VS1",
"depth":61.9,
"table":58,
"price":2853,
"x":5.99,
"y":5.97,
"z":3.7
},
{
"id":700,
"carat":0.78,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61.9,
"table":57.1,
"price":2854,
"x":5.87,
"y":5.95,
"z":3.66
},
{
"id":701,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62.4,
"table":56,
"price":2854,
"x":5.64,
"y":5.7,
"z":3.54
},
{
"id":702,
"carat":1.12,
"cut":"Premium",
"color":"H",
"clarity":"I1",
"depth":59.1,
"table":61,
"price":2854,
"x":6.78,
"y":6.75,
"z":4
},
{
"id":703,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62,
"table":57,
"price":2854,
"x":5.86,
"y":5.76,
"z":3.6
},
{
"id":704,
"carat":0.91,
"cut":"Fair",
"color":"J",
"clarity":"VS2",
"depth":64.4,
"table":62,
"price":2854,
"x":6.06,
"y":6.03,
"z":3.89
},
{
"id":705,
"carat":0.91,
"cut":"Fair",
"color":"J",
"clarity":"VS2",
"depth":65.4,
"table":60,
"price":2854,
"x":6.04,
"y":6,
"z":3.94
},
{
"id":706,
"carat":0.91,
"cut":"Good",
"color":"J",
"clarity":"VS2",
"depth":64.2,
"table":58,
"price":2854,
"x":6.12,
"y":6.09,
"z":3.92
},
{
"id":707,
"carat":0.91,
"cut":"Fair",
"color":"H",
"clarity":"SI1",
"depth":65.8,
"table":58,
"price":2854,
"x":6.04,
"y":6.01,
"z":3.96
},
{
"id":708,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":58.4,
"table":59,
"price":2854,
"x":5.91,
"y":5.83,
"z":3.43
},
{
"id":709,
"carat":0.68,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":61.7,
"table":57,
"price":2854,
"x":5.67,
"y":5.64,
"z":3.49
},
{
"id":710,
"carat":0.73,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.5,
"table":57,
"price":2855,
"x":5.7,
"y":5.75,
"z":3.58
},
{
"id":711,
"carat":1.03,
"cut":"Good",
"color":"J",
"clarity":"SI1",
"depth":63.6,
"table":57,
"price":2855,
"x":6.38,
"y":6.29,
"z":4.03
},
{
"id":712,
"carat":0.74,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":62.4,
"table":57,
"price":2855,
"x":5.8,
"y":5.74,
"z":3.6
},
{
"id":713,
"carat":0.98,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":53.3,
"table":67,
"price":2855,
"x":6.82,
"y":6.74,
"z":3.61
},
{
"id":714,
"carat":1.02,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":53,
"table":63,
"price":2856,
"x":6.84,
"y":6.77,
"z":3.66
},
{
"id":715,
"carat":1,
"cut":"Fair",
"color":"G",
"clarity":"SI2",
"depth":67.8,
"table":61,
"price":2856,
"x":5.96,
"y":5.9,
"z":4.02
},
{
"id":716,
"carat":1.02,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":61.6,
"table":55,
"price":2856,
"x":6.49,
"y":6.43,
"z":3.98
},
{
"id":717,
"carat":0.6,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":60.8,
"table":57,
"price":2856,
"x":5.44,
"y":5.49,
"z":3.32
},
{
"id":718,
"carat":0.8,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":61.6,
"table":56,
"price":2856,
"x":5.97,
"y":6.01,
"z":3.69
},
{
"id":719,
"carat":0.97,
"cut":"Ideal",
"color":"F",
"clarity":"I1",
"depth":60.7,
"table":56,
"price":2856,
"x":6.43,
"y":6.41,
"z":3.9
},
{
"id":720,
"carat":1,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":67.9,
"table":62,
"price":2856,
"x":6.19,
"y":6.03,
"z":4.15
},
{
"id":721,
"carat":0.26,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.3,
"table":57,
"price":556,
"x":4.05,
"y":4.08,
"z":2.53
},
{
"id":722,
"carat":0.26,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.1,
"table":56,
"price":556,
"x":4.09,
"y":4.12,
"z":2.55
},
{
"id":723,
"carat":0.36,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":556,
"x":4.57,
"y":4.59,
"z":2.83
},
{
"id":724,
"carat":0.34,
"cut":"Good",
"color":"G",
"clarity":"VS2",
"depth":57.5,
"table":61,
"price":556,
"x":4.6,
"y":4.66,
"z":2.66
},
{
"id":725,
"carat":0.34,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.3,
"table":57,
"price":556,
"x":4.44,
"y":4.47,
"z":2.82
},
{
"id":726,
"carat":0.34,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.5,
"table":55,
"price":556,
"x":4.44,
"y":4.47,
"z":2.83
},
{
"id":727,
"carat":0.34,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.4,
"table":55,
"price":556,
"x":4.44,
"y":4.46,
"z":2.82
},
{
"id":728,
"carat":0.34,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":59.6,
"table":62,
"price":556,
"x":4.54,
"y":4.56,
"z":2.71
},
{
"id":729,
"carat":0.34,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":54,
"price":556,
"x":4.47,
"y":4.5,
"z":2.79
},
{
"id":730,
"carat":0.32,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":64.1,
"table":54,
"price":556,
"x":4.34,
"y":4.37,
"z":2.79
},
{
"id":731,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":61.6,
"table":55,
"price":557,
"x":4.36,
"y":4.41,
"z":2.7
},
{
"id":732,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":61.3,
"table":56,
"price":557,
"x":4.36,
"y":4.38,
"z":2.68
},
{
"id":733,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":62.3,
"table":54,
"price":557,
"x":4.37,
"y":4.4,
"z":2.73
},
{
"id":734,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":62,
"table":54,
"price":557,
"x":4.37,
"y":4.4,
"z":2.72
},
{
"id":735,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":62.7,
"table":53,
"price":557,
"x":4.33,
"y":4.35,
"z":2.72
},
{
"id":736,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":62.2,
"table":53,
"price":557,
"x":4.36,
"y":4.38,
"z":2.72
},
{
"id":737,
"carat":0.31,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":62.2,
"table":53.6,
"price":557,
"x":4.32,
"y":4.35,
"z":2.7
},
{
"id":738,
"carat":0.31,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.6,
"table":54.8,
"price":557,
"x":4.35,
"y":4.37,
"z":2.69
},
{
"id":739,
"carat":0.31,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.8,
"table":54.2,
"price":557,
"x":4.33,
"y":4.37,
"z":2.69
},
{
"id":740,
"carat":0.33,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":59.4,
"table":59,
"price":557,
"x":4.52,
"y":4.5,
"z":2.68
},
{
"id":741,
"carat":0.33,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":58,
"price":557,
"x":4.43,
"y":4.4,
"z":2.75
},
{
"id":742,
"carat":0.33,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":62.6,
"table":58,
"price":557,
"x":4.42,
"y":4.4,
"z":2.76
},
{
"id":743,
"carat":0.33,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":61.9,
"table":56,
"price":557,
"x":4.45,
"y":4.41,
"z":2.74
},
{
"id":744,
"carat":0.33,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":63,
"table":58,
"price":557,
"x":4.42,
"y":4.4,
"z":2.78
},
{
"id":745,
"carat":0.33,
"cut":"Premium",
"color":"J",
"clarity":"VS1",
"depth":62.8,
"table":58,
"price":557,
"x":4.41,
"y":4.38,
"z":2.76
},
{
"id":746,
"carat":0.33,
"cut":"Premium",
"color":"J",
"clarity":"VS1",
"depth":61.5,
"table":61,
"price":557,
"x":4.46,
"y":4.39,
"z":2.72
},
{
"id":747,
"carat":0.33,
"cut":"Ideal",
"color":"J",
"clarity":"VS1",
"depth":62.1,
"table":55,
"price":557,
"x":4.44,
"y":4.41,
"z":2.75
},
{
"id":748,
"carat":0.33,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":63,
"table":57,
"price":557,
"x":4.39,
"y":4.37,
"z":2.76
},
{
"id":749,
"carat":0.33,
"cut":"Good",
"color":"I",
"clarity":"SI1",
"depth":63.6,
"table":53,
"price":557,
"x":4.43,
"y":4.4,
"z":2.81
},
{
"id":750,
"carat":0.33,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":60.4,
"table":59,
"price":557,
"x":4.54,
"y":4.5,
"z":2.73
},
{
"id":751,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":66.1,
"table":56,
"price":2856,
"x":6.21,
"y":5.97,
"z":4.04
},
{
"id":752,
"carat":0.77,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":60.8,
"table":59,
"price":2856,
"x":5.92,
"y":5.86,
"z":3.58
},
{
"id":753,
"carat":0.77,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61,
"table":58,
"price":2856,
"x":5.94,
"y":5.9,
"z":3.61
},
{
"id":754,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VVS2",
"depth":60.1,
"table":63,
"price":2857,
"x":5.68,
"y":5.71,
"z":3.42
},
{
"id":755,
"carat":0.9,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":63.1,
"table":58,
"price":2857,
"x":6.08,
"y":6.02,
"z":3.82
},
{
"id":756,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2857,
"x":5.76,
"y":5.7,
"z":3.57
},
{
"id":757,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":61.9,
"table":59,
"price":2857,
"x":6.2,
"y":6.14,
"z":3.82
},
{
"id":758,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.1,
"table":58,
"price":2857,
"x":5.76,
"y":5.73,
"z":3.57
},
{
"id":759,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":62.1,
"table":56,
"price":2858,
"x":5.63,
"y":5.71,
"z":3.52
},
{
"id":760,
"carat":0.81,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.3,
"table":57,
"price":2858,
"x":6.02,
"y":6.05,
"z":3.7
},
{
"id":761,
"carat":0.81,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.7,
"table":57,
"price":2858,
"x":6,
"y":6.05,
"z":3.72
},
{
"id":762,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61,
"table":60,
"price":2858,
"x":5.76,
"y":5.69,
"z":3.49
},
{
"id":763,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.4,
"table":59,
"price":2858,
"x":5.73,
"y":5.7,
"z":3.51
},
{
"id":764,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.5,
"table":60,
"price":2858,
"x":5.76,
"y":5.68,
"z":3.52
},
{
"id":765,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.5,
"table":59,
"price":2858,
"x":5.68,
"y":5.59,
"z":3.58
},
{
"id":766,
"carat":0.92,
"cut":"Premium",
"color":"J",
"clarity":"SI1",
"depth":62.9,
"table":58,
"price":2858,
"x":6.22,
"y":6.18,
"z":3.9
},
{
"id":767,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":54,
"price":2858,
"x":5.88,
"y":5.83,
"z":3.67
},
{
"id":768,
"carat":0.73,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2858,
"x":5.84,
"y":5.8,
"z":3.58
},
{
"id":769,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":60.4,
"table":62,
"price":2858,
"x":5.74,
"y":5.72,
"z":3.46
},
{
"id":770,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VVS2",
"depth":63.6,
"table":62,
"price":2858,
"x":5.61,
"y":5.58,
"z":3.56
},
{
"id":771,
"carat":0.9,
"cut":"Fair",
"color":"G",
"clarity":"SI2",
"depth":64.5,
"table":56,
"price":2858,
"x":6.06,
"y":6,
"z":3.89
},
{
"id":772,
"carat":0.71,
"cut":"Fair",
"color":"D",
"clarity":"VS2",
"depth":56.9,
"table":65,
"price":2858,
"x":5.89,
"y":5.84,
"z":3.34
},
{
"id":773,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":61,
"table":57,
"price":2859,
"x":5.76,
"y":5.74,
"z":3.51
},
{
"id":774,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":62.4,
"table":56,
"price":2859,
"x":5.72,
"y":5.66,
"z":3.55
},
{
"id":775,
"carat":0.77,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":60.9,
"table":60,
"price":2859,
"x":5.91,
"y":5.88,
"z":3.59
},
{
"id":776,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.5,
"table":56,
"price":2859,
"x":5.74,
"y":5.78,
"z":3.54
},
{
"id":777,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":59.6,
"table":61,
"price":2859,
"x":5.8,
"y":5.77,
"z":3.45
},
{
"id":778,
"carat":0.75,
"cut":"Fair",
"color":"F",
"clarity":"VS1",
"depth":55.8,
"table":70,
"price":2859,
"x":6.09,
"y":5.98,
"z":3.37
},
{
"id":779,
"carat":0.83,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":59.2,
"table":60,
"price":2859,
"x":6.17,
"y":6.12,
"z":3.64
},
{
"id":780,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":61.3,
"table":61,
"price":2860,
"x":5.68,
"y":5.73,
"z":3.5
},
{
"id":781,
"carat":0.9,
"cut":"Very Good",
"color":"J",
"clarity":"SI2",
"depth":63.6,
"table":58,
"price":2860,
"x":6.07,
"y":6.1,
"z":3.87
},
{
"id":782,
"carat":0.6,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":61.9,
"table":54.9,
"price":2860,
"x":5.41,
"y":5.44,
"z":3.35
},
{
"id":783,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS1",
"depth":62.9,
"table":57,
"price":2860,
"x":5.66,
"y":5.6,
"z":3.54
},
{
"id":784,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.4,
"table":57,
"price":2860,
"x":5.23,
"y":5.2,
"z":3.2
},
{
"id":785,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.7,
"table":58,
"price":2861,
"x":5.95,
"y":5.78,
"z":3.56
},
{
"id":786,
"carat":0.62,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.6,
"table":56,
"price":2861,
"x":5.45,
"y":5.48,
"z":3.37
},
{
"id":787,
"carat":0.62,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.6,
"table":56,
"price":2861,
"x":5.48,
"y":5.51,
"z":3.38
},
{
"id":788,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":63,
"table":58,
"price":2861,
"x":6.09,
"y":6.01,
"z":3.81
},
{
"id":789,
"carat":0.62,
"cut":"Fair",
"color":"F",
"clarity":"IF",
"depth":60.1,
"table":61,
"price":2861,
"x":5.53,
"y":5.56,
"z":3.33
},
{
"id":790,
"carat":0.82,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":61.7,
"table":59,
"price":2861,
"x":6.01,
"y":5.98,
"z":3.7
},
{
"id":791,
"carat":0.66,
"cut":"Premium",
"color":"D",
"clarity":"VS1",
"depth":61,
"table":58,
"price":2861,
"x":5.67,
"y":5.57,
"z":3.43
},
{
"id":792,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.5,
"table":55,
"price":2862,
"x":5.67,
"y":5.72,
"z":3.56
},
{
"id":793,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":62.6,
"table":58,
"price":2862,
"x":5.9,
"y":5.92,
"z":3.7
},
{
"id":794,
"carat":0.8,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":62.5,
"table":59,
"price":2862,
"x":5.88,
"y":5.92,
"z":3.69
},
{
"id":795,
"carat":0.79,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":62.3,
"table":54,
"price":2862,
"x":5.97,
"y":5.91,
"z":3.7
},
{
"id":796,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VVS1",
"depth":63.2,
"table":60,
"price":2862,
"x":5.65,
"y":5.61,
"z":3.56
},
{
"id":797,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.1,
"table":57,
"price":2862,
"x":5.71,
"y":5.74,
"z":3.5
},
{
"id":798,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":58.7,
"table":63,
"price":2862,
"x":5.73,
"y":5.69,
"z":3.35
},
{
"id":799,
"carat":0.79,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":60,
"table":60,
"price":2862,
"x":6.07,
"y":5.99,
"z":3.64
},
{
"id":800,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":59.5,
"table":59,
"price":2862,
"x":5.82,
"y":5.77,
"z":3.45
},
{
"id":801,
"carat":1.22,
"cut":"Premium",
"color":"E",
"clarity":"I1",
"depth":60.9,
"table":57,
"price":2862,
"x":6.93,
"y":6.88,
"z":4.21
},
{
"id":802,
"carat":1.01,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":67.6,
"table":57,
"price":2862,
"x":6.21,
"y":6.11,
"z":4.18
},
{
"id":803,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.5,
"table":61,
"price":2862,
"x":5.78,
"y":5.64,
"z":3.59
},
{
"id":804,
"carat":0.91,
"cut":"Good",
"color":"I",
"clarity":"VS2",
"depth":64.3,
"table":58,
"price":2863,
"x":6.05,
"y":6.09,
"z":3.9
},
{
"id":805,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":60.8,
"table":56,
"price":2863,
"x":5.8,
"y":5.77,
"z":3.52
},
{
"id":806,
"carat":0.83,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":58,
"price":2863,
"x":6.01,
"y":5.97,
"z":3.73
},
{
"id":807,
"carat":0.84,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":59,
"price":2863,
"x":6.06,
"y":6.01,
"z":3.76
},
{
"id":808,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61,
"table":61,
"price":2863,
"x":5.82,
"y":5.75,
"z":3.53
},
{
"id":809,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":59.7,
"table":59,
"price":2863,
"x":5.82,
"y":5.8,
"z":3.47
},
{
"id":810,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.7,
"table":56,
"price":2863,
"x":5.8,
"y":5.68,
"z":3.54
},
{
"id":811,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.7,
"table":57,
"price":2863,
"x":5.75,
"y":5.7,
"z":3.53
},
{
"id":812,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":58,
"price":2863,
"x":5.79,
"y":5.75,
"z":3.54
},
{
"id":813,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.6,
"table":58,
"price":2863,
"x":5.79,
"y":5.77,
"z":3.5
},
{
"id":814,
"carat":0.91,
"cut":"Premium",
"color":"J",
"clarity":"SI1",
"depth":59.5,
"table":62,
"price":2863,
"x":6.4,
"y":6.18,
"z":3.74
},
{
"id":815,
"carat":0.9,
"cut":"Premium",
"color":"J",
"clarity":"VS2",
"depth":59.8,
"table":62,
"price":2863,
"x":6.24,
"y":6.21,
"z":3.72
},
{
"id":816,
"carat":0.71,
"cut":"Premium",
"color":"H",
"clarity":"VVS2",
"depth":61.5,
"table":62,
"price":2863,
"x":5.74,
"y":5.68,
"z":3.51
},
{
"id":817,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.1,
"table":61,
"price":2863,
"x":5.84,
"y":5.8,
"z":3.44
},
{
"id":818,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":59.5,
"table":57,
"price":2863,
"x":5.91,
"y":5.86,
"z":3.5
},
{
"id":819,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":60.9,
"table":60,
"price":2863,
"x":5.78,
"y":5.74,
"z":3.51
},
{
"id":820,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61,
"table":55,
"price":2863,
"x":5.79,
"y":5.75,
"z":3.52
},
{
"id":821,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":60.3,
"table":57,
"price":2864,
"x":6.07,
"y":6.04,
"z":3.65
},
{
"id":822,
"carat":0.83,
"cut":"Very Good",
"color":"I",
"clarity":"VS2",
"depth":61.6,
"table":58,
"price":2865,
"x":6.05,
"y":6.07,
"z":3.73
},
{
"id":823,
"carat":0.73,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.8,
"table":55,
"price":2865,
"x":5.87,
"y":5.81,
"z":3.55
},
{
"id":824,
"carat":0.56,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":62,
"table":56,
"price":2866,
"x":5.25,
"y":5.3,
"z":3.27
},
{
"id":825,
"carat":0.56,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":61.8,
"table":55,
"price":2866,
"x":5.27,
"y":5.31,
"z":3.27
},
{
"id":826,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.2,
"table":55,
"price":2866,
"x":5.74,
"y":5.7,
"z":3.56
},
{
"id":827,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.3,
"table":58,
"price":2866,
"x":5.66,
"y":5.7,
"z":3.54
},
{
"id":828,
"carat":0.96,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2866,
"x":6.39,
"y":6.3,
"z":3.89
},
{
"id":829,
"carat":0.71,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":62.9,
"table":57,
"price":2867,
"x":5.67,
"y":5.69,
"z":3.57
},
{
"id":830,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":62.4,
"table":57,
"price":2867,
"x":5.68,
"y":5.61,
"z":3.52
},
{
"id":831,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":60.4,
"table":57,
"price":2867,
"x":5.78,
"y":5.81,
"z":3.5
},
{
"id":832,
"carat":0.8,
"cut":"Premium",
"color":"H",
"clarity":"VS2",
"depth":61.2,
"table":53,
"price":2867,
"x":6.05,
"y":5.98,
"z":3.68
},
{
"id":833,
"carat":0.95,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":58.4,
"table":57,
"price":2867,
"x":6.49,
"y":6.41,
"z":3.77
},
{
"id":834,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":56,
"price":2867,
"x":5.99,
"y":5.95,
"z":3.72
},
{
"id":835,
"carat":0.52,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.2,
"table":56,
"price":2867,
"x":5.21,
"y":5.19,
"z":3.18
},
{
"id":836,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":61.7,
"table":53,
"price":2867,
"x":6.12,
"y":6,
"z":3.74
},
{
"id":837,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":56,
"price":2867,
"x":6.02,
"y":5.96,
"z":3.73
},
{
"id":838,
"carat":0.82,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":59.7,
"table":57,
"price":2867,
"x":6.14,
"y":6.12,
"z":3.66
},
{
"id":839,
"carat":0.8,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.3,
"table":57,
"price":2867,
"x":5.96,
"y":5.91,
"z":3.64
},
{
"id":840,
"carat":0.96,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":68.2,
"table":61,
"price":2867,
"x":6.07,
"y":5.88,
"z":4.1
},
{
"id":841,
"carat":0.72,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62.4,
"table":55,
"price":2868,
"x":5.72,
"y":5.75,
"z":3.58
},
{
"id":842,
"carat":0.62,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":60.5,
"table":57,
"price":2868,
"x":5.52,
"y":5.56,
"z":3.35
},
{
"id":843,
"carat":0.79,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":61,
"table":58,
"price":2868,
"x":5.96,
"y":5.9,
"z":3.62
},
{
"id":844,
"carat":0.75,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.1,
"table":56,
"price":2868,
"x":5.78,
"y":5.7,
"z":3.62
},
{
"id":845,
"carat":1.08,
"cut":"Premium",
"color":"D",
"clarity":"I1",
"depth":61.9,
"table":60,
"price":2869,
"x":6.55,
"y":6.48,
"z":4.03
},
{
"id":846,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.8,
"table":55,
"price":2869,
"x":5.77,
"y":5.84,
"z":3.53
},
{
"id":847,
"carat":0.62,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.8,
"table":56,
"price":2869,
"x":5.43,
"y":5.47,
"z":3.37
},
{
"id":848,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.3,
"table":57,
"price":2869,
"x":5.84,
"y":5.81,
"z":3.57
},
{
"id":849,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS2",
"depth":60.9,
"table":57,
"price":2869,
"x":5.79,
"y":5.77,
"z":3.52
},
{
"id":850,
"carat":0.52,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":61.8,
"table":60,
"price":2870,
"x":5.16,
"y":5.13,
"z":3.18
},
{
"id":851,
"carat":0.83,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.2,
"table":57,
"price":2870,
"x":6,
"y":6.05,
"z":3.75
},
{
"id":852,
"carat":0.64,
"cut":"Premium",
"color":"E",
"clarity":"VVS2",
"depth":62.1,
"table":58,
"price":2870,
"x":5.56,
"y":5.51,
"z":3.44
},
{
"id":853,
"carat":0.8,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":2870,
"x":5.94,
"y":5.9,
"z":3.7
},
{
"id":854,
"carat":0.74,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.1,
"table":56,
"price":2870,
"x":5.77,
"y":5.83,
"z":3.6
},
{
"id":855,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2870,
"x":5.72,
"y":5.79,
"z":3.54
},
{
"id":856,
"carat":0.82,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":59.5,
"table":57,
"price":2870,
"x":6.12,
"y":6.09,
"z":3.63
},
{
"id":857,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":61.3,
"table":59,
"price":2870,
"x":5.81,
"y":5.78,
"z":3.55
},
{
"id":858,
"carat":1.04,
"cut":"Premium",
"color":"I",
"clarity":"I1",
"depth":61.6,
"table":61,
"price":2870,
"x":6.47,
"y":6.45,
"z":3.98
},
{
"id":859,
"carat":0.73,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2871,
"x":5.76,
"y":5.83,
"z":3.55
},
{
"id":860,
"carat":0.73,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.6,
"table":57,
"price":2871,
"x":5.7,
"y":5.72,
"z":3.63
},
{
"id":861,
"carat":0.9,
"cut":"Premium",
"color":"J",
"clarity":"SI1",
"depth":62.8,
"table":59,
"price":2871,
"x":6.13,
"y":6.03,
"z":3.82
},
{
"id":862,
"carat":0.75,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.8,
"table":55,
"price":2871,
"x":5.83,
"y":5.85,
"z":3.61
},
{
"id":863,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.6,
"table":55,
"price":2871,
"x":5.91,
"y":5.95,
"z":3.71
},
{
"id":864,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"SI1",
"depth":62.5,
"table":56.7,
"price":2872,
"x":5.59,
"y":5.62,
"z":3.51
},
{
"id":865,
"carat":0.75,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":60.7,
"table":55,
"price":2872,
"x":5.87,
"y":5.92,
"z":3.58
},
{
"id":866,
"carat":1.02,
"cut":"Ideal",
"color":"I",
"clarity":"I1",
"depth":61.7,
"table":56,
"price":2872,
"x":6.44,
"y":6.49,
"z":3.99
},
{
"id":867,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":59,
"table":62,
"price":2872,
"x":5.79,
"y":5.81,
"z":3.42
},
{
"id":868,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.8,
"table":56,
"price":2872,
"x":5.63,
"y":5.73,
"z":3.51
},
{
"id":869,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":64,
"price":2872,
"x":5.66,
"y":5.71,
"z":3.49
},
{
"id":870,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":54,
"price":2872,
"x":5.71,
"y":5.75,
"z":3.52
},
{
"id":871,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":60.7,
"table":56,
"price":2872,
"x":5.72,
"y":5.75,
"z":3.48
},
{
"id":872,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":60.2,
"table":60,
"price":2872,
"x":5.75,
"y":5.82,
"z":3.48
},
{
"id":873,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":58.3,
"table":57,
"price":2872,
"x":5.89,
"y":5.94,
"z":3.45
},
{
"id":874,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.3,
"table":58,
"price":2872,
"x":5.74,
"y":5.78,
"z":3.59
},
{
"id":875,
"carat":0.84,
"cut":"Good",
"color":"G",
"clarity":"SI1",
"depth":65.1,
"table":55,
"price":2872,
"x":5.88,
"y":5.97,
"z":3.86
},
{
"id":876,
"carat":0.76,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62,
"table":58,
"price":2873,
"x":5.8,
"y":5.86,
"z":3.62
},
{
"id":877,
"carat":0.77,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.2,
"table":58,
"price":2873,
"x":5.8,
"y":5.84,
"z":3.68
},
{
"id":878,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.8,
"table":56,
"price":2873,
"x":5.78,
"y":5.82,
"z":3.64
},
{
"id":879,
"carat":1,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.7,
"table":56,
"price":2873,
"x":6.45,
"y":6.41,
"z":3.97
},
{
"id":880,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI1",
"depth":65.5,
"table":62,
"price":2873,
"x":6.14,
"y":6.07,
"z":4
},
{
"id":881,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":65.7,
"table":58,
"price":2873,
"x":6.03,
"y":6,
"z":3.95
},
{
"id":882,
"carat":0.9,
"cut":"Premium",
"color":"J",
"clarity":"SI1",
"depth":61.8,
"table":58,
"price":2873,
"x":6.16,
"y":6.13,
"z":3.8
},
{
"id":883,
"carat":0.9,
"cut":"Good",
"color":"J",
"clarity":"SI1",
"depth":64,
"table":61,
"price":2873,
"x":6,
"y":5.96,
"z":3.83
},
{
"id":884,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":65.3,
"table":61,
"price":2873,
"x":5.98,
"y":5.94,
"z":3.89
},
{
"id":885,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":65.8,
"table":56,
"price":2873,
"x":6.01,
"y":5.96,
"z":3.94
},
{
"id":886,
"carat":0.9,
"cut":"Premium",
"color":"J",
"clarity":"SI1",
"depth":60.9,
"table":61,
"price":2873,
"x":6.26,
"y":6.22,
"z":3.8
},
{
"id":887,
"carat":0.78,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":2874,
"x":5.91,
"y":5.82,
"z":3.67
},
{
"id":888,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":61.2,
"table":59,
"price":2874,
"x":5.69,
"y":5.74,
"z":3.5
},
{
"id":889,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":59,
"table":59,
"price":2874,
"x":5.79,
"y":5.77,
"z":3.41
},
{
"id":890,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":60.8,
"table":62,
"price":2874,
"x":5.71,
"y":5.67,
"z":3.46
},
{
"id":891,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":61.8,
"table":58,
"price":2874,
"x":5.67,
"y":5.63,
"z":3.49
},
{
"id":892,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61,
"table":55,
"price":2874,
"x":5.77,
"y":5.73,
"z":3.51
},
{
"id":893,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.6,
"table":55,
"price":2874,
"x":5.75,
"y":5.71,
"z":3.53
},
{
"id":894,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.4,
"table":56,
"price":2874,
"x":5.69,
"y":5.65,
"z":3.54
},
{
"id":895,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":62.9,
"table":59,
"price":2874,
"x":5.68,
"y":5.61,
"z":3.55
},
{
"id":896,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":67.7,
"table":60,
"price":2875,
"x":6.11,
"y":5.98,
"z":4.09
},
{
"id":897,
"carat":0.77,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.4,
"table":56,
"price":2875,
"x":5.84,
"y":5.9,
"z":3.66
},
{
"id":898,
"carat":1,
"cut":"Fair",
"color":"J",
"clarity":"VS1",
"depth":65.5,
"table":55,
"price":2875,
"x":6.3,
"y":6.25,
"z":4.11
},
{
"id":899,
"carat":1,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":66.3,
"table":61,
"price":2875,
"x":6.08,
"y":6.03,
"z":4.01
},
{
"id":900,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":69.5,
"table":55,
"price":2875,
"x":6.17,
"y":6.1,
"z":4.26
},
{
"id":901,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.6,
"table":60,
"price":2876,
"x":5.68,
"y":5.75,
"z":3.58
},
{
"id":902,
"carat":0.79,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":60.6,
"table":53,
"price":2876,
"x":6.04,
"y":5.98,
"z":3.64
},
{
"id":903,
"carat":0.72,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":62.2,
"table":54,
"price":2877,
"x":5.74,
"y":5.76,
"z":3.57
},
{
"id":904,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.4,
"table":56,
"price":2877,
"x":5.75,
"y":5.7,
"z":3.57
},
{
"id":905,
"carat":0.74,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":62.3,
"table":55,
"price":2877,
"x":5.8,
"y":5.83,
"z":3.62
},
{
"id":906,
"carat":0.7,
"cut":"Good",
"color":"H",
"clarity":"VVS1",
"depth":62.7,
"table":56,
"price":2877,
"x":5.6,
"y":5.66,
"z":3.53
},
{
"id":907,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":59.1,
"table":62,
"price":2877,
"x":5.82,
"y":5.86,
"z":3.44
},
{
"id":908,
"carat":0.79,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":62.8,
"table":59,
"price":2878,
"x":5.86,
"y":5.89,
"z":3.69
},
{
"id":909,
"carat":0.79,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":62.7,
"table":60,
"price":2878,
"x":5.82,
"y":5.89,
"z":3.67
},
{
"id":910,
"carat":0.79,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":59.7,
"table":58,
"price":2878,
"x":6,
"y":6.07,
"z":3.6
},
{
"id":911,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.5,
"table":55,
"price":2878,
"x":5.76,
"y":5.78,
"z":3.55
},
{
"id":912,
"carat":0.79,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.8,
"table":56,
"price":2878,
"x":5.88,
"y":5.9,
"z":3.7
},
{
"id":913,
"carat":0.73,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2879,
"x":5.81,
"y":5.86,
"z":3.58
},
{
"id":914,
"carat":0.63,
"cut":"Premium",
"color":"E",
"clarity":"IF",
"depth":60.3,
"table":62,
"price":2879,
"x":5.55,
"y":5.53,
"z":3.34
},
{
"id":915,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":60.4,
"table":60,
"price":2879,
"x":5.73,
"y":5.7,
"z":3.45
},
{
"id":916,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.7,
"table":58,
"price":2879,
"x":5.71,
"y":5.67,
"z":3.57
},
{
"id":917,
"carat":0.84,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":61,
"table":56,
"price":2879,
"x":6.13,
"y":6.1,
"z":3.73
},
{
"id":918,
"carat":0.84,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62.3,
"table":55,
"price":2879,
"x":6.08,
"y":6.03,
"z":3.77
},
{
"id":919,
"carat":1.02,
"cut":"Ideal",
"color":"J",
"clarity":"SI2",
"depth":60.3,
"table":54,
"price":2879,
"x":6.53,
"y":6.5,
"z":3.93
},
{
"id":920,
"carat":0.72,
"cut":"Fair",
"color":"F",
"clarity":"VS1",
"depth":56.9,
"table":69,
"price":2879,
"x":5.93,
"y":5.77,
"z":3.33
},
{
"id":921,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62,
"table":56,
"price":2879,
"x":5.76,
"y":5.73,
"z":3.56
},
{
"id":922,
"carat":0.92,
"cut":"Very Good",
"color":"J",
"clarity":"SI2",
"depth":58.7,
"table":61,
"price":2880,
"x":6.34,
"y":6.43,
"z":3.75
},
{
"id":923,
"carat":0.74,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.9,
"table":57,
"price":2880,
"x":5.72,
"y":5.74,
"z":3.66
},
{
"id":924,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62,
"table":55,
"price":2881,
"x":5.74,
"y":5.71,
"z":3.55
},
{
"id":925,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":60,
"table":59,
"price":2881,
"x":5.84,
"y":5.83,
"z":3.5
},
{
"id":926,
"carat":1.05,
"cut":"Premium",
"color":"H",
"clarity":"I1",
"depth":62,
"table":59,
"price":2881,
"x":6.5,
"y":6.47,
"z":4.02
},
{
"id":927,
"carat":0.7,
"cut":"Very Good",
"color":"H",
"clarity":"IF",
"depth":62.8,
"table":56,
"price":2882,
"x":5.62,
"y":5.65,
"z":3.54
},
{
"id":928,
"carat":0.54,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.8,
"table":56,
"price":2882,
"x":5.23,
"y":5.26,
"z":3.24
},
{
"id":929,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.9,
"table":58,
"price":2882,
"x":5.87,
"y":5.84,
"z":3.51
},
{
"id":930,
"carat":0.88,
"cut":"Fair",
"color":"F",
"clarity":"SI1",
"depth":56.6,
"table":65,
"price":2882,
"x":6.39,
"y":6.32,
"z":3.6
},
{
"id":931,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":58.7,
"table":57,
"price":2882,
"x":5.97,
"y":5.92,
"z":3.49
},
{
"id":932,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.8,
"table":56,
"price":2883,
"x":5.75,
"y":5.81,
"z":3.57
},
{
"id":933,
"carat":0.9,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":62.7,
"table":64,
"price":2883,
"x":6.09,
"y":6,
"z":3.79
},
{
"id":934,
"carat":0.9,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":65,
"table":61,
"price":2883,
"x":6.01,
"y":5.96,
"z":3.89
},
{
"id":935,
"carat":1.03,
"cut":"Fair",
"color":"I",
"clarity":"SI2",
"depth":65.3,
"table":55,
"price":2884,
"x":6.32,
"y":6.27,
"z":4.11
},
{
"id":936,
"carat":0.84,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.8,
"table":57,
"price":2885,
"x":5.95,
"y":6,
"z":3.81
},
{
"id":937,
"carat":1.01,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":62.7,
"table":60,
"price":2885,
"x":6.36,
"y":6.27,
"z":3.96
},
{
"id":938,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":61.5,
"table":55,
"price":2885,
"x":5.9,
"y":5.93,
"z":3.64
},
{
"id":939,
"carat":0.8,
"cut":"Fair",
"color":"E",
"clarity":"SI1",
"depth":56.3,
"table":63,
"price":2885,
"x":6.22,
"y":6.14,
"z":3.48
},
{
"id":940,
"carat":0.9,
"cut":"Fair",
"color":"D",
"clarity":"SI2",
"depth":66.9,
"table":57,
"price":2885,
"x":6.02,
"y":5.9,
"z":3.99
},
{
"id":941,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2886,
"x":5.79,
"y":5.81,
"z":3.56
},
{
"id":942,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":55,
"price":2886,
"x":5.64,
"y":5.69,
"z":3.55
},
{
"id":943,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.4,
"table":54,
"price":2887,
"x":5.71,
"y":5.79,
"z":3.59
},
{
"id":944,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.6,
"table":59,
"price":2887,
"x":5.66,
"y":5.69,
"z":3.55
},
{
"id":945,
"carat":0.79,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.7,
"table":59,
"price":2888,
"x":5.93,
"y":5.96,
"z":3.67
},
{
"id":946,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":62.5,
"table":58,
"price":2889,
"x":5.68,
"y":5.72,
"z":3.56
},
{
"id":947,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.5,
"table":54,
"price":2889,
"x":5.62,
"y":5.66,
"z":3.58
},
{
"id":948,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2889,
"x":5.64,
"y":5.75,
"z":3.54
},
{
"id":949,
"carat":0.9,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.5,
"table":58,
"price":2889,
"x":6.09,
"y":6.14,
"z":3.88
},
{
"id":950,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.8,
"table":56,
"price":2889,
"x":5.69,
"y":5.72,
"z":3.58
},
{
"id":951,
"carat":0.5,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.2,
"table":54,
"price":2889,
"x":5.08,
"y":5.12,
"z":3.17
},
{
"id":952,
"carat":0.5,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.2,
"table":54,
"price":2889,
"x":5.09,
"y":5.11,
"z":3.17
},
{
"id":953,
"carat":0.74,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.2,
"table":56,
"price":2889,
"x":5.83,
"y":5.87,
"z":3.58
},
{
"id":954,
"carat":0.77,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.8,
"table":56,
"price":2889,
"x":5.94,
"y":5.9,
"z":3.66
},
{
"id":955,
"carat":0.77,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":59.8,
"table":61,
"price":2889,
"x":5.99,
"y":5.95,
"z":3.57
},
{
"id":956,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.5,
"table":54,
"price":2890,
"x":6.07,
"y":6,
"z":3.71
},
{
"id":957,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":2890,
"x":5.9,
"y":5.87,
"z":3.67
},
{
"id":958,
"carat":0.8,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.5,
"table":60,
"price":2890,
"x":5.97,
"y":5.94,
"z":3.66
},
{
"id":959,
"carat":0.8,
"cut":"Good",
"color":"F",
"clarity":"SI1",
"depth":63.8,
"table":59,
"price":2890,
"x":5.87,
"y":5.83,
"z":3.73
},
{
"id":960,
"carat":0.66,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.5,
"table":56,
"price":2890,
"x":5.61,
"y":5.58,
"z":3.44
},
{
"id":961,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":61.2,
"table":58,
"price":2891,
"x":5.71,
"y":5.79,
"z":3.52
},
{
"id":962,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.2,
"table":56,
"price":2891,
"x":5.73,
"y":5.77,
"z":3.52
},
{
"id":963,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.6,
"table":56,
"price":2891,
"x":5.74,
"y":5.76,
"z":3.54
},
{
"id":964,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":56,
"price":2891,
"x":5.71,
"y":5.75,
"z":3.59
},
{
"id":965,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.1,
"table":56,
"price":2891,
"x":5.78,
"y":5.81,
"z":3.54
},
{
"id":966,
"carat":0.71,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":62.3,
"table":61,
"price":2891,
"x":5.7,
"y":5.73,
"z":3.56
},
{
"id":967,
"carat":0.86,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":61.8,
"table":55,
"price":2892,
"x":6.12,
"y":6.14,
"z":3.79
},
{
"id":968,
"carat":1.19,
"cut":"Fair",
"color":"H",
"clarity":"I1",
"depth":65.1,
"table":59,
"price":2892,
"x":6.62,
"y":6.55,
"z":4.29
},
{
"id":969,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.6,
"table":55,
"price":2893,
"x":5.66,
"y":5.71,
"z":3.56
},
{
"id":970,
"carat":0.82,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":62.5,
"table":56,
"price":2893,
"x":5.99,
"y":6.04,
"z":3.76
},
{
"id":971,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.5,
"table":57,
"price":2893,
"x":5.73,
"y":5.75,
"z":3.53
},
{
"id":972,
"carat":0.75,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.5,
"table":57,
"price":2893,
"x":5.78,
"y":5.83,
"z":3.63
},
{
"id":973,
"carat":0.7,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":59.2,
"table":60,
"price":2893,
"x":5.87,
"y":5.78,
"z":3.45
},
{
"id":974,
"carat":0.8,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62.5,
"table":55,
"price":2893,
"x":5.89,
"y":5.92,
"z":3.69
},
{
"id":975,
"carat":0.82,
"cut":"Good",
"color":"G",
"clarity":"SI2",
"depth":59.9,
"table":62,
"price":2893,
"x":6.02,
"y":6.04,
"z":3.61
},
{
"id":976,
"carat":0.82,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":63.4,
"table":55,
"price":2893,
"x":6,
"y":5.93,
"z":3.78
},
{
"id":977,
"carat":0.82,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":59.9,
"table":59,
"price":2893,
"x":6.09,
"y":6.06,
"z":3.64
},
{
"id":978,
"carat":0.81,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":62.4,
"table":57,
"price":2894,
"x":5.91,
"y":5.99,
"z":3.71
},
{
"id":979,
"carat":0.81,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62.2,
"table":57,
"price":2894,
"x":5.96,
"y":6,
"z":3.72
},
{
"id":980,
"carat":0.76,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2894,
"x":5.88,
"y":5.92,
"z":3.62
},
{
"id":981,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":60.9,
"table":56,
"price":2895,
"x":5.75,
"y":5.78,
"z":3.51
},
{
"id":982,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":61.8,
"table":59,
"price":2895,
"x":5.66,
"y":5.76,
"z":3.53
},
{
"id":983,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":62.1,
"table":53,
"price":2895,
"x":5.71,
"y":5.75,
"z":3.56
},
{
"id":984,
"carat":0.74,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":59.8,
"table":58,
"price":2896,
"x":5.85,
"y":5.89,
"z":3.51
},
{
"id":985,
"carat":0.77,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":60,
"price":2896,
"x":5.81,
"y":5.91,
"z":3.59
},
{
"id":986,
"carat":0.77,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":58.3,
"table":63,
"price":2896,
"x":6,
"y":6.05,
"z":3.51
},
{
"id":987,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.6,
"table":56,
"price":2896,
"x":5.18,
"y":5.24,
"z":3.21
},
{
"id":988,
"carat":0.79,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2896,
"x":5.91,
"y":5.96,
"z":3.65
},
{
"id":989,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.5,
"table":55,
"price":2896,
"x":5.82,
"y":5.86,
"z":3.59
},
{
"id":990,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.1,
"table":56,
"price":2896,
"x":5.83,
"y":5.89,
"z":3.64
},
{
"id":991,
"carat":0.77,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":60.9,
"table":58,
"price":2896,
"x":5.94,
"y":5.88,
"z":3.6
},
{
"id":992,
"carat":1.01,
"cut":"Very Good",
"color":"I",
"clarity":"I1",
"depth":63.1,
"table":57,
"price":2896,
"x":6.39,
"y":6.35,
"z":4.02
},
{
"id":993,
"carat":1.01,
"cut":"Ideal",
"color":"I",
"clarity":"I1",
"depth":61.5,
"table":57,
"price":2896,
"x":6.46,
"y":6.45,
"z":3.97
},
{
"id":994,
"carat":0.6,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":60.6,
"table":57,
"price":2897,
"x":5.48,
"y":5.51,
"z":3.33
},
{
"id":995,
"carat":0.76,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.1,
"table":58,
"price":2897,
"x":5.91,
"y":5.85,
"z":3.59
},
{
"id":996,
"carat":0.54,
"cut":"Ideal",
"color":"D",
"clarity":"VVS2",
"depth":61.4,
"table":52,
"price":2897,
"x":5.3,
"y":5.34,
"z":3.26
},
{
"id":997,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.5,
"table":55,
"price":2897,
"x":5.69,
"y":5.74,
"z":3.57
},
{
"id":998,
"carat":0.72,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":59.4,
"table":61,
"price":2897,
"x":5.82,
"y":5.89,
"z":3.48
},
{
"id":999,
"carat":0.74,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":61.8,
"table":58,
"price":2897,
"x":5.81,
"y":5.77,
"z":3.58
},
{
"id":1000,
"carat":1.12,
"cut":"Premium",
"color":"J",
"clarity":"SI2",
"depth":60.6,
"table":59,
"price":2898,
"x":6.68,
"y":6.61,
"z":4.03
},
{
"id":1001,
"carat":0.75,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.3,
"table":55,
"price":2898,
"x":5.83,
"y":5.8,
"z":3.62
},
{
"id":1002,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.6,
"table":57,
"price":2898,
"x":5.92,
"y":5.81,
"z":3.67
},
{
"id":1003,
"carat":0.98,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":57.9,
"table":56,
"price":2898,
"x":6.51,
"y":6.47,
"z":3.76
},
{
"id":1004,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.1,
"table":57,
"price":2898,
"x":5.98,
"y":5.93,
"z":3.64
},
{
"id":1005,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2898,
"x":5.9,
"y":5.85,
"z":3.66
},
{
"id":1006,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2898,
"x":5.9,
"y":5.85,
"z":3.66
},
{
"id":1007,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2898,
"x":5.9,
"y":5.85,
"z":3.66
},
{
"id":1008,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2898,
"x":5.9,
"y":5.85,
"z":3.66
},
{
"id":1009,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2898,
"x":5.9,
"y":5.85,
"z":3.66
},
{
"id":1010,
"carat":0.7,
"cut":"Good",
"color":"G",
"clarity":"VVS1",
"depth":59.9,
"table":61,
"price":2899,
"x":5.75,
"y":5.81,
"z":3.46
},
{
"id":1011,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.9,
"table":58,
"price":2900,
"x":5.71,
"y":5.72,
"z":3.54
},
{
"id":1012,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"VS1",
"depth":62.7,
"table":58,
"price":2900,
"x":5.68,
"y":5.65,
"z":3.55
},
{
"id":1013,
"carat":0.8,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":62.7,
"table":58,
"price":2901,
"x":5.91,
"y":5.93,
"z":3.71
},
{
"id":1014,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":63,
"table":56,
"price":2901,
"x":5.95,
"y":5.9,
"z":3.73
},
{
"id":1015,
"carat":0.81,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":62.5,
"table":59,
"price":2901,
"x":5.97,
"y":5.9,
"z":3.71
},
{
"id":1016,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.9,
"table":57,
"price":2901,
"x":5.81,
"y":5.78,
"z":3.59
},
{
"id":1017,
"carat":0.73,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62,
"table":60,
"price":2902,
"x":5.76,
"y":5.73,
"z":3.56
},
{
"id":1018,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.4,
"table":55,
"price":2902,
"x":5.82,
"y":5.8,
"z":3.57
},
{
"id":1019,
"carat":0.75,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":2902,
"x":5.82,
"y":5.86,
"z":3.6
},
{
"id":1020,
"carat":0.71,
"cut":"Fair",
"color":"E",
"clarity":"VS2",
"depth":64.6,
"table":59,
"price":2902,
"x":5.62,
"y":5.59,
"z":3.62
},
{
"id":1021,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":59.6,
"table":60,
"price":2902,
"x":5.85,
"y":5.8,
"z":3.47
},
{
"id":1022,
"carat":0.75,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.8,
"table":60,
"price":2903,
"x":5.78,
"y":5.74,
"z":3.62
},
{
"id":1023,
"carat":0.75,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2903,
"x":5.83,
"y":5.8,
"z":3.62
},
{
"id":1024,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":2903,
"x":5.78,
"y":5.75,
"z":3.57
},
{
"id":1025,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":59,
"price":2903,
"x":5.79,
"y":5.71,
"z":3.53
},
{
"id":1026,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.1,
"table":59,
"price":2903,
"x":5.8,
"y":5.75,
"z":3.53
},
{
"id":1027,
"carat":0.79,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63,
"table":54,
"price":2904,
"x":5.91,
"y":5.94,
"z":3.73
},
{
"id":1028,
"carat":0.79,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":62.8,
"table":57,
"price":2904,
"x":5.85,
"y":5.9,
"z":3.69
},
{
"id":1029,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":58.4,
"table":59,
"price":2904,
"x":5.83,
"y":5.91,
"z":3.43
},
{
"id":1030,
"carat":0.62,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62,
"table":56,
"price":2904,
"x":5.48,
"y":5.52,
"z":3.41
},
{
"id":1031,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":59.3,
"table":62,
"price":2905,
"x":5.78,
"y":5.82,
"z":3.44
},
{
"id":1032,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":63.4,
"table":59,
"price":2905,
"x":5.62,
"y":5.64,
"z":3.57
},
{
"id":1033,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":63.3,
"table":59,
"price":2905,
"x":5.59,
"y":5.62,
"z":3.55
},
{
"id":1034,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":62.1,
"table":58,
"price":2905,
"x":5.65,
"y":5.71,
"z":3.53
},
{
"id":1035,
"carat":0.86,
"cut":"Very Good",
"color":"I",
"clarity":"VS1",
"depth":61.2,
"table":58,
"price":2905,
"x":6.1,
"y":6.16,
"z":3.75
},
{
"id":1036,
"carat":0.53,
"cut":"Ideal",
"color":"D",
"clarity":"VVS1",
"depth":62.5,
"table":54,
"price":2905,
"x":5.16,
"y":5.21,
"z":3.24
},
{
"id":1037,
"carat":0.91,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":63.5,
"table":58,
"price":2905,
"x":6.17,
"y":6.12,
"z":3.9
},
{
"id":1038,
"carat":0.95,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":63.8,
"table":57,
"price":2905,
"x":6.23,
"y":6.13,
"z":3.94
},
{
"id":1039,
"carat":0.91,
"cut":"Premium",
"color":"J",
"clarity":"SI1",
"depth":62.8,
"table":59,
"price":2905,
"x":6.19,
"y":6.14,
"z":3.87
},
{
"id":1040,
"carat":0.74,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":62.4,
"table":57,
"price":2906,
"x":5.74,
"y":5.8,
"z":3.6
},
{
"id":1041,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62.2,
"table":58,
"price":2906,
"x":5.92,
"y":5.95,
"z":3.69
},
{
"id":1042,
"carat":0.74,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":62.8,
"table":61,
"price":2906,
"x":5.74,
"y":5.76,
"z":3.61
},
{
"id":1043,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.4,
"table":53.9,
"price":2907,
"x":5.42,
"y":5.43,
"z":3.38
},
{
"id":1044,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.4,
"table":53.6,
"price":2907,
"x":5.42,
"y":5.45,
"z":3.39
},
{
"id":1045,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.1,
"table":54.2,
"price":2907,
"x":5.43,
"y":5.45,
"z":3.38
},
{
"id":1046,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.8,
"table":57,
"price":2907,
"x":5.68,
"y":5.72,
"z":3.58
},
{
"id":1047,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.3,
"table":53,
"price":2907,
"x":5.69,
"y":5.73,
"z":3.56
},
{
"id":1048,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.9,
"table":56,
"price":2907,
"x":5.7,
"y":5.74,
"z":3.54
},
{
"id":1049,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.3,
"table":60,
"price":2907,
"x":5.98,
"y":6.02,
"z":3.62
},
{
"id":1050,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.6,
"table":56,
"price":2907,
"x":5.7,
"y":5.73,
"z":3.58
},
{
"id":1051,
"carat":0.33,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62.9,
"table":55,
"price":557,
"x":4.46,
"y":4.41,
"z":2.79
},
{
"id":1052,
"carat":0.39,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":61.5,
"table":57,
"price":558,
"x":4.66,
"y":4.7,
"z":2.88
},
{
"id":1053,
"carat":0.32,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.3,
"table":55,
"price":558,
"x":4.41,
"y":4.46,
"z":2.72
},
{
"id":1054,
"carat":0.25,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":61.2,
"table":59,
"price":558,
"x":4.05,
"y":4.02,
"z":2.47
},
{
"id":1055,
"carat":0.25,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":63.6,
"table":57,
"price":558,
"x":4.04,
"y":4.01,
"z":2.56
},
{
"id":1056,
"carat":0.25,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":60.7,
"table":59,
"price":558,
"x":4.13,
"y":4.11,
"z":2.5
},
{
"id":1057,
"carat":0.25,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":61.5,
"table":60,
"price":558,
"x":4.04,
"y":4.02,
"z":2.48
},
{
"id":1058,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":60.8,
"table":58,
"price":558,
"x":4.37,
"y":4.34,
"z":2.65
},
{
"id":1059,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":59.8,
"table":60,
"price":558,
"x":4.42,
"y":4.38,
"z":2.63
},
{
"id":1060,
"carat":0.31,
"cut":"Very Good",
"color":"I",
"clarity":"VS2",
"depth":63.2,
"table":55,
"price":558,
"x":4.4,
"y":4.3,
"z":2.75
},
{
"id":1061,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":62.3,
"table":57,
"price":558,
"x":4.35,
"y":4.32,
"z":2.7
},
{
"id":1062,
"carat":0.31,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":58.7,
"table":60,
"price":558,
"x":4.47,
"y":4.43,
"z":2.61
},
{
"id":1063,
"carat":0.31,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.7,
"table":58,
"price":558,
"x":4.34,
"y":4.31,
"z":2.71
},
{
"id":1064,
"carat":0.31,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.7,
"table":56,
"price":558,
"x":4.4,
"y":4.35,
"z":2.7
},
{
"id":1065,
"carat":0.31,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":60.1,
"table":57,
"price":558,
"x":4.44,
"y":4.41,
"z":2.66
},
{
"id":1066,
"carat":0.31,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.3,
"table":55,
"price":558,
"x":4.37,
"y":4.34,
"z":2.67
},
{
"id":1067,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":60.8,
"table":60,
"price":558,
"x":4.42,
"y":4.37,
"z":2.67
},
{
"id":1068,
"carat":0.31,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":59.9,
"table":57,
"price":558,
"x":4.4,
"y":4.38,
"z":2.63
},
{
"id":1069,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":59.9,
"table":60,
"price":558,
"x":4.44,
"y":4.41,
"z":2.65
},
{
"id":1070,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":61.1,
"table":58,
"price":558,
"x":4.38,
"y":4.36,
"z":2.67
},
{
"id":1071,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":60.7,
"table":61,
"price":558,
"x":4.34,
"y":4.32,
"z":2.63
},
{
"id":1072,
"carat":0.31,
"cut":"Very Good",
"color":"I",
"clarity":"VS2",
"depth":63.1,
"table":54,
"price":558,
"x":4.34,
"y":4.31,
"z":2.73
},
{
"id":1073,
"carat":0.31,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":62.3,
"table":60,
"price":558,
"x":4.32,
"y":4.31,
"z":2.69
},
{
"id":1074,
"carat":0.31,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":61.7,
"table":59,
"price":558,
"x":4.39,
"y":4.36,
"z":2.7
},
{
"id":1075,
"carat":0.31,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":61,
"table":61,
"price":558,
"x":4.39,
"y":4.33,
"z":2.66
},
{
"id":1076,
"carat":0.31,
"cut":"Good",
"color":"H",
"clarity":"SI1",
"depth":63.6,
"table":57,
"price":558,
"x":4.31,
"y":4.28,
"z":2.73
},
{
"id":1077,
"carat":0.31,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":558,
"x":4.35,
"y":4.31,
"z":2.7
},
{
"id":1078,
"carat":0.31,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.8,
"table":58,
"price":558,
"x":4.32,
"y":4.28,
"z":2.7
},
{
"id":1079,
"carat":0.31,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.9,
"table":56,
"price":558,
"x":4.31,
"y":4.27,
"z":2.7
},
{
"id":1080,
"carat":0.31,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.9,
"table":60,
"price":558,
"x":4.38,
"y":4.35,
"z":2.66
},
{
"id":1081,
"carat":0.82,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63.6,
"table":56,
"price":2908,
"x":5.9,
"y":5.95,
"z":3.77
},
{
"id":1082,
"carat":0.73,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.5,
"table":55,
"price":2908,
"x":5.8,
"y":5.84,
"z":3.58
},
{
"id":1083,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":61,
"table":60,
"price":2909,
"x":5.75,
"y":5.7,
"z":3.49
},
{
"id":1084,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":60.9,
"table":57,
"price":2909,
"x":5.71,
"y":5.69,
"z":3.47
},
{
"id":1085,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.2,
"table":56,
"price":2909,
"x":5.76,
"y":5.81,
"z":3.54
},
{
"id":1086,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.9,
"table":56,
"price":2909,
"x":5.7,
"y":5.74,
"z":3.54
},
{
"id":1087,
"carat":0.9,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.9,
"table":57,
"price":2909,
"x":6.19,
"y":6.13,
"z":3.81
},
{
"id":1088,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":62.9,
"table":57,
"price":2910,
"x":5.6,
"y":5.66,
"z":3.54
},
{
"id":1089,
"carat":1.05,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":58.3,
"table":57,
"price":2911,
"x":6.72,
"y":6.67,
"z":3.9
},
{
"id":1090,
"carat":0.59,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":61.1,
"table":57,
"price":2911,
"x":5.39,
"y":5.41,
"z":3.3
},
{
"id":1091,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":60.6,
"table":56,
"price":2911,
"x":5.76,
"y":5.8,
"z":3.5
},
{
"id":1092,
"carat":0.77,
"cut":"Good",
"color":"F",
"clarity":"VS2",
"depth":60.3,
"table":61,
"price":2911,
"x":5.89,
"y":5.96,
"z":3.57
},
{
"id":1093,
"carat":0.73,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":64.2,
"table":54,
"price":2912,
"x":5.68,
"y":5.72,
"z":3.66
},
{
"id":1094,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":58.7,
"table":63,
"price":2912,
"x":5.69,
"y":5.73,
"z":3.35
},
{
"id":1095,
"carat":0.73,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":63.2,
"table":56,
"price":2912,
"x":5.75,
"y":5.76,
"z":3.64
},
{
"id":1096,
"carat":0.8,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.2,
"table":60,
"price":2912,
"x":5.97,
"y":5.95,
"z":3.65
},
{
"id":1097,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":65.2,
"table":54,
"price":2912,
"x":6.3,
"y":6.22,
"z":4.08
},
{
"id":1098,
"carat":1,
"cut":"Fair",
"color":"I",
"clarity":"SI1",
"depth":66,
"table":56,
"price":2912,
"x":6.31,
"y":6.24,
"z":4.13
},
{
"id":1099,
"carat":1,
"cut":"Fair",
"color":"H",
"clarity":"SI2",
"depth":67,
"table":55,
"price":2912,
"x":6.25,
"y":6.12,
"z":4.16
},
{
"id":1100,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":60.7,
"table":60,
"price":2913,
"x":5.72,
"y":5.74,
"z":3.48
},
{
"id":1101,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":58,
"price":2913,
"x":5.75,
"y":5.79,
"z":3.54
},
{
"id":1102,
"carat":0.71,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":60.8,
"table":59,
"price":2913,
"x":5.7,
"y":5.74,
"z":3.48
},
{
"id":1103,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.6,
"table":58,
"price":2913,
"x":5.77,
"y":5.79,
"z":3.5
},
{
"id":1104,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":61.7,
"table":56,
"price":2913,
"x":5.68,
"y":5.8,
"z":3.54
},
{
"id":1105,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.7,
"table":57,
"price":2913,
"x":5.7,
"y":5.75,
"z":3.53
},
{
"id":1106,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":59.7,
"table":59,
"price":2913,
"x":5.8,
"y":5.82,
"z":3.47
},
{
"id":1107,
"carat":0.91,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":62,
"table":59,
"price":2913,
"x":6.18,
"y":6.23,
"z":3.85
},
{
"id":1108,
"carat":0.83,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":59,
"price":2913,
"x":6.05,
"y":5.97,
"z":3.74
},
{
"id":1109,
"carat":0.85,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62,
"table":57,
"price":2913,
"x":6.1,
"y":6.02,
"z":3.76
},
{
"id":1110,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.5,
"table":55,
"price":2914,
"x":5.86,
"y":5.89,
"z":3.73
},
{
"id":1111,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":58,
"price":2914,
"x":5.76,
"y":5.8,
"z":3.55
},
{
"id":1112,
"carat":0.83,
"cut":"Very Good",
"color":"I",
"clarity":"VS2",
"depth":62,
"table":55,
"price":2915,
"x":6.03,
"y":6.06,
"z":3.74
},
{
"id":1113,
"carat":0.77,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":63.6,
"table":57,
"price":2915,
"x":5.79,
"y":5.88,
"z":3.71
},
{
"id":1114,
"carat":0.8,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":62,
"table":55,
"price":2915,
"x":5.94,
"y":6.01,
"z":3.7
},
{
"id":1115,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.2,
"table":56,
"price":2915,
"x":5.74,
"y":5.71,
"z":3.56
},
{
"id":1116,
"carat":0.73,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":60.8,
"table":57,
"price":2916,
"x":5.8,
"y":5.83,
"z":3.54
},
{
"id":1117,
"carat":0.93,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":62,
"table":57,
"price":2917,
"x":6.22,
"y":6.26,
"z":3.87
},
{
"id":1118,
"carat":0.74,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.5,
"table":60,
"price":2917,
"x":5.78,
"y":5.74,
"z":3.6
},
{
"id":1119,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.5,
"table":58,
"price":2917,
"x":5.63,
"y":5.67,
"z":3.53
},
{
"id":1120,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.2,
"table":56,
"price":2917,
"x":5.77,
"y":5.73,
"z":3.52
},
{
"id":1121,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":59.5,
"table":58,
"price":2918,
"x":5.82,
"y":5.87,
"z":3.48
},
{
"id":1122,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"VS2",
"depth":61.2,
"table":53,
"price":2918,
"x":5.98,
"y":6.05,
"z":3.68
},
{
"id":1123,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.1,
"table":54,
"price":2918,
"x":5.7,
"y":5.76,
"z":3.56
},
{
"id":1124,
"carat":0.72,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":2918,
"x":5.75,
"y":5.79,
"z":3.56
},
{
"id":1125,
"carat":0.83,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":63.1,
"table":57,
"price":2918,
"x":5.95,
"y":5.9,
"z":3.74
},
{
"id":1126,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.5,
"table":57,
"price":2919,
"x":5.8,
"y":5.83,
"z":3.52
},
{
"id":1127,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":56,
"price":2919,
"x":5.92,
"y":5.96,
"z":3.71
},
{
"id":1128,
"carat":0.73,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":62.2,
"table":56,
"price":2919,
"x":5.79,
"y":5.75,
"z":3.59
},
{
"id":1129,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":63.8,
"table":58,
"price":2919,
"x":5.61,
"y":5.58,
"z":3.57
},
{
"id":1130,
"carat":0.73,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.9,
"table":55,
"price":2919,
"x":5.79,
"y":5.76,
"z":3.58
},
{
"id":1131,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.9,
"table":55,
"price":2919,
"x":5.83,
"y":5.77,
"z":3.59
},
{
"id":1132,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":59.7,
"table":57,
"price":2920,
"x":5.87,
"y":5.78,
"z":3.48
},
{
"id":1133,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61,
"table":55,
"price":2920,
"x":5.78,
"y":5.85,
"z":3.55
},
{
"id":1134,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":59.1,
"table":59,
"price":2920,
"x":5.88,
"y":5.83,
"z":3.46
},
{
"id":1135,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.6,
"table":55,
"price":2920,
"x":5.71,
"y":5.67,
"z":3.56
},
{
"id":1136,
"carat":0.74,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":60.5,
"table":60,
"price":2921,
"x":5.79,
"y":5.81,
"z":3.51
},
{
"id":1137,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":59.9,
"table":59,
"price":2921,
"x":5.77,
"y":5.81,
"z":3.47
},
{
"id":1138,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":60.7,
"table":60,
"price":2921,
"x":5.75,
"y":5.78,
"z":3.5
},
{
"id":1139,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":60.1,
"table":60,
"price":2921,
"x":5.76,
"y":5.79,
"z":3.47
},
{
"id":1140,
"carat":0.65,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":61.3,
"table":56,
"price":2921,
"x":5.58,
"y":5.61,
"z":3.43
},
{
"id":1141,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"VS2",
"depth":64.1,
"table":66,
"price":2921,
"x":6.04,
"y":5.98,
"z":3.85
},
{
"id":1142,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.7,
"table":58,
"price":2922,
"x":5.6,
"y":5.64,
"z":3.58
},
{
"id":1143,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.3,
"table":59,
"price":2922,
"x":5.62,
"y":5.66,
"z":3.57
},
{
"id":1144,
"carat":0.68,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":59.7,
"table":57,
"price":2922,
"x":5.79,
"y":5.76,
"z":3.45
},
{
"id":1145,
"carat":0.53,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.6,
"table":56,
"price":2922,
"x":5.24,
"y":5.18,
"z":3.21
},
{
"id":1146,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":60.6,
"table":56,
"price":2922,
"x":5.95,
"y":5.9,
"z":3.59
},
{
"id":1147,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63,
"table":57,
"price":2923,
"x":5.69,
"y":5.73,
"z":3.6
},
{
"id":1148,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.2,
"table":58,
"price":2923,
"x":5.67,
"y":5.72,
"z":3.6
},
{
"id":1149,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61.8,
"table":59,
"price":2923,
"x":5.63,
"y":5.69,
"z":3.5
},
{
"id":1150,
"carat":0.75,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":62.3,
"table":58,
"price":2923,
"x":5.78,
"y":5.81,
"z":3.61
},
{
"id":1151,
"carat":0.75,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61.5,
"table":58,
"price":2923,
"x":5.82,
"y":5.86,
"z":3.59
},
{
"id":1152,
"carat":0.87,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":2923,
"x":6.13,
"y":6.06,
"z":3.81
},
{
"id":1153,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.4,
"table":54,
"price":2923,
"x":5.71,
"y":5.74,
"z":3.57
},
{
"id":1154,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":60.2,
"table":56,
"price":2923,
"x":5.98,
"y":6.04,
"z":3.62
},
{
"id":1155,
"carat":0.78,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.1,
"table":56,
"price":2923,
"x":5.94,
"y":5.98,
"z":3.64
},
{
"id":1156,
"carat":0.75,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":58.3,
"table":60,
"price":2923,
"x":5.94,
"y":5.99,
"z":3.48
},
{
"id":1157,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"VS2",
"depth":58.7,
"table":60,
"price":2923,
"x":6.35,
"y":6.28,
"z":3.7
},
{
"id":1158,
"carat":0.7,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.5,
"table":56,
"price":2924,
"x":5.71,
"y":5.75,
"z":3.52
},
{
"id":1159,
"carat":0.8,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":58.2,
"table":63,
"price":2925,
"x":6.07,
"y":6.03,
"z":3.52
},
{
"id":1160,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":64.5,
"table":58,
"price":2925,
"x":5.55,
"y":5.59,
"z":3.59
},
{
"id":1161,
"carat":0.51,
"cut":"Very Good",
"color":"E",
"clarity":"IF",
"depth":63.3,
"table":58,
"price":2925,
"x":5.03,
"y":5.08,
"z":3.2
},
{
"id":1162,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"IF",
"depth":61.5,
"table":56,
"price":2925,
"x":5.74,
"y":5.77,
"z":3.54
},
{
"id":1163,
"carat":1.02,
"cut":"Ideal",
"color":"I",
"clarity":"I1",
"depth":61.7,
"table":56,
"price":2925,
"x":6.49,
"y":6.44,
"z":3.99
},
{
"id":1164,
"carat":1.2,
"cut":"Premium",
"color":"I",
"clarity":"I1",
"depth":60.5,
"table":58,
"price":2925,
"x":6.9,
"y":6.79,
"z":4.14
},
{
"id":1165,
"carat":0.81,
"cut":"Good",
"color":"D",
"clarity":"SI2",
"depth":63.6,
"table":55,
"price":2926,
"x":5.91,
"y":5.86,
"z":3.74
},
{
"id":1166,
"carat":0.81,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.2,
"table":56,
"price":2926,
"x":6.03,
"y":6,
"z":3.68
},
{
"id":1167,
"carat":0.81,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.3,
"table":60,
"price":2926,
"x":6,
"y":5.94,
"z":3.66
},
{
"id":1168,
"carat":0.77,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":63.3,
"table":57,
"price":2927,
"x":5.79,
"y":5.83,
"z":3.68
},
{
"id":1169,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":59.4,
"table":58,
"price":2927,
"x":6.07,
"y":6.09,
"z":3.61
},
{
"id":1170,
"carat":0.9,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":59.5,
"table":60,
"price":2927,
"x":6.32,
"y":6.29,
"z":3.75
},
{
"id":1171,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":61.3,
"table":54,
"price":2928,
"x":5.72,
"y":5.76,
"z":3.52
},
{
"id":1172,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":60.8,
"table":59,
"price":2928,
"x":5.67,
"y":5.71,
"z":3.46
},
{
"id":1173,
"carat":0.74,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":58,
"price":2929,
"x":5.82,
"y":5.85,
"z":3.56
},
{
"id":1174,
"carat":0.8,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":61.1,
"table":57,
"price":2929,
"x":6.01,
"y":6.07,
"z":3.69
},
{
"id":1175,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.8,
"table":57,
"price":2929,
"x":5.68,
"y":5.71,
"z":3.52
},
{
"id":1176,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.1,
"table":57,
"price":2929,
"x":5.78,
"y":5.83,
"z":3.49
},
{
"id":1177,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":61.3,
"table":60,
"price":2930,
"x":5.74,
"y":5.71,
"z":3.51
},
{
"id":1178,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":60.3,
"table":58,
"price":2930,
"x":5.7,
"y":5.74,
"z":3.45
},
{
"id":1179,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.3,
"table":54,
"price":2930,
"x":5.67,
"y":5.72,
"z":3.55
},
{
"id":1180,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.3,
"table":57,
"price":2930,
"x":5.69,
"y":5.74,
"z":3.56
},
{
"id":1181,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.7,
"table":57,
"price":2930,
"x":5.69,
"y":5.73,
"z":3.58
},
{
"id":1182,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.6,
"table":57,
"price":2930,
"x":5.67,
"y":5.7,
"z":3.56
},
{
"id":1183,
"carat":0.9,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":58.7,
"table":63,
"price":2930,
"x":6.23,
"y":6.2,
"z":3.65
},
{
"id":1184,
"carat":0.9,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":65,
"table":58,
"price":2930,
"x":6.08,
"y":6.04,
"z":3.94
},
{
"id":1185,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.7,
"table":57,
"price":2930,
"x":5.75,
"y":5.7,
"z":3.53
},
{
"id":1186,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":60.8,
"table":57,
"price":2931,
"x":5.72,
"y":5.76,
"z":3.49
},
{
"id":1187,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":63.3,
"table":57,
"price":2931,
"x":5.69,
"y":5.72,
"z":3.61
},
{
"id":1188,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.8,
"table":59,
"price":2931,
"x":5.71,
"y":5.74,
"z":3.54
},
{
"id":1189,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VVS1",
"depth":62,
"table":61,
"price":2932,
"x":5.71,
"y":5.62,
"z":3.51
},
{
"id":1190,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":61,
"table":57,
"price":2932,
"x":5.8,
"y":5.71,
"z":3.51
},
{
"id":1191,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VVS2",
"depth":63.2,
"table":58,
"price":2932,
"x":5.66,
"y":5.6,
"z":3.56
},
{
"id":1192,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":62.2,
"table":57,
"price":2933,
"x":5.67,
"y":5.72,
"z":3.54
},
{
"id":1193,
"carat":0.59,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":60.6,
"table":59,
"price":2933,
"x":5.44,
"y":5.49,
"z":3.31
},
{
"id":1194,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":59.9,
"table":58,
"price":2933,
"x":5.84,
"y":5.87,
"z":3.51
},
{
"id":1195,
"carat":0.75,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.3,
"table":57,
"price":2933,
"x":5.81,
"y":5.87,
"z":3.64
},
{
"id":1196,
"carat":0.75,
"cut":"Good",
"color":"D",
"clarity":"SI2",
"depth":57.6,
"table":56,
"price":2933,
"x":5.98,
"y":6.07,
"z":3.47
},
{
"id":1197,
"carat":0.9,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":62.7,
"table":64,
"price":2934,
"x":6,
"y":6.09,
"z":3.79
},
{
"id":1198,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62,
"table":54,
"price":2934,
"x":5.77,
"y":5.74,
"z":3.57
},
{
"id":1199,
"carat":0.91,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":60.2,
"table":52,
"price":2935,
"x":6.27,
"y":6.15,
"z":3.74
},
{
"id":1200,
"carat":1.17,
"cut":"Fair",
"color":"I",
"clarity":"I1",
"depth":65.4,
"table":62,
"price":2935,
"x":6.68,
"y":6.57,
"z":4.33
},
{
"id":1201,
"carat":0.8,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":62,
"table":60,
"price":2935,
"x":5.92,
"y":5.86,
"z":3.65
},
{
"id":1202,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":61.8,
"table":60,
"price":2936,
"x":5.63,
"y":5.69,
"z":3.5
},
{
"id":1203,
"carat":0.81,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":60.2,
"table":58,
"price":2936,
"x":6.06,
"y":6.1,
"z":3.66
},
{
"id":1204,
"carat":0.74,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":60.5,
"table":59,
"price":2936,
"x":5.81,
"y":5.86,
"z":3.53
},
{
"id":1205,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.6,
"table":54,
"price":2936,
"x":5.69,
"y":5.72,
"z":3.57
},
{
"id":1206,
"carat":0.82,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.1,
"table":56,
"price":2937,
"x":6.01,
"y":5.98,
"z":3.72
},
{
"id":1207,
"carat":0.76,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":58.3,
"table":62,
"price":2937,
"x":6.12,
"y":5.95,
"z":3.52
},
{
"id":1208,
"carat":0.76,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":59.6,
"table":57,
"price":2937,
"x":6.01,
"y":5.91,
"z":3.55
},
{
"id":1209,
"carat":0.95,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":58.8,
"table":60,
"price":2937,
"x":6.35,
"y":6.31,
"z":3.72
},
{
"id":1210,
"carat":0.71,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":62.7,
"table":57,
"price":2938,
"x":5.66,
"y":5.72,
"z":3.57
},
{
"id":1211,
"carat":0.71,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":62.7,
"table":59,
"price":2938,
"x":5.65,
"y":5.67,
"z":3.55
},
{
"id":1212,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":60.2,
"table":57,
"price":2938,
"x":6.1,
"y":6.06,
"z":3.66
},
{
"id":1213,
"carat":0.73,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.7,
"table":58,
"price":2939,
"x":5.73,
"y":5.75,
"z":3.6
},
{
"id":1214,
"carat":0.73,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.7,
"table":57,
"price":2939,
"x":5.76,
"y":5.83,
"z":3.52
},
{
"id":1215,
"carat":0.83,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":61.9,
"table":56,
"price":2939,
"x":5.99,
"y":6.02,
"z":3.72
},
{
"id":1216,
"carat":0.77,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":59.5,
"table":60,
"price":2939,
"x":6.01,
"y":5.95,
"z":3.56
},
{
"id":1217,
"carat":0.8,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":60.8,
"table":56,
"price":2939,
"x":6.02,
"y":6.01,
"z":3.66
},
{
"id":1218,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.7,
"table":58,
"price":2939,
"x":5.72,
"y":5.77,
"z":3.6
},
{
"id":1219,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.4,
"table":57,
"price":2939,
"x":5.71,
"y":5.74,
"z":3.57
},
{
"id":1220,
"carat":0.75,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":60.6,
"table":55,
"price":2939,
"x":5.93,
"y":5.91,
"z":3.59
},
{
"id":1221,
"carat":0.8,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":59.9,
"table":58,
"price":2939,
"x":6.03,
"y":5.96,
"z":3.59
},
{
"id":1222,
"carat":0.81,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.8,
"table":56,
"price":2939,
"x":6.02,
"y":5.99,
"z":3.71
},
{
"id":1223,
"carat":0.82,
"cut":"Premium",
"color":"H",
"clarity":"VS2",
"depth":62.6,
"table":59,
"price":2939,
"x":5.99,
"y":5.93,
"z":3.73
},
{
"id":1224,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VVS2",
"depth":63.1,
"table":57,
"price":2940,
"x":5.59,
"y":5.66,
"z":3.55
},
{
"id":1225,
"carat":1.24,
"cut":"Very Good",
"color":"J",
"clarity":"I1",
"depth":61.9,
"table":55,
"price":2940,
"x":6.85,
"y":6.92,
"z":4.26
},
{
"id":1226,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VVS2",
"depth":62.6,
"table":59,
"price":2940,
"x":5.6,
"y":5.64,
"z":3.52
},
{
"id":1227,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.2,
"table":54,
"price":2940,
"x":5.92,
"y":5.64,
"z":3.54
},
{
"id":1228,
"carat":0.75,
"cut":"Fair",
"color":"E",
"clarity":"VS2",
"depth":56,
"table":67,
"price":2940,
"x":6.18,
"y":6.08,
"z":3.43
},
{
"id":1229,
"carat":1,
"cut":"Good",
"color":"H",
"clarity":"I1",
"depth":57.6,
"table":61,
"price":2940,
"x":6.67,
"y":6.6,
"z":3.82
},
{
"id":1230,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.6,
"table":57,
"price":2940,
"x":5.84,
"y":5.81,
"z":3.59
},
{
"id":1231,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.5,
"table":56,
"price":2940,
"x":5.73,
"y":5.68,
"z":3.51
},
{
"id":1232,
"carat":0.79,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":59.2,
"table":59,
"price":2941,
"x":6.04,
"y":6.06,
"z":3.58
},
{
"id":1233,
"carat":0.8,
"cut":"Good",
"color":"F",
"clarity":"SI1",
"depth":63.8,
"table":59,
"price":2941,
"x":5.83,
"y":5.87,
"z":3.73
},
{
"id":1234,
"carat":0.81,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":62.7,
"table":58,
"price":2942,
"x":5.92,
"y":5.95,
"z":3.72
},
{
"id":1235,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":61.1,
"table":58,
"price":2942,
"x":5.76,
"y":5.72,
"z":3.51
},
{
"id":1236,
"carat":1.03,
"cut":"Fair",
"color":"G",
"clarity":"SI2",
"depth":65.7,
"table":59,
"price":2942,
"x":6.3,
"y":6.24,
"z":4.12
},
{
"id":1237,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":60.8,
"table":56,
"price":2942,
"x":5.78,
"y":5.79,
"z":3.52
},
{
"id":1238,
"carat":0.76,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.6,
"table":59,
"price":2942,
"x":5.84,
"y":5.82,
"z":3.59
},
{
"id":1239,
"carat":1.01,
"cut":"Fair",
"color":"G",
"clarity":"SI2",
"depth":67.1,
"table":59,
"price":2942,
"x":6.27,
"y":6.19,
"z":4.18
},
{
"id":1240,
"carat":0.73,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2943,
"x":5.82,
"y":5.78,
"z":3.56
},
{
"id":1241,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62,
"table":56,
"price":2943,
"x":5.77,
"y":5.75,
"z":3.57
},
{
"id":1242,
"carat":0.74,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":61.3,
"table":58,
"price":2944,
"x":5.8,
"y":5.85,
"z":3.57
},
{
"id":1243,
"carat":0.79,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":2944,
"x":5.96,
"y":5.98,
"z":3.68
},
{
"id":1244,
"carat":0.57,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":60.4,
"table":57,
"price":2945,
"x":5.39,
"y":5.44,
"z":3.27
},
{
"id":1245,
"carat":0.79,
"cut":"Very Good",
"color":"H",
"clarity":"VS2",
"depth":61.5,
"table":55,
"price":2945,
"x":5.89,
"y":5.94,
"z":3.64
},
{
"id":1246,
"carat":0.78,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.4,
"table":58,
"price":2945,
"x":5.86,
"y":5.9,
"z":3.67
},
{
"id":1247,
"carat":0.85,
"cut":"Good",
"color":"G",
"clarity":"SI1",
"depth":64.9,
"table":56,
"price":2945,
"x":5.95,
"y":5.98,
"z":3.87
},
{
"id":1248,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.3,
"table":59,
"price":2946,
"x":5.64,
"y":5.67,
"z":3.58
},
{
"id":1249,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62.7,
"table":57,
"price":2946,
"x":5.69,
"y":5.73,
"z":3.58
},
{
"id":1250,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.2,
"table":56,
"price":2946,
"x":5.72,
"y":5.75,
"z":3.57
},
{
"id":1251,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.5,
"table":57,
"price":2946,
"x":5.7,
"y":5.73,
"z":3.57
},
{
"id":1252,
"carat":0.77,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2946,
"x":5.9,
"y":5.93,
"z":3.64
},
{
"id":1253,
"carat":0.79,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.3,
"table":55,
"price":2946,
"x":5.9,
"y":5.94,
"z":3.69
},
{
"id":1254,
"carat":0.78,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61.7,
"table":56,
"price":2947,
"x":5.92,
"y":5.94,
"z":3.66
},
{
"id":1255,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.1,
"table":57,
"price":2947,
"x":5.82,
"y":5.87,
"z":3.63
},
{
"id":1256,
"carat":0.92,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":58.5,
"table":57,
"price":2947,
"x":6.37,
"y":6.34,
"z":3.72
},
{
"id":1257,
"carat":0.73,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":60.9,
"table":59,
"price":2947,
"x":5.82,
"y":5.77,
"z":3.53
},
{
"id":1258,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":61.2,
"table":57,
"price":2947,
"x":5.69,
"y":5.72,
"z":3.49
},
{
"id":1259,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":60.5,
"table":58,
"price":2947,
"x":5.76,
"y":5.81,
"z":3.5
},
{
"id":1260,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62,
"table":56,
"price":2947,
"x":5.79,
"y":5.82,
"z":3.6
},
{
"id":1261,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.1,
"table":57,
"price":2947,
"x":5.83,
"y":5.86,
"z":3.57
},
{
"id":1262,
"carat":0.73,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.2,
"table":57,
"price":2947,
"x":5.79,
"y":5.81,
"z":3.55
},
{
"id":1263,
"carat":0.82,
"cut":"Good",
"color":"H",
"clarity":"VS2",
"depth":62.4,
"table":54,
"price":2947,
"x":5.97,
"y":6.04,
"z":3.75
},
{
"id":1264,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"SI1",
"depth":60.9,
"table":56,
"price":2947,
"x":6.26,
"y":6.21,
"z":3.8
},
{
"id":1265,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.7,
"table":55,
"price":2948,
"x":5.8,
"y":5.84,
"z":3.59
},
{
"id":1266,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62,
"table":56,
"price":2948,
"x":5.68,
"y":5.7,
"z":3.53
},
{
"id":1267,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":62.5,
"table":58,
"price":2948,
"x":6.15,
"y":6.1,
"z":3.83
},
{
"id":1268,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"SI2",
"depth":66.4,
"table":60,
"price":2948,
"x":5.92,
"y":5.86,
"z":3.91
},
{
"id":1269,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":60.6,
"table":60,
"price":2948,
"x":6.28,
"y":6.23,
"z":3.79
},
{
"id":1270,
"carat":0.9,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":62,
"table":56,
"price":2948,
"x":6.2,
"y":6.16,
"z":3.83
},
{
"id":1271,
"carat":1,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":65.8,
"table":58,
"price":2948,
"x":6.28,
"y":6.16,
"z":4.09
},
{
"id":1272,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63,
"table":56,
"price":2949,
"x":5.66,
"y":5.73,
"z":3.59
},
{
"id":1273,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.7,
"table":57,
"price":2949,
"x":5.84,
"y":5.89,
"z":3.62
},
{
"id":1274,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.6,
"table":57,
"price":2949,
"x":5.81,
"y":5.92,
"z":3.67
},
{
"id":1275,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":62.3,
"table":55,
"price":2949,
"x":5.72,
"y":5.74,
"z":3.57
},
{
"id":1276,
"carat":0.99,
"cut":"Fair",
"color":"J",
"clarity":"SI1",
"depth":58,
"table":67,
"price":2949,
"x":6.57,
"y":6.5,
"z":3.79
},
{
"id":1277,
"carat":0.81,
"cut":"Very Good",
"color":"I",
"clarity":"VS1",
"depth":62.7,
"table":58,
"price":2950,
"x":5.9,
"y":5.96,
"z":3.72
},
{
"id":1278,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.4,
"table":57,
"price":2950,
"x":5.68,
"y":5.73,
"z":3.56
},
{
"id":1279,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":62.1,
"table":60,
"price":2950,
"x":5.72,
"y":5.68,
"z":3.54
},
{
"id":1280,
"carat":0.54,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.6,
"table":55,
"price":2951,
"x":5.27,
"y":5.28,
"z":3.25
},
{
"id":1281,
"carat":0.72,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":62.7,
"table":58,
"price":2951,
"x":5.65,
"y":5.68,
"z":3.55
},
{
"id":1282,
"carat":0.81,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":62.3,
"table":58,
"price":2951,
"x":5.95,
"y":5.96,
"z":3.71
},
{
"id":1283,
"carat":0.73,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":2951,
"x":5.77,
"y":5.81,
"z":3.56
},
{
"id":1284,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":56,
"price":2951,
"x":5.84,
"y":5.79,
"z":3.55
},
{
"id":1285,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.4,
"table":58,
"price":2952,
"x":5.66,
"y":5.68,
"z":3.54
},
{
"id":1286,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.4,
"table":59,
"price":2952,
"x":5.63,
"y":5.67,
"z":3.58
},
{
"id":1287,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":61.8,
"table":59,
"price":2952,
"x":5.63,
"y":5.67,
"z":3.49
},
{
"id":1288,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":61.3,
"table":60,
"price":2952,
"x":5.68,
"y":5.7,
"z":3.49
},
{
"id":1289,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.5,
"table":55,
"price":2952,
"x":5.76,
"y":5.79,
"z":3.55
},
{
"id":1290,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.4,
"table":55,
"price":2952,
"x":5.76,
"y":5.8,
"z":3.55
},
{
"id":1291,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.9,
"table":58,
"price":2952,
"x":5.7,
"y":5.73,
"z":3.54
},
{
"id":1292,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":57,
"price":2952,
"x":5.63,
"y":5.68,
"z":3.54
},
{
"id":1293,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.1,
"table":55,
"price":2952,
"x":5.71,
"y":5.75,
"z":3.56
},
{
"id":1294,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"IF",
"depth":62.1,
"table":53.9,
"price":2952,
"x":5.79,
"y":5.81,
"z":3.6
},
{
"id":1295,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":61,
"table":61,
"price":2952,
"x":5.69,
"y":5.72,
"z":3.48
},
{
"id":1296,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"VS2",
"depth":59.1,
"table":59,
"price":2953,
"x":6.02,
"y":6.07,
"z":3.57
},
{
"id":1297,
"carat":0.79,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":63,
"table":59,
"price":2953,
"x":5.84,
"y":5.8,
"z":3.66
},
{
"id":1298,
"carat":0.75,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":64.4,
"table":59,
"price":2953,
"x":5.67,
"y":5.72,
"z":3.66
},
{
"id":1299,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":59.6,
"table":60,
"price":2954,
"x":5.8,
"y":5.85,
"z":3.47
},
{
"id":1300,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":2954,
"x":5.75,
"y":5.78,
"z":3.57
},
{
"id":1301,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.1,
"table":59,
"price":2954,
"x":5.75,
"y":5.8,
"z":3.53
},
{
"id":1302,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":59,
"price":2954,
"x":5.71,
"y":5.79,
"z":3.53
},
{
"id":1303,
"carat":0.75,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.3,
"table":57,
"price":2954,
"x":5.8,
"y":5.83,
"z":3.62
},
{
"id":1304,
"carat":0.82,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.1,
"table":58,
"price":2954,
"x":5.97,
"y":5.95,
"z":3.76
},
{
"id":1305,
"carat":0.76,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.7,
"table":54,
"price":2954,
"x":5.88,
"y":5.92,
"z":3.64
},
{
"id":1306,
"carat":0.89,
"cut":"Premium",
"color":"I",
"clarity":"VS1",
"depth":62.2,
"table":62,
"price":2955,
"x":6.14,
"y":6.02,
"z":3.78
},
{
"id":1307,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":62.4,
"table":57,
"price":2956,
"x":5.67,
"y":5.71,
"z":3.55
},
{
"id":1308,
"carat":0.74,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61.4,
"table":56,
"price":2956,
"x":5.81,
"y":5.84,
"z":3.57
},
{
"id":1309,
"carat":0.74,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":62.3,
"table":56,
"price":2956,
"x":5.75,
"y":5.78,
"z":3.59
},
{
"id":1310,
"carat":0.95,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":63.8,
"table":57,
"price":2956,
"x":6.13,
"y":6.23,
"z":3.94
},
{
"id":1311,
"carat":0.91,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":62.8,
"table":59,
"price":2956,
"x":6.14,
"y":6.19,
"z":3.87
},
{
"id":1312,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":60.8,
"table":57,
"price":2956,
"x":5.75,
"y":5.77,
"z":3.5
},
{
"id":1313,
"carat":0.71,
"cut":"Good",
"color":"F",
"clarity":"VVS2",
"depth":58.2,
"table":60,
"price":2956,
"x":5.89,
"y":5.94,
"z":3.44
},
{
"id":1314,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS1",
"depth":60.4,
"table":58,
"price":2956,
"x":5.78,
"y":5.71,
"z":3.47
},
{
"id":1315,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":2956,
"x":5.75,
"y":5.72,
"z":3.59
},
{
"id":1316,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.2,
"table":56,
"price":2956,
"x":5.75,
"y":5.73,
"z":3.57
},
{
"id":1317,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62,
"table":55,
"price":2958,
"x":5.74,
"y":5.77,
"z":3.57
},
{
"id":1318,
"carat":0.79,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":62.2,
"table":57,
"price":2958,
"x":5.89,
"y":5.94,
"z":3.68
},
{
"id":1319,
"carat":0.72,
"cut":"Good",
"color":"G",
"clarity":"VS1",
"depth":58,
"table":57.8,
"price":2958,
"x":5.85,
"y":5.87,
"z":3.4
},
{
"id":1320,
"carat":0.98,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":61.6,
"table":66,
"price":2958,
"x":6.46,
"y":6.24,
"z":3.92
},
{
"id":1321,
"carat":0.56,
"cut":"Very Good",
"color":"D",
"clarity":"VVS1",
"depth":60.1,
"table":58,
"price":2959,
"x":5.36,
"y":5.42,
"z":3.24
},
{
"id":1322,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":60.1,
"table":58,
"price":2959,
"x":5.73,
"y":5.79,
"z":3.46
},
{
"id":1323,
"carat":0.79,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":62.3,
"table":58,
"price":2959,
"x":5.92,
"y":5.89,
"z":3.68
},
{
"id":1324,
"carat":0.82,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.8,
"table":55,
"price":2959,
"x":6,
"y":6.03,
"z":3.72
},
{
"id":1325,
"carat":0.74,
"cut":"Fair",
"color":"G",
"clarity":"VVS2",
"depth":65.2,
"table":58,
"price":2959,
"x":5.7,
"y":5.6,
"z":3.69
},
{
"id":1326,
"carat":0.71,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":61.8,
"table":56,
"price":2960,
"x":5.7,
"y":5.73,
"z":3.53
},
{
"id":1327,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63,
"table":56,
"price":2960,
"x":5.61,
"y":5.69,
"z":3.56
},
{
"id":1328,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":63.4,
"table":57,
"price":2960,
"x":5.6,
"y":5.67,
"z":3.57
},
{
"id":1329,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":61.3,
"table":57,
"price":2960,
"x":5.72,
"y":5.76,
"z":3.52
},
{
"id":1330,
"carat":0.76,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":2960,
"x":5.82,
"y":5.78,
"z":3.63
},
{
"id":1331,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":56,
"price":2960,
"x":5.77,
"y":5.81,
"z":3.55
},
{
"id":1332,
"carat":0.64,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.7,
"table":58,
"price":2960,
"x":5.52,
"y":5.56,
"z":3.42
},
{
"id":1333,
"carat":0.71,
"cut":"Good",
"color":"F",
"clarity":"VVS2",
"depth":58.9,
"table":61,
"price":2960,
"x":5.8,
"y":5.9,
"z":3.44
},
{
"id":1334,
"carat":0.74,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.8,
"table":55,
"price":2960,
"x":5.85,
"y":5.8,
"z":3.6
},
{
"id":1335,
"carat":0.77,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":62.8,
"table":58,
"price":2961,
"x":5.75,
"y":5.78,
"z":3.62
},
{
"id":1336,
"carat":0.74,
"cut":"Ideal",
"color":"H",
"clarity":"VVS2",
"depth":61.2,
"table":57,
"price":2961,
"x":5.79,
"y":5.85,
"z":3.56
},
{
"id":1337,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":61.5,
"table":60,
"price":2961,
"x":5.79,
"y":5.75,
"z":3.55
},
{
"id":1338,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":61.9,
"table":56,
"price":2961,
"x":5.81,
"y":5.76,
"z":3.58
},
{
"id":1339,
"carat":0.73,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.7,
"table":56,
"price":2961,
"x":5.75,
"y":5.73,
"z":3.6
},
{
"id":1340,
"carat":0.63,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":62.3,
"table":56,
"price":2961,
"x":5.48,
"y":5.5,
"z":3.42
},
{
"id":1341,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.1,
"table":57,
"price":2961,
"x":5.8,
"y":5.82,
"z":3.55
},
{
"id":1342,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.6,
"table":57,
"price":2961,
"x":5.91,
"y":5.93,
"z":3.59
},
{
"id":1343,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":53,
"price":2961,
"x":5.77,
"y":5.7,
"z":3.56
},
{
"id":1344,
"carat":0.75,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":61.9,
"table":61,
"price":2961,
"x":5.85,
"y":5.82,
"z":3.61
},
{
"id":1345,
"carat":0.96,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.4,
"table":56,
"price":2961,
"x":6.32,
"y":6.23,
"z":3.79
},
{
"id":1346,
"carat":0.63,
"cut":"Ideal",
"color":"D",
"clarity":"VVS2",
"depth":62.6,
"table":56,
"price":2962,
"x":5.47,
"y":5.49,
"z":3.43
},
{
"id":1347,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62,
"table":56,
"price":2962,
"x":5.73,
"y":5.76,
"z":3.56
},
{
"id":1348,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.2,
"table":56,
"price":2962,
"x":5.69,
"y":5.72,
"z":3.55
},
{
"id":1349,
"carat":0.82,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":62.4,
"table":56,
"price":2962,
"x":6.01,
"y":5.98,
"z":3.74
},
{
"id":1350,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.1,
"table":53,
"price":2963,
"x":5.76,
"y":5.73,
"z":3.57
},
{
"id":1351,
"carat":0.91,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":58.6,
"table":63,
"price":2963,
"x":6.38,
"y":6.32,
"z":3.72
},
{
"id":1352,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.9,
"table":57,
"price":2964,
"x":5.68,
"y":5.7,
"z":3.58
},
{
"id":1353,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":62.9,
"table":55,
"price":2964,
"x":5.64,
"y":5.68,
"z":3.56
},
{
"id":1354,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":59.4,
"table":59,
"price":2964,
"x":5.78,
"y":5.81,
"z":3.44
},
{
"id":1355,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":63.6,
"table":58,
"price":2964,
"x":5.61,
"y":5.56,
"z":3.55
},
{
"id":1356,
"carat":0.7,
"cut":"Fair",
"color":"E",
"clarity":"VS1",
"depth":64.5,
"table":57,
"price":2964,
"x":5.59,
"y":5.55,
"z":3.59
},
{
"id":1357,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.7,
"table":56,
"price":2964,
"x":5.84,
"y":5.86,
"z":3.61
},
{
"id":1358,
"carat":0.9,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":65.7,
"table":59,
"price":2964,
"x":6.03,
"y":5.99,
"z":3.95
},
{
"id":1359,
"carat":0.9,
"cut":"Good",
"color":"F",
"clarity":"SI2",
"depth":64.2,
"table":62,
"price":2964,
"x":6.08,
"y":6,
"z":3.88
},
{
"id":1360,
"carat":0.9,
"cut":"Fair",
"color":"J",
"clarity":"VS1",
"depth":65.4,
"table":60,
"price":2964,
"x":6.02,
"y":5.93,
"z":3.91
},
{
"id":1361,
"carat":0.9,
"cut":"Premium",
"color":"J",
"clarity":"VS1",
"depth":62.1,
"table":62,
"price":2964,
"x":6.12,
"y":6.05,
"z":3.78
},
{
"id":1362,
"carat":1,
"cut":"Fair",
"color":"G",
"clarity":"SI1",
"depth":65.7,
"table":54,
"price":2964,
"x":6.24,
"y":6.16,
"z":4.07
},
{
"id":1363,
"carat":1.5,
"cut":"Fair",
"color":"H",
"clarity":"I1",
"depth":65.6,
"table":54,
"price":2964,
"x":7.26,
"y":7.09,
"z":4.7
},
{
"id":1364,
"carat":1.05,
"cut":"Premium",
"color":"E",
"clarity":"I1",
"depth":61.4,
"table":58,
"price":2964,
"x":6.53,
"y":6.46,
"z":3.99
},
{
"id":1365,
"carat":0.9,
"cut":"Fair",
"color":"J",
"clarity":"VS1",
"depth":64.6,
"table":58,
"price":2964,
"x":6.12,
"y":6.06,
"z":3.93
},
{
"id":1366,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.8,
"table":56,
"price":2965,
"x":5.68,
"y":5.72,
"z":3.52
},
{
"id":1367,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.6,
"table":56,
"price":2965,
"x":5.71,
"y":5.75,
"z":3.53
},
{
"id":1368,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.3,
"table":57,
"price":2965,
"x":5.73,
"y":5.76,
"z":3.52
},
{
"id":1369,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.5,
"table":56,
"price":2965,
"x":5.72,
"y":5.76,
"z":3.52
},
{
"id":1370,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.7,
"table":55,
"price":2965,
"x":5.7,
"y":5.73,
"z":3.53
},
{
"id":1371,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.9,
"table":56,
"price":2965,
"x":5.73,
"y":5.79,
"z":3.51
},
{
"id":1372,
"carat":0.73,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":62.1,
"table":59,
"price":2966,
"x":5.68,
"y":5.73,
"z":3.54
},
{
"id":1373,
"carat":0.85,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":63.1,
"table":58,
"price":2966,
"x":6.02,
"y":6,
"z":3.79
},
{
"id":1374,
"carat":0.7,
"cut":"Ideal",
"color":"I",
"clarity":"VVS1",
"depth":61.8,
"table":56,
"price":2966,
"x":5.69,
"y":5.73,
"z":3.53
},
{
"id":1375,
"carat":0.75,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.2,
"table":55,
"price":2966,
"x":5.87,
"y":5.92,
"z":3.61
},
{
"id":1376,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":60.9,
"table":57,
"price":2966,
"x":6.06,
"y":6.02,
"z":3.68
},
{
"id":1377,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":61.3,
"table":56,
"price":2967,
"x":5.68,
"y":5.71,
"z":3.49
},
{
"id":1378,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":61.5,
"table":56,
"price":2967,
"x":5.69,
"y":5.75,
"z":3.52
},
{
"id":1379,
"carat":0.86,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":62.6,
"table":56,
"price":2967,
"x":6.01,
"y":6.07,
"z":3.78
},
{
"id":1380,
"carat":0.79,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":62,
"table":56,
"price":2967,
"x":5.91,
"y":5.93,
"z":3.67
},
{
"id":1381,
"carat":0.31,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.8,
"table":61,
"price":558,
"x":4.43,
"y":4.39,
"z":2.68
},
{
"id":1382,
"carat":0.31,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":61.2,
"table":61,
"price":558,
"x":4.37,
"y":4.36,
"z":2.67
},
{
"id":1383,
"carat":0.31,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":61.4,
"table":55,
"price":558,
"x":4.39,
"y":4.37,
"z":2.69
},
{
"id":1384,
"carat":0.3,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":62,
"table":56,
"price":559,
"x":4.28,
"y":4.3,
"z":2.66
},
{
"id":1385,
"carat":0.31,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":559,
"x":4.33,
"y":4.37,
"z":2.72
},
{
"id":1386,
"carat":0.31,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":61.4,
"table":55,
"price":559,
"x":4.38,
"y":4.41,
"z":2.69
},
{
"id":1387,
"carat":0.31,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":60.9,
"table":57,
"price":559,
"x":4.37,
"y":4.39,
"z":2.67
},
{
"id":1388,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":62.4,
"table":56,
"price":559,
"x":3.97,
"y":3.99,
"z":2.48
},
{
"id":1389,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":62.1,
"table":56,
"price":559,
"x":3.97,
"y":4,
"z":2.47
},
{
"id":1390,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":62.2,
"table":56,
"price":559,
"x":4,
"y":4.04,
"z":2.5
},
{
"id":1391,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":62,
"table":55,
"price":559,
"x":4.01,
"y":4.03,
"z":2.49
},
{
"id":1392,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":62,
"table":56,
"price":559,
"x":3.97,
"y":4.01,
"z":2.47
},
{
"id":1393,
"carat":0.32,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":559,
"x":4.4,
"y":4.43,
"z":2.73
},
{
"id":1394,
"carat":0.32,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":56,
"price":559,
"x":4.41,
"y":4.45,
"z":2.7
},
{
"id":1395,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.7,
"table":56,
"price":559,
"x":3.99,
"y":4.01,
"z":2.47
},
{
"id":1396,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":60.8,
"table":58,
"price":559,
"x":4.01,
"y":4.05,
"z":2.44
},
{
"id":1397,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.8,
"table":55,
"price":559,
"x":3.99,
"y":4.02,
"z":2.47
},
{
"id":1398,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.6,
"table":57,
"price":559,
"x":3.99,
"y":4.02,
"z":2.46
},
{
"id":1399,
"carat":0.24,
"cut":"Ideal",
"color":"G",
"clarity":"IF",
"depth":61.3,
"table":57,
"price":559,
"x":4,
"y":4.03,
"z":2.46
},
{
"id":1400,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.3,
"table":55,
"price":559,
"x":4.39,
"y":4.41,
"z":2.74
},
{
"id":1401,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.8,
"table":55,
"price":559,
"x":4.42,
"y":4.45,
"z":2.74
},
{
"id":1402,
"carat":0.25,
"cut":"Very Good",
"color":"E",
"clarity":"VVS2",
"depth":62,
"table":56,
"price":560,
"x":4.05,
"y":4.08,
"z":2.52
},
{
"id":1403,
"carat":0.25,
"cut":"Very Good",
"color":"E",
"clarity":"VVS1",
"depth":61.5,
"table":56,
"price":560,
"x":4.06,
"y":4.08,
"z":2.5
},
{
"id":1404,
"carat":0.25,
"cut":"Very Good",
"color":"F",
"clarity":"IF",
"depth":61.5,
"table":56,
"price":560,
"x":4.04,
"y":4.06,
"z":2.48
},
{
"id":1405,
"carat":0.27,
"cut":"Very Good",
"color":"F",
"clarity":"IF",
"depth":60.4,
"table":58,
"price":560,
"x":4.18,
"y":4.2,
"z":2.53
},
{
"id":1406,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.6,
"table":54,
"price":560,
"x":4.4,
"y":4.43,
"z":2.72
},
{
"id":1407,
"carat":0.36,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.6,
"table":56,
"price":560,
"x":4.57,
"y":4.62,
"z":2.83
},
{
"id":1408,
"carat":0.41,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.7,
"table":55,
"price":561,
"x":4.77,
"y":4.8,
"z":2.95
},
{
"id":1409,
"carat":0.32,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":60.2,
"table":58,
"price":561,
"x":4.43,
"y":4.47,
"z":2.68
},
{
"id":1410,
"carat":0.32,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.5,
"table":57,
"price":561,
"x":4.4,
"y":4.42,
"z":2.71
},
{
"id":1411,
"carat":0.75,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":60.2,
"table":60,
"price":2968,
"x":5.89,
"y":5.93,
"z":3.56
},
{
"id":1412,
"carat":0.92,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":59.2,
"table":60,
"price":2968,
"x":6.4,
"y":6.35,
"z":3.76
},
{
"id":1413,
"carat":1.13,
"cut":"Fair",
"color":"H",
"clarity":"I1",
"depth":64.8,
"table":59,
"price":2968,
"x":6.52,
"y":6.42,
"z":4.19
},
{
"id":1414,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":58.7,
"table":61,
"price":2968,
"x":5.88,
"y":5.85,
"z":3.44
},
{
"id":1415,
"carat":1.06,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":61.5,
"table":57,
"price":2968,
"x":6.57,
"y":6.49,
"z":4.02
},
{
"id":1416,
"carat":0.9,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62.4,
"table":57,
"price":2968,
"x":6.16,
"y":6.13,
"z":3.84
},
{
"id":1417,
"carat":0.8,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.2,
"table":57,
"price":2969,
"x":6.02,
"y":6.07,
"z":3.7
},
{
"id":1418,
"carat":0.52,
"cut":"Premium",
"color":"E",
"clarity":"VVS2",
"depth":60.1,
"table":58,
"price":2970,
"x":5.23,
"y":5.18,
"z":3.13
},
{
"id":1419,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.6,
"table":56,
"price":2970,
"x":5.84,
"y":5.87,
"z":3.55
},
{
"id":1420,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":63.8,
"table":58,
"price":2970,
"x":5.58,
"y":5.61,
"z":3.57
},
{
"id":1421,
"carat":0.78,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":57,
"price":2970,
"x":5.91,
"y":5.85,
"z":3.68
},
{
"id":1422,
"carat":0.78,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.6,
"table":56,
"price":2970,
"x":5.94,
"y":5.91,
"z":3.64
},
{
"id":1423,
"carat":1.04,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":59.9,
"table":64,
"price":2970,
"x":6.51,
"y":6.45,
"z":3.88
},
{
"id":1424,
"carat":0.91,
"cut":"Fair",
"color":"F",
"clarity":"SI1",
"depth":64.9,
"table":57,
"price":2971,
"x":6.13,
"y":6.08,
"z":3.96
},
{
"id":1425,
"carat":0.81,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.8,
"table":58,
"price":2972,
"x":5.85,
"y":5.97,
"z":3.77
},
{
"id":1426,
"carat":0.76,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":59.4,
"table":57,
"price":2972,
"x":5.99,
"y":6.03,
"z":3.57
},
{
"id":1427,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.7,
"table":56,
"price":2972,
"x":5.64,
"y":5.71,
"z":3.5
},
{
"id":1428,
"carat":0.9,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":63.1,
"table":60,
"price":2972,
"x":6.14,
"y":6.09,
"z":3.86
},
{
"id":1429,
"carat":0.81,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":62.6,
"table":58,
"price":2972,
"x":5.96,
"y":5.9,
"z":3.71
},
{
"id":1430,
"carat":0.9,
"cut":"Very Good",
"color":"J",
"clarity":"SI2",
"depth":63.3,
"table":59,
"price":2973,
"x":6.08,
"y":6.12,
"z":3.86
},
{
"id":1431,
"carat":0.75,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.3,
"table":57,
"price":2973,
"x":5.83,
"y":5.86,
"z":3.64
},
{
"id":1432,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":60.6,
"table":56,
"price":2973,
"x":5.9,
"y":5.95,
"z":3.59
},
{
"id":1433,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":60.5,
"table":56,
"price":2973,
"x":5.74,
"y":5.79,
"z":3.49
},
{
"id":1434,
"carat":0.81,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":59.5,
"table":60,
"price":2973,
"x":6.05,
"y":6.09,
"z":3.61
},
{
"id":1435,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":59.8,
"table":62,
"price":2973,
"x":5.74,
"y":5.8,
"z":3.45
},
{
"id":1436,
"carat":0.82,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.6,
"table":57,
"price":2974,
"x":5.96,
"y":6.02,
"z":3.75
},
{
"id":1437,
"carat":0.57,
"cut":"Ideal",
"color":"F",
"clarity":"IF",
"depth":61.8,
"table":54,
"price":2974,
"x":5.33,
"y":5.35,
"z":3.3
},
{
"id":1438,
"carat":0.9,
"cut":"Good",
"color":"H",
"clarity":"SI1",
"depth":64.2,
"table":60,
"price":2974,
"x":6.05,
"y":6.02,
"z":3.87
},
{
"id":1439,
"carat":1,
"cut":"Fair",
"color":"D",
"clarity":"SI2",
"depth":69.3,
"table":58,
"price":2974,
"x":5.96,
"y":5.87,
"z":4.1
},
{
"id":1440,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":59.5,
"table":57,
"price":2974,
"x":5.81,
"y":5.8,
"z":3.46
},
{
"id":1441,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":57,
"price":2975,
"x":5.69,
"y":5.72,
"z":3.54
},
{
"id":1442,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":62.2,
"table":58,
"price":2975,
"x":5.72,
"y":5.66,
"z":3.54
},
{
"id":1443,
"carat":0.82,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":63.3,
"table":56,
"price":2975,
"x":5.99,
"y":5.95,
"z":3.78
},
{
"id":1444,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.8,
"table":54,
"price":2975,
"x":5.9,
"y":5.97,
"z":3.74
},
{
"id":1445,
"carat":0.83,
"cut":"Premium",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":59,
"price":2975,
"x":6.02,
"y":5.99,
"z":3.7
},
{
"id":1446,
"carat":0.83,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.3,
"table":54,
"price":2975,
"x":6.1,
"y":6.06,
"z":3.73
},
{
"id":1447,
"carat":0.77,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":60.4,
"table":58,
"price":2975,
"x":6,
"y":5.88,
"z":3.59
},
{
"id":1448,
"carat":0.79,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":2976,
"x":5.88,
"y":5.92,
"z":3.69
},
{
"id":1449,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":56,
"price":2976,
"x":5.82,
"y":5.85,
"z":3.56
},
{
"id":1450,
"carat":0.91,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":63,
"table":54,
"price":2976,
"x":6.17,
"y":6.12,
"z":3.86
},
{
"id":1451,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":60.8,
"table":58,
"price":2977,
"x":5.75,
"y":5.77,
"z":3.5
},
{
"id":1452,
"carat":0.81,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.9,
"table":57,
"price":2977,
"x":5.98,
"y":6.01,
"z":3.71
},
{
"id":1453,
"carat":0.76,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":60.9,
"table":58,
"price":2977,
"x":5.9,
"y":5.85,
"z":3.58
},
{
"id":1454,
"carat":0.54,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.6,
"table":55,
"price":2977,
"x":5.28,
"y":5.27,
"z":3.25
},
{
"id":1455,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":62.5,
"table":58,
"price":2978,
"x":5.7,
"y":5.73,
"z":3.57
},
{
"id":1456,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":61.3,
"table":54,
"price":2978,
"x":5.77,
"y":5.83,
"z":3.54
},
{
"id":1457,
"carat":0.8,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61,
"table":55,
"price":2978,
"x":6,
"y":6.03,
"z":3.67
},
{
"id":1458,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.1,
"table":56,
"price":2978,
"x":5.85,
"y":5.88,
"z":3.64
},
{
"id":1459,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":59.9,
"table":59,
"price":2979,
"x":5.76,
"y":5.82,
"z":3.47
},
{
"id":1460,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.7,
"table":56,
"price":2979,
"x":5.74,
"y":5.71,
"z":3.53
},
{
"id":1461,
"carat":0.86,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":61.8,
"table":58,
"price":2980,
"x":6.12,
"y":6.15,
"z":3.79
},
{
"id":1462,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.5,
"table":57,
"price":2980,
"x":5.67,
"y":5.78,
"z":3.52
},
{
"id":1463,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"SI1",
"depth":61.3,
"table":61,
"price":2980,
"x":5.63,
"y":5.69,
"z":3.47
},
{
"id":1464,
"carat":0.64,
"cut":"Good",
"color":"F",
"clarity":"IF",
"depth":58.6,
"table":61,
"price":2980,
"x":5.69,
"y":5.71,
"z":3.34
},
{
"id":1465,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.2,
"table":55,
"price":2981,
"x":5.67,
"y":5.71,
"z":3.54
},
{
"id":1466,
"carat":0.91,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":60.2,
"table":59,
"price":2981,
"x":6.29,
"y":6.24,
"z":3.77
},
{
"id":1467,
"carat":0.91,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.6,
"table":57,
"price":2981,
"x":6.24,
"y":6.23,
"z":3.84
},
{
"id":1468,
"carat":0.9,
"cut":"Good",
"color":"E",
"clarity":"SI2",
"depth":58.7,
"table":63,
"price":2982,
"x":6.2,
"y":6.23,
"z":3.65
},
{
"id":1469,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.7,
"table":57,
"price":2982,
"x":5.7,
"y":5.75,
"z":3.53
},
{
"id":1470,
"carat":0.9,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":65.8,
"table":59,
"price":2982,
"x":6.03,
"y":5.98,
"z":3.95
},
{
"id":1471,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":59.5,
"table":57,
"price":2982,
"x":5.86,
"y":5.83,
"z":3.48
},
{
"id":1472,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.8,
"table":63,
"price":2982,
"x":5.76,
"y":5.68,
"z":3.48
},
{
"id":1473,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":2982,
"x":5.72,
"y":5.68,
"z":3.57
},
{
"id":1474,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":54,
"price":2984,
"x":5.8,
"y":5.77,
"z":3.63
},
{
"id":1475,
"carat":0.9,
"cut":"Very Good",
"color":"J",
"clarity":"VS2",
"depth":63.1,
"table":57,
"price":2984,
"x":6.12,
"y":6.06,
"z":3.84
},
{
"id":1476,
"carat":1,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":62.5,
"table":62,
"price":2984,
"x":6.42,
"y":6.35,
"z":3.99
},
{
"id":1477,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63.1,
"table":56,
"price":2985,
"x":5.62,
"y":5.69,
"z":3.57
},
{
"id":1478,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":57,
"price":2985,
"x":5.82,
"y":5.86,
"z":3.63
},
{
"id":1479,
"carat":0.82,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":62.3,
"table":60,
"price":2985,
"x":5.97,
"y":5.94,
"z":3.71
},
{
"id":1480,
"carat":0.77,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":62.8,
"table":58,
"price":2986,
"x":5.78,
"y":5.84,
"z":3.65
},
{
"id":1481,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.9,
"table":54.1,
"price":2986,
"x":5.92,
"y":5.98,
"z":3.69
},
{
"id":1482,
"carat":0.82,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.6,
"table":57,
"price":2986,
"x":6,
"y":6.05,
"z":3.71
},
{
"id":1483,
"carat":0.84,
"cut":"Ideal",
"color":"G",
"clarity":"SI2",
"depth":62,
"table":56,
"price":2986,
"x":6.02,
"y":6.05,
"z":3.74
},
{
"id":1484,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.3,
"table":59,
"price":2987,
"x":5.68,
"y":5.7,
"z":3.49
},
{
"id":1485,
"carat":0.74,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":2987,
"x":5.8,
"y":5.84,
"z":3.58
},
{
"id":1486,
"carat":0.77,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.7,
"table":58,
"price":2988,
"x":5.86,
"y":5.9,
"z":3.63
},
{
"id":1487,
"carat":0.6,
"cut":"Very Good",
"color":"F",
"clarity":"IF",
"depth":60.1,
"table":54,
"price":2988,
"x":5.5,
"y":5.58,
"z":3.33
},
{
"id":1488,
"carat":1.03,
"cut":"Very Good",
"color":"G",
"clarity":"I1",
"depth":63.2,
"table":58,
"price":2988,
"x":6.44,
"y":6.34,
"z":4.04
},
{
"id":1489,
"carat":0.76,
"cut":"Ideal",
"color":"I",
"clarity":"IF",
"depth":61.6,
"table":55,
"price":2988,
"x":5.92,
"y":5.89,
"z":3.64
},
{
"id":1490,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.1,
"table":54,
"price":2989,
"x":5.76,
"y":5.8,
"z":3.59
},
{
"id":1491,
"carat":0.83,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":2990,
"x":6.03,
"y":6,
"z":3.69
},
{
"id":1492,
"carat":0.76,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":62.1,
"table":54,
"price":2990,
"x":5.88,
"y":5.94,
"z":3.67
},
{
"id":1493,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.9,
"table":57,
"price":2990,
"x":5.68,
"y":5.73,
"z":3.59
},
{
"id":1494,
"carat":0.57,
"cut":"Good",
"color":"E",
"clarity":"VVS1",
"depth":59.1,
"table":65,
"price":2990,
"x":5.34,
"y":5.43,
"z":3.18
},
{
"id":1495,
"carat":0.75,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":60.6,
"table":55,
"price":2991,
"x":5.91,
"y":5.93,
"z":3.59
},
{
"id":1496,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":60.3,
"table":60,
"price":2991,
"x":5.71,
"y":5.76,
"z":3.46
},
{
"id":1497,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":62.8,
"table":56,
"price":2992,
"x":5.66,
"y":5.68,
"z":3.56
},
{
"id":1498,
"carat":0.75,
"cut":"Ideal",
"color":"H",
"clarity":"VVS2",
"depth":62,
"table":55.1,
"price":2992,
"x":5.83,
"y":5.85,
"z":3.62
},
{
"id":1499,
"carat":1.06,
"cut":"Fair",
"color":"J",
"clarity":"SI2",
"depth":61,
"table":66,
"price":2992,
"x":6.54,
"y":6.35,
"z":3.93
},
{
"id":1500,
"carat":0.69,
"cut":"Very Good",
"color":"F",
"clarity":"VVS2",
"depth":61.5,
"table":60,
"price":2993,
"x":5.64,
"y":5.67,
"z":3.48
},
{
"id":1501,
"carat":0.87,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":61,
"table":56,
"price":2993,
"x":6.15,
"y":6.19,
"z":3.77
},
{
"id":1502,
"carat":0.75,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.6,
"table":56,
"price":2993,
"x":5.73,
"y":5.75,
"z":3.65
},
{
"id":1503,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":63,
"table":55,
"price":2993,
"x":5.65,
"y":5.69,
"z":3.57
},
{
"id":1504,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.4,
"table":55,
"price":2993,
"x":5.65,
"y":5.7,
"z":3.54
},
{
"id":1505,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.1,
"table":57,
"price":2993,
"x":5.83,
"y":5.86,
"z":3.57
},
{
"id":1506,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.1,
"table":59,
"price":2993,
"x":5.76,
"y":5.8,
"z":3.53
},
{
"id":1507,
"carat":1.01,
"cut":"Fair",
"color":"G",
"clarity":"SI1",
"depth":65.1,
"table":57,
"price":2993,
"x":6.27,
"y":6.22,
"z":4.07
},
{
"id":1508,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS2",
"depth":59.6,
"table":56,
"price":2994,
"x":5.84,
"y":5.88,
"z":3.49
},
{
"id":1509,
"carat":0.71,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":59.3,
"table":55,
"price":2994,
"x":5.88,
"y":5.95,
"z":3.51
},
{
"id":1510,
"carat":0.81,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":63.1,
"table":58,
"price":2994,
"x":5.88,
"y":5.84,
"z":3.7
},
{
"id":1511,
"carat":1.24,
"cut":"Premium",
"color":"J",
"clarity":"I1",
"depth":61.9,
"table":55,
"price":2994,
"x":6.92,
"y":6.85,
"z":4.26
},
{
"id":1512,
"carat":0.81,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":62,
"table":58,
"price":2994,
"x":5.95,
"y":5.92,
"z":3.68
},
{
"id":1513,
"carat":0.81,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":61.7,
"table":58,
"price":2994,
"x":5.97,
"y":5.93,
"z":3.67
},
{
"id":1514,
"carat":0.73,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2995,
"x":5.78,
"y":5.82,
"z":3.56
},
{
"id":1515,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":60.9,
"table":56,
"price":2995,
"x":5.76,
"y":5.8,
"z":3.52
},
{
"id":1516,
"carat":0.91,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":65.3,
"table":51,
"price":2996,
"x":6.05,
"y":5.98,
"z":3.93
},
{
"id":1517,
"carat":0.88,
"cut":"Very Good",
"color":"I",
"clarity":"VS1",
"depth":63.3,
"table":55,
"price":2996,
"x":6.11,
"y":6.06,
"z":3.85
},
{
"id":1518,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":2996,
"x":5.9,
"y":5.93,
"z":3.63
},
{
"id":1519,
"carat":0.74,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.9,
"table":55,
"price":2997,
"x":5.8,
"y":5.83,
"z":3.6
},
{
"id":1520,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.1,
"table":56,
"price":2997,
"x":5.78,
"y":5.8,
"z":3.54
},
{
"id":1521,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":62.8,
"table":57,
"price":2998,
"x":5.69,
"y":5.75,
"z":3.59
},
{
"id":1522,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.4,
"table":56,
"price":2998,
"x":5.79,
"y":5.81,
"z":3.56
},
{
"id":1523,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.6,
"table":57,
"price":2998,
"x":5.7,
"y":5.73,
"z":3.52
},
{
"id":1524,
"carat":1.01,
"cut":"Fair",
"color":"J",
"clarity":"VVS2",
"depth":66,
"table":56,
"price":2998,
"x":6.29,
"y":6.22,
"z":4.13
},
{
"id":1525,
"carat":0.85,
"cut":"Fair",
"color":"G",
"clarity":"VS1",
"depth":57.7,
"table":67,
"price":2998,
"x":6.26,
"y":6.19,
"z":3.59
},
{
"id":1526,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":59.7,
"table":59,
"price":2999,
"x":5.82,
"y":5.78,
"z":3.46
},
{
"id":1527,
"carat":0.73,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":62.4,
"table":58.1,
"price":2999,
"x":5.71,
"y":5.75,
"z":3.58
},
{
"id":1528,
"carat":1.02,
"cut":"Fair",
"color":"H",
"clarity":"I1",
"depth":61.5,
"table":60,
"price":2999,
"x":6.4,
"y":6.34,
"z":3.92
},
{
"id":1529,
"carat":0.87,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":61.6,
"table":58,
"price":2999,
"x":6.14,
"y":6.1,
"z":3.77
},
{
"id":1530,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.9,
"table":56,
"price":2999,
"x":5.69,
"y":5.74,
"z":3.54
},
{
"id":1531,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":60.6,
"table":60,
"price":2999,
"x":5.77,
"y":5.69,
"z":3.47
},
{
"id":1532,
"carat":0.74,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":62.7,
"table":58,
"price":2999,
"x":5.83,
"y":5.74,
"z":3.63
},
{
"id":1533,
"carat":0.74,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":60.9,
"table":62,
"price":2999,
"x":5.83,
"y":5.8,
"z":3.54
},
{
"id":1534,
"carat":0.7,
"cut":"Premium",
"color":"G",
"clarity":"VVS2",
"depth":60.2,
"table":61,
"price":2999,
"x":5.74,
"y":5.66,
"z":3.43
},
{
"id":1535,
"carat":0.77,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.5,
"table":56,
"price":3000,
"x":5.87,
"y":5.91,
"z":3.68
},
{
"id":1536,
"carat":0.93,
"cut":"Good",
"color":"J",
"clarity":"VS2",
"depth":63.6,
"table":61,
"price":3000,
"x":6.16,
"y":6.08,
"z":3.89
},
{
"id":1537,
"carat":0.9,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":60.6,
"table":60,
"price":3001,
"x":6.23,
"y":6.28,
"z":3.79
},
{
"id":1538,
"carat":0.9,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":62.5,
"table":58,
"price":3001,
"x":6.1,
"y":6.15,
"z":3.83
},
{
"id":1539,
"carat":0.9,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":62,
"table":56,
"price":3001,
"x":6.16,
"y":6.2,
"z":3.83
},
{
"id":1540,
"carat":0.72,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":58,
"price":3001,
"x":5.74,
"y":5.78,
"z":3.54
},
{
"id":1541,
"carat":0.7,
"cut":"Premium",
"color":"D",
"clarity":"VS1",
"depth":61.6,
"table":61,
"price":3001,
"x":5.66,
"y":5.61,
"z":3.47
},
{
"id":1542,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS1",
"depth":63.6,
"table":60,
"price":3001,
"x":5.61,
"y":5.52,
"z":3.54
},
{
"id":1543,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":63.4,
"table":59,
"price":3001,
"x":5.58,
"y":5.55,
"z":3.53
},
{
"id":1544,
"carat":0.6,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":62.1,
"table":56,
"price":3001,
"x":5.42,
"y":5.43,
"z":3.37
},
{
"id":1545,
"carat":0.75,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":60.6,
"table":57,
"price":3002,
"x":5.86,
"y":5.89,
"z":3.56
},
{
"id":1546,
"carat":0.83,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":62.1,
"table":58,
"price":3002,
"x":6.01,
"y":6.04,
"z":3.74
},
{
"id":1547,
"carat":0.77,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":60.4,
"table":58,
"price":3002,
"x":5.91,
"y":5.95,
"z":3.58
},
{
"id":1548,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":62.1,
"table":60,
"price":3002,
"x":5.68,
"y":5.72,
"z":3.54
},
{
"id":1549,
"carat":0.89,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.3,
"table":59,
"price":3002,
"x":6.04,
"y":6.09,
"z":3.84
},
{
"id":1550,
"carat":0.72,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":63.8,
"table":58,
"price":3002,
"x":5.68,
"y":5.63,
"z":3.61
},
{
"id":1551,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":61.6,
"table":55,
"price":3002,
"x":5.78,
"y":5.77,
"z":3.56
},
{
"id":1552,
"carat":0.8,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":60.6,
"table":59,
"price":3002,
"x":6.02,
"y":5.97,
"z":3.63
},
{
"id":1553,
"carat":0.73,
"cut":"Fair",
"color":"F",
"clarity":"VS1",
"depth":58.6,
"table":66,
"price":3002,
"x":5.92,
"y":5.88,
"z":3.46
},
{
"id":1554,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.5,
"table":56,
"price":3003,
"x":5.89,
"y":5.91,
"z":3.63
},
{
"id":1555,
"carat":1.01,
"cut":"Fair",
"color":"D",
"clarity":"SI2",
"depth":64.6,
"table":56,
"price":3003,
"x":6.31,
"y":6.24,
"z":4.05
},
{
"id":1556,
"carat":0.65,
"cut":"Premium",
"color":"D",
"clarity":"VVS2",
"depth":59.9,
"table":58,
"price":3003,
"x":5.69,
"y":5.63,
"z":3.39
},
{
"id":1557,
"carat":0.81,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.9,
"table":58,
"price":3004,
"x":5.99,
"y":5.96,
"z":3.7
},
{
"id":1558,
"carat":0.81,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61.8,
"table":55,
"price":3004,
"x":6.04,
"y":6,
"z":3.72
},
{
"id":1559,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.7,
"table":55,
"price":3004,
"x":5.69,
"y":5.72,
"z":3.52
},
{
"id":1560,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":61.3,
"table":54,
"price":3004,
"x":5.53,
"y":5.5,
"z":3.38
},
{
"id":1561,
"carat":0.78,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.6,
"table":57,
"price":3004,
"x":5.95,
"y":5.97,
"z":3.61
},
{
"id":1562,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.3,
"table":56,
"price":3004,
"x":5.77,
"y":5.79,
"z":3.6
},
{
"id":1563,
"carat":0.92,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":60.2,
"table":61,
"price":3004,
"x":6.32,
"y":6.27,
"z":3.79
},
{
"id":1564,
"carat":0.75,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61.1,
"table":59,
"price":3005,
"x":5.85,
"y":5.9,
"z":3.59
},
{
"id":1565,
"carat":0.55,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.2,
"table":54,
"price":3005,
"x":5.3,
"y":5.35,
"z":3.26
},
{
"id":1566,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63,
"table":57,
"price":3005,
"x":5.89,
"y":5.95,
"z":3.73
},
{
"id":1567,
"carat":0.72,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":60.4,
"table":56,
"price":3005,
"x":5.8,
"y":5.86,
"z":3.52
},
{
"id":1568,
"carat":0.73,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":61.6,
"table":57,
"price":3005,
"x":5.81,
"y":5.78,
"z":3.57
},
{
"id":1569,
"carat":0.91,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":63.4,
"table":58,
"price":3006,
"x":6.08,
"y":6.12,
"z":3.87
},
{
"id":1570,
"carat":0.91,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":62.8,
"table":59,
"price":3006,
"x":6.09,
"y":6.14,
"z":3.84
},
{
"id":1571,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":61.1,
"table":58,
"price":3006,
"x":5.8,
"y":5.76,
"z":3.53
},
{
"id":1572,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.2,
"table":60,
"price":3006,
"x":5.63,
"y":5.6,
"z":3.55
},
{
"id":1573,
"carat":0.55,
"cut":"Premium",
"color":"D",
"clarity":"VVS1",
"depth":60.3,
"table":59,
"price":3006,
"x":5.34,
"y":5.3,
"z":3.21
},
{
"id":1574,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VVS2",
"depth":60.7,
"table":57,
"price":3007,
"x":5.76,
"y":5.8,
"z":3.51
},
{
"id":1575,
"carat":0.71,
"cut":"Ideal",
"color":"I",
"clarity":"VVS2",
"depth":60.4,
"table":57,
"price":3007,
"x":5.78,
"y":5.81,
"z":3.5
},
{
"id":1576,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VVS2",
"depth":62.7,
"table":53,
"price":3007,
"x":5.65,
"y":5.61,
"z":3.53
},
{
"id":1577,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.3,
"table":55,
"price":3007,
"x":5.73,
"y":5.79,
"z":3.53
},
{
"id":1578,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":3007,
"x":5.72,
"y":5.78,
"z":3.54
},
{
"id":1579,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.9,
"table":56,
"price":3007,
"x":5.73,
"y":5.76,
"z":3.55
},
{
"id":1580,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":57,
"price":3007,
"x":5.73,
"y":5.76,
"z":3.54
},
{
"id":1581,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.4,
"table":56,
"price":3007,
"x":5.72,
"y":5.77,
"z":3.53
},
{
"id":1582,
"carat":0.76,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.2,
"table":57,
"price":3007,
"x":5.88,
"y":5.91,
"z":3.61
},
{
"id":1583,
"carat":0.91,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.1,
"table":60,
"price":3007,
"x":6.13,
"y":6.1,
"z":3.86
},
{
"id":1584,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":60.4,
"table":58,
"price":3008,
"x":5.71,
"y":5.78,
"z":3.47
},
{
"id":1585,
"carat":0.61,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.2,
"table":56,
"price":3008,
"x":5.46,
"y":5.48,
"z":3.35
},
{
"id":1586,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.3,
"table":57,
"price":3008,
"x":5.7,
"y":5.76,
"z":3.51
},
{
"id":1587,
"carat":0.82,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":62.5,
"table":59,
"price":3008,
"x":5.96,
"y":5.94,
"z":3.72
},
{
"id":1588,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.7,
"table":58,
"price":3009,
"x":5.63,
"y":5.68,
"z":3.6
},
{
"id":1589,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62.1,
"table":57,
"price":3009,
"x":5.67,
"y":5.69,
"z":3.53
},
{
"id":1590,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.4,
"table":58,
"price":3009,
"x":5.64,
"y":5.68,
"z":3.59
},
{
"id":1591,
"carat":0.74,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":58,
"price":3009,
"x":5.8,
"y":5.84,
"z":3.57
},
{
"id":1592,
"carat":0.83,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62.1,
"table":57,
"price":3010,
"x":6,
"y":6.02,
"z":3.73
},
{
"id":1593,
"carat":0.83,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":62.1,
"table":58,
"price":3010,
"x":5.98,
"y":6.06,
"z":3.74
},
{
"id":1594,
"carat":0.8,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":60.7,
"table":59,
"price":3010,
"x":5.98,
"y":6.02,
"z":3.64
},
{
"id":1595,
"carat":0.8,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.2,
"table":57,
"price":3011,
"x":5.89,
"y":5.85,
"z":3.65
},
{
"id":1596,
"carat":0.73,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.7,
"table":55,
"price":3011,
"x":5.87,
"y":5.89,
"z":3.57
},
{
"id":1597,
"carat":1,
"cut":"Very Good",
"color":"G",
"clarity":"I1",
"depth":62.5,
"table":62,
"price":3011,
"x":6.42,
"y":6.35,
"z":3.99
},
{
"id":1598,
"carat":1.2,
"cut":"Fair",
"color":"J",
"clarity":"I1",
"depth":64.9,
"table":59,
"price":3011,
"x":6.61,
"y":6.54,
"z":4.27
},
{
"id":1599,
"carat":1.2,
"cut":"Fair",
"color":"I",
"clarity":"I1",
"depth":62.2,
"table":66,
"price":3011,
"x":6.77,
"y":6.7,
"z":4.2
},
{
"id":1600,
"carat":1.2,
"cut":"Fair",
"color":"I",
"clarity":"I1",
"depth":66.2,
"table":55,
"price":3011,
"x":6.61,
"y":6.51,
"z":4.34
},
{
"id":1601,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62,
"table":54,
"price":3011,
"x":5.43,
"y":5.47,
"z":3.38
},
{
"id":1602,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.9,
"table":55,
"price":3011,
"x":5.7,
"y":5.74,
"z":3.54
},
{
"id":1603,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.8,
"table":57,
"price":3011,
"x":5.67,
"y":5.75,
"z":3.53
},
{
"id":1604,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.7,
"table":55,
"price":3011,
"x":5.66,
"y":5.69,
"z":3.56
},
{
"id":1605,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.4,
"table":58,
"price":3011,
"x":5.7,
"y":5.73,
"z":3.51
},
{
"id":1606,
"carat":0.77,
"cut":"Ideal",
"color":"D",
"clarity":"SI2",
"depth":62.3,
"table":55,
"price":3011,
"x":5.9,
"y":5.85,
"z":3.66
},
{
"id":1607,
"carat":0.75,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":3011,
"x":5.82,
"y":5.85,
"z":3.61
},
{
"id":1608,
"carat":0.75,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.9,
"table":56,
"price":3011,
"x":5.81,
"y":5.85,
"z":3.61
},
{
"id":1609,
"carat":1,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":55.4,
"table":62,
"price":3011,
"x":6.63,
"y":6.59,
"z":3.66
},
{
"id":1610,
"carat":0.78,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":61.3,
"table":60,
"price":3012,
"x":5.89,
"y":5.96,
"z":3.63
},
{
"id":1611,
"carat":0.82,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.2,
"table":57,
"price":3012,
"x":6,
"y":5.97,
"z":3.72
},
{
"id":1612,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.7,
"table":56,
"price":3012,
"x":5.74,
"y":5.78,
"z":3.55
},
{
"id":1613,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61,
"table":57,
"price":3012,
"x":5.77,
"y":5.8,
"z":3.53
},
{
"id":1614,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.3,
"table":55,
"price":3012,
"x":5.85,
"y":5.89,
"z":3.54
},
{
"id":1615,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.9,
"table":56,
"price":3013,
"x":5.84,
"y":5.87,
"z":3.74
},
{
"id":1616,
"carat":0.75,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":61.6,
"table":58,
"price":3013,
"x":5.84,
"y":5.89,
"z":3.61
},
{
"id":1617,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":53,
"price":3013,
"x":5.7,
"y":5.77,
"z":3.56
},
{
"id":1618,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.1,
"table":57,
"price":3013,
"x":5.76,
"y":5.82,
"z":3.54
},
{
"id":1619,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.8,
"table":56,
"price":3013,
"x":6,
"y":5.97,
"z":3.7
},
{
"id":1620,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":60.1,
"table":57,
"price":3013,
"x":6.07,
"y":6.1,
"z":3.66
},
{
"id":1621,
"carat":0.9,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.2,
"table":60,
"price":3013,
"x":6.08,
"y":6.05,
"z":3.77
},
{
"id":1622,
"carat":0.78,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":55,
"price":3014,
"x":5.9,
"y":5.87,
"z":3.69
},
{
"id":1623,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":61.8,
"table":56,
"price":3014,
"x":5.7,
"y":5.75,
"z":3.54
},
{
"id":1624,
"carat":0.73,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":60.8,
"table":59,
"price":3014,
"x":5.8,
"y":5.85,
"z":3.54
},
{
"id":1625,
"carat":1.01,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":61.1,
"table":61,
"price":3014,
"x":6.49,
"y":6.35,
"z":3.92
},
{
"id":1626,
"carat":0.9,
"cut":"Good",
"color":"G",
"clarity":"SI2",
"depth":63.7,
"table":62,
"price":3014,
"x":6.07,
"y":6.01,
"z":3.85
},
{
"id":1627,
"carat":0.84,
"cut":"Very Good",
"color":"G",
"clarity":"SI2",
"depth":62.8,
"table":57,
"price":3015,
"x":6,
"y":6.04,
"z":3.78
},
{
"id":1628,
"carat":0.91,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":58.6,
"table":63,
"price":3015,
"x":6.32,
"y":6.38,
"z":3.72
},
{
"id":1629,
"carat":0.78,
"cut":"Ideal",
"color":"H",
"clarity":"VVS2",
"depth":61.7,
"table":55,
"price":3015,
"x":5.9,
"y":5.94,
"z":3.65
},
{
"id":1630,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61,
"table":56,
"price":3015,
"x":5.99,
"y":6.05,
"z":3.67
},
{
"id":1631,
"carat":0.72,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":62.1,
"table":59,
"price":3016,
"x":5.7,
"y":5.73,
"z":3.55
},
{
"id":1632,
"carat":0.7,
"cut":"Premium",
"color":"E",
"clarity":"VS1",
"depth":61.8,
"table":58,
"price":3016,
"x":5.71,
"y":5.75,
"z":3.54
},
{
"id":1633,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.7,
"table":57,
"price":3016,
"x":5.65,
"y":5.7,
"z":3.56
},
{
"id":1634,
"carat":0.9,
"cut":"Good",
"color":"F",
"clarity":"SI2",
"depth":64.2,
"table":62,
"price":3016,
"x":6,
"y":6.08,
"z":3.88
},
{
"id":1635,
"carat":0.76,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.9,
"table":55,
"price":3016,
"x":5.85,
"y":5.88,
"z":3.64
},
{
"id":1636,
"carat":0.96,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":62.8,
"table":60,
"price":3016,
"x":6.3,
"y":6.24,
"z":3.94
},
{
"id":1637,
"carat":0.9,
"cut":"Ideal",
"color":"H",
"clarity":"SI2",
"depth":62.8,
"table":55,
"price":3016,
"x":6.18,
"y":6.11,
"z":3.86
},
{
"id":1638,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.1,
"table":60,
"price":3017,
"x":5.73,
"y":5.76,
"z":3.45
},
{
"id":1639,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":61.8,
"table":60,
"price":3017,
"x":5.66,
"y":5.7,
"z":3.51
},
{
"id":1640,
"carat":1.12,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":60.3,
"table":60,
"price":3017,
"x":6.75,
"y":6.69,
"z":4.05
},
{
"id":1641,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.1,
"table":56,
"price":3017,
"x":5.72,
"y":5.74,
"z":3.5
},
{
"id":1642,
"carat":0.5,
"cut":"Good",
"color":"D",
"clarity":"VVS2",
"depth":62.4,
"table":64,
"price":3017,
"x":5.03,
"y":5.06,
"z":3.14
},
{
"id":1643,
"carat":1.12,
"cut":"Very Good",
"color":"G",
"clarity":"I1",
"depth":61.2,
"table":63,
"price":3017,
"x":6.68,
"y":6.59,
"z":4.05
},
{
"id":1644,
"carat":0.7,
"cut":"Good",
"color":"F",
"clarity":"VVS1",
"depth":63.2,
"table":58,
"price":3018,
"x":5.58,
"y":5.62,
"z":3.54
},
{
"id":1645,
"carat":1.03,
"cut":"Very Good",
"color":"G",
"clarity":"I1",
"depth":60.8,
"table":57,
"price":3018,
"x":6.51,
"y":6.55,
"z":3.97
},
{
"id":1646,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":62.5,
"table":59,
"price":3018,
"x":5.68,
"y":5.61,
"z":3.53
},
{
"id":1647,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VVS2",
"depth":62.6,
"table":56,
"price":3018,
"x":5.7,
"y":5.65,
"z":3.55
},
{
"id":1648,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.2,
"table":57,
"price":3018,
"x":5.79,
"y":5.77,
"z":3.54
},
{
"id":1649,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":60.2,
"table":61,
"price":3018,
"x":5.71,
"y":5.75,
"z":3.45
},
{
"id":1650,
"carat":1.02,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":63.3,
"table":56,
"price":3018,
"x":6.38,
"y":6.31,
"z":4.02
},
{
"id":1651,
"carat":0.77,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":62.4,
"table":59,
"price":3018,
"x":5.85,
"y":5.81,
"z":3.64
},
{
"id":1652,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":62.2,
"table":56,
"price":3018,
"x":5.72,
"y":5.63,
"z":3.53
},
{
"id":1653,
"carat":0.93,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":61.4,
"table":56,
"price":3019,
"x":6.27,
"y":6.23,
"z":3.84
},
{
"id":1654,
"carat":0.78,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.4,
"table":57,
"price":3019,
"x":6.02,
"y":5.97,
"z":3.62
},
{
"id":1655,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":60.4,
"table":53,
"price":3020,
"x":5.81,
"y":5.85,
"z":3.52
},
{
"id":1656,
"carat":0.73,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.3,
"table":56,
"price":3023,
"x":5.78,
"y":5.84,
"z":3.56
},
{
"id":1657,
"carat":0.65,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.1,
"table":57,
"price":3023,
"x":5.55,
"y":5.6,
"z":3.46
},
{
"id":1658,
"carat":0.85,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.6,
"table":55,
"price":3023,
"x":6.09,
"y":6.11,
"z":3.76
},
{
"id":1659,
"carat":0.9,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.1,
"table":60,
"price":3024,
"x":6.09,
"y":6.14,
"z":3.86
},
{
"id":1660,
"carat":0.9,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.1,
"table":55,
"price":3024,
"x":6.08,
"y":6.13,
"z":3.85
},
{
"id":1661,
"carat":0.75,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.1,
"table":57,
"price":3024,
"x":5.9,
"y":5.79,
"z":3.63
},
{
"id":1662,
"carat":0.9,
"cut":"Very Good",
"color":"J",
"clarity":"VS2",
"depth":63.1,
"table":59,
"price":3024,
"x":6.09,
"y":6.05,
"z":3.83
},
{
"id":1663,
"carat":0.9,
"cut":"Good",
"color":"J",
"clarity":"VS2",
"depth":63.9,
"table":58,
"price":3024,
"x":6.15,
"y":6.08,
"z":3.91
},
{
"id":1664,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":60.4,
"table":61,
"price":3024,
"x":5.79,
"y":5.76,
"z":3.49
},
{
"id":1665,
"carat":0.9,
"cut":"Fair",
"color":"H",
"clarity":"SI1",
"depth":65.6,
"table":57,
"price":3024,
"x":6.04,
"y":6.01,
"z":3.95
},
{
"id":1666,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.5,
"table":59,
"price":3024,
"x":5.73,
"y":5.7,
"z":3.57
},
{
"id":1667,
"carat":0.75,
"cut":"Good",
"color":"D",
"clarity":"SI1",
"depth":63.6,
"table":58,
"price":3024,
"x":5.77,
"y":5.65,
"z":3.63
},
{
"id":1668,
"carat":0.75,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":61.7,
"table":60,
"price":3024,
"x":5.84,
"y":5.8,
"z":3.59
},
{
"id":1669,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VS1",
"depth":60.1,
"table":63,
"price":3024,
"x":5.86,
"y":5.82,
"z":3.51
},
{
"id":1670,
"carat":0.75,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":59.2,
"table":58,
"price":3024,
"x":5.96,
"y":5.93,
"z":3.52
},
{
"id":1671,
"carat":0.65,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":57.7,
"table":60,
"price":3025,
"x":5.69,
"y":5.74,
"z":3.3
},
{
"id":1672,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":3026,
"x":5.69,
"y":5.74,
"z":3.53
},
{
"id":1673,
"carat":0.59,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":61.8,
"table":57,
"price":3026,
"x":5.35,
"y":5.4,
"z":3.32
},
{
"id":1674,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.3,
"table":56,
"price":3026,
"x":5.7,
"y":5.73,
"z":3.56
},
{
"id":1675,
"carat":0.83,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.3,
"table":54,
"price":3027,
"x":6.06,
"y":6.1,
"z":3.73
},
{
"id":1676,
"carat":1.02,
"cut":"Fair",
"color":"J",
"clarity":"SI1",
"depth":66.8,
"table":55,
"price":3027,
"x":6.25,
"y":6.18,
"z":4.15
},
{
"id":1677,
"carat":1,
"cut":"Fair",
"color":"G",
"clarity":"SI2",
"depth":64.9,
"table":57,
"price":3027,
"x":6.29,
"y":6.2,
"z":4.05
},
{
"id":1678,
"carat":1.02,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":61.7,
"table":58,
"price":3027,
"x":6.46,
"y":6.41,
"z":3.97
},
{
"id":1679,
"carat":0.77,
"cut":"Good",
"color":"H",
"clarity":"VVS2",
"depth":57.9,
"table":61,
"price":3027,
"x":6.07,
"y":6.01,
"z":3.5
},
{
"id":1680,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VVS2",
"depth":58.5,
"table":60,
"price":3028,
"x":5.82,
"y":5.94,
"z":3.44
},
{
"id":1681,
"carat":0.8,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":62.1,
"table":54,
"price":3030,
"x":5.96,
"y":5.99,
"z":3.71
},
{
"id":1682,
"carat":0.74,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.6,
"table":55,
"price":3030,
"x":5.79,
"y":5.83,
"z":3.58
},
{
"id":1683,
"carat":0.77,
"cut":"Fair",
"color":"F",
"clarity":"VS1",
"depth":66.8,
"table":57,
"price":3031,
"x":5.66,
"y":5.76,
"z":3.82
},
{
"id":1684,
"carat":0.72,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":58.9,
"table":58,
"price":3032,
"x":5.93,
"y":5.85,
"z":3.47
},
{
"id":1685,
"carat":1.01,
"cut":"Good",
"color":"E",
"clarity":"I1",
"depth":63.8,
"table":57,
"price":3032,
"x":6.4,
"y":6.33,
"z":4.06
},
{
"id":1686,
"carat":1.01,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":63.5,
"table":55,
"price":3032,
"x":6.32,
"y":6.27,
"z":4
},
{
"id":1687,
"carat":0.55,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.2,
"table":54,
"price":3032,
"x":5.35,
"y":5.3,
"z":3.26
},
{
"id":1688,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63,
"table":57,
"price":3033,
"x":5.67,
"y":5.7,
"z":3.58
},
{
"id":1689,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.6,
"table":57,
"price":3033,
"x":5.76,
"y":5.79,
"z":3.56
},
{
"id":1690,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.5,
"table":57,
"price":3033,
"x":5.8,
"y":5.82,
"z":3.63
},
{
"id":1691,
"carat":0.52,
"cut":"Ideal",
"color":"E",
"clarity":"IF",
"depth":61.1,
"table":57,
"price":3033,
"x":5.17,
"y":5.21,
"z":3.17
},
{
"id":1692,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":64.1,
"table":59,
"price":3033,
"x":5.56,
"y":5.49,
"z":3.54
},
{
"id":1693,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63.2,
"table":60,
"price":3033,
"x":5.61,
"y":5.56,
"z":3.53
},
{
"id":1694,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":63.9,
"table":58,
"price":3033,
"x":5.62,
"y":5.58,
"z":3.58
},
{
"id":1695,
"carat":0.92,
"cut":"Fair",
"color":"I",
"clarity":"VS2",
"depth":64.4,
"table":58,
"price":3033,
"x":6.13,
"y":6.1,
"z":3.94
},
{
"id":1696,
"carat":0.91,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":63,
"table":57,
"price":3033,
"x":6.19,
"y":6.1,
"z":3.87
},
{
"id":1697,
"carat":0.91,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":61.6,
"table":57,
"price":3034,
"x":6.23,
"y":6.24,
"z":3.84
},
{
"id":1698,
"carat":0.91,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":60.2,
"table":59,
"price":3034,
"x":6.24,
"y":6.29,
"z":3.77
},
{
"id":1699,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.4,
"table":57,
"price":3034,
"x":5.7,
"y":5.73,
"z":3.51
},
{
"id":1700,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.8,
"table":57,
"price":3035,
"x":5.66,
"y":5.69,
"z":3.62
},
{
"id":1701,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":59.5,
"table":57,
"price":3035,
"x":5.83,
"y":5.86,
"z":3.48
},
{
"id":1702,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":62.4,
"table":59,
"price":3035,
"x":5.71,
"y":5.74,
"z":3.57
},
{
"id":1703,
"carat":0.78,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":3035,
"x":5.87,
"y":5.89,
"z":3.67
},
{
"id":1704,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":60.6,
"table":57,
"price":3035,
"x":5.82,
"y":5.72,
"z":3.5
},
{
"id":1705,
"carat":0.8,
"cut":"Very Good",
"color":"H",
"clarity":"VVS2",
"depth":62.9,
"table":56,
"price":3036,
"x":5.9,
"y":5.96,
"z":3.73
},
{
"id":1706,
"carat":0.74,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":3036,
"x":5.73,
"y":5.81,
"z":3.61
},
{
"id":1707,
"carat":0.74,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.4,
"table":59,
"price":3036,
"x":5.73,
"y":5.8,
"z":3.6
},
{
"id":1708,
"carat":0.61,
"cut":"Ideal",
"color":"D",
"clarity":"VVS2",
"depth":62.4,
"table":58,
"price":3036,
"x":5.38,
"y":5.42,
"z":3.37
},
{
"id":1709,
"carat":0.78,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61,
"table":55,
"price":3036,
"x":6,
"y":5.96,
"z":3.65
},
{
"id":1710,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS1",
"depth":63.3,
"table":57,
"price":3037,
"x":5.59,
"y":5.63,
"z":3.55
},
{
"id":1711,
"carat":0.32,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.3,
"table":56,
"price":561,
"x":4.34,
"y":4.35,
"z":2.75
},
{
"id":1712,
"carat":0.32,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":60.5,
"table":58,
"price":561,
"x":4.41,
"y":4.42,
"z":2.67
},
{
"id":1713,
"carat":0.4,
"cut":"Good",
"color":"H",
"clarity":"SI2",
"depth":63.7,
"table":59,
"price":561,
"x":4.64,
"y":4.69,
"z":2.97
},
{
"id":1714,
"carat":0.32,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":62.5,
"table":60,
"price":561,
"x":4.32,
"y":4.38,
"z":2.72
},
{
"id":1715,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.4,
"table":56,
"price":561,
"x":4.37,
"y":4.39,
"z":2.69
},
{
"id":1716,
"carat":0.32,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":59.8,
"table":59,
"price":561,
"x":4.48,
"y":4.52,
"z":2.69
},
{
"id":1717,
"carat":0.32,
"cut":"Premium",
"color":"I",
"clarity":"VVS2",
"depth":60.7,
"table":59,
"price":561,
"x":4.4,
"y":4.43,
"z":2.68
},
{
"id":1718,
"carat":0.32,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":60.2,
"table":57,
"price":561,
"x":4.42,
"y":4.45,
"z":2.67
},
{
"id":1719,
"carat":0.32,
"cut":"Good",
"color":"G",
"clarity":"VS2",
"depth":63.3,
"table":54,
"price":561,
"x":4.36,
"y":4.39,
"z":2.77
},
{
"id":1720,
"carat":0.32,
"cut":"Good",
"color":"H",
"clarity":"VS1",
"depth":63.1,
"table":57,
"price":561,
"x":4.34,
"y":4.37,
"z":2.75
},
{
"id":1721,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.4,
"table":55,
"price":561,
"x":4.4,
"y":4.46,
"z":2.72
},
{
"id":1722,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":59.8,
"table":57,
"price":561,
"x":4.43,
"y":4.46,
"z":2.66
},
{
"id":1723,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.7,
"table":57,
"price":561,
"x":4.38,
"y":4.4,
"z":2.71
},
{
"id":1724,
"carat":0.32,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":62.3,
"table":58,
"price":561,
"x":4.34,
"y":4.39,
"z":2.72
},
{
"id":1725,
"carat":0.32,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":63,
"table":57,
"price":561,
"x":4.32,
"y":4.35,
"z":2.73
},
{
"id":1726,
"carat":0.32,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.9,
"table":58,
"price":561,
"x":4.36,
"y":4.43,
"z":2.72
},
{
"id":1727,
"carat":0.32,
"cut":"Good",
"color":"G",
"clarity":"VS2",
"depth":63.1,
"table":57,
"price":561,
"x":4.3,
"y":4.35,
"z":2.73
},
{
"id":1728,
"carat":0.32,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":63,
"table":57,
"price":561,
"x":4.37,
"y":4.39,
"z":2.76
},
{
"id":1729,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.8,
"table":57,
"price":561,
"x":4.37,
"y":4.4,
"z":2.71
},
{
"id":1730,
"carat":0.32,
"cut":"Very Good",
"color":"H",
"clarity":"VS1",
"depth":61.7,
"table":58,
"price":561,
"x":4.37,
"y":4.41,
"z":2.71
},
{
"id":1731,
"carat":0.32,
"cut":"Premium",
"color":"H",
"clarity":"VS1",
"depth":61.7,
"table":58,
"price":561,
"x":4.38,
"y":4.44,
"z":2.72
},
{
"id":1732,
"carat":0.32,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":60.1,
"table":60,
"price":561,
"x":4.42,
"y":4.47,
"z":2.67
},
{
"id":1733,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":561,
"x":4.41,
"y":4.42,
"z":2.73
},
{
"id":1734,
"carat":0.32,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.7,
"table":60,
"price":561,
"x":4.32,
"y":4.4,
"z":2.69
},
{
"id":1735,
"carat":0.32,
"cut":"Good",
"color":"E",
"clarity":"SI1",
"depth":63.4,
"table":55,
"price":561,
"x":4.35,
"y":4.36,
"z":2.76
},
{
"id":1736,
"carat":0.32,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":561,
"x":4.37,
"y":4.39,
"z":2.74
},
{
"id":1737,
"carat":0.32,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":62.3,
"table":58,
"price":561,
"x":4.36,
"y":4.41,
"z":2.73
},
{
"id":1738,
"carat":0.32,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.6,
"table":57,
"price":561,
"x":4.39,
"y":4.41,
"z":2.71
},
{
"id":1739,
"carat":0.32,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.9,
"table":55,
"price":561,
"x":4.4,
"y":4.42,
"z":2.73
},
{
"id":1740,
"carat":0.32,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":60.2,
"table":56,
"price":561,
"x":4.44,
"y":4.49,
"z":2.69
},
{
"id":1741,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":58,
"price":3037,
"x":5.72,
"y":5.75,
"z":3.57
},
{
"id":1742,
"carat":0.76,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.4,
"table":57,
"price":3038,
"x":5.85,
"y":5.88,
"z":3.6
},
{
"id":1743,
"carat":0.7,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.5,
"table":56,
"price":3038,
"x":5.71,
"y":5.73,
"z":3.52
},
{
"id":1744,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.2,
"table":56,
"price":3038,
"x":5.76,
"y":5.79,
"z":3.59
},
{
"id":1745,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":61,
"table":59,
"price":3039,
"x":5.67,
"y":5.7,
"z":3.47
},
{
"id":1746,
"carat":0.7,
"cut":"Fair",
"color":"F",
"clarity":"VS1",
"depth":64.9,
"table":59,
"price":3039,
"x":5.56,
"y":5.59,
"z":3.62
},
{
"id":1747,
"carat":0.77,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.1,
"table":58,
"price":3040,
"x":5.84,
"y":5.89,
"z":3.64
},
{
"id":1748,
"carat":0.92,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":61.5,
"table":59,
"price":3040,
"x":6.27,
"y":6.21,
"z":3.84
},
{
"id":1749,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.8,
"table":57,
"price":3041,
"x":5.78,
"y":5.81,
"z":3.58
},
{
"id":1750,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.7,
"table":57,
"price":3041,
"x":5.66,
"y":5.7,
"z":3.56
},
{
"id":1751,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":61.7,
"table":55,
"price":3041,
"x":5.73,
"y":5.77,
"z":3.55
},
{
"id":1752,
"carat":0.81,
"cut":"Good",
"color":"I",
"clarity":"VS1",
"depth":59.4,
"table":56,
"price":3042,
"x":5.97,
"y":6.11,
"z":3.59
},
{
"id":1753,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":62.5,
"table":57,
"price":3042,
"x":5.73,
"y":5.7,
"z":3.57
},
{
"id":1754,
"carat":0.72,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":60.4,
"table":58,
"price":3043,
"x":5.77,
"y":5.82,
"z":3.5
},
{
"id":1755,
"carat":0.81,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.9,
"table":59,
"price":3043,
"x":5.97,
"y":5.95,
"z":3.69
},
{
"id":1756,
"carat":0.81,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.3,
"table":56,
"price":3043,
"x":6.27,
"y":6.23,
"z":3.83
},
{
"id":1757,
"carat":0.77,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":59.6,
"table":60,
"price":3044,
"x":5.95,
"y":5.97,
"z":3.55
},
{
"id":1758,
"carat":0.83,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62.1,
"table":57,
"price":3044,
"x":6.03,
"y":5.95,
"z":3.72
},
{
"id":1759,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.2,
"table":55,
"price":3045,
"x":5.68,
"y":5.74,
"z":3.56
},
{
"id":1760,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":61.2,
"table":57,
"price":3045,
"x":5.73,
"y":5.77,
"z":3.52
},
{
"id":1761,
"carat":0.78,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":62.4,
"table":58,
"price":3045,
"x":5.83,
"y":5.86,
"z":3.65
},
{
"id":1762,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":62.8,
"table":56,
"price":3045,
"x":5.67,
"y":5.7,
"z":3.57
},
{
"id":1763,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":60.2,
"table":60,
"price":3045,
"x":5.76,
"y":5.81,
"z":3.48
},
{
"id":1764,
"carat":1.14,
"cut":"Ideal",
"color":"J",
"clarity":"SI1",
"depth":60.2,
"table":57,
"price":3045,
"x":6.81,
"y":6.71,
"z":4.07
},
{
"id":1765,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":60.8,
"table":56,
"price":3045,
"x":5.91,
"y":5.89,
"z":3.59
},
{
"id":1766,
"carat":0.75,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":59.7,
"table":62,
"price":3046,
"x":5.89,
"y":5.94,
"z":3.53
},
{
"id":1767,
"carat":0.7,
"cut":"Good",
"color":"G",
"clarity":"VVS2",
"depth":61.1,
"table":61,
"price":3046,
"x":5.67,
"y":5.69,
"z":3.47
},
{
"id":1768,
"carat":0.79,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":61.5,
"table":58,
"price":3047,
"x":5.94,
"y":5.97,
"z":3.66
},
{
"id":1769,
"carat":0.73,
"cut":"Fair",
"color":"D",
"clarity":"VS1",
"depth":66,
"table":54,
"price":3047,
"x":5.56,
"y":5.66,
"z":3.7
},
{
"id":1770,
"carat":0.91,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":60.1,
"table":62,
"price":3047,
"x":6.24,
"y":6.2,
"z":3.73
},
{
"id":1771,
"carat":0.91,
"cut":"Premium",
"color":"G",
"clarity":"SI2",
"depth":62.8,
"table":59,
"price":3047,
"x":6.14,
"y":6.12,
"z":3.85
},
{
"id":1772,
"carat":0.93,
"cut":"Ideal",
"color":"I",
"clarity":"SI2",
"depth":62.3,
"table":57,
"price":3047,
"x":6.22,
"y":6.2,
"z":3.87
},
{
"id":1773,
"carat":0.82,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.9,
"table":56.9,
"price":3048,
"x":5.85,
"y":5.92,
"z":3.76
},
{
"id":1774,
"carat":0.75,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":61.8,
"table":57,
"price":3048,
"x":5.78,
"y":5.81,
"z":3.58
},
{
"id":1775,
"carat":0.72,
"cut":"Premium",
"color":"H",
"clarity":"IF",
"depth":58.7,
"table":59,
"price":3048,
"x":5.94,
"y":5.88,
"z":3.47
},
{
"id":1776,
"carat":0.72,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.8,
"table":56,
"price":3048,
"x":5.7,
"y":5.76,
"z":3.55
},
{
"id":1777,
"carat":0.72,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":57.9,
"table":60,
"price":3048,
"x":5.97,
"y":5.91,
"z":3.44
},
{
"id":1778,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.1,
"table":56,
"price":3048,
"x":5.7,
"y":5.65,
"z":3.58
},
{
"id":1779,
"carat":0.9,
"cut":"Ideal",
"color":"J",
"clarity":"VS1",
"depth":62.6,
"table":55,
"price":3048,
"x":6.13,
"y":6.11,
"z":3.83
},
{
"id":1780,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":60.5,
"table":57,
"price":3048,
"x":5.89,
"y":5.85,
"z":3.55
},
{
"id":1781,
"carat":0.72,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":62.6,
"table":54,
"price":3048,
"x":5.78,
"y":5.72,
"z":3.6
},
{
"id":1782,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.4,
"table":55,
"price":3049,
"x":5.8,
"y":5.86,
"z":3.58
},
{
"id":1783,
"carat":0.66,
"cut":"Ideal",
"color":"D",
"clarity":"VVS2",
"depth":61.6,
"table":57,
"price":3049,
"x":5.64,
"y":5.57,
"z":3.45
},
{
"id":1784,
"carat":0.83,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61.9,
"table":53,
"price":3049,
"x":6.08,
"y":6.04,
"z":3.75
},
{
"id":1785,
"carat":0.62,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":58.1,
"table":63,
"price":3050,
"x":5.59,
"y":5.66,
"z":3.27
},
{
"id":1786,
"carat":0.8,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.1,
"table":56,
"price":3050,
"x":5.93,
"y":5.83,
"z":3.71
},
{
"id":1787,
"carat":0.76,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.3,
"table":55,
"price":3050,
"x":5.87,
"y":5.93,
"z":3.62
},
{
"id":1788,
"carat":0.76,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.4,
"table":55,
"price":3050,
"x":5.82,
"y":5.9,
"z":3.6
},
{
"id":1789,
"carat":0.82,
"cut":"Good",
"color":"E",
"clarity":"SI2",
"depth":61.8,
"table":56,
"price":3050,
"x":5.95,
"y":5.99,
"z":3.69
},
{
"id":1790,
"carat":0.81,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":62.1,
"table":57,
"price":3050,
"x":5.97,
"y":5.91,
"z":3.69
},
{
"id":1791,
"carat":1.02,
"cut":"Good",
"color":"E",
"clarity":"I1",
"depth":63.1,
"table":60,
"price":3051,
"x":6.31,
"y":6.4,
"z":4.01
},
{
"id":1792,
"carat":0.66,
"cut":"Very Good",
"color":"G",
"clarity":"IF",
"depth":60.5,
"table":59,
"price":3051,
"x":5.69,
"y":5.74,
"z":3.46
},
{
"id":1793,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":62.5,
"table":55,
"price":3052,
"x":5.65,
"y":5.71,
"z":3.55
},
{
"id":1794,
"carat":0.77,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.2,
"table":57,
"price":3052,
"x":5.93,
"y":5.97,
"z":3.64
},
{
"id":1795,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS2",
"depth":60.2,
"table":61,
"price":3052,
"x":5.66,
"y":5.74,
"z":3.43
},
{
"id":1796,
"carat":1.03,
"cut":"Fair",
"color":"G",
"clarity":"SI1",
"depth":66.1,
"table":56,
"price":3052,
"x":6.26,
"y":6.2,
"z":4.12
},
{
"id":1797,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":3053,
"x":5.67,
"y":5.7,
"z":3.56
},
{
"id":1798,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":59.9,
"table":59,
"price":3053,
"x":5.79,
"y":5.83,
"z":3.48
},
{
"id":1799,
"carat":0.7,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.8,
"table":59,
"price":3053,
"x":5.65,
"y":5.69,
"z":3.56
},
{
"id":1800,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":60.9,
"table":56,
"price":3053,
"x":5.77,
"y":5.83,
"z":3.53
},
{
"id":1801,
"carat":0.81,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":54,
"price":3053,
"x":5.94,
"y":5.98,
"z":3.72
},
{
"id":1802,
"carat":0.78,
"cut":"Ideal",
"color":"E",
"clarity":"SI2",
"depth":61,
"table":56,
"price":3053,
"x":5.92,
"y":5.98,
"z":3.63
},
{
"id":1803,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":61.3,
"table":57,
"price":3053,
"x":5.84,
"y":5.91,
"z":3.6
},
{
"id":1804,
"carat":0.79,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.2,
"table":56,
"price":3053,
"x":5.91,
"y":5.83,
"z":3.71
},
{
"id":1805,
"carat":0.79,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":62.3,
"table":56,
"price":3053,
"x":5.94,
"y":5.87,
"z":3.68
},
{
"id":1806,
"carat":0.79,
"cut":"Premium",
"color":"G",
"clarity":"VS1",
"depth":61.3,
"table":59,
"price":3053,
"x":5.97,
"y":5.91,
"z":3.64
},
{
"id":1807,
"carat":0.79,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.1,
"table":54,
"price":3053,
"x":5.96,
"y":5.92,
"z":3.69
},
{
"id":1808,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS1",
"depth":62.9,
"table":60,
"price":3054,
"x":5.62,
"y":5.67,
"z":3.55
},
{
"id":1809,
"carat":1.01,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":61.1,
"table":60,
"price":3054,
"x":6.46,
"y":6.41,
"z":3.93
},
{
"id":1810,
"carat":1.01,
"cut":"Premium",
"color":"I",
"clarity":"SI2",
"depth":61.9,
"table":58,
"price":3054,
"x":6.45,
"y":6.41,
"z":3.98
},
{
"id":1811,
"carat":1.01,
"cut":"Fair",
"color":"I",
"clarity":"SI2",
"depth":66.1,
"table":58,
"price":3054,
"x":6.21,
"y":6.04,
"z":4.05
},
{
"id":1812,
"carat":1.01,
"cut":"Fair",
"color":"I",
"clarity":"SI2",
"depth":68.1,
"table":59,
"price":3054,
"x":6.14,
"y":6.11,
"z":4.17
},
{
"id":1813,
"carat":0.78,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":60.9,
"table":57,
"price":3055,
"x":5.93,
"y":5.97,
"z":3.62
},
{
"id":1814,
"carat":0.65,
"cut":"Very Good",
"color":"D",
"clarity":"VVS2",
"depth":59.9,
"table":58,
"price":3056,
"x":5.63,
"y":5.69,
"z":3.39
},
{
"id":1815,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":60.8,
"table":56,
"price":3056,
"x":5.5,
"y":5.47,
"z":3.34
},
{
"id":1816,
"carat":0.78,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.7,
"table":56,
"price":3056,
"x":5.9,
"y":5.93,
"z":3.65
},
{
"id":1817,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.4,
"table":54,
"price":3056,
"x":5.84,
"y":5.86,
"z":3.65
},
{
"id":1818,
"carat":0.9,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":61.5,
"table":61,
"price":3057,
"x":6.13,
"y":6.16,
"z":3.78
},
{
"id":1819,
"carat":0.92,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":60.2,
"table":61,
"price":3057,
"x":6.27,
"y":6.32,
"z":3.79
},
{
"id":1820,
"carat":0.57,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.1,
"table":55,
"price":3057,
"x":5.36,
"y":5.44,
"z":3.3
},
{
"id":1821,
"carat":0.76,
"cut":"Good",
"color":"F",
"clarity":"VS1",
"depth":59.9,
"table":61,
"price":3057,
"x":5.89,
"y":5.98,
"z":3.56
},
{
"id":1822,
"carat":0.9,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":60.7,
"table":58,
"price":3057,
"x":6.17,
"y":6.21,
"z":3.76
},
{
"id":1823,
"carat":0.82,
"cut":"Fair",
"color":"H",
"clarity":"SI1",
"depth":64.9,
"table":58,
"price":3057,
"x":5.82,
"y":5.77,
"z":3.76
},
{
"id":1824,
"carat":0.91,
"cut":"Good",
"color":"F",
"clarity":"SI2",
"depth":63.9,
"table":56,
"price":3058,
"x":6.11,
"y":6.06,
"z":3.89
},
{
"id":1825,
"carat":0.79,
"cut":"Premium",
"color":"D",
"clarity":"SI1",
"depth":61.4,
"table":59,
"price":3058,
"x":5.96,
"y":5.89,
"z":3.64
},
{
"id":1826,
"carat":0.91,
"cut":"Premium",
"color":"J",
"clarity":"VS2",
"depth":61.6,
"table":58,
"price":3058,
"x":6.28,
"y":6.23,
"z":3.85
},
{
"id":1827,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":59,
"price":3059,
"x":5.69,
"y":5.74,
"z":3.55
},
{
"id":1828,
"carat":0.81,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":62.9,
"table":56,
"price":3059,
"x":5.87,
"y":5.9,
"z":3.7
},
{
"id":1829,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":61.8,
"table":56,
"price":3059,
"x":5.74,
"y":5.78,
"z":3.56
},
{
"id":1830,
"carat":1.03,
"cut":"Very Good",
"color":"G",
"clarity":"I1",
"depth":62.4,
"table":57,
"price":3060,
"x":6.41,
"y":6.45,
"z":4.01
},
{
"id":1831,
"carat":0.9,
"cut":"Good",
"color":"G",
"clarity":"SI2",
"depth":63.6,
"table":57,
"price":3060,
"x":6.1,
"y":6.04,
"z":3.86
},
{
"id":1832,
"carat":0.74,
"cut":"Very Good",
"color":"H",
"clarity":"VVS1",
"depth":62.4,
"table":57,
"price":3061,
"x":5.76,
"y":5.81,
"z":3.61
},
{
"id":1833,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":61.1,
"table":55,
"price":3061,
"x":5.72,
"y":5.77,
"z":3.51
},
{
"id":1834,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.3,
"table":56,
"price":3061,
"x":5.64,
"y":5.68,
"z":3.58
},
{
"id":1835,
"carat":0.9,
"cut":"Very Good",
"color":"J",
"clarity":"SI1",
"depth":63.8,
"table":56,
"price":3061,
"x":6.11,
"y":6.14,
"z":3.91
},
{
"id":1836,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.5,
"table":55,
"price":3061,
"x":5.75,
"y":5.79,
"z":3.55
},
{
"id":1837,
"carat":0.91,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":57.9,
"table":60,
"price":3061,
"x":6.46,
"y":6.39,
"z":3.72
},
{
"id":1838,
"carat":0.71,
"cut":"Fair",
"color":"G",
"clarity":"VVS1",
"depth":62.8,
"table":57,
"price":3062,
"x":5.67,
"y":5.57,
"z":3.53
},
{
"id":1839,
"carat":0.7,
"cut":"Premium",
"color":"F",
"clarity":"VVS2",
"depth":58.7,
"table":60,
"price":3062,
"x":5.8,
"y":5.75,
"z":3.39
},
{
"id":1840,
"carat":0.72,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":61.5,
"table":56.5,
"price":3062,
"x":5.76,
"y":5.79,
"z":3.55
},
{
"id":1841,
"carat":0.9,
"cut":"Fair",
"color":"F",
"clarity":"SI2",
"depth":65.7,
"table":63,
"price":3062,
"x":6.01,
"y":5.96,
"z":3.93
},
{
"id":1842,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.2,
"table":59,
"price":3062,
"x":5.71,
"y":5.61,
"z":3.52
},
{
"id":1843,
"carat":0.71,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62,
"table":61,
"price":3062,
"x":5.71,
"y":5.65,
"z":3.52
},
{
"id":1844,
"carat":0.93,
"cut":"Premium",
"color":"J",
"clarity":"VS1",
"depth":60.3,
"table":58,
"price":3062,
"x":6.37,
"y":6.31,
"z":3.82
},
{
"id":1845,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62.2,
"table":57,
"price":3063,
"x":5.63,
"y":5.68,
"z":3.52
},
{
"id":1846,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":62.5,
"table":56,
"price":3063,
"x":5.64,
"y":5.68,
"z":3.54
},
{
"id":1847,
"carat":0.7,
"cut":"Good",
"color":"E",
"clarity":"VS1",
"depth":59.4,
"table":61,
"price":3063,
"x":5.79,
"y":5.83,
"z":3.45
},
{
"id":1848,
"carat":0.71,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.3,
"table":59,
"price":3064,
"x":5.64,
"y":5.68,
"z":3.58
},
{
"id":1849,
"carat":0.76,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":61.7,
"table":62,
"price":3064,
"x":5.85,
"y":5.82,
"z":3.6
},
{
"id":1850,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.4,
"table":56,
"price":3064,
"x":5.72,
"y":5.75,
"z":3.52
},
{
"id":1851,
"carat":0.7,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":61.6,
"table":55,
"price":3064,
"x":5.72,
"y":5.75,
"z":3.53
},
{
"id":1852,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":61.4,
"table":56,
"price":3064,
"x":5.99,
"y":5.93,
"z":3.66
},
{
"id":1853,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63,
"table":58,
"price":3065,
"x":5.69,
"y":5.73,
"z":3.6
},
{
"id":1854,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VS1",
"depth":61.5,
"table":56,
"price":3065,
"x":5.7,
"y":5.75,
"z":3.52
},
{
"id":1855,
"carat":0.65,
"cut":"Ideal",
"color":"H",
"clarity":"IF",
"depth":61.5,
"table":55,
"price":3065,
"x":5.6,
"y":5.62,
"z":3.45
},
{
"id":1856,
"carat":0.85,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":61.4,
"table":60,
"price":3066,
"x":6.05,
"y":6.13,
"z":3.74
},
{
"id":1857,
"carat":0.77,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.4,
"table":56,
"price":3066,
"x":5.9,
"y":5.93,
"z":3.63
},
{
"id":1858,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62,
"table":57,
"price":3066,
"x":5.7,
"y":5.75,
"z":3.55
},
{
"id":1859,
"carat":0.71,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.1,
"table":57,
"price":3066,
"x":5.73,
"y":5.76,
"z":3.57
},
{
"id":1860,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.5,
"table":56,
"price":3066,
"x":5.94,
"y":5.99,
"z":3.73
},
{
"id":1861,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":61.8,
"table":59,
"price":3066,
"x":5.94,
"y":5.96,
"z":3.68
},
{
"id":1862,
"carat":0.73,
"cut":"Very Good",
"color":"E",
"clarity":"VS2",
"depth":63.1,
"table":55,
"price":3066,
"x":5.77,
"y":5.71,
"z":3.62
},
{
"id":1863,
"carat":0.9,
"cut":"Good",
"color":"G",
"clarity":"SI2",
"depth":63.7,
"table":62,
"price":3067,
"x":6.01,
"y":6.07,
"z":3.85
},
{
"id":1864,
"carat":0.78,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.7,
"table":55,
"price":3067,
"x":5.87,
"y":5.9,
"z":3.69
},
{
"id":1865,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.4,
"table":60,
"price":3068,
"x":5.63,
"y":5.66,
"z":3.58
},
{
"id":1866,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":56,
"price":3068,
"x":5.65,
"y":5.69,
"z":3.55
},
{
"id":1867,
"carat":0.85,
"cut":"Very Good",
"color":"I",
"clarity":"VS2",
"depth":60,
"table":57,
"price":3070,
"x":6.1,
"y":6.16,
"z":3.68
},
{
"id":1868,
"carat":0.8,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":62.9,
"table":56,
"price":3070,
"x":5.88,
"y":5.95,
"z":3.72
},
{
"id":1869,
"carat":0.8,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":62.6,
"table":59,
"price":3070,
"x":5.84,
"y":5.91,
"z":3.68
},
{
"id":1870,
"carat":0.92,
"cut":"Good",
"color":"J",
"clarity":"SI2",
"depth":59,
"table":63,
"price":3070,
"x":6.3,
"y":6.35,
"z":3.73
},
{
"id":1871,
"carat":0.8,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":62.1,
"table":56,
"price":3071,
"x":6.01,
"y":5.85,
"z":3.68
},
{
"id":1872,
"carat":0.82,
"cut":"Ideal",
"color":"I",
"clarity":"VS1",
"depth":61.6,
"table":56,
"price":3071,
"x":6.05,
"y":6.01,
"z":3.72
},
{
"id":1873,
"carat":0.71,
"cut":"Good",
"color":"G",
"clarity":"VVS1",
"depth":62.7,
"table":61,
"price":3072,
"x":5.64,
"y":5.68,
"z":3.55
},
{
"id":1874,
"carat":0.7,
"cut":"Very Good",
"color":"G",
"clarity":"VVS1",
"depth":63.1,
"table":56,
"price":3073,
"x":5.64,
"y":5.67,
"z":3.57
},
{
"id":1875,
"carat":0.79,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":58.5,
"table":61,
"price":3073,
"x":6.03,
"y":6.08,
"z":3.54
},
{
"id":1876,
"carat":0.7,
"cut":"Ideal",
"color":"G",
"clarity":"VVS1",
"depth":61.6,
"table":55,
"price":3073,
"x":5.72,
"y":5.75,
"z":3.53
},
{
"id":1877,
"carat":0.75,
"cut":"Ideal",
"color":"G",
"clarity":"VS2",
"depth":61.6,
"table":55,
"price":3073,
"x":5.86,
"y":5.89,
"z":3.62
},
{
"id":1878,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.2,
"table":57,
"price":3073,
"x":5.69,
"y":5.73,
"z":3.55
},
{
"id":1879,
"carat":0.62,
"cut":"Premium",
"color":"E",
"clarity":"VVS1",
"depth":61.9,
"table":59,
"price":3073,
"x":5.62,
"y":5.5,
"z":3.44
},
{
"id":1880,
"carat":1.03,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":60.8,
"table":57,
"price":3073,
"x":6.55,
"y":6.51,
"z":3.97
},
{
"id":1881,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":58,
"table":65,
"price":3073,
"x":5.81,
"y":5.73,
"z":3.39
},
{
"id":1882,
"carat":0.78,
"cut":"Very Good",
"color":"G",
"clarity":"VS2",
"depth":61.7,
"table":58,
"price":3074,
"x":5.87,
"y":5.92,
"z":3.64
},
{
"id":1883,
"carat":0.9,
"cut":"Fair",
"color":"I",
"clarity":"VVS2",
"depth":67,
"table":56,
"price":3074,
"x":5.91,
"y":5.83,
"z":3.93
},
{
"id":1884,
"carat":0.77,
"cut":"Ideal",
"color":"H",
"clarity":"VS1",
"depth":61.4,
"table":55,
"price":3074,
"x":5.89,
"y":5.93,
"z":3.63
},
{
"id":1885,
"carat":0.9,
"cut":"Good",
"color":"G",
"clarity":"SI1",
"depth":63.7,
"table":56,
"price":3074,
"x":6.1,
"y":6.06,
"z":3.87
},
{
"id":1886,
"carat":0.72,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":61.8,
"table":58,
"price":3075,
"x":5.73,
"y":5.76,
"z":3.55
},
{
"id":1887,
"carat":0.72,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":62.6,
"table":59,
"price":3075,
"x":5.69,
"y":5.72,
"z":3.57
},
{
"id":1888,
"carat":0.71,
"cut":"Very Good",
"color":"F",
"clarity":"SI2",
"depth":61.4,
"table":56,
"price":3075,
"x":5.71,
"y":5.73,
"z":3.51
},
{
"id":1889,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":3075,
"x":5.64,
"y":5.67,
"z":3.53
},
{
"id":1890,
"carat":0.72,
"cut":"Ideal",
"color":"H",
"clarity":"VVS1",
"depth":62.2,
"table":57,
"price":3075,
"x":5.72,
"y":5.75,
"z":3.57
},
{
"id":1891,
"carat":0.76,
"cut":"Ideal",
"color":"I",
"clarity":"VS2",
"depth":61.7,
"table":56,
"price":3075,
"x":5.87,
"y":5.9,
"z":3.63
},
{
"id":1892,
"carat":0.76,
"cut":"Ideal",
"color":"D",
"clarity":"SI1",
"depth":62.8,
"table":57,
"price":3075,
"x":5.81,
"y":5.85,
"z":3.66
},
{
"id":1893,
"carat":0.79,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.9,
"table":55,
"price":3075,
"x":5.93,
"y":5.86,
"z":3.71
},
{
"id":1894,
"carat":0.79,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":60.4,
"table":59,
"price":3077,
"x":5.97,
"y":5.99,
"z":3.61
},
{
"id":1895,
"carat":0.79,
"cut":"Very Good",
"color":"E",
"clarity":"SI1",
"depth":63.7,
"table":58,
"price":3077,
"x":5.79,
"y":5.85,
"z":3.71
},
{
"id":1896,
"carat":0.73,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62.7,
"table":56,
"price":3077,
"x":5.75,
"y":5.8,
"z":3.62
},
{
"id":1897,
"carat":0.71,
"cut":"Fair",
"color":"D",
"clarity":"VS2",
"depth":64.7,
"table":58,
"price":3077,
"x":5.61,
"y":5.58,
"z":3.62
},
{
"id":1898,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS2",
"depth":60.3,
"table":62,
"price":3077,
"x":5.76,
"y":5.69,
"z":3.45
},
{
"id":1899,
"carat":0.75,
"cut":"Good",
"color":"D",
"clarity":"SI1",
"depth":63.6,
"table":58,
"price":3078,
"x":5.65,
"y":5.77,
"z":3.63
},
{
"id":1900,
"carat":0.72,
"cut":"Premium",
"color":"E",
"clarity":"VS2",
"depth":62.5,
"table":59,
"price":3078,
"x":5.7,
"y":5.73,
"z":3.57
},
{
"id":1901,
"carat":0.83,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":62.7,
"table":56,
"price":3078,
"x":6.01,
"y":5.98,
"z":3.76
},
{
"id":1902,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":61.3,
"table":56,
"price":3079,
"x":5.79,
"y":5.83,
"z":3.56
},
{
"id":1903,
"carat":0.94,
"cut":"Good",
"color":"I",
"clarity":"SI2",
"depth":63.8,
"table":60,
"price":3079,
"x":6.21,
"y":6.14,
"z":3.94
},
{
"id":1904,
"carat":0.91,
"cut":"Fair",
"color":"D",
"clarity":"SI2",
"depth":62.5,
"table":66,
"price":3079,
"x":6.08,
"y":6.01,
"z":3.78
},
{
"id":1905,
"carat":1,
"cut":"Very Good",
"color":"E",
"clarity":"I1",
"depth":62.3,
"table":58,
"price":3080,
"x":6.33,
"y":6.38,
"z":3.96
},
{
"id":1906,
"carat":1,
"cut":"Ideal",
"color":"H",
"clarity":"I1",
"depth":61.3,
"table":57,
"price":3080,
"x":6.41,
"y":6.44,
"z":3.94
},
{
"id":1907,
"carat":1,
"cut":"Fair",
"color":"J",
"clarity":"VS1",
"depth":66.6,
"table":57,
"price":3080,
"x":6.07,
"y":6.03,
"z":4.03
},
{
"id":1908,
"carat":1,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":59.4,
"table":60,
"price":3080,
"x":6.49,
"y":6.4,
"z":3.83
},
{
"id":1909,
"carat":1,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":62.8,
"table":60,
"price":3080,
"x":6.46,
"y":6.34,
"z":4.02
},
{
"id":1910,
"carat":0.82,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":61.1,
"table":60,
"price":3080,
"x":6.02,
"y":5.96,
"z":3.66
},
{
"id":1911,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":3080,
"x":5.75,
"y":5.78,
"z":3.56
},
{
"id":1912,
"carat":0.71,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":3080,
"x":5.73,
"y":5.75,
"z":3.55
},
{
"id":1913,
"carat":0.79,
"cut":"Very Good",
"color":"D",
"clarity":"SI2",
"depth":63.2,
"table":57,
"price":3081,
"x":5.81,
"y":5.86,
"z":3.69
},
{
"id":1914,
"carat":0.75,
"cut":"Ideal",
"color":"F",
"clarity":"VS2",
"depth":62.1,
"table":57,
"price":3081,
"x":5.8,
"y":5.82,
"z":3.61
},
{
"id":1915,
"carat":0.79,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":62,
"table":55,
"price":3081,
"x":5.93,
"y":5.95,
"z":3.68
},
{
"id":1916,
"carat":0.71,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":62.2,
"table":57,
"price":3081,
"x":5.74,
"y":5.7,
"z":3.56
},
{
"id":1917,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.5,
"table":58,
"price":3082,
"x":5.89,
"y":5.85,
"z":3.73
},
{
"id":1918,
"carat":0.91,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63.4,
"table":55,
"price":3082,
"x":6.18,
"y":6.15,
"z":3.91
},
{
"id":1919,
"carat":0.6,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":62.5,
"table":53.7,
"price":3082,
"x":5.35,
"y":5.43,
"z":3.38
},
{
"id":1920,
"carat":0.6,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":62,
"table":53.7,
"price":3082,
"x":5.4,
"y":5.44,
"z":3.36
},
{
"id":1921,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":57.7,
"table":60,
"price":3082,
"x":5.83,
"y":5.86,
"z":3.37
},
{
"id":1922,
"carat":0.91,
"cut":"Very Good",
"color":"J",
"clarity":"VS1",
"depth":63.5,
"table":55,
"price":3082,
"x":6.22,
"y":6.12,
"z":3.92
},
{
"id":1923,
"carat":0.71,
"cut":"Premium",
"color":"F",
"clarity":"VS1",
"depth":58.6,
"table":62,
"price":3082,
"x":5.88,
"y":5.82,
"z":3.43
},
{
"id":1924,
"carat":0.86,
"cut":"Premium",
"color":"H",
"clarity":"VS2",
"depth":61.3,
"table":59,
"price":3082,
"x":6.17,
"y":6.1,
"z":3.76
},
{
"id":1925,
"carat":0.8,
"cut":"Ideal",
"color":"F",
"clarity":"SI1",
"depth":61,
"table":56,
"price":3082,
"x":6.05,
"y":5.98,
"z":3.67
},
{
"id":1926,
"carat":0.8,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":60.1,
"table":58,
"price":3082,
"x":6.07,
"y":6.05,
"z":3.64
},
{
"id":1927,
"carat":0.8,
"cut":"Premium",
"color":"D",
"clarity":"SI2",
"depth":61.1,
"table":58,
"price":3082,
"x":5.94,
"y":5.9,
"z":3.62
},
{
"id":1928,
"carat":0.92,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":62.1,
"table":60,
"price":3083,
"x":6.21,
"y":6.26,
"z":3.87
},
{
"id":1929,
"carat":0.72,
"cut":"Very Good",
"color":"F",
"clarity":"VS1",
"depth":63.2,
"table":57,
"price":3083,
"x":5.69,
"y":5.73,
"z":3.61
},
{
"id":1930,
"carat":1.01,
"cut":"Premium",
"color":"H",
"clarity":"SI2",
"depth":59.4,
"table":62,
"price":3083,
"x":6.47,
"y":6.43,
"z":3.83
},
{
"id":1931,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":61.8,
"table":55,
"price":3084,
"x":5.72,
"y":5.74,
"z":3.54
},
{
"id":1932,
"carat":0.72,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":61,
"table":59,
"price":3084,
"x":5.73,
"y":5.78,
"z":3.51
},
{
"id":1933,
"carat":0.81,
"cut":"Premium",
"color":"I",
"clarity":"VVS2",
"depth":62.9,
"table":59,
"price":3084,
"x":5.95,
"y":5.84,
"z":3.71
},
{
"id":1934,
"carat":0.53,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":61.8,
"table":55,
"price":3084,
"x":5.19,
"y":5.24,
"z":3.22
},
{
"id":1935,
"carat":0.61,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":62.2,
"table":56,
"price":3084,
"x":5.43,
"y":5.47,
"z":3.39
},
{
"id":1936,
"carat":0.85,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":62,
"table":54,
"price":3084,
"x":6.08,
"y":6.11,
"z":3.78
},
{
"id":1937,
"carat":0.75,
"cut":"Good",
"color":"E",
"clarity":"VS2",
"depth":62.6,
"table":58,
"price":3084,
"x":5.73,
"y":5.78,
"z":3.6
},
{
"id":1938,
"carat":0.9,
"cut":"Good",
"color":"E",
"clarity":"SI2",
"depth":64.1,
"table":57,
"price":3084,
"x":6.09,
"y":6.07,
"z":3.9
},
{
"id":1939,
"carat":0.9,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":63.4,
"table":62,
"price":3084,
"x":6.02,
"y":6,
"z":3.81
},
{
"id":1940,
"carat":0.9,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":60.7,
"table":61,
"price":3084,
"x":6.22,
"y":6.16,
"z":3.76
},
{
"id":1941,
"carat":0.9,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":59.5,
"table":61,
"price":3084,
"x":6.3,
"y":6.24,
"z":3.73
},
{
"id":1942,
"carat":0.9,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":64.5,
"table":55,
"price":3084,
"x":6.12,
"y":6.03,
"z":3.92
},
{
"id":1943,
"carat":0.9,
"cut":"Fair",
"color":"E",
"clarity":"SI2",
"depth":65.8,
"table":58,
"price":3084,
"x":6.02,
"y":5.98,
"z":3.95
},
{
"id":1944,
"carat":0.9,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":63,
"table":57,
"price":3084,
"x":6.08,
"y":6.05,
"z":3.82
},
{
"id":1945,
"carat":0.81,
"cut":"Ideal",
"color":"H",
"clarity":"VS2",
"depth":61.6,
"table":56,
"price":3084,
"x":6.03,
"y":5.98,
"z":3.7
},
{
"id":1946,
"carat":0.81,
"cut":"Premium",
"color":"G",
"clarity":"VS2",
"depth":61.2,
"table":60,
"price":3084,
"x":6,
"y":5.99,
"z":3.67
},
{
"id":1947,
"carat":0.9,
"cut":"Very Good",
"color":"E",
"clarity":"SI2",
"depth":63.1,
"table":54,
"price":3084,
"x":6.2,
"y":6.17,
"z":3.9
},
{
"id":1948,
"carat":1.02,
"cut":"Fair",
"color":"I",
"clarity":"SI2",
"depth":64.5,
"table":56,
"price":3084,
"x":6.28,
"y":6.25,
"z":4.04
},
{
"id":1949,
"carat":0.72,
"cut":"Ideal",
"color":"F",
"clarity":"VS1",
"depth":62.4,
"table":56,
"price":3084,
"x":5.76,
"y":5.72,
"z":3.58
},
{
"id":1950,
"carat":0.75,
"cut":"Very Good",
"color":"D",
"clarity":"SI1",
"depth":63.9,
"table":56,
"price":3085,
"x":5.73,
"y":5.75,
"z":3.67
},
{
"id":1951,
"carat":0.84,
"cut":"Premium",
"color":"E",
"clarity":"SI2",
"depth":59.2,
"table":59,
"price":3086,
"x":6.19,
"y":6.14,
"z":3.65
},
{
"id":1952,
"carat":0.75,
"cut":"Ideal",
"color":"E",
"clarity":"VS1",
"depth":61.8,
"table":55,
"price":3086,
"x":5.85,
"y":5.87,
"z":3.62
},
{
"id":1953,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":63.9,
"table":58,
"price":3087,
"x":5.58,
"y":5.62,
"z":3.58
},
{
"id":1954,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":63.2,
"table":60,
"price":3087,
"x":5.56,
"y":5.61,
"z":3.53
},
{
"id":1955,
"carat":0.91,
"cut":"Very Good",
"color":"H",
"clarity":"SI1",
"depth":63,
"table":57,
"price":3087,
"x":6.1,
"y":6.19,
"z":3.87
},
{
"id":1956,
"carat":0.7,
"cut":"Good",
"color":"D",
"clarity":"VS2",
"depth":64.1,
"table":59,
"price":3087,
"x":5.49,
"y":5.56,
"z":3.54
},
{
"id":1957,
"carat":0.76,
"cut":"Ideal",
"color":"E",
"clarity":"SI1",
"depth":62.4,
"table":57,
"price":3087,
"x":5.83,
"y":5.87,
"z":3.65
},
{
"id":1958,
"carat":0.74,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":61.9,
"table":56,
"price":3087,
"x":5.84,
"y":5.79,
"z":3.6
},
{
"id":1959,
"carat":1.01,
"cut":"Good",
"color":"J",
"clarity":"SI2",
"depth":63.7,
"table":60,
"price":3088,
"x":6.4,
"y":6.29,
"z":4.05
},
{
"id":1960,
"carat":1.01,
"cut":"Very Good",
"color":"J",
"clarity":"SI2",
"depth":63.3,
"table":53,
"price":3088,
"x":6.35,
"y":6.31,
"z":4.01
},
{
"id":1961,
"carat":0.79,
"cut":"Premium",
"color":"F",
"clarity":"VS2",
"depth":60.7,
"table":60,
"price":3089,
"x":5.95,
"y":5.97,
"z":3.62
},
{
"id":1962,
"carat":0.77,
"cut":"Ideal",
"color":"H",
"clarity":"SI1",
"depth":61.3,
"table":56,
"price":3089,
"x":5.87,
"y":5.91,
"z":3.61
},
{
"id":1963,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.4,
"table":57,
"price":3089,
"x":5.74,
"y":5.79,
"z":3.54
},
{
"id":1964,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.9,
"table":57,
"price":3089,
"x":5.81,
"y":5.85,
"z":3.55
},
{
"id":1965,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":60.6,
"table":57,
"price":3089,
"x":5.84,
"y":5.87,
"z":3.55
},
{
"id":1966,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.9,
"table":55,
"price":3089,
"x":5.76,
"y":5.8,
"z":3.58
},
{
"id":1967,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.2,
"table":57,
"price":3089,
"x":5.79,
"y":5.86,
"z":3.56
},
{
"id":1968,
"carat":0.73,
"cut":"Ideal",
"color":"G",
"clarity":"SI1",
"depth":61.7,
"table":57,
"price":3089,
"x":5.78,
"y":5.81,
"z":3.57
},
{
"id":1969,
"carat":0.71,
"cut":"Ideal",
"color":"D",
"clarity":"VS1",
"depth":62.5,
"table":57,
"price":3090,
"x":5.71,
"y":5.68,
"z":3.56
},
{
"id":1970,
"carat":0.58,
"cut":"Ideal",
"color":"F",
"clarity":"VVS1",
"depth":61.7,
"table":55,
"price":3090,
"x":5.36,
"y":5.39,
"z":3.31
},
{
"id":1971,
"carat":0.87,
"cut":"Ideal",
"color":"F",
"clarity":"SI2",
"depth":62.2,
"table":56,
"price":3090,
"x":6.03,
"y":6.13,
"z":3.78
},
{
"id":1972,
"carat":0.71,
"cut":"Premium",
"color":"D",
"clarity":"VS1",
"depth":58.1,
"table":62,
"price":3090,
"x":5.89,
"y":5.84,
"z":3.41
},
{
"id":1973,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":60.8,
"table":57,
"price":3091,
"x":5.79,
"y":5.82,
"z":3.53
},
{
"id":1974,
"carat":0.92,
"cut":"Premium",
"color":"J",
"clarity":"VS2",
"depth":60.9,
"table":62,
"price":3091,
"x":6.31,
"y":6.26,
"z":3.83
},
{
"id":1975,
"carat":1.2,
"cut":"Premium",
"color":"G",
"clarity":"I1",
"depth":60.3,
"table":58,
"price":3091,
"x":6.82,
"y":6.77,
"z":4.1
},
{
"id":1976,
"carat":0.8,
"cut":"Premium",
"color":"E",
"clarity":"SI1",
"depth":62.9,
"table":60,
"price":3091,
"x":5.89,
"y":5.87,
"z":3.7
},
{
"id":1977,
"carat":0.98,
"cut":"Very Good",
"color":"H",
"clarity":"SI2",
"depth":63.4,
"table":57,
"price":3091,
"x":6.41,
"y":6.32,
"z":4.04
},
{
"id":1978,
"carat":0.7,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":60.7,
"table":58,
"price":3092,
"x":5.7,
"y":5.73,
"z":3.47
},
{
"id":1979,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":61.6,
"table":58,
"price":3092,
"x":5.66,
"y":5.7,
"z":3.5
},
{
"id":1980,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS2",
"depth":62.3,
"table":55,
"price":3092,
"x":5.67,
"y":5.7,
"z":3.54
},
{
"id":1981,
"carat":0.8,
"cut":"Very Good",
"color":"F",
"clarity":"SI1",
"depth":63.1,
"table":58,
"price":3093,
"x":5.89,
"y":5.93,
"z":3.73
},
{
"id":1982,
"carat":0.7,
"cut":"Ideal",
"color":"E",
"clarity":"VS2",
"depth":62,
"table":57,
"price":3093,
"x":5.68,
"y":5.71,
"z":3.53
},
{
"id":1983,
"carat":0.7,
"cut":"Ideal",
"color":"D",
"clarity":"VS1",
"depth":61.9,
"table":57,
"price":3093,
"x":5.69,
"y":5.72,
"z":3.53
},
{
"id":1984,
"carat":0.72,
"cut":"Ideal",
"color":"E",
"clarity":"VVS2",
"depth":62.1,
"table":57,
"price":3093,
"x":5.76,
"y":5.74,
"z":3.57
},
{
"id":1985,
"carat":0.71,
"cut":"Ideal",
"color":"G",
"clarity":"VVS2",
"depth":62.5,
"table":57,
"price":3095,
"x":5.7,
"y":5.73,
"z":3.57
},
{
"id":1986,
"carat":0.7,
"cut":"Very Good",
"color":"E",
"clarity":"VS1",
"depth":63.4,
"table":57,
"price":3095,
"x":5.63,
"y":5.67,
"z":3.58
},
{
"id":1987,
"carat":0.81,
"cut":"Very Good",
"color":"G",
"clarity":"SI1",
"depth":62.3,
"table":59,
"price":3095,
"x":5.93,
"y":5.98,
"z":3.71
},
{
"id":1988,
"carat":0.94,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":62.3,
"table":59,
"price":3095,
"x":6.32,
"y":6.23,
"z":3.91
},
{
"id":1989,
"carat":0.9,
"cut":"Premium",
"color":"H",
"clarity":"SI1",
"depth":62.4,
"table":56,
"price":3095,
"x":6.13,
"y":6.05,
"z":3.8
},
{
"id":1990,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63.1,
"table":59,
"price":3096,
"x":5.64,
"y":5.67,
"z":3.57
},
{
"id":1991,
"carat":0.71,
"cut":"Very Good",
"color":"D",
"clarity":"VS2",
"depth":63,
"table":58,
"price":3096,
"x":5.65,
"y":5.68,
"z":3.57
},
{
"id":1992,
"carat":0.77,
"cut":"Good",
"color":"H",
"clarity":"VVS1",
"depth":63.1,
"table":57,
"price":3096,
"x":5.83,
"y":5.86,
"z":3.69
},
{
"id":1993,
"carat":0.91,
"cut":"Premium",
"color":"F",
"clarity":"SI2",
"depth":62.1,
"table":56,
"price":3096,
"x":6.26,
"y":6.21,
"z":3.87
},
{
"id":1994,
"carat":0.81,
"cut":"Ideal",
"color":"I",
"clarity":"SI1",
"depth":61.3,
"table":56,
"price":3097,
"x":6.23,
"y":6.27,
"z":3.83
},
{
"id":1995,
"carat":0.81,
"cut":"Premium",
"color":"F",
"clarity":"SI1",
"depth":60.3,
"table":59,
"price":3097,
"x":5.98,
"y":6.05,
"z":3.63
},
{
"id":1996,
"carat":0.52,
"cut":"Ideal",
"color":"E",
"clarity":"VVS1",
"depth":61.8,
"table":55,
"price":3097,
"x":5.19,
"y":5.2,
"z":3.21
},
{
"id":1997,
"carat":0.53,
"cut":"Ideal",
"color":"D",
"clarity":"VVS1",
"depth":61.6,
"table":55,
"price":3097,
"x":5.21,
"y":5.27,
"z":3.23
},
{
"id":1998,
"carat":1.29,
"cut":"Good",
"color":"I",
"clarity":"I1",
"depth":64.2,
"table":54,
"price":3098,
"x":6.93,
"y":6.83,
"z":4.42
},
{
"id":1999,
"carat":0.9,
"cut":"Very Good",
"color":"I",
"clarity":"SI2",
"depth":60.4,
"table":58,
"price":3099,
"x":6.25,
"y":6.31,
"z":3.79
}
]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Correlation Matrix II</title>
<style>
text {
font-family: Roboto;
font-weight: 400;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8" type="text/javascript"></script>
<script>
//These attributes could be derived from the data
attributes = ["carat","depth","table","price","x","y","z"];
attributeMatrix = [];
attributes.forEach(function (a, x) {
attributes.forEach(function (b, y) {
//create an n-by-n matrix based on pairs of attributes
attributeMatrix.push({a: a, b: b, x: x, y: y})
})
})
colors = d3.scale.ordinal()
.range(["#827abf", "#f62150", "#6f89b6", "#f5e0b7", "#5b1e37", "#b9e3c5"]);
d3.select("body")
.append("svg")
.attr("height", 1140)
.attr("width", 1140)
d3.json("diamonds.json", small_scatterplots);
function small_scatterplots(data) {
console.log("data", data);
//format data as numbers
data.forEach(function (d) {
attributes.forEach(function (att) {
d[att] = Number(d[att])
})
})
//create scales dynamically for each attribute's extent
scale = {};
attributes.forEach(function (att) {
scale[att] = d3.scale.linear();
attExtent = d3.extent(data, function (d) {return d[att]});
scale[att].domain(attExtent).range([5,95]);
})
var height = 100;
var width = 100;
var padding = 7;
var rows = attributes.length;
var columns = rows;
console.log('rows', rows);
//bind the matrix array to a grid of g elements
d3.select("svg")
.selectAll("g")
.data(attributeMatrix)
.enter()
.append("g")
.attr("transform", function (d) {
return "translate(" +
((d.x * (width + padding)) + padding) + "," +
((d.y * (height + padding)) + padding) +
")"
});
d3.selectAll("g")
.each(function (matrix, i) {
//index i is only used for coloring
var row = Math.floor(i % rows);
var col = Math.floor(i / rows);
//background/border
d3.select(this).append("rect")
.style("fill", "white")
.style("stroke", "gray")
.style("stroke-width", 1)
.attr("height", height)
.attr("width", width);
// if we are comparing an attribute with itself
if (matrix.a === matrix.b) {
// show a label
d3.select(this)
.append("text")
.attr("x", 50)
.style("text-anchor", "middle")
.attr("y", 50)
.text(matrix.a)
} else {
// if not, draw
// scatterplot points
d3.select(this).selectAll("circle")
.data(data)
.enter()
.append("circle")
.attr("r", 2)
.style("fill", colors(row + col))
.attr("cx", function (d) {return scale[matrix.a](d[matrix.a])})
.attr("cy", function (d) {return 100 - scale[matrix.b](d[matrix.b])})
// show a label for the index
d3.select(this)
.append("text")
.attr("x", 5)
.style("text-anchor", "start")
.attr("y", 15)
.text("i=" + i)
// show a label for the (row,col) pair
d3.select(this)
.append("text")
.attr("x", width - 5)
.style("text-anchor", "end")
.attr("y", height - 8)
.text("(" + row + ", " + col + ")")
}
})
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment