[
  {
    "path": "LICENSE",
    "content": "ISC License\n\nCopyright (c) 2022 Martin Dørum\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# JCOF: JSON-like Compact Object Format\n\nA more efficient way to represent JSON-style objects.\n\n## Status\n\nThis format isn't nailed down yet.\nMost changes will likely be additive, such that existing JCOF documents will remain valid,\nbut nothing is guaranteed. Use at your own risk.\nIn its current form, JCOF is suitable for closed systems where one party controls every producer\nand consumer and where every implementation can be updated at once.\n\n## About\n\nJCOF tries to be a drop-in replacement for JSON, with most of the same semantics, but with a much\nmore compact representation of objects. The main way it does this is to introduce a string table\nat the beginning of the object, and then replace all strings with indexes into that string table.\nIt also employs a few extra tricks to make objects as small as possible, without losing the most\nimportant benefits of JSON. Most importantly, it remains a text-based, schemaless format.\n\nThe following JSON object:\n\n```json\n{\n\t\"people\": [\n\t\t{\"first-name\": \"Bob\", \"age\": 32, \"occupation\": \"Plumber\", \"full-time\": true},\n\t\t{\"first-name\": \"Alice\", \"age\": 28, \"occupation\": \"Programmer\", \"full-time\": true},\n\t\t{\"first-name\": \"Bernard\", \"age\": 36, \"occupation\": null, \"full-time\": null},\n\t\t{\"first-name\": \"El\", \"age\": 57, \"occupation\": \"Programmer\", \"full-time\": false}\n\t]\n}\n```\n\ncould be represented as the following JCOF object:\n\n```\nProgrammer;\"age\"\"first-name\"\"full-time\"\"occupation\";\n{\"people\"[(0,iw\"Bob\"b\"Plumber\")(0,is\"Alice\"b,s0)(0,iA\"Bernard\"n,n)(0,iV\"El\"B,s0)]}\n```\n\nMinimized, the JSON is 299 bytes, with 71.5 bytes on average per person object.\nThe JCOF is 134 bytes, with only 17.5 bytes per person object; that's 0.45x the size in total,\nand 0.23x the size per person object.\nThe reason the JCOF is so much smaller is threefold:\n\n1. It has a string table, so that strings which occur multiple times only have to be\n   included in the JCOF document once. In this example object, the only duplicated string\n   is \"Programmer\".\n2. It has an object shapes table, so that object shapes which occur multiple times only have to\n   have their keys encoded once. In this example object, the only duplicated object shape\n   is `{\"age\", \"first-name\", \"full-time\", \"occupation\"}`.\n3. It has more compact encodings for various values and syntax.\n   Large integers can be encoded as base 62 rather than base 10,\n   booleans and null are encoded using single characters,\n   and separator characters can be skipped where that results in an unambiguous document.\n\n## Rationale\n\nI was making a JSON-based serialization format for a game I was working on, but found myself\nmaking trade-offs between space efficiency and descriptive key names, so decided to make\na format which makes that a non-issue. I then kept iterating on it until I had\nwhat I call JCOF today.\n\nIn most cases, you would use plain JSON, or if size is a concern, you would use gzipped JSON.\nBut there are times when size is a concern and you can't reasonably use gzip; for example,\ngzipping stuff from JavaScript in the browser is inconvenient until\n[TextEncoderStream](https://developer.mozilla.org/en-US/docs/Web/API/TextEncoderStream)\nis supported in Firefox, and having a smaller uncompressed encoding can be an advantage\nsome cases even where gzip is used.\nI've also observed significant reductions in size between compressed JSON and compressed JCOF\nin certain cases.\n\nI'm publishing it because other people may find it useful too.\nIf you don't find it useful, feel free to disregard it.\n\n## Reference implementations\n\nThe only reference implementation currently is the javascript one, in\n[implementations/javascript/jcof.js](implementations/javascript/jcof.js).\nIt's published on NPM here: https://www.npmjs.com/package/jcof\n\n## Benchmarks\n\nThis is the sizes of various documents in JSON compared to JCOF (from the test suite):\n\n```\ntiny.json:\n  JSON: 299 bytes\n  JCOF: 134 bytes (0.448x)\ncircuitsim.json:\n  JSON: 8315 bytes\n  JCOF: 2093 bytes (0.252x)\npokemon.json:\n  JSON: 219635 bytes\n  JCOF: 39650 bytes (0.181x)\npokedex.json:\n  JSON: 56812 bytes\n  JCOF: 23132 bytes (0.407x)\nmadrid.json:\n  JSON: 37960 bytes\n  JCOF: 11923 bytes (0.314x)\nmeteorites.json:\n  JSON: 244920 bytes\n  JCOF: 87028 bytes (0.355x)\ncomets.json:\n  JSON: 51949 bytes\n  JCOF: 37480 bytes (0.721x)\n````\n\n## The format\n\nHere's the grammar which describes JCOF:\n\n```ebnf\ngrammar ::= string-table ';' object-shape-table ';' value\n\nstring-table ::= (string (','? string)*)?\nstring ::= plain-string | json-string\nplain-string ::= [a-zA-Z0-9]+\njson-string ::= [https://datatracker.ietf.org/doc/html/rfc8259#section-7]\n\nobject-shape-table ::= (object-shape (',' object-shape)*)?\nobject-shape ::= object-key (':'? object-key)*\nobject-key ::= base62 | json-string\nbase62 ::= [0-9a-zA-Z]+\n\nvalue ::=\n  array-value |\n  object-value |\n  number-value |\n  string-value |\n  bool-value |\n  null-value\n\narray-value ::= '[' (value (','? value)*)? ']'\nobject-value ::= shaped-object-value | keyed-object-value\nshaped-object-value ::= '(' base62 (','? value)* ')'\nkeyed-object-value ::= '{' (key-value-pair (','? key-value-pair)*)? '}'\nkey-value-pair ::= object-key ':'? value\nnumber-value ::= 'i' base62 | 'I' base62 | 'finf' | 'fInf' | 'fnan' | float-value\nfloat-value ::= '-'? [0-9]+ ('.' [0-9]+)? (('e' | 'E') ('-' | '+')? [0-9]+)?\nstring-value ::= 's' base62 | json-string\nbool-value ::= 'b' | 'B'\nnull-value ::= 'n'\n```\n\nSee the bottom of the readme for a [railroad diagram](#railroad-diagram).\n\nIn addition to the grammar, you should know the following:\n\n### Many separators are optional\n\nThe grammar contains optional separators (`','?`, `':'?`). These separators can be skipped\nif either the character before or the character after is any of the following:\n`[`, `]`, `{`, `}`, `(`, `)`, `,`, `:` or `\"`. This saves a bunch of bytes.\nJCOF generators can choose to always emit separators, but parsers must accept\nJCOF documents with missing separators.\n\n### The string table\n\nAll JCOF objects start with a string table, which is a list of strings separated by\nan optional `,`.\n\n### The object shapes table\n\nAn \"object shape\" is defined as a list of keys. If you have a bunch of objects with\nthe same keys, it's usually advantageous to define that set of keys once in the\nobject shapes table and encode the objects with the shaped objects syntax.\nAn object shape is a list of object keys optionally separated by `:`,\nand the object shape table is a list of object shapes (non-optionally) separated by `,`\n\n### Base62\n\nBase62 encoding just refers to writing integer numbers in base 62 rather than base 10.\nThis lets us use 0-9, a-z and A-Z as digits. The characters from `0` to `9` represent\n0-9, the characters `a` to `z` represent 10-35, and the characters `A` to `Z` represent\n36-61.\n\n### Values\n\nA value can be:\n\n* An array literal: `[`, followed by 0 or more values, followed by `]`\n* A shaped object literal: `(`, followed by an object shape index, followed by values, followed by `)`\n\t* The object shape index is a base62-encoded index into the object shapes table\n* An object literal: `{`, followed by 0 or more key-value pairs, followed by `}`\n\t* A key-value pair is a base62 index into the header, followed by a `:`, followed by a value\n* A string reference: `s` followed by a base62 index into the header\n* A JSON string literal\n* A number literal:\n\t* `i` followed by a base62 number: A positive integer\n\t* `I` followed by a base62 number: A negative integer\n\t* A floating point number written in decimal, with an optional fractional part and\n\t  an optional exponent part\n* A bool literal:\n\t`b`: true\n\t`B`: false\n* A null literal: `n`\n\n### Railroad diagram\n\ngenerated with\n[bnf-railroad-generator](https://github.com/mortie/bnf-railroad-generator)\n\n![railroad diagram](railroad-diagram.png)\n"
  },
  {
    "path": "implementations/javascript/README.md",
    "content": "# JCOF: JSON-like Compact Object Format\n\nA more efficient way to represent JSON-style objects.\n\nThis Javascript implementation exposes two functions: `stringify` and `parse`.\n\nRead more at https://github.com/mortie/jcof.\n\n## Example\n\n```javascript\nimport * as jcof from 'jcof';\n\nlet exampleObject = {\n\tpeople: [\n\t\t{\"first-name\": \"Bob\", \"age\": 32, \"occupation\": \"Plumber\", \"full-time\": true},\n\t\t{\"first-name\": \"Alice\", \"age\": 28, \"occupation\": \"Programmer\", \"full-time\": true},\n\t\t{\"first-name\": \"Bernard\", \"age\": 36, \"occupation\": null, \"full-time\": null},\n\t\t{\"first-name\": \"El\", \"age\": 57, \"occupation\": \"Programmer\", \"full-time\": false}\n\t]\n};\n\nlet encoded = jcof.stringify(exampleObject);\nconsole.log(\"JCOF-encoded object:\", encoded);\nlet decoded = jcof.parse(encoded);\nconsole.log(\"Decoded object:\", decoded);\n```\n"
  },
  {
    "path": "implementations/javascript/jcof.js",
    "content": "/*\nISC License\n\nCopyright (c) 2022 Martin Dørum\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n*/\n\nlet b62alphabet = \"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\";\nlet b62alphanum = {};\nfor (let i = 0; i < b62alphabet.length; ++i) {\n\tb62alphanum[b62alphabet[i]] = i;\n}\n\nfunction isSep(ch) {\n\treturn ch == '[' || ch == ']' || ch == '{' || ch == '}' ||\n\t\tch == '(' || ch == ')' || ch == ',' || ch == ':' || ch == '\"';\n}\n\nclass StringWriter {\n\tconstructor() {\n\t\tthis.str = \"\";\n\t\tthis.nextMaybeSep = null;\n\t\tthis.prevCh = null;\n\t}\n\n\twrite(s) {\n\t\tif (this.maybeNextSep) {\n\t\t\tif (!isSep(this.prevCh) && !isSep(s[0])) {\n\t\t\t\tthis.str += this.maybeNextSep;\n\t\t\t}\n\t\t\tthis.maybeNextSep = null;\n\t\t}\n\n\t\tthis.str += s;\n\t\tthis.prevCh = s[s.length - 1];\n\t}\n\n\tmaybeSep(sep) {\n\t\tif (this.nextMaybeSep) {\n\t\t\tthis.write(this.maybeNextSep);\n\t\t}\n\n\t\tthis.maybeNextSep = sep;\n\t}\n}\n\nfunction analyzeValue(value, strings, objectShapes) {\n\tif (value instanceof Array) {\n\t\tfor (let v of value) {\n\t\t\tanalyzeValue(v, strings, objectShapes);\n\t\t}\n\t} else if (typeof value == \"object\" && value != null) {\n\t\tlet keys = Object.keys(value).sort();\n\t\tif (keys.length > 1) {\n\t\t\tlet shapeHash = JSON.stringify(keys);\n\t\t\tlet shape = objectShapes.get(shapeHash)\n\t\t\tif (shape == null) {\n\t\t\t\tobjectShapes.set(shapeHash, {count: 1, keys});\n\t\t\t} else {\n\t\t\t\tshape.count += 1;\n\t\t\t}\n\t\t} else if (keys.length == 1) {\n\t\t\tlet string = strings.get(keys[0]);\n\t\t\tif (string == null) {\n\t\t\t\tstrings.set(keys[0], {count: 1});\n\t\t\t} else {\n\t\t\t\tstring.count += 1;\n\t\t\t}\n\t\t}\n\n\t\tfor (let key of keys) {\n\t\t\tanalyzeValue(value[key], strings, objectShapes);\n\t\t}\n\t} else if (typeof value == \"string\" && value.length > 1) {\n\t\tlet string = strings.get(value);\n\t\tif (string == null) {\n\t\t\tstrings.set(value, {count: 1});\n\t\t} else {\n\t\t\tstring.count += 1;\n\t\t}\n\t}\n}\n\nfunction analyze(value) {\n\tlet strings = new Map();\n\tlet objectShapes = new Map();\n\tanalyzeValue(value, strings, objectShapes);\n\tfor (let [hash, shape] of objectShapes) {\n\t\tif (shape.count == 1) {\n\t\t\tobjectShapes.delete(hash);\n\t\t}\n\t\tfor (let key of shape.keys) {\n\t\t\tlet string = strings.get(key);\n\t\t\tif (string == null) {\n\t\t\t\tstrings.set(key, {count: 1});\n\t\t\t} else {\n\t\t\t\tstring.count += 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tfor (let [string, s] of strings) {\n\t\tif (s.count == 1) {\n\t\t\tstrings.delete(string);\n\t\t}\n\t}\n\n\tlet stringList = Array.from(strings.keys());\n\tlet stringIds = new Map();\n\tstringList.sort((a, b) => strings.get(b).count - strings.get(a).count);\n\tfor (let id = 0; id < stringList.length; ++id) {\n\t\tstringIds.set(stringList[id], id);\n\t}\n\n\tlet objectShapeList = [];\n\tlet objectShapeIds = new Map();\n\tfor (let [hash, shape] of objectShapes) {\n\t\tobjectShapeIds.set(hash, objectShapeList.length);\n\t\tobjectShapeList.push(shape.keys);\n\t}\n\n\treturn {stringList, stringIds, objectShapeList, objectShapeIds};\n}\n\nexport function stringify(value) {\n\tlet w = new StringWriter();\n\tlet meta = analyze(value);\n\n\tstringifyStringTable(w, meta);\n\tw.write(';');\n\tstringifyObjectShapeTable(w, meta);\n\tw.write(';');\n\tstringifyValue(w, meta, value);\n\treturn w.str;\n}\n\nfunction stringifyStringTable(w, meta) {\n\tif (meta.stringList.length == 0) {\n\t\treturn;\n\t}\n\n\tstringifyString(w, meta.stringList[0]);\n\tfor (let i = 1; i < meta.stringList.length; ++i) {\n\t\tw.maybeSep(',');\n\t\tstringifyString(w, meta.stringList[i]);\n\t}\n}\n\nfunction stringifyString(w, string) {\n\tif (/^[a-zA-Z0-9]+$/.test(string)) {\n\t\tw.write(string);\n\t} else {\n\t\tw.write(JSON.stringify(string));\n\t}\n}\n\nfunction stringifyObjectShapeTable(w, meta) {\n\tif (meta.objectShapeList.length == 0) {\n\t\treturn;\n\t}\n\n\tstringifyObjectShape(w, meta, meta.objectShapeList[0]);\n\tfor (let i = 1; i < meta.objectShapeList.length; ++i) {\n\t\tw.write(',');\n\t\tstringifyObjectShape(w, meta, meta.objectShapeList[i]);\n\t}\n}\n\nfunction stringifyObjectShape(w, meta, shape) {\n\tstringifyObjectKey(w, meta, shape[0]);\n\tfor (let i = 1; i < shape.length; ++i) {\n\t\tw.maybeSep(':');\n\t\tstringifyObjectKey(w, meta, shape[i]);\n\t}\n}\n\nfunction stringifyObjectKey(w, meta, key) {\n\tlet id = meta.stringIds.get(key);\n\tif (id == null) {\n\t\tw.write(JSON.stringify(key));\n\t} else {\n\t\tstringifyBase62(w, id);\n\t}\n}\n\nfunction stringifyBase62(w, num) {\n\tlet str = \"\";\n\tdo {\n\t\tstr += b62alphabet[num % 62];\n\t\tnum = Math.floor(num / 62);\n\t} while (num > 0);\n\tfor (let i = str.length - 1; i >= 0; --i) {\n\t\tw.write(str[i]);\n\t}\n}\n\nfunction stringifyValue(w, meta, value) {\n\tif (value instanceof Array) {\n\t\tw.write('[');\n\t\tif (value.length == 0) {\n\t\t\tw.write(']');\n\t\t\treturn;\n\t\t}\n\n\t\tstringifyValue(w, meta, value[0]);\n\t\tfor (let i = 1; i < value.length; ++i) {\n\t\t\tw.maybeSep(',');\n\t\t\tstringifyValue(w, meta, value[i]);\n\t\t}\n\n\t\tw.write(']');\n\t} else if (typeof value == \"object\" && value != null) {\n\t\tlet keys = Object.keys(value).sort();\n\t\tlet hash = JSON.stringify(keys);\n\t\tlet shapeId = meta.objectShapeIds.get(hash);\n\t\tif (shapeId == null) {\n\t\t\tstringifyKeyedObjectValue(w, meta, value, keys);\n\t\t} else {\n\t\t\tstringifyShapedObjectValue(w, meta, value, keys, shapeId);\n\t\t}\n\t} else if (typeof value == \"number\") {\n\t\tif (value == Math.floor(value) && (value < 0 || value > 10)) {\n\t\t\tif (value < 0) {\n\t\t\t\tw.write('I');\n\t\t\t\tstringifyBase62(w, -value);\n\t\t\t} else {\n\t\t\t\tw.write('i');\n\t\t\t\tstringifyBase62(w, value);\n\t\t\t}\n\t\t} else if (value == Infinity) {\n\t\t\tw.write('n'); // JSON.stringify outputs null for Infinity\n\t\t} else if (value == -Infinity) {\n\t\t\tw.write('n'); // JSON.stringify outputs null for -Infinity\n\t\t} else if (isNaN(value)) {\n\t\t\tw.write('n'); // JSON.stringify outputs null for NaN\n\t\t} else {\n\t\t\t// JavaScript's float to string function seems to always generate a\n\t\t\t// JCOF-compatible string\n\t\t\tw.write(value.toString());\n\t\t}\n\t} else if (typeof value == \"string\") {\n\t\tlet stringId = meta.stringIds.get(value);\n\t\tif (stringId == null) {\n\t\t\tw.write(JSON.stringify(value));\n\t\t} else {\n\t\t\tw.write('s');\n\t\t\tstringifyBase62(w, stringId);\n\t\t}\n\t} else if (typeof value == \"boolean\") {\n\t\tw.write(value ? 'b' : 'B');\n\t} else if (value == null) {\n\t\tw.write('n');\n\t} else {\n\t\tthrow new Error(\"Can't serialize value: \" + value);\n\t}\n}\n\nfunction stringifyShapedObjectValue(w, meta, value, keys, shapeId) {\n\tw.write('(');\n\tstringifyBase62(w, shapeId);\n\tif (keys.length == 0) {\n\t\tw.write(')');\n\t\treturn;\n\t}\n\n\tfor (let key of keys) {\n\t\tw.maybeSep(',');\n\t\tstringifyValue(w, meta, value[key]);\n\t}\n\n\tw.write(')');\n}\n\nfunction stringifyKeyedObjectValue(w, meta, value, keys) {\n\tw.write('{');\n\tif (keys.length == 0) {\n\t\tw.write('}');\n\t\treturn;\n\t}\n\n\tstringifyKeyValuePair(w, meta, keys[0], value[keys[0]]);\n\tfor (let i = 1; i < keys.length; ++i) {\n\t\tw.maybeSep(',');\n\t\tstringifyKeyValuePair(w, meta, keys[i], value[keys[i]]);\n\t};\n\n\tw.write('}');\n}\n\nfunction stringifyKeyValuePair(w, meta, key, val) {\n\tstringifyObjectKey(w, meta, key);\n\tw.maybeSep(':');\n\tstringifyValue(w, meta, val);\n}\n\nexport class ParseError extends Error {\n\tconstructor(msg, index) {\n\t\tsuper(msg);\n\t\tthis.name = \"ParseError\";\n\t\tthis.index = index;\n\t}\n}\n\nclass StringReader {\n\tconstructor(str) {\n\t\tthis.str = str;\n\t\tthis.index = 0;\n\t}\n\n\tpeek() {\n\t\tif (this.index >= this.str.length) {\n\t\t\treturn null;\n\t\t} else {\n\t\t\treturn this.str[this.index];\n\t\t}\n\t}\n\n\tconsume() {\n\t\tthis.index += 1;\n\t}\n\n\tskip(ch) {\n\t\tlet peeked = this.peek();\n\t\tif (peeked != ch) {\n\t\t\tthis.error(\"Unexpected char: Expected '\" + ch + \"', got '\" + peeked + \"'\");\n\t\t}\n\n\t\tthis.consume();\n\t}\n\n\tmaybeSkip(ch) {\n\t\tif (this.peek() == ch) {\n\t\t\tthis.consume();\n\t\t}\n\t}\n\n\terror(msg) {\n\t\tthrow new ParseError(msg, this.index);\n\t}\n}\n\nexport function parse(str) {\n\tlet r = new StringReader(str);\n\tlet stringTable = parseStringTable(r);\n\tr.skip(';');\n\tlet objectShapeTable = parseObjectShapeTable(r, stringTable);\n\tr.skip(';');\n\treturn parseValue(r, stringTable, objectShapeTable);\n}\n\nfunction parseStringTable(r) {\n\tif (r.peek() == ';') {\n\t\treturn [];\n\t}\n\n\tlet strings = [];\n\twhile (true) {\n\t\tstrings.push(parseString(r));\n\t\tlet ch = r.peek();\n\t\tif (ch == ';') {\n\t\t\treturn strings;\n\t\t} else if (ch == ',') {\n\t\t\tr.consume();\n\t\t}\n\t}\n}\n\nfunction parseString(r) {\n\tif (r.peek() == '\"') {\n\t\treturn parseJsonString(r);\n\t} else if (/[a-zA-Z0-9]/.test(r.peek())) {\n\t\treturn parsePlainString(r);\n\t} else {\n\t\tr.error(\"Expected plain string or JSON string\");\n\t}\n}\n\nfunction parsePlainString(r) {\n\tlet str = r.peek();\n\tr.consume();\n\tlet ch;\n\twhile (true) {\n\t\tch = r.peek();\n\t\tif (!/[a-zA-Z0-9]/.test(ch)) {\n\t\t\treturn str;\n\t\t}\n\n\t\tstr += ch;\n\t\tr.consume();\n\t}\n}\n\nfunction parseJsonString(r) {\n\tlet start = r.index;\n\tr.skip('\"');\n\twhile (true) {\n\t\tlet ch = r.peek();\n\t\tr.consume();\n\t\tif (ch == '\"') {\n\t\t\tbreak;\n\t\t} else if (ch == '\\\\') {\n\t\t\tr.consume();\n\t\t} else if (ch == null) {\n\t\t\tr.error(\"Unexpected EOF\");\n\t\t}\n\t}\n\n\treturn JSON.parse(r.str.substring(start, r.index));\n}\n\nfunction parseObjectShapeTable(r, stringTable) {\n\tif (r.peek() == ';') {\n\t\treturn [];\n\t}\n\n\tlet shapes = [];\n\twhile (true) {\n\t\tshapes.push(parseObjectShape(r, stringTable));\n\t\tlet ch = r.peek();\n\t\tif (ch == ';') {\n\t\t\treturn shapes;\n\t\t} else if (ch == ',') {\n\t\t\tr.consume();\n\t\t}\n\t}\n}\n\nfunction parseObjectShape(r, stringTable) {\n\tlet shape = [];\n\twhile (true) {\n\t\tshape.push(parseObjectKey(r, stringTable));\n\t\tlet ch = r.peek();\n\t\tif (ch == ',' || ch == ';') {\n\t\t\treturn shape;\n\t\t} else if (ch == ':') {\n\t\t\tr.consume();\n\t\t}\n\t}\n}\n\nfunction parseObjectKey(r, stringTable) {\n\tif (r.peek() == '\"') {\n\t\treturn parseJsonString(r);\n\t} else {\n\t\tlet id = parseBase62(r);\n\t\tif (id >= stringTable.length) {\n\t\t\tr.error(\"String ID \" + id + \" out of range\");\n\t\t}\n\t\treturn stringTable[id];\n\t}\n}\n\nfunction parseBase62(r) {\n\tif (!/[0-9a-zA-Z]/.test(r.peek())) {\n\t\tr.error(\"Expected base62 value\");\n\t}\n\n\tlet num = 0;\n\twhile (true) {\n\t\tnum *= 62;\n\t\tnum += b62alphanum[r.peek()];\n\t\tr.consume();\n\t\tif (!/[0-9a-zA-Z]/.test(r.peek())) {\n\t\t\treturn num;\n\t\t}\n\t}\n}\n\nfunction parseValue(r, stringTable, objectShapeTable) {\n\tlet ch = r.peek();\n\tif (ch == '[') {\n\t\treturn parseArrayValue(r, stringTable, objectShapeTable);\n\t} else if (ch == '(') {\n\t\treturn parseShapedObjectValue(r, stringTable, objectShapeTable);\n\t} else if (ch == '{') {\n\t\treturn parseKeyedObjectValue(r, stringTable, objectShapeTable);\n\t} else if (/[iIf0-9\\-]/.test(ch)) {\n\t\treturn parseNumberValue(r);\n\t} else if (ch == 's' || ch == '\"') {\n\t\treturn parseStringValue(r, stringTable);\n\t} else if (ch == 'b') {\n\t\tr.consume();\n\t\treturn true;\n\t} else if (ch == 'B') {\n\t\tr.consume();\n\t\treturn false;\n\t} else if (ch == 'n') {\n\t\tr.consume();\n\t\treturn null;\n\t} else {\n\t\tr.error(\"Expected value, got '\" + ch + \"'\");\n\t}\n}\n\nfunction parseArrayValue(r, stringTable, objectShapeTable) {\n\tr.skip('[');\n\tif (r.peek() == ']') {\n\t\tr.consume();\n\t\treturn [];\n\t}\n\n\tlet arr = [];\n\twhile (true) {\n\t\tarr.push(parseValue(r, stringTable, objectShapeTable));\n\t\tlet ch = r.peek();\n\t\tif (ch == ']') {\n\t\t\tr.consume();\n\t\t\treturn arr;\n\t\t} else if (ch == ',') {\n\t\t\tr.consume();\n\t\t}\n\t}\n}\n\nfunction parseShapedObjectValue(r, stringTable, objectShapeTable) {\n\tr.skip('(');\n\tlet shapeId = parseBase62(r);\n\tif (shapeId >= objectShapeTable.length) {\n\t\tr.error(\"Shape ID \" + shapeId + \" out of range\");\n\t}\n\n\tlet shape = objectShapeTable[shapeId];\n\tlet obj = {};\n\tfor (let key of shape) {\n\t\tif (r.peek() == ',') {\n\t\t\tr.consume();\n\t\t}\n\t\tobj[key] = parseValue(r, stringTable, objectShapeTable);\n\t}\n\n\tr.skip(')');\n\treturn obj;\n}\n\nfunction parseKeyedObjectValue(r, stringTable, objectShapeTable) {\n\tr.skip('{');\n\tif (r.peek() == '}') {\n\t\tr.consume();\n\t\treturn {};\n\t}\n\n\tlet obj = {};\n\twhile (true) {\n\t\tlet key = parseObjectKey(r, stringTable);\n\t\tif (r.peek() == ':') {\n\t\t\tr.consume();\n\t\t}\n\n\t\tobj[key] = parseValue(r, stringTable, objectShapeTable);\n\t\tlet ch = r.peek();\n\t\tif (ch == ',') {\n\t\t\tr.consume();\n\t\t} else if (ch == '}') {\n\t\t\tr.consume();\n\t\t\treturn obj;\n\t\t}\n\t}\n}\n\nfunction parseNumberValue(r) {\n\tlet ch = r.peek();\n\tif (ch == 'i') {\n\t\tr.consume();\n\t\treturn parseBase62(r);\n\t} else if (ch == 'I') {\n\t\tr.consume();\n\t\treturn -parseBase62(r);\n\t} else {\n\t\treturn parseFloatValue(r);\n\t}\n}\n\nfunction parseFloatValue(r) {\n\t// Here, we read the float, but then use JavaScript's float parser,\n\t// because making a float parser and serializer pair\n\t// which can round-trip any number is apparently pretty hard\n\n\tlet str = \"\";\n\tlet ch;\n\n\tif ((ch = r.peek()) == '-') {\n\t\tstr += ch;\n\t\tr.consume();\n\t}\n\n\twhile (/[0-9]/.test(ch = r.peek())) {\n\t\tstr += ch;\n\t\tr.consume();\n\t}\n\n\tif (str == \"\" || str == \"-\") {\n\t\tr.error(\"Zero-length number in float literal\");\n\t}\n\n\tif ((ch = r.peek()) == '.') {\n\t\tstr += ch;\n\t\tr.consume();\n\n\t\twhile (/[0-9]/.test(ch = r.peek())) {\n\t\t\tstr += ch;\n\t\t\tr.consume();\n\t\t}\n\n\t\tif (str[str.length - 1] == '.') {\n\t\t\tr.error(\"Zero-length fractional part in float literal\");\n\t\t}\n\t}\n\n\tch = r.peek();\n\tif (ch == 'e' || ch == 'E') {\n\t\tstr += ch;\n\t\tr.consume();\n\n\t\tch = r.peek();\n\t\tif (ch == '+' || ch == '-') {\n\t\t\tstr += ch;\n\t\t\tr.consume();\n\t\t}\n\n\t\twhile (/[0-9]/.test(ch = r.peek())) {\n\t\t\tstr += ch;\n\t\t\tr.consume();\n\t\t}\n\n\t\tif (!/[0-9]/.test(str[str.length - 1])) {\n\t\t\tr.error(\"Zero-length exponential part in float literal\");\n\t\t}\n\t}\n\n\treturn parseFloat(str);\n}\n\nfunction parseStringValue(r, stringTable) {\n\tif (r.peek() == '\"') {\n\t\treturn parseJsonString(r);\n\t} else {\n\t\tr.skip('s');\n\t\tlet id = parseBase62(r);\n\t\tif (id >= stringTable.length) {\n\t\t\tr.error(\"String ID \" + id + \" out of range\");\n\t\t}\n\n\t\treturn stringTable[id];\n\t}\n}\n"
  },
  {
    "path": "implementations/javascript/package.json",
    "content": "{\n  \"name\": \"jcof\",\n  \"version\": \"1.0.2\",\n  \"description\": \"JavaScript implementation of JCOF\",\n  \"main\": \"jcof.js\",\n  \"type\": \"module\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/mortie/jcof.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/mortie/jcof/issues\"\n  },\n  \"homepage\": \"https://github.com/mortie/jcof#readme\",\n  \"author\": \"Martin Dørum\",\n  \"license\": \"ISC\"\n}\n"
  },
  {
    "path": "jcof.bnf",
    "content": "grammar ::= string-table ';' object-shape-table ';' value\n\nstring-table ::= (string (','? string)*)?\nstring ::= plain-string | json-string\nplain-string ::= [a-zA-Z0-9]+\njson-string ::= [https://datatracker.ietf.org/doc/html/rfc8259#section-7]\n\nobject-shape-table ::= (object-shape (',' object-shape)*)?\nobject-shape ::= object-key (':'? object-key)*\nobject-key ::= base62 | json-string\nbase62 ::= [0-9a-zA-Z]+\n\nvalue ::=\n  array-value |\n  object-value |\n  number-value |\n  string-value |\n  bool-value |\n  null-value\n\narray-value ::= '[' (value (','? value)*)? ']'\nobject-value ::= shaped-object-value | keyed-object-value\nshaped-object-value ::= '(' base62 (','? value)* ')'\nkeyed-object-value ::= '{' (key-value-pair (','? key-value-pair)*)? '}'\nkey-value-pair ::= object-key ':'? value\nnumber-value ::= 'i' base62 | 'I' base62 | float-value\nfloat-value ::= '-'? [0-9]+ ('.' [0-9]+)? (('e' | 'E') ('-' | '+')? [0-9]+)?\nstring-value ::= 's' base62 | json-string\nbool-value ::= 'b' | 'B'\nnull-value ::= 'n'\n"
  },
  {
    "path": "tests/.gitignore",
    "content": "/output\n"
  },
  {
    "path": "tests/Makefile",
    "content": ".PHONY: check\ncheck:\n\tnode test.js\n"
  },
  {
    "path": "tests/corpus/circuitsim.json",
    "content": "{\"links\":[{\"fromNodeId\":0,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":2,\"index\":0,\"path\":[]},{\"nodeId\":4,\"index\":0,\"path\":[]}]},{\"fromNodeId\":1,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":2,\"index\":0,\"path\":[]},{\"nodeId\":3,\"index\":0,\"path\":[]}]},{\"fromNodeId\":2,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":3,\"index\":0,\"path\":[]},{\"nodeId\":4,\"index\":0,\"path\":[]},{\"nodeId\":12,\"index\":0,\"path\":[[0,0]]}]},{\"fromNodeId\":3,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":6,\"index\":0,\"path\":[]}]},{\"fromNodeId\":4,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":6,\"index\":0,\"path\":[]}]},{\"fromNodeId\":5,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":7,\"index\":0,\"path\":[]},{\"nodeId\":8,\"index\":0,\"path\":[]}]},{\"fromNodeId\":6,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":7,\"index\":0,\"path\":[]},{\"nodeId\":9,\"index\":0,\"path\":[]}]},{\"fromNodeId\":7,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":8,\"index\":0,\"path\":[]},{\"nodeId\":9,\"index\":0,\"path\":[]},{\"nodeId\":12,\"index\":0,\"path\":[[17,-1],[1,-1]]}]},{\"fromNodeId\":8,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":14,\"index\":0,\"path\":[]}]},{\"fromNodeId\":9,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":14,\"index\":0,\"path\":[]}]},{\"fromNodeId\":10,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":0,\"index\":0,\"path\":[]}]},{\"fromNodeId\":11,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":1,\"index\":0,\"path\":[]}]},{\"fromNodeId\":12,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":15,\"index\":0,\"path\":[[8,0]]}]},{\"fromNodeId\":13,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":5,\"index\":0,\"path\":[]}]},{\"fromNodeId\":15,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":17,\"index\":0,\"path\":[]},{\"nodeId\":18,\"index\":0,\"path\":[]}]},{\"fromNodeId\":16,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":17,\"index\":0,\"path\":[]},{\"nodeId\":19,\"index\":0,\"path\":[]}]},{\"fromNodeId\":17,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":18,\"index\":0,\"path\":[]},{\"nodeId\":19,\"index\":0,\"path\":[]},{\"nodeId\":28,\"index\":0,\"path\":[[17,5],[1,5]]}]},{\"fromNodeId\":18,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":20,\"index\":0,\"path\":[]}]},{\"fromNodeId\":19,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":20,\"index\":0,\"path\":[]}]},{\"fromNodeId\":21,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":16,\"index\":0,\"path\":[]}]},{\"fromNodeId\":22,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":16,\"index\":0,\"path\":[]}]},{\"fromNodeId\":23,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":22,\"index\":0,\"path\":[]},{\"nodeId\":21,\"index\":0,\"path\":[]},{\"nodeId\":28,\"index\":0,\"path\":[[0,6]]}]},{\"fromNodeId\":24,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":21,\"index\":0,\"path\":[]},{\"nodeId\":23,\"index\":0,\"path\":[]}]},{\"fromNodeId\":25,\"index\":0,\"currentState\":true,\"nextState\":true,\"connections\":[{\"nodeId\":22,\"index\":0,\"path\":[]},{\"nodeId\":23,\"index\":0,\"path\":[]}]},{\"fromNodeId\":26,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":24,\"index\":0,\"path\":[]}]},{\"fromNodeId\":27,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[{\"nodeId\":25,\"index\":0,\"path\":[]}]},{\"fromNodeId\":28,\"index\":0,\"currentState\":false,\"nextState\":false,\"connections\":[]}],\"nodes\":[{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":-9,\"y\":-2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[10]}],\"outputs\":[{\"linkId\":0}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":-9,\"y\":-4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[11]}],\"outputs\":[{\"linkId\":1}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":-4,\"y\":-3,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[0,1]}],\"outputs\":[{\"linkId\":2}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":1,\"y\":-4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[2,1]}],\"outputs\":[{\"linkId\":3}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":1,\"y\":-2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[2,0]}],\"outputs\":[{\"linkId\":4}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":8,\"y\":-4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[13]}],\"outputs\":[{\"linkId\":5}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":8,\"y\":-2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[4,3]}],\"outputs\":[{\"linkId\":6}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":13,\"y\":-3,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[6,5]}],\"outputs\":[{\"linkId\":7}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":18,\"y\":-4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[7,5]}],\"outputs\":[{\"linkId\":8}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":18,\"y\":-2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[7,6]}],\"outputs\":[{\"linkId\":9}],\"meta\":null},{\"className\":\"SwitchComponent\",\"name\":\"OFF\",\"protected\":false,\"x\":-14,\"y\":-2,\"width\":3,\"height\":1,\"inputs\":[],\"outputs\":[{\"linkId\":10}],\"meta\":null},{\"className\":\"SwitchComponent\",\"name\":\"OFF\",\"protected\":false,\"x\":-14,\"y\":-4,\"width\":3,\"height\":1,\"inputs\":[],\"outputs\":[{\"linkId\":11}],\"meta\":null},{\"className\":\"DiodeComponent\",\"name\":\"DIODE\",\"protected\":false,\"x\":1,\"y\":0,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[2,7]}],\"outputs\":[{\"linkId\":12}],\"meta\":null},{\"className\":\"SwitchComponent\",\"name\":\"OFF\",\"protected\":false,\"x\":5,\"y\":-7,\"width\":3,\"height\":1,\"inputs\":[],\"outputs\":[{\"linkId\":13}],\"meta\":null},{\"className\":\"LampComponent\",\"name\":\"LAMP\",\"protected\":false,\"x\":23,\"y\":-3,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[8,9]}],\"outputs\":[],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":8,\"y\":2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[12]}],\"outputs\":[{\"linkId\":14}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":8,\"y\":4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[19,20]}],\"outputs\":[{\"linkId\":15}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":13,\"y\":3,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[14,15]}],\"outputs\":[{\"linkId\":16}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":18,\"y\":2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[16,14]}],\"outputs\":[{\"linkId\":17}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":18,\"y\":4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[16,15]}],\"outputs\":[{\"linkId\":18}],\"meta\":null},{\"className\":\"LampComponent\",\"name\":\"LAMP\",\"protected\":false,\"x\":23,\"y\":3,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[17,18]}],\"outputs\":[],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":1,\"y\":2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[22,21]}],\"outputs\":[{\"linkId\":19}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":1,\"y\":4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[23,21]}],\"outputs\":[{\"linkId\":20}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":-4,\"y\":3,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[22,23]}],\"outputs\":[{\"linkId\":21}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":-9,\"y\":2,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[24]}],\"outputs\":[{\"linkId\":22}],\"meta\":null},{\"className\":\"NotGateComponent\",\"name\":\"NOT\",\"protected\":false,\"x\":-9,\"y\":4,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[25]}],\"outputs\":[{\"linkId\":23}],\"meta\":null},{\"className\":\"SwitchComponent\",\"name\":\"OFF\",\"protected\":false,\"x\":-14,\"y\":2,\"width\":3,\"height\":1,\"inputs\":[],\"outputs\":[{\"linkId\":24}],\"meta\":null},{\"className\":\"SwitchComponent\",\"name\":\"OFF\",\"protected\":false,\"x\":-14,\"y\":4,\"width\":3,\"height\":1,\"inputs\":[],\"outputs\":[{\"linkId\":25}],\"meta\":null},{\"className\":\"DiodeComponent\",\"name\":\"DIODE\",\"protected\":false,\"x\":1,\"y\":6,\"width\":4,\"height\":1,\"inputs\":[{\"links\":[16,21]}],\"outputs\":[{\"linkId\":26}],\"meta\":null}]}"
  },
  {
    "path": "tests/corpus/comets.json",
    "content": "{\n  \"meta\" : {\n    \"view\" : {\n      \"id\" : \"7qz6-zrqt\",\n      \"name\" : \"WISE NEA/COMET DISCOVERY STATISTICS\",\n      \"assetType\" : \"dataset\",\n      \"attribution\" : \"Near Earth Object Program\",\n      \"attributionLink\" : \"http://neo.jpl.nasa.gov/stats/wise/\",\n      \"averageRating\" : 0,\n      \"category\" : \"Space Science\",\n      \"createdAt\" : 1427992829,\n      \"description\" : \"These tables show discovery statistics for NEAs and comets discovered by NASA's WISE mission - now renamed to NEOWISE. The first small table shows the number of NEAs, PHAs (a sub-group of NEAs), and comets discovered to-date (within a day or two). The second table shows each object discovered, sorted by designation, with selected parameters describing the object's orbit.\\r\\n\\r\\nhttp://neo.jpl.nasa.gov/stats/wise/\",\n      \"displayType\" : \"table\",\n      \"downloadCount\" : 2998,\n      \"hideFromCatalog\" : false,\n      \"hideFromDataJson\" : false,\n      \"indexUpdatedAt\" : 1530128932,\n      \"newBackend\" : true,\n      \"numberOfComments\" : 0,\n      \"oid\" : 12393317,\n      \"provenance\" : \"official\",\n      \"publicationAppendEnabled\" : false,\n      \"publicationDate\" : 1437412744,\n      \"publicationGroup\" : 2592697,\n      \"publicationStage\" : \"published\",\n      \"rowClass\" : \"\",\n      \"rowsUpdatedAt\" : 1437412714,\n      \"rowsUpdatedBy\" : \"a6xx-j6mr\",\n      \"tableId\" : 3653577,\n      \"totalTimesRated\" : 0,\n      \"viewCount\" : 4438,\n      \"viewLastModified\" : 1530128705,\n      \"viewType\" : \"tabular\",\n      \"approvals\" : [ {\n        \"reviewedAt\" : 1437412744,\n        \"reviewedAutomatically\" : true,\n        \"state\" : \"approved\",\n        \"submissionId\" : 650285,\n        \"submissionObject\" : \"public_audience_request\",\n        \"submissionOutcome\" : \"change_audience\",\n        \"submittedAt\" : 1437412744,\n        \"workflowId\" : 2019,\n        \"submissionDetails\" : {\n          \"permissionType\" : \"READ\"\n        },\n        \"submissionOutcomeApplication\" : {\n          \"failureCount\" : 0,\n          \"status\" : \"success\"\n        },\n        \"submitter\" : {\n          \"id\" : \"isxt-qkkm\",\n          \"displayName\" : \"NASA Public Data\"\n        }\n      } ],\n      \"clientContext\" : {\n        \"clientContextVariables\" : [ ],\n        \"inheritedVariables\" : { }\n      },\n      \"columns\" : [ {\n        \"id\" : -1,\n        \"name\" : \"sid\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":sid\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"id\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":id\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"position\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":position\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"created_at\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":created_at\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"created_meta\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":created_meta\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"updated_at\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":updated_at\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"updated_meta\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":updated_meta\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : -1,\n        \"name\" : \"meta\",\n        \"dataTypeName\" : \"meta_data\",\n        \"fieldName\" : \":meta\",\n        \"position\" : 0,\n        \"renderTypeName\" : \"meta_data\",\n        \"format\" : { },\n        \"flags\" : [ \"hidden\" ]\n      }, {\n        \"id\" : 213858267,\n        \"name\" : \"Designation\",\n        \"dataTypeName\" : \"text\",\n        \"fieldName\" : \"designation\",\n        \"position\" : 2,\n        \"renderTypeName\" : \"text\",\n        \"tableColumnId\" : 27309082,\n        \"width\" : 232,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"largest\" : \"P/2014 L2 (NEOWISE)\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"C/2010 FB87 (WISE-Garradd)\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"(2010 FJ81)\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"(2010 FH81)\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"(2010 FG81)\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"(2010 FC81)\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"(2010 FB81)\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"(2010 FA81)\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"(2010 FZ80)\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"(2010 FY80)\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"(2010 FX80)\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"(2010 EX119)\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"(2010 EN44)\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"(2010 EX11)\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"C/2010 E3 (WISE)\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"(2010 DJ77)\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"(2010 DH77)\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"(2010 DG77)\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"(2010 DM56)\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"(2010 DJ56)\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"(2010 DH56)\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"(2010 AB78)\"\n        },\n        \"format\" : { }\n      }, {\n        \"id\" : 213858268,\n        \"name\" : \"Discovery Date YYYY-MM-DD\",\n        \"dataTypeName\" : \"calendar_date\",\n        \"fieldName\" : \"discovery_date\",\n        \"position\" : 3,\n        \"renderTypeName\" : \"calendar_date\",\n        \"tableColumnId\" : 27309083,\n        \"width\" : 268,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"largest\" : \"2015-04-17T00:00:00\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"2010-06-23T00:00:00\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"2010-06-14T00:00:00\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"2010-06-02T00:00:00\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"2010-05-11T00:00:00\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"2010-05-10T00:00:00\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"2010-04-25T00:00:00\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"2010-04-20T00:00:00\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"2010-04-14T00:00:00\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"2010-04-10T00:00:00\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"2010-03-28T00:00:00\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"2010-03-31T00:00:00\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"2010-03-30T00:00:00\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"2010-02-20T00:00:00\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"2010-02-19T00:00:00\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"2010-02-23T00:00:00\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"2010-02-18T00:00:00\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"2010-02-16T00:00:00\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"2010-02-28T00:00:00\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"2010-02-26T00:00:00\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"2010-02-25T00:00:00\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"2010-01-12T00:00:00\"\n        },\n        \"format\" : {\n          \"view\" : \"date\",\n          \"align\" : \"left\"\n        }\n      }, {\n        \"id\" : 213858295,\n        \"name\" : \"H (mag)\",\n        \"dataTypeName\" : \"number\",\n        \"fieldName\" : \"h_mag\",\n        \"position\" : 4,\n        \"renderTypeName\" : \"number\",\n        \"tableColumnId\" : 27309084,\n        \"width\" : 172,\n        \"cachedContents\" : {\n          \"non_null\" : 181,\n          \"average\" : \"20.31049723756906\",\n          \"largest\" : \"24.3\",\n          \"null\" : 21,\n          \"top\" : [ {\n            \"item\" : \"19.7\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"20.5\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"19.5\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"19.3\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"21.1\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"21.2\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"20.1\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"20\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"21.6\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"20.4\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"21.3\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"21.4\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"22.5\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"17.2\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"18.7\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"20.9\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"20.7\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"20.2\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"19.6\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"19.2\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"15.6\",\n          \"sum\" : \"3676.2\"\n        },\n        \"format\" : {\n          \"align\" : \"right\"\n        }\n      }, {\n        \"id\" : 213858270,\n        \"name\" : \"MOID (AU)\",\n        \"dataTypeName\" : \"number\",\n        \"fieldName\" : \"moid_au\",\n        \"position\" : 5,\n        \"renderTypeName\" : \"number\",\n        \"tableColumnId\" : 27309085,\n        \"width\" : 196,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"average\" : \"0.3305405940594059\",\n          \"largest\" : \"6.373\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"2.538\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"0.128\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"0.034\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"0.019\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"0.027\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"0.096\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"0.035\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"0.297\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"0.14\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"0.535\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"0.159\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"0.023\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"0.029\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"1.546\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"0.05\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"0.146\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"0.009\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"0.006\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"0.028\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"0.333\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"0.0002\",\n          \"sum\" : \"66.7692\"\n        },\n        \"format\" : {\n          \"precisionStyle\" : \"standard\",\n          \"noCommas\" : \"false\",\n          \"align\" : \"right\"\n        }\n      }, {\n        \"id\" : 213858271,\n        \"name\" : \"q (AU)\",\n        \"dataTypeName\" : \"number\",\n        \"fieldName\" : \"q_au_1\",\n        \"position\" : 6,\n        \"renderTypeName\" : \"number\",\n        \"tableColumnId\" : 27309086,\n        \"width\" : 160,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"average\" : \"1.063514851485149\",\n          \"largest\" : \"7.15\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"0.97\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"1.13\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"1.04\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"1.1\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"1.05\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"0.51\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"0.99\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"0.33\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"0.87\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"1.01\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"0.95\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"0.96\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"0.92\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"0.94\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"1.59\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"0.65\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"0.98\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"7.15\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"4.25\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"3.66\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"0.14\",\n          \"sum\" : \"214.83\"\n        },\n        \"format\" : {\n          \"precisionStyle\" : \"standard\",\n          \"noCommas\" : \"false\",\n          \"align\" : \"right\"\n        }\n      }, {\n        \"id\" : 213858299,\n        \"name\" : \"Q (AU)\",\n        \"dataTypeName\" : \"number\",\n        \"fieldName\" : \"q_au_2\",\n        \"position\" : 7,\n        \"renderTypeName\" : \"number\",\n        \"tableColumnId\" : 27309087,\n        \"width\" : 160,\n        \"cachedContents\" : {\n          \"non_null\" : 200,\n          \"average\" : \"235.3495\",\n          \"largest\" : \"23255.11\",\n          \"null\" : 2,\n          \"top\" : [ {\n            \"item\" : \"1.59\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"2\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"2.31\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"4.35\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"4.14\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"1.38\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"4.8\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"3.15\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"3.04\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"1.33\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"1.06\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"1.16\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"5.58\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"3.22\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"1.69\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"1.56\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"3.51\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"133.48\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"4.83\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"4.74\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"1.04\",\n          \"sum\" : \"47069.90\"\n        },\n        \"format\" : {\n          \"align\" : \"right\"\n        }\n      }, {\n        \"id\" : 213858300,\n        \"name\" : \"period (yr)\",\n        \"dataTypeName\" : \"number\",\n        \"fieldName\" : \"period_yr\",\n        \"position\" : 8,\n        \"renderTypeName\" : \"number\",\n        \"tableColumnId\" : 27309088,\n        \"width\" : 220,\n        \"cachedContents\" : {\n          \"non_null\" : 200,\n          \"average\" : \"10723.7349\",\n          \"largest\" : \"1254179.62\",\n          \"null\" : 2,\n          \"top\" : [ {\n            \"item\" : \"3.42\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"4.59\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"2.14\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"4.38\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"4.14\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"1.31\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"4.56\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"4.42\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"3.19\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"2.63\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"1.22\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"0.93\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"5.9\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"3.02\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"1.49\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"1.4\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"3.35\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"555.03\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"4.54\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"4.85\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"0.72\",\n          \"sum\" : \"2144746.98\"\n        },\n        \"format\" : {\n          \"align\" : \"right\"\n        }\n      }, {\n        \"id\" : 213858274,\n        \"name\" : \"i (deg)\",\n        \"dataTypeName\" : \"number\",\n        \"fieldName\" : \"i_deg\",\n        \"position\" : 9,\n        \"renderTypeName\" : \"number\",\n        \"tableColumnId\" : 27309089,\n        \"width\" : 172,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"average\" : \"29.38277227722772\",\n          \"largest\" : \"162.3\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"21.66\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"42.54\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"16.79\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"7.97\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"1.68\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"9.48\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"15.48\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"27.34\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"18.81\",\n            \"count\" : 12\n          }, {\n            \"item\" : \"36.96\",\n            \"count\" : 11\n          }, {\n            \"item\" : \"15.57\",\n            \"count\" : 10\n          }, {\n            \"item\" : \"10.18\",\n            \"count\" : 9\n          }, {\n            \"item\" : \"9.75\",\n            \"count\" : 8\n          }, {\n            \"item\" : \"96.48\",\n            \"count\" : 7\n          }, {\n            \"item\" : \"24.98\",\n            \"count\" : 6\n          }, {\n            \"item\" : \"34.38\",\n            \"count\" : 5\n          }, {\n            \"item\" : \"14.81\",\n            \"count\" : 4\n          }, {\n            \"item\" : \"25.61\",\n            \"count\" : 3\n          }, {\n            \"item\" : \"34.84\",\n            \"count\" : 2\n          }, {\n            \"item\" : \"33.67\",\n            \"count\" : 1\n          } ],\n          \"smallest\" : \"0.82\",\n          \"sum\" : \"5935.32\"\n        },\n        \"format\" : {\n          \"precisionStyle\" : \"standard\",\n          \"noCommas\" : \"false\",\n          \"align\" : \"right\"\n        }\n      }, {\n        \"id\" : 213858275,\n        \"name\" : \"PHA\",\n        \"dataTypeName\" : \"text\",\n        \"fieldName\" : \"pha\",\n        \"position\" : 10,\n        \"renderTypeName\" : \"text\",\n        \"tableColumnId\" : 27309090,\n        \"width\" : 136,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"largest\" : \"Y\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"Y\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"N\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"n/a\",\n            \"count\" : 18\n          } ],\n          \"smallest\" : \"N\"\n        },\n        \"format\" : { }\n      }, {\n        \"id\" : 213858276,\n        \"name\" : \"Orbit Class\",\n        \"dataTypeName\" : \"text\",\n        \"fieldName\" : \"orbit_class\",\n        \"position\" : 11,\n        \"renderTypeName\" : \"text\",\n        \"tableColumnId\" : 27309091,\n        \"width\" : 232,\n        \"cachedContents\" : {\n          \"non_null\" : 202,\n          \"largest\" : \"Parabolic Comet\",\n          \"null\" : 0,\n          \"top\" : [ {\n            \"item\" : \"Apollo\",\n            \"count\" : 20\n          }, {\n            \"item\" : \"Amor\",\n            \"count\" : 19\n          }, {\n            \"item\" : \"Aten\",\n            \"count\" : 18\n          }, {\n            \"item\" : \"Comet\",\n            \"count\" : 17\n          }, {\n            \"item\" : \"Jupiter-family Comet\",\n            \"count\" : 16\n          }, {\n            \"item\" : \"Halley-type Comet*\",\n            \"count\" : 15\n          }, {\n            \"item\" : \"Parabolic Comet\",\n            \"count\" : 14\n          }, {\n            \"item\" : \"Jupiter-family Comet*\",\n            \"count\" : 13\n          }, {\n            \"item\" : \"Encke-type Comet\",\n            \"count\" : 12\n          } ],\n          \"smallest\" : \"Amor\"\n        },\n        \"format\" : { }\n      } ],\n      \"grants\" : [ {\n        \"inherited\" : false,\n        \"type\" : \"viewer\",\n        \"flags\" : [ \"public\" ]\n      } ],\n      \"metadata\" : {\n        \"rdfSubject\" : \"0\",\n        \"rdfClass\" : \"\",\n        \"custom_fields\" : {\n          \"Common Core\" : {\n            \"Contact Name\" : \"Alan Chamberlin\",\n            \"Program Code\" : \"026:009\",\n            \"Publisher\" : \"Alan Chamberlin\",\n            \"Bureau Code\" : \"026:00\"\n          }\n        },\n        \"rowIdentifier\" : \"0\",\n        \"rowLabel\" : \"NEA/Comets\",\n        \"availableDisplayTypes\" : [ \"table\", \"fatrow\", \"page\" ],\n        \"renderTypeConfig\" : {\n          \"visible\" : {\n            \"table\" : true\n          }\n        }\n      },\n      \"owner\" : {\n        \"id\" : \"isxt-qkkm\",\n        \"displayName\" : \"NASA Public Data\",\n        \"profileImageUrlLarge\" : \"/api/users/isxt-qkkm/profile_images/LARGE\",\n        \"profileImageUrlMedium\" : \"/api/users/isxt-qkkm/profile_images/THUMB\",\n        \"profileImageUrlSmall\" : \"/api/users/isxt-qkkm/profile_images/TINY\",\n        \"screenName\" : \"NASA Public Data\",\n        \"type\" : \"interactive\"\n      },\n      \"query\" : { },\n      \"rights\" : [ \"read\" ],\n      \"tableAuthor\" : {\n        \"id\" : \"isxt-qkkm\",\n        \"displayName\" : \"NASA Public Data\",\n        \"profileImageUrlLarge\" : \"/api/users/isxt-qkkm/profile_images/LARGE\",\n        \"profileImageUrlMedium\" : \"/api/users/isxt-qkkm/profile_images/THUMB\",\n        \"profileImageUrlSmall\" : \"/api/users/isxt-qkkm/profile_images/TINY\",\n        \"screenName\" : \"NASA Public Data\",\n        \"type\" : \"interactive\"\n      },\n      \"tags\" : [ \"spaceapps\", \"outerspace\", \"airburstvisual\", \"intermediate\", \"model\", \"platform\", \"data visualization\" ],\n      \"flags\" : [ \"default\", \"ownerMayBeContacted\", \"restorable\", \"restorePossibleForType\" ]\n    }\n  },\n  \"data\" : [ [ \"row-knwe-cgky-3gny\", \"00000000-0000-0000-13E6-2F630E85EFA2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"419880 (2011 AH37)\", \"2011-01-07T00:00:00\", \"19.7\", \"0.035\", \"0.84\", \"4.26\", \"4.06\", \"9.65\", \"Y\", \"Apollo\" ]\n, [ \"row-qpkz-igbm.5f3k\", \"00000000-0000-0000-A8EB-88278E63B3E9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"419624 (2010 SO16)\", \"2010-09-17T00:00:00\", \"20.5\", \"0.028\", \"0.93\", \"1.08\", \"1\", \"14.52\", \"Y\", \"Apollo\" ]\n, [ \"row-frhb_jfki_8js8\", \"00000000-0000-0000-6F10-A4468F7168E2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"414772 (2010 OC103)\", \"2010-07-28T00:00:00\", \"19\", \"0.333\", \"0.39\", \"2\", \"1.31\", \"23.11\", \"N\", \"Apollo\" ]\n, [ \"row-t9wv-tb32.bnxc\", \"00000000-0000-0000-5F06-118B8BE22225\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"414746 (2010 EH20)\", \"2010-03-06T00:00:00\", \"18\", \"0.268\", \"1.25\", \"3.99\", \"4.24\", \"23.89\", \"N\", \"Amor\" ]\n, [ \"row-ynaj_wqdj.hnqn\", \"00000000-0000-0000-F043-F04FFF40617E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"407324 (2010 OB101)\", \"2010-07-18T00:00:00\", \"20.7\", \"0.111\", \"0.77\", \"2.46\", \"2.06\", \"9.12\", \"N\", \"Apollo\" ]\n, [ \"row-muj9_pnue_z3iz\", \"00000000-0000-0000-34FC-4E45C8242C4C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"398188 (2010 LE15)\", \"2010-06-03T00:00:00\", \"19.5\", \"0.024\", \"0.63\", \"1.1\", \"0.8\", \"13.25\", \"Y\", \"Aten\" ]\n, [ \"row-ryht_shq4-p7nb\", \"00000000-0000-0000-0A62-1D59972B7865\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"395207 (2010 HQ80)\", \"2010-04-25T00:00:00\", \"19.6\", \"0.007\", \"0.8\", \"2.34\", \"1.96\", \"27.85\", \"Y\", \"Apollo\" ]\n, [ \"row-jeny.sf4x.k98a\", \"00000000-0000-0000-3E9C-6C468C0BC86D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"386847 (2010 LR33)\", \"2010-06-06T00:00:00\", \"18\", \"0.029\", \"0.91\", \"2.48\", \"2.2\", \"5.84\", \"Y\", \"Apollo\" ]\n, [ \"row-f777_tvca~x496\", \"00000000-0000-0000-1AB9-5F5FD1C05A6D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"381989 (2010 HR80)\", \"2010-04-28T00:00:00\", \"19.9\", \"0.104\", \"0.68\", \"2.02\", \"1.56\", \"26.71\", \"N\", \"Apollo\" ]\n, [ \"row-8ia5_kt3c-rqba\", \"00000000-0000-0000-C981-6BBB41FB4C5A\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"369454 (2010 NZ1)\", \"2010-07-09T00:00:00\", \"19.4\", \"0.275\", \"0.49\", \"2.26\", \"1.61\", \"32.78\", \"N\", \"Apollo\" ]\n, [ \"row-6h5x-d5pw~4zmh\", \"00000000-0000-0000-F7D7-7195B09EC5CA\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"365449 (2010 NJ1)\", \"2010-07-03T00:00:00\", \"20.3\", \"0.155\", \"0.44\", \"1.49\", \"0.95\", \"11.23\", \"N\", \"Aten\" ]\n, [ \"row-9qu2~qxxc~5rkj\", \"00000000-0000-0000-D268-BE960363DA28\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"365424 (2010 KX7)\", \"2010-05-16T00:00:00\", \"21.9\", \"0.034\", \"0.82\", \"1.16\", \"0.98\", \"21.49\", \"Y\", \"Aten\" ]\n, [ \"row-j45w.dkcp.jvsn\", \"00000000-0000-0000-E01C-3DA864EAC97A\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"356394 (2010 QD2)\", \"2010-08-21T00:00:00\", \"17.4\", \"0.061\", \"0.43\", \"3.59\", \"2.85\", \"10.64\", \"N\", \"Apollo\" ]\n, [ \"row-bb72~itnb-fxqc\", \"00000000-0000-0000-16A4-7270A8549F47\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 HF11)\", \"2015-04-17T00:00:00\", \"19.2\", \"0.225\", \"1.22\", \"2.93\", \"2.99\", \"34.89\", \"N\", \"Amor\" ]\n, [ \"row-cht9~rexn~pe9y\", \"00000000-0000-0000-B414-156C52440974\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 GK50)\", \"2015-04-05T00:00:00\", \"20.5\", \"0.237\", \"1.03\", \"5.12\", \"5.39\", \"19.07\", \"N\", \"Amor\" ]\n, [ \"row-37p7-qgtd~9mjw\", \"00000000-0000-0000-5208-0930DA8070E4\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 GJ46)\", \"2015-04-11T00:00:00\", \"19.3\", \"0.238\", \"0.67\", \"5.06\", \"4.85\", \"18.22\", \"N\", \"Apollo\" ]\n, [ \"row-pxux-rxkr-s7qc\", \"00000000-0000-0000-9E1D-2CC0996A8058\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 FT344)\", \"2015-03-23T00:00:00\", \"20.5\", \"0.203\", \"1.09\", \"4.01\", \"4.07\", \"12.55\", \"N\", \"Amor\" ]\n, [ \"row-mmd3_g6cv~5e9a\", \"00000000-0000-0000-4B7C-FF9A8AC6D49A\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 FD341)\", \"2015-03-27T00:00:00\", \"18\", \"0.124\", \"0.31\", \"1.6\", \"0.93\", \"20.55\", \"N\", \"Aten\" ]\n, [ \"row-954p.rvgm_yrzf\", \"00000000-0000-0000-3BA8-E729F5653F01\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 FU332)\", \"2015-03-31T00:00:00\", \"17.3\", \"0.269\", \"0.67\", \"4.59\", \"4.27\", \"36.11\", \"N\", \"Apollo\" ]\n, [ \"row-9mtb-3iei-k4uq\", \"00000000-0000-0000-FD2C-18356812146D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 FE120)\", \"2015-03-23T00:00:00\", \"21.1\", \"0.013\", \"1.01\", \"3.49\", \"3.38\", \"22.8\", \"Y\", \"Apollo\" ]\n, [ \"row-9xn4.wuxs~fa6x\", \"00000000-0000-0000-C0D8-3F904C8FCA9E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 FY117)\", \"2015-03-20T00:00:00\", \"21.2\", \"0.15\", \"1.14\", \"2.9\", \"2.87\", \"24.33\", \"N\", \"Amor\" ]\n, [ \"row-94gm.q7v8_3zjs\", \"00000000-0000-0000-3161-386736781BE1\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 DX198)\", \"2015-02-17T00:00:00\", \"22.1\", \"0.074\", \"1.02\", \"2.25\", \"2.1\", \"11.05\", \"N\", \"Amor\" ]\n, [ \"row-5pe6~aw3m-6bwk\", \"00000000-0000-0000-E271-2CB52943D82A\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 BY516)\", \"2015-01-30T00:00:00\", \"22.3\", \"0.139\", \"0.97\", \"3.77\", \"3.66\", \"12.71\", \"N\", \"Apollo\" ]\n, [ \"row-bvr6-zcb5.e3jz\", \"00000000-0000-0000-C5E8-033BC5A8FEFF\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 AK280)\", \"2015-01-15T00:00:00\", \"21.8\", \"0.049\", \"0.79\", \"4.53\", \"4.33\", \"11.37\", \"Y\", \"Apollo\" ]\n, [ \"row-2xyu.dnrw~inuc\", \"00000000-0000-0000-B9C5-2D6684FF58B4\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 AY245)\", \"2015-01-14T00:00:00\", \"21.2\", \"0.019\", \"1\", \"1.25\", \"1.2\", \"13.59\", \"Y\", \"Apollo\" ]\n, [ \"row-yhzx_k58w~xqhf\", \"00000000-0000-0000-9136-114467647397\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2015 AC17)\", \"2015-01-03T00:00:00\", \"19.9\", \"0.238\", \"1.22\", \"3.29\", \"3.39\", \"29.25\", \"N\", \"Amor\" ]\n, [ \"row-n7pg~a38x.itgs\", \"00000000-0000-0000-6AAF-74049ABDA656\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 YR43)\", \"2014-12-26T00:00:00\", \"19.5\", \"0.303\", \"0.97\", \"4\", \"3.92\", \"26.46\", \"N\", \"Apollo\" ]\n, [ \"row-czvd-mmne_igi3\", \"00000000-0000-0000-E554-2900737D2BDF\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 YS14)\", \"2014-12-24T00:00:00\", \"21.1\", \"0.127\", \"0.84\", \"4.09\", \"3.87\", \"18.29\", \"N\", \"Apollo\" ]\n, [ \"row-jtwb~3wfd-29ry\", \"00000000-0000-0000-FCAA-211EEF985AFF\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 XX31)\", \"2014-12-11T00:00:00\", \"17.5\", \"0.475\", \"0.36\", \"5.28\", \"4.73\", \"35.78\", \"N\", \"Apollo\" ]\n, [ \"row-uptn-5z2i_be2n\", \"00000000-0000-0000-7E52-A425FCECA955\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 XX7)\", \"2014-12-10T00:00:00\", \"19.7\", \"0.183\", \"1.17\", \"4.64\", \"4.94\", \"36.71\", \"N\", \"Amor\" ]\n, [ \"row-vwfj-fjvb-b5jg\", \"00000000-0000-0000-7465-744D91AA65DE\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 XQ7)\", \"2014-12-06T00:00:00\", \"20.6\", \"0.312\", \"0.66\", \"4.65\", \"4.32\", \"31.05\", \"N\", \"Apollo\" ]\n, [ \"row-rw9h_mqcq~fa75\", \"00000000-0000-0000-C3D3-F1DCC6BDEB86\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 VP35)\", \"2014-11-14T00:00:00\", \"23.3\", \"0.026\", \"0.95\", \"1.98\", \"1.78\", \"9.17\", \"N\", \"Apollo\" ]\n, [ \"row-8pc5-5kum-pbmk\", \"00000000-0000-0000-C295-50965298AFA2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 UH210)\", \"2014-10-20T00:00:00\", \"21.1\", \"0.099\", \"0.89\", \"4.25\", \"4.11\", \"22.06\", \"N\", \"Apollo\" ]\n, [ \"row-s36s-7zds~tnwj\", \"00000000-0000-0000-CFFA-830F7926C074\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 UF206)\", \"2014-10-31T00:00:00\", \"18.8\", \"0.136\", \"1.11\", \"3.74\", \"3.78\", \"48.05\", \"N\", \"Amor\" ]\n, [ \"row-juxi-bawh~t79y\", \"00000000-0000-0000-E42F-8C6E400938FC\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 UG176)\", \"2014-10-25T00:00:00\", \"21.5\", \"0.16\", \"0.78\", \"4.62\", \"4.44\", \"16.3\", \"N\", \"Apollo\" ]\n, [ \"row-cpke-q237~u3dp\", \"00000000-0000-0000-F47B-8990D7DB4416\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 TJ64)\", \"2014-10-07T00:00:00\", \"21.2\", \"0.154\", \"1.05\", \"4.19\", \"4.24\", \"14.91\", \"N\", \"Amor\" ]\n, [ \"row-rq23_zqia-jkk5\", \"00000000-0000-0000-633C-A770122B48B1\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 TF64)\", \"2014-10-05T00:00:00\", \"20.1\", \"0.131\", \"0.94\", \"2.29\", \"2.05\", \"52.66\", \"N\", \"Apollo\" ]\n, [ \"row-6uzc_ub7g.j9ay\", \"00000000-0000-0000-9562-99B40105A3E8\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 TW57)\", \"2014-10-10T00:00:00\", \"20.1\", \"0.062\", \"0.57\", \"3.78\", \"3.21\", \"6.75\", \"N\", \"Apollo\" ]\n, [ \"row-kid5~di2g~xu8j\", \"00000000-0000-0000-5209-6577BAB98D9D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 SR339)\", \"2014-09-30T00:00:00\", \"18.6\", \"0.036\", \"0.9\", \"1.69\", \"1.48\", \"29.79\", \"Y\", \"Apollo\" ]\n, [ \"row-i6jc~ap36.xk9h\", \"00000000-0000-0000-4F13-CD02B33CA08F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 RH12)\", \"2014-09-03T00:00:00\", \"23.5\", \"0.045\", \"1.01\", \"3.35\", \"3.22\", \"7.23\", \"N\", \"Apollo\" ]\n, [ \"row-vnuv_ypcb-hxz5\", \"00000000-0000-0000-D3A2-AEF40C441754\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 QK433)\", \"2014-08-28T00:00:00\", \"18.2\", \"0.18\", \"1.19\", \"4.78\", \"5.16\", \"39.22\", \"N\", \"Amor\" ]\n, [ \"row-9ya5.4n65.i7iu\", \"00000000-0000-0000-B06A-59BCFE86890B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 PP69)\", \"2014-08-05T00:00:00\", \"20\", \"1.617\", \"1.25\", \"41.78\", \"99.82\", \"93.63\", \"N\", \"Amor\" ]\n, [ \"row-bpvb_u9w6-y6x4\", \"00000000-0000-0000-4FA9-5FD3AF7A96B2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 PF68)\", \"2014-08-15T00:00:00\", \"18.2\", \"0.17\", \"1.17\", \"4.53\", \"4.81\", \"22.75\", \"N\", \"Amor\" ]\n, [ \"row-e54k_bjyk_drer\", \"00000000-0000-0000-8994-06E476225A15\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 PC68)\", \"2014-08-08T00:00:00\", \"20.4\", \"0.104\", \"1.09\", \"1.95\", \"1.87\", \"40.68\", \"N\", \"Amor\" ]\n, [ \"row-ps74_m2ud.esm8\", \"00000000-0000-0000-E075-5C0A46399FFA\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 OZ1)\", \"2014-07-20T00:00:00\", \"21\", \"0.231\", \"1.08\", \"2.35\", \"2.24\", \"18\", \"N\", \"Amor\" ]\n, [ \"row-hibe.azip-98v5\", \"00000000-0000-0000-8E90-0D4FAFDF344C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 OY1)\", \"2014-07-21T00:00:00\", \"19.1\", \"0.042\", \"0.97\", \"4.19\", \"4.14\", \"23.01\", \"Y\", \"Apollo\" ]\n, [ \"row-tne5-b97s_kmvi\", \"00000000-0000-0000-3E66-51D6C938CBD7\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 NM64)\", \"2014-07-11T00:00:00\", \"22.6\", \"0.051\", \"1.06\", \"4.62\", \"4.79\", \"28.78\", \"N\", \"Amor\" ]\n, [ \"row-c45v_m7g8_r64q\", \"00000000-0000-0000-935C-8AFA61EF0520\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 NE64)\", \"2014-07-07T00:00:00\", \"18.8\", \"0.39\", \"1.2\", \"3.01\", \"3.06\", \"41.63\", \"N\", \"Amor\" ]\n, [ \"row-9gia~ck8v_iudk\", \"00000000-0000-0000-6420-6B0A7CC4ED8D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 NC64)\", \"2014-07-13T00:00:00\", \"20.2\", \"0.196\", \"0.8\", \"3.57\", \"3.23\", \"22.68\", \"N\", \"Apollo\" ]\n, [ \"row-ss88-cdqs~2ygg\", \"00000000-0000-0000-D37E-5E0271DAA3FE\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 NF3)\", \"2014-07-01T00:00:00\", \"20.8\", \"0.215\", \"0.66\", \"1.94\", \"1.48\", \"13.53\", \"N\", \"Apollo\" ]\n, [ \"row-6w52-5aug_mc5k\", \"00000000-0000-0000-43E7-B9FFE94564C7\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2014 N3 (NEOWISE)\", \"2014-07-04T00:00:00\", null, \"2.888\", \"3.88\", \"16441.51\", \"745640.58\", \"61.63\", \"n/a\", \"Comet\" ]\n, [ \"row-696a~su95~xzp4\", \"00000000-0000-0000-6552-E105BA6D4B27\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 MQ18)\", \"2014-06-22T00:00:00\", \"15.6\", \"0.192\", \"1.16\", \"4.63\", \"4.93\", \"35.09\", \"N\", \"Amor\" ]\n, [ \"row-277s.stwg-5r7d\", \"00000000-0000-0000-D298-D0FD55F52584\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 LQ25)\", \"2014-06-08T00:00:00\", \"20\", \"0.099\", \"0.65\", \"3.39\", \"2.88\", \"33.57\", \"N\", \"Apollo\" ]\n, [ \"row-8nan-fyx2.irtj\", \"00000000-0000-0000-7747-096B241CB014\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2014 L2 (NEOWISE)\", \"2014-06-07T00:00:00\", null, \"1.224\", \"2.23\", \"10.42\", \"15.91\", \"5.18\", \"n/a\", \"Jupiter-family Comet\" ]\n, [ \"row-uiqg~gfis.q752\", \"00000000-0000-0000-9AB9-F0BF55788532\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 JN57)\", \"2014-05-11T00:00:00\", \"20.6\", \"0.051\", \"1.03\", \"1.45\", \"1.39\", \"28.59\", \"N\", \"Amor\" ]\n, [ \"row-2qqu-cy9a.xu4h\", \"00000000-0000-0000-792C-CB51E4B3A6A8\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 JH57)\", \"2014-05-10T00:00:00\", \"16.2\", \"0.418\", \"0.43\", \"6.27\", \"6.13\", \"26.54\", \"N\", \"Apollo\" ]\n, [ \"row-rafh~s6pq.n5hi\", \"00000000-0000-0000-A0C4-4E613857D6A7\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 JL25)\", \"2014-05-04T00:00:00\", \"23\", \"0.012\", \"1\", \"4.8\", \"4.94\", \"15.75\", \"N\", \"Apollo\" ]\n, [ \"row-wzpz~bmm3-jjet\", \"00000000-0000-0000-8F4B-C893ADEAC8C3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 HJ129)\", \"2014-04-24T00:00:00\", \"21.1\", \"0.212\", \"1.13\", \"4.04\", \"4.16\", \"8.44\", \"N\", \"Amor\" ]\n, [ \"row-bcdj~r2ma.9rtq\", \"00000000-0000-0000-23BF-44AC7D78BAB6\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 HQ124)\", \"2014-04-23T00:00:00\", \"18.9\", \"0.007\", \"0.63\", \"1.07\", \"0.78\", \"26.37\", \"Y\", \"Aten\" ]\n, [ \"row-aq3b~6mi8~2wds\", \"00000000-0000-0000-972D-DD2FB420A511\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 EQ49)\", \"2014-03-15T00:00:00\", \"21.8\", \"0.026\", \"0.91\", \"1.39\", \"1.23\", \"15.18\", \"Y\", \"Apollo\" ]\n, [ \"row-xyja~xtay_bkqx\", \"00000000-0000-0000-AC08-911B2690D00E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 EN45)\", \"2014-03-06T00:00:00\", \"21.2\", \"0.156\", \"1.06\", \"3.83\", \"3.82\", \"14.03\", \"N\", \"Amor\" ]\n, [ \"row-cdr7~wtx7-3p88\", \"00000000-0000-0000-6FCE-2B6D732F2907\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 ED)\", \"2014-03-01T00:00:00\", \"19.3\", \"0.365\", \"0.56\", \"2.53\", \"1.92\", \"21.77\", \"N\", \"Apollo\" ]\n, [ \"row-8kzc~zcki.28ku\", \"00000000-0000-0000-245D-E0AD261B0479\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 CF14)\", \"2014-02-07T00:00:00\", \"18.1\", \"0.149\", \"0.82\", \"3.17\", \"2.83\", \"29.41\", \"N\", \"Apollo\" ]\n, [ \"row-fxz8_d95j~gkjm\", \"00000000-0000-0000-98C5-6CA69DFF6CC0\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 CY4)\", \"2014-02-04T00:00:00\", \"21.1\", \"0.042\", \"0.48\", \"4.82\", \"4.32\", \"15.02\", \"Y\", \"Apollo\" ]\n, [ \"row-ggc8.c2aw~ysus\", \"00000000-0000-0000-A3DD-8B31FB57DB6F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2014 C3 (NEOWISE)\", \"2014-02-14T00:00:00\", null, \"0.866\", \"1.86\", \"214.97\", \"1128.89\", \"151.78\", \"n/a\", \"Comet\" ]\n, [ \"row-b8gz.5kyi~c7t9\", \"00000000-0000-0000-24FF-63444DC1C95F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 BE63)\", \"2014-01-23T00:00:00\", \"23.2\", \"0.133\", \"0.75\", \"3.48\", \"3.08\", \"8.59\", \"N\", \"Apollo\" ]\n, [ \"row-vug5-avkn.uh7r\", \"00000000-0000-0000-D726-9B3872389089\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 BG60)\", \"2014-01-25T00:00:00\", \"20.1\", \"0.227\", \"1.17\", \"4.89\", \"5.27\", \"8.61\", \"N\", \"Amor\" ]\n, [ \"row-ym3q.axs2.65hf\", \"00000000-0000-0000-D28B-1618D30935B2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 AA53)\", \"2014-01-13T00:00:00\", \"19.8\", \"0.14\", \"0.78\", \"3.97\", \"3.66\", \"12.45\", \"N\", \"Apollo\" ]\n, [ \"row-nt3k~wbhv_m7fs\", \"00000000-0000-0000-31FA-903370DF4DD4\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2014 AQ46)\", \"2014-01-02T00:00:00\", \"20.1\", \"0.205\", \"1.13\", \"3.7\", \"3.75\", \"24.6\", \"N\", \"Amor\" ]\n, [ \"row-h9ka-wici_jg6k\", \"00000000-0000-0000-3E38-D3D65C8F4DB5\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2013 YP139)\", \"2013-12-29T00:00:00\", \"21.6\", \"0.004\", \"0.76\", \"4.05\", \"3.73\", \"0.82\", \"Y\", \"Apollo\" ]\n, [ \"row-a349-geer.p4gn\", \"00000000-0000-0000-4ABF-A18B6AF40890\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2011 BN59)\", \"2011-01-29T00:00:00\", \"20.4\", \"0.326\", \"1.16\", \"4.97\", \"5.36\", \"20.32\", \"N\", \"Amor\" ]\n, [ \"row-fy6r_pkgy~egz6\", \"00000000-0000-0000-3A22-A7EFCC0EF350\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2011 BY24)\", \"2011-01-24T00:00:00\", \"22.6\", \"0.017\", \"0.96\", \"2.83\", \"2.6\", \"13.95\", \"N\", \"Apollo\" ]\n, [ \"row-zk6q_n6yu~j2mr\", \"00000000-0000-0000-19B5-02DD2C43DE3F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 YD3)\", \"2010-12-26T00:00:00\", \"20\", \"0.195\", \"1.11\", \"4.05\", \"4.14\", \"24.61\", \"N\", \"Amor\" ]\n, [ \"row-zc82-nptm~9a6w\", \"00000000-0000-0000-4DF1-0879B2726A2B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 YC1)\", \"2010-12-21T00:00:00\", \"21.3\", \"0.163\", \"0.83\", \"2\", \"1.68\", \"17.66\", \"N\", \"Apollo\" ]\n, [ \"row-5a8x_9b6k.iair\", \"00000000-0000-0000-E344-7F717B5C2E4E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 XY82)\", \"2010-12-14T00:00:00\", \"19.1\", \"0.294\", \"1.12\", \"3.26\", \"3.24\", \"26.73\", \"N\", \"Amor\" ]\n, [ \"row-xty4~55y9_fktv\", \"00000000-0000-0000-F5CC-F2D430CEA696\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 XP69)\", \"2010-12-08T00:00:00\", \"21.4\", \"0.015\", \"1\", \"2.05\", \"1.88\", \"14.6\", \"Y\", \"Apollo\" ]\n, [ \"row-itua_jrzu~wp7g\", \"00000000-0000-0000-0AE2-D3825719D3C3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 XZ67)\", \"2010-12-10T00:00:00\", \"19.7\", \"0.063\", \"1.04\", \"3.08\", \"2.96\", \"11.84\", \"N\", \"Amor\" ]\n, [ \"row-gxzz~ym6f.q5tx\", \"00000000-0000-0000-C6A4-DDB6A1011D20\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 WE9)\", \"2010-11-23T00:00:00\", \"20\", \"0.256\", \"1.17\", \"1.94\", \"1.94\", \"42.12\", \"N\", \"Amor\" ]\n, [ \"row-bph8_rsf7.6e5k\", \"00000000-0000-0000-30CA-66A34A8153B6\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 UB8)\", \"2010-10-27T00:00:00\", \"19.7\", \"0.194\", \"1.11\", \"4.85\", \"5.15\", \"30.97\", \"N\", \"Amor\" ]\n, [ \"row-v6n6-4f3p-wkir\", \"00000000-0000-0000-043E-4FB3390E3F39\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 UY6)\", \"2010-10-23T00:00:00\", \"20.1\", \"0.062\", \"1.04\", \"4.28\", \"4.34\", \"19.98\", \"N\", \"Amor\" ]\n, [ \"row-f6qp~ij4u.5ytj\", \"00000000-0000-0000-AAEE-0C1A4CEFDD6F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 TK7)\", \"2010-10-01T00:00:00\", \"20.8\", \"0.087\", \"0.81\", \"1.19\", \"1\", \"20.89\", \"N\", \"Aten\" ]\n, [ \"row-zqr6-5c6r_7y6u\", \"00000000-0000-0000-22AD-23C57E78F489\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 QA5)\", \"2010-08-29T00:00:00\", \"22.5\", \"0.065\", \"1.07\", \"4.76\", \"4.97\", \"33.45\", \"N\", \"Amor\" ]\n, [ \"row-8dm2.f3aa.95st\", \"00000000-0000-0000-F98F-CCC665C63052\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 QE2)\", \"2010-08-25T00:00:00\", \"17.2\", \"0.056\", \"0.88\", \"5.86\", \"6.19\", \"64.75\", \"N\", \"Apollo\" ]\n, [ \"row-7s4y~jwav.5bwt\", \"00000000-0000-0000-7BFD-44DA10ADEFF1\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 PY75)\", \"2010-08-15T00:00:00\", \"18.7\", \"0.243\", \"0.6\", \"4.72\", \"4.34\", \"31.29\", \"N\", \"Apollo\" ]\n, [ \"row-i9p8.msd5.j9hk\", \"00000000-0000-0000-0293-6A5733EE824F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 PU66)\", \"2010-08-03T00:00:00\", \"22.1\", \"0.148\", \"0.91\", \"2.07\", \"1.81\", \"18.09\", \"N\", \"Apollo\" ]\n, [ \"row-cbyk~2cnh_pgeb\", \"00000000-0000-0000-FFB8-5A617F277117\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 PW58)\", \"2010-08-05T00:00:00\", \"21.3\", \"0.021\", \"0.7\", \"1.08\", \"0.84\", \"14.24\", \"Y\", \"Aten\" ]\n, [ \"row-4qwi.nfjv_niwq\", \"00000000-0000-0000-3E4E-982D4B045B76\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 PP58)\", \"2010-08-05T00:00:00\", \"22.1\", \"0.014\", \"0.99\", \"3\", \"2.81\", \"4.55\", \"N\", \"Apollo\" ]\n, [ \"row-k4ne~ga39.7xc7\", \"00000000-0000-0000-52A9-B3C7A543236E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 PM58)\", \"2010-08-01T00:00:00\", \"20.9\", \"0.096\", \"0.74\", \"2\", \"1.61\", \"13.6\", \"N\", \"Apollo\" ]\n, [ \"row-ag5m_pkca_tsab\", \"00000000-0000-0000-ABD9-09B714E282C3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2010 P4 (WISE)\", \"2010-08-06T00:00:00\", null, \"0.854\", \"1.86\", \"5.55\", \"7.13\", \"24.1\", \"n/a\", \"Jupiter-family Comet\" ]\n, [ \"row-g34d~ecym.z62f\", \"00000000-0000-0000-EEBC-0477BFE6558B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OK126)\", \"2010-07-30T00:00:00\", \"20.7\", \"0.149\", \"1.08\", \"2.83\", \"2.74\", \"52.56\", \"N\", \"Amor\" ]\n, [ \"row-hagy-6j73_u7hf\", \"00000000-0000-0000-3792-F20EC98D311B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OH126)\", \"2010-07-31T00:00:00\", \"21.4\", \"0.068\", \"0.95\", \"2.85\", \"2.62\", \"14.38\", \"N\", \"Apollo\" ]\n, [ \"row-vagk_xxc4-e62q\", \"00000000-0000-0000-DCF2-DE2BE8374D82\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 ON101)\", \"2010-07-30T00:00:00\", \"20.2\", \"0.044\", \"0.96\", \"2.3\", \"2.08\", \"9.31\", \"Y\", \"Apollo\" ]\n, [ \"row-jnq2-bdkn-utkm\", \"00000000-0000-0000-CCEB-B85FAE34A307\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OL101)\", \"2010-07-27T00:00:00\", \"20.4\", \"0.298\", \"1.05\", \"4.17\", \"4.22\", \"26.11\", \"N\", \"Amor\" ]\n, [ \"row-j6qe-sutc~i5dm\", \"00000000-0000-0000-1BB8-35DE875907D8\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OF101)\", \"2010-07-23T00:00:00\", \"19.6\", \"0.062\", \"0.64\", \"1.26\", \"0.93\", \"23.37\", \"N\", \"Aten\" ]\n, [ \"row-zs8s-67jf.mtpy\", \"00000000-0000-0000-ADE8-01D42B8DE1F5\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OD101)\", \"2010-07-23T00:00:00\", \"20.7\", \"0.19\", \"1.04\", \"2.2\", \"2.06\", \"15.39\", \"N\", \"Amor\" ]\n, [ \"row-d5g6~pi6n~zv3z\", \"00000000-0000-0000-1CC5-C9AD805B634D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OC101)\", \"2010-07-22T00:00:00\", \"20.7\", \"0.092\", \"0.94\", \"1.5\", \"1.35\", \"13.6\", \"N\", \"Apollo\" ]\n, [ \"row-fw5z-bk57_jxud\", \"00000000-0000-0000-CCAE-D01EFED34B31\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OL100)\", \"2010-07-28T00:00:00\", \"19.6\", \"0.129\", \"0.78\", \"3.74\", \"3.4\", \"22.16\", \"N\", \"Apollo\" ]\n, [ \"row-ivms-ryya_a3xp\", \"00000000-0000-0000-697C-A2D8151FC314\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 OE22)\", \"2010-07-17T00:00:00\", \"21.3\", \"0.178\", \"0.97\", \"4.31\", \"4.28\", \"14.32\", \"N\", \"Apollo\" ]\n, [ \"row-iwph_yzg6-t7is\", \"00000000-0000-0000-92AE-69E4292D7580\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 NY65)\", \"2010-07-14T00:00:00\", \"21.4\", \"0.017\", \"0.63\", \"1.37\", \"1\", \"11.74\", \"Y\", \"Aten\" ]\n, [ \"row-9nzk-wdnh-mcjy\", \"00000000-0000-0000-2844-ACD2128B0183\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 NG3)\", \"2010-07-08T00:00:00\", \"17.2\", \"0.127\", \"1.13\", \"4.08\", \"4.2\", \"26.96\", \"N\", \"Amor\" ]\n, [ \"row-sj4b~pggu.43k4\", \"00000000-0000-0000-7EAF-6C7E78A97E14\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 NB2)\", \"2010-07-10T00:00:00\", \"20.3\", \"0.102\", \"0.5\", \"3.67\", \"3.01\", \"28.66\", \"N\", \"Apollo\" ]\n, [ \"row-jpzm-8gaj.vvmt\", \"00000000-0000-0000-2D04-181EB0CD60A9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 NU1)\", \"2010-07-06T00:00:00\", \"21.2\", \"0.336\", \"0.48\", \"4.33\", \"3.74\", \"34.58\", \"N\", \"Apollo\" ]\n, [ \"row-bija_qjtf~ygzb\", \"00000000-0000-0000-F143-04500116FF4E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 NT1)\", \"2010-07-04T00:00:00\", \"19.4\", \"0.208\", \"1.14\", \"1.78\", \"1.76\", \"39.52\", \"N\", \"Amor\" ]\n, [ \"row-hqtm_dhrx~m7m8\", \"00000000-0000-0000-109D-1126B8A8DC43\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 NG1)\", \"2010-07-02T00:00:00\", \"20.4\", \"0.081\", \"0.57\", \"1.13\", \"0.78\", \"24.74\", \"N\", \"Aten\" ]\n, [ \"row-qe3n-2dby_zd9c\", \"00000000-0000-0000-A11E-AF28BFFA3287\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2010 N1 (WISE)\", \"2010-07-05T00:00:00\", null, \"0.491\", \"1.49\", \"4.92\", \"5.74\", \"12.88\", \"n/a\", \"Jupiter-family Comet\" ]\n, [ \"row-5t65~i4aq_wzzt\", \"00000000-0000-0000-6E65-0037473255B9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 MA113)\", \"2010-06-25T00:00:00\", \"19.2\", \"0.081\", \"0.89\", \"3.68\", \"3.46\", \"39.85\", \"N\", \"Apollo\" ]\n, [ \"row-gh27_zmh5~zxbg\", \"00000000-0000-0000-3675-C536E1DCBB82\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 MZ112)\", \"2010-06-23T00:00:00\", \"19.8\", \"0.221\", \"0.49\", \"3.06\", \"2.36\", \"30.18\", \"N\", \"Apollo\" ]\n, [ \"row-qhpa_93ek-sdee\", \"00000000-0000-0000-5E1D-4233866F894F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 MY112)\", \"2010-06-23T00:00:00\", \"21\", \"0.156\", \"0.8\", \"1.33\", \"1.1\", \"38.49\", \"N\", \"Apollo\" ]\n, [ \"row-gdet.fymj-zn94\", \"00000000-0000-0000-B002-844B75F2F669\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 MU112)\", \"2010-06-30T00:00:00\", \"20.7\", \"0.0002\", \"0.81\", \"2.71\", \"2.33\", \"48.02\", \"Y\", \"Apollo\" ]\n, [ \"row-2hs5.4f3y~etgg\", \"00000000-0000-0000-0F0D-9CB89F9866C9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 MU111)\", \"2010-06-23T00:00:00\", \"18.7\", \"0.059\", \"0.92\", \"3.86\", \"3.7\", \"41.53\", \"N\", \"Apollo\" ]\n, [ \"row-xj6x-eaqy-y9uw\", \"00000000-0000-0000-E49E-B517B45AADC2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 MR87)\", \"2010-06-22T00:00:00\", \"19.5\", \"0.15\", \"1.06\", \"2.41\", \"2.28\", \"34.98\", \"N\", \"Amor\" ]\n, [ \"row-ps8d-w5zp_kxzi\", \"00000000-0000-0000-C53A-12E4826C54BE\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LU134)\", \"2010-06-14T00:00:00\", \"19.5\", \"0.146\", \"0.86\", \"2.93\", \"2.61\", \"27.39\", \"N\", \"Apollo\" ]\n, [ \"row-xvjc~uvav~rpz2\", \"00000000-0000-0000-FBAA-5CAD9C50DE6C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LV108)\", \"2010-06-14T00:00:00\", \"22.6\", \"0.006\", \"1.01\", \"4.55\", \"4.64\", \"5.43\", \"N\", \"Apollo\" ]\n, [ \"row-i4fn~8cj3~9bpi\", \"00000000-0000-0000-5DAA-C3BBD6649C56\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LU108)\", \"2010-06-15T00:00:00\", \"20\", \"0.126\", \"0.41\", \"4.08\", \"3.35\", \"9.51\", \"N\", \"Apollo\" ]\n, [ \"row-kdah_2rg5_6eiw\", \"00000000-0000-0000-DF79-9547B5826050\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LT108)\", \"2010-06-13T00:00:00\", \"19.7\", \"0.138\", \"0.85\", \"1.85\", \"1.57\", \"31.87\", \"N\", \"Apollo\" ]\n, [ \"row-hpra~stdb~bvt5\", \"00000000-0000-0000-A68F-9C9621C1C679\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LO97)\", \"2010-06-13T00:00:00\", \"18.7\", \"0.233\", \"1.22\", \"3.94\", \"4.14\", \"21.65\", \"N\", \"Amor\" ]\n, [ \"row-kdp7-i5bj.y5zw\", \"00000000-0000-0000-AA63-47288DFF2DA1\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LF86)\", \"2010-06-11T00:00:00\", \"17.2\", \"0.318\", \"1.3\", \"3.51\", \"3.73\", \"13.55\", \"N\", \"Amor\" ]\n, [ \"row-vydr_g7cz.3f79\", \"00000000-0000-0000-9CF6-33FBA7D862CD\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LR68)\", \"2010-06-08T00:00:00\", \"18.3\", \"0.216\", \"1.19\", \"4.88\", \"5.29\", \"4.58\", \"N\", \"Amor\" ]\n, [ \"row-ckt5_t27u~rfub\", \"00000000-0000-0000-745B-1D5B24298835\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LL68)\", \"2010-06-12T00:00:00\", \"22.9\", \"0.139\", \"0.98\", \"3.16\", \"2.99\", \"10.48\", \"N\", \"Apollo\" ]\n, [ \"row-f8sq-v5gx~saus\", \"00000000-0000-0000-4468-A761FD737A51\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LK68)\", \"2010-06-12T00:00:00\", \"22.5\", \"0.025\", \"0.61\", \"1.73\", \"1.27\", \"22.08\", \"N\", \"Apollo\" ]\n, [ \"row-r44t~k2a3_z7ns\", \"00000000-0000-0000-60C4-DB5DFB6EA19D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LJ68)\", \"2010-06-11T00:00:00\", \"22.7\", \"0.031\", \"0.97\", \"2.54\", \"2.32\", \"17.01\", \"N\", \"Apollo\" ]\n, [ \"row-suga.7xrt_7j6w\", \"00000000-0000-0000-8A1A-9C1F5624E4BA\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LG64)\", \"2010-06-05T00:00:00\", \"20.2\", \"0.043\", \"1.04\", \"4.3\", \"4.36\", \"42.28\", \"Y\", \"Amor\" ]\n, [ \"row-2asf_pqrb-siep\", \"00000000-0000-0000-54A9-202EC672CEB9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LF64)\", \"2010-06-03T00:00:00\", \"21.6\", \"0.192\", \"1.13\", \"1.59\", \"1.59\", \"18.54\", \"N\", \"Amor\" ]\n, [ \"row-fnuh_b429~rrrm\", \"00000000-0000-0000-C501-11A828D90CBC\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LJ61)\", \"2010-06-08T00:00:00\", \"20.9\", \"0.054\", \"0.57\", \"1.59\", \"1.12\", \"10.24\", \"N\", \"Apollo\" ]\n, [ \"row-ep9b.g3dd-ti26\", \"00000000-0000-0000-66AA-1166050EA0FB\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LQ33)\", \"2010-06-04T00:00:00\", \"19.3\", \"0.228\", \"1.23\", \"3.31\", \"3.42\", \"24.63\", \"N\", \"Amor\" ]\n, [ \"row-nxu3-iryv~g4aq\", \"00000000-0000-0000-C04A-CAEB9C443DED\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LM14)\", \"2010-06-02T00:00:00\", \"21.5\", \"0.312\", \"0.69\", \"1.53\", \"1.17\", \"25.92\", \"N\", \"Apollo\" ]\n, [ \"row-hwpu_ajap_qkeq\", \"00000000-0000-0000-1084-1E92C72E3613\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 LH14)\", \"2010-06-02T00:00:00\", \"22\", \"0.054\", \"0.93\", \"3.46\", \"3.26\", \"4.66\", \"N\", \"Apollo\" ]\n, [ \"row-6akk_bcjz.s85k\", \"00000000-0000-0000-39DD-1ACBBA5E2058\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 L5 (WISE)\", \"2010-06-14T00:00:00\", null, \"0.114\", \"0.79\", \"15.64\", \"23.56\", \"147.05\", \"n/a\", \"Halley-type Comet*\" ]\n, [ \"row-eemv-hthg.dskv\", \"00000000-0000-0000-104A-97726FF5DE39\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 L4 (WISE)\", \"2010-06-15T00:00:00\", null, \"2.53\", \"2.83\", \"157.36\", \"716.78\", \"102.82\", \"n/a\", \"Comet\" ]\n, [ \"row-gbtc~ecek.d3kd\", \"00000000-0000-0000-833C-28665EC40EE7\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"245P/WISE\", \"2010-06-02T00:00:00\", null, \"1.172\", \"2.14\", \"5.88\", \"8.04\", \"21.09\", \"n/a\", \"Jupiter-family Comet\" ]\n, [ \"row-mazd.g9rs.eug7\", \"00000000-0000-0000-385E-475C01D7854C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 KY127)\", \"2010-05-31T00:00:00\", \"17\", \"0.703\", \"0.3\", \"4.7\", \"3.95\", \"60.29\", \"N\", \"Apollo\" ]\n, [ \"row-zniz~tkgn~d8h8\", \"00000000-0000-0000-B0BE-A8259CF6AC4D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 KK127)\", \"2010-05-21T00:00:00\", \"20.7\", \"0.282\", \"1.28\", \"3.18\", \"3.33\", \"6.94\", \"N\", \"Amor\" ]\n, [ \"row-tzxb~r2pa-gjeu\", \"00000000-0000-0000-6E6B-90DECCB024E5\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 KZ117)\", \"2010-05-18T00:00:00\", \"19.2\", \"0.166\", \"1.1\", \"3.43\", \"3.42\", \"33.17\", \"N\", \"Amor\" ]\n, [ \"row-dz37~yd83_6daz\", \"00000000-0000-0000-4EF0-E58FE7B3E52B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 KB61)\", \"2010-05-26T00:00:00\", \"20.5\", \"0.051\", \"0.98\", \"1.57\", \"1.44\", \"44.6\", \"N\", \"Apollo\" ]\n, [ \"row-6ckp~fi37.n8xv\", \"00000000-0000-0000-966F-8AF656A6938F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 KY39)\", \"2010-05-18T00:00:00\", \"20.1\", \"0.303\", \"1.05\", \"2.43\", \"2.3\", \"25.51\", \"N\", \"Amor\" ]\n, [ \"row-vzhj_j3x7.66cj\", \"00000000-0000-0000-A945-325833A6527C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 KW7 (WISE)\", \"2010-05-16T00:00:00\", null, \"1.625\", \"2.57\", \"197.11\", \"997.65\", \"147.06\", \"n/a\", \"Comet\" ]\n, [ \"row-7wj5.3jqa_7crn\", \"00000000-0000-0000-1C2D-2771CCC6A5B3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"317P/WISE\", \"2010-05-27T00:00:00\", null, \"0.204\", \"1.2\", \"4.65\", \"5.01\", \"10.65\", \"n/a\", \"Jupiter-family Comet\" ]\n, [ \"row-k7ee-e8dj_mme3\", \"00000000-0000-0000-8C0F-03719B1781DB\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 KH)\", \"2010-05-16T00:00:00\", \"19.4\", \"0.367\", \"1.24\", \"4.28\", \"4.59\", \"14.57\", \"N\", \"Amor\" ]\n, [ \"row-sut9-jynt_j2z7\", \"00000000-0000-0000-056F-1F09B831CCA2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JM151)\", \"2010-05-14T00:00:00\", \"19.6\", \"0.111\", \"0.88\", \"2.52\", \"2.21\", \"16.65\", \"N\", \"Apollo\" ]\n, [ \"row-a85s.vzdq.f278\", \"00000000-0000-0000-A487-4C6A78D298B9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JH87)\", \"2010-05-11T00:00:00\", \"19.6\", \"0.221\", \"0.71\", \"2.37\", \"1.91\", \"43.78\", \"N\", \"Apollo\" ]\n, [ \"row-9u7x.9biv_4qqj\", \"00000000-0000-0000-92A5-E10D3A97D5F0\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JG87)\", \"2010-05-11T00:00:00\", \"19.1\", \"0.209\", \"0.14\", \"5.38\", \"4.59\", \"16.91\", \"N\", \"Apollo\" ]\n, [ \"row-dnxy.mkcz.st5u\", \"00000000-0000-0000-756E-AD88BD22F65D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JF87)\", \"2010-05-11T00:00:00\", \"19.2\", \"0.053\", \"0.92\", \"3.95\", \"3.8\", \"24.93\", \"N\", \"Apollo\" ]\n, [ \"row-xbvh.jugb_9yya\", \"00000000-0000-0000-A39C-09C7A0F428A0\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JE87)\", \"2010-05-10T00:00:00\", \"20.8\", \"0.035\", \"0.51\", \"1.3\", \"0.86\", \"16.92\", \"Y\", \"Aten\" ]\n, [ \"row-kcs3~pu29_gp8i\", \"00000000-0000-0000-65A6-A4541CD684A9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JD87)\", \"2010-05-07T00:00:00\", \"19.2\", \"0.283\", \"0.51\", \"2.34\", \"1.71\", \"24.6\", \"N\", \"Apollo\" ]\n, [ \"row-9vgf~6vzq~qrqv\", \"00000000-0000-0000-8232-15B308576652\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2010 JC81 (WISE)\", \"2010-05-10T00:00:00\", null, \"0.828\", \"1.81\", \"14.46\", \"23.19\", \"38.69\", \"n/a\", \"Halley-type Comet*\" ]\n, [ \"row-wyi9-szi9-wqqi\", \"00000000-0000-0000-90E3-9AF2A67F3416\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JA43)\", \"2010-05-04T00:00:00\", \"20.9\", \"0.186\", \"1.03\", \"2.38\", \"2.23\", \"36.46\", \"N\", \"Amor\" ]\n, [ \"row-vzvx_3fki-2ta6\", \"00000000-0000-0000-B160-FF1DD2978442\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 JN33)\", \"2010-05-03T00:00:00\", \"20.4\", \"0.257\", \"1.11\", \"2\", \"1.94\", \"53.15\", \"N\", \"Amor\" ]\n, [ \"row-d9u4~atxw~sa8g\", \"00000000-0000-0000-D1B3-4AB61F7FB264\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 J4 (WISE)\", \"2010-05-12T00:00:00\", null, \"0.307\", \"1.09\", null, null, \"162.3\", \"n/a\", \"Parabolic Comet\" ]\n, [ \"row-qe3h.78cy.mj3i\", \"00000000-0000-0000-E1CD-D4818797B3DE\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 HZ108)\", \"2010-04-25T00:00:00\", \"20.9\", \"0.108\", \"0.99\", \"1.51\", \"1.39\", \"22.88\", \"N\", \"Apollo\" ]\n, [ \"row-9xb9.c2bi-eryy\", \"00000000-0000-0000-DBC6-526734243C35\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 HX107)\", \"2010-04-20T00:00:00\", \"23.6\", \"0.014\", \"0.56\", \"1.04\", \"0.72\", \"3.36\", \"N\", \"Aten\" ]\n, [ \"row-m3nc-qaz5.yudh\", \"00000000-0000-0000-510E-25DFFB1AF5DF\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 HZ104)\", \"2010-04-23T00:00:00\", \"22.5\", \"0.029\", \"0.97\", \"3.52\", \"3.37\", \"20.24\", \"N\", \"Apollo\" ]\n, [ \"row-ckep_qa42.2f3n\", \"00000000-0000-0000-FB47-1CDE34AC2EF3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 HW81)\", \"2010-04-25T00:00:00\", \"21.4\", \"0.117\", \"0.33\", \"2.1\", \"1.33\", \"12.77\", \"N\", \"Apollo\" ]\n, [ \"row-g3wh~zhk6.ihji\", \"00000000-0000-0000-785B-B4D5F3BBB085\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 HD33)\", \"2010-04-20T00:00:00\", \"18.3\", \"0.372\", \"1.27\", \"3.97\", \"4.24\", \"24.43\", \"N\", \"Amor\" ]\n, [ \"row-nkk7_ajxe~ur2c\", \"00000000-0000-0000-2EE6-644DD015CB70\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GV147)\", \"2010-04-14T00:00:00\", \"18.5\", \"0.316\", \"0.33\", \"1.59\", \"0.94\", \"44.05\", \"N\", \"Aten\" ]\n, [ \"row-e6ws_syaz~7z6u\", \"00000000-0000-0000-7AA1-C14ED63C8F92\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GR75)\", \"2010-04-13T00:00:00\", \"19.6\", \"0.299\", \"0.63\", \"2.82\", \"2.27\", \"17.78\", \"N\", \"Apollo\" ]\n, [ \"row-pcxn~bpw6_gazc\", \"00000000-0000-0000-5305-6AEB75A5276E\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GQ75)\", \"2010-04-12T00:00:00\", \"20.2\", \"0.598\", \"0.33\", \"4.53\", \"3.79\", \"43.23\", \"N\", \"Apollo\" ]\n, [ \"row-bgqk.3mv7.9tgy\", \"00000000-0000-0000-3909-312C7534E330\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GP67)\", \"2010-04-11T00:00:00\", \"22.3\", \"0.018\", \"0.99\", \"1.23\", \"1.18\", \"13.27\", \"N\", \"Apollo\" ]\n, [ \"row-3zvx~3nzb_t95k\", \"00000000-0000-0000-9133-055709A399E0\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GH65)\", \"2010-04-10T00:00:00\", \"18.8\", \"0.15\", \"1.05\", \"4.36\", \"4.45\", \"21.04\", \"N\", \"Amor\" ]\n, [ \"row-5gkb-8n7d~bhnb\", \"00000000-0000-0000-8B29-8D9B17B7120B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GX62)\", \"2010-04-10T00:00:00\", \"20\", \"0.013\", \"0.87\", \"5.03\", \"5.07\", \"21.66\", \"Y\", \"Apollo\" ]\n, [ \"row-puc5-6yn5~rqab\", \"00000000-0000-0000-6427-E24D66F438D9\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GW62)\", \"2010-04-09T00:00:00\", \"19.4\", \"0.44\", \"0.54\", \"2\", \"1.43\", \"32.43\", \"N\", \"Apollo\" ]\n, [ \"row-awwg-ttbx_reh8\", \"00000000-0000-0000-C81B-7CCC86867E9F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GF25)\", \"2010-04-02T00:00:00\", \"19.1\", \"0.399\", \"0.37\", \"2.47\", \"1.7\", \"38.49\", \"N\", \"Apollo\" ]\n, [ \"row-waa3_shwa-qjfk\", \"00000000-0000-0000-0595-DF9538BB4CDC\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GE25)\", \"2010-04-01T00:00:00\", \"20\", \"0.22\", \"1.1\", \"3.03\", \"2.97\", \"21.66\", \"N\", \"Amor\" ]\n, [ \"row-7mxt~6khd_gm5n\", \"00000000-0000-0000-E030-3886D68E859A\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 GK23)\", \"2010-04-05T00:00:00\", \"19.7\", \"0.097\", \"0.87\", \"4.43\", \"4.32\", \"34.77\", \"N\", \"Apollo\" ]\n, [ \"row-9xhe_xet3~vhg6\", \"00000000-0000-0000-9A85-80F6596C5144\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 G3 (WISE)\", \"2010-04-14T00:00:00\", null, \"4.492\", \"4.91\", \"5260.08\", \"135070.2\", \"108.27\", \"n/a\", \"Comet\" ]\n, [ \"row-xqvn.j9ys-x9kb\", \"00000000-0000-0000-2C11-A7B185FBACB1\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 FB87 (WISE-Garradd)\", \"2010-03-28T00:00:00\", null, \"2.538\", \"2.84\", \"595.66\", \"5176.82\", \"107.63\", \"n/a\", \"Comet\" ]\n, [ \"row-sci9-z3h3-kuar\", \"00000000-0000-0000-2D7A-80B48516A545\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FJ81)\", \"2010-03-31T00:00:00\", \"20.8\", \"0.128\", \"1.14\", \"6.06\", \"6.82\", \"42.54\", \"N\", \"Amor\" ]\n, [ \"row-eudk-rf77_fyd6\", \"00000000-0000-0000-8004-883AE2A63962\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FH81)\", \"2010-03-31T00:00:00\", \"21.6\", \"0.034\", \"0.97\", \"1.48\", \"1.36\", \"16.79\", \"Y\", \"Apollo\" ]\n, [ \"row-e3wy~g55s_mi7k\", \"00000000-0000-0000-0CEE-99C0279AADA2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FG81)\", \"2010-03-26T00:00:00\", \"23.3\", \"0.019\", \"1.01\", \"2.31\", \"2.14\", \"7.97\", \"N\", \"Apollo\" ]\n, [ \"row-xfad.2gc6~hkfa\", \"00000000-0000-0000-DBFA-B11339D16075\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FC81)\", \"2010-03-30T00:00:00\", \"21.8\", \"0.027\", \"1.01\", \"4.35\", \"4.38\", \"1.68\", \"Y\", \"Apollo\" ]\n, [ \"row-9bi5-b8ed.99iv\", \"00000000-0000-0000-42EA-6FDDB63817DE\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FB81)\", \"2010-03-30T00:00:00\", \"21.4\", \"0.096\", \"1.02\", \"4.14\", \"4.14\", \"9.48\", \"N\", \"Amor\" ]\n, [ \"row-53qh.he9z.n97a\", \"00000000-0000-0000-4CD3-4BD571D49F2D\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FA81)\", \"2010-03-29T00:00:00\", \"22.3\", \"0.035\", \"1.01\", \"1.38\", \"1.31\", \"15.48\", \"N\", \"Apollo\" ]\n, [ \"row-eu45-tzfd~z34h\", \"00000000-0000-0000-0241-8CCE4F71964C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FZ80)\", \"2010-03-28T00:00:00\", \"20.3\", \"0.297\", \"0.7\", \"4.8\", \"4.56\", \"27.34\", \"N\", \"Apollo\" ]\n, [ \"row-ueix_rh4e.ns66\", \"00000000-0000-0000-0177-D631D83DABFD\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FY80)\", \"2010-03-28T00:00:00\", \"19.7\", \"0.14\", \"1.05\", \"4.35\", \"4.42\", \"18.81\", \"N\", \"Amor\" ]\n, [ \"row-i7qc-kew9.d6tb\", \"00000000-0000-0000-1161-2B3046A828A8\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 FX80)\", \"2010-03-27T00:00:00\", \"20.6\", \"0.535\", \"1.18\", \"3.15\", \"3.19\", \"36.96\", \"N\", \"Amor\" ]\n, [ \"row-vr6u-a3rt.8h4p\", \"00000000-0000-0000-FC35-81EE412E2112\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 EX119)\", \"2010-03-13T00:00:00\", \"19.4\", \"0.159\", \"0.77\", \"3.04\", \"2.63\", \"15.57\", \"N\", \"Apollo\" ]\n, [ \"row-wfvn_enhc_qw9q\", \"00000000-0000-0000-DDAE-0EAB7FFE3A2B\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 EN44)\", \"2010-03-12T00:00:00\", \"24.3\", \"0.023\", \"0.96\", \"1.33\", \"1.22\", \"10.18\", \"N\", \"Apollo\" ]\n, [ \"row-yttj~se52_gti9\", \"00000000-0000-0000-79F9-CC287C55DC80\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 EX11)\", \"2010-03-03T00:00:00\", \"24.1\", \"0.029\", \"0.85\", \"1.06\", \"0.93\", \"9.75\", \"N\", \"Aten\" ]\n, [ \"row-f4ut_4xd2-k3yj\", \"00000000-0000-0000-2194-0CA9A5CED590\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 E3 (WISE)\", \"2010-03-05T00:00:00\", null, \"1.546\", \"2.27\", null, null, \"96.48\", \"n/a\", \"Parabolic Comet\" ]\n, [ \"row-r6u5-ukku~wkwj\", \"00000000-0000-0000-4C47-429CAC48EC8C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DJ77)\", \"2010-02-20T00:00:00\", \"21.6\", \"0.05\", \"0.75\", \"1.16\", \"0.93\", \"24.98\", \"Y\", \"Aten\" ]\n, [ \"row-9u2n_m7gf-wymk\", \"00000000-0000-0000-3760-8E3274E8BDA8\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DH77)\", \"2010-02-19T00:00:00\", \"21.8\", \"0.146\", \"0.95\", \"5.58\", \"5.9\", \"34.38\", \"N\", \"Apollo\" ]\n, [ \"row-x8uu~r5ai.d69j\", \"00000000-0000-0000-55D7-644C207E9ED3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DG77)\", \"2010-02-19T00:00:00\", \"21.4\", \"0.009\", \"0.96\", \"3.22\", \"3.02\", \"14.81\", \"Y\", \"Apollo\" ]\n, [ \"row-abia.2wah_veuw\", \"00000000-0000-0000-F0BF-39F6887207BE\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DM56)\", \"2010-02-19T00:00:00\", \"19.9\", \"0.006\", \"0.92\", \"1.69\", \"1.49\", \"25.61\", \"Y\", \"Apollo\" ]\n, [ \"row-m3xv~ejfk-j95b\", \"00000000-0000-0000-1AB6-9677B43422C3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DJ56)\", \"2010-02-23T00:00:00\", \"19.3\", \"0.028\", \"0.94\", \"1.56\", \"1.4\", \"34.84\", \"Y\", \"Apollo\" ]\n, [ \"row-beeq_w5jr-6wky\", \"00000000-0000-0000-A63C-1BDFE56DBBBD\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DH56)\", \"2010-02-20T00:00:00\", \"20.3\", \"0.333\", \"0.97\", \"3.51\", \"3.35\", \"33.67\", \"N\", \"Apollo\" ]\n, [ \"row-wwfg~5k6n~qwf9\", \"00000000-0000-0000-0636-E11420192A7F\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 DG56 (WISE)\", \"2010-02-18T00:00:00\", null, \"0.65\", \"1.59\", \"133.48\", \"555.03\", \"160.42\", \"n/a\", \"Comet\" ]\n, [ \"row-f2b6_xciv-9h5h\", \"00000000-0000-0000-B91E-A4FB91EB4E46\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DK34)\", \"2010-02-20T00:00:00\", \"20.4\", \"0.333\", \"0.65\", \"4.83\", \"4.54\", \"27.34\", \"N\", \"Apollo\" ]\n, [ \"row-urye~jyaz_vvzc\", \"00000000-0000-0000-8C0E-AFD5A1F23410\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 DM21)\", \"2010-02-16T00:00:00\", \"20.2\", \"0.26\", \"0.98\", \"4.74\", \"4.85\", \"21.15\", \"N\", \"Apollo\" ]\n, [ \"row-f7is_cm6n-a6qv\", \"00000000-0000-0000-7B96-113A5F1ABDBD\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 D4 (WISE)\", \"2010-02-28T00:00:00\", null, \"6.373\", \"7.15\", \"122.19\", \"520.06\", \"105.66\", \"n/a\", \"Comet\" ]\n, [ \"row-ti6n.hcak~i996\", \"00000000-0000-0000-A50D-27AB7C6300A4\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"C/2010 D3 (WISE)\", \"2010-02-26T00:00:00\", null, \"3.586\", \"4.25\", \"23255.11\", \"1254179.62\", \"76.39\", \"n/a\", \"Comet\" ]\n, [ \"row-d4gg.r38a.2d68\", \"00000000-0000-0000-8314-D7C1DB437FEA\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2010 D2 (WISE)\", \"2010-02-25T00:00:00\", null, \"2.945\", \"3.66\", \"9.72\", \"17.3\", \"57.18\", \"n/a\", \"Jupiter-family Comet*\" ]\n, [ \"row-87wx.eqi9_ndfs\", \"00000000-0000-0000-D86F-001F3095E68C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2010 D1 (WISE)\", \"2010-02-17T00:00:00\", null, \"1.683\", \"2.67\", \"5.63\", \"8.45\", \"9.65\", \"n/a\", \"Jupiter-family Comet\" ]\n, [ \"row-pi4r~2v7a.dutu\", \"00000000-0000-0000-A9E9-7DCC97E4CE61\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CN141)\", \"2010-02-14T00:00:00\", \"22.4\", \"0.06\", \"0.91\", \"2.12\", \"1.87\", \"23.8\", \"N\", \"Apollo\" ]\n, [ \"row-ftne~cykg~chhm\", \"00000000-0000-0000-29AB-FB85E0FE31A3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CP140)\", \"2010-02-13T00:00:00\", \"19.5\", \"0.097\", \"0.88\", \"2.92\", \"2.62\", \"14.47\", \"N\", \"Apollo\" ]\n, [ \"row-33rp.sp8w-hhan\", \"00000000-0000-0000-2927-C99332CD6B7C\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CC55)\", \"2010-02-11T00:00:00\", \"22.5\", \"0.079\", \"0.82\", \"2.27\", \"1.92\", \"6.78\", \"N\", \"Apollo\" ]\n, [ \"row-gu7f-bfq6_jmyw\", \"00000000-0000-0000-8460-26925C2D7918\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CA55)\", \"2010-02-05T00:00:00\", \"21.3\", \"0.151\", \"0.67\", \"9.89\", \"12.13\", \"58.85\", \"N\", \"Apollo\" ]\n, [ \"row-hjcx-qfyr~jdzu\", \"00000000-0000-0000-F012-FE76C2B01340\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CH18)\", \"2010-02-09T00:00:00\", \"19\", \"0.333\", \"1.12\", \"4.09\", \"4.21\", \"27.15\", \"N\", \"Amor\" ]\n, [ \"row-akyu-v6qj_pyk6\", \"00000000-0000-0000-F5DB-BBCFC5701F94\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CG18)\", \"2010-02-06T00:00:00\", \"20.8\", \"0.13\", \"1.11\", \"1.76\", \"1.73\", \"10.15\", \"N\", \"Amor\" ]\n, [ \"row-b5q5_gjzb-kw95\", \"00000000-0000-0000-D2BA-3FCC998A36CA\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 CO1)\", \"2010-02-01T00:00:00\", \"21.5\", \"0.023\", \"0.79\", \"1.23\", \"1.02\", \"24.03\", \"Y\", \"Apollo\" ]\n, [ \"row-cg86~wdha_t46w\", \"00000000-0000-0000-D99C-59A3478EA42A\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"P/2010 B2 (WISE)\", \"2010-01-22T00:00:00\", null, \"0.63\", \"1.62\", \"4.6\", \"5.49\", \"8.93\", \"n/a\", \"Encke-type Comet\" ]\n, [ \"row-4apt.53tu~m2ys\", \"00000000-0000-0000-58F8-1A4AF6B70AB2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 AU118)\", \"2010-01-13T00:00:00\", \"17.7\", \"0.147\", \"1.13\", \"2.12\", \"2.06\", \"43.73\", \"N\", \"Amor\" ]\n, [ \"row-ibd2-zykj_b5u5\", \"00000000-0000-0000-40DE-0DE1CA4494E3\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 AG79)\", \"2010-01-13T00:00:00\", \"19.9\", \"0.244\", \"1.22\", \"4.59\", \"4.95\", \"32.96\", \"N\", \"Amor\" ]\n, [ \"row-iqtu_fwvj-d7k5\", \"00000000-0000-0000-B3AE-DD33CC4AEBE2\", 0, 1437412816, null, 1437412816, null, \"{ }\", \"(2010 AB78)\", \"2010-01-12T00:00:00\", \"18.3\", \"0.206\", \"1.02\", \"3.49\", \"3.38\", \"33.26\", \"N\", \"Amor\" ]\n ]\n}"
  },
  {
    "path": "tests/corpus/madrid.json",
    "content": "{\n  \"data\": [\n    {\n      \"municipio_codigo\": \"001\",\n      \"densidad_por_km2\": 3.019213174748399,\n      \"municipio_codigo_ine\": \"280014\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Acebeda (La)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 21.86\n    },\n    {\n      \"municipio_codigo\": \"002\",\n      \"densidad_por_km2\": 225.0,\n      \"municipio_codigo_ine\": \"280029\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Ajalvir\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 19.8\n    },\n    {\n      \"municipio_codigo\": \"003\",\n      \"densidad_por_km2\": 7.743190661478599,\n      \"municipio_codigo_ine\": \"280035\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Alameda del Valle\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 25.7\n    },\n    {\n      \"municipio_codigo\": \"004\",\n      \"densidad_por_km2\": 415.8636363636364,\n      \"municipio_codigo_ine\": \"280040\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Alamo (El)\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 22.0\n    },\n    {\n      \"municipio_codigo\": \"005\",\n      \"densidad_por_km2\": 2205.311542390193,\n      \"municipio_codigo_ine\": \"280053\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Alcalá de Henares\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 88.11000000000004\n    },\n    {\n      \"municipio_codigo\": \"006\",\n      \"densidad_por_km2\": 2538.992042440319,\n      \"municipio_codigo_ine\": \"280066\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"Alcobendas\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 45.23999999999999\n    },\n    {\n      \"municipio_codigo\": \"007\",\n      \"densidad_por_km2\": 5008.668453976766,\n      \"municipio_codigo_ine\": \"280072\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Alcorcón\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 33.56999999999999\n    },\n    {\n      \"municipio_codigo\": \"008\",\n      \"densidad_por_km2\": 50.63879210220674,\n      \"municipio_codigo_ine\": \"280088\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Aldea del Fresno\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 51.66\n    },\n    {\n      \"municipio_codigo\": \"009\",\n      \"densidad_por_km2\": 537.2007366482505,\n      \"municipio_codigo_ine\": \"280091\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"Algete\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 38.01\n    },\n    {\n      \"municipio_codigo\": \"010\",\n      \"densidad_por_km2\": 1124.8025276461294,\n      \"municipio_codigo_ine\": \"280105\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Alpedrete\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 12.66\n    },\n    {\n      \"municipio_codigo\": \"011\",\n      \"densidad_por_km2\": 13.12015503875969,\n      \"municipio_codigo_ine\": \"280112\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Ambite\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 51.6\n    },\n    {\n      \"municipio_codigo\": \"012\",\n      \"densidad_por_km2\": 57.34136174154701,\n      \"municipio_codigo_ine\": \"280127\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Anchuelo\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 21.59\n    },\n    {\n      \"municipio_codigo\": \"013\",\n      \"densidad_por_km2\": 307.9889952912544,\n      \"municipio_codigo_ine\": \"280133\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Aranjuez\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 189.01000000000002\n    },\n    {\n      \"municipio_codigo\": \"014\",\n      \"densidad_por_km2\": 670.4995639715959,\n      \"municipio_codigo_ine\": \"280148\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Arganda del Rey\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 80.27\n    },\n    {\n      \"municipio_codigo\": \"015\",\n      \"densidad_por_km2\": 1401.732435033686,\n      \"municipio_codigo_ine\": \"280151\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Arroyomolinos\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 20.780000000000005\n    },\n    {\n      \"municipio_codigo\": \"016\",\n      \"densidad_por_km2\": 3.4118888498065423,\n      \"municipio_codigo_ine\": \"280164\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Atazar (El)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 28.43\n    },\n    {\n      \"municipio_codigo\": \"017\",\n      \"densidad_por_km2\": 75.374531835206,\n      \"municipio_codigo_ine\": \"280170\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Batres\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 21.36\n    },\n    {\n      \"municipio_codigo\": \"018\",\n      \"densidad_por_km2\": 184.1093117408907,\n      \"municipio_codigo_ine\": \"280186\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Becerril de la Sierra\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 29.64\n    },\n    {\n      \"municipio_codigo\": \"019\",\n      \"densidad_por_km2\": 67.63606148732862,\n      \"municipio_codigo_ine\": \"280199\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Belmonte de Tajo\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 24.07\n    },\n    {\n      \"municipio_codigo\": \"020\",\n      \"densidad_por_km2\": 13.885088919288647,\n      \"municipio_codigo_ine\": \"280203\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Berzosa del Lozoya\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 14.62\n    },\n    {\n      \"municipio_codigo\": \"021\",\n      \"densidad_por_km2\": 26.161971830985916,\n      \"municipio_codigo_ine\": \"280210\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Berrueco (El)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 28.4\n    },\n    {\n      \"municipio_codigo\": \"022\",\n      \"densidad_por_km2\": 1086.1756015196281,\n      \"municipio_codigo_ine\": \"280225\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Boadilla del Monte\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 47.38000000000002\n    },\n    {\n      \"municipio_codigo\": \"023\",\n      \"densidad_por_km2\": 186.751269035533,\n      \"municipio_codigo_ine\": \"280231\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Boalo (El)\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 39.4\n    },\n    {\n      \"municipio_codigo\": \"024\",\n      \"densidad_por_km2\": 8.34336141195347,\n      \"municipio_codigo_ine\": \"280246\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Braojos\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 24.93\n    },\n    {\n      \"municipio_codigo\": \"025\",\n      \"densidad_por_km2\": 12.050078247261347,\n      \"municipio_codigo_ine\": \"280259\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Brea de Tajo\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 44.73\n    },\n    {\n      \"municipio_codigo\": \"026\",\n      \"densidad_por_km2\": 210.96196868008948,\n      \"municipio_codigo_ine\": \"280262\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Brunete\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 49.17\n    },\n    {\n      \"municipio_codigo\": \"027\",\n      \"densidad_por_km2\": 71.52777777777777,\n      \"municipio_codigo_ine\": \"280278\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Buitrago del Lozoya\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 25.92\n    },\n    {\n      \"municipio_codigo\": \"028\",\n      \"densidad_por_km2\": 42.740067699982184,\n      \"municipio_codigo_ine\": \"280284\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Bustarviejo\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 56.13\n    },\n    {\n      \"municipio_codigo\": \"029\",\n      \"densidad_por_km2\": 51.556842867487326,\n      \"municipio_codigo_ine\": \"280297\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Cabanillas de la Sierra\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 13.81\n    },\n    {\n      \"municipio_codigo\": \"030\",\n      \"densidad_por_km2\": 116.07949412827462,\n      \"municipio_codigo_ine\": \"280301\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Cabrera (La)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 22.14\n    },\n    {\n      \"municipio_codigo\": \"031\",\n      \"densidad_por_km2\": 63.81688963210702,\n      \"municipio_codigo_ine\": \"280318\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Cadalso de los Vidrios\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 47.84\n    },\n    {\n      \"municipio_codigo\": \"032\",\n      \"densidad_por_km2\": 201.5362731152205,\n      \"municipio_codigo_ine\": \"280323\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Camarma de Esteruelas\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 35.15\n    },\n    {\n      \"municipio_codigo\": \"033\",\n      \"densidad_por_km2\": 97.08502024291498,\n      \"municipio_codigo_ine\": \"280339\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Campo Real\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 61.75\n    },\n    {\n      \"municipio_codigo\": \"034\",\n      \"densidad_por_km2\": 8.268733850129198,\n      \"municipio_codigo_ine\": \"280344\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Canencia\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 54.18\n    },\n    {\n      \"municipio_codigo\": \"035\",\n      \"densidad_por_km2\": 40.72208228379513,\n      \"municipio_codigo_ine\": \"280357\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Carabaña\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 47.64\n    },\n    {\n      \"municipio_codigo\": \"036\",\n      \"densidad_por_km2\": 684.8030018761726,\n      \"municipio_codigo_ine\": \"280360\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Casarrubuelos\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 5.33\n    },\n    {\n      \"municipio_codigo\": \"037\",\n      \"densidad_por_km2\": 29.06959706959707,\n      \"municipio_codigo_ine\": \"280376\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Cenicientos\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 68.25\n    },\n    {\n      \"municipio_codigo\": \"038\",\n      \"densidad_por_km2\": 167.88339049485546,\n      \"municipio_codigo_ine\": \"280382\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Cercedilla\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 40.82\n    },\n    {\n      \"municipio_codigo\": \"039\",\n      \"densidad_por_km2\": 13.518197573656847,\n      \"municipio_codigo_ine\": \"280395\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Cervera de Buitrago\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 11.54\n    },\n    {\n      \"municipio_codigo\": \"040\",\n      \"densidad_por_km2\": 480.40882412467124,\n      \"municipio_codigo_ine\": \"280409\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Ciempozuelos\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 49.40999999999999\n    },\n    {\n      \"municipio_codigo\": \"041\",\n      \"densidad_por_km2\": 344.54064454064456,\n      \"municipio_codigo_ine\": \"280416\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"Cobeña\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 20.79\n    },\n    {\n      \"municipio_codigo\": \"042\",\n      \"densidad_por_km2\": 33.09673494220239,\n      \"municipio_codigo_ine\": \"280421\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Colmenar del Arroyo\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 49.31\n    },\n    {\n      \"municipio_codigo\": \"043\",\n      \"densidad_por_km2\": 61.82221166785403,\n      \"municipio_codigo_ine\": \"280437\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Colmenar de Oreja\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 126.33000000000001\n    },\n    {\n      \"municipio_codigo\": \"044\",\n      \"densidad_por_km2\": 286.2813591616386,\n      \"municipio_codigo_ine\": \"280442\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Colmenarejo\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 31.490000000000002\n    },\n    {\n      \"municipio_codigo\": \"045\",\n      \"densidad_por_km2\": 265.82458442694656,\n      \"municipio_codigo_ine\": \"280455\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"Colmenar Viejo\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 182.88000000000005\n    },\n    {\n      \"municipio_codigo\": \"046\",\n      \"densidad_por_km2\": 300.405588102749,\n      \"municipio_codigo_ine\": \"280468\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Collado Mediano\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 22.19\n    },\n    {\n      \"municipio_codigo\": \"047\",\n      \"densidad_por_km2\": 2467.3283048828903,\n      \"municipio_codigo_ine\": \"280474\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Collado Villalba\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 25.189999999999998\n    },\n    {\n      \"municipio_codigo\": \"048\",\n      \"densidad_por_km2\": 26.36854279105628,\n      \"municipio_codigo_ine\": \"280480\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Corpa\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 25.94\n    },\n    {\n      \"municipio_codigo\": \"049\",\n      \"densidad_por_km2\": 6906.073211314479,\n      \"municipio_codigo_ine\": \"280493\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Coslada\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 12.019999999999996\n    },\n    {\n      \"municipio_codigo\": \"050\",\n      \"densidad_por_km2\": 474.1660201706749,\n      \"municipio_codigo_ine\": \"280506\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Cubas de la Sagra\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 12.89\n    },\n    {\n      \"municipio_codigo\": \"051\",\n      \"densidad_por_km2\": 87.08414872798434,\n      \"municipio_codigo_ine\": \"280513\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Chapinería\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 25.55\n    },\n    {\n      \"municipio_codigo\": \"052\",\n      \"densidad_por_km2\": 45.254339753001126,\n      \"municipio_codigo_ine\": \"280528\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Chinchón\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 115.78999999999999\n    },\n    {\n      \"municipio_codigo\": \"053\",\n      \"densidad_por_km2\": 232.30414746543775,\n      \"municipio_codigo_ine\": \"280534\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Daganzo de Arriba\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 43.400000000000006\n    },\n    {\n      \"municipio_codigo\": \"054\",\n      \"densidad_por_km2\": 226.15898851911058,\n      \"municipio_codigo_ine\": \"280549\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Escorial (El)\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 68.81\n    },\n    {\n      \"municipio_codigo\": \"055\",\n      \"densidad_por_km2\": 15.935801845065084,\n      \"municipio_codigo_ine\": \"280552\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Estremera\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 79.13\n    },\n    {\n      \"municipio_codigo\": \"056\",\n      \"densidad_por_km2\": 54.69301340860974,\n      \"municipio_codigo_ine\": \"280565\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Fresnedillas de la Oliva\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 28.34\n    },\n    {\n      \"municipio_codigo\": \"057\",\n      \"densidad_por_km2\": 66.61417322834646,\n      \"municipio_codigo_ine\": \"280571\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Fresno de Torote\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 31.75\n    },\n    {\n      \"municipio_codigo\": \"058\",\n      \"densidad_por_km2\": 4968.580908626851,\n      \"municipio_codigo_ine\": \"280587\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Fuenlabrada\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 39.17999999999999\n    },\n    {\n      \"municipio_codigo\": \"059\",\n      \"densidad_por_km2\": 193.78582202111616,\n      \"municipio_codigo_ine\": \"280590\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Fuente el Saz de Jarama\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 33.15\n    },\n    {\n      \"municipio_codigo\": \"060\",\n      \"densidad_por_km2\": 32.901296111665005,\n      \"municipio_codigo_ine\": \"280604\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Fuentidueña de Tajo\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 60.18\n    },\n    {\n      \"municipio_codigo\": \"061\",\n      \"densidad_por_km2\": 504.64723926380367,\n      \"municipio_codigo_ine\": \"280611\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Galapagar\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 65.2\n    },\n    {\n      \"municipio_codigo\": \"062\",\n      \"densidad_por_km2\": 8.207289858666005,\n      \"municipio_codigo_ine\": \"280626\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Garganta de los Montes\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 40.33\n    },\n    {\n      \"municipio_codigo\": \"063\",\n      \"densidad_por_km2\": 13.027295285359802,\n      \"municipio_codigo_ine\": \"280632\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Gargantilla del Lozoya y Pinilla de Buitrago\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 24.18\n    },\n    {\n      \"municipio_codigo\": \"064\",\n      \"densidad_por_km2\": 8.769307424015944,\n      \"municipio_codigo_ine\": \"280647\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Gascones\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 20.07\n    },\n    {\n      \"municipio_codigo\": \"065\",\n      \"densidad_por_km2\": 2268.5837892861678,\n      \"municipio_codigo_ine\": \"280650\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Getafe\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 78.59000000000003\n    },\n    {\n      \"municipio_codigo\": \"066\",\n      \"densidad_por_km2\": 588.6483323581043,\n      \"municipio_codigo_ine\": \"280663\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Griñón\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 17.089999999999996\n    },\n    {\n      \"municipio_codigo\": \"067\",\n      \"densidad_por_km2\": 100.38167938931298,\n      \"municipio_codigo_ine\": \"280679\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Guadalix de la Sierra\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 60.26\n    },\n    {\n      \"municipio_codigo\": \"068\",\n      \"densidad_por_km2\": 273.172437915355,\n      \"municipio_codigo_ine\": \"280685\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Guadarrama\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 57.18000000000001\n    },\n    {\n      \"municipio_codigo\": \"069\",\n      \"densidad_por_km2\": 3.0303030303030303,\n      \"municipio_codigo_ine\": \"280698\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Hiruela (La)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 17.16\n    },\n    {\n      \"municipio_codigo\": \"070\",\n      \"densidad_por_km2\": 6.69811320754717,\n      \"municipio_codigo_ine\": \"280702\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Horcajo de la Sierra-Aoslos\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 21.2\n    },\n    {\n      \"municipio_codigo\": \"071\",\n      \"densidad_por_km2\": 3.692824171212757,\n      \"municipio_codigo_ine\": \"280719\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Horcajuelo de la Sierra\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 23.83\n    },\n    {\n      \"municipio_codigo\": \"072\",\n      \"densidad_por_km2\": 177.5812513818262,\n      \"municipio_codigo_ine\": \"280724\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Hoyo de Manzanares\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 45.230000000000004\n    },\n    {\n      \"municipio_codigo\": \"073\",\n      \"densidad_por_km2\": 997.3041709053919,\n      \"municipio_codigo_ine\": \"280730\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Humanes de Madrid\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 19.659999999999997\n    },\n    {\n      \"municipio_codigo\": \"074\",\n      \"densidad_por_km2\": 4342.354846171637,\n      \"municipio_codigo_ine\": \"280745\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Leganés\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 43.230000000000025\n    },\n    {\n      \"municipio_codigo\": \"075\",\n      \"densidad_por_km2\": 192.35108303249098,\n      \"municipio_codigo_ine\": \"280758\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Loeches\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 44.32\n    },\n    {\n      \"municipio_codigo\": \"076\",\n      \"densidad_por_km2\": 9.68972092217022,\n      \"municipio_codigo_ine\": \"280761\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Lozoya\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 57.69\n    },\n    {\n      \"municipio_codigo\": \"078\",\n      \"densidad_por_km2\": 5.380116959064327,\n      \"municipio_codigo_ine\": \"280783\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Madarcos\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 8.55\n    },\n    {\n      \"municipio_codigo\": \"079\",\n      \"densidad_por_km2\": 5264.0839480038385,\n      \"municipio_codigo_ine\": \"280796\",\n      \"nuts4_nombre\": \"Municipio de Madrid\",\n      \"municipio_nombre\": \"Madrid \",\n      \"nuts4_codigo\": \"01\",\n      \"superficie_km2\": 604.6599999999999\n    },\n    {\n      \"municipio_codigo\": \"080\",\n      \"densidad_por_km2\": 1853.366259422927,\n      \"municipio_codigo_ine\": \"280800\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Majadahonda\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 38.47\n    },\n    {\n      \"municipio_codigo\": \"082\",\n      \"densidad_por_km2\": 66.24581092666199,\n      \"municipio_codigo_ine\": \"280822\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Manzanares el Real\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 128.31\n    },\n    {\n      \"municipio_codigo\": \"083\",\n      \"densidad_por_km2\": 388.4912682507873,\n      \"municipio_codigo_ine\": \"280838\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Meco\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 34.93\n    },\n    {\n      \"municipio_codigo\": \"084\",\n      \"densidad_por_km2\": 1279.8661461238148,\n      \"municipio_codigo_ine\": \"280843\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Mejorada del Campo\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 17.93\n    },\n    {\n      \"municipio_codigo\": \"085\",\n      \"densidad_por_km2\": 103.13829787234042,\n      \"municipio_codigo_ine\": \"280856\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Miraflores de la Sierra\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 56.400000000000006\n    },\n    {\n      \"municipio_codigo\": \"086\",\n      \"densidad_por_km2\": 169.1771269177127,\n      \"municipio_codigo_ine\": \"280869\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Molar (El)\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 50.19\n    },\n    {\n      \"municipio_codigo\": \"087\",\n      \"densidad_por_km2\": 226.77453027139876,\n      \"municipio_codigo_ine\": \"280875\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Molinos (Los)\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 19.16\n    },\n    {\n      \"municipio_codigo\": \"088\",\n      \"densidad_por_km2\": 11.062771908017401,\n      \"municipio_codigo_ine\": \"280881\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Montejo de la Sierra\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 32.18\n    },\n    {\n      \"municipio_codigo\": \"089\",\n      \"densidad_por_km2\": 156.2399743342958,\n      \"municipio_codigo_ine\": \"280894\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Moraleja de Enmedio\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 31.17\n    },\n    {\n      \"municipio_codigo\": \"090\",\n      \"densidad_por_km2\": 286.86868686868684,\n      \"municipio_codigo_ine\": \"280908\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Moralzarzal\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 43.56\n    },\n    {\n      \"municipio_codigo\": \"091\",\n      \"densidad_por_km2\": 165.2020313534997,\n      \"municipio_codigo_ine\": \"280915\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Morata de Tajuña\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 45.28999999999999\n    },\n    {\n      \"municipio_codigo\": \"092\",\n      \"densidad_por_km2\": 4601.0913140311795,\n      \"municipio_codigo_ine\": \"280920\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Móstoles\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 44.90000000000001\n    },\n    {\n      \"municipio_codigo\": \"093\",\n      \"densidad_por_km2\": 105.19810977826245,\n      \"municipio_codigo_ine\": \"280936\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Navacerrada\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 27.51\n    },\n    {\n      \"municipio_codigo\": \"094\",\n      \"densidad_por_km2\": 110.01642036124795,\n      \"municipio_codigo_ine\": \"280941\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Navalafuente\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 12.18\n    },\n    {\n      \"municipio_codigo\": \"095\",\n      \"densidad_por_km2\": 32.24656810982049,\n      \"municipio_codigo_ine\": \"280954\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Navalagamella\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 75.76\n    },\n    {\n      \"municipio_codigo\": \"096\",\n      \"densidad_por_km2\": 273.4034113447044,\n      \"municipio_codigo_ine\": \"280967\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Navalcarnero\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 100.84000000000002\n    },\n    {\n      \"municipio_codigo\": \"097\",\n      \"densidad_por_km2\": 4.6013347383210395,\n      \"municipio_codigo_ine\": \"280973\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Navarredonda y San Mamés\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 28.47\n    },\n    {\n      \"municipio_codigo\": \"099\",\n      \"densidad_por_km2\": 54.4644624826767,\n      \"municipio_codigo_ine\": \"280992\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Navas del Rey\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 50.51\n    },\n    {\n      \"municipio_codigo\": \"100\",\n      \"densidad_por_km2\": 303.0348258706467,\n      \"municipio_codigo_ine\": \"281006\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Nuevo Baztán\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 20.1\n    },\n    {\n      \"municipio_codigo\": \"101\",\n      \"densidad_por_km2\": 20.09685230024213,\n      \"municipio_codigo_ine\": \"281013\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Olmeda de las Fuentes\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 16.52\n    },\n    {\n      \"municipio_codigo\": \"102\",\n      \"densidad_por_km2\": 57.02247191011236,\n      \"municipio_codigo_ine\": \"281028\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Orusco de Tajuña\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 21.36\n    },\n    {\n      \"municipio_codigo\": \"104\",\n      \"densidad_por_km2\": 546.0255824577432,\n      \"municipio_codigo_ine\": \"281049\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Paracuellos de Jarama\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 43.78\n    },\n    {\n      \"municipio_codigo\": \"106\",\n      \"densidad_por_km2\": 5031.894484412471,\n      \"municipio_codigo_ine\": \"281065\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Parla\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 25.019999999999996\n    },\n    {\n      \"municipio_codigo\": \"107\",\n      \"densidad_por_km2\": 15.768463073852296,\n      \"municipio_codigo_ine\": \"281071\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Patones\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 35.07\n    },\n    {\n      \"municipio_codigo\": \"108\",\n      \"densidad_por_km2\": 196.67133847231955,\n      \"municipio_codigo_ine\": \"281087\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Pedrezuela\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 28.54\n    },\n    {\n      \"municipio_codigo\": \"109\",\n      \"densidad_por_km2\": 326.0237780713342,\n      \"municipio_codigo_ine\": \"281090\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Pelayos de la Presa\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 7.57\n    },\n    {\n      \"municipio_codigo\": \"110\",\n      \"densidad_por_km2\": 57.40778479722845,\n      \"municipio_codigo_ine\": \"281104\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Perales de Tajuña\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 49.07\n    },\n    {\n      \"municipio_codigo\": \"111\",\n      \"densidad_por_km2\": 19.57773512476008,\n      \"municipio_codigo_ine\": \"281111\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Pezuela de las Torres\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 41.68\n    },\n    {\n      \"municipio_codigo\": \"112\",\n      \"densidad_por_km2\": 7.269155206286837,\n      \"municipio_codigo_ine\": \"281126\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Pinilla del Valle\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 25.45\n    },\n    {\n      \"municipio_codigo\": \"113\",\n      \"densidad_por_km2\": 813.843175217812,\n      \"municipio_codigo_ine\": \"281132\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Pinto\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 61.98000000000001\n    },\n    {\n      \"municipio_codigo\": \"114\",\n      \"densidad_por_km2\": 10.032894736842106,\n      \"municipio_codigo_ine\": \"281147\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Piñuecar-Gandullas\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 18.24\n    },\n    {\n      \"municipio_codigo\": \"115\",\n      \"densidad_por_km2\": 1986.1948955916469,\n      \"municipio_codigo_ine\": \"281150\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Pozuelo de Alarcón\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 43.10000000000001\n    },\n    {\n      \"municipio_codigo\": \"116\",\n      \"densidad_por_km2\": 35.55483662245228,\n      \"municipio_codigo_ine\": \"281163\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Pozuelo del Rey\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 30.91\n    },\n    {\n      \"municipio_codigo\": \"117\",\n      \"densidad_por_km2\": 5.866666666666666,\n      \"municipio_codigo_ine\": \"281179\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Prádena del Rincón\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 22.5\n    },\n    {\n      \"municipio_codigo\": \"118\",\n      \"densidad_por_km2\": 1.0760275180807903,\n      \"municipio_codigo_ine\": \"281185\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Puebla de la Sierra\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 56.69\n    },\n    {\n      \"municipio_codigo\": \"119\",\n      \"densidad_por_km2\": 127.80373831775701,\n      \"municipio_codigo_ine\": \"281198\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Quijorna\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 25.68\n    },\n    {\n      \"municipio_codigo\": \"120\",\n      \"densidad_por_km2\": 11.20042872454448,\n      \"municipio_codigo_ine\": \"281202\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Rascafría\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 149.28\n    },\n    {\n      \"municipio_codigo\": \"121\",\n      \"densidad_por_km2\": 19.033000767459708,\n      \"municipio_codigo_ine\": \"281219\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Redueña\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 13.03\n    },\n    {\n      \"municipio_codigo\": \"122\",\n      \"densidad_por_km2\": 21.828358208955226,\n      \"municipio_codigo_ine\": \"281224\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Ribatejada\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 32.16\n    },\n    {\n      \"municipio_codigo\": \"123\",\n      \"densidad_por_km2\": 1242.2808838795786,\n      \"municipio_codigo_ine\": \"281230\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Rivas-Vaciamadrid\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 67.43\n    },\n    {\n      \"municipio_codigo\": \"124\",\n      \"densidad_por_km2\": 4.138915318744053,\n      \"municipio_codigo_ine\": \"281245\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Robledillo de la Jara\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 21.02\n    },\n    {\n      \"municipio_codigo\": \"125\",\n      \"densidad_por_km2\": 43.2607541157727,\n      \"municipio_codigo_ine\": \"281258\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Robledo de Chavela\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 94.15\n    },\n    {\n      \"municipio_codigo\": \"126\",\n      \"densidad_por_km2\": 2.3978201634877383,\n      \"municipio_codigo_ine\": \"281261\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Robregordo\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 18.35\n    },\n    {\n      \"municipio_codigo\": \"127\",\n      \"densidad_por_km2\": 1631.2800274536714,\n      \"municipio_codigo_ine\": \"281277\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Rozas de Madrid (Las)\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 58.280000000000015\n    },\n    {\n      \"municipio_codigo\": \"128\",\n      \"densidad_por_km2\": 18.071065989847714,\n      \"municipio_codigo_ine\": \"281283\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Rozas de Puerto Real\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 29.55\n    },\n    {\n      \"municipio_codigo\": \"129\",\n      \"densidad_por_km2\": 342.8309785452642,\n      \"municipio_codigo_ine\": \"281296\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"San Agustín del Guadalix\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 38.220000000000006\n    },\n    {\n      \"municipio_codigo\": \"130\",\n      \"densidad_por_km2\": 1021.6529351184345,\n      \"municipio_codigo_ine\": \"281300\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"San Fernando de Henares\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 38.84\n    },\n    {\n      \"municipio_codigo\": \"131\",\n      \"densidad_por_km2\": 319.68783256473927,\n      \"municipio_codigo_ine\": \"281317\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"San Lorenzo de El Escorial\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 56.379999999999995\n    },\n    {\n      \"municipio_codigo\": \"132\",\n      \"densidad_por_km2\": 179.1056137012369,\n      \"municipio_codigo_ine\": \"281322\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"San Martín de la Vega\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 105.10000000000001\n    },\n    {\n      \"municipio_codigo\": \"133\",\n      \"densidad_por_km2\": 71.2764129874592,\n      \"municipio_codigo_ine\": \"281338\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"San Martín de Valdeiglesias\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 116.42\n    },\n    {\n      \"municipio_codigo\": \"134\",\n      \"densidad_por_km2\": 1467.1235194585447,\n      \"municipio_codigo_ine\": \"281343\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"San Sebastián de los Reyes\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 59.10000000000001\n    },\n    {\n      \"municipio_codigo\": \"135\",\n      \"densidad_por_km2\": 15.371398361089083,\n      \"municipio_codigo_ine\": \"281356\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Santa María de la Alameda\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 75.66\n    },\n    {\n      \"municipio_codigo\": \"136\",\n      \"densidad_por_km2\": 30.33309709425939,\n      \"municipio_codigo_ine\": \"281369\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Santorcaz\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 28.22\n    },\n    {\n      \"municipio_codigo\": \"137\",\n      \"densidad_por_km2\": 71.3957495692131,\n      \"municipio_codigo_ine\": \"281375\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Santos de la Humosa (Los)\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 34.82\n    },\n    {\n      \"municipio_codigo\": \"138\",\n      \"densidad_por_km2\": 13.224637681159422,\n      \"municipio_codigo_ine\": \"281381\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Serna del Monte (La)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 5.52\n    },\n    {\n      \"municipio_codigo\": \"140\",\n      \"densidad_por_km2\": 298.4951091045899,\n      \"municipio_codigo_ine\": \"281408\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Serranillos del Valle\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 13.29\n    },\n    {\n      \"municipio_codigo\": \"141\",\n      \"densidad_por_km2\": 367.54244139046074,\n      \"municipio_codigo_ine\": \"281415\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Sevilla la Nueva\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 24.740000000000002\n    },\n    {\n      \"municipio_codigo\": \"143\",\n      \"densidad_por_km2\": 3.774509803921569,\n      \"municipio_codigo_ine\": \"281436\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Somosierra\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 20.4\n    },\n    {\n      \"municipio_codigo\": \"144\",\n      \"densidad_por_km2\": 200.9103641456583,\n      \"municipio_codigo_ine\": \"281441\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Soto del Real\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 42.839999999999996\n    },\n    {\n      \"municipio_codigo\": \"145\",\n      \"densidad_por_km2\": 92.85343035343035,\n      \"municipio_codigo_ine\": \"281454\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Talamanca de Jarama\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 38.48\n    },\n    {\n      \"municipio_codigo\": \"146\",\n      \"densidad_por_km2\": 98.1941309255079,\n      \"municipio_codigo_ine\": \"281467\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Tielmes\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 26.58\n    },\n    {\n      \"municipio_codigo\": \"147\",\n      \"densidad_por_km2\": 126.01384767556875,\n      \"municipio_codigo_ine\": \"281473\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Titulcia\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 10.11\n    },\n    {\n      \"municipio_codigo\": \"148\",\n      \"densidad_por_km2\": 3948.581122763726,\n      \"municipio_codigo_ine\": \"281489\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Torrejón de Ardoz\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 32.42\n    },\n    {\n      \"municipio_codigo\": \"149\",\n      \"densidad_por_km2\": 938.4615384615383,\n      \"municipio_codigo_ine\": \"281492\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Torrejón de la Calzada\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 8.97\n    },\n    {\n      \"municipio_codigo\": \"150\",\n      \"densidad_por_km2\": 81.6909509202454,\n      \"municipio_codigo_ine\": \"281505\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Torrejón de Velasco\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 52.16\n    },\n    {\n      \"municipio_codigo\": \"151\",\n      \"densidad_por_km2\": 109.42870413376683,\n      \"municipio_codigo_ine\": \"281512\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Torrelaguna\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 43.06\n    },\n    {\n      \"municipio_codigo\": \"152\",\n      \"densidad_por_km2\": 1067.2819566220583,\n      \"municipio_codigo_ine\": \"281527\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Torrelodones\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 21.669999999999998\n    },\n    {\n      \"municipio_codigo\": \"153\",\n      \"densidad_por_km2\": 49.94697773064687,\n      \"municipio_codigo_ine\": \"281533\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Torremocha de Jarama\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 18.86\n    },\n    {\n      \"municipio_codigo\": \"154\",\n      \"densidad_por_km2\": 180.5491462851869,\n      \"municipio_codigo_ine\": \"281548\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Torres de la Alameda\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 43.339999999999996\n    },\n    {\n      \"municipio_codigo\": \"155\",\n      \"densidad_por_km2\": 10.078369905956114,\n      \"municipio_codigo_ine\": \"281551\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Valdaracete\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 63.8\n    },\n    {\n      \"municipio_codigo\": \"156\",\n      \"densidad_por_km2\": 77.4986638161411,\n      \"municipio_codigo_ine\": \"281564\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Valdeavero\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 18.71\n    },\n    {\n      \"municipio_codigo\": \"157\",\n      \"densidad_por_km2\": 20.515854235683864,\n      \"municipio_codigo_ine\": \"281570\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Valdelaguna\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 42.26\n    },\n    {\n      \"municipio_codigo\": \"158\",\n      \"densidad_por_km2\": 51.48960089938168,\n      \"municipio_codigo_ine\": \"281586\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Valdemanco\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 17.79\n    },\n    {\n      \"municipio_codigo\": \"159\",\n      \"densidad_por_km2\": 14.829117590268392,\n      \"municipio_codigo_ine\": \"281599\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Valdemaqueda\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 51.79\n    },\n    {\n      \"municipio_codigo\": \"160\",\n      \"densidad_por_km2\": 131.13006396588486,\n      \"municipio_codigo_ine\": \"281603\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Valdemorillo\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 93.8\n    },\n    {\n      \"municipio_codigo\": \"161\",\n      \"densidad_por_km2\": 1152.992518703242,\n      \"municipio_codigo_ine\": \"281610\",\n      \"nuts4_nombre\": \"Sur Metropolitano\",\n      \"municipio_nombre\": \"Valdemoro\",\n      \"nuts4_codigo\": \"04\",\n      \"superficie_km2\": 64.16\n    },\n    {\n      \"municipio_codigo\": \"162\",\n      \"densidad_por_km2\": 151.1609907120743,\n      \"municipio_codigo_ine\": \"281625\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Valdeolmos-Alalpardo\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 25.84\n    },\n    {\n      \"municipio_codigo\": \"163\",\n      \"densidad_por_km2\": 33.23895809739524,\n      \"municipio_codigo_ine\": \"281631\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Valdepiélagos\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 17.66\n    },\n    {\n      \"municipio_codigo\": \"164\",\n      \"densidad_por_km2\": 123.0681494154548,\n      \"municipio_codigo_ine\": \"281646\",\n      \"nuts4_nombre\": \"Nordeste Comunidad\",\n      \"municipio_nombre\": \"Valdetorres de Jarama\",\n      \"nuts4_codigo\": \"07\",\n      \"superficie_km2\": 35.07\n    },\n    {\n      \"municipio_codigo\": \"165\",\n      \"densidad_por_km2\": 64.71693680996006,\n      \"municipio_codigo_ine\": \"281659\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Valdilecha\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 42.57\n    },\n    {\n      \"municipio_codigo\": \"166\",\n      \"densidad_por_km2\": 31.077147016011644,\n      \"municipio_codigo_ine\": \"281662\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Valverde de Alcalá\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 13.74\n    },\n    {\n      \"municipio_codigo\": \"167\",\n      \"densidad_por_km2\": 842.7974947807934,\n      \"municipio_codigo_ine\": \"281678\",\n      \"nuts4_nombre\": \"Este Metropolitano\",\n      \"municipio_nombre\": \"Velilla de San Antonio\",\n      \"nuts4_codigo\": \"03\",\n      \"superficie_km2\": 14.37\n    },\n    {\n      \"municipio_codigo\": \"168\",\n      \"densidad_por_km2\": 54.762615706180945,\n      \"municipio_codigo_ine\": \"281684\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Vellón (El)\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 33.49\n    },\n    {\n      \"municipio_codigo\": \"169\",\n      \"densidad_por_km2\": 198.825831702544,\n      \"municipio_codigo_ine\": \"281697\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Venturada\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 10.22\n    },\n    {\n      \"municipio_codigo\": \"170\",\n      \"densidad_por_km2\": 100.69131349564174,\n      \"municipio_codigo_ine\": \"281701\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Villaconejos\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 33.269999999999996\n    },\n    {\n      \"municipio_codigo\": \"171\",\n      \"densidad_por_km2\": 82.01112980458133,\n      \"municipio_codigo_ine\": \"281718\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Villa del Prado\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 77.27000000000001\n    },\n    {\n      \"municipio_codigo\": \"172\",\n      \"densidad_por_km2\": 375.5184331797235,\n      \"municipio_codigo_ine\": \"281723\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Villalbilla\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 34.72\n    },\n    {\n      \"municipio_codigo\": \"173\",\n      \"densidad_por_km2\": 23.46179851250845,\n      \"municipio_codigo_ine\": \"281739\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Villamanrique de Tajo\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 29.58\n    },\n    {\n      \"municipio_codigo\": \"174\",\n      \"densidad_por_km2\": 39.39585639727977,\n      \"municipio_codigo_ine\": \"281744\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Villamanta\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 63.23\n    },\n    {\n      \"municipio_codigo\": \"175\",\n      \"densidad_por_km2\": 57.775919732441466,\n      \"municipio_codigo_ine\": \"281757\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Villamantilla\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 23.92\n    },\n    {\n      \"municipio_codigo\": \"176\",\n      \"densidad_por_km2\": 584.5799769850403,\n      \"municipio_codigo_ine\": \"281760\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Villanueva de la Cañada\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 34.76\n    },\n    {\n      \"municipio_codigo\": \"177\",\n      \"densidad_por_km2\": 669.4848604011011,\n      \"municipio_codigo_ine\": \"281776\",\n      \"nuts4_nombre\": \"Sierra Central\",\n      \"municipio_nombre\": \"Villanueva del Pardillo\",\n      \"nuts4_codigo\": \"11\",\n      \"superficie_km2\": 25.43\n    },\n    {\n      \"municipio_codigo\": \"178\",\n      \"densidad_por_km2\": 48.329621380846326,\n      \"municipio_codigo_ine\": \"281782\",\n      \"nuts4_nombre\": \"Sudoeste Comunidad\",\n      \"municipio_nombre\": \"Villanueva de Perales\",\n      \"nuts4_codigo\": \"09\",\n      \"superficie_km2\": 31.43\n    },\n    {\n      \"municipio_codigo\": \"179\",\n      \"densidad_por_km2\": 71.88624910007199,\n      \"municipio_codigo_ine\": \"281795\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Villar del Olmo\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 27.78\n    },\n    {\n      \"municipio_codigo\": \"180\",\n      \"densidad_por_km2\": 60.88235294117647,\n      \"municipio_codigo_ine\": \"281809\",\n      \"nuts4_nombre\": \"Sudeste Comunidad\",\n      \"municipio_nombre\": \"Villarejo de Salvanés\",\n      \"nuts4_codigo\": \"08\",\n      \"superficie_km2\": 119.0\n    },\n    {\n      \"municipio_codigo\": \"181\",\n      \"densidad_por_km2\": 403.28445747800583,\n      \"municipio_codigo_ine\": \"281816\",\n      \"nuts4_nombre\": \"Oeste Metropolitano\",\n      \"municipio_nombre\": \"Villaviciosa de Odón\",\n      \"nuts4_codigo\": \"05\",\n      \"superficie_km2\": 68.2\n    },\n    {\n      \"municipio_codigo\": \"182\",\n      \"densidad_por_km2\": 11.459227467811159,\n      \"municipio_codigo_ine\": \"281821\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Villavieja del Lozoya\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 23.3\n    },\n    {\n      \"municipio_codigo\": \"183\",\n      \"densidad_por_km2\": 79.08820614469772,\n      \"municipio_codigo_ine\": \"281837\",\n      \"nuts4_nombre\": \"Sierra Sur\",\n      \"municipio_nombre\": \"Zarzalejo\",\n      \"nuts4_codigo\": \"10\",\n      \"superficie_km2\": 20.18\n    },\n    {\n      \"municipio_codigo\": \"901\",\n      \"densidad_por_km2\": 24.052109663620456,\n      \"municipio_codigo_ine\": \"289015\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Lozoyuela-Navas-Sieteiglesias\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 51.43\n    },\n    {\n      \"municipio_codigo\": \"902\",\n      \"densidad_por_km2\": 10.796036897847626,\n      \"municipio_codigo_ine\": \"289020\",\n      \"nuts4_nombre\": \"Sierra Norte\",\n      \"municipio_nombre\": \"Puentes Viejas\",\n      \"nuts4_codigo\": \"06\",\n      \"superficie_km2\": 58.54\n    },\n    {\n      \"municipio_codigo\": \"903\",\n      \"densidad_por_km2\": 1213.333333333333,\n      \"municipio_codigo_ine\": \"289036\",\n      \"nuts4_nombre\": \"Norte Metropolitano\",\n      \"municipio_nombre\": \"Tres Cantos\",\n      \"nuts4_codigo\": \"02\",\n      \"superficie_km2\": 37.95000000000001\n    }\n  ]\n}"
  },
  {
    "path": "tests/corpus/meteorites.json",
    "content": "[{\"name\":\"Aachen\",\"id\":\"1\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"21\",\"fall\":\"Fell\",\"year\":\"1880-01-01T00:00:00.000\",\"reclat\":\"50.775000\",\"reclong\":\"6.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.08333,50.775]}}\n,{\"name\":\"Aarhus\",\"id\":\"2\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"720\",\"fall\":\"Fell\",\"year\":\"1951-01-01T00:00:00.000\",\"reclat\":\"56.183330\",\"reclong\":\"10.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.23333,56.18333]}}\n,{\"name\":\"Abee\",\"id\":\"6\",\"nametype\":\"Valid\",\"recclass\":\"EH4\",\"mass\":\"107000\",\"fall\":\"Fell\",\"year\":\"1952-01-01T00:00:00.000\",\"reclat\":\"54.216670\",\"reclong\":\"-113.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-113,54.21667]}}\n,{\"name\":\"Acapulco\",\"id\":\"10\",\"nametype\":\"Valid\",\"recclass\":\"Acapulcoite\",\"mass\":\"1914\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"16.883330\",\"reclong\":\"-99.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.9,16.88333]}}\n,{\"name\":\"Achiras\",\"id\":\"370\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"780\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"-33.166670\",\"reclong\":\"-64.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-64.95,-33.16667]}}\n,{\"name\":\"Adhi Kot\",\"id\":\"379\",\"nametype\":\"Valid\",\"recclass\":\"EH4\",\"mass\":\"4239\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"32.100000\",\"reclong\":\"71.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[71.8,32.1]}}\n,{\"name\":\"Adzhi-Bogdo (stone)\",\"id\":\"390\",\"nametype\":\"Valid\",\"recclass\":\"LL3-6\",\"mass\":\"910\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"44.833330\",\"reclong\":\"95.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[95.16667,44.83333]}}\n,{\"name\":\"Agen\",\"id\":\"392\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"30000\",\"fall\":\"Fell\",\"year\":\"1814-01-01T00:00:00.000\",\"reclat\":\"44.216670\",\"reclong\":\"0.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.61667,44.21667]}}\n,{\"name\":\"Aguada\",\"id\":\"398\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1620\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"-31.600000\",\"reclong\":\"-65.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-65.23333,-31.6]}}\n,{\"name\":\"Aguila Blanca\",\"id\":\"417\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"1440\",\"fall\":\"Fell\",\"year\":\"1920-01-01T00:00:00.000\",\"reclat\":\"-30.866670\",\"reclong\":\"-64.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-64.55,-30.86667]}}\n,{\"name\":\"Aioun el Atrouss\",\"id\":\"423\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite-pm\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"16.398060\",\"reclong\":\"-9.570280\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-9.57028,16.39806]}}\n,{\"name\":\"Aïr\",\"id\":\"424\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"24000\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"19.083330\",\"reclong\":\"8.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.38333,19.08333]}}\n,{\"name\":\"Aire-sur-la-Lys\",\"id\":\"425\",\"nametype\":\"Valid\",\"recclass\":\"Unknown\",\"fall\":\"Fell\",\"year\":\"1769-01-01T00:00:00.000\",\"reclat\":\"50.666670\",\"reclong\":\"2.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[2.33333,50.66667]}}\n,{\"name\":\"Akaba\",\"id\":\"426\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"779\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"29.516670\",\"reclong\":\"35.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.05,29.51667]}}\n,{\"name\":\"Akbarpur\",\"id\":\"427\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"1800\",\"fall\":\"Fell\",\"year\":\"1838-01-01T00:00:00.000\",\"reclat\":\"29.716670\",\"reclong\":\"77.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.95,29.71667]}}\n,{\"name\":\"Akwanga\",\"id\":\"432\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1959-01-01T00:00:00.000\",\"reclat\":\"8.916670\",\"reclong\":\"8.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.43333,8.91667]}}\n,{\"name\":\"Akyumak\",\"id\":\"433\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IVA\",\"mass\":\"50000\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"39.916670\",\"reclong\":\"42.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[42.81667,39.91667]}}\n,{\"name\":\"Al Rais\",\"id\":\"446\",\"nametype\":\"Valid\",\"recclass\":\"CR2-an\",\"mass\":\"160\",\"fall\":\"Fell\",\"year\":\"1957-01-01T00:00:00.000\",\"reclat\":\"24.416670\",\"reclong\":\"39.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[39.51667,24.41667]}}\n,{\"name\":\"Al Zarnkh\",\"id\":\"447\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"700\",\"fall\":\"Fell\",\"year\":\"2001-01-01T00:00:00.000\",\"reclat\":\"13.660330\",\"reclong\":\"28.960000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28.96,13.66033]}}\n,{\"name\":\"Alais\",\"id\":\"448\",\"nametype\":\"Valid\",\"recclass\":\"CI1\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1806-01-01T00:00:00.000\",\"reclat\":\"44.116670\",\"reclong\":\"4.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4.08333,44.11667]}}\n,{\"name\":\"Albareto\",\"id\":\"453\",\"nametype\":\"Valid\",\"recclass\":\"L/LL4\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1766-01-01T00:00:00.000\",\"reclat\":\"44.650000\",\"reclong\":\"11.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.01667,44.65]}}\n,{\"name\":\"Alberta\",\"id\":\"454\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"625\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"2.000000\",\"reclong\":\"22.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.66667,2]}}\n,{\"name\":\"Alby sur Chéran\",\"id\":\"458\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"252\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"45.821330\",\"reclong\":\"6.015330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.01533,45.82133]}}\n,{\"name\":\"Aldsworth\",\"id\":\"461\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"700\",\"fall\":\"Fell\",\"year\":\"1835-01-01T00:00:00.000\",\"reclat\":\"51.783330\",\"reclong\":\"-1.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.78333,51.78333]}}\n,{\"name\":\"Aleppo\",\"id\":\"462\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1873-01-01T00:00:00.000\",\"reclat\":\"36.233330\",\"reclong\":\"37.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.13333,36.23333]}}\n,{\"name\":\"Alessandria\",\"id\":\"463\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"908\",\"fall\":\"Fell\",\"year\":\"1860-01-01T00:00:00.000\",\"reclat\":\"44.883330\",\"reclong\":\"8.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.75,44.88333]}}\n,{\"name\":\"Alexandrovsky\",\"id\":\"465\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"9251\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"50.950000\",\"reclong\":\"31.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.81667,50.95]}}\n,{\"name\":\"Alfianello\",\"id\":\"466\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"228000\",\"fall\":\"Fell\",\"year\":\"1883-01-01T00:00:00.000\",\"reclat\":\"45.266670\",\"reclong\":\"10.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.15,45.26667]}}\n,{\"name\":\"Allegan\",\"id\":\"2276\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"32000\",\"fall\":\"Fell\",\"year\":\"1899-01-01T00:00:00.000\",\"reclat\":\"42.533330\",\"reclong\":\"-85.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-85.88333,42.53333]},\":@computed_region_cbhk_fwbd\":\"50\",\":@computed_region_nnqa_25f4\":\"429\"}\n,{\"name\":\"Allende\",\"id\":\"2278\",\"nametype\":\"Valid\",\"recclass\":\"CV3\",\"mass\":\"2000000\",\"fall\":\"Fell\",\"year\":\"1969-01-01T00:00:00.000\",\"reclat\":\"26.966670\",\"reclong\":\"-105.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-105.31667,26.96667]}}\n,{\"name\":\"Almahata Sitta\",\"id\":\"48915\",\"nametype\":\"Valid\",\"recclass\":\"Ureilite-an\",\"mass\":\"3950\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"20.745750\",\"reclong\":\"32.412750\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[32.41275,20.74575]}}\n,{\"name\":\"Alta'ameem\",\"id\":\"2284\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"35.273330\",\"reclong\":\"44.215560\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[44.21556,35.27333]}}\n,{\"name\":\"Ambapur Nagla\",\"id\":\"2290\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"6400\",\"fall\":\"Fell\",\"year\":\"1895-01-01T00:00:00.000\",\"reclat\":\"27.666670\",\"reclong\":\"78.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.25,27.66667]}}\n,{\"name\":\"Andhara\",\"id\":\"2294\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"2700\",\"fall\":\"Fell\",\"year\":\"1880-01-01T00:00:00.000\",\"reclat\":\"26.583330\",\"reclong\":\"85.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[85.56667,26.58333]}}\n,{\"name\":\"Andover\",\"id\":\"2295\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1898-01-01T00:00:00.000\",\"reclat\":\"44.616670\",\"reclong\":\"-70.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-70.75,44.61667]},\":@computed_region_cbhk_fwbd\":\"49\",\":@computed_region_nnqa_25f4\":\"1723\"}\n,{\"name\":\"Andreevka\",\"id\":\"2296\",\"nametype\":\"Valid\",\"recclass\":\"L3\",\"mass\":\"600\",\"fall\":\"Fell\",\"year\":\"1969-01-01T00:00:00.000\",\"reclat\":\"48.700000\",\"reclong\":\"37.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.5,48.7]}}\n,{\"name\":\"Andura\",\"id\":\"2298\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"17900\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"20.883330\",\"reclong\":\"76.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.86667,20.88333]}}\n,{\"name\":\"Northwest Africa 5815\",\"id\":\"50693\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"256.8\",\"fall\":\"Found\",\"reclat\":\"0.000000\",\"reclong\":\"0.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0,0]}}\n,{\"name\":\"Angers\",\"id\":\"2301\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"fall\":\"Fell\",\"year\":\"1822-01-01T00:00:00.000\",\"reclat\":\"47.466670\",\"reclong\":\"-0.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.55,47.46667]}}\n,{\"name\":\"Angra dos Reis (stone)\",\"id\":\"2302\",\"nametype\":\"Valid\",\"recclass\":\"Angrite\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1869-01-01T00:00:00.000\",\"reclat\":\"-22.966670\",\"reclong\":\"-44.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-44.31667,-22.96667]}}\n,{\"name\":\"Ankober\",\"id\":\"2304\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"6500\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"9.533330\",\"reclong\":\"39.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[39.71667,9.53333]}}\n,{\"name\":\"Anlong\",\"id\":\"2305\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1971-01-01T00:00:00.000\",\"reclat\":\"25.150000\",\"reclong\":\"105.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[105.18333,25.15]}}\n,{\"name\":\"Aomori\",\"id\":\"2313\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"320\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"40.810560\",\"reclong\":\"140.785560\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[140.78556,40.81056]}}\n,{\"name\":\"Appley Bridge\",\"id\":\"2318\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"15000\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"53.583330\",\"reclong\":\"-2.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-2.71667,53.58333]}}\n,{\"name\":\"Apt\",\"id\":\"2320\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1803-01-01T00:00:00.000\",\"reclat\":\"43.866670\",\"reclong\":\"5.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.38333,43.86667]}}\n,{\"name\":\"Arbol Solo\",\"id\":\"2325\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"810\",\"fall\":\"Fell\",\"year\":\"1954-01-01T00:00:00.000\",\"reclat\":\"-33.000000\",\"reclong\":\"-66.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-66,-33]}}\n,{\"name\":\"Archie\",\"id\":\"2329\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"5070\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"38.500000\",\"reclong\":\"-94.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-94.3,38.5]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"2697\"}\n,{\"name\":\"Arroyo Aguiar\",\"id\":\"2340\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"7450\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"-31.416670\",\"reclong\":\"-60.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-60.66667,-31.41667]}}\n,{\"name\":\"Asco\",\"id\":\"2345\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"41\",\"fall\":\"Fell\",\"year\":\"1805-01-01T00:00:00.000\",\"reclat\":\"42.450000\",\"reclong\":\"9.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.03333,42.45]}}\n,{\"name\":\"Ash Creek\",\"id\":\"48954\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"9500\",\"fall\":\"Fell\",\"year\":\"2009-01-01T00:00:00.000\",\"reclat\":\"31.805000\",\"reclong\":\"-97.010000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-97.01,31.805]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"774\"}\n,{\"name\":\"Ashdon\",\"id\":\"2346\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1300\",\"fall\":\"Fell\",\"year\":\"1923-01-01T00:00:00.000\",\"reclat\":\"52.050000\",\"reclong\":\"0.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.3,52.05]}}\n,{\"name\":\"Assisi\",\"id\":\"2353\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"43.033330\",\"reclong\":\"12.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.55,43.03333]}}\n,{\"name\":\"Atarra\",\"id\":\"4883\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"1280\",\"fall\":\"Fell\",\"year\":\"1920-01-01T00:00:00.000\",\"reclat\":\"25.254170\",\"reclong\":\"80.625000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[80.625,25.25417]}}\n,{\"name\":\"Atemajac\",\"id\":\"4884\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"94.2\",\"fall\":\"Fell\",\"year\":\"1896-01-01T00:00:00.000\",\"reclat\":\"20.066670\",\"reclong\":\"-103.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.66667,20.06667]}}\n,{\"name\":\"Athens\",\"id\":\"4885\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"265\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"34.750000\",\"reclong\":\"-87.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87,34.75]},\":@computed_region_cbhk_fwbd\":\"29\",\":@computed_region_nnqa_25f4\":\"3134\"}\n,{\"name\":\"Atoka\",\"id\":\"4888\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1384.2\",\"fall\":\"Fell\",\"year\":\"1945-01-01T00:00:00.000\",\"reclat\":\"34.316670\",\"reclong\":\"-96.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96.15,34.31667]},\":@computed_region_cbhk_fwbd\":\"20\",\":@computed_region_nnqa_25f4\":\"602\"}\n,{\"name\":\"Aubres\",\"id\":\"4893\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"800\",\"fall\":\"Fell\",\"year\":\"1836-01-01T00:00:00.000\",\"reclat\":\"44.383330\",\"reclong\":\"5.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.16667,44.38333]}}\n,{\"name\":\"Aumale\",\"id\":\"4899\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"50000\",\"fall\":\"Fell\",\"year\":\"1865-01-01T00:00:00.000\",\"reclat\":\"36.166670\",\"reclong\":\"3.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.66667,36.16667]}}\n,{\"name\":\"Aumieres\",\"id\":\"4900\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1842-01-01T00:00:00.000\",\"reclat\":\"44.333330\",\"reclong\":\"3.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.23333,44.33333]}}\n,{\"name\":\"Ausson\",\"id\":\"4903\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"50000\",\"fall\":\"Fell\",\"year\":\"1858-01-01T00:00:00.000\",\"reclat\":\"43.083330\",\"reclong\":\"0.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.58333,43.08333]}}\n,{\"name\":\"Avanhandava\",\"id\":\"4905\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"9330\",\"fall\":\"Fell\",\"year\":\"1952-01-01T00:00:00.000\",\"reclat\":\"-21.460280\",\"reclong\":\"-49.950830\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-49.95083,-21.46028]}}\n,{\"name\":\"Avce\",\"id\":\"4906\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIAB\",\"mass\":\"1230\",\"fall\":\"Fell\",\"year\":\"1908-01-01T00:00:00.000\",\"reclat\":\"46.000000\",\"reclong\":\"13.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.5,46]}}\n,{\"name\":\"Avilez\",\"id\":\"4907\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"146\",\"fall\":\"Fell\",\"year\":\"1855-01-01T00:00:00.000\",\"reclat\":\"25.000000\",\"reclong\":\"-103.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.5,25]}}\n,{\"name\":\"Awere\",\"id\":\"4910\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"134\",\"fall\":\"Fell\",\"year\":\"1968-01-01T00:00:00.000\",\"reclat\":\"2.716670\",\"reclong\":\"32.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[32.83333,2.71667]}}\n,{\"name\":\"Aztec\",\"id\":\"4913\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2830\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"36.800000\",\"reclong\":\"-108.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-108,36.8]},\":@computed_region_cbhk_fwbd\":\"11\",\":@computed_region_nnqa_25f4\":\"1989\"}\n,{\"name\":\"Bachmut\",\"id\":\"4917\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"18000\",\"fall\":\"Fell\",\"year\":\"1814-01-01T00:00:00.000\",\"reclat\":\"48.600000\",\"reclong\":\"38.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[38,48.6]}}\n,{\"name\":\"Bahjoi\",\"id\":\"4922\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-sLL\",\"mass\":\"10322\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"28.483330\",\"reclong\":\"78.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.5,28.48333]}}\n,{\"name\":\"Bald Mountain\",\"id\":\"4925\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"3700\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"35.966670\",\"reclong\":\"-82.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-82.48333,35.96667]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"2373\"}\n,{\"name\":\"Baldwyn\",\"id\":\"4926\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"345\",\"fall\":\"Fell\",\"year\":\"1922-01-01T00:00:00.000\",\"reclat\":\"34.500000\",\"reclong\":\"-88.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-88.66667,34.5]},\":@computed_region_cbhk_fwbd\":\"32\",\":@computed_region_nnqa_25f4\":\"495\"}\n,{\"name\":\"Bali\",\"id\":\"4928\",\"nametype\":\"Valid\",\"recclass\":\"CV3\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1907-01-01T00:00:00.000\",\"reclat\":\"5.383330\",\"reclong\":\"16.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.38333,5.38333]}}\n,{\"name\":\"Ban Rong Du\",\"id\":\"4934\",\"nametype\":\"Valid\",\"recclass\":\"Iron, ungrouped\",\"mass\":\"16700\",\"fall\":\"Fell\",\"year\":\"1993-01-01T00:00:00.000\",\"reclat\":\"16.666670\",\"reclong\":\"101.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[101.18333,16.66667]}}\n,{\"name\":\"Bandong\",\"id\":\"4935\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"11500\",\"fall\":\"Fell\",\"year\":\"1871-01-01T00:00:00.000\",\"reclat\":\"-6.916670\",\"reclong\":\"107.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[107.6,-6.91667]}}\n,{\"name\":\"Bansur\",\"id\":\"4936\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"15000\",\"fall\":\"Fell\",\"year\":\"1892-01-01T00:00:00.000\",\"reclat\":\"27.700000\",\"reclong\":\"76.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.33333,27.7]}}\n,{\"name\":\"Banswal\",\"id\":\"4937\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"14\",\"fall\":\"Fell\",\"year\":\"1913-01-01T00:00:00.000\",\"reclat\":\"30.400000\",\"reclong\":\"78.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.2,30.4]}}\n,{\"name\":\"Banten\",\"id\":\"4938\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"629\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"-6.333330\",\"reclong\":\"106.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[106,-6.33333]}}\n,{\"name\":\"Barbotan\",\"id\":\"4942\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"6400\",\"fall\":\"Fell\",\"year\":\"1790-01-01T00:00:00.000\",\"reclat\":\"43.950000\",\"reclong\":\"-0.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.05,43.95]}}\n,{\"name\":\"Barcelona (stone)\",\"id\":\"4944\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"fall\":\"Fell\",\"year\":\"1704-01-01T00:00:00.000\",\"reclat\":\"41.366670\",\"reclong\":\"2.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[2.16667,41.36667]}}\n,{\"name\":\"Barea\",\"id\":\"4946\",\"nametype\":\"Valid\",\"recclass\":\"Mesosiderite-A1\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1842-01-01T00:00:00.000\",\"reclat\":\"42.383330\",\"reclong\":\"-2.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-2.5,42.38333]}}\n,{\"name\":\"Barnaul\",\"id\":\"4947\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"23.2\",\"fall\":\"Fell\",\"year\":\"1904-01-01T00:00:00.000\",\"reclat\":\"52.733330\",\"reclong\":\"84.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.08333,52.73333]}}\n,{\"name\":\"Barntrup\",\"id\":\"4948\",\"nametype\":\"Valid\",\"recclass\":\"LL4\",\"mass\":\"17\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"52.000000\",\"reclong\":\"9.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.1,52]}}\n,{\"name\":\"Baroti\",\"id\":\"4949\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"31.616670\",\"reclong\":\"76.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.8,31.61667]}}\n,{\"name\":\"Barwell\",\"id\":\"4954\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"44000\",\"fall\":\"Fell\",\"year\":\"1965-01-01T00:00:00.000\",\"reclat\":\"52.565280\",\"reclong\":\"-1.339720\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.33972,52.56528]}}\n,{\"name\":\"Bassikounou\",\"id\":\"44876\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"29560\",\"fall\":\"Fell\",\"year\":\"2006-01-01T00:00:00.000\",\"reclat\":\"15.783330\",\"reclong\":\"-5.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-5.9,15.78333]}}\n,{\"name\":\"Baszkówka\",\"id\":\"4957\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"15500\",\"fall\":\"Fell\",\"year\":\"1994-01-01T00:00:00.000\",\"reclat\":\"52.033330\",\"reclong\":\"20.935830\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[20.93583,52.03333]}}\n,{\"name\":\"Bath\",\"id\":\"4974\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"21000\",\"fall\":\"Fell\",\"year\":\"1892-01-01T00:00:00.000\",\"reclat\":\"45.416670\",\"reclong\":\"-98.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-98.31667,45.41667]},\":@computed_region_cbhk_fwbd\":\"21\",\":@computed_region_nnqa_25f4\":\"662\"}\n,{\"name\":\"Bath Furnace\",\"id\":\"4975\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"86000\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"38.250000\",\"reclong\":\"-83.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-83.75,38.25]},\":@computed_region_cbhk_fwbd\":\"36\",\":@computed_region_nnqa_25f4\":\"1921\"}\n,{\"name\":\"Battle Mountain\",\"id\":\"56133\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2900\",\"fall\":\"Fell\",\"year\":\"2012-01-01T00:00:00.000\",\"reclat\":\"40.668130\",\"reclong\":\"-117.189130\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-117.18913,40.66813]},\":@computed_region_cbhk_fwbd\":\"10\",\":@computed_region_nnqa_25f4\":\"2397\"}\n,{\"name\":\"Bawku\",\"id\":\"4976\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"1557\",\"fall\":\"Fell\",\"year\":\"1989-01-01T00:00:00.000\",\"reclat\":\"11.083330\",\"reclong\":\"-0.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.18333,11.08333]}}\n,{\"name\":\"Baxter\",\"id\":\"4977\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"611\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"36.750000\",\"reclong\":\"-93.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-93.5,36.75]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"2216\"}\n,{\"name\":\"Beardsley\",\"id\":\"4984\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"16000\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"39.800000\",\"reclong\":\"-101.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-101.2,39.8]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1285\"}\n,{\"name\":\"Beaver Creek\",\"id\":\"4986\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"14000\",\"fall\":\"Fell\",\"year\":\"1893-01-01T00:00:00.000\",\"reclat\":\"51.166670\",\"reclong\":\"-117.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-117.33333,51.16667]}}\n,{\"name\":\"Beddgelert\",\"id\":\"4993\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"794\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"53.016670\",\"reclong\":\"-4.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-4.1,53.01667]}}\n,{\"name\":\"Bells\",\"id\":\"5005\",\"nametype\":\"Valid\",\"recclass\":\"C2-ung\",\"mass\":\"375\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"33.600000\",\"reclong\":\"-96.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96.46667,33.6]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"1978\"}\n,{\"name\":\"Belville\",\"id\":\"5009\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"-32.333330\",\"reclong\":\"-64.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-64.86667,-32.33333]}}\n,{\"name\":\"Benares (a)\",\"id\":\"5011\",\"nametype\":\"Valid\",\"recclass\":\"LL4\",\"mass\":\"3700\",\"fall\":\"Fell\",\"year\":\"1798-01-01T00:00:00.000\",\"reclat\":\"25.366670\",\"reclong\":\"82.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.91667,25.36667]}}\n,{\"name\":\"Benguerir\",\"id\":\"30443\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"25000\",\"fall\":\"Fell\",\"year\":\"2004-01-01T00:00:00.000\",\"reclat\":\"32.250000\",\"reclong\":\"-8.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8.15,32.25]}}\n,{\"name\":\"Beni M'hira\",\"id\":\"5018\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"19000\",\"fall\":\"Fell\",\"year\":\"2001-01-01T00:00:00.000\",\"reclat\":\"32.866670\",\"reclong\":\"10.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.8,32.86667]}}\n,{\"name\":\"Benld\",\"id\":\"5021\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"1770.5\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"39.083330\",\"reclong\":\"-89.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-89.15,39.08333]},\":@computed_region_cbhk_fwbd\":\"34\",\":@computed_region_nnqa_25f4\":\"1869\"}\n,{\"name\":\"Benoni\",\"id\":\"5023\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"3880\",\"fall\":\"Fell\",\"year\":\"1943-01-01T00:00:00.000\",\"reclat\":\"-26.166670\",\"reclong\":\"28.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28.41667,-26.16667]}}\n,{\"name\":\"Bensour\",\"id\":\"5024\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"45000\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"30.000000\",\"reclong\":\"-7.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7,30]}}\n,{\"name\":\"Benton\",\"id\":\"5026\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"2840\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"45.950000\",\"reclong\":\"-67.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-67.55,45.95]}}\n,{\"name\":\"Berduc\",\"id\":\"48975\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"270\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"-31.910000\",\"reclong\":\"-58.328330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-58.32833,-31.91]}}\n,{\"name\":\"Béréba\",\"id\":\"5028\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"18000\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"11.650000\",\"reclong\":\"-3.650000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.65,11.65]}}\n,{\"name\":\"Berlanguillas\",\"id\":\"5029\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1440\",\"fall\":\"Fell\",\"year\":\"1811-01-01T00:00:00.000\",\"reclat\":\"41.683330\",\"reclong\":\"-3.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.8,41.68333]}}\n,{\"name\":\"Berthoud\",\"id\":\"47355\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"960\",\"fall\":\"Fell\",\"year\":\"2004-01-01T00:00:00.000\",\"reclat\":\"40.305830\",\"reclong\":\"-105.023250\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-105.02325,40.30583]},\":@computed_region_cbhk_fwbd\":\"9\",\":@computed_region_nnqa_25f4\":\"1072\"}\n,{\"name\":\"Bethlehem\",\"id\":\"5032\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"13.9\",\"fall\":\"Fell\",\"year\":\"1859-01-01T00:00:00.000\",\"reclat\":\"42.533330\",\"reclong\":\"-73.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-73.83333,42.53333]},\":@computed_region_cbhk_fwbd\":\"47\",\":@computed_region_nnqa_25f4\":\"2030\"}\n,{\"name\":\"Beuste\",\"id\":\"5034\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1859-01-01T00:00:00.000\",\"reclat\":\"43.216670\",\"reclong\":\"-0.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.23333,43.21667]}}\n,{\"name\":\"Beyrout\",\"id\":\"5035\",\"nametype\":\"Valid\",\"recclass\":\"LL3.8\",\"mass\":\"1100\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"33.883330\",\"reclong\":\"35.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.5,33.88333]}}\n,{\"name\":\"Bhagur\",\"id\":\"5037\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"18\",\"fall\":\"Fell\",\"year\":\"1877-01-01T00:00:00.000\",\"reclat\":\"20.883330\",\"reclong\":\"74.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[74.83333,20.88333]}}\n,{\"name\":\"Bhawad\",\"id\":\"36591\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"678\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"26.508330\",\"reclong\":\"73.115280\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[73.11528,26.50833]}}\n,{\"name\":\"Bherai\",\"id\":\"5039\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"100\",\"fall\":\"Fell\",\"year\":\"1893-01-01T00:00:00.000\",\"reclat\":\"20.833330\",\"reclong\":\"71.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[71.46667,20.83333]}}\n,{\"name\":\"Bhola\",\"id\":\"5040\",\"nametype\":\"Valid\",\"recclass\":\"LL3-6\",\"mass\":\"1047\",\"fall\":\"Fell\",\"year\":\"1940-01-01T00:00:00.000\",\"reclat\":\"22.683330\",\"reclong\":\"90.650000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[90.65,22.68333]}}\n,{\"name\":\"Bholghati\",\"id\":\"5041\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1905-01-01T00:00:00.000\",\"reclat\":\"22.083330\",\"reclong\":\"86.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[86.9,22.08333]}}\n,{\"name\":\"Bialystok\",\"id\":\"5042\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1827-01-01T00:00:00.000\",\"reclat\":\"53.100000\",\"reclong\":\"23.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23.2,53.1]}}\n,{\"name\":\"Bielokrynitschie\",\"id\":\"5043\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"1900\",\"fall\":\"Fell\",\"year\":\"1887-01-01T00:00:00.000\",\"reclat\":\"50.133330\",\"reclong\":\"27.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.16667,50.13333]}}\n,{\"name\":\"Bilanga\",\"id\":\"5045\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"25000\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"12.450000\",\"reclong\":\"-0.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.08333,12.45]}}\n,{\"name\":\"Binningup\",\"id\":\"5051\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"488.1\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"-33.156390\",\"reclong\":\"115.676390\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.67639,-33.15639]}}\n,{\"name\":\"Birni N'konni\",\"id\":\"5056\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"560\",\"fall\":\"Fell\",\"year\":\"1923-01-01T00:00:00.000\",\"reclat\":\"13.766670\",\"reclong\":\"5.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.3,13.76667]}}\n,{\"name\":\"Bishopville\",\"id\":\"5059\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1843-01-01T00:00:00.000\",\"reclat\":\"34.166670\",\"reclong\":\"-80.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-80.28333,34.16667]},\":@computed_region_cbhk_fwbd\":\"33\",\":@computed_region_nnqa_25f4\":\"657\"}\n,{\"name\":\"Bishunpur\",\"id\":\"5060\",\"nametype\":\"Valid\",\"recclass\":\"LL3.15\",\"mass\":\"1039\",\"fall\":\"Fell\",\"year\":\"1895-01-01T00:00:00.000\",\"reclat\":\"25.383330\",\"reclong\":\"82.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.6,25.38333]}}\n,{\"name\":\"Bjelaja Zerkov\",\"id\":\"5063\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"1850\",\"fall\":\"Fell\",\"year\":\"1796-01-01T00:00:00.000\",\"reclat\":\"49.783330\",\"reclong\":\"30.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.16667,49.78333]}}\n,{\"name\":\"Bjurböle\",\"id\":\"5064\",\"nametype\":\"Valid\",\"recclass\":\"L/LL4\",\"mass\":\"330000\",\"fall\":\"Fell\",\"year\":\"1899-01-01T00:00:00.000\",\"reclat\":\"60.400000\",\"reclong\":\"25.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.8,60.4]}}\n,{\"name\":\"Black Moshannan Park\",\"id\":\"5065\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"705\",\"fall\":\"Fell\",\"year\":\"1941-01-01T00:00:00.000\",\"reclat\":\"40.916670\",\"reclong\":\"-78.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-78.08333,40.91667]},\":@computed_region_cbhk_fwbd\":\"48\",\":@computed_region_nnqa_25f4\":\"2495\"}\n,{\"name\":\"Blackwell\",\"id\":\"5068\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"2381\",\"fall\":\"Fell\",\"year\":\"1906-01-01T00:00:00.000\",\"reclat\":\"36.833330\",\"reclong\":\"-97.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-97.33333,36.83333]},\":@computed_region_cbhk_fwbd\":\"20\",\":@computed_region_nnqa_25f4\":\"2164\"}\n,{\"name\":\"Blanket\",\"id\":\"5071\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5100\",\"fall\":\"Fell\",\"year\":\"1909-01-01T00:00:00.000\",\"reclat\":\"31.833330\",\"reclong\":\"-98.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-98.83333,31.83333]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"3063\"}\n,{\"name\":\"Blansko\",\"id\":\"5072\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"470\",\"fall\":\"Fell\",\"year\":\"1833-01-01T00:00:00.000\",\"reclat\":\"49.366670\",\"reclong\":\"16.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.63333,49.36667]}}\n,{\"name\":\"Bloomington\",\"id\":\"5076\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"67.8\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"40.480000\",\"reclong\":\"-89.004170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-89.00417,40.48]},\":@computed_region_cbhk_fwbd\":\"34\",\":@computed_region_nnqa_25f4\":\"1795\"}\n,{\"name\":\"Bo Xian\",\"id\":\"5090\",\"nametype\":\"Valid\",\"recclass\":\"LL3.9\",\"mass\":\"7500\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"33.833330\",\"reclong\":\"115.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.83333,33.83333]}}\n,{\"name\":\"Bocas\",\"id\":\"5093\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"56\",\"fall\":\"Fell\",\"year\":\"1804-01-01T00:00:00.000\",\"reclat\":\"23.000000\",\"reclong\":\"-102.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-102,23]}}\n,{\"name\":\"Bogou\",\"id\":\"5097\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-MG\",\"mass\":\"8800\",\"fall\":\"Fell\",\"year\":\"1962-01-01T00:00:00.000\",\"reclat\":\"12.500000\",\"reclong\":\"0.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.7,12.5]}}\n,{\"name\":\"Boguslavka\",\"id\":\"5098\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIAB\",\"mass\":\"256000\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"44.550000\",\"reclong\":\"131.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[131.63333,44.55]}}\n,{\"name\":\"Borgo San Donino\",\"id\":\"5110\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"1676\",\"fall\":\"Fell\",\"year\":\"1808-01-01T00:00:00.000\",\"reclat\":\"44.866670\",\"reclong\":\"10.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.05,44.86667]}}\n,{\"name\":\"Bori\",\"id\":\"5111\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"8600\",\"fall\":\"Fell\",\"year\":\"1894-01-01T00:00:00.000\",\"reclat\":\"21.950000\",\"reclong\":\"78.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.03333,21.95]}}\n,{\"name\":\"Boriskino\",\"id\":\"5112\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"1342\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"54.233330\",\"reclong\":\"52.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[52.48333,54.23333]}}\n,{\"name\":\"Borkut\",\"id\":\"5113\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1852-01-01T00:00:00.000\",\"reclat\":\"48.150000\",\"reclong\":\"24.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[24.28333,48.15]}}\n,{\"name\":\"Borodino\",\"id\":\"5114\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"500\",\"fall\":\"Fell\",\"year\":\"1812-01-01T00:00:00.000\",\"reclat\":\"55.466670\",\"reclong\":\"35.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.86667,55.46667]}}\n,{\"name\":\"Botschetschki\",\"id\":\"5117\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"614\",\"fall\":\"Fell\",\"year\":\"1823-01-01T00:00:00.000\",\"reclat\":\"51.333330\",\"reclong\":\"33.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.88333,51.33333]}}\n,{\"name\":\"Boumdeid (2003)\",\"id\":\"57168\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"190\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"17.710670\",\"reclong\":\"-11.371500\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-11.3715,17.71067]}}\n,{\"name\":\"Boumdeid (2011)\",\"id\":\"57167\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3599\",\"fall\":\"Fell\",\"year\":\"2011-01-01T00:00:00.000\",\"reclat\":\"17.174930\",\"reclong\":\"-11.341330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-11.34133,17.17493]}}\n,{\"name\":\"Bovedy\",\"id\":\"5121\",\"nametype\":\"Valid\",\"recclass\":\"L3\",\"mass\":\"5460\",\"fall\":\"Fell\",\"year\":\"1969-01-01T00:00:00.000\",\"reclat\":\"54.566670\",\"reclong\":\"-6.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.33333,54.56667]}}\n,{\"name\":\"Bradford Woods\",\"id\":\"5128\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"762\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"40.500000\",\"reclong\":\"-80.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-80.08333,40.5]},\":@computed_region_cbhk_fwbd\":\"48\",\":@computed_region_nnqa_25f4\":\"2455\"}\n,{\"name\":\"Braunau\",\"id\":\"5133\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIAB\",\"mass\":\"39000\",\"fall\":\"Fell\",\"year\":\"1847-01-01T00:00:00.000\",\"reclat\":\"50.600000\",\"reclong\":\"16.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.3,50.6]}}\n,{\"name\":\"Breitscheid\",\"id\":\"5134\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"50.666940\",\"reclong\":\"8.183610\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.18361,50.66694]}}\n,{\"name\":\"Bremervörde\",\"id\":\"5135\",\"nametype\":\"Valid\",\"recclass\":\"H/L3.9\",\"mass\":\"7250\",\"fall\":\"Fell\",\"year\":\"1855-01-01T00:00:00.000\",\"reclat\":\"53.400000\",\"reclong\":\"9.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.1,53.4]}}\n,{\"name\":\"Brient\",\"id\":\"5140\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"219\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"52.133330\",\"reclong\":\"59.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[59.31667,52.13333]}}\n,{\"name\":\"Bruderheim\",\"id\":\"5156\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"303000\",\"fall\":\"Fell\",\"year\":\"1960-01-01T00:00:00.000\",\"reclat\":\"53.900000\",\"reclong\":\"-112.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-112.88333,53.9]}}\n,{\"name\":\"Bukhara\",\"id\":\"30448\",\"nametype\":\"Valid\",\"recclass\":\"CV3\",\"mass\":\"5300\",\"fall\":\"Fell\",\"year\":\"2001-01-01T00:00:00.000\",\"reclat\":\"39.779780\",\"reclong\":\"64.600350\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[64.60035,39.77978]}}\n,{\"name\":\"Bulls Run\",\"id\":\"5163\",\"nametype\":\"Valid\",\"recclass\":\"Iron?\",\"mass\":\"2250\",\"fall\":\"Fell\",\"year\":\"1964-01-01T00:00:00.000\"}\n,{\"name\":\"Bunburra Rockhole\",\"id\":\"48653\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite\",\"mass\":\"324\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"-31.350000\",\"reclong\":\"129.190000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[129.19,-31.35]}}\n,{\"name\":\"Bununu\",\"id\":\"5165\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"357\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"10.016670\",\"reclong\":\"9.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.58333,10.01667]}}\n,{\"name\":\"Bur-Gheluai\",\"id\":\"5169\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"120000\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"5.000000\",\"reclong\":\"48.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[48,5]}}\n,{\"name\":\"Burnwell\",\"id\":\"5175\",\"nametype\":\"Valid\",\"recclass\":\"H4-an\",\"mass\":\"1504\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\",\"reclat\":\"37.621940\",\"reclong\":\"-82.237220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-82.23722,37.62194]},\":@computed_region_cbhk_fwbd\":\"36\",\":@computed_region_nnqa_25f4\":\"256\"}\n,{\"name\":\"Bursa\",\"id\":\"5177\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"25000\",\"fall\":\"Fell\",\"year\":\"1946-01-01T00:00:00.000\",\"reclat\":\"40.200000\",\"reclong\":\"29.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.23333,40.2]}}\n,{\"name\":\"Buschhof\",\"id\":\"5178\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1863-01-01T00:00:00.000\",\"reclat\":\"46.450000\",\"reclong\":\"25.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.78333,46.45]}}\n,{\"name\":\"Bustee\",\"id\":\"5181\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1852-01-01T00:00:00.000\",\"reclat\":\"26.783330\",\"reclong\":\"82.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.83333,26.78333]}}\n,{\"name\":\"Butsura\",\"id\":\"5183\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"29000\",\"fall\":\"Fell\",\"year\":\"1861-01-01T00:00:00.000\",\"reclat\":\"27.083330\",\"reclong\":\"84.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.08333,27.08333]}}\n,{\"name\":\"Buzzard Coulee\",\"id\":\"48654\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"41000\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"52.996000\",\"reclong\":\"-109.848170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-109.84817,52.996]}}\n,{\"name\":\"Cabezo de Mayo\",\"id\":\"5185\",\"nametype\":\"Valid\",\"recclass\":\"L/LL6\",\"mass\":\"25000\",\"fall\":\"Fell\",\"year\":\"1870-01-01T00:00:00.000\",\"reclat\":\"37.983330\",\"reclong\":\"-1.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.16667,37.98333]}}\n,{\"name\":\"Cabin Creek\",\"id\":\"5186\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"48500\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"35.500000\",\"reclong\":\"-93.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-93.5,35.5]},\":@computed_region_cbhk_fwbd\":\"15\",\":@computed_region_nnqa_25f4\":\"1029\"}\n,{\"name\":\"Cacak\",\"id\":\"5187\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"212\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"43.838890\",\"reclong\":\"20.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[20.33333,43.83889]}}\n,{\"name\":\"Cali\",\"id\":\"45976\",\"nametype\":\"Valid\",\"recclass\":\"H/L4\",\"mass\":\"478\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"3.405000\",\"reclong\":\"-76.510000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-76.51,3.405]}}\n,{\"name\":\"Calivo\",\"id\":\"5200\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"2400\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"11.750000\",\"reclong\":\"122.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[122.33333,11.75]}}\n,{\"name\":\"Campos Sales\",\"id\":\"5249\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"23680\",\"fall\":\"Fell\",\"year\":\"1991-01-01T00:00:00.000\",\"reclat\":\"-7.033330\",\"reclong\":\"-40.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-40.16667,-7.03333]}}\n,{\"name\":\"Çanakkale\",\"id\":\"5250\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1964-01-01T00:00:00.000\",\"reclat\":\"39.800000\",\"reclong\":\"26.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.6,39.8]}}\n,{\"name\":\"Cañellas\",\"id\":\"5251\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"945\",\"fall\":\"Fell\",\"year\":\"1861-01-01T00:00:00.000\",\"reclat\":\"41.250000\",\"reclong\":\"1.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.66667,41.25]}}\n,{\"name\":\"Cangas de Onis\",\"id\":\"5252\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"34000\",\"fall\":\"Fell\",\"year\":\"1866-01-01T00:00:00.000\",\"reclat\":\"43.383330\",\"reclong\":\"-5.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-5.15,43.38333]}}\n,{\"name\":\"Canon City\",\"id\":\"5253\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"1400\",\"fall\":\"Fell\",\"year\":\"1973-01-01T00:00:00.000\",\"reclat\":\"38.470280\",\"reclong\":\"-105.241390\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-105.24139,38.47028]},\":@computed_region_cbhk_fwbd\":\"9\",\":@computed_region_nnqa_25f4\":\"1448\"}\n,{\"name\":\"Cape Girardeau\",\"id\":\"5260\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"2300\",\"fall\":\"Fell\",\"year\":\"1846-01-01T00:00:00.000\",\"reclat\":\"37.266670\",\"reclong\":\"-89.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-89.58333,37.26667]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"2695\"}\n,{\"name\":\"Capilla del Monte\",\"id\":\"5264\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"750\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"-30.883330\",\"reclong\":\"-64.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-64.55,-30.88333]}}\n,{\"name\":\"Carancas\",\"id\":\"45817\",\"nametype\":\"Valid\",\"recclass\":\"H4-5\",\"mass\":\"342\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"-16.664440\",\"reclong\":\"-69.043890\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-69.04389,-16.66444]}}\n,{\"name\":\"Caratash\",\"id\":\"5265\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"8\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"38.500000\",\"reclong\":\"27.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27,38.5]}}\n,{\"name\":\"Castalia\",\"id\":\"5291\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"7300\",\"fall\":\"Fell\",\"year\":\"1874-01-01T00:00:00.000\",\"reclat\":\"36.083330\",\"reclong\":\"-78.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-78.06667,36.08333]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"648\"}\n,{\"name\":\"Castel Berardenga\",\"id\":\"5292\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1791-01-01T00:00:00.000\",\"reclat\":\"43.350000\",\"reclong\":\"11.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.5,43.35]}}\n,{\"name\":\"Castine\",\"id\":\"5293\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"94\",\"fall\":\"Fell\",\"year\":\"1848-01-01T00:00:00.000\",\"reclat\":\"44.383330\",\"reclong\":\"-68.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-68.75,44.38333]},\":@computed_region_cbhk_fwbd\":\"49\",\":@computed_region_nnqa_25f4\":\"414\"}\n,{\"name\":\"Castrovillari\",\"id\":\"5295\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"15000\",\"fall\":\"Fell\",\"year\":\"1583-01-01T00:00:00.000\",\"reclat\":\"39.800000\",\"reclong\":\"16.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.2,39.8]}}\n,{\"name\":\"Caswell County\",\"id\":\"5296\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"1360\",\"fall\":\"Fell\",\"year\":\"1810-01-01T00:00:00.000\",\"reclat\":\"36.500000\",\"reclong\":\"-79.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-79.25,36.5]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"637\"}\n,{\"name\":\"Ceniceros\",\"id\":\"5306\",\"nametype\":\"Valid\",\"recclass\":\"L3.7\",\"mass\":\"1025\",\"fall\":\"Fell\",\"year\":\"1988-01-01T00:00:00.000\",\"reclat\":\"26.466670\",\"reclong\":\"-105.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-105.23333,26.46667]}}\n,{\"name\":\"Centerville\",\"id\":\"5307\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"45.6\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"43.200000\",\"reclong\":\"-96.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96.91667,43.2]},\":@computed_region_cbhk_fwbd\":\"21\",\":@computed_region_nnqa_25f4\":\"2684\"}\n,{\"name\":\"Cereseto\",\"id\":\"5308\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"6460\",\"fall\":\"Fell\",\"year\":\"1840-01-01T00:00:00.000\",\"reclat\":\"45.083330\",\"reclong\":\"8.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.3,45.08333]}}\n,{\"name\":\"Chadong\",\"id\":\"5313\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3700\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"28.533330\",\"reclong\":\"109.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[109.31667,28.53333]}}\n,{\"name\":\"Chail\",\"id\":\"5314\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"0.5\",\"fall\":\"Fell\",\"year\":\"1814-01-01T00:00:00.000\",\"reclat\":\"25.366670\",\"reclong\":\"81.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81.66667,25.36667]}}\n,{\"name\":\"Chainpur\",\"id\":\"5315\",\"nametype\":\"Valid\",\"recclass\":\"LL3.4\",\"mass\":\"8200\",\"fall\":\"Fell\",\"year\":\"1907-01-01T00:00:00.000\",\"reclat\":\"25.850000\",\"reclong\":\"83.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.48333,25.85]}}\n,{\"name\":\"Chajari\",\"id\":\"5316\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"18300\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"-30.783330\",\"reclong\":\"-58.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-58.05,-30.78333]}}\n,{\"name\":\"Chandakapur\",\"id\":\"5320\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"8800\",\"fall\":\"Fell\",\"year\":\"1838-01-01T00:00:00.000\",\"reclat\":\"20.266670\",\"reclong\":\"76.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.01667,20.26667]}}\n,{\"name\":\"Chandpur\",\"id\":\"5321\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1100\",\"fall\":\"Fell\",\"year\":\"1885-01-01T00:00:00.000\",\"reclat\":\"27.283330\",\"reclong\":\"79.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[79.05,27.28333]}}\n,{\"name\":\"Changde\",\"id\":\"5322\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1810\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"29.083330\",\"reclong\":\"111.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.75,29.08333]}}\n,{\"name\":\"Chantonnay\",\"id\":\"5325\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"31500\",\"fall\":\"Fell\",\"year\":\"1812-01-01T00:00:00.000\",\"reclat\":\"46.683330\",\"reclong\":\"1.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.05,46.68333]}}\n,{\"name\":\"Charlotte\",\"id\":\"5328\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IVA\",\"mass\":\"4300\",\"fall\":\"Fell\",\"year\":\"1835-01-01T00:00:00.000\",\"reclat\":\"36.166670\",\"reclong\":\"-87.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87.33333,36.16667]},\":@computed_region_cbhk_fwbd\":\"39\",\":@computed_region_nnqa_25f4\":\"2007\"}\n,{\"name\":\"Charsonville\",\"id\":\"5329\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"27000\",\"fall\":\"Fell\",\"year\":\"1810-01-01T00:00:00.000\",\"reclat\":\"47.933330\",\"reclong\":\"1.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.56667,47.93333]}}\n,{\"name\":\"Charwallas\",\"id\":\"5330\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"12000\",\"fall\":\"Fell\",\"year\":\"1834-01-01T00:00:00.000\",\"reclat\":\"29.483330\",\"reclong\":\"75.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.5,29.48333]}}\n,{\"name\":\"Chassigny\",\"id\":\"5331\",\"nametype\":\"Valid\",\"recclass\":\"Martian (chassignite)\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1815-01-01T00:00:00.000\",\"reclat\":\"47.716670\",\"reclong\":\"5.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.36667,47.71667]}}\n,{\"name\":\"Château-Renard\",\"id\":\"5332\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"30000\",\"fall\":\"Fell\",\"year\":\"1841-01-01T00:00:00.000\",\"reclat\":\"47.933330\",\"reclong\":\"2.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[2.91667,47.93333]}}\n,{\"name\":\"Chaves\",\"id\":\"5334\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"2945\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"41.933330\",\"reclong\":\"-7.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.46667,41.93333]}}\n,{\"name\":\"Chela\",\"id\":\"5338\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"2936\",\"fall\":\"Fell\",\"year\":\"1988-01-01T00:00:00.000\",\"reclat\":\"-3.666670\",\"reclong\":\"32.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[32.5,-3.66667]}}\n,{\"name\":\"Chelyabinsk\",\"id\":\"57165\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"2013-01-01T00:00:00.000\",\"reclat\":\"54.816670\",\"reclong\":\"61.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[61.11667,54.81667]}}\n,{\"name\":\"Chergach \",\"id\":\"47347\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"23.696390\",\"reclong\":\"-5.014720\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-5.01472,23.69639]}}\n,{\"name\":\"Chernyi Bor\",\"id\":\"5339\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1964-01-01T00:00:00.000\",\"reclat\":\"53.700000\",\"reclong\":\"30.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.1,53.7]}}\n,{\"name\":\"Cherokee Springs\",\"id\":\"5340\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"8400\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"35.033330\",\"reclong\":\"-81.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-81.88333,35.03333]},\":@computed_region_cbhk_fwbd\":\"33\",\":@computed_region_nnqa_25f4\":\"2582\"}\n,{\"name\":\"Chervettaz\",\"id\":\"5341\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"705\",\"fall\":\"Fell\",\"year\":\"1901-01-01T00:00:00.000\",\"reclat\":\"46.550000\",\"reclong\":\"6.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.81667,46.55]}}\n,{\"name\":\"Chervony Kut\",\"id\":\"5342\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"1700\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"50.833330\",\"reclong\":\"34.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[34,50.83333]}}\n,{\"name\":\"Chetrinahatti\",\"id\":\"5344\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"72\",\"fall\":\"Fell\",\"year\":\"1880-01-01T00:00:00.000\",\"reclat\":\"14.500000\",\"reclong\":\"76.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.5,14.5]}}\n,{\"name\":\"Chiang Khan\",\"id\":\"5345\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"367\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"17.900000\",\"reclong\":\"101.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[101.63333,17.9]}}\n,{\"name\":\"Chicora\",\"id\":\"5349\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"303\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"40.933330\",\"reclong\":\"-79.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-79.73333,40.93333]},\":@computed_region_cbhk_fwbd\":\"48\",\":@computed_region_nnqa_25f4\":\"2459\"}\n,{\"name\":\"Chisenga\",\"id\":\"5355\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"3920\",\"fall\":\"Fell\",\"year\":\"1988-01-01T00:00:00.000\",\"reclat\":\"-10.059440\",\"reclong\":\"33.395000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.395,-10.05944]}}\n,{\"name\":\"Chitado\",\"id\":\"5356\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"fall\":\"Fell\",\"year\":\"1966-01-01T00:00:00.000\",\"reclat\":\"-17.350000\",\"reclong\":\"13.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.96667,-17.35]}}\n,{\"name\":\"Chitenay\",\"id\":\"5357\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1978-01-01T00:00:00.000\",\"reclat\":\"47.470830\",\"reclong\":\"0.976670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.97667,47.47083]}}\n,{\"name\":\"Cilimus\",\"id\":\"5364\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"1979-01-01T00:00:00.000\",\"reclat\":\"-6.950000\",\"reclong\":\"108.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[108.1,-6.95]}}\n,{\"name\":\"Claxton\",\"id\":\"5374\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1455\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"32.102500\",\"reclong\":\"-81.872780\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-81.87278,32.1025]},\":@computed_region_cbhk_fwbd\":\"31\",\":@computed_region_nnqa_25f4\":\"67\"}\n,{\"name\":\"Clohars\",\"id\":\"5383\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"48.6\",\"fall\":\"Fell\",\"year\":\"1822-01-01T00:00:00.000\"}\n,{\"name\":\"Colby (Wisconsin)\",\"id\":\"5395\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"104000\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"44.900000\",\"reclong\":\"-90.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-90.28333,44.9]},\":@computed_region_cbhk_fwbd\":\"41\",\":@computed_region_nnqa_25f4\":\"877\"}\n,{\"name\":\"Cold Bokkeveld\",\"id\":\"5397\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"5200\",\"fall\":\"Fell\",\"year\":\"1838-01-01T00:00:00.000\",\"reclat\":\"-33.133330\",\"reclong\":\"19.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[19.38333,-33.13333]}}\n,{\"name\":\"Coleman\",\"id\":\"5401\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"469\",\"fall\":\"Fell\",\"year\":\"1994-01-01T00:00:00.000\",\"reclat\":\"43.761110\",\"reclong\":\"-84.507780\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-84.50778,43.76111]},\":@computed_region_cbhk_fwbd\":\"50\",\":@computed_region_nnqa_25f4\":\"356\"}\n,{\"name\":\"Collescipoli\",\"id\":\"5403\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"42.533330\",\"reclong\":\"12.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.61667,42.53333]}}\n,{\"name\":\"Conquista\",\"id\":\"5418\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"20350\",\"fall\":\"Fell\",\"year\":\"1965-01-01T00:00:00.000\",\"reclat\":\"-19.850000\",\"reclong\":\"-47.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-47.55,-19.85]}}\n,{\"name\":\"Cosina\",\"id\":\"5451\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1200\",\"fall\":\"Fell\",\"year\":\"1844-01-01T00:00:00.000\",\"reclat\":\"21.166670\",\"reclong\":\"-100.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-100.86667,21.16667]}}\n,{\"name\":\"Cranganore\",\"id\":\"5465\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1460\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"10.200000\",\"reclong\":\"76.266670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.26667,10.2]}}\n,{\"name\":\"Crescent\",\"id\":\"5470\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"78.400000000000006\",\"fall\":\"Fell\",\"year\":\"1936-01-01T00:00:00.000\",\"reclat\":\"35.950000\",\"reclong\":\"-97.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-97.58333,35.95]},\":@computed_region_cbhk_fwbd\":\"20\",\":@computed_region_nnqa_25f4\":\"2201\"}\n,{\"name\":\"Cronstad\",\"id\":\"5474\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3650\",\"fall\":\"Fell\",\"year\":\"1877-01-01T00:00:00.000\",\"reclat\":\"-27.700000\",\"reclong\":\"27.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.3,-27.7]}}\n,{\"name\":\"Cross Roads\",\"id\":\"5476\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"167\",\"fall\":\"Fell\",\"year\":\"1892-01-01T00:00:00.000\",\"reclat\":\"35.633330\",\"reclong\":\"-78.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-78.13333,35.63333]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"2332\"}\n,{\"name\":\"Crumlin\",\"id\":\"5477\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"4255\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"54.616670\",\"reclong\":\"-6.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.21667,54.61667]}}\n,{\"name\":\"Cumberland Falls\",\"id\":\"5496\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"17000\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"36.833330\",\"reclong\":\"-84.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-84.35,36.83333]},\":@computed_region_cbhk_fwbd\":\"36\",\":@computed_region_nnqa_25f4\":\"1426\"}\n,{\"name\":\"Cynthiana\",\"id\":\"5500\",\"nametype\":\"Valid\",\"recclass\":\"L/LL4\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1877-01-01T00:00:00.000\",\"reclat\":\"38.400000\",\"reclong\":\"-84.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-84.25,38.4]},\":@computed_region_cbhk_fwbd\":\"36\",\":@computed_region_nnqa_25f4\":\"244\"}\n,{\"name\":\"Dahmani\",\"id\":\"5504\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"18000\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"35.616670\",\"reclong\":\"8.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.83333,35.61667]}}\n,{\"name\":\"Dandapur\",\"id\":\"5511\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5650\",\"fall\":\"Fell\",\"year\":\"1878-01-01T00:00:00.000\",\"reclat\":\"26.916670\",\"reclong\":\"83.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.96667,26.91667]}}\n,{\"name\":\"Daniel's Kuil\",\"id\":\"5513\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"1064\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"-28.200000\",\"reclong\":\"24.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[24.56667,-28.2]}}\n,{\"name\":\"Danville\",\"id\":\"5514\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"34.400000\",\"reclong\":\"-87.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87.06667,34.4]},\":@computed_region_cbhk_fwbd\":\"29\",\":@computed_region_nnqa_25f4\":\"103\"}\n,{\"name\":\"Darmstadt\",\"id\":\"6603\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"100\",\"fall\":\"Fell\",\"year\":\"1804-01-01T00:00:00.000\",\"reclat\":\"49.866670\",\"reclong\":\"8.650000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.65,49.86667]}}\n,{\"name\":\"Dashoguz\",\"id\":\"6604\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"41.984440\",\"reclong\":\"59.685000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[59.685,41.98444]}}\n,{\"name\":\"Daule\",\"id\":\"51559\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"6580\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"-1.870890\",\"reclong\":\"-79.957560\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-79.95756,-1.87089]}}\n,{\"name\":\"De Cewsville\",\"id\":\"6621\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"340\",\"fall\":\"Fell\",\"year\":\"1887-01-01T00:00:00.000\",\"reclat\":\"43.000000\",\"reclong\":\"-80.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-80,43]}}\n,{\"name\":\"Deal\",\"id\":\"6634\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"28\",\"fall\":\"Fell\",\"year\":\"1829-01-01T00:00:00.000\",\"reclat\":\"40.250000\",\"reclong\":\"-74.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-74,40.25]},\":@computed_region_nnqa_25f4\":\"2491\"}\n,{\"name\":\"Delhi\",\"id\":\"6642\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"0.8\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"28.566670\",\"reclong\":\"77.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.25,28.56667]}}\n,{\"name\":\"Demina\",\"id\":\"6649\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"16400\",\"fall\":\"Fell\",\"year\":\"1911-01-01T00:00:00.000\",\"reclat\":\"51.466670\",\"reclong\":\"84.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.76667,51.46667]}}\n,{\"name\":\"Denver\",\"id\":\"6660\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"230\",\"fall\":\"Fell\",\"year\":\"1967-01-01T00:00:00.000\",\"reclat\":\"39.782500\",\"reclong\":\"-104.930560\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-104.93056,39.7825]},\":@computed_region_cbhk_fwbd\":\"9\",\":@computed_region_nnqa_25f4\":\"1444\"}\n,{\"name\":\"Dergaon\",\"id\":\"6664\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"12500\",\"fall\":\"Fell\",\"year\":\"2001-01-01T00:00:00.000\",\"reclat\":\"26.683330\",\"reclong\":\"93.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[93.86667,26.68333]}}\n,{\"name\":\"Desuri\",\"id\":\"6693\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"25400\",\"fall\":\"Fell\",\"year\":\"1962-01-01T00:00:00.000\",\"reclat\":\"25.733330\",\"reclong\":\"73.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[73.61667,25.73333]}}\n,{\"name\":\"Devgaon\",\"id\":\"6694\",\"nametype\":\"Valid\",\"recclass\":\"H3.8\",\"mass\":\"12000\",\"fall\":\"Fell\",\"year\":\"2001-01-01T00:00:00.000\",\"reclat\":\"19.000000\",\"reclong\":\"81.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81,19]}}\n,{\"name\":\"Devri-Khera\",\"id\":\"6696\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1140\",\"fall\":\"Fell\",\"year\":\"1994-01-01T00:00:00.000\",\"reclat\":\"24.225000\",\"reclong\":\"76.525000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.525,24.225]}}\n,{\"name\":\"Dhajala\",\"id\":\"6698\",\"nametype\":\"Valid\",\"recclass\":\"H3.8\",\"mass\":\"45000\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"22.377780\",\"reclong\":\"71.427220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[71.42722,22.37778]}}\n,{\"name\":\"Dharwar\",\"id\":\"6699\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"1800\",\"fall\":\"Fell\",\"year\":\"1848-01-01T00:00:00.000\",\"reclat\":\"14.883330\",\"reclong\":\"75.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.6,14.88333]}}\n,{\"name\":\"Dhurmsala\",\"id\":\"7640\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"32000\",\"fall\":\"Fell\",\"year\":\"1860-01-01T00:00:00.000\",\"reclat\":\"32.233330\",\"reclong\":\"76.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.46667,32.23333]}}\n,{\"name\":\"Didim\",\"id\":\"47350\",\"nametype\":\"Valid\",\"recclass\":\"H3-5\",\"mass\":\"3396\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"37.351720\",\"reclong\":\"27.329970\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.32997,37.35172]}}\n,{\"name\":\"Diep River\",\"id\":\"7642\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1906-01-01T00:00:00.000\",\"reclat\":\"-33.750000\",\"reclong\":\"18.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[18.56667,-33.75]}}\n,{\"name\":\"Distrito Quebracho\",\"id\":\"7649\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"400\",\"fall\":\"Fell\",\"year\":\"1957-01-01T00:00:00.000\",\"reclat\":\"-31.883330\",\"reclong\":\"-60.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-60.46667,-31.88333]}}\n,{\"name\":\"Djati-Pengilon\",\"id\":\"7652\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"166000\",\"fall\":\"Fell\",\"year\":\"1884-01-01T00:00:00.000\",\"reclat\":\"-7.500000\",\"reclong\":\"111.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.5,-7.5]}}\n,{\"name\":\"Djermaia\",\"id\":\"7656\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"3950\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"12.733330\",\"reclong\":\"15.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.05,12.73333]}}\n,{\"name\":\"Djoumine\",\"id\":\"7657\",\"nametype\":\"Valid\",\"recclass\":\"H5-6\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"36.950000\",\"reclong\":\"9.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.55,36.95]}}\n,{\"name\":\"Dokachi\",\"id\":\"7658\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3840\",\"fall\":\"Fell\",\"year\":\"1903-01-01T00:00:00.000\",\"reclat\":\"23.500000\",\"reclong\":\"90.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[90.33333,23.5]}}\n,{\"name\":\"Dolgovoli\",\"id\":\"7659\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"1864-01-01T00:00:00.000\",\"reclat\":\"50.750000\",\"reclong\":\"25.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.3,50.75]}}\n,{\"name\":\"Domanitch\",\"id\":\"7661\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"438\",\"fall\":\"Fell\",\"year\":\"1907-01-01T00:00:00.000\",\"reclat\":\"40.000000\",\"reclong\":\"29.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29,40]}}\n,{\"name\":\"Dong Ujimqin Qi\",\"id\":\"7706\",\"nametype\":\"Valid\",\"recclass\":\"Mesosiderite\",\"mass\":\"128800\",\"fall\":\"Fell\",\"year\":\"1995-01-01T00:00:00.000\",\"reclat\":\"45.500000\",\"reclong\":\"119.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[119.03333,45.5]}}\n,{\"name\":\"Donga Kohrod\",\"id\":\"7707\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"230\",\"fall\":\"Fell\",\"year\":\"1899-01-01T00:00:00.000\",\"reclat\":\"21.866670\",\"reclong\":\"82.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.45,21.86667]}}\n,{\"name\":\"Dongtai\",\"id\":\"7708\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"5500\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"32.916670\",\"reclong\":\"120.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[120.78333,32.91667]}}\n,{\"name\":\"Doroninsk\",\"id\":\"7718\",\"nametype\":\"Valid\",\"recclass\":\"H5-7\",\"mass\":\"3891\",\"fall\":\"Fell\",\"year\":\"1805-01-01T00:00:00.000\",\"reclat\":\"51.200000\",\"reclong\":\"112.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[112.3,51.2]}}\n,{\"name\":\"Dosso\",\"id\":\"7722\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1250\",\"fall\":\"Fell\",\"year\":\"1962-01-01T00:00:00.000\",\"reclat\":\"13.050000\",\"reclong\":\"3.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.16667,13.05]}}\n,{\"name\":\"Douar Mghila\",\"id\":\"7723\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"1161\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"32.333330\",\"reclong\":\"-6.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.3,32.33333]}}\n,{\"name\":\"Dowa\",\"id\":\"7725\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"642\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"-13.666670\",\"reclong\":\"33.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.91667,-13.66667]}}\n,{\"name\":\"Drake Creek\",\"id\":\"7728\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1827-01-01T00:00:00.000\",\"reclat\":\"36.400000\",\"reclong\":\"-86.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.5,36.4]},\":@computed_region_cbhk_fwbd\":\"39\",\":@computed_region_nnqa_25f4\":\"2115\"}\n,{\"name\":\"Dresden (Ontario)\",\"id\":\"7731\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"47700\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"42.520000\",\"reclong\":\"-82.260000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-82.26,42.52]}}\n,{\"name\":\"Dubrovnik\",\"id\":\"7736\",\"nametype\":\"Valid\",\"recclass\":\"L3-6\",\"mass\":\"1900\",\"fall\":\"Fell\",\"year\":\"1951-01-01T00:00:00.000\",\"reclat\":\"42.458330\",\"reclong\":\"18.441670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[18.44167,42.45833]}}\n,{\"name\":\"Dunbogan\",\"id\":\"7743\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"30\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"-31.666670\",\"reclong\":\"152.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[152.83333,-31.66667]}}\n,{\"name\":\"Dundrum\",\"id\":\"7745\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2270\",\"fall\":\"Fell\",\"year\":\"1865-01-01T00:00:00.000\",\"reclat\":\"52.550000\",\"reclong\":\"-8.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8.03333,52.55]}}\n,{\"name\":\"Dunhua\",\"id\":\"7749\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"43.333330\",\"reclong\":\"128.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[128.25,43.33333]}}\n,{\"name\":\"Durala\",\"id\":\"7750\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"13200\",\"fall\":\"Fell\",\"year\":\"1815-01-01T00:00:00.000\",\"reclat\":\"30.300000\",\"reclong\":\"76.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.63333,30.3]}}\n,{\"name\":\"Duruma\",\"id\":\"7752\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"577\",\"fall\":\"Fell\",\"year\":\"1853-01-01T00:00:00.000\",\"reclat\":\"-4.000000\",\"reclong\":\"39.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[39.5,-4]}}\n,{\"name\":\"Duwun\",\"id\":\"7754\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2117\",\"fall\":\"Fell\",\"year\":\"1943-01-01T00:00:00.000\",\"reclat\":\"33.433330\",\"reclong\":\"127.266670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[127.26667,33.43333]}}\n,{\"name\":\"Dwaleni\",\"id\":\"7755\",\"nametype\":\"Valid\",\"recclass\":\"H4-6\",\"mass\":\"3230\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"-27.200000\",\"reclong\":\"31.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.31667,-27.2]}}\n,{\"name\":\"Dyalpur\",\"id\":\"7757\",\"nametype\":\"Valid\",\"recclass\":\"Ureilite\",\"mass\":\"300\",\"fall\":\"Fell\",\"year\":\"1872-01-01T00:00:00.000\",\"reclat\":\"26.250000\",\"reclong\":\"82.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82,26.25]}}\n,{\"name\":\"Dyarrl Island\",\"id\":\"7758\",\"nametype\":\"Valid\",\"recclass\":\"Mesosiderite-A1\",\"mass\":\"188\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"-3.000000\",\"reclong\":\"151.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[151,-3]}}\n,{\"name\":\"Eagle\",\"id\":\"7760\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"1947-01-01T00:00:00.000\",\"reclat\":\"40.781670\",\"reclong\":\"-96.471670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96.47167,40.78167]},\":@computed_region_cbhk_fwbd\":\"19\",\":@computed_region_nnqa_25f4\":\"462\"}\n,{\"name\":\"Ehole\",\"id\":\"7774\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2400\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"-17.300000\",\"reclong\":\"15.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.83333,-17.3]}}\n,{\"name\":\"Eichstädt\",\"id\":\"7775\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1785-01-01T00:00:00.000\",\"reclat\":\"48.900000\",\"reclong\":\"11.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.21667,48.9]}}\n,{\"name\":\"Ekeby\",\"id\":\"7776\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"3336\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"56.033330\",\"reclong\":\"13.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13,56.03333]}}\n,{\"name\":\"Ekh Khera\",\"id\":\"7777\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"840\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"28.266670\",\"reclong\":\"78.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.78333,28.26667]}}\n,{\"name\":\"El Idrissia\",\"id\":\"7807\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"1989-01-01T00:00:00.000\",\"reclat\":\"34.416670\",\"reclong\":\"3.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.25,34.41667]}}\n,{\"name\":\"El Paso de Aguila\",\"id\":\"45977\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"17226\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"25.370000\",\"reclong\":\"-97.370000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-97.37,25.37]}}\n,{\"name\":\"El Tigre\",\"id\":\"7819\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1993-01-01T00:00:00.000\",\"reclat\":\"19.967220\",\"reclong\":\"-103.051670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.05167,19.96722]}}\n,{\"name\":\"Elbert\",\"id\":\"7822\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"680.5\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"39.246670\",\"reclong\":\"-104.588170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-104.58817,39.24667]},\":@computed_region_cbhk_fwbd\":\"9\",\":@computed_region_nnqa_25f4\":\"88\"}\n,{\"name\":\"Elbogen\",\"id\":\"7823\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IID\",\"mass\":\"107000\",\"fall\":\"Fell\",\"year\":\"1400-01-01T00:00:00.000\",\"reclat\":\"50.183330\",\"reclong\":\"12.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.73333,50.18333]}}\n,{\"name\":\"Elenovka\",\"id\":\"7824\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"54640\",\"fall\":\"Fell\",\"year\":\"1951-01-01T00:00:00.000\",\"reclat\":\"47.833330\",\"reclong\":\"37.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.66667,47.83333]}}\n,{\"name\":\"Ellemeet\",\"id\":\"10019\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"1470\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"51.750000\",\"reclong\":\"4.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4,51.75]}}\n,{\"name\":\"Emmaville\",\"id\":\"10033\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"127\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"-29.466670\",\"reclong\":\"151.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[151.61667,-29.46667]}}\n,{\"name\":\"Enshi\",\"id\":\"10038\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"8000\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"30.300000\",\"reclong\":\"109.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[109.5,30.3]}}\n,{\"name\":\"Ensisheim\",\"id\":\"10039\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"127000\",\"fall\":\"Fell\",\"year\":\"1492-01-01T00:00:00.000\",\"reclat\":\"47.866670\",\"reclong\":\"7.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.35,47.86667]}}\n,{\"name\":\"Épinal\",\"id\":\"10041\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"277\",\"fall\":\"Fell\",\"year\":\"1822-01-01T00:00:00.000\",\"reclat\":\"48.183330\",\"reclong\":\"6.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.46667,48.18333]}}\n,{\"name\":\"Erakot\",\"id\":\"10042\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"113\",\"fall\":\"Fell\",\"year\":\"1940-01-01T00:00:00.000\",\"reclat\":\"19.033330\",\"reclong\":\"81.891670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81.89167,19.03333]}}\n,{\"name\":\"Erevan\",\"id\":\"10043\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"107.2\",\"fall\":\"Fell\",\"year\":\"1911-01-01T00:00:00.000\",\"reclat\":\"40.300000\",\"reclong\":\"44.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[44.5,40.3]}}\n,{\"name\":\"Ergheo\",\"id\":\"10044\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"20000\",\"fall\":\"Fell\",\"year\":\"1889-01-01T00:00:00.000\",\"reclat\":\"1.166670\",\"reclong\":\"44.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[44.16667,1.16667]}}\n,{\"name\":\"Erxleben\",\"id\":\"10049\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"2250\",\"fall\":\"Fell\",\"year\":\"1812-01-01T00:00:00.000\",\"reclat\":\"52.216670\",\"reclong\":\"11.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.25,52.21667]}}\n,{\"name\":\"Esnandes\",\"id\":\"10051\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1837-01-01T00:00:00.000\",\"reclat\":\"46.250000\",\"reclong\":\"-1.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.1,46.25]}}\n,{\"name\":\"Essebi\",\"id\":\"10055\",\"nametype\":\"Valid\",\"recclass\":\"C2-ung\",\"mass\":\"500\",\"fall\":\"Fell\",\"year\":\"1957-01-01T00:00:00.000\",\"reclat\":\"2.883330\",\"reclong\":\"30.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.83333,2.88333]}}\n,{\"name\":\"Estherville\",\"id\":\"10059\",\"nametype\":\"Valid\",\"recclass\":\"Mesosiderite-A3/4\",\"mass\":\"320000\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"43.416670\",\"reclong\":\"-94.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-94.83333,43.41667]},\":@computed_region_cbhk_fwbd\":\"16\",\":@computed_region_nnqa_25f4\":\"277\"}\n,{\"name\":\"Farmington\",\"id\":\"10074\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"89400\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"39.750000\",\"reclong\":\"-97.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-97.03333,39.75]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1300\"}\n,{\"name\":\"Farmville\",\"id\":\"10075\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"56000\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"35.550000\",\"reclong\":\"-77.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-77.53333,35.55]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"2439\"}\n,{\"name\":\"Favars\",\"id\":\"10078\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1844-01-01T00:00:00.000\",\"reclat\":\"44.383330\",\"reclong\":\"2.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[2.81667,44.38333]}}\n,{\"name\":\"Fayetteville\",\"id\":\"10079\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"2360\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"36.050000\",\"reclong\":\"-94.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-94.16667,36.05]},\":@computed_region_cbhk_fwbd\":\"15\",\":@computed_region_nnqa_25f4\":\"70\"}\n,{\"name\":\"Feid Chair\",\"id\":\"10080\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"380\",\"fall\":\"Fell\",\"year\":\"1875-01-01T00:00:00.000\",\"reclat\":\"36.883330\",\"reclong\":\"8.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.45,36.88333]}}\n,{\"name\":\"Felix\",\"id\":\"10081\",\"nametype\":\"Valid\",\"recclass\":\"CO3.3\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"32.533330\",\"reclong\":\"-87.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87.16667,32.53333]},\":@computed_region_cbhk_fwbd\":\"29\",\":@computed_region_nnqa_25f4\":\"1631\"}\n,{\"name\":\"Fenghsien-Ku\",\"id\":\"10086\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"82\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"34.600000\",\"reclong\":\"116.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[116.75,34.6]}}\n,{\"name\":\"Ferguson\",\"id\":\"10088\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"220\",\"fall\":\"Fell\",\"year\":\"1889-01-01T00:00:00.000\",\"reclat\":\"36.100000\",\"reclong\":\"-81.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-81.41667,36.1]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"2331\"}\n,{\"name\":\"Fermo\",\"id\":\"10091\",\"nametype\":\"Valid\",\"recclass\":\"H3-5\",\"mass\":\"10200\",\"fall\":\"Fell\",\"year\":\"1996-01-01T00:00:00.000\",\"reclat\":\"43.181110\",\"reclong\":\"13.753330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.75333,43.18111]}}\n,{\"name\":\"Fisher\",\"id\":\"10107\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"17600\",\"fall\":\"Fell\",\"year\":\"1894-01-01T00:00:00.000\",\"reclat\":\"47.816670\",\"reclong\":\"-96.850000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96.85,47.81667]},\":@computed_region_cbhk_fwbd\":\"1\",\":@computed_region_nnqa_25f4\":\"385\"}\n,{\"name\":\"Florence\",\"id\":\"10111\",\"nametype\":\"Valid\",\"recclass\":\"H3\",\"mass\":\"3640\",\"fall\":\"Fell\",\"year\":\"1922-01-01T00:00:00.000\",\"reclat\":\"30.833330\",\"reclong\":\"-97.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-97.76667,30.83333]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"807\"}\n,{\"name\":\"Forest City\",\"id\":\"10119\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"152000\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"43.250000\",\"reclong\":\"-93.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-93.66667,43.25]},\":@computed_region_cbhk_fwbd\":\"16\",\":@computed_region_nnqa_25f4\":\"1785\"}\n,{\"name\":\"Forest Vale\",\"id\":\"10120\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"26000\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"-33.350000\",\"reclong\":\"146.858330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[146.85833,-33.35]}}\n,{\"name\":\"Forksville\",\"id\":\"10123\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6067\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"36.783330\",\"reclong\":\"-78.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-78.08333,36.78333]},\":@computed_region_cbhk_fwbd\":\"40\",\":@computed_region_nnqa_25f4\":\"2839\"}\n,{\"name\":\"Forsbach\",\"id\":\"10163\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"240\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"50.950000\",\"reclong\":\"7.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.31667,50.95]}}\n,{\"name\":\"Forsyth\",\"id\":\"10164\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"16300\",\"fall\":\"Fell\",\"year\":\"1829-01-01T00:00:00.000\",\"reclat\":\"33.016670\",\"reclong\":\"-83.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-83.96667,33.01667]},\":@computed_region_cbhk_fwbd\":\"31\",\":@computed_region_nnqa_25f4\":\"1470\"}\n,{\"name\":\"Fort Flatters\",\"id\":\"10166\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1944-01-01T00:00:00.000\",\"reclat\":\"28.250000\",\"reclong\":\"7.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7,28.25]}}\n,{\"name\":\"Frankfort (stone)\",\"id\":\"10177\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"650\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"34.483330\",\"reclong\":\"-87.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87.83333,34.48333]},\":@computed_region_cbhk_fwbd\":\"29\",\":@computed_region_nnqa_25f4\":\"99\"}\n,{\"name\":\"Fuhe\",\"id\":\"52412\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"23000\",\"fall\":\"Fell\",\"year\":\"1945-01-01T00:00:00.000\",\"reclat\":\"31.475560\",\"reclong\":\"113.566940\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[113.56694,31.47556]}}\n,{\"name\":\"Fukutomi\",\"id\":\"10836\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"11620\",\"fall\":\"Fell\",\"year\":\"1882-01-01T00:00:00.000\",\"reclat\":\"33.183330\",\"reclong\":\"130.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[130.2,33.18333]}}\n,{\"name\":\"Fünen\",\"id\":\"10838\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1654-01-01T00:00:00.000\",\"reclat\":\"55.333330\",\"reclong\":\"10.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.33333,55.33333]}}\n,{\"name\":\"Futtehpur\",\"id\":\"10839\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1822-01-01T00:00:00.000\",\"reclat\":\"25.950000\",\"reclong\":\"80.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[80.81667,25.95]}}\n,{\"name\":\"Fuyang\",\"id\":\"10840\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"32.900000\",\"reclong\":\"115.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.9,32.9]}}\n,{\"name\":\"Galapian\",\"id\":\"10846\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"132.69999999999999\",\"fall\":\"Fell\",\"year\":\"1826-01-01T00:00:00.000\",\"reclat\":\"44.300000\",\"reclong\":\"0.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.4,44.3]}}\n,{\"name\":\"Galim (a)\",\"id\":\"10848\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"36.1\",\"fall\":\"Fell\",\"year\":\"1952-01-01T00:00:00.000\",\"reclat\":\"7.050000\",\"reclong\":\"12.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.43333,7.05]}}\n,{\"name\":\"Galim (b)\",\"id\":\"10849\",\"nametype\":\"Valid\",\"recclass\":\"EH3/4-an\",\"mass\":\"28\",\"fall\":\"Fell\",\"year\":\"1952-01-01T00:00:00.000\",\"reclat\":\"7.050000\",\"reclong\":\"12.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.43333,7.05]}}\n,{\"name\":\"Galkiv\",\"id\":\"10850\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1995-01-01T00:00:00.000\",\"reclat\":\"51.683330\",\"reclong\":\"30.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.78333,51.68333]}}\n,{\"name\":\"Gambat\",\"id\":\"10851\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6400\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"27.350000\",\"reclong\":\"68.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[68.53333,27.35]}}\n,{\"name\":\"Gao-Guenie\",\"id\":\"10854\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"fall\":\"Fell\",\"year\":\"1960-01-01T00:00:00.000\",\"reclat\":\"11.650000\",\"reclong\":\"-2.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-2.18333,11.65]}}\n,{\"name\":\"Garhi Yasin\",\"id\":\"10860\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIE\",\"mass\":\"380\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"27.883330\",\"reclong\":\"68.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[68.53333,27.88333]}}\n,{\"name\":\"Garland\",\"id\":\"10861\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite-pm\",\"mass\":\"102\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"41.683330\",\"reclong\":\"-112.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-112.13333,41.68333]},\":@computed_region_cbhk_fwbd\":\"13\",\":@computed_region_nnqa_25f4\":\"2985\"}\n,{\"name\":\"Gashua\",\"id\":\"44882\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4162\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"12.850000\",\"reclong\":\"11.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.03333,12.85]}}\n,{\"name\":\"Gasseltepaoua\",\"id\":\"10866\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"fall\":\"Fell\",\"year\":\"2000-01-01T00:00:00.000\",\"reclat\":\"14.150830\",\"reclong\":\"-2.041670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-2.04167,14.15083]}}\n,{\"name\":\"Geidam\",\"id\":\"10870\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"725\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"12.916670\",\"reclong\":\"11.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.91667,12.91667]}}\n,{\"name\":\"Gifu\",\"id\":\"10914\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"14290\",\"fall\":\"Fell\",\"year\":\"1909-01-01T00:00:00.000\",\"reclat\":\"35.533330\",\"reclong\":\"136.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.88333,35.53333]}}\n,{\"name\":\"Girgenti\",\"id\":\"10917\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"18000\",\"fall\":\"Fell\",\"year\":\"1853-01-01T00:00:00.000\",\"reclat\":\"37.316670\",\"reclong\":\"13.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.56667,37.31667]}}\n,{\"name\":\"Git-Git\",\"id\":\"10919\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"480\",\"fall\":\"Fell\",\"year\":\"1947-01-01T00:00:00.000\",\"reclat\":\"9.600000\",\"reclong\":\"9.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.91667,9.6]}}\n,{\"name\":\"Glanerbrug\",\"id\":\"10923\",\"nametype\":\"Valid\",\"recclass\":\"L/LL5\",\"mass\":\"670\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\",\"reclat\":\"52.200000\",\"reclong\":\"6.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.86667,52.2]}}\n,{\"name\":\"Glanggang\",\"id\":\"10924\",\"nametype\":\"Valid\",\"recclass\":\"H5-6\",\"mass\":\"1303\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"-7.250000\",\"reclong\":\"107.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[107.7,-7.25]}}\n,{\"name\":\"Glasatovo\",\"id\":\"10926\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"152000\",\"fall\":\"Fell\",\"year\":\"1918-01-01T00:00:00.000\",\"reclat\":\"57.350000\",\"reclong\":\"37.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.61667,57.35]}}\n,{\"name\":\"Glatton\",\"id\":\"10930\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"767\",\"fall\":\"Fell\",\"year\":\"1991-01-01T00:00:00.000\",\"reclat\":\"52.459720\",\"reclong\":\"-0.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.3,52.45972]}}\n,{\"name\":\"Gnadenfrei\",\"id\":\"10936\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1750\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"50.666670\",\"reclong\":\"16.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.76667,50.66667]}}\n,{\"name\":\"Gopalpur\",\"id\":\"10948\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"1865-01-01T00:00:00.000\",\"reclat\":\"24.233330\",\"reclong\":\"89.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[89.05,24.23333]}}\n,{\"name\":\"Gorlovka\",\"id\":\"10949\",\"nametype\":\"Valid\",\"recclass\":\"H3.7\",\"mass\":\"3618\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"48.283330\",\"reclong\":\"38.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[38.08333,48.28333]}}\n,{\"name\":\"Granes\",\"id\":\"10956\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"9000\",\"fall\":\"Fell\",\"year\":\"1964-01-01T00:00:00.000\",\"reclat\":\"42.900000\",\"reclong\":\"2.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[2.25,42.9]}}\n,{\"name\":\"Grefsheim\",\"id\":\"11196\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"45.5\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"60.666670\",\"reclong\":\"11.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11,60.66667]}}\n,{\"name\":\"Grimsby\",\"id\":\"50911\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"215\",\"fall\":\"Fell\",\"year\":\"2009-01-01T00:00:00.000\",\"reclat\":\"43.200000\",\"reclong\":\"-79.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-79.61667,43.2]}}\n,{\"name\":\"Grosnaja\",\"id\":\"11206\",\"nametype\":\"Valid\",\"recclass\":\"CV3\",\"mass\":\"3500\",\"fall\":\"Fell\",\"year\":\"1861-01-01T00:00:00.000\",\"reclat\":\"43.666670\",\"reclong\":\"45.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[45.38333,43.66667]}}\n,{\"name\":\"Gross-Divina\",\"id\":\"11207\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"10500\",\"fall\":\"Fell\",\"year\":\"1837-01-01T00:00:00.000\",\"reclat\":\"49.266670\",\"reclong\":\"18.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[18.71667,49.26667]}}\n,{\"name\":\"Grossliebenthal\",\"id\":\"11208\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"8000\",\"fall\":\"Fell\",\"year\":\"1881-01-01T00:00:00.000\",\"reclat\":\"46.350000\",\"reclong\":\"30.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.58333,46.35]}}\n,{\"name\":\"Grüneberg\",\"id\":\"11426\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1841-01-01T00:00:00.000\",\"reclat\":\"51.933330\",\"reclong\":\"15.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.5,51.93333]}}\n,{\"name\":\"Grzempach\",\"id\":\"11429\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"690\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"52.866670\",\"reclong\":\"16.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.63333,52.86667]}}\n,{\"name\":\"Gualeguaychú\",\"id\":\"11432\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"22000\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"-33.000000\",\"reclong\":\"-58.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-58.61667,-33]}}\n,{\"name\":\"Guangmingshan\",\"id\":\"11435\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2910\",\"fall\":\"Fell\",\"year\":\"1996-01-01T00:00:00.000\",\"reclat\":\"39.804170\",\"reclong\":\"122.763890\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[122.76389,39.80417]}}\n,{\"name\":\"Guangnan\",\"id\":\"11436\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"fall\":\"Fell\",\"year\":\"1983-01-01T00:00:00.000\",\"reclat\":\"24.100000\",\"reclong\":\"105.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[105,24.1]}}\n,{\"name\":\"Guangrao\",\"id\":\"11437\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1900\",\"fall\":\"Fell\",\"year\":\"1980-01-01T00:00:00.000\",\"reclat\":\"37.100000\",\"reclong\":\"118.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[118.4,37.1]}}\n,{\"name\":\"Guareña\",\"id\":\"11439\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"39000\",\"fall\":\"Fell\",\"year\":\"1892-01-01T00:00:00.000\",\"reclat\":\"38.733330\",\"reclong\":\"-6.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.01667,38.73333]}}\n,{\"name\":\"Guêa\",\"id\":\"11440\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"1915\",\"fall\":\"Fell\",\"year\":\"1891-01-01T00:00:00.000\",\"reclat\":\"43.766670\",\"reclong\":\"20.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[20.23333,43.76667]}}\n,{\"name\":\"Guibga\",\"id\":\"11442\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"288\",\"fall\":\"Fell\",\"year\":\"1972-01-01T00:00:00.000\",\"reclat\":\"13.500000\",\"reclong\":\"-0.683330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.68333,13.5]}}\n,{\"name\":\"Guidder\",\"id\":\"11443\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"968\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"9.916670\",\"reclong\":\"13.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.98333,9.91667]}}\n,{\"name\":\"Gujargaon\",\"id\":\"11448\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2449\",\"fall\":\"Fell\",\"year\":\"1982-01-01T00:00:00.000\",\"reclat\":\"22.983330\",\"reclong\":\"76.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.05,22.98333]}}\n,{\"name\":\"Gujba\",\"id\":\"11449\",\"nametype\":\"Valid\",\"recclass\":\"CBa\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"11.491670\",\"reclong\":\"11.658330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.65833,11.49167]}}\n,{\"name\":\"Gumoschnik\",\"id\":\"11450\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5700\",\"fall\":\"Fell\",\"year\":\"1904-01-01T00:00:00.000\",\"reclat\":\"42.900000\",\"reclong\":\"24.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[24.7,42.9]}}\n,{\"name\":\"Gurram Konda\",\"id\":\"11464\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"28\",\"fall\":\"Fell\",\"year\":\"1814-01-01T00:00:00.000\",\"reclat\":\"13.783330\",\"reclong\":\"78.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.56667,13.78333]}}\n,{\"name\":\"Gursum\",\"id\":\"11465\",\"nametype\":\"Valid\",\"recclass\":\"H4/5\",\"mass\":\"34650\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"9.366670\",\"reclong\":\"42.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[42.41667,9.36667]}}\n,{\"name\":\"Gütersloh\",\"id\":\"11466\",\"nametype\":\"Valid\",\"recclass\":\"H3/4\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1851-01-01T00:00:00.000\",\"reclat\":\"51.916670\",\"reclong\":\"8.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.38333,51.91667]}}\n,{\"name\":\"Gyokukei\",\"id\":\"11467\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"1320\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"35.000000\",\"reclong\":\"127.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[127.5,35]}}\n,{\"name\":\"Hachi-oji\",\"id\":\"11468\",\"nametype\":\"Valid\",\"recclass\":\"H?\",\"mass\":\"0.2\",\"fall\":\"Fell\",\"year\":\"1817-01-01T00:00:00.000\",\"reclat\":\"35.650000\",\"reclong\":\"139.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[139.33333,35.65]}}\n,{\"name\":\"Hainaut\",\"id\":\"11472\",\"nametype\":\"Valid\",\"recclass\":\"H3-6\",\"mass\":\"9000\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"50.316670\",\"reclong\":\"3.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.73333,50.31667]}}\n,{\"name\":\"Hallingeberg\",\"id\":\"11479\",\"nametype\":\"Valid\",\"recclass\":\"L3.4\",\"mass\":\"1456\",\"fall\":\"Fell\",\"year\":\"1944-01-01T00:00:00.000\",\"reclat\":\"57.816670\",\"reclong\":\"16.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.23333,57.81667]}}\n,{\"name\":\"Hamlet\",\"id\":\"11485\",\"nametype\":\"Valid\",\"recclass\":\"LL4\",\"mass\":\"3710\",\"fall\":\"Fell\",\"year\":\"1959-01-01T00:00:00.000\",\"reclat\":\"41.383330\",\"reclong\":\"-86.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.6,41.38333]},\":@computed_region_cbhk_fwbd\":\"35\",\":@computed_region_nnqa_25f4\":\"1205\"}\n,{\"name\":\"Haraiya\",\"id\":\"11824\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1878-01-01T00:00:00.000\",\"reclat\":\"26.800000\",\"reclong\":\"82.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.53333,26.8]}}\n,{\"name\":\"Haripura\",\"id\":\"11829\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"315\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"28.383330\",\"reclong\":\"75.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.78333,28.38333]}}\n,{\"name\":\"Harleton\",\"id\":\"11830\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"8360\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"32.675000\",\"reclong\":\"-94.511670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-94.51167,32.675]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"2025\"}\n,{\"name\":\"Harrison County\",\"id\":\"11842\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"680\",\"fall\":\"Fell\",\"year\":\"1859-01-01T00:00:00.000\",\"reclat\":\"38.250000\",\"reclong\":\"-86.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.16667,38.25]},\":@computed_region_cbhk_fwbd\":\"35\",\":@computed_region_nnqa_25f4\":\"1855\"}\n,{\"name\":\"Hashima\",\"id\":\"11848\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"1110.5999999999999\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"35.294500\",\"reclong\":\"136.700330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.70033,35.2945]}}\n,{\"name\":\"Hassi-Jekna\",\"id\":\"11852\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-sHL\",\"mass\":\"1250\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"28.950000\",\"reclong\":\"0.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.81667,28.95]}}\n,{\"name\":\"Hatford\",\"id\":\"11855\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"29000\",\"fall\":\"Fell\",\"year\":\"1628-01-01T00:00:00.000\",\"reclat\":\"51.650000\",\"reclong\":\"-1.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.51667,51.65]}}\n,{\"name\":\"Haverö\",\"id\":\"11859\",\"nametype\":\"Valid\",\"recclass\":\"Ureilite\",\"mass\":\"1544\",\"fall\":\"Fell\",\"year\":\"1971-01-01T00:00:00.000\",\"reclat\":\"60.245560\",\"reclong\":\"22.061940\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.06194,60.24556]}}\n,{\"name\":\"Hedeskoga\",\"id\":\"11869\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3500\",\"fall\":\"Fell\",\"year\":\"1922-01-01T00:00:00.000\",\"reclat\":\"55.466670\",\"reclong\":\"13.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.78333,55.46667]}}\n,{\"name\":\"Hedjaz\",\"id\":\"11870\",\"nametype\":\"Valid\",\"recclass\":\"L3.7-6\",\"mass\":\"6100\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"27.333330\",\"reclong\":\"35.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.66667,27.33333]}}\n,{\"name\":\"Heredia\",\"id\":\"11875\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"10.000000\",\"reclong\":\"-84.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-84.1,10]}}\n,{\"name\":\"Hessle\",\"id\":\"11878\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"20000\",\"fall\":\"Fell\",\"year\":\"1869-01-01T00:00:00.000\",\"reclat\":\"59.850000\",\"reclong\":\"17.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[17.66667,59.85]}}\n,{\"name\":\"Higashi-koen\",\"id\":\"11883\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"750\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"33.600000\",\"reclong\":\"130.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[130.43333,33.6]}}\n,{\"name\":\"High Possil\",\"id\":\"11884\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1804-01-01T00:00:00.000\",\"reclat\":\"55.900000\",\"reclong\":\"-4.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-4.23333,55.9]}}\n,{\"name\":\"Hiroshima\",\"id\":\"11889\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"414\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"34.450000\",\"reclong\":\"132.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[132.38333,34.45]}}\n,{\"name\":\"Hoima\",\"id\":\"44714\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"167.7\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"1.345000\",\"reclong\":\"31.472780\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.47278,1.345]}}\n,{\"name\":\"Hökmark\",\"id\":\"11893\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"305.5\",\"fall\":\"Fell\",\"year\":\"1954-01-01T00:00:00.000\",\"reclat\":\"64.433330\",\"reclong\":\"21.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.2,64.43333]}}\n,{\"name\":\"Holbrook\",\"id\":\"11894\",\"nametype\":\"Valid\",\"recclass\":\"L/LL6\",\"mass\":\"220000\",\"fall\":\"Fell\",\"year\":\"1912-01-01T00:00:00.000\",\"reclat\":\"34.900000\",\"reclong\":\"-110.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-110.18333,34.9]},\":@computed_region_cbhk_fwbd\":\"7\",\":@computed_region_nnqa_25f4\":\"990\"}\n,{\"name\":\"Holetta\",\"id\":\"11895\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"1415\",\"fall\":\"Fell\",\"year\":\"1923-01-01T00:00:00.000\",\"reclat\":\"9.066670\",\"reclong\":\"38.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[38.41667,9.06667]}}\n,{\"name\":\"Homestead\",\"id\":\"11901\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"230000\",\"fall\":\"Fell\",\"year\":\"1875-01-01T00:00:00.000\",\"reclat\":\"41.800000\",\"reclong\":\"-91.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-91.86667,41.8]},\":@computed_region_cbhk_fwbd\":\"16\",\":@computed_region_nnqa_25f4\":\"284\"}\n,{\"name\":\"Honolulu\",\"id\":\"11904\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"2420\",\"fall\":\"Fell\",\"year\":\"1825-01-01T00:00:00.000\",\"reclat\":\"21.300000\",\"reclong\":\"-157.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-157.86667,21.3]},\":@computed_region_cbhk_fwbd\":\"4\",\":@computed_region_nnqa_25f4\":\"1657\"}\n,{\"name\":\"Hotse\",\"id\":\"11913\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"180\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"35.666670\",\"reclong\":\"115.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.5,35.66667]}}\n,{\"name\":\"Hoxie\",\"id\":\"11915\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"266.10000000000002\",\"fall\":\"Fell\",\"year\":\"1963-01-01T00:00:00.000\",\"reclat\":\"39.350000\",\"reclong\":\"-100.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-100.45,39.35]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1293\"}\n,{\"name\":\"Hraschina\",\"id\":\"11916\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IID\",\"mass\":\"49000\",\"fall\":\"Fell\",\"year\":\"1751-01-01T00:00:00.000\",\"reclat\":\"46.100000\",\"reclong\":\"16.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.33333,46.1]}}\n,{\"name\":\"Huaxi\",\"id\":\"54719\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"2010-01-01T00:00:00.000\",\"reclat\":\"26.464690\",\"reclong\":\"106.632410\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[106.63241,26.46469]}}\n,{\"name\":\"Hungen\",\"id\":\"11986\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"112\",\"fall\":\"Fell\",\"year\":\"1877-01-01T00:00:00.000\",\"reclat\":\"50.300000\",\"reclong\":\"8.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.91667,50.3]}}\n,{\"name\":\"Hvittis\",\"id\":\"11989\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"14000\",\"fall\":\"Fell\",\"year\":\"1901-01-01T00:00:00.000\",\"reclat\":\"61.183330\",\"reclong\":\"22.683330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.68333,61.18333]}}\n,{\"name\":\"Ibbenbüren\",\"id\":\"11992\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1870-01-01T00:00:00.000\",\"reclat\":\"52.283330\",\"reclong\":\"7.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.7,52.28333]}}\n,{\"name\":\"Ibitira\",\"id\":\"11993\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1957-01-01T00:00:00.000\",\"reclat\":\"-20.000000\",\"reclong\":\"-45.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-45,-20]}}\n,{\"name\":\"Ibrisim\",\"id\":\"11994\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"38.000000\",\"reclong\":\"35.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35,38]}}\n,{\"name\":\"Ichkala\",\"id\":\"11995\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"3973\",\"fall\":\"Fell\",\"year\":\"1936-01-01T00:00:00.000\",\"reclat\":\"58.200000\",\"reclong\":\"82.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.93333,58.2]}}\n,{\"name\":\"Idutywa\",\"id\":\"12000\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3457\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"-32.100000\",\"reclong\":\"28.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28.33333,-32.1]}}\n,{\"name\":\"Iguaracu\",\"id\":\"12003\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1200\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"-23.200000\",\"reclong\":\"-51.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-51.83333,-23.2]}}\n,{\"name\":\"Ijopega\",\"id\":\"12004\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"7330\",\"fall\":\"Fell\",\"year\":\"1975-01-01T00:00:00.000\",\"reclat\":\"-6.033330\",\"reclong\":\"145.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[145.36667,-6.03333]}}\n,{\"name\":\"Indarch\",\"id\":\"12027\",\"nametype\":\"Valid\",\"recclass\":\"EH4\",\"mass\":\"27000\",\"fall\":\"Fell\",\"year\":\"1891-01-01T00:00:00.000\",\"reclat\":\"39.750000\",\"reclong\":\"46.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[46.66667,39.75]}}\n,{\"name\":\"Independence\",\"id\":\"12028\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"880\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"39.083330\",\"reclong\":\"-94.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-94.4,39.08333]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"525\"}\n,{\"name\":\"Inner Mongolia\",\"id\":\"12037\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1963-01-01T00:00:00.000\",\"reclat\":\"41.000000\",\"reclong\":\"112.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[112,41]}}\n,{\"name\":\"Innisfree\",\"id\":\"12039\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"4576\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"53.415000\",\"reclong\":\"-111.337500\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-111.3375,53.415]}}\n,{\"name\":\"Ipiranga\",\"id\":\"12043\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1972-01-01T00:00:00.000\",\"reclat\":\"-25.500000\",\"reclong\":\"-54.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-54.5,-25.5]}}\n,{\"name\":\"Ishinga\",\"id\":\"12049\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"1300\",\"fall\":\"Fell\",\"year\":\"1954-01-01T00:00:00.000\",\"reclat\":\"-8.933330\",\"reclong\":\"33.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.8,-8.93333]}}\n,{\"name\":\"Isthilart\",\"id\":\"12053\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3050\",\"fall\":\"Fell\",\"year\":\"1928-01-01T00:00:00.000\",\"reclat\":\"-31.183330\",\"reclong\":\"-57.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-57.95,-31.18333]}}\n,{\"name\":\"Itapicuru-Mirim\",\"id\":\"12056\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2024\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"-3.400000\",\"reclong\":\"-44.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-44.33333,-3.4]}}\n,{\"name\":\"Itqiy\",\"id\":\"12058\",\"nametype\":\"Valid\",\"recclass\":\"EH7-an\",\"mass\":\"4720\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\",\"reclat\":\"26.590830\",\"reclong\":\"-12.952170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-12.95217,26.59083]}}\n,{\"name\":\"Ivuna\",\"id\":\"12063\",\"nametype\":\"Valid\",\"recclass\":\"CI1\",\"mass\":\"704.5\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"-8.416670\",\"reclong\":\"32.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[32.43333,-8.41667]}}\n,{\"name\":\"Jackalsfontein\",\"id\":\"12065\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"48000\",\"fall\":\"Fell\",\"year\":\"1903-01-01T00:00:00.000\",\"reclat\":\"-32.500000\",\"reclong\":\"21.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.9,-32.5]}}\n,{\"name\":\"Jajh deh Kot Lalu\",\"id\":\"12067\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"973\",\"fall\":\"Fell\",\"year\":\"1926-01-01T00:00:00.000\",\"reclat\":\"26.750000\",\"reclong\":\"68.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[68.41667,26.75]}}\n,{\"name\":\"Jalanash\",\"id\":\"12068\",\"nametype\":\"Valid\",\"recclass\":\"Ureilite\",\"mass\":\"700\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\"}\n,{\"name\":\"Jalandhar\",\"id\":\"12069\",\"nametype\":\"Valid\",\"recclass\":\"Iron\",\"mass\":\"1967\",\"fall\":\"Fell\",\"year\":\"1621-01-01T00:00:00.000\",\"reclat\":\"31.000000\",\"reclong\":\"75.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75,31]}}\n,{\"name\":\"Jamkheir\",\"id\":\"12072\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"22\",\"fall\":\"Fell\",\"year\":\"1866-01-01T00:00:00.000\",\"reclat\":\"18.750000\",\"reclong\":\"75.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.33333,18.75]}}\n,{\"name\":\"Jartai\",\"id\":\"12074\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"20500\",\"fall\":\"Fell\",\"year\":\"1979-01-01T00:00:00.000\",\"reclat\":\"39.700000\",\"reclong\":\"105.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[105.8,39.7]}}\n,{\"name\":\"Jelica\",\"id\":\"12078\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"34000\",\"fall\":\"Fell\",\"year\":\"1889-01-01T00:00:00.000\",\"reclat\":\"43.833330\",\"reclong\":\"20.441670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[20.44167,43.83333]}}\n,{\"name\":\"Jemlapur\",\"id\":\"12079\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"450\",\"fall\":\"Fell\",\"year\":\"1901-01-01T00:00:00.000\"}\n,{\"name\":\"Jesenice\",\"id\":\"51589\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3667\",\"fall\":\"Fell\",\"year\":\"2009-01-01T00:00:00.000\",\"reclat\":\"46.421370\",\"reclong\":\"14.052170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.05217,46.42137]}}\n,{\"name\":\"Jhung\",\"id\":\"12085\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"5900\",\"fall\":\"Fell\",\"year\":\"1873-01-01T00:00:00.000\",\"reclat\":\"31.300000\",\"reclong\":\"72.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[72.38333,31.3]}}\n,{\"name\":\"Jiange\",\"id\":\"12086\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"222\",\"fall\":\"Fell\",\"year\":\"1964-01-01T00:00:00.000\",\"reclat\":\"31.916670\",\"reclong\":\"104.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[104.91667,31.91667]}}\n,{\"name\":\"Jianshi\",\"id\":\"12087\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"600000\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"30.808330\",\"reclong\":\"109.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[109.5,30.80833]}}\n,{\"name\":\"Jilin\",\"id\":\"12171\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"4000000\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"44.050000\",\"reclong\":\"126.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[126.16667,44.05]}}\n,{\"name\":\"Jodiya\",\"id\":\"47362\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"100\",\"fall\":\"Fell\",\"year\":\"2006-01-01T00:00:00.000\",\"reclat\":\"22.680000\",\"reclong\":\"70.313330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[70.31333,22.68]}}\n,{\"name\":\"Jodzie\",\"id\":\"12173\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"30\",\"fall\":\"Fell\",\"year\":\"1877-01-01T00:00:00.000\",\"reclat\":\"55.700000\",\"reclong\":\"24.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[24.4,55.7]}}\n,{\"name\":\"Johnstown\",\"id\":\"12198\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"40300\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"40.350000\",\"reclong\":\"-104.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-104.9,40.35]},\":@computed_region_cbhk_fwbd\":\"9\",\":@computed_region_nnqa_25f4\":\"1072\"}\n,{\"name\":\"Jolomba\",\"id\":\"12199\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"483\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"-11.850000\",\"reclong\":\"15.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.83333,-11.85]}}\n,{\"name\":\"Jonzac\",\"id\":\"12202\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1819-01-01T00:00:00.000\",\"reclat\":\"45.433330\",\"reclong\":\"-0.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.45,45.43333]}}\n,{\"name\":\"Juancheng\",\"id\":\"12203\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"1997-01-01T00:00:00.000\",\"reclat\":\"35.500000\",\"reclong\":\"115.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.41667,35.5]}}\n,{\"name\":\"Judesegeri\",\"id\":\"12207\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"680\",\"fall\":\"Fell\",\"year\":\"1876-01-01T00:00:00.000\",\"reclat\":\"12.850000\",\"reclong\":\"76.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.8,12.85]}}\n,{\"name\":\"Jumapalo\",\"id\":\"12209\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"32490\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"-7.716670\",\"reclong\":\"111.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.2,-7.71667]}}\n,{\"name\":\"Junan\",\"id\":\"12210\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"950\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"35.200000\",\"reclong\":\"118.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[118.8,35.2]}}\n,{\"name\":\"Juromenha\",\"id\":\"12213\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"25250\",\"fall\":\"Fell\",\"year\":\"1968-01-01T00:00:00.000\",\"reclat\":\"38.740280\",\"reclong\":\"-7.270000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.27,38.74028]}}\n,{\"name\":\"Juvinas\",\"id\":\"12214\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"91000\",\"fall\":\"Fell\",\"year\":\"1821-01-01T00:00:00.000\",\"reclat\":\"44.716670\",\"reclong\":\"4.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4.3,44.71667]}}\n,{\"name\":\"Kaba\",\"id\":\"12218\",\"nametype\":\"Valid\",\"recclass\":\"CV3\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"47.350000\",\"reclong\":\"21.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.3,47.35]}}\n,{\"name\":\"Kabo\",\"id\":\"12220\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"13400\",\"fall\":\"Fell\",\"year\":\"1971-01-01T00:00:00.000\",\"reclat\":\"11.850000\",\"reclong\":\"8.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.21667,11.85]}}\n,{\"name\":\"Kadonah\",\"id\":\"12221\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"89\",\"fall\":\"Fell\",\"year\":\"1822-01-01T00:00:00.000\",\"reclat\":\"27.083330\",\"reclong\":\"78.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.33333,27.08333]}}\n,{\"name\":\"Kaee\",\"id\":\"12222\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"230\",\"fall\":\"Fell\",\"year\":\"1838-01-01T00:00:00.000\",\"reclat\":\"27.250000\",\"reclong\":\"79.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[79.96667,27.25]}}\n,{\"name\":\"Kagarlyk\",\"id\":\"12227\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1900\",\"fall\":\"Fell\",\"year\":\"1908-01-01T00:00:00.000\",\"reclat\":\"49.866670\",\"reclong\":\"30.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.83333,49.86667]}}\n,{\"name\":\"Kaidun\",\"id\":\"12228\",\"nametype\":\"Valid\",\"recclass\":\"CR2\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1980-01-01T00:00:00.000\",\"reclat\":\"15.000000\",\"reclong\":\"48.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[48.3,15]}}\n,{\"name\":\"Kainsaz\",\"id\":\"12229\",\"nametype\":\"Valid\",\"recclass\":\"CO3.2\",\"mass\":\"200000\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"55.433330\",\"reclong\":\"53.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[53.25,55.43333]}}\n,{\"name\":\"Kakangari\",\"id\":\"12230\",\"nametype\":\"Valid\",\"recclass\":\"K3\",\"mass\":\"350\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"12.383330\",\"reclong\":\"78.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.51667,12.38333]}}\n,{\"name\":\"Kakowa\",\"id\":\"12231\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"577\",\"fall\":\"Fell\",\"year\":\"1858-01-01T00:00:00.000\",\"reclat\":\"45.133330\",\"reclong\":\"21.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.66667,45.13333]}}\n,{\"name\":\"Kalaba\",\"id\":\"12232\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"950\",\"fall\":\"Fell\",\"year\":\"1951-01-01T00:00:00.000\",\"reclat\":\"-6.833330\",\"reclong\":\"29.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.5,-6.83333]}}\n,{\"name\":\"Kalumbi\",\"id\":\"12236\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"17.833330\",\"reclong\":\"73.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[73.98333,17.83333]}}\n,{\"name\":\"Kamalpur\",\"id\":\"12238\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2770\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"26.033330\",\"reclong\":\"81.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81.46667,26.03333]}}\n,{\"name\":\"Kamiomi\",\"id\":\"12240\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"448\",\"fall\":\"Fell\",\"year\":\"1913-01-01T00:00:00.000\",\"reclat\":\"36.041670\",\"reclong\":\"139.956670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[139.95667,36.04167]}}\n,{\"name\":\"Kamsagar\",\"id\":\"12241\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1293\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"14.183330\",\"reclong\":\"75.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.8,14.18333]}}\n,{\"name\":\"Kandahar (Afghanistan)\",\"id\":\"12243\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"299\",\"fall\":\"Fell\",\"year\":\"1959-01-01T00:00:00.000\",\"reclat\":\"31.600000\",\"reclong\":\"65.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[65.78333,31.6]}}\n,{\"name\":\"Kangean\",\"id\":\"12245\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1630\",\"fall\":\"Fell\",\"year\":\"1908-01-01T00:00:00.000\",\"reclat\":\"-7.000000\",\"reclong\":\"115.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.5,-7]}}\n,{\"name\":\"Kangra Valley\",\"id\":\"12246\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"400\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"32.083330\",\"reclong\":\"76.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.3,32.08333]}}\n,{\"name\":\"Kapoeta\",\"id\":\"12251\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"11355\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"4.700000\",\"reclong\":\"33.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.63333,4.7]}}\n,{\"name\":\"Kaprada\",\"id\":\"47357\",\"nametype\":\"Valid\",\"recclass\":\"L5/6\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"2004-01-01T00:00:00.000\",\"reclat\":\"20.339160\",\"reclong\":\"73.223290\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[73.22329,20.33916]}}\n,{\"name\":\"Kaptal-Aryk\",\"id\":\"12253\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3500\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"42.450000\",\"reclong\":\"73.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[73.36667,42.45]}}\n,{\"name\":\"Karakol\",\"id\":\"12256\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1840-01-01T00:00:00.000\",\"reclat\":\"47.216670\",\"reclong\":\"81.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81.01667,47.21667]}}\n,{\"name\":\"Karatu\",\"id\":\"12258\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"2220\",\"fall\":\"Fell\",\"year\":\"1963-01-01T00:00:00.000\",\"reclat\":\"-3.500000\",\"reclong\":\"35.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.58333,-3.5]}}\n,{\"name\":\"Karewar\",\"id\":\"12260\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"180\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"12.900000\",\"reclong\":\"7.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.15,12.9]}}\n,{\"name\":\"Karkh\",\"id\":\"12262\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"22000\",\"fall\":\"Fell\",\"year\":\"1905-01-01T00:00:00.000\",\"reclat\":\"27.800000\",\"reclong\":\"67.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[67.16667,27.8]}}\n,{\"name\":\"Karloowala\",\"id\":\"12263\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2950\",\"fall\":\"Fell\",\"year\":\"1955-01-01T00:00:00.000\",\"reclat\":\"31.583330\",\"reclong\":\"71.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[71.6,31.58333]}}\n,{\"name\":\"Karoonda\",\"id\":\"12264\",\"nametype\":\"Valid\",\"recclass\":\"CK4\",\"mass\":\"41730\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"-35.083330\",\"reclong\":\"139.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[139.91667,-35.08333]}}\n,{\"name\":\"Kasamatsu\",\"id\":\"12266\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"710\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"35.366670\",\"reclong\":\"136.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.76667,35.36667]}}\n,{\"name\":\"Kasauli\",\"id\":\"30740\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"16820\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"29.583330\",\"reclong\":\"77.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.58333,29.58333]}}\n,{\"name\":\"Katagum\",\"id\":\"35465\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"11.333330\",\"reclong\":\"10.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.08333,11.33333]}}\n,{\"name\":\"Kavarpura\",\"id\":\"47351\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIE-an\",\"mass\":\"6800\",\"fall\":\"Fell\",\"year\":\"2006-01-01T00:00:00.000\",\"reclat\":\"25.143330\",\"reclong\":\"75.813330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.81333,25.14333]}}\n,{\"name\":\"Kayakent\",\"id\":\"12268\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"85000\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"39.263330\",\"reclong\":\"31.780000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.78,39.26333]}}\n,{\"name\":\"Kediri\",\"id\":\"12270\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"3300\",\"fall\":\"Fell\",\"year\":\"1940-01-01T00:00:00.000\",\"reclat\":\"-7.750000\",\"reclong\":\"112.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[112.01667,-7.75]}}\n,{\"name\":\"Kemer\",\"id\":\"53654\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"5760\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"36.541940\",\"reclong\":\"29.418220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.41822,36.54194]}}\n,{\"name\":\"Kendleton\",\"id\":\"12275\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"6937\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"29.450000\",\"reclong\":\"-96.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96,29.45]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"3190\"}\n,{\"name\":\"Kendrapara\",\"id\":\"12276\",\"nametype\":\"Valid\",\"recclass\":\"H4-5\",\"mass\":\"6669.2\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"20.462500\",\"reclong\":\"86.702780\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[86.70278,20.4625]}}\n,{\"name\":\"Kerilis\",\"id\":\"12282\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1874-01-01T00:00:00.000\",\"reclat\":\"48.400000\",\"reclong\":\"-3.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.3,48.4]}}\n,{\"name\":\"Kernouve\",\"id\":\"12284\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"80000\",\"fall\":\"Fell\",\"year\":\"1869-01-01T00:00:00.000\",\"reclat\":\"48.116670\",\"reclong\":\"-3.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.08333,48.11667]}}\n,{\"name\":\"Kesen\",\"id\":\"12286\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"135000\",\"fall\":\"Fell\",\"year\":\"1850-01-01T00:00:00.000\",\"reclat\":\"38.983330\",\"reclong\":\"141.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[141.61667,38.98333]}}\n,{\"name\":\"Khairpur\",\"id\":\"12288\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"13600\",\"fall\":\"Fell\",\"year\":\"1873-01-01T00:00:00.000\",\"reclat\":\"29.533330\",\"reclong\":\"72.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[72.3,29.53333]}}\n,{\"name\":\"Khanpur\",\"id\":\"12289\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"3698\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"25.550000\",\"reclong\":\"83.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.11667,25.55]}}\n,{\"name\":\"Kharkov\",\"id\":\"12291\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1787-01-01T00:00:00.000\",\"reclat\":\"50.625000\",\"reclong\":\"35.075000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.075,50.625]}}\n,{\"name\":\"Kheragur\",\"id\":\"12294\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"450\",\"fall\":\"Fell\",\"year\":\"1860-01-01T00:00:00.000\",\"reclat\":\"26.950000\",\"reclong\":\"77.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.88333,26.95]}}\n,{\"name\":\"Khetri\",\"id\":\"12296\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"100\",\"fall\":\"Fell\",\"year\":\"1867-01-01T00:00:00.000\",\"reclat\":\"28.016670\",\"reclong\":\"75.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.81667,28.01667]}}\n,{\"name\":\"Khmelevka\",\"id\":\"12297\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"6109\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"56.750000\",\"reclong\":\"75.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.33333,56.75]}}\n,{\"name\":\"Khohar\",\"id\":\"12298\",\"nametype\":\"Valid\",\"recclass\":\"L3.6\",\"mass\":\"9700\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"25.100000\",\"reclong\":\"81.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81.53333,25.1]}}\n,{\"name\":\"Khor Temiki\",\"id\":\"12299\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"16.000000\",\"reclong\":\"36.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[36,16]}}\n,{\"name\":\"Kidairat\",\"id\":\"12300\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"1983-01-01T00:00:00.000\",\"reclat\":\"14.000000\",\"reclong\":\"28.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28,14]}}\n,{\"name\":\"Kiel\",\"id\":\"12301\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"737.6\",\"fall\":\"Fell\",\"year\":\"1962-01-01T00:00:00.000\",\"reclat\":\"54.400000\",\"reclong\":\"10.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.15,54.4]}}\n,{\"name\":\"Kiffa\",\"id\":\"12303\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"16.583330\",\"reclong\":\"-11.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-11.33333,16.58333]}}\n,{\"name\":\"Kijima (1906)\",\"id\":\"12305\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"331\",\"fall\":\"Fell\",\"year\":\"1906-01-01T00:00:00.000\",\"reclat\":\"36.850000\",\"reclong\":\"138.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[138.38333,36.85]}}\n,{\"name\":\"Kikino\",\"id\":\"12306\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"195\",\"fall\":\"Fell\",\"year\":\"1809-01-01T00:00:00.000\",\"reclat\":\"55.000000\",\"reclong\":\"34.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[34,55]}}\n,{\"name\":\"Kilabo\",\"id\":\"12307\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"19000\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"12.766670\",\"reclong\":\"9.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.8,12.76667]}}\n,{\"name\":\"Kilbourn\",\"id\":\"12308\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"772\",\"fall\":\"Fell\",\"year\":\"1911-01-01T00:00:00.000\",\"reclat\":\"43.583330\",\"reclong\":\"-89.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-89.6,43.58333]},\":@computed_region_cbhk_fwbd\":\"41\",\":@computed_region_nnqa_25f4\":\"2971\"}\n,{\"name\":\"Killeter\",\"id\":\"12309\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"140\",\"fall\":\"Fell\",\"year\":\"1844-01-01T00:00:00.000\",\"reclat\":\"54.666670\",\"reclong\":\"-7.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.66667,54.66667]}}\n,{\"name\":\"Kingai\",\"id\":\"12316\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"67.400000000000006\",\"fall\":\"Fell\",\"year\":\"1967-01-01T00:00:00.000\",\"reclat\":\"11.633330\",\"reclong\":\"24.683330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[24.68333,11.63333]}}\n,{\"name\":\"Kirbyville\",\"id\":\"12321\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"97.7\",\"fall\":\"Fell\",\"year\":\"1906-01-01T00:00:00.000\",\"reclat\":\"30.750000\",\"reclong\":\"-95.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-95.95,30.75]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"2018\"}\n,{\"name\":\"Kisvarsány\",\"id\":\"12325\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1550\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"48.166670\",\"reclong\":\"22.308330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.30833,48.16667]}}\n,{\"name\":\"Kitchener\",\"id\":\"12326\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"202.6\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"43.383330\",\"reclong\":\"-80.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-80.38333,43.38333]}}\n,{\"name\":\"Klein-Wenden\",\"id\":\"12332\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"3250\",\"fall\":\"Fell\",\"year\":\"1843-01-01T00:00:00.000\",\"reclat\":\"51.600000\",\"reclong\":\"10.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.8,51.6]}}\n,{\"name\":\"Knyahinya\",\"id\":\"12335\",\"nametype\":\"Valid\",\"recclass\":\"L/LL5\",\"mass\":\"500000\",\"fall\":\"Fell\",\"year\":\"1866-01-01T00:00:00.000\",\"reclat\":\"48.900000\",\"reclong\":\"22.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.4,48.9]}}\n,{\"name\":\"Kobe\",\"id\":\"12336\",\"nametype\":\"Valid\",\"recclass\":\"CK4\",\"mass\":\"136\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"34.733330\",\"reclong\":\"135.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[135.16667,34.73333]}}\n,{\"name\":\"Kokubunji\",\"id\":\"12342\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"11510\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"34.300000\",\"reclong\":\"133.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[133.95,34.3]}}\n,{\"name\":\"Komagome\",\"id\":\"12343\",\"nametype\":\"Valid\",\"recclass\":\"Iron\",\"mass\":\"238\",\"fall\":\"Fell\",\"year\":\"1926-01-01T00:00:00.000\",\"reclat\":\"35.733330\",\"reclong\":\"139.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[139.75,35.73333]}}\n,{\"name\":\"Konovo\",\"id\":\"12344\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"90\",\"fall\":\"Fell\",\"year\":\"1931-01-01T00:00:00.000\",\"reclat\":\"42.516670\",\"reclong\":\"26.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.16667,42.51667]}}\n,{\"name\":\"Košice\",\"id\":\"53810\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"4300\",\"fall\":\"Fell\",\"year\":\"2010-01-01T00:00:00.000\",\"reclat\":\"48.763670\",\"reclong\":\"21.176330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.17633,48.76367]}}\n,{\"name\":\"Krähenberg\",\"id\":\"12353\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"16500\",\"fall\":\"Fell\",\"year\":\"1869-01-01T00:00:00.000\",\"reclat\":\"49.326940\",\"reclong\":\"7.464720\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.46472,49.32694]}}\n,{\"name\":\"Krasnoi-Ugol\",\"id\":\"12355\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2440\",\"fall\":\"Fell\",\"year\":\"1829-01-01T00:00:00.000\",\"reclat\":\"54.033330\",\"reclong\":\"40.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[40.9,54.03333]}}\n,{\"name\":\"Krasnyi Klyuch\",\"id\":\"12357\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1946-01-01T00:00:00.000\",\"reclat\":\"54.333330\",\"reclong\":\"56.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[56.08333,54.33333]}}\n,{\"name\":\"Krutikha\",\"id\":\"12363\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"845.2\",\"fall\":\"Fell\",\"year\":\"1906-01-01T00:00:00.000\",\"reclat\":\"56.800000\",\"reclong\":\"77.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77,56.8]}}\n,{\"name\":\"Krymka\",\"id\":\"12364\",\"nametype\":\"Valid\",\"recclass\":\"LL3.2\",\"mass\":\"50000\",\"fall\":\"Fell\",\"year\":\"1946-01-01T00:00:00.000\",\"reclat\":\"47.833330\",\"reclong\":\"30.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.76667,47.83333]}}\n,{\"name\":\"Kukschin\",\"id\":\"12368\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2250\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"51.150000\",\"reclong\":\"31.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.7,51.15]}}\n,{\"name\":\"Kulak\",\"id\":\"12369\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"453.6\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"30.731110\",\"reclong\":\"66.802220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[66.80222,30.73111]}}\n,{\"name\":\"Kuleschovka\",\"id\":\"12370\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1811-01-01T00:00:00.000\",\"reclat\":\"50.750000\",\"reclong\":\"33.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.5,50.75]}}\n,{\"name\":\"Kulp\",\"id\":\"12373\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"3719\",\"fall\":\"Fell\",\"year\":\"1906-01-01T00:00:00.000\",\"reclat\":\"41.116670\",\"reclong\":\"45.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[45,41.11667]}}\n,{\"name\":\"Kunashak\",\"id\":\"12377\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"200000\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"55.783330\",\"reclong\":\"61.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[61.36667,55.78333]}}\n,{\"name\":\"Kunya-Urgench\",\"id\":\"12379\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1100000\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"42.250000\",\"reclong\":\"59.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[59.2,42.25]}}\n,{\"name\":\"Kushiike\",\"id\":\"12381\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"4460\",\"fall\":\"Fell\",\"year\":\"1920-01-01T00:00:00.000\",\"reclat\":\"37.050000\",\"reclong\":\"138.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[138.38333,37.05]}}\n,{\"name\":\"Kusiali\",\"id\":\"12382\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5\",\"fall\":\"Fell\",\"year\":\"1860-01-01T00:00:00.000\",\"reclat\":\"29.683330\",\"reclong\":\"78.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.38333,29.68333]}}\n,{\"name\":\"Kutais\",\"id\":\"12383\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"23\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"44.516670\",\"reclong\":\"39.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[39.3,44.51667]}}\n,{\"name\":\"Kuttippuram\",\"id\":\"12384\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"45000\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"10.833330\",\"reclong\":\"76.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.03333,10.83333]}}\n,{\"name\":\"Kuznetzovo\",\"id\":\"12385\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4047\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"55.200000\",\"reclong\":\"75.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.33333,55.2]}}\n,{\"name\":\"Kyushu\",\"id\":\"12390\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"45000\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"32.033330\",\"reclong\":\"130.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[130.63333,32.03333]}}\n,{\"name\":\"La Bécasse\",\"id\":\"12392\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2800\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"47.083330\",\"reclong\":\"1.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.75,47.08333]}}\n,{\"name\":\"La Charca\",\"id\":\"12394\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"399\",\"fall\":\"Fell\",\"year\":\"1878-01-01T00:00:00.000\",\"reclat\":\"20.666670\",\"reclong\":\"-101.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-101.28333,20.66667]}}\n,{\"name\":\"La Colina\",\"id\":\"12395\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"-37.333330\",\"reclong\":\"-61.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-61.53333,-37.33333]}}\n,{\"name\":\"La Criolla\",\"id\":\"12396\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"45000\",\"fall\":\"Fell\",\"year\":\"1985-01-01T00:00:00.000\",\"reclat\":\"-31.233330\",\"reclong\":\"-58.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-58.16667,-31.23333]}}\n,{\"name\":\"Laborel\",\"id\":\"12408\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3833\",\"fall\":\"Fell\",\"year\":\"1871-01-01T00:00:00.000\",\"reclat\":\"44.283330\",\"reclong\":\"5.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.58333,44.28333]}}\n,{\"name\":\"Lahrauli\",\"id\":\"12433\",\"nametype\":\"Valid\",\"recclass\":\"Ureilite\",\"mass\":\"900\",\"fall\":\"Fell\",\"year\":\"1955-01-01T00:00:00.000\",\"reclat\":\"26.783330\",\"reclong\":\"82.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.71667,26.78333]}}\n,{\"name\":\"L'Aigle\",\"id\":\"12434\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"37000\",\"fall\":\"Fell\",\"year\":\"1803-01-01T00:00:00.000\",\"reclat\":\"48.766670\",\"reclong\":\"0.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.63333,48.76667]}}\n,{\"name\":\"Cumulus Hills 04075\",\"id\":\"32531\",\"nametype\":\"Valid\",\"recclass\":\"Pallasite\",\"mass\":\"9.6\",\"fall\":\"Found\",\"year\":\"2003-01-01T00:00:00.000\"}\n,{\"name\":\"Lakangaon\",\"id\":\"12435\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"212.5\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"21.866670\",\"reclong\":\"76.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.03333,21.86667]}}\n,{\"name\":\"Lalitpur\",\"id\":\"12451\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"372\",\"fall\":\"Fell\",\"year\":\"1887-01-01T00:00:00.000\",\"reclat\":\"24.450000\",\"reclong\":\"78.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.56667,24.45]}}\n,{\"name\":\"Lancé\",\"id\":\"12455\",\"nametype\":\"Valid\",\"recclass\":\"CO3.5\",\"mass\":\"51700\",\"fall\":\"Fell\",\"year\":\"1872-01-01T00:00:00.000\",\"reclat\":\"47.700000\",\"reclong\":\"1.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.06667,47.7]}}\n,{\"name\":\"Lancon\",\"id\":\"12456\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"43.750000\",\"reclong\":\"5.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.11667,43.75]}}\n,{\"name\":\"Långhalsen\",\"id\":\"12461\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2300\",\"fall\":\"Fell\",\"year\":\"1947-01-01T00:00:00.000\",\"reclat\":\"58.850000\",\"reclong\":\"16.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.73333,58.85]}}\n,{\"name\":\"Lanxi\",\"id\":\"12464\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1282\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"46.241670\",\"reclong\":\"126.196110\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[126.19611,46.24167]}}\n,{\"name\":\"Lanzenkirchen\",\"id\":\"12465\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"47.750000\",\"reclong\":\"16.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.23333,47.75]}}\n,{\"name\":\"Laochenzhen\",\"id\":\"12466\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"14250\",\"fall\":\"Fell\",\"year\":\"1987-01-01T00:00:00.000\",\"reclat\":\"33.133330\",\"reclong\":\"115.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.16667,33.13333]}}\n,{\"name\":\"Launton\",\"id\":\"12740\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1060\",\"fall\":\"Fell\",\"year\":\"1830-01-01T00:00:00.000\",\"reclat\":\"51.900000\",\"reclong\":\"-1.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.11667,51.9]}}\n,{\"name\":\"Lavrentievka\",\"id\":\"12743\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"800\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"52.450000\",\"reclong\":\"51.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[51.56667,52.45]}}\n,{\"name\":\"Le Pressoir\",\"id\":\"12748\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1845-01-01T00:00:00.000\",\"reclat\":\"47.166670\",\"reclong\":\"0.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.43333,47.16667]}}\n,{\"name\":\"Le Teilleul\",\"id\":\"12749\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"780\",\"fall\":\"Fell\",\"year\":\"1845-01-01T00:00:00.000\",\"reclat\":\"48.533330\",\"reclong\":\"-0.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.86667,48.53333]}}\n,{\"name\":\"Leedey\",\"id\":\"12755\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"51500\",\"fall\":\"Fell\",\"year\":\"1943-01-01T00:00:00.000\",\"reclat\":\"35.883330\",\"reclong\":\"-99.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.33333,35.88333]},\":@computed_region_cbhk_fwbd\":\"20\",\":@computed_region_nnqa_25f4\":\"608\"}\n,{\"name\":\"Leeuwfontein\",\"id\":\"12756\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"460\",\"fall\":\"Fell\",\"year\":\"1912-01-01T00:00:00.000\",\"reclat\":\"-25.666670\",\"reclong\":\"28.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28.36667,-25.66667]}}\n,{\"name\":\"Leighlinbridge\",\"id\":\"12759\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"271.39999999999998\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"52.666670\",\"reclong\":\"-6.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.96667,52.66667]}}\n,{\"name\":\"Leighton\",\"id\":\"12760\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"877\",\"fall\":\"Fell\",\"year\":\"1907-01-01T00:00:00.000\",\"reclat\":\"34.583330\",\"reclong\":\"-87.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87.5,34.58333]},\":@computed_region_cbhk_fwbd\":\"29\",\":@computed_region_nnqa_25f4\":\"1585\"}\n,{\"name\":\"Leonovka\",\"id\":\"12765\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"700\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"52.266670\",\"reclong\":\"32.850000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[32.85,52.26667]}}\n,{\"name\":\"Les Ormes\",\"id\":\"12769\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"125\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"48.350000\",\"reclong\":\"3.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.25,48.35]}}\n,{\"name\":\"Lesves\",\"id\":\"12772\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1896-01-01T00:00:00.000\",\"reclat\":\"50.366670\",\"reclong\":\"4.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4.73333,50.36667]}}\n,{\"name\":\"Lichtenberg\",\"id\":\"14646\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1973-01-01T00:00:00.000\",\"reclat\":\"-26.150000\",\"reclong\":\"26.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.18333,-26.15]}}\n,{\"name\":\"Lillaverke\",\"id\":\"14650\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"6862\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"56.650000\",\"reclong\":\"15.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.86667,56.65]}}\n,{\"name\":\"Limerick\",\"id\":\"14652\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"50000\",\"fall\":\"Fell\",\"year\":\"1813-01-01T00:00:00.000\",\"reclat\":\"52.566670\",\"reclong\":\"-8.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8.78333,52.56667]}}\n,{\"name\":\"Linum\",\"id\":\"14655\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1862\",\"fall\":\"Fell\",\"year\":\"1854-01-01T00:00:00.000\",\"reclat\":\"52.750000\",\"reclong\":\"12.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.9,52.75]}}\n,{\"name\":\"Lishui\",\"id\":\"14659\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"498\",\"fall\":\"Fell\",\"year\":\"1978-01-01T00:00:00.000\",\"reclat\":\"31.633330\",\"reclong\":\"118.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[118.98333,31.63333]}}\n,{\"name\":\"Lissa\",\"id\":\"14661\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"12800\",\"fall\":\"Fell\",\"year\":\"1808-01-01T00:00:00.000\",\"reclat\":\"50.200000\",\"reclong\":\"14.850000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.85,50.2]}}\n,{\"name\":\"Little Piney\",\"id\":\"14664\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"491\",\"fall\":\"Fell\",\"year\":\"1839-01-01T00:00:00.000\",\"reclat\":\"37.916670\",\"reclong\":\"-92.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-92.08333,37.91667]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"2171\"}\n,{\"name\":\"Lixna\",\"id\":\"14670\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"5213\",\"fall\":\"Fell\",\"year\":\"1820-01-01T00:00:00.000\",\"reclat\":\"56.000000\",\"reclong\":\"26.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.43333,56]}}\n,{\"name\":\"Lodran\",\"id\":\"14675\",\"nametype\":\"Valid\",\"recclass\":\"Lodranite\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"29.533330\",\"reclong\":\"71.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[71.8,29.53333]}}\n,{\"name\":\"Lohawat\",\"id\":\"14678\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"40000\",\"fall\":\"Fell\",\"year\":\"1994-01-01T00:00:00.000\",\"reclat\":\"26.965560\",\"reclong\":\"72.626670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[72.62667,26.96556]}}\n,{\"name\":\"Lorton\",\"id\":\"52843\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"329.7\",\"fall\":\"Fell\",\"year\":\"2010-01-01T00:00:00.000\",\"reclat\":\"38.700660\",\"reclong\":\"-77.211630\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-77.21163,38.70066]},\":@computed_region_cbhk_fwbd\":\"40\",\":@computed_region_nnqa_25f4\":\"2770\"}\n,{\"name\":\"Los Martinez\",\"id\":\"14708\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"25\",\"fall\":\"Fell\",\"year\":\"1894-01-01T00:00:00.000\",\"reclat\":\"38.000000\",\"reclong\":\"-0.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.83333,38]}}\n,{\"name\":\"Lost City\",\"id\":\"14711\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"17000\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"36.008330\",\"reclong\":\"-95.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-95.15,36.00833]},\":@computed_region_cbhk_fwbd\":\"20\",\":@computed_region_nnqa_25f4\":\"2711\"}\n,{\"name\":\"Louisville\",\"id\":\"14716\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1300\",\"fall\":\"Fell\",\"year\":\"1977-01-01T00:00:00.000\",\"reclat\":\"38.250000\",\"reclong\":\"-85.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-85.75,38.25]},\":@computed_region_cbhk_fwbd\":\"36\",\":@computed_region_nnqa_25f4\":\"1327\"}\n,{\"name\":\"Łowicz\",\"id\":\"14718\",\"nametype\":\"Valid\",\"recclass\":\"Mesosiderite-A3\",\"mass\":\"59000\",\"fall\":\"Fell\",\"year\":\"1935-01-01T00:00:00.000\",\"reclat\":\"52.000000\",\"reclong\":\"19.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[19.91667,52]}}\n,{\"name\":\"Lua\",\"id\":\"14721\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"9241\",\"fall\":\"Fell\",\"year\":\"1926-01-01T00:00:00.000\",\"reclat\":\"24.950000\",\"reclong\":\"75.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.15,24.95]}}\n,{\"name\":\"Lucé\",\"id\":\"14724\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3500\",\"fall\":\"Fell\",\"year\":\"1768-01-01T00:00:00.000\",\"reclat\":\"47.850000\",\"reclong\":\"0.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.48333,47.85]}}\n,{\"name\":\"Lumpkin\",\"id\":\"14753\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"340\",\"fall\":\"Fell\",\"year\":\"1869-01-01T00:00:00.000\",\"reclat\":\"32.033330\",\"reclong\":\"-84.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-84.76667,32.03333]},\":@computed_region_cbhk_fwbd\":\"31\",\":@computed_region_nnqa_25f4\":\"1567\"}\n,{\"name\":\"Lunan\",\"id\":\"14754\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"2520\",\"fall\":\"Fell\",\"year\":\"1980-01-01T00:00:00.000\",\"reclat\":\"24.800000\",\"reclong\":\"103.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[103.3,24.8]}}\n,{\"name\":\"Lundsgård\",\"id\":\"14755\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"11000\",\"fall\":\"Fell\",\"year\":\"1889-01-01T00:00:00.000\",\"reclat\":\"56.216670\",\"reclong\":\"13.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.03333,56.21667]}}\n,{\"name\":\"Luotolax\",\"id\":\"14756\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"885\",\"fall\":\"Fell\",\"year\":\"1813-01-01T00:00:00.000\",\"reclat\":\"61.200000\",\"reclong\":\"27.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.7,61.2]}}\n,{\"name\":\"Luponnas\",\"id\":\"14757\",\"nametype\":\"Valid\",\"recclass\":\"H3-5\",\"mass\":\"14000\",\"fall\":\"Fell\",\"year\":\"1753-01-01T00:00:00.000\",\"reclat\":\"46.216670\",\"reclong\":\"5.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5,46.21667]}}\n,{\"name\":\"Lusaka\",\"id\":\"14759\",\"nametype\":\"Valid\",\"recclass\":\"Unknown\",\"fall\":\"Fell\",\"year\":\"1951-01-01T00:00:00.000\",\"reclat\":\"-7.216670\",\"reclong\":\"29.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.43333,-7.21667]}}\n,{\"name\":\"Mabwe-Khoywa\",\"id\":\"14764\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"540\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"19.000000\",\"reclong\":\"97.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[97,19]}}\n,{\"name\":\"Macau\",\"id\":\"15370\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1836-01-01T00:00:00.000\",\"reclat\":\"-5.200000\",\"reclong\":\"-36.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-36.66667,-5.2]}}\n,{\"name\":\"Machinga\",\"id\":\"15371\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"93200\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"-15.212220\",\"reclong\":\"35.242220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.24222,-15.21222]}}\n,{\"name\":\"Macibini\",\"id\":\"15372\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"1995\",\"fall\":\"Fell\",\"year\":\"1936-01-01T00:00:00.000\",\"reclat\":\"-28.833330\",\"reclong\":\"31.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.95,-28.83333]}}\n,{\"name\":\"Madhipura\",\"id\":\"15379\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"25.916670\",\"reclong\":\"86.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[86.36667,25.91667]}}\n,{\"name\":\"Madiun\",\"id\":\"15380\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"400\",\"fall\":\"Fell\",\"year\":\"1935-01-01T00:00:00.000\",\"reclat\":\"-7.750000\",\"reclong\":\"111.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.53333,-7.75]}}\n,{\"name\":\"Madrid\",\"id\":\"15382\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"400\",\"fall\":\"Fell\",\"year\":\"1896-01-01T00:00:00.000\",\"reclat\":\"40.416670\",\"reclong\":\"-3.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.71667,40.41667]}}\n,{\"name\":\"Mafra\",\"id\":\"15383\",\"nametype\":\"Valid\",\"recclass\":\"L3-4\",\"mass\":\"600\",\"fall\":\"Fell\",\"year\":\"1941-01-01T00:00:00.000\",\"reclat\":\"-26.166670\",\"reclong\":\"-49.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-49.93333,-26.16667]}}\n,{\"name\":\"Magnesia\",\"id\":\"15386\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-sHL\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1899-01-01T00:00:00.000\",\"reclat\":\"37.866670\",\"reclong\":\"27.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.51667,37.86667]}}\n,{\"name\":\"Magombedze\",\"id\":\"15387\",\"nametype\":\"Valid\",\"recclass\":\"H3-5\",\"mass\":\"666.6\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\",\"reclat\":\"-19.483330\",\"reclong\":\"31.650000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.65,-19.48333]}}\n,{\"name\":\"Mahadevpur\",\"id\":\"47361\",\"nametype\":\"Valid\",\"recclass\":\"H4/5\",\"mass\":\"70500\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"27.666670\",\"reclong\":\"95.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[95.78333,27.66667]}}\n,{\"name\":\"Maigatari-Danduma\",\"id\":\"30751\",\"nametype\":\"Valid\",\"recclass\":\"H5/6\",\"mass\":\"4629\",\"fall\":\"Fell\",\"year\":\"2004-01-01T00:00:00.000\",\"reclat\":\"12.833330\",\"reclong\":\"9.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.38333,12.83333]}}\n,{\"name\":\"Malaga\",\"id\":\"15393\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"150\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"32.216670\",\"reclong\":\"-104.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-104,32.21667]},\":@computed_region_cbhk_fwbd\":\"11\",\":@computed_region_nnqa_25f4\":\"611\"}\n,{\"name\":\"Malakal\",\"id\":\"15394\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"9.500000\",\"reclong\":\"31.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.75,9.5]}}\n,{\"name\":\"Malampaka\",\"id\":\"15395\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"470\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"-3.133330\",\"reclong\":\"33.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.51667,-3.13333]}}\n,{\"name\":\"Malotas\",\"id\":\"15397\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"fall\":\"Fell\",\"year\":\"1931-01-01T00:00:00.000\",\"reclat\":\"-28.933330\",\"reclong\":\"-63.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-63.23333,-28.93333]}}\n,{\"name\":\"Malvern\",\"id\":\"15400\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"807\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"-29.450000\",\"reclong\":\"26.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.76667,-29.45]}}\n,{\"name\":\"Mamra Springs\",\"id\":\"15401\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1927-01-01T00:00:00.000\",\"reclat\":\"45.216670\",\"reclong\":\"62.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[62.08333,45.21667]}}\n,{\"name\":\"Manbhoom\",\"id\":\"15402\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"1700\",\"fall\":\"Fell\",\"year\":\"1863-01-01T00:00:00.000\",\"reclat\":\"23.050000\",\"reclong\":\"86.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[86.7,23.05]}}\n,{\"name\":\"Manegaon\",\"id\":\"15403\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"50\",\"fall\":\"Fell\",\"year\":\"1843-01-01T00:00:00.000\",\"reclat\":\"20.966670\",\"reclong\":\"76.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.1,20.96667]}}\n,{\"name\":\"Mangwendi\",\"id\":\"15405\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"22300\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"-17.650000\",\"reclong\":\"31.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.6,-17.65]}}\n,{\"name\":\"Manych\",\"id\":\"15409\",\"nametype\":\"Valid\",\"recclass\":\"LL3.4\",\"mass\":\"3555\",\"fall\":\"Fell\",\"year\":\"1951-01-01T00:00:00.000\",\"reclat\":\"45.816670\",\"reclong\":\"44.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[44.63333,45.81667]}}\n,{\"name\":\"Mardan\",\"id\":\"15414\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1948-01-01T00:00:00.000\",\"reclat\":\"34.233330\",\"reclong\":\"72.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[72.08333,34.23333]}}\n,{\"name\":\"Maria Linden\",\"id\":\"15418\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"114\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\"}\n,{\"name\":\"Mariaville\",\"id\":\"15419\",\"nametype\":\"Valid\",\"recclass\":\"Iron\",\"mass\":\"340\",\"fall\":\"Fell\",\"year\":\"1898-01-01T00:00:00.000\",\"reclat\":\"42.716670\",\"reclong\":\"-99.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.38333,42.71667]},\":@computed_region_cbhk_fwbd\":\"19\",\":@computed_region_nnqa_25f4\":\"471\"}\n,{\"name\":\"Maribo\",\"id\":\"48973\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"25.81\",\"fall\":\"Fell\",\"year\":\"2009-01-01T00:00:00.000\",\"reclat\":\"54.761830\",\"reclong\":\"11.467450\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.46745,54.76183]}}\n,{\"name\":\"Maridi\",\"id\":\"15421\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1941-01-01T00:00:00.000\",\"reclat\":\"4.666670\",\"reclong\":\"29.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.25,4.66667]}}\n,{\"name\":\"Marilia\",\"id\":\"15422\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1971-01-01T00:00:00.000\",\"reclat\":\"-22.250000\",\"reclong\":\"-49.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-49.93333,-22.25]}}\n,{\"name\":\"Marion (Iowa)\",\"id\":\"15424\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"28400\",\"fall\":\"Fell\",\"year\":\"1847-01-01T00:00:00.000\",\"reclat\":\"41.900000\",\"reclong\":\"-91.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-91.6,41.9]},\":@computed_region_cbhk_fwbd\":\"16\",\":@computed_region_nnqa_25f4\":\"287\"}\n,{\"name\":\"Marjalahti\",\"id\":\"15426\",\"nametype\":\"Valid\",\"recclass\":\"Pallasite, PMG\",\"mass\":\"45000\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"61.500000\",\"reclong\":\"30.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.5,61.5]}}\n,{\"name\":\"Marmande\",\"id\":\"15429\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1848-01-01T00:00:00.000\",\"reclat\":\"44.500000\",\"reclong\":\"0.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.15,44.5]}}\n,{\"name\":\"Maromandia\",\"id\":\"15430\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"-14.200000\",\"reclong\":\"48.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[48.1,-14.2]}}\n,{\"name\":\"Maryville\",\"id\":\"15436\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1443\",\"fall\":\"Fell\",\"year\":\"1983-01-01T00:00:00.000\",\"reclat\":\"35.800000\",\"reclong\":\"-84.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-84.1,35.8]},\":@computed_region_cbhk_fwbd\":\"39\",\":@computed_region_nnqa_25f4\":\"2740\"}\n,{\"name\":\"Mascombes\",\"id\":\"15438\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1836-01-01T00:00:00.000\",\"reclat\":\"45.366670\",\"reclong\":\"1.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.86667,45.36667]}}\n,{\"name\":\"Mason Gully\",\"id\":\"53653\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"24.54\",\"fall\":\"Fell\",\"year\":\"2010-01-01T00:00:00.000\",\"reclat\":\"0.000000\",\"reclong\":\"0.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0,0]}}\n,{\"name\":\"Mässing\",\"id\":\"15443\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"1803-01-01T00:00:00.000\",\"reclat\":\"48.133330\",\"reclong\":\"12.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.61667,48.13333]}}\n,{\"name\":\"Mauerkirchen\",\"id\":\"15446\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"19000\",\"fall\":\"Fell\",\"year\":\"1768-01-01T00:00:00.000\",\"reclat\":\"48.183330\",\"reclong\":\"13.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.13333,48.18333]}}\n,{\"name\":\"Mauritius\",\"id\":\"15447\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"220\",\"fall\":\"Fell\",\"year\":\"1801-01-01T00:00:00.000\",\"reclat\":\"-20.000000\",\"reclong\":\"57.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[57,-20]}}\n,{\"name\":\"Mayo Belwa\",\"id\":\"15451\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"4850\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"8.966670\",\"reclong\":\"12.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.08333,8.96667]}}\n,{\"name\":\"Mazapil\",\"id\":\"15453\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-sLL\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1885-01-01T00:00:00.000\",\"reclat\":\"24.683330\",\"reclong\":\"-101.683330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-101.68333,24.68333]}}\n,{\"name\":\"Maziba\",\"id\":\"15454\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4975\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"-1.216670\",\"reclong\":\"30.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30,-1.21667]}}\n,{\"name\":\"Mbale\",\"id\":\"15455\",\"nametype\":\"Valid\",\"recclass\":\"L5/6\",\"mass\":\"150000\",\"fall\":\"Fell\",\"year\":\"1992-01-01T00:00:00.000\",\"reclat\":\"1.066670\",\"reclong\":\"34.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[34.16667,1.06667]}}\n,{\"name\":\"Medanitos\",\"id\":\"15467\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-cm\",\"mass\":\"31\",\"fall\":\"Fell\",\"year\":\"1953-01-01T00:00:00.000\",\"reclat\":\"-27.250000\",\"reclong\":\"-67.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-67.5,-27.25]}}\n,{\"name\":\"Meerut\",\"id\":\"15469\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"22\",\"fall\":\"Fell\",\"year\":\"1861-01-01T00:00:00.000\",\"reclat\":\"29.016670\",\"reclong\":\"77.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.8,29.01667]}}\n,{\"name\":\"Meester-Cornelis\",\"id\":\"15470\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"24750\",\"fall\":\"Fell\",\"year\":\"1915-01-01T00:00:00.000\",\"reclat\":\"-6.233330\",\"reclong\":\"106.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[106.88333,-6.23333]}}\n,{\"name\":\"Menow\",\"id\":\"15485\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"10500\",\"fall\":\"Fell\",\"year\":\"1862-01-01T00:00:00.000\",\"reclat\":\"53.183330\",\"reclong\":\"13.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.15,53.18333]}}\n,{\"name\":\"Menziswyl\",\"id\":\"15486\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"28.9\",\"fall\":\"Fell\",\"year\":\"1903-01-01T00:00:00.000\",\"reclat\":\"46.818670\",\"reclong\":\"7.218170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.21817,46.81867]}}\n,{\"name\":\"Mern\",\"id\":\"15489\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1878-01-01T00:00:00.000\",\"reclat\":\"55.050000\",\"reclong\":\"12.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.06667,55.05]}}\n,{\"name\":\"Meru\",\"id\":\"15491\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1945-01-01T00:00:00.000\",\"reclat\":\"0.000000\",\"reclong\":\"37.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.66667,0]}}\n,{\"name\":\"Merua\",\"id\":\"15492\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"71400\",\"fall\":\"Fell\",\"year\":\"1920-01-01T00:00:00.000\",\"reclat\":\"25.483330\",\"reclong\":\"81.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[81.98333,25.48333]}}\n,{\"name\":\"Messina\",\"id\":\"15495\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"2405\",\"fall\":\"Fell\",\"year\":\"1955-01-01T00:00:00.000\",\"reclat\":\"38.183330\",\"reclong\":\"15.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.56667,38.18333]}}\n,{\"name\":\"Meuselbach\",\"id\":\"16626\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"870\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"50.583330\",\"reclong\":\"11.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.1,50.58333]}}\n,{\"name\":\"Mezel\",\"id\":\"16627\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1300\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"45.766670\",\"reclong\":\"3.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.25,45.76667]}}\n,{\"name\":\"Mezö-Madaras\",\"id\":\"16628\",\"nametype\":\"Valid\",\"recclass\":\"L3.7\",\"mass\":\"22700\",\"fall\":\"Fell\",\"year\":\"1852-01-01T00:00:00.000\",\"reclat\":\"46.500000\",\"reclong\":\"25.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.73333,46.5]}}\n,{\"name\":\"Mhow\",\"id\":\"16629\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"350\",\"fall\":\"Fell\",\"year\":\"1827-01-01T00:00:00.000\",\"reclat\":\"25.900000\",\"reclong\":\"83.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.61667,25.9]}}\n,{\"name\":\"Mianchi\",\"id\":\"16631\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1100\",\"fall\":\"Fell\",\"year\":\"1980-01-01T00:00:00.000\",\"reclat\":\"34.800000\",\"reclong\":\"111.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.7,34.8]}}\n,{\"name\":\"Middlesbrough\",\"id\":\"16632\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"1881-01-01T00:00:00.000\",\"reclat\":\"54.566670\",\"reclong\":\"-1.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.16667,54.56667]}}\n,{\"name\":\"Mifflin\",\"id\":\"52090\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"3584\",\"fall\":\"Fell\",\"year\":\"2010-01-01T00:00:00.000\",\"reclat\":\"42.907500\",\"reclong\":\"-90.365560\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-90.36556,42.9075]},\":@computed_region_cbhk_fwbd\":\"41\",\":@computed_region_nnqa_25f4\":\"2996\"}\n,{\"name\":\"Mighei\",\"id\":\"16634\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"8000\",\"fall\":\"Fell\",\"year\":\"1889-01-01T00:00:00.000\",\"reclat\":\"48.066670\",\"reclong\":\"30.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.96667,48.06667]}}\n,{\"name\":\"Mihonoseki\",\"id\":\"16635\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6380\",\"fall\":\"Fell\",\"year\":\"1992-01-01T00:00:00.000\",\"reclat\":\"35.568330\",\"reclong\":\"133.220000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[133.22,35.56833]}}\n,{\"name\":\"Mike\",\"id\":\"16636\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"224.2\",\"fall\":\"Fell\",\"year\":\"1944-01-01T00:00:00.000\",\"reclat\":\"46.233330\",\"reclong\":\"17.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[17.53333,46.23333]}}\n,{\"name\":\"Milena\",\"id\":\"16640\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"1842-01-01T00:00:00.000\",\"reclat\":\"46.183330\",\"reclong\":\"16.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.1,46.18333]}}\n,{\"name\":\"Millbillillie\",\"id\":\"16643\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"330000\",\"fall\":\"Fell\",\"year\":\"1960-01-01T00:00:00.000\",\"reclat\":\"-26.450000\",\"reclong\":\"120.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[120.36667,-26.45]}}\n,{\"name\":\"Miller (Arkansas)\",\"id\":\"16645\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"16700\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"35.400000\",\"reclong\":\"-92.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-92.05,35.4]},\":@computed_region_cbhk_fwbd\":\"15\",\":@computed_region_nnqa_25f4\":\"11\"}\n,{\"name\":\"Minamino\",\"id\":\"16692\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"1040\",\"fall\":\"Fell\",\"year\":\"1632-01-01T00:00:00.000\",\"reclat\":\"35.078330\",\"reclong\":\"136.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.93333,35.07833]}}\n,{\"name\":\"Mineo\",\"id\":\"16696\",\"nametype\":\"Valid\",\"recclass\":\"Pallasite\",\"mass\":\"42\",\"fall\":\"Fell\",\"year\":\"1826-01-01T00:00:00.000\",\"reclat\":\"37.283330\",\"reclong\":\"14.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.7,37.28333]}}\n,{\"name\":\"Min-Fan-Zhun\",\"id\":\"16697\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"5500\",\"fall\":\"Fell\",\"year\":\"1952-01-01T00:00:00.000\",\"reclat\":\"32.333330\",\"reclong\":\"120.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[120.66667,32.33333]}}\n,{\"name\":\"Minnichhof\",\"id\":\"16700\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"550\",\"fall\":\"Fell\",\"year\":\"1905-01-01T00:00:00.000\",\"reclat\":\"47.700000\",\"reclong\":\"16.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.6,47.7]}}\n,{\"name\":\"Mirzapur\",\"id\":\"16701\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"8510\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"25.683330\",\"reclong\":\"83.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.25,25.68333]}}\n,{\"name\":\"Misshof\",\"id\":\"16703\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5800\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"56.666670\",\"reclong\":\"23.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23,56.66667]}}\n,{\"name\":\"Mjelleim\",\"id\":\"16707\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"100.7\",\"fall\":\"Fell\",\"year\":\"1898-01-01T00:00:00.000\",\"reclat\":\"61.733330\",\"reclong\":\"5.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.93333,61.73333]}}\n,{\"name\":\"Mocs\",\"id\":\"16709\",\"nametype\":\"Valid\",\"recclass\":\"L5-6\",\"mass\":\"300000\",\"fall\":\"Fell\",\"year\":\"1882-01-01T00:00:00.000\",\"reclat\":\"46.800000\",\"reclong\":\"24.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[24.03333,46.8]}}\n,{\"name\":\"Modoc (1905)\",\"id\":\"16711\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"35000\",\"fall\":\"Fell\",\"year\":\"1905-01-01T00:00:00.000\",\"reclat\":\"38.500000\",\"reclong\":\"-101.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-101.1,38.5]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1290\"}\n,{\"name\":\"Mokoia\",\"id\":\"16713\",\"nametype\":\"Valid\",\"recclass\":\"CV3\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1908-01-01T00:00:00.000\",\"reclat\":\"-39.633330\",\"reclong\":\"174.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[174.4,-39.63333]}}\n,{\"name\":\"Molina\",\"id\":\"16715\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"144000\",\"fall\":\"Fell\",\"year\":\"1858-01-01T00:00:00.000\",\"reclat\":\"38.116670\",\"reclong\":\"-1.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.16667,38.11667]}}\n,{\"name\":\"Molteno\",\"id\":\"16717\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"150\",\"fall\":\"Fell\",\"year\":\"1953-01-01T00:00:00.000\",\"reclat\":\"-31.250000\",\"reclong\":\"26.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.46667,-31.25]}}\n,{\"name\":\"Monahans (1998)\",\"id\":\"16719\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2587\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"31.608330\",\"reclong\":\"-102.858330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-102.85833,31.60833]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"2957\"}\n,{\"name\":\"Monroe\",\"id\":\"16720\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"8600\",\"fall\":\"Fell\",\"year\":\"1849-01-01T00:00:00.000\",\"reclat\":\"35.250000\",\"reclong\":\"-80.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-80.5,35.25]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"636\"}\n,{\"name\":\"Monte das Fortes\",\"id\":\"16725\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"4885\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"38.016670\",\"reclong\":\"-8.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8.25,38.01667]}}\n,{\"name\":\"Monte Milone\",\"id\":\"16726\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"3130\",\"fall\":\"Fell\",\"year\":\"1846-01-01T00:00:00.000\",\"reclat\":\"43.266670\",\"reclong\":\"13.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.35,43.26667]}}\n,{\"name\":\"Montferré\",\"id\":\"16727\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"149000\",\"fall\":\"Fell\",\"year\":\"1923-01-01T00:00:00.000\",\"reclat\":\"43.390560\",\"reclong\":\"1.962500\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.9625,43.39056]}}\n,{\"name\":\"Montlivault\",\"id\":\"16729\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"500\",\"fall\":\"Fell\",\"year\":\"1838-01-01T00:00:00.000\",\"reclat\":\"47.633330\",\"reclong\":\"1.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.58333,47.63333]}}\n,{\"name\":\"Monze\",\"id\":\"16733\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"-15.966670\",\"reclong\":\"27.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.35,-15.96667]}}\n,{\"name\":\"Moore County\",\"id\":\"16736\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-cm\",\"mass\":\"1880\",\"fall\":\"Fell\",\"year\":\"1913-01-01T00:00:00.000\",\"reclat\":\"35.416670\",\"reclong\":\"-79.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-79.38333,35.41667]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"2431\"}\n,{\"name\":\"Mooresfort\",\"id\":\"16737\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3520\",\"fall\":\"Fell\",\"year\":\"1810-01-01T00:00:00.000\",\"reclat\":\"52.450000\",\"reclong\":\"-8.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8.33333,52.45]}}\n,{\"name\":\"Moorleah\",\"id\":\"16738\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"8887.5\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"-40.975000\",\"reclong\":\"145.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[145.6,-40.975]}}\n,{\"name\":\"Moradabad\",\"id\":\"16740\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"70\",\"fall\":\"Fell\",\"year\":\"1808-01-01T00:00:00.000\",\"reclat\":\"28.783330\",\"reclong\":\"78.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.83333,28.78333]}}\n,{\"name\":\"Morávka\",\"id\":\"16742\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"633\",\"fall\":\"Fell\",\"year\":\"2000-01-01T00:00:00.000\",\"reclat\":\"49.600000\",\"reclong\":\"18.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[18.53333,49.6]}}\n,{\"name\":\"Mornans\",\"id\":\"16747\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1300\",\"fall\":\"Fell\",\"year\":\"1875-01-01T00:00:00.000\",\"reclat\":\"44.600000\",\"reclong\":\"5.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.13333,44.6]}}\n,{\"name\":\"Moss\",\"id\":\"36592\",\"nametype\":\"Valid\",\"recclass\":\"CO3.6\",\"mass\":\"3763\",\"fall\":\"Fell\",\"year\":\"2006-01-01T00:00:00.000\",\"reclat\":\"59.433330\",\"reclong\":\"10.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.7,59.43333]}}\n,{\"name\":\"Moti-ka-nagla\",\"id\":\"16759\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"26.833330\",\"reclong\":\"77.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.33333,26.83333]}}\n,{\"name\":\"Motta di Conti\",\"id\":\"16762\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"9150\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"45.200000\",\"reclong\":\"8.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.5,45.2]}}\n,{\"name\":\"Mount Browne\",\"id\":\"16766\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"11300\",\"fall\":\"Fell\",\"year\":\"1902-01-01T00:00:00.000\",\"reclat\":\"-29.800000\",\"reclong\":\"141.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[141.7,-29.8]}}\n,{\"name\":\"Mount Tazerzait\",\"id\":\"16804\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"110000\",\"fall\":\"Fell\",\"year\":\"1991-01-01T00:00:00.000\",\"reclat\":\"18.700000\",\"reclong\":\"4.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4.8,18.7]}}\n,{\"name\":\"Mount Vaisi\",\"id\":\"16805\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"17000\",\"fall\":\"Fell\",\"year\":\"1637-01-01T00:00:00.000\",\"reclat\":\"44.083330\",\"reclong\":\"6.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.86667,44.08333]}}\n,{\"name\":\"Mtola\",\"id\":\"16820\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"1100\",\"fall\":\"Fell\",\"year\":\"1944-01-01T00:00:00.000\",\"reclat\":\"-11.500000\",\"reclong\":\"33.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.5,-11.5]}}\n,{\"name\":\"Muddoor\",\"id\":\"16841\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"4400\",\"fall\":\"Fell\",\"year\":\"1865-01-01T00:00:00.000\",\"reclat\":\"12.633330\",\"reclong\":\"77.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.01667,12.63333]}}\n,{\"name\":\"Mulletiwu\",\"id\":\"16851\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"25.5\",\"fall\":\"Fell\",\"year\":\"1795-01-01T00:00:00.000\",\"reclat\":\"9.333330\",\"reclong\":\"80.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[80.83333,9.33333]}}\n,{\"name\":\"Muraid\",\"id\":\"16874\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4703\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"24.500000\",\"reclong\":\"90.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[90.21667,24.5]}}\n,{\"name\":\"Murchison\",\"id\":\"16875\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"1969-01-01T00:00:00.000\",\"reclat\":\"-36.616670\",\"reclong\":\"145.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[145.2,-36.61667]}}\n,{\"name\":\"Murray\",\"id\":\"16882\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"12600\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"36.600000\",\"reclong\":\"-88.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-88.1,36.6]},\":@computed_region_cbhk_fwbd\":\"36\",\":@computed_region_nnqa_25f4\":\"237\"}\n,{\"name\":\"Muzaffarpur\",\"id\":\"16885\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-sHL\",\"mass\":\"1245\",\"fall\":\"Fell\",\"year\":\"1964-01-01T00:00:00.000\",\"reclat\":\"26.133330\",\"reclong\":\"85.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[85.53333,26.13333]}}\n,{\"name\":\"Myhee Caunta\",\"id\":\"16887\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"fall\":\"Fell\",\"year\":\"1842-01-01T00:00:00.000\",\"reclat\":\"23.050000\",\"reclong\":\"72.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[72.63333,23.05]}}\n,{\"name\":\"Nadiabondi\",\"id\":\"16889\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"8165\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"12.000000\",\"reclong\":\"1.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1,12]}}\n,{\"name\":\"Nagai\",\"id\":\"16890\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1810\",\"fall\":\"Fell\",\"year\":\"1922-01-01T00:00:00.000\",\"reclat\":\"38.121670\",\"reclong\":\"140.061670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[140.06167,38.12167]}}\n,{\"name\":\"Nagaria\",\"id\":\"16892\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-cm\",\"mass\":\"20\",\"fall\":\"Fell\",\"year\":\"1875-01-01T00:00:00.000\",\"reclat\":\"26.983330\",\"reclong\":\"78.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.21667,26.98333]}}\n,{\"name\":\"Nagy-Borové\",\"id\":\"16893\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"6100\",\"fall\":\"Fell\",\"year\":\"1895-01-01T00:00:00.000\",\"reclat\":\"49.166670\",\"reclong\":\"19.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[19.5,49.16667]}}\n,{\"name\":\"Nakhla\",\"id\":\"16898\",\"nametype\":\"Valid\",\"recclass\":\"Martian (nakhlite)\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"1911-01-01T00:00:00.000\",\"reclat\":\"31.316670\",\"reclong\":\"30.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.35,31.31667]}}\n,{\"name\":\"Nakhon Pathom\",\"id\":\"16899\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"23200\",\"fall\":\"Fell\",\"year\":\"1923-01-01T00:00:00.000\",\"reclat\":\"13.733330\",\"reclong\":\"100.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[100.08333,13.73333]}}\n,{\"name\":\"Nammianthal\",\"id\":\"16902\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"12.283330\",\"reclong\":\"79.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[79.2,12.28333]}}\n,{\"name\":\"Nan Yang Pao\",\"id\":\"16903\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"52900\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"35.666670\",\"reclong\":\"103.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[103.5,35.66667]}}\n,{\"name\":\"Nanjemoy\",\"id\":\"16904\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"7500\",\"fall\":\"Fell\",\"year\":\"1825-01-01T00:00:00.000\",\"reclat\":\"38.416670\",\"reclong\":\"-77.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-77.16667,38.41667]},\":@computed_region_cbhk_fwbd\":\"45\",\":@computed_region_nnqa_25f4\":\"419\"}\n,{\"name\":\"Nantong\",\"id\":\"16907\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"529\",\"fall\":\"Fell\",\"year\":\"1984-01-01T00:00:00.000\",\"reclat\":\"32.116670\",\"reclong\":\"121.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[121.8,32.11667]}}\n,{\"name\":\"Naoki\",\"id\":\"16908\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"17000\",\"fall\":\"Fell\",\"year\":\"1928-01-01T00:00:00.000\",\"reclat\":\"19.250000\",\"reclong\":\"77.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77,19.25]}}\n,{\"name\":\"Naragh\",\"id\":\"16909\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"2700\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"33.750000\",\"reclong\":\"51.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[51.5,33.75]}}\n,{\"name\":\"Narellan\",\"id\":\"16912\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"367.5\",\"fall\":\"Fell\",\"year\":\"1928-01-01T00:00:00.000\",\"reclat\":\"-34.050000\",\"reclong\":\"150.688890\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[150.68889,-34.05]}}\n,{\"name\":\"Narni\",\"id\":\"16914\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"0921-01-01T00:00:00.000\",\"reclat\":\"42.516670\",\"reclong\":\"12.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.51667,42.51667]}}\n,{\"name\":\"Nassirah\",\"id\":\"16922\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"347\",\"fall\":\"Fell\",\"year\":\"1936-01-01T00:00:00.000\",\"reclat\":\"-21.733330\",\"reclong\":\"165.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[165.9,-21.73333]}}\n,{\"name\":\"Natal\",\"id\":\"16923\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"1.4\",\"fall\":\"Fell\",\"year\":\"1973-01-01T00:00:00.000\"}\n,{\"name\":\"Nawapali\",\"id\":\"16927\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"105\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"21.250000\",\"reclong\":\"83.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.66667,21.25]}}\n,{\"name\":\"Neagari\",\"id\":\"16934\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"420\",\"fall\":\"Fell\",\"year\":\"1995-01-01T00:00:00.000\",\"reclat\":\"36.449170\",\"reclong\":\"136.465280\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.46528,36.44917]}}\n,{\"name\":\"Nedagolla\",\"id\":\"16935\",\"nametype\":\"Valid\",\"recclass\":\"Iron, ungrouped\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1870-01-01T00:00:00.000\",\"reclat\":\"18.683330\",\"reclong\":\"83.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[83.48333,18.68333]}}\n,{\"name\":\"Nejo\",\"id\":\"16941\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2450\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"9.500000\",\"reclong\":\"35.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.33333,9.5]}}\n,{\"name\":\"Nerft\",\"id\":\"16945\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"10250\",\"fall\":\"Fell\",\"year\":\"1864-01-01T00:00:00.000\",\"reclat\":\"56.500000\",\"reclong\":\"21.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.5,56.5]}}\n,{\"name\":\"Neuschwanstein\",\"id\":\"16950\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"6189\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"47.525000\",\"reclong\":\"10.808330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.80833,47.525]}}\n,{\"name\":\"New Concord\",\"id\":\"16953\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"230000\",\"fall\":\"Fell\",\"year\":\"1860-01-01T00:00:00.000\",\"reclat\":\"40.000000\",\"reclong\":\"-81.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-81.76667,40]},\":@computed_region_cbhk_fwbd\":\"38\",\":@computed_region_nnqa_25f4\":\"2615\"}\n,{\"name\":\"New Halfa\",\"id\":\"16954\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"12000\",\"fall\":\"Fell\",\"year\":\"1994-01-01T00:00:00.000\",\"reclat\":\"15.366670\",\"reclong\":\"35.683330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.68333,15.36667]}}\n,{\"name\":\"New Orleans\",\"id\":\"16960\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"19256\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"29.947180\",\"reclong\":\"-90.109760\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-90.10976,29.94718]},\":@computed_region_cbhk_fwbd\":\"22\",\":@computed_region_nnqa_25f4\":\"1667\"}\n,{\"name\":\"Ngawi\",\"id\":\"16966\",\"nametype\":\"Valid\",\"recclass\":\"LL3.6\",\"mass\":\"1393\",\"fall\":\"Fell\",\"year\":\"1883-01-01T00:00:00.000\",\"reclat\":\"-7.450000\",\"reclong\":\"111.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.41667,-7.45]}}\n,{\"name\":\"N'Goureyma\",\"id\":\"16968\",\"nametype\":\"Valid\",\"recclass\":\"Iron, ungrouped\",\"mass\":\"37500\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"13.850000\",\"reclong\":\"-4.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-4.38333,13.85]}}\n,{\"name\":\"Nicorps\",\"id\":\"16970\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1750-01-01T00:00:00.000\",\"reclat\":\"49.033330\",\"reclong\":\"-1.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.43333,49.03333]}}\n,{\"name\":\"Niger (L6)\",\"id\":\"16974\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3.3\",\"fall\":\"Fell\",\"year\":\"1967-01-01T00:00:00.000\"}\n,{\"name\":\"Niger (LL6)\",\"id\":\"16975\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"3.3\",\"fall\":\"Fell\",\"year\":\"1967-01-01T00:00:00.000\"}\n,{\"name\":\"Nikolaevka\",\"id\":\"16976\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"3996\",\"fall\":\"Fell\",\"year\":\"1935-01-01T00:00:00.000\",\"reclat\":\"52.450000\",\"reclong\":\"78.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.63333,52.45]}}\n,{\"name\":\"Nikolskoe\",\"id\":\"16977\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1954-01-01T00:00:00.000\",\"reclat\":\"56.116670\",\"reclong\":\"37.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.33333,56.11667]}}\n,{\"name\":\"Ningbo\",\"id\":\"16980\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IVA\",\"mass\":\"14250\",\"fall\":\"Fell\",\"year\":\"1975-01-01T00:00:00.000\",\"reclat\":\"29.866670\",\"reclong\":\"121.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[121.48333,29.86667]}}\n,{\"name\":\"Ningqiang\",\"id\":\"16981\",\"nametype\":\"Valid\",\"recclass\":\"C3-ung\",\"mass\":\"4610\",\"fall\":\"Fell\",\"year\":\"1983-01-01T00:00:00.000\",\"reclat\":\"32.925000\",\"reclong\":\"105.906670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[105.90667,32.925]}}\n,{\"name\":\"Nio\",\"id\":\"16982\",\"nametype\":\"Valid\",\"recclass\":\"H3-4\",\"mass\":\"467\",\"fall\":\"Fell\",\"year\":\"1897-01-01T00:00:00.000\",\"reclat\":\"34.200000\",\"reclong\":\"131.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[131.56667,34.2]}}\n,{\"name\":\"N'Kandhla\",\"id\":\"16983\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IID\",\"mass\":\"17200\",\"fall\":\"Fell\",\"year\":\"1912-01-01T00:00:00.000\",\"reclat\":\"-28.566670\",\"reclong\":\"30.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[30.7,-28.56667]}}\n,{\"name\":\"Nobleborough\",\"id\":\"16984\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"2300\",\"fall\":\"Fell\",\"year\":\"1823-01-01T00:00:00.000\",\"reclat\":\"44.083330\",\"reclong\":\"-69.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-69.48333,44.08333]},\":@computed_region_cbhk_fwbd\":\"49\",\":@computed_region_nnqa_25f4\":\"1683\"}\n,{\"name\":\"Noblesville\",\"id\":\"16985\",\"nametype\":\"Valid\",\"recclass\":\"H4-6\",\"mass\":\"483.7\",\"fall\":\"Fell\",\"year\":\"1991-01-01T00:00:00.000\",\"reclat\":\"40.085280\",\"reclong\":\"-86.055000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.055,40.08528]},\":@computed_region_cbhk_fwbd\":\"35\",\":@computed_region_nnqa_25f4\":\"2238\"}\n,{\"name\":\"Nogata\",\"id\":\"16988\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"472\",\"fall\":\"Fell\",\"year\":\"0861-01-01T00:00:00.000\",\"reclat\":\"33.725000\",\"reclong\":\"130.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[130.75,33.725]}}\n,{\"name\":\"Nogoya\",\"id\":\"16989\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"-32.366670\",\"reclong\":\"-59.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-59.83333,-32.36667]}}\n,{\"name\":\"Norfork\",\"id\":\"16994\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"1050\",\"fall\":\"Fell\",\"year\":\"1918-01-01T00:00:00.000\",\"reclat\":\"36.216670\",\"reclong\":\"-92.266670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-92.26667,36.21667]},\":@computed_region_cbhk_fwbd\":\"15\",\":@computed_region_nnqa_25f4\":\"10\"}\n,{\"name\":\"Norton County\",\"id\":\"17922\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"1100000\",\"fall\":\"Fell\",\"year\":\"1948-01-01T00:00:00.000\",\"reclat\":\"39.683330\",\"reclong\":\"-99.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.86667,39.68333]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1252\"}\n,{\"name\":\"Noventa Vicentina\",\"id\":\"17930\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"177\",\"fall\":\"Fell\",\"year\":\"1971-01-01T00:00:00.000\",\"reclat\":\"45.291670\",\"reclong\":\"11.527220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.52722,45.29167]}}\n,{\"name\":\"Novo-Urei\",\"id\":\"17933\",\"nametype\":\"Valid\",\"recclass\":\"Ureilite\",\"mass\":\"1900\",\"fall\":\"Fell\",\"year\":\"1886-01-01T00:00:00.000\",\"reclat\":\"54.816670\",\"reclong\":\"46.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[46,54.81667]}}\n,{\"name\":\"Novy-Ergi\",\"id\":\"17934\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1662-01-01T00:00:00.000\",\"reclat\":\"58.550000\",\"reclong\":\"31.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[31.33333,58.55]}}\n,{\"name\":\"Novy-Projekt\",\"id\":\"17935\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"1001\",\"fall\":\"Fell\",\"year\":\"1908-01-01T00:00:00.000\",\"reclat\":\"56.000000\",\"reclong\":\"22.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22,56]}}\n,{\"name\":\"Noyan-Bogdo\",\"id\":\"17936\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"250\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"42.916670\",\"reclong\":\"102.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[102.46667,42.91667]}}\n,{\"name\":\"Nuevo Mercurio\",\"id\":\"17938\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"50000\",\"fall\":\"Fell\",\"year\":\"1978-01-01T00:00:00.000\",\"reclat\":\"24.300000\",\"reclong\":\"-102.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-102.13333,24.3]}}\n,{\"name\":\"Nulles\",\"id\":\"17959\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1851-01-01T00:00:00.000\",\"reclat\":\"41.633330\",\"reclong\":\"0.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.75,41.63333]}}\n,{\"name\":\"Numakai\",\"id\":\"17960\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"363\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"43.333330\",\"reclong\":\"141.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[141.86667,43.33333]}}\n,{\"name\":\"Nyaung\",\"id\":\"17969\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"737.6\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"21.208330\",\"reclong\":\"94.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[94.91667,21.20833]}}\n,{\"name\":\"Nyirábrany\",\"id\":\"17970\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"1100\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"47.550000\",\"reclong\":\"22.025000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.025,47.55]}}\n,{\"name\":\"Ochansk\",\"id\":\"17979\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"500000\",\"fall\":\"Fell\",\"year\":\"1887-01-01T00:00:00.000\",\"reclat\":\"57.783330\",\"reclong\":\"55.266670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[55.26667,57.78333]}}\n,{\"name\":\"Oesede\",\"id\":\"17988\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1400\",\"fall\":\"Fell\",\"year\":\"1927-01-01T00:00:00.000\",\"reclat\":\"52.283330\",\"reclong\":\"8.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.05,52.28333]}}\n,{\"name\":\"Oesel\",\"id\":\"17989\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1855-01-01T00:00:00.000\",\"reclat\":\"58.500000\",\"reclong\":\"23.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23,58.5]}}\n,{\"name\":\"Ofehértó\",\"id\":\"17990\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3750\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"47.883330\",\"reclong\":\"22.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.03333,47.88333]}}\n,{\"name\":\"Ogi\",\"id\":\"17994\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"14360\",\"fall\":\"Fell\",\"year\":\"1741-01-01T00:00:00.000\",\"reclat\":\"33.283330\",\"reclong\":\"130.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[130.2,33.28333]}}\n,{\"name\":\"Ohaba\",\"id\":\"17995\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"16250\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"46.066670\",\"reclong\":\"23.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23.58333,46.06667]}}\n,{\"name\":\"Ohuma\",\"id\":\"17996\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"7700\",\"fall\":\"Fell\",\"year\":\"1963-01-01T00:00:00.000\",\"reclat\":\"6.750000\",\"reclong\":\"8.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.5,6.75]}}\n,{\"name\":\"Ojuelos Altos\",\"id\":\"17997\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5850\",\"fall\":\"Fell\",\"year\":\"1926-01-01T00:00:00.000\",\"reclat\":\"38.183330\",\"reclong\":\"-5.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-5.4,38.18333]}}\n,{\"name\":\"Okabe\",\"id\":\"17998\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"194\",\"fall\":\"Fell\",\"year\":\"1958-01-01T00:00:00.000\",\"reclat\":\"36.183330\",\"reclong\":\"139.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[139.21667,36.18333]}}\n,{\"name\":\"Okano\",\"id\":\"18000\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIAB\",\"mass\":\"4742\",\"fall\":\"Fell\",\"year\":\"1904-01-01T00:00:00.000\",\"reclat\":\"35.083330\",\"reclong\":\"135.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[135.2,35.08333]}}\n,{\"name\":\"Okniny\",\"id\":\"18002\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"12000\",\"fall\":\"Fell\",\"year\":\"1834-01-01T00:00:00.000\",\"reclat\":\"50.833330\",\"reclong\":\"25.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.5,50.83333]}}\n,{\"name\":\"Oldenburg (1930)\",\"id\":\"18009\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"16570\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"52.950000\",\"reclong\":\"8.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8.16667,52.95]}}\n,{\"name\":\"Oliva-Gandia\",\"id\":\"18012\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1520-01-01T00:00:00.000\",\"reclat\":\"39.000000\",\"reclong\":\"-0.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.03333,39]}}\n,{\"name\":\"Olivenza\",\"id\":\"18013\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"150000\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"38.716670\",\"reclong\":\"-7.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.06667,38.71667]}}\n,{\"name\":\"Olmedilla de Alarcón\",\"id\":\"18015\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"40000\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"39.566670\",\"reclong\":\"-2.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-2.1,39.56667]}}\n,{\"name\":\"Omolon\",\"id\":\"18019\",\"nametype\":\"Valid\",\"recclass\":\"Pallasite, PMG\",\"mass\":\"250000\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"64.020000\",\"reclong\":\"161.808330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[161.80833,64.02]}}\n,{\"name\":\"Orgueil\",\"id\":\"18026\",\"nametype\":\"Valid\",\"recclass\":\"CI1\",\"mass\":\"14000\",\"fall\":\"Fell\",\"year\":\"1864-01-01T00:00:00.000\",\"reclat\":\"43.883330\",\"reclong\":\"1.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.38333,43.88333]}}\n,{\"name\":\"Orlando\",\"id\":\"34489\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite\",\"mass\":\"180\",\"fall\":\"Fell\",\"year\":\"2004-01-01T00:00:00.000\",\"reclat\":\"28.547500\",\"reclong\":\"-81.362220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-81.36222,28.5475]},\":@computed_region_cbhk_fwbd\":\"30\",\":@computed_region_nnqa_25f4\":\"1078\"}\n,{\"name\":\"Ornans\",\"id\":\"18030\",\"nametype\":\"Valid\",\"recclass\":\"CO3.4\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"47.116670\",\"reclong\":\"6.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.15,47.11667]}}\n,{\"name\":\"Ortenau\",\"id\":\"18033\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1671-01-01T00:00:00.000\",\"reclat\":\"48.500000\",\"reclong\":\"8.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[8,48.5]}}\n,{\"name\":\"Orvinio\",\"id\":\"18034\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"3400\",\"fall\":\"Fell\",\"year\":\"1872-01-01T00:00:00.000\",\"reclat\":\"42.133330\",\"reclong\":\"12.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.93333,42.13333]}}\n,{\"name\":\"Oterøy\",\"id\":\"18042\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"246\",\"fall\":\"Fell\",\"year\":\"1928-01-01T00:00:00.000\",\"reclat\":\"58.883330\",\"reclong\":\"9.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.4,58.88333]}}\n,{\"name\":\"Otomi\",\"id\":\"18045\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"6510\",\"fall\":\"Fell\",\"year\":\"1867-01-01T00:00:00.000\",\"reclat\":\"38.400000\",\"reclong\":\"140.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[140.35,38.4]}}\n,{\"name\":\"Ottawa\",\"id\":\"18046\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"840\",\"fall\":\"Fell\",\"year\":\"1896-01-01T00:00:00.000\",\"reclat\":\"38.600000\",\"reclong\":\"-95.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-95.21667,38.6]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1947\"}\n,{\"name\":\"Ouadangou\",\"id\":\"56729\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"4440\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"12.900000\",\"reclong\":\"0.080000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.08,12.9]}}\n,{\"name\":\"Oued el Hadjar\",\"id\":\"18050\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"1215.5\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"30.180000\",\"reclong\":\"-6.577170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.57717,30.18]}}\n,{\"name\":\"Oum Dreyga\",\"id\":\"31282\",\"nametype\":\"Valid\",\"recclass\":\"H3-5\",\"mass\":\"17000\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"24.300000\",\"reclong\":\"-13.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-13.1,24.3]}}\n,{\"name\":\"Ourique\",\"id\":\"18052\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"20000\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"37.608330\",\"reclong\":\"-8.280000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8.28,37.60833]}}\n,{\"name\":\"Ovambo\",\"id\":\"18055\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"121.5\",\"fall\":\"Fell\",\"year\":\"1900-01-01T00:00:00.000\",\"reclat\":\"-18.000000\",\"reclong\":\"16.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16,-18]}}\n,{\"name\":\"Oviedo\",\"id\":\"18058\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"205\",\"fall\":\"Fell\",\"year\":\"1856-01-01T00:00:00.000\",\"reclat\":\"43.400000\",\"reclong\":\"-5.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-5.86667,43.4]}}\n,{\"name\":\"Owrucz\",\"id\":\"18062\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"fall\":\"Fell\",\"year\":\"1775-01-01T00:00:00.000\",\"reclat\":\"51.333330\",\"reclong\":\"28.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28.83333,51.33333]}}\n,{\"name\":\"Pacula\",\"id\":\"18068\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3400\",\"fall\":\"Fell\",\"year\":\"1881-01-01T00:00:00.000\",\"reclat\":\"21.050000\",\"reclong\":\"-99.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.3,21.05]}}\n,{\"name\":\"Padvarninkai\",\"id\":\"18069\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"3858\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"55.666670\",\"reclong\":\"25.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25,55.66667]}}\n,{\"name\":\"Paitan\",\"id\":\"18072\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"515\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"17.743330\",\"reclong\":\"120.455830\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[120.45583,17.74333]}}\n,{\"name\":\"Palahatchie\",\"id\":\"18073\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"32.316670\",\"reclong\":\"-89.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-89.71667,32.31667]},\":@computed_region_cbhk_fwbd\":\"32\",\":@computed_region_nnqa_25f4\":\"503\"}\n,{\"name\":\"Palca de Aparzo\",\"id\":\"18074\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"1430\",\"fall\":\"Fell\",\"year\":\"1988-01-01T00:00:00.000\",\"reclat\":\"-23.116670\",\"reclong\":\"-65.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-65.1,-23.11667]}}\n,{\"name\":\"Palinshih\",\"id\":\"18077\",\"nametype\":\"Valid\",\"recclass\":\"Iron\",\"mass\":\"18000\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"43.483330\",\"reclong\":\"118.616670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[118.61667,43.48333]}}\n,{\"name\":\"Palmyra\",\"id\":\"18079\",\"nametype\":\"Valid\",\"recclass\":\"L3\",\"mass\":\"135\",\"fall\":\"Fell\",\"year\":\"1926-01-01T00:00:00.000\",\"reclat\":\"39.800000\",\"reclong\":\"-91.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-91.5,39.8]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"2122\"}\n,{\"name\":\"Palolo Valley\",\"id\":\"18082\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"682\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"21.300000\",\"reclong\":\"-157.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-157.78333,21.3]},\":@computed_region_cbhk_fwbd\":\"4\",\":@computed_region_nnqa_25f4\":\"1657\"}\n,{\"name\":\"Dominion Range 03239\",\"id\":\"32591\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"69.5\",\"fall\":\"Found\",\"year\":\"2002-01-01T00:00:00.000\"}\n,{\"name\":\"Pampanga\",\"id\":\"18093\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"10500\",\"fall\":\"Fell\",\"year\":\"1859-01-01T00:00:00.000\",\"reclat\":\"15.083330\",\"reclong\":\"120.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[120.7,15.08333]}}\n,{\"name\":\"Pantar\",\"id\":\"18098\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2130\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"8.066670\",\"reclong\":\"124.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[124.28333,8.06667]}}\n,{\"name\":\"Paragould\",\"id\":\"18101\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"408000\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"36.066670\",\"reclong\":\"-90.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-90.5,36.06667]},\":@computed_region_cbhk_fwbd\":\"15\",\":@computed_region_nnqa_25f4\":\"1023\"}\n,{\"name\":\"Parambu\",\"id\":\"18102\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1967-01-01T00:00:00.000\",\"reclat\":\"-6.233330\",\"reclong\":\"-40.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-40.7,-6.23333]}}\n,{\"name\":\"Paranaiba\",\"id\":\"18103\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"-19.133330\",\"reclong\":\"-51.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-51.66667,-19.13333]}}\n,{\"name\":\"Park Forest\",\"id\":\"18106\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"18000\",\"fall\":\"Fell\",\"year\":\"2003-01-01T00:00:00.000\",\"reclat\":\"41.484720\",\"reclong\":\"-87.679170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-87.67917,41.48472]},\":@computed_region_cbhk_fwbd\":\"34\",\":@computed_region_nnqa_25f4\":\"1863\"}\n,{\"name\":\"Parnallee\",\"id\":\"18108\",\"nametype\":\"Valid\",\"recclass\":\"LL3.6\",\"mass\":\"77600\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"9.233330\",\"reclong\":\"78.350000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.35,9.23333]}}\n,{\"name\":\"Parsa\",\"id\":\"18109\",\"nametype\":\"Valid\",\"recclass\":\"EH3\",\"mass\":\"800\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"26.200000\",\"reclong\":\"85.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[85.4,26.2]}}\n,{\"name\":\"Pasamonte\",\"id\":\"18110\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"5100\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"36.216670\",\"reclong\":\"-103.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.4,36.21667]},\":@computed_region_cbhk_fwbd\":\"11\",\":@computed_region_nnqa_25f4\":\"1994\"}\n,{\"name\":\"Patora\",\"id\":\"18112\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"4375\",\"fall\":\"Fell\",\"year\":\"1969-01-01T00:00:00.000\",\"reclat\":\"20.936940\",\"reclong\":\"82.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.05,20.93694]}}\n,{\"name\":\"Patrimonio\",\"id\":\"18116\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2121\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"-19.533330\",\"reclong\":\"-48.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-48.56667,-19.53333]}}\n,{\"name\":\"Patti\",\"id\":\"18118\",\"nametype\":\"Valid\",\"recclass\":\"Iron\",\"mass\":\"12\",\"fall\":\"Fell\",\"year\":\"1922-01-01T00:00:00.000\",\"reclat\":\"38.133330\",\"reclong\":\"14.966670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.96667,38.13333]}}\n,{\"name\":\"Patwar\",\"id\":\"18171\",\"nametype\":\"Valid\",\"recclass\":\"Mesosiderite-A1\",\"mass\":\"37350\",\"fall\":\"Fell\",\"year\":\"1935-01-01T00:00:00.000\",\"reclat\":\"23.150000\",\"reclong\":\"91.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[91.18333,23.15]}}\n,{\"name\":\"Pavel\",\"id\":\"18173\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2968\",\"fall\":\"Fell\",\"year\":\"1966-01-01T00:00:00.000\",\"reclat\":\"43.466670\",\"reclong\":\"25.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.51667,43.46667]}}\n,{\"name\":\"Pavlodar (stone)\",\"id\":\"18175\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"142.5\",\"fall\":\"Fell\",\"year\":\"1938-01-01T00:00:00.000\",\"reclat\":\"52.300000\",\"reclong\":\"77.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[77.03333,52.3]}}\n,{\"name\":\"Pavlograd\",\"id\":\"18176\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"40000\",\"fall\":\"Fell\",\"year\":\"1826-01-01T00:00:00.000\",\"reclat\":\"48.533330\",\"reclong\":\"35.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.98333,48.53333]}}\n,{\"name\":\"Pavlovka\",\"id\":\"18177\",\"nametype\":\"Valid\",\"recclass\":\"Howardite\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1882-01-01T00:00:00.000\",\"reclat\":\"52.033330\",\"reclong\":\"43.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[43,52.03333]}}\n,{\"name\":\"Pê\",\"id\":\"18179\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"fall\":\"Fell\",\"year\":\"1989-01-01T00:00:00.000\",\"reclat\":\"11.333670\",\"reclong\":\"-3.542170\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.54217,11.33367]}}\n,{\"name\":\"Peace River\",\"id\":\"18180\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"45760\",\"fall\":\"Fell\",\"year\":\"1963-01-01T00:00:00.000\",\"reclat\":\"56.133330\",\"reclong\":\"-117.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-117.93333,56.13333]}}\n,{\"name\":\"Peckelsheim\",\"id\":\"18181\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite-pm\",\"mass\":\"117.8\",\"fall\":\"Fell\",\"year\":\"1953-01-01T00:00:00.000\",\"reclat\":\"51.666670\",\"reclong\":\"9.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.25,51.66667]}}\n,{\"name\":\"Peekskill\",\"id\":\"18782\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"12570\",\"fall\":\"Fell\",\"year\":\"1992-01-01T00:00:00.000\",\"reclat\":\"41.283330\",\"reclong\":\"-73.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-73.91667,41.28333]},\":@computed_region_cbhk_fwbd\":\"47\",\":@computed_region_nnqa_25f4\":\"2185\"}\n,{\"name\":\"Peña Blanca Spring\",\"id\":\"18786\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"70000\",\"fall\":\"Fell\",\"year\":\"1946-01-01T00:00:00.000\",\"reclat\":\"30.125000\",\"reclong\":\"-103.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.11667,30.125]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"3062\"}\n,{\"name\":\"Peramiho\",\"id\":\"18792\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"165\",\"fall\":\"Fell\",\"year\":\"1899-01-01T00:00:00.000\",\"reclat\":\"-10.666670\",\"reclong\":\"35.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.5,-10.66667]}}\n,{\"name\":\"Perpeti\",\"id\":\"18793\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"23474\",\"fall\":\"Fell\",\"year\":\"1935-01-01T00:00:00.000\",\"reclat\":\"23.325000\",\"reclong\":\"91.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[91,23.325]}}\n,{\"name\":\"Perth\",\"id\":\"18797\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"2\",\"fall\":\"Fell\",\"year\":\"1830-01-01T00:00:00.000\",\"reclat\":\"56.400000\",\"reclong\":\"-3.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.43333,56.4]}}\n,{\"name\":\"Pervomaisky\",\"id\":\"18798\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"66000\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"56.633330\",\"reclong\":\"39.433330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[39.43333,56.63333]}}\n,{\"name\":\"Pesyanoe\",\"id\":\"18799\",\"nametype\":\"Valid\",\"recclass\":\"Aubrite\",\"mass\":\"3393\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"55.500000\",\"reclong\":\"66.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[66.08333,55.5]}}\n,{\"name\":\"Pétèlkolé\",\"id\":\"18800\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"189\",\"fall\":\"Fell\",\"year\":\"1995-01-01T00:00:00.000\",\"reclat\":\"14.052000\",\"reclong\":\"0.420000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.42,14.052]}}\n,{\"name\":\"Petersburg\",\"id\":\"18801\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-pmict\",\"mass\":\"1800\",\"fall\":\"Fell\",\"year\":\"1855-01-01T00:00:00.000\",\"reclat\":\"35.300000\",\"reclong\":\"-86.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.63333,35.3]},\":@computed_region_cbhk_fwbd\":\"39\",\":@computed_region_nnqa_25f4\":\"2017\"}\n,{\"name\":\"Pettiswood\",\"id\":\"18804\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1779-01-01T00:00:00.000\",\"reclat\":\"53.533330\",\"reclong\":\"-7.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.33333,53.53333]}}\n,{\"name\":\"Phillips County (stone)\",\"id\":\"18808\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"57900\",\"fall\":\"Fell\",\"year\":\"1901-01-01T00:00:00.000\",\"reclat\":\"40.000000\",\"reclong\":\"-99.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.25,40]},\":@computed_region_cbhk_fwbd\":\"17\",\":@computed_region_nnqa_25f4\":\"1255\"}\n,{\"name\":\"Phu Hong\",\"id\":\"18809\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"500\",\"fall\":\"Fell\",\"year\":\"1887-01-01T00:00:00.000\",\"reclat\":\"11.250000\",\"reclong\":\"108.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[108.58333,11.25]}}\n,{\"name\":\"Phum Sambo\",\"id\":\"18811\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"7800\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"12.000000\",\"reclong\":\"105.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[105.48333,12]}}\n,{\"name\":\"Phuoc-Binh\",\"id\":\"18812\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"11000\",\"fall\":\"Fell\",\"year\":\"1941-01-01T00:00:00.000\",\"reclat\":\"15.716670\",\"reclong\":\"108.100000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[108.1,15.71667]}}\n,{\"name\":\"Piancaldoli\",\"id\":\"18813\",\"nametype\":\"Valid\",\"recclass\":\"LL3.4\",\"mass\":\"13.1\",\"fall\":\"Fell\",\"year\":\"1968-01-01T00:00:00.000\",\"reclat\":\"44.244170\",\"reclong\":\"11.502220\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.50222,44.24417]}}\n,{\"name\":\"Picote\",\"id\":\"18816\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1843-01-01T00:00:00.000\",\"reclat\":\"41.366670\",\"reclong\":\"-6.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6.23333,41.36667]}}\n,{\"name\":\"Pillistfer\",\"id\":\"18822\",\"nametype\":\"Valid\",\"recclass\":\"EL6\",\"mass\":\"23250\",\"fall\":\"Fell\",\"year\":\"1863-01-01T00:00:00.000\",\"reclat\":\"58.666670\",\"reclong\":\"25.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[25.73333,58.66667]}}\n,{\"name\":\"Piplia Kalan\",\"id\":\"18831\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"42000\",\"fall\":\"Fell\",\"year\":\"1996-01-01T00:00:00.000\",\"reclat\":\"26.034720\",\"reclong\":\"73.941670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[73.94167,26.03472]}}\n,{\"name\":\"Piquetberg\",\"id\":\"18832\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"37\",\"fall\":\"Fell\",\"year\":\"1881-01-01T00:00:00.000\",\"reclat\":\"-32.866670\",\"reclong\":\"18.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[18.71667,-32.86667]}}\n,{\"name\":\"Pirgunje\",\"id\":\"18834\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"842\",\"fall\":\"Fell\",\"year\":\"1882-01-01T00:00:00.000\",\"reclat\":\"25.800000\",\"reclong\":\"88.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[88.45,25.8]}}\n,{\"name\":\"Pirthalla\",\"id\":\"18835\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"1161\",\"fall\":\"Fell\",\"year\":\"1884-01-01T00:00:00.000\",\"reclat\":\"29.583330\",\"reclong\":\"76.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76,29.58333]}}\n,{\"name\":\"Pitts\",\"id\":\"18837\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-ung\",\"mass\":\"3760\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"31.950000\",\"reclong\":\"-83.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-83.51667,31.95]},\":@computed_region_cbhk_fwbd\":\"31\",\":@computed_region_nnqa_25f4\":\"207\"}\n,{\"name\":\"Plantersville\",\"id\":\"18846\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"2085\",\"fall\":\"Fell\",\"year\":\"1930-01-01T00:00:00.000\",\"reclat\":\"30.700000\",\"reclong\":\"-96.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-96.11667,30.7]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"2018\"}\n,{\"name\":\"Pleşcoi\",\"id\":\"51706\",\"nametype\":\"Valid\",\"recclass\":\"L5-6\",\"mass\":\"6913\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"45.275000\",\"reclong\":\"26.709720\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.70972,45.275]}}\n,{\"name\":\"Ploschkovitz\",\"id\":\"18849\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"39\",\"fall\":\"Fell\",\"year\":\"1723-01-01T00:00:00.000\",\"reclat\":\"50.533330\",\"reclong\":\"14.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.11667,50.53333]}}\n,{\"name\":\"Pnompehn\",\"id\":\"18851\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"96\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"11.583330\",\"reclong\":\"104.916670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[104.91667,11.58333]}}\n,{\"name\":\"Dominion Range 03240\",\"id\":\"32592\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"290.89999999999998\",\"fall\":\"Found\",\"year\":\"2002-01-01T00:00:00.000\"}\n,{\"name\":\"Pohlitz\",\"id\":\"18853\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1819-01-01T00:00:00.000\",\"reclat\":\"50.933330\",\"reclong\":\"12.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[12.13333,50.93333]}}\n,{\"name\":\"Pokhra\",\"id\":\"18858\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"350\",\"fall\":\"Fell\",\"year\":\"1866-01-01T00:00:00.000\",\"reclat\":\"26.716670\",\"reclong\":\"82.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.66667,26.71667]}}\n,{\"name\":\"Pollen\",\"id\":\"18860\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"253.6\",\"fall\":\"Fell\",\"year\":\"1942-01-01T00:00:00.000\",\"reclat\":\"66.348330\",\"reclong\":\"14.015000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.015,66.34833]}}\n,{\"name\":\"Pontlyfni\",\"id\":\"18865\",\"nametype\":\"Valid\",\"recclass\":\"Winonaite\",\"mass\":\"157\",\"fall\":\"Fell\",\"year\":\"1931-01-01T00:00:00.000\",\"reclat\":\"53.036390\",\"reclong\":\"-4.319440\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-4.31944,53.03639]}}\n,{\"name\":\"Portales Valley\",\"id\":\"18874\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"71400\",\"fall\":\"Fell\",\"year\":\"1998-01-01T00:00:00.000\",\"reclat\":\"34.175000\",\"reclong\":\"-103.295000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.295,34.175]},\":@computed_region_cbhk_fwbd\":\"11\",\":@computed_region_nnqa_25f4\":\"1987\"}\n,{\"name\":\"Portugal\",\"id\":\"18876\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"4500\",\"fall\":\"Fell\",\"year\":\"1796-01-01T00:00:00.000\",\"reclat\":\"38.500000\",\"reclong\":\"-8.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-8,38.5]}}\n,{\"name\":\"Po-wang Chen\",\"id\":\"18879\",\"nametype\":\"Valid\",\"recclass\":\"LL\",\"mass\":\"665\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"31.416670\",\"reclong\":\"118.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[118.5,31.41667]}}\n,{\"name\":\"Prambachkirchen\",\"id\":\"18883\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2125\",\"fall\":\"Fell\",\"year\":\"1932-01-01T00:00:00.000\",\"reclat\":\"48.302500\",\"reclong\":\"13.940830\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13.94083,48.3025]}}\n,{\"name\":\"Pribram\",\"id\":\"18887\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5555\",\"fall\":\"Fell\",\"year\":\"1959-01-01T00:00:00.000\",\"reclat\":\"49.666670\",\"reclong\":\"14.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.03333,49.66667]}}\n,{\"name\":\"Pricetown\",\"id\":\"18888\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"900\",\"fall\":\"Fell\",\"year\":\"1893-01-01T00:00:00.000\",\"reclat\":\"39.116670\",\"reclong\":\"-83.850000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-83.85,39.11667]},\":@computed_region_cbhk_fwbd\":\"38\",\":@computed_region_nnqa_25f4\":\"2566\"}\n,{\"name\":\"Puerto Lápice\",\"id\":\"45984\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-br\",\"mass\":\"500\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"39.350000\",\"reclong\":\"-3.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.51667,39.35]}}\n,{\"name\":\"Pulsora\",\"id\":\"18899\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"560\",\"fall\":\"Fell\",\"year\":\"1863-01-01T00:00:00.000\",\"reclat\":\"23.366670\",\"reclong\":\"75.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[75.18333,23.36667]}}\n,{\"name\":\"Pultusk\",\"id\":\"18901\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"250000\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"52.766670\",\"reclong\":\"21.266670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.26667,52.76667]}}\n,{\"name\":\"Punganaru\",\"id\":\"18902\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"100\",\"fall\":\"Fell\",\"year\":\"1811-01-01T00:00:00.000\",\"reclat\":\"13.333330\",\"reclong\":\"78.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.95,13.33333]}}\n,{\"name\":\"Putinga\",\"id\":\"18905\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"300000\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"-29.033330\",\"reclong\":\"-53.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-53.05,-29.03333]}}\n,{\"name\":\"Qidong\",\"id\":\"18907\",\"nametype\":\"Valid\",\"recclass\":\"L/LL5\",\"mass\":\"1275\",\"fall\":\"Fell\",\"year\":\"1982-01-01T00:00:00.000\",\"reclat\":\"32.083330\",\"reclong\":\"121.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[121.5,32.08333]}}\n,{\"name\":\"Qingzhen\",\"id\":\"18908\",\"nametype\":\"Valid\",\"recclass\":\"EH3\",\"mass\":\"2600\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"26.533330\",\"reclong\":\"106.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[106.46667,26.53333]}}\n,{\"name\":\"Queen's Mercy\",\"id\":\"22357\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"-30.116670\",\"reclong\":\"28.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[28.7,-30.11667]}}\n,{\"name\":\"Quenggouk\",\"id\":\"22358\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"6045\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"17.766670\",\"reclong\":\"95.183330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[95.18333,17.76667]}}\n,{\"name\":\"Quesa\",\"id\":\"22360\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IAB-ung\",\"mass\":\"10750\",\"fall\":\"Fell\",\"year\":\"1898-01-01T00:00:00.000\",\"reclat\":\"39.000000\",\"reclong\":\"-0.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.66667,39]}}\n,{\"name\":\"Quija\",\"id\":\"22361\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"17450\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\",\"reclat\":\"44.616670\",\"reclong\":\"126.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[126.13333,44.61667]}}\n,{\"name\":\"Quincay\",\"id\":\"22363\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"65\",\"fall\":\"Fell\",\"year\":\"1851-01-01T00:00:00.000\",\"reclat\":\"46.600000\",\"reclong\":\"0.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.25,46.6]}}\n,{\"name\":\"Raco\",\"id\":\"22368\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1957-01-01T00:00:00.000\",\"reclat\":\"-26.666670\",\"reclong\":\"-65.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-65.45,-26.66667]}}\n,{\"name\":\"Raghunathpura\",\"id\":\"22371\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIAB\",\"mass\":\"10200\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"27.725280\",\"reclong\":\"76.465000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.465,27.72528]}}\n,{\"name\":\"Rahimyar Khan\",\"id\":\"31302\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"67225\",\"fall\":\"Fell\",\"year\":\"1983-01-01T00:00:00.000\",\"reclat\":\"28.225000\",\"reclong\":\"70.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[70.2,28.225]}}\n,{\"name\":\"Rakovka\",\"id\":\"22376\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"9000\",\"fall\":\"Fell\",\"year\":\"1878-01-01T00:00:00.000\",\"reclat\":\"52.983330\",\"reclong\":\"37.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.03333,52.98333]}}\n,{\"name\":\"Ramnagar\",\"id\":\"22384\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3766\",\"fall\":\"Fell\",\"year\":\"1940-01-01T00:00:00.000\",\"reclat\":\"26.450000\",\"reclong\":\"82.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.9,26.45]}}\n,{\"name\":\"Rampurhat\",\"id\":\"22385\",\"nametype\":\"Valid\",\"recclass\":\"LL\",\"mass\":\"100\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"24.166670\",\"reclong\":\"87.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[87.76667,24.16667]}}\n,{\"name\":\"Ramsdorf\",\"id\":\"22386\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4682\",\"fall\":\"Fell\",\"year\":\"1958-01-01T00:00:00.000\",\"reclat\":\"51.883330\",\"reclong\":\"6.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[6.93333,51.88333]}}\n,{\"name\":\"Ranchapur\",\"id\":\"22387\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"290.39999999999998\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"23.983330\",\"reclong\":\"87.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[87.08333,23.98333]}}\n,{\"name\":\"Rancho de la Presa\",\"id\":\"22390\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"300\",\"fall\":\"Fell\",\"year\":\"1899-01-01T00:00:00.000\",\"reclat\":\"19.866670\",\"reclong\":\"-100.816670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-100.81667,19.86667]}}\n,{\"name\":\"Rangala\",\"id\":\"22392\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3224.5\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"25.383330\",\"reclong\":\"72.016670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[72.01667,25.38333]}}\n,{\"name\":\"Raoyang\",\"id\":\"22394\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4910\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"38.200000\",\"reclong\":\"115.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[115.7,38.2]}}\n,{\"name\":\"Ras Tanura\",\"id\":\"22395\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"6.1\",\"fall\":\"Fell\",\"year\":\"1961-01-01T00:00:00.000\",\"reclat\":\"26.666670\",\"reclong\":\"50.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[50.15,26.66667]}}\n,{\"name\":\"Rasgrad\",\"id\":\"22396\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"24700\",\"fall\":\"Fell\",\"year\":\"1740-01-01T00:00:00.000\",\"reclat\":\"43.500000\",\"reclong\":\"26.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.53333,43.5]}}\n,{\"name\":\"Ratyn\",\"id\":\"22398\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"910\",\"fall\":\"Fell\",\"year\":\"1880-01-01T00:00:00.000\",\"reclat\":\"52.200000\",\"reclong\":\"17.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[17.98333,52.2]}}\n,{\"name\":\"Red Canyon Lake\",\"id\":\"53502\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"18.41\",\"fall\":\"Fell\",\"year\":\"2007-01-01T00:00:00.000\",\"reclat\":\"38.137420\",\"reclong\":\"-119.758120\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-119.75812,38.13742]},\":@computed_region_cbhk_fwbd\":\"8\",\":@computed_region_nnqa_25f4\":\"1391\"}\n,{\"name\":\"Reliegos\",\"id\":\"22584\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"17300\",\"fall\":\"Fell\",\"year\":\"1947-01-01T00:00:00.000\",\"reclat\":\"42.475000\",\"reclong\":\"-5.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-5.33333,42.475]}}\n,{\"name\":\"Rembang\",\"id\":\"22585\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IVA\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"-6.733330\",\"reclong\":\"111.366670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.36667,-6.73333]}}\n,{\"name\":\"Renazzo\",\"id\":\"22586\",\"nametype\":\"Valid\",\"recclass\":\"CR2\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1824-01-01T00:00:00.000\",\"reclat\":\"44.766670\",\"reclong\":\"11.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.28333,44.76667]}}\n,{\"name\":\"Renca\",\"id\":\"22587\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"300\",\"fall\":\"Fell\",\"year\":\"1925-01-01T00:00:00.000\",\"reclat\":\"-32.750000\",\"reclong\":\"-65.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-65.28333,-32.75]}}\n,{\"name\":\"Renqiu\",\"id\":\"22589\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"355\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"38.666670\",\"reclong\":\"116.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[116.13333,38.66667]}}\n,{\"name\":\"Repeev Khutor\",\"id\":\"22590\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIF\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"48.600000\",\"reclong\":\"45.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[45.66667,48.6]}}\n,{\"name\":\"Revelstoke\",\"id\":\"22592\",\"nametype\":\"Valid\",\"recclass\":\"CI1\",\"mass\":\"1\",\"fall\":\"Fell\",\"year\":\"1965-01-01T00:00:00.000\",\"reclat\":\"51.333330\",\"reclong\":\"-118.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-118.95,51.33333]}}\n,{\"name\":\"Rewari\",\"id\":\"22593\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3332\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"28.200000\",\"reclong\":\"76.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[76.66667,28.2]}}\n,{\"name\":\"Rich Mountain\",\"id\":\"22597\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"668\",\"fall\":\"Fell\",\"year\":\"1903-01-01T00:00:00.000\",\"reclat\":\"35.033330\",\"reclong\":\"-83.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-83.03333,35.03333]},\":@computed_region_cbhk_fwbd\":\"37\",\":@computed_region_nnqa_25f4\":\"2388\"}\n,{\"name\":\"Uzcudun\",\"id\":\"24140\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"20000\",\"fall\":\"Fell\",\"year\":\"1948-01-01T00:00:00.000\",\"reclat\":\"-44.116670\",\"reclong\":\"-66.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-66.15,-44.11667]}}\n,{\"name\":\"Richardton\",\"id\":\"22599\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"90000\",\"fall\":\"Fell\",\"year\":\"1918-01-01T00:00:00.000\",\"reclat\":\"46.883330\",\"reclong\":\"-102.316670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-102.31667,46.88333]},\":@computed_region_cbhk_fwbd\":\"3\",\":@computed_region_nnqa_25f4\":\"569\"}\n,{\"name\":\"Richland Springs\",\"id\":\"22602\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"1900\",\"fall\":\"Fell\",\"year\":\"1980-01-01T00:00:00.000\",\"reclat\":\"31.250000\",\"reclong\":\"-99.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.03333,31.25]},\":@computed_region_cbhk_fwbd\":\"23\",\":@computed_region_nnqa_25f4\":\"2885\"}\n,{\"name\":\"Richmond\",\"id\":\"22603\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"1800\",\"fall\":\"Fell\",\"year\":\"1828-01-01T00:00:00.000\",\"reclat\":\"37.466670\",\"reclong\":\"-77.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-77.5,37.46667]},\":@computed_region_cbhk_fwbd\":\"40\",\":@computed_region_nnqa_25f4\":\"2764\"}\n,{\"name\":\"Rio Negro\",\"id\":\"22611\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"1310\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"-26.100000\",\"reclong\":\"-49.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-49.8,-26.1]}}\n,{\"name\":\"Rivolta de Bassi\",\"id\":\"22614\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"103.3\",\"fall\":\"Fell\",\"year\":\"1491-01-01T00:00:00.000\",\"reclat\":\"45.483330\",\"reclong\":\"9.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.51667,45.48333]}}\n,{\"name\":\"Rochester\",\"id\":\"22637\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"340\",\"fall\":\"Fell\",\"year\":\"1876-01-01T00:00:00.000\",\"reclat\":\"41.083330\",\"reclong\":\"-86.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.28333,41.08333]},\":@computed_region_cbhk_fwbd\":\"35\",\":@computed_region_nnqa_25f4\":\"150\"}\n,{\"name\":\"Rockhampton\",\"id\":\"22640\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"1641\",\"fall\":\"Fell\",\"year\":\"1895-01-01T00:00:00.000\",\"reclat\":\"-23.383330\",\"reclong\":\"150.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[150.51667,-23.38333]}}\n,{\"name\":\"Roda\",\"id\":\"22641\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"400\",\"fall\":\"Fell\",\"year\":\"1871-01-01T00:00:00.000\",\"reclat\":\"42.300000\",\"reclong\":\"0.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.55,42.3]}}\n,{\"name\":\"Rodach\",\"id\":\"22642\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"2900\",\"fall\":\"Fell\",\"year\":\"1775-01-01T00:00:00.000\",\"reclat\":\"50.350000\",\"reclong\":\"10.800000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.8,50.35]}}\n,{\"name\":\"Rose City\",\"id\":\"22766\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"10600\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"44.516670\",\"reclong\":\"-83.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-83.95,44.51667]},\":@computed_region_cbhk_fwbd\":\"50\",\":@computed_region_nnqa_25f4\":\"361\"}\n,{\"name\":\"Rowton\",\"id\":\"22773\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"3500\",\"fall\":\"Fell\",\"year\":\"1876-01-01T00:00:00.000\",\"reclat\":\"52.766670\",\"reclong\":\"-2.516670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-2.51667,52.76667]}}\n,{\"name\":\"Ruhobobo\",\"id\":\"22780\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"465.5\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"-1.450000\",\"reclong\":\"29.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.83333,-1.45]}}\n,{\"name\":\"Rumuruti\",\"id\":\"22782\",\"nametype\":\"Valid\",\"recclass\":\"R3.8-6\",\"mass\":\"67\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"0.266670\",\"reclong\":\"36.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[36.53333,0.26667]}}\n,{\"name\":\"Rupota\",\"id\":\"22783\",\"nametype\":\"Valid\",\"recclass\":\"L4-6\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1949-01-01T00:00:00.000\",\"reclat\":\"-10.266670\",\"reclong\":\"38.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[38.76667,-10.26667]}}\n,{\"name\":\"Ryechki\",\"id\":\"22791\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"13000\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"51.133330\",\"reclong\":\"34.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[34.5,51.13333]}}\n,{\"name\":\"Sabetmahet\",\"id\":\"22792\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1250\",\"fall\":\"Fell\",\"year\":\"1855-01-01T00:00:00.000\",\"reclat\":\"27.433330\",\"reclong\":\"82.083330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.08333,27.43333]}}\n,{\"name\":\"Sabrum\",\"id\":\"22793\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"478\",\"fall\":\"Fell\",\"year\":\"1999-01-01T00:00:00.000\",\"reclat\":\"23.083330\",\"reclong\":\"91.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[91.66667,23.08333]}}\n,{\"name\":\"Sagan\",\"id\":\"22796\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1636-01-01T00:00:00.000\",\"reclat\":\"51.533330\",\"reclong\":\"14.883330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.88333,51.53333]}}\n,{\"name\":\"Saint-Sauveur\",\"id\":\"23101\",\"nametype\":\"Valid\",\"recclass\":\"EH5\",\"mass\":\"14000\",\"fall\":\"Fell\",\"year\":\"1914-01-01T00:00:00.000\",\"reclat\":\"43.733330\",\"reclong\":\"1.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.38333,43.73333]}}\n,{\"name\":\"Saint-Séverin\",\"id\":\"23102\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"271000\",\"fall\":\"Fell\",\"year\":\"1966-01-01T00:00:00.000\",\"reclat\":\"45.300000\",\"reclong\":\"0.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.23333,45.3]}}\n,{\"name\":\"Sakauchi\",\"id\":\"23103\",\"nametype\":\"Valid\",\"recclass\":\"Iron\",\"mass\":\"4180\",\"fall\":\"Fell\",\"year\":\"1913-01-01T00:00:00.000\",\"reclat\":\"35.666670\",\"reclong\":\"136.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.3,35.66667]}}\n,{\"name\":\"Salem\",\"id\":\"23107\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"61.4\",\"fall\":\"Fell\",\"year\":\"1981-01-01T00:00:00.000\",\"reclat\":\"44.979170\",\"reclong\":\"-122.969440\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-122.96944,44.97917]},\":@computed_region_cbhk_fwbd\":\"12\",\":@computed_region_nnqa_25f4\":\"2409\"}\n,{\"name\":\"Salles\",\"id\":\"23111\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"9000\",\"fall\":\"Fell\",\"year\":\"1798-01-01T00:00:00.000\",\"reclat\":\"46.050000\",\"reclong\":\"4.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4.63333,46.05]}}\n,{\"name\":\"Salzwedel\",\"id\":\"23114\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"43\",\"fall\":\"Fell\",\"year\":\"1985-01-01T00:00:00.000\",\"reclat\":\"52.750000\",\"reclong\":\"11.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.05,52.75]}}\n,{\"name\":\"Samelia\",\"id\":\"23115\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"2462\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"25.666670\",\"reclong\":\"74.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[74.86667,25.66667]}}\n,{\"name\":\"San Juan Capistrano\",\"id\":\"23128\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"56\",\"fall\":\"Fell\",\"year\":\"1973-01-01T00:00:00.000\",\"reclat\":\"33.484720\",\"reclong\":\"-117.662500\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-117.6625,33.48472]},\":@computed_region_cbhk_fwbd\":\"8\",\":@computed_region_nnqa_25f4\":\"1174\"}\n,{\"name\":\"San Michele\",\"id\":\"31315\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"237\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"43.666670\",\"reclong\":\"13.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[13,43.66667]}}\n,{\"name\":\"San Pedro de Quiles\",\"id\":\"23130\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"282\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"-31.016670\",\"reclong\":\"-71.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-71.4,-31.01667]}}\n,{\"name\":\"San Pedro Jacuaro\",\"id\":\"34063\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"460\",\"fall\":\"Fell\",\"year\":\"1968-01-01T00:00:00.000\",\"reclat\":\"19.766670\",\"reclong\":\"-100.650000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-100.65,19.76667]}}\n,{\"name\":\"Santa Barbara\",\"id\":\"23161\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"400\",\"fall\":\"Fell\",\"year\":\"1873-01-01T00:00:00.000\",\"reclat\":\"-29.200000\",\"reclong\":\"-51.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-51.86667,-29.2]}}\n,{\"name\":\"Santa Cruz\",\"id\":\"23164\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"60\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"24.166670\",\"reclong\":\"-99.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-99.33333,24.16667]}}\n,{\"name\":\"Santa Isabel\",\"id\":\"23165\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5500\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"-33.900000\",\"reclong\":\"-61.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-61.7,-33.9]}}\n,{\"name\":\"Santa Lucia (2008)\",\"id\":\"50909\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"-31.535556\",\"reclong\":\"-68.489444\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-68.489444,-31.535556]}}\n,{\"name\":\"São Jose do Rio Preto\",\"id\":\"23171\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"927\",\"fall\":\"Fell\",\"year\":\"1962-01-01T00:00:00.000\",\"reclat\":\"-20.810000\",\"reclong\":\"-49.380560\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-49.38056,-20.81]}}\n,{\"name\":\"Saratov\",\"id\":\"23176\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"200000\",\"fall\":\"Fell\",\"year\":\"1918-01-01T00:00:00.000\",\"reclat\":\"52.550000\",\"reclong\":\"46.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[46.55,52.55]}}\n,{\"name\":\"Sasagase\",\"id\":\"23187\",\"nametype\":\"Valid\",\"recclass\":\"H\",\"mass\":\"695\",\"fall\":\"Fell\",\"year\":\"1688-01-01T00:00:00.000\",\"reclat\":\"34.716670\",\"reclong\":\"137.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[137.78333,34.71667]}}\n,{\"name\":\"Sauguis\",\"id\":\"23188\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"43.150000\",\"reclong\":\"-0.850000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.85,43.15]}}\n,{\"name\":\"Savtschenskoje\",\"id\":\"23190\",\"nametype\":\"Valid\",\"recclass\":\"LL4\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1894-01-01T00:00:00.000\",\"reclat\":\"47.216670\",\"reclong\":\"29.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[29.86667,47.21667]}}\n,{\"name\":\"Sayama\",\"id\":\"23192\",\"nametype\":\"Valid\",\"recclass\":\"CM2\",\"mass\":\"430\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"35.866670\",\"reclong\":\"139.400000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[139.4,35.86667]}}\n,{\"name\":\"Sazovice\",\"id\":\"23455\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"412\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"49.233330\",\"reclong\":\"17.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[17.56667,49.23333]}}\n,{\"name\":\"Schellin\",\"id\":\"23457\",\"nametype\":\"Valid\",\"recclass\":\"L\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1715-01-01T00:00:00.000\",\"reclat\":\"53.350000\",\"reclong\":\"15.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.05,53.35]}}\n,{\"name\":\"Schenectady\",\"id\":\"23458\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"283.3\",\"fall\":\"Fell\",\"year\":\"1968-01-01T00:00:00.000\",\"reclat\":\"42.860830\",\"reclong\":\"-73.950280\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-73.95028,42.86083]},\":@computed_region_cbhk_fwbd\":\"47\",\":@computed_region_nnqa_25f4\":\"2142\"}\n,{\"name\":\"Schönenberg\",\"id\":\"23460\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"8000\",\"fall\":\"Fell\",\"year\":\"1846-01-01T00:00:00.000\",\"reclat\":\"48.116670\",\"reclong\":\"10.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.46667,48.11667]}}\n,{\"name\":\"Searsmont\",\"id\":\"23472\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"5400\",\"fall\":\"Fell\",\"year\":\"1871-01-01T00:00:00.000\",\"reclat\":\"44.366670\",\"reclong\":\"-69.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-69.2,44.36667]},\":@computed_region_cbhk_fwbd\":\"49\",\":@computed_region_nnqa_25f4\":\"1727\"}\n,{\"name\":\"Sediköy\",\"id\":\"23473\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"240\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"38.300000\",\"reclong\":\"27.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.13333,38.3]}}\n,{\"name\":\"Segowlie\",\"id\":\"23476\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"6930\",\"fall\":\"Fell\",\"year\":\"1853-01-01T00:00:00.000\",\"reclat\":\"26.750000\",\"reclong\":\"84.783330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.78333,26.75]}}\n,{\"name\":\"Selakopi\",\"id\":\"23481\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1590\",\"fall\":\"Fell\",\"year\":\"1939-01-01T00:00:00.000\",\"reclat\":\"-7.233330\",\"reclong\":\"107.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[107.33333,-7.23333]}}\n,{\"name\":\"Seldebourak\",\"id\":\"23483\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"150\",\"fall\":\"Fell\",\"year\":\"1947-01-01T00:00:00.000\",\"reclat\":\"22.833330\",\"reclong\":\"4.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[4.98333,22.83333]}}\n,{\"name\":\"Semarkona\",\"id\":\"23487\",\"nametype\":\"Valid\",\"recclass\":\"LL3.00\",\"mass\":\"691\",\"fall\":\"Fell\",\"year\":\"1940-01-01T00:00:00.000\",\"reclat\":\"22.250000\",\"reclong\":\"79.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[79,22.25]}}\n,{\"name\":\"Sena\",\"id\":\"23495\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1773-01-01T00:00:00.000\",\"reclat\":\"41.716670\",\"reclong\":\"-0.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-0.05,41.71667]}}\n,{\"name\":\"Senboku\",\"id\":\"23496\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"866\",\"fall\":\"Fell\",\"year\":\"1993-01-01T00:00:00.000\",\"reclat\":\"39.438330\",\"reclong\":\"140.511670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[140.51167,39.43833]}}\n,{\"name\":\"Seoni\",\"id\":\"23500\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"20000\",\"fall\":\"Fell\",\"year\":\"1966-01-01T00:00:00.000\",\"reclat\":\"21.683890\",\"reclong\":\"79.500830\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[79.50083,21.68389]}}\n,{\"name\":\"Seres\",\"id\":\"23501\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"8500\",\"fall\":\"Fell\",\"year\":\"1818-01-01T00:00:00.000\",\"reclat\":\"41.050000\",\"reclong\":\"23.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23.56667,41.05]}}\n,{\"name\":\"Serra de Magé\",\"id\":\"23502\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-cm\",\"mass\":\"1800\",\"fall\":\"Fell\",\"year\":\"1923-01-01T00:00:00.000\",\"reclat\":\"-8.383330\",\"reclong\":\"-36.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-36.76667,-8.38333]}}\n,{\"name\":\"Sete Lagoas\",\"id\":\"23504\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"350\",\"fall\":\"Fell\",\"year\":\"1908-01-01T00:00:00.000\",\"reclat\":\"-19.466670\",\"reclong\":\"-44.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-44.21667,-19.46667]}}\n,{\"name\":\"Sevilla\",\"id\":\"23508\",\"nametype\":\"Valid\",\"recclass\":\"LL4\",\"mass\":\"180\",\"fall\":\"Fell\",\"year\":\"1862-01-01T00:00:00.000\",\"reclat\":\"37.416670\",\"reclong\":\"-6.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-6,37.41667]}}\n,{\"name\":\"Sevrukovo\",\"id\":\"23509\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"101000\",\"fall\":\"Fell\",\"year\":\"1874-01-01T00:00:00.000\",\"reclat\":\"50.616670\",\"reclong\":\"36.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[36.6,50.61667]}}\n,{\"name\":\"Sfax\",\"id\":\"23512\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"1989-01-01T00:00:00.000\",\"reclat\":\"34.750000\",\"reclong\":\"10.716670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.71667,34.75]}}\n,{\"name\":\"Shalka\",\"id\":\"23521\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1850-01-01T00:00:00.000\",\"reclat\":\"23.100000\",\"reclong\":\"87.300000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[87.3,23.1]}}\n,{\"name\":\"Sharps\",\"id\":\"23525\",\"nametype\":\"Valid\",\"recclass\":\"H3.4\",\"mass\":\"1265\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"37.833330\",\"reclong\":\"-76.700000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-76.7,37.83333]},\":@computed_region_cbhk_fwbd\":\"40\",\":@computed_region_nnqa_25f4\":\"921\"}\n,{\"name\":\"Shelburne\",\"id\":\"23529\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"18600\",\"fall\":\"Fell\",\"year\":\"1904-01-01T00:00:00.000\",\"reclat\":\"44.050000\",\"reclong\":\"-80.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-80.16667,44.05]}}\n,{\"name\":\"Shergotty\",\"id\":\"23530\",\"nametype\":\"Valid\",\"recclass\":\"Martian (shergottite)\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1865-01-01T00:00:00.000\",\"reclat\":\"24.550000\",\"reclong\":\"84.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.83333,24.55]}}\n,{\"name\":\"Sheyang\",\"id\":\"23531\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"605\",\"fall\":\"Fell\",\"year\":\"1976-01-01T00:00:00.000\",\"reclat\":\"33.650000\",\"reclong\":\"120.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[120.06667,33.65]}}\n,{\"name\":\"Shikarpur\",\"id\":\"23534\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3679.7\",\"fall\":\"Fell\",\"year\":\"1921-01-01T00:00:00.000\",\"reclat\":\"25.850000\",\"reclong\":\"87.577500\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[87.5775,25.85]}}\n,{\"name\":\"Shuangyang\",\"id\":\"23582\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"3900\",\"fall\":\"Fell\",\"year\":\"1971-01-01T00:00:00.000\",\"reclat\":\"43.500000\",\"reclong\":\"125.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[125.66667,43.5]}}\n,{\"name\":\"Shupiyan\",\"id\":\"23583\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"5000\",\"fall\":\"Fell\",\"year\":\"1912-01-01T00:00:00.000\",\"reclat\":\"33.716670\",\"reclong\":\"74.833330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[74.83333,33.71667]}}\n,{\"name\":\"Shytal\",\"id\":\"23584\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3200\",\"fall\":\"Fell\",\"year\":\"1863-01-01T00:00:00.000\",\"reclat\":\"24.333330\",\"reclong\":\"90.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[90.16667,24.33333]}}\n,{\"name\":\"Siena\",\"id\":\"23586\",\"nametype\":\"Valid\",\"recclass\":\"LL5\",\"mass\":\"3700\",\"fall\":\"Fell\",\"year\":\"1794-01-01T00:00:00.000\",\"reclat\":\"43.116670\",\"reclong\":\"11.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[11.6,43.11667]}}\n,{\"name\":\"Sikhote-Alin\",\"id\":\"23593\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIAB\",\"mass\":\"23000000\",\"fall\":\"Fell\",\"year\":\"1947-01-01T00:00:00.000\",\"reclat\":\"46.160000\",\"reclong\":\"134.653330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[134.65333,46.16]}}\n,{\"name\":\"Silao\",\"id\":\"23594\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1710\",\"fall\":\"Fell\",\"year\":\"1995-01-01T00:00:00.000\",\"reclat\":\"20.933330\",\"reclong\":\"-101.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-101.38333,20.93333]}}\n,{\"name\":\"Silistra\",\"id\":\"55584\",\"nametype\":\"Valid\",\"recclass\":\"Achondrite-ung\",\"mass\":\"0.15\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"44.116670\",\"reclong\":\"27.266670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.26667,44.11667]}}\n,{\"name\":\"Simmern\",\"id\":\"23603\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1222\",\"fall\":\"Fell\",\"year\":\"1920-01-01T00:00:00.000\",\"reclat\":\"49.983330\",\"reclong\":\"7.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[7.53333,49.98333]}}\n,{\"name\":\"Sinai\",\"id\":\"23606\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1455\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"30.900000\",\"reclong\":\"32.483330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[32.48333,30.9]}}\n,{\"name\":\"Sindhri\",\"id\":\"23611\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"8400\",\"fall\":\"Fell\",\"year\":\"1901-01-01T00:00:00.000\",\"reclat\":\"26.216670\",\"reclong\":\"69.550000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[69.55,26.21667]}}\n,{\"name\":\"Sinnai\",\"id\":\"23613\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"2000\",\"fall\":\"Fell\",\"year\":\"1956-01-01T00:00:00.000\",\"reclat\":\"39.300000\",\"reclong\":\"9.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.2,39.3]}}\n,{\"name\":\"Sioux County\",\"id\":\"23614\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"4100\",\"fall\":\"Fell\",\"year\":\"1933-01-01T00:00:00.000\",\"reclat\":\"42.583330\",\"reclong\":\"-103.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-103.66667,42.58333]},\":@computed_region_cbhk_fwbd\":\"19\",\":@computed_region_nnqa_25f4\":\"2351\"}\n,{\"name\":\"Sitathali\",\"id\":\"23616\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1600\",\"fall\":\"Fell\",\"year\":\"1875-01-01T00:00:00.000\",\"reclat\":\"20.916670\",\"reclong\":\"82.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[82.58333,20.91667]}}\n,{\"name\":\"Sivas\",\"id\":\"23617\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"40000\",\"fall\":\"Fell\",\"year\":\"1989-01-01T00:00:00.000\",\"reclat\":\"39.824670\",\"reclong\":\"36.135830\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[36.13583,39.82467]}}\n,{\"name\":\"Sixiangkou\",\"id\":\"23619\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"630\",\"fall\":\"Fell\",\"year\":\"1989-01-01T00:00:00.000\",\"reclat\":\"32.433330\",\"reclong\":\"119.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[119.86667,32.43333]}}\n,{\"name\":\"Ski\",\"id\":\"23621\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"850\",\"fall\":\"Fell\",\"year\":\"1848-01-01T00:00:00.000\",\"reclat\":\"59.733330\",\"reclong\":\"10.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.86667,59.73333]}}\n,{\"name\":\"Slavetic\",\"id\":\"23626\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"1708\",\"fall\":\"Fell\",\"year\":\"1868-01-01T00:00:00.000\",\"reclat\":\"45.683330\",\"reclong\":\"15.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.6,45.68333]}}\n,{\"name\":\"Slobodka\",\"id\":\"23645\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"2750\",\"fall\":\"Fell\",\"year\":\"1818-01-01T00:00:00.000\",\"reclat\":\"55.000000\",\"reclong\":\"35.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35,55]}}\n,{\"name\":\"Soheria\",\"id\":\"23660\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"72.900000000000006\",\"fall\":\"Fell\",\"year\":\"1960-01-01T00:00:00.000\",\"reclat\":\"27.133330\",\"reclong\":\"84.066670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.06667,27.13333]}}\n,{\"name\":\"Soko-Banja\",\"id\":\"23661\",\"nametype\":\"Valid\",\"recclass\":\"LL4\",\"mass\":\"80000\",\"fall\":\"Fell\",\"year\":\"1877-01-01T00:00:00.000\",\"reclat\":\"43.666670\",\"reclong\":\"21.866670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[21.86667,43.66667]}}\n,{\"name\":\"Sologne\",\"id\":\"23663\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"54\",\"fall\":\"Fell\",\"year\":\"1860-01-01T00:00:00.000\",\"reclat\":\"47.366670\",\"reclong\":\"1.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.73333,47.36667]}}\n,{\"name\":\"Sołtmany\",\"id\":\"53829\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1066\",\"fall\":\"Fell\",\"year\":\"2011-01-01T00:00:00.000\",\"reclat\":\"54.008830\",\"reclong\":\"22.005000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[22.005,54.00883]}}\n,{\"name\":\"Sone\",\"id\":\"23667\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"17100\",\"fall\":\"Fell\",\"year\":\"1866-01-01T00:00:00.000\",\"reclat\":\"35.166670\",\"reclong\":\"135.333330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[135.33333,35.16667]}}\n,{\"name\":\"Songyuan\",\"id\":\"23668\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"36900\",\"fall\":\"Fell\",\"year\":\"1993-01-01T00:00:00.000\",\"reclat\":\"45.250000\",\"reclong\":\"125.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[125,45.25]}}\n,{\"name\":\"Sopot\",\"id\":\"23670\",\"nametype\":\"Valid\",\"recclass\":\"OC\",\"mass\":\"958\",\"fall\":\"Fell\",\"year\":\"1927-01-01T00:00:00.000\",\"reclat\":\"44.416670\",\"reclong\":\"23.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23.5,44.41667]}}\n,{\"name\":\"Soroti\",\"id\":\"23671\",\"nametype\":\"Valid\",\"recclass\":\"Iron, ungrouped\",\"mass\":\"2050\",\"fall\":\"Fell\",\"year\":\"1945-01-01T00:00:00.000\",\"reclat\":\"1.700000\",\"reclong\":\"33.633330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[33.63333,1.7]}}\n,{\"name\":\"St. Caprais-de-Quinsac\",\"id\":\"23081\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"360\",\"fall\":\"Fell\",\"year\":\"1883-01-01T00:00:00.000\",\"reclat\":\"44.750000\",\"reclong\":\"0.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[0.05,44.75]}}\n,{\"name\":\"St. Christophe-la-Chartreuse\",\"id\":\"23082\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"5500\",\"fall\":\"Fell\",\"year\":\"1841-01-01T00:00:00.000\",\"reclat\":\"46.950000\",\"reclong\":\"-1.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.5,46.95]}}\n,{\"name\":\"St. Denis Westrem\",\"id\":\"23083\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"700\",\"fall\":\"Fell\",\"year\":\"1855-01-01T00:00:00.000\",\"reclat\":\"51.050000\",\"reclong\":\"3.750000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.75,51.05]}}\n,{\"name\":\"St. Germain-du-Pinel\",\"id\":\"23087\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"4000\",\"fall\":\"Fell\",\"year\":\"1890-01-01T00:00:00.000\",\"reclat\":\"48.016670\",\"reclong\":\"-1.150000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-1.15,48.01667]}}\n,{\"name\":\"St. Louis\",\"id\":\"23089\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"38.700000\",\"reclong\":\"-90.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-90.23333,38.7]},\":@computed_region_cbhk_fwbd\":\"18\",\":@computed_region_nnqa_25f4\":\"2223\"}\n,{\"name\":\"St. Mark's\",\"id\":\"23090\",\"nametype\":\"Valid\",\"recclass\":\"EH5\",\"mass\":\"13780\",\"fall\":\"Fell\",\"year\":\"1903-01-01T00:00:00.000\",\"reclat\":\"-32.016670\",\"reclong\":\"27.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.41667,-32.01667]}}\n,{\"name\":\"St. Mary's County\",\"id\":\"23091\",\"nametype\":\"Valid\",\"recclass\":\"LL3.3\",\"mass\":\"24.3\",\"fall\":\"Fell\",\"year\":\"1919-01-01T00:00:00.000\",\"reclat\":\"38.166670\",\"reclong\":\"-76.383330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-76.38333,38.16667]},\":@computed_region_cbhk_fwbd\":\"45\",\":@computed_region_nnqa_25f4\":\"424\"}\n,{\"name\":\"St. Mesmin\",\"id\":\"23092\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"8300\",\"fall\":\"Fell\",\"year\":\"1866-01-01T00:00:00.000\",\"reclat\":\"48.450000\",\"reclong\":\"3.933330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3.93333,48.45]}}\n,{\"name\":\"St. Michel\",\"id\":\"23093\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"17000\",\"fall\":\"Fell\",\"year\":\"1910-01-01T00:00:00.000\",\"reclat\":\"61.650000\",\"reclong\":\"27.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.2,61.65]}}\n,{\"name\":\"St.-Chinian\",\"id\":\"23097\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"134.30000000000001\",\"fall\":\"Fell\",\"year\":\"1959-01-01T00:00:00.000\",\"reclat\":\"43.433330\",\"reclong\":\"2.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[2.95,43.43333]}}\n,{\"name\":\"Ställdalen\",\"id\":\"23712\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"34000\",\"fall\":\"Fell\",\"year\":\"1876-01-01T00:00:00.000\",\"reclat\":\"59.933330\",\"reclong\":\"14.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.95,59.93333]}}\n,{\"name\":\"Stannern\",\"id\":\"23713\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-mmict\",\"mass\":\"52000\",\"fall\":\"Fell\",\"year\":\"1808-01-01T00:00:00.000\",\"reclat\":\"49.283330\",\"reclong\":\"15.566670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[15.56667,49.28333]}}\n,{\"name\":\"Stavropol\",\"id\":\"23717\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"1500\",\"fall\":\"Fell\",\"year\":\"1857-01-01T00:00:00.000\",\"reclat\":\"45.050000\",\"reclong\":\"41.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[41.98333,45.05]}}\n,{\"name\":\"Ste. Marguerite\",\"id\":\"23099\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"4960\",\"fall\":\"Fell\",\"year\":\"1962-01-01T00:00:00.000\",\"reclat\":\"50.766670\",\"reclong\":\"3.000000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[3,50.76667]}}\n,{\"name\":\"Sterlitamak\",\"id\":\"23724\",\"nametype\":\"Valid\",\"recclass\":\"Iron, IIIAB\",\"mass\":\"325000\",\"fall\":\"Fell\",\"year\":\"1990-01-01T00:00:00.000\",\"reclat\":\"53.666670\",\"reclong\":\"55.983330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[55.98333,53.66667]}}\n,{\"name\":\"Stolzenau\",\"id\":\"23726\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"fall\":\"Fell\",\"year\":\"1647-01-01T00:00:00.000\",\"reclat\":\"52.533330\",\"reclong\":\"9.050000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[9.05,52.53333]}}\n,{\"name\":\"Stratford\",\"id\":\"23728\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"50\",\"fall\":\"Fell\",\"year\":\"1974-01-01T00:00:00.000\",\"reclat\":\"41.200000\",\"reclong\":\"-73.133330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-73.13333,41.2]},\":@computed_region_cbhk_fwbd\":\"24\",\":@computed_region_nnqa_25f4\":\"1040\"}\n,{\"name\":\"Strathmore\",\"id\":\"23729\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"13400\",\"fall\":\"Fell\",\"year\":\"1917-01-01T00:00:00.000\",\"reclat\":\"56.583330\",\"reclong\":\"-3.250000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.25,56.58333]}}\n,{\"name\":\"Stretchleigh\",\"id\":\"23732\",\"nametype\":\"Valid\",\"recclass\":\"Stone-uncl\",\"mass\":\"10400\",\"fall\":\"Fell\",\"year\":\"1623-01-01T00:00:00.000\",\"reclat\":\"50.383330\",\"reclong\":\"-3.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-3.95,50.38333]}}\n,{\"name\":\"St-Robert\",\"id\":\"23733\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"25400\",\"fall\":\"Fell\",\"year\":\"1994-01-01T00:00:00.000\",\"reclat\":\"45.968610\",\"reclong\":\"-72.978060\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-72.97806,45.96861]}}\n,{\"name\":\"Success\",\"id\":\"23736\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3500\",\"fall\":\"Fell\",\"year\":\"1924-01-01T00:00:00.000\",\"reclat\":\"36.483330\",\"reclong\":\"-90.666670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-90.66667,36.48333]},\":@computed_region_cbhk_fwbd\":\"15\",\":@computed_region_nnqa_25f4\":\"955\"}\n,{\"name\":\"Suchy Dul\",\"id\":\"23737\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"815.3\",\"fall\":\"Fell\",\"year\":\"1969-01-01T00:00:00.000\",\"reclat\":\"50.538060\",\"reclong\":\"16.263330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[16.26333,50.53806]}}\n,{\"name\":\"Suizhou\",\"id\":\"23738\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"260000\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"31.616670\",\"reclong\":\"113.466670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[113.46667,31.61667]}}\n,{\"name\":\"Sulagiri\",\"id\":\"48951\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"110000\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"12.666670\",\"reclong\":\"78.033330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[78.03333,12.66667]}}\n,{\"name\":\"Sultanpur\",\"id\":\"23741\",\"nametype\":\"Valid\",\"recclass\":\"L/LL6\",\"mass\":\"1710.5\",\"fall\":\"Fell\",\"year\":\"1916-01-01T00:00:00.000\",\"reclat\":\"25.933330\",\"reclong\":\"84.283330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.28333,25.93333]}}\n,{\"name\":\"Sungach\",\"id\":\"23745\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"637\",\"fall\":\"Fell\",\"year\":\"1935-01-01T00:00:00.000\",\"reclat\":\"44.866670\",\"reclong\":\"133.166670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[133.16667,44.86667]}}\n,{\"name\":\"Supuhee\",\"id\":\"23760\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"7235\",\"fall\":\"Fell\",\"year\":\"1865-01-01T00:00:00.000\",\"reclat\":\"26.716670\",\"reclong\":\"84.216670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[84.21667,26.71667]}}\n,{\"name\":\"Sutter's Mill\",\"id\":\"55529\",\"nametype\":\"Valid\",\"recclass\":\"C\",\"mass\":\"992.5\",\"fall\":\"Fell\",\"year\":\"2012-01-01T00:00:00.000\",\"reclat\":\"38.803890\",\"reclong\":\"-120.908060\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-120.90806,38.80389]},\":@computed_region_cbhk_fwbd\":\"8\",\":@computed_region_nnqa_25f4\":\"1187\"}\n,{\"name\":\"Sylacauga\",\"id\":\"23773\",\"nametype\":\"Valid\",\"recclass\":\"H4\",\"mass\":\"5560\",\"fall\":\"Fell\",\"year\":\"1954-01-01T00:00:00.000\",\"reclat\":\"33.188360\",\"reclong\":\"-86.294500\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-86.2945,33.18836]},\":@computed_region_cbhk_fwbd\":\"29\",\":@computed_region_nnqa_25f4\":\"1637\"}\n,{\"name\":\"Tabor\",\"id\":\"23776\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"7540\",\"fall\":\"Fell\",\"year\":\"1753-01-01T00:00:00.000\",\"reclat\":\"49.400000\",\"reclong\":\"14.650000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[14.65,49.4]}}\n,{\"name\":\"Tadjera\",\"id\":\"23778\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"9000\",\"fall\":\"Fell\",\"year\":\"1867-01-01T00:00:00.000\",\"reclat\":\"36.183330\",\"reclong\":\"5.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[5.41667,36.18333]}}\n,{\"name\":\"Tagish Lake\",\"id\":\"23782\",\"nametype\":\"Valid\",\"recclass\":\"C2-ung\",\"mass\":\"10000\",\"fall\":\"Fell\",\"year\":\"2000-01-01T00:00:00.000\",\"reclat\":\"59.704440\",\"reclong\":\"-134.201390\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-134.20139,59.70444]}}\n,{\"name\":\"Tahara\",\"id\":\"23784\",\"nametype\":\"Valid\",\"recclass\":\"H4/5\",\"mass\":\"1000\",\"fall\":\"Fell\",\"year\":\"1991-01-01T00:00:00.000\",\"reclat\":\"34.720000\",\"reclong\":\"137.305000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[137.305,34.72]}}\n,{\"name\":\"Takenouchi\",\"id\":\"23789\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"720\",\"fall\":\"Fell\",\"year\":\"1880-01-01T00:00:00.000\",\"reclat\":\"35.383330\",\"reclong\":\"134.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[134.9,35.38333]}}\n,{\"name\":\"Talampaya\",\"id\":\"23791\",\"nametype\":\"Valid\",\"recclass\":\"Eucrite-cm\",\"mass\":\"1421\",\"fall\":\"Fell\",\"year\":\"1995-01-01T00:00:00.000\"}\n,{\"name\":\"Tambakwatu\",\"id\":\"23795\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"10500\",\"fall\":\"Fell\",\"year\":\"1975-01-01T00:00:00.000\",\"reclat\":\"-7.750000\",\"reclong\":\"112.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[112.76667,-7.75]}}\n,{\"name\":\"Tamdakht\",\"id\":\"48691\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"100000\",\"fall\":\"Fell\",\"year\":\"2008-01-01T00:00:00.000\",\"reclat\":\"31.163330\",\"reclong\":\"-7.015000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.015,31.16333]}}\n,{\"name\":\"Tané\",\"id\":\"23801\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"905\",\"fall\":\"Fell\",\"year\":\"1918-01-01T00:00:00.000\",\"reclat\":\"35.433330\",\"reclong\":\"136.233330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[136.23333,35.43333]}}\n,{\"name\":\"Taonan\",\"id\":\"23873\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"3850\",\"fall\":\"Fell\",\"year\":\"1965-01-01T00:00:00.000\",\"reclat\":\"45.400000\",\"reclong\":\"122.900000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[122.9,45.4]}}\n,{\"name\":\"Tatahouine\",\"id\":\"23884\",\"nametype\":\"Valid\",\"recclass\":\"Diogenite\",\"mass\":\"12000\",\"fall\":\"Fell\",\"year\":\"1931-01-01T00:00:00.000\",\"reclat\":\"32.950000\",\"reclong\":\"10.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[10.41667,32.95]}}\n,{\"name\":\"Tathlith\",\"id\":\"23885\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"2500\",\"fall\":\"Fell\",\"year\":\"1967-01-01T00:00:00.000\",\"reclat\":\"19.383330\",\"reclong\":\"43.733330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[43.73333,19.38333]}}\n,{\"name\":\"Tauk\",\"id\":\"23887\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"6000\",\"fall\":\"Fell\",\"year\":\"1929-01-01T00:00:00.000\",\"reclat\":\"35.133330\",\"reclong\":\"44.450000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[44.45,35.13333]}}\n,{\"name\":\"Tauti\",\"id\":\"23888\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"21000\",\"fall\":\"Fell\",\"year\":\"1937-01-01T00:00:00.000\",\"reclat\":\"46.716670\",\"reclong\":\"23.500000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[23.5,46.71667]}}\n,{\"name\":\"Tenham\",\"id\":\"23897\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"160000\",\"fall\":\"Fell\",\"year\":\"1879-01-01T00:00:00.000\",\"reclat\":\"-25.733330\",\"reclong\":\"142.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[142.95,-25.73333]}}\n,{\"name\":\"Tennasilm\",\"id\":\"23898\",\"nametype\":\"Valid\",\"recclass\":\"L4\",\"mass\":\"28500\",\"fall\":\"Fell\",\"year\":\"1872-01-01T00:00:00.000\",\"reclat\":\"58.033330\",\"reclong\":\"26.950000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[26.95,58.03333]}}\n,{\"name\":\"Thal\",\"id\":\"23908\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"342\",\"fall\":\"Fell\",\"year\":\"1950-01-01T00:00:00.000\",\"reclat\":\"33.400000\",\"reclong\":\"70.600000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[70.6,33.4]}}\n,{\"name\":\"Thika\",\"id\":\"54493\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"14200\",\"fall\":\"Fell\",\"year\":\"2011-01-01T00:00:00.000\",\"reclat\":\"-1.002780\",\"reclong\":\"37.150280\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[37.15028,-1.00278]}}\n,{\"name\":\"Thuathe\",\"id\":\"23976\",\"nametype\":\"Valid\",\"recclass\":\"H4/5\",\"mass\":\"45300\",\"fall\":\"Fell\",\"year\":\"2002-01-01T00:00:00.000\",\"reclat\":\"-29.333330\",\"reclong\":\"27.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[27.58333,-29.33333]}}\n,{\"name\":\"Tianzhang\",\"id\":\"23984\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"2232\",\"fall\":\"Fell\",\"year\":\"1986-01-01T00:00:00.000\",\"reclat\":\"32.946670\",\"reclong\":\"118.990000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[118.99,32.94667]}}\n,{\"name\":\"Tieschitz\",\"id\":\"23989\",\"nametype\":\"Valid\",\"recclass\":\"H/L3.6\",\"mass\":\"28000\",\"fall\":\"Fell\",\"year\":\"1878-01-01T00:00:00.000\",\"reclat\":\"49.600000\",\"reclong\":\"17.116670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[17.11667,49.6]}}\n,{\"name\":\"Tilden\",\"id\":\"23998\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"74800\",\"fall\":\"Fell\",\"year\":\"1927-01-01T00:00:00.000\",\"reclat\":\"38.200000\",\"reclong\":\"-89.683330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-89.68333,38.2]},\":@computed_region_cbhk_fwbd\":\"34\",\":@computed_region_nnqa_25f4\":\"1762\"}\n,{\"name\":\"Tillaberi\",\"id\":\"23999\",\"nametype\":\"Valid\",\"recclass\":\"L6\",\"mass\":\"3000\",\"fall\":\"Fell\",\"year\":\"1970-01-01T00:00:00.000\",\"reclat\":\"14.250000\",\"reclong\":\"1.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[1.53333,14.25]}}\n,{\"name\":\"Timochin\",\"id\":\"24004\",\"nametype\":\"Valid\",\"recclass\":\"H5\",\"mass\":\"65500\",\"fall\":\"Fell\",\"year\":\"1807-01-01T00:00:00.000\",\"reclat\":\"54.500000\",\"reclong\":\"35.200000\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[35.2,54.5]}}\n,{\"name\":\"Tirupati\",\"id\":\"24009\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"230\",\"fall\":\"Fell\",\"year\":\"1934-01-01T00:00:00.000\",\"reclat\":\"13.633330\",\"reclong\":\"79.416670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[79.41667,13.63333]}}\n,{\"name\":\"Tissint\",\"id\":\"54823\",\"nametype\":\"Valid\",\"recclass\":\"Martian (shergottite)\",\"mass\":\"7000\",\"fall\":\"Fell\",\"year\":\"2011-01-01T00:00:00.000\",\"reclat\":\"29.481950\",\"reclong\":\"-7.611230\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[-7.61123,29.48195]}}\n,{\"name\":\"Tjabe\",\"id\":\"24011\",\"nametype\":\"Valid\",\"recclass\":\"H6\",\"mass\":\"20000\",\"fall\":\"Fell\",\"year\":\"1869-01-01T00:00:00.000\",\"reclat\":\"-7.083330\",\"reclong\":\"111.533330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[111.53333,-7.08333]}}\n,{\"name\":\"Tjerebon\",\"id\":\"24012\",\"nametype\":\"Valid\",\"recclass\":\"L5\",\"mass\":\"16500\",\"fall\":\"Fell\",\"year\":\"1922-01-01T00:00:00.000\",\"reclat\":\"-6.666670\",\"reclong\":\"106.583330\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[106.58333,-6.66667]}}\n,{\"name\":\"Tomakovka\",\"id\":\"24019\",\"nametype\":\"Valid\",\"recclass\":\"LL6\",\"mass\":\"600\",\"fall\":\"Fell\",\"year\":\"1905-01-01T00:00:00.000\",\"reclat\":\"47.850000\",\"reclong\":\"34.766670\",\"geolocation\":{\"type\":\"Point\",\"coordinates\":[34.76667,47.85]}}]\n"
  },
  {
    "path": "tests/corpus/pokedex.json",
    "content": "{\n  \"pokemon\": [{\n    \"id\": 1,\n    \"num\": \"001\",\n    \"name\": \"Bulbasaur\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/001.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"0.71 m\",\n    \"weight\": \"6.9 kg\",\n    \"candy\": \"Bulbasaur Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 0.69,\n    \"avg_spawns\": 69,\n    \"spawn_time\": \"20:00\",\n    \"multipliers\": [1.58],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"002\",\n      \"name\": \"Ivysaur\"\n    }, {\n      \"num\": \"003\",\n      \"name\": \"Venusaur\"\n    }]\n  }, {\n    \"id\": 2,\n    \"num\": \"002\",\n    \"name\": \"Ivysaur\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/002.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"13.0 kg\",\n    \"candy\": \"Bulbasaur Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.042,\n    \"avg_spawns\": 4.2,\n    \"spawn_time\": \"07:00\",\n    \"multipliers\": [\n      1.2,\n      1.6\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"001\",\n      \"name\": \"Bulbasaur\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"003\",\n      \"name\": \"Venusaur\"\n    }]\n  }, {\n    \"id\": 3,\n    \"num\": \"003\",\n    \"name\": \"Venusaur\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/003.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"2.01 m\",\n    \"weight\": \"100.0 kg\",\n    \"candy\": \"Bulbasaur Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.017,\n    \"avg_spawns\": 1.7,\n    \"spawn_time\": \"11:30\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"001\",\n      \"name\": \"Bulbasaur\"\n    }, {\n      \"num\": \"002\",\n      \"name\": \"Ivysaur\"\n    }]\n  }, {\n    \"id\": 4,\n    \"num\": \"004\",\n    \"name\": \"Charmander\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/004.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"8.5 kg\",\n    \"candy\": \"Charmander Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 0.253,\n    \"avg_spawns\": 25.3,\n    \"spawn_time\": \"08:45\",\n    \"multipliers\": [1.65],\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"005\",\n      \"name\": \"Charmeleon\"\n    }, {\n      \"num\": \"006\",\n      \"name\": \"Charizard\"\n    }]\n  }, {\n    \"id\": 5,\n    \"num\": \"005\",\n    \"name\": \"Charmeleon\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/005.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"19.0 kg\",\n    \"candy\": \"Charmander Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.012,\n    \"avg_spawns\": 1.2,\n    \"spawn_time\": \"19:00\",\n    \"multipliers\": [1.79],\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"004\",\n      \"name\": \"Charmander\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"006\",\n      \"name\": \"Charizard\"\n    }]\n  }, {\n    \"id\": 6,\n    \"num\": \"006\",\n    \"name\": \"Charizard\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/006.png\",\n    \"type\": [\n      \"Fire\",\n      \"Flying\"\n    ],\n    \"height\": \"1.70 m\",\n    \"weight\": \"90.5 kg\",\n    \"candy\": \"Charmander Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0031,\n    \"avg_spawns\": 0.31,\n    \"spawn_time\": \"13:34\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"004\",\n      \"name\": \"Charmander\"\n    }, {\n      \"num\": \"005\",\n      \"name\": \"Charmeleon\"\n    }]\n  }, {\n    \"id\": 7,\n    \"num\": \"007\",\n    \"name\": \"Squirtle\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/007.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"9.0 kg\",\n    \"candy\": \"Squirtle Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 0.58,\n    \"avg_spawns\": 58,\n    \"spawn_time\": \"04:25\",\n    \"multipliers\": [2.1],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"008\",\n      \"name\": \"Wartortle\"\n    }, {\n      \"num\": \"009\",\n      \"name\": \"Blastoise\"\n    }]\n  }, {\n    \"id\": 8,\n    \"num\": \"008\",\n    \"name\": \"Wartortle\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/008.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"22.5 kg\",\n    \"candy\": \"Squirtle Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.034,\n    \"avg_spawns\": 3.4,\n    \"spawn_time\": \"07:02\",\n    \"multipliers\": [1.4],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"007\",\n      \"name\": \"Squirtle\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"009\",\n      \"name\": \"Blastoise\"\n    }]\n  }, {\n    \"id\": 9,\n    \"num\": \"009\",\n    \"name\": \"Blastoise\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/009.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"85.5 kg\",\n    \"candy\": \"Squirtle Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0067,\n    \"avg_spawns\": 0.67,\n    \"spawn_time\": \"00:06\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"007\",\n      \"name\": \"Squirtle\"\n    }, {\n      \"num\": \"008\",\n      \"name\": \"Wartortle\"\n    }]\n  }, {\n    \"id\": 10,\n    \"num\": \"010\",\n    \"name\": \"Caterpie\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/010.png\",\n    \"type\": [\n      \"Bug\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"2.9 kg\",\n    \"candy\": \"Caterpie Candy\",\n    \"candy_count\": 12,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 3.032,\n    \"avg_spawns\": 303.2,\n    \"spawn_time\": \"16:35\",\n    \"multipliers\": [1.05],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"011\",\n      \"name\": \"Metapod\"\n    }, {\n      \"num\": \"012\",\n      \"name\": \"Butterfree\"\n    }]\n  }, {\n    \"id\": 11,\n    \"num\": \"011\",\n    \"name\": \"Metapod\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/011.png\",\n    \"type\": [\n      \"Bug\"\n    ],\n    \"height\": \"0.71 m\",\n    \"weight\": \"9.9 kg\",\n    \"candy\": \"Caterpie Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.187,\n    \"avg_spawns\": 18.7,\n    \"spawn_time\": \"02:11\",\n    \"multipliers\": [\n      3.55,\n      3.79\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"010\",\n      \"name\": \"Caterpie\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"012\",\n      \"name\": \"Butterfree\"\n    }]\n  }, {\n    \"id\": 12,\n    \"num\": \"012\",\n    \"name\": \"Butterfree\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/012.png\",\n    \"type\": [\n      \"Bug\",\n      \"Flying\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"32.0 kg\",\n    \"candy\": \"Caterpie Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.022,\n    \"avg_spawns\": 2.2,\n    \"spawn_time\": \"05:23\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Electric\",\n      \"Ice\",\n      \"Flying\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"010\",\n      \"name\": \"Caterpie\"\n    }, {\n      \"num\": \"011\",\n      \"name\": \"Metapod\"\n    }]\n  }, {\n    \"id\": 13,\n    \"num\": \"013\",\n    \"name\": \"Weedle\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/013.png\",\n    \"type\": [\n      \"Bug\",\n      \"Poison\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"3.2 kg\",\n    \"candy\": \"Weedle Candy\",\n    \"candy_count\": 12,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 7.12,\n    \"avg_spawns\": 712,\n    \"spawn_time\": \"02:21\",\n    \"multipliers\": [\n      1.01,\n      1.09\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"014\",\n      \"name\": \"Kakuna\"\n    }, {\n      \"num\": \"015\",\n      \"name\": \"Beedrill\"\n    }]\n  }, {\n    \"id\": 14,\n    \"num\": \"014\",\n    \"name\": \"Kakuna\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/014.png\",\n    \"type\": [\n      \"Bug\",\n      \"Poison\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"10.0 kg\",\n    \"candy\": \"Weedle Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.44,\n    \"avg_spawns\": 44,\n    \"spawn_time\": \"02:30\",\n    \"multipliers\": [\n      3.01,\n      3.41\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"013\",\n      \"name\": \"Weedle\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"015\",\n      \"name\": \"Beedrill\"\n    }]\n  }, {\n    \"id\": 15,\n    \"num\": \"015\",\n    \"name\": \"Beedrill\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/015.png\",\n    \"type\": [\n      \"Bug\",\n      \"Poison\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"29.5 kg\",\n    \"candy\": \"Weedle Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.051,\n    \"avg_spawns\": 5.1,\n    \"spawn_time\": \"04:50\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"013\",\n      \"name\": \"Weedle\"\n    }, {\n      \"num\": \"014\",\n      \"name\": \"Kakuna\"\n    }]\n  }, {\n    \"id\": 16,\n    \"num\": \"016\",\n    \"name\": \"Pidgey\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/016.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"1.8 kg\",\n    \"candy\": \"Pidgey Candy\",\n    \"candy_count\": 12,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 15.98,\n    \"avg_spawns\": 1.598,\n    \"spawn_time\": \"01:34\",\n    \"multipliers\": [\n      1.71,\n      1.92\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"017\",\n      \"name\": \"Pidgeotto\"\n    }, {\n      \"num\": \"018\",\n      \"name\": \"Pidgeot\"\n    }]\n  }, {\n    \"id\": 17,\n    \"num\": \"017\",\n    \"name\": \"Pidgeotto\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/017.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"Pidgey Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 1.02,\n    \"avg_spawns\": 102,\n    \"spawn_time\": \"01:30\",\n    \"multipliers\": [1.79],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"016\",\n      \"name\": \"Pidgey\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"018\",\n      \"name\": \"Pidgeot\"\n    }]\n  }, {\n    \"id\": 18,\n    \"num\": \"018\",\n    \"name\": \"Pidgeot\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/018.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"39.5 kg\",\n    \"candy\": \"Pidgey Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.13,\n    \"avg_spawns\": 13,\n    \"spawn_time\": \"01:50\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"016\",\n      \"name\": \"Pidgey\"\n    }, {\n      \"num\": \"017\",\n      \"name\": \"Pidgeotto\"\n    }]\n  }, {\n    \"id\": 19,\n    \"num\": \"019\",\n    \"name\": \"Rattata\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/019.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"3.5 kg\",\n    \"candy\": \"Rattata Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 13.05,\n    \"avg_spawns\": 1.305,\n    \"spawn_time\": \"01:55\",\n    \"multipliers\": [\n      2.55,\n      2.73\n    ],\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"020\",\n      \"name\": \"Raticate\"\n    }]\n  }, {\n    \"id\": 20,\n    \"num\": \"020\",\n    \"name\": \"Raticate\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/020.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.71 m\",\n    \"weight\": \"18.5 kg\",\n    \"candy\": \"Rattata Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.41,\n    \"avg_spawns\": 41,\n    \"spawn_time\": \"01:56\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"019\",\n      \"name\": \"Rattata\"\n    }]\n  }, {\n    \"id\": 21,\n    \"num\": \"021\",\n    \"name\": \"Spearow\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/021.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"2.0 kg\",\n    \"candy\": \"Spearow Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 4.73,\n    \"avg_spawns\": 473,\n    \"spawn_time\": \"12:25\",\n    \"multipliers\": [\n      2.66,\n      2.68\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"022\",\n      \"name\": \"Fearow\"\n    }]\n  }, {\n    \"id\": 22,\n    \"num\": \"022\",\n    \"name\": \"Fearow\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/022.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"38.0 kg\",\n    \"candy\": \"Spearow Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.15,\n    \"avg_spawns\": 15,\n    \"spawn_time\": \"01:11\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"021\",\n      \"name\": \"Spearow\"\n    }]\n  }, {\n    \"id\": 23,\n    \"num\": \"023\",\n    \"name\": \"Ekans\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/023.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"2.01 m\",\n    \"weight\": \"6.9 kg\",\n    \"candy\": \"Ekans Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.27,\n    \"avg_spawns\": 227,\n    \"spawn_time\": \"12:20\",\n    \"multipliers\": [\n      2.21,\n      2.27\n    ],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"024\",\n      \"name\": \"Arbok\"\n    }]\n  }, {\n    \"id\": 24,\n    \"num\": \"024\",\n    \"name\": \"Arbok\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/024.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"3.51 m\",\n    \"weight\": \"65.0 kg\",\n    \"candy\": \"Ekans Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.072,\n    \"avg_spawns\": 7.2,\n    \"spawn_time\": \"01:50\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"023\",\n      \"name\": \"Ekans\"\n    }]\n  }, {\n    \"id\": 25,\n    \"num\": \"025\",\n    \"name\": \"Pikachu\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/025.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"6.0 kg\",\n    \"candy\": \"Pikachu Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 0.21,\n    \"avg_spawns\": 21,\n    \"spawn_time\": \"04:00\",\n    \"multipliers\": [2.34],\n    \"weaknesses\": [\n      \"Ground\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"026\",\n      \"name\": \"Raichu\"\n    }]\n  }, {\n    \"id\": 26,\n    \"num\": \"026\",\n    \"name\": \"Raichu\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/026.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"Pikachu Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0076,\n    \"avg_spawns\": 0.76,\n    \"spawn_time\": \"23:58\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"025\",\n      \"name\": \"Pikachu\"\n    }]\n  }, {\n    \"id\": 27,\n    \"num\": \"027\",\n    \"name\": \"Sandshrew\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/027.png\",\n    \"type\": [\n      \"Ground\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"12.0 kg\",\n    \"candy\": \"Sandshrew Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.11,\n    \"avg_spawns\": 111,\n    \"spawn_time\": \"01:58\",\n    \"multipliers\": [2.45],\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"028\",\n      \"name\": \"Sandslash\"\n    }]\n  }, {\n    \"id\": 28,\n    \"num\": \"028\",\n    \"name\": \"Sandslash\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/028.png\",\n    \"type\": [\n      \"Ground\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"29.5 kg\",\n    \"candy\": \"Sandshrew Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.037,\n    \"avg_spawns\": 3.7,\n    \"spawn_time\": \"12:34\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"027\",\n      \"name\": \"Sandshrew\"\n    }]\n  }, {\n    \"id\": 29,\n    \"num\": \"029\",\n    \"name\": \"Nidoran ♀ (Female)\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/029.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"7.0 kg\",\n    \"candy\": \"Nidoran ♀ (Female) Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.38,\n    \"avg_spawns\": 138,\n    \"spawn_time\": \"01:51\",\n    \"multipliers\": [\n      1.63,\n      2.48\n    ],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"030\",\n      \"name\": \"Nidorina\"\n    }, {\n      \"num\": \"031\",\n      \"name\": \"Nidoqueen\"\n    }]\n  }, {\n    \"id\": 30,\n    \"num\": \"030\",\n    \"name\": \"Nidorina\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/030.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"20.0 kg\",\n    \"candy\": \"Nidoran ♀ (Female) Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.088,\n    \"avg_spawns\": 8.8,\n    \"spawn_time\": \"07:22\",\n    \"multipliers\": [\n      1.83,\n      2.48\n    ],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"029\",\n      \"name\": \"Nidoran(Female)\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"031\",\n      \"name\": \"Nidoqueen\"\n    }]\n  }, {\n    \"id\": 31,\n    \"num\": \"031\",\n    \"name\": \"Nidoqueen\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/031.png\",\n    \"type\": [\n      \"Poison\",\n      \"Ground\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"60.0 kg\",\n    \"candy\": \"Nidoran ♀ (Female) Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.012,\n    \"avg_spawns\": 1.2,\n    \"spawn_time\": \"12:35\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ice\",\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"029\",\n      \"name\": \"Nidoran(Female)\"\n    }, {\n      \"num\": \"030\",\n      \"name\": \"Nidorina\"\n    }]\n  }, {\n    \"id\": 32,\n    \"num\": \"032\",\n    \"name\": \"Nidoran ♂ (Male)\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/032.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"9.0 kg\",\n    \"candy\": \"Nidoran ♂ (Male) Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.31,\n    \"avg_spawns\": 131,\n    \"spawn_time\": \"01:12\",\n    \"multipliers\": [\n      1.64,\n      1.7\n    ],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"033\",\n      \"name\": \"Nidorino\"\n    }, {\n      \"num\": \"034\",\n      \"name\": \"Nidoking\"\n    }]\n  }, {\n    \"id\": 33,\n    \"num\": \"033\",\n    \"name\": \"Nidorino\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/033.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"0.89 m\",\n    \"weight\": \"19.5 kg\",\n    \"candy\": \"Nidoran ♂ (Male) Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.083,\n    \"avg_spawns\": 8.3,\n    \"spawn_time\": \"09:02\",\n    \"multipliers\": [1.83],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"032\",\n      \"name\": \"Nidoran(Male)\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"034\",\n      \"name\": \"Nidoking\"\n    }]\n  }, {\n    \"id\": 34,\n    \"num\": \"034\",\n    \"name\": \"Nidoking\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/034.png\",\n    \"type\": [\n      \"Poison\",\n      \"Ground\"\n    ],\n    \"height\": \"1.40 m\",\n    \"weight\": \"62.0 kg\",\n    \"candy\": \"Nidoran ♂ (Male) Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.017,\n    \"avg_spawns\": 1.7,\n    \"spawn_time\": \"12:16\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ice\",\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"032\",\n      \"name\": \"Nidoran(Male)\"\n    }, {\n      \"num\": \"033\",\n      \"name\": \"Nidorino\"\n    }]\n  }, {\n    \"id\": 35,\n    \"num\": \"035\",\n    \"name\": \"Clefairy\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/035.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"7.5 kg\",\n    \"candy\": \"Clefairy Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 0.92,\n    \"avg_spawns\": 92,\n    \"spawn_time\": \"03:30\",\n    \"multipliers\": [\n      2.03,\n      2.14\n    ],\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"036\",\n      \"name\": \"Clefable\"\n    }]\n  }, {\n    \"id\": 36,\n    \"num\": \"036\",\n    \"name\": \"Clefable\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/036.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"40.0 kg\",\n    \"candy\": \"Clefairy Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.012,\n    \"avg_spawns\": 1.2,\n    \"spawn_time\": \"03:29\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"035\",\n      \"name\": \"Clefairy\"\n    }]\n  }, {\n    \"id\": 37,\n    \"num\": \"037\",\n    \"name\": \"Vulpix\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/037.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"9.9 kg\",\n    \"candy\": \"Vulpix Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.22,\n    \"avg_spawns\": 22,\n    \"spawn_time\": \"13:43\",\n    \"multipliers\": [\n      2.74,\n      2.81\n    ],\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"038\",\n      \"name\": \"Ninetales\"\n    }]\n  }, {\n    \"id\": 38,\n    \"num\": \"038\",\n    \"name\": \"Ninetales\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/038.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"19.9 kg\",\n    \"candy\": \"Vulpix Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0077,\n    \"avg_spawns\": 0.77,\n    \"spawn_time\": \"01:32\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"037\",\n      \"name\": \"Vulpix\"\n    }]\n  }, {\n    \"id\": 39,\n    \"num\": \"039\",\n    \"name\": \"Jigglypuff\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/039.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"5.5 kg\",\n    \"candy\": \"Jigglypuff Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 0.39,\n    \"avg_spawns\": 39,\n    \"spawn_time\": \"08:46\",\n    \"multipliers\": [1.85],\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"040\",\n      \"name\": \"Wigglytuff\"\n    }]\n  }, {\n    \"id\": 40,\n    \"num\": \"040\",\n    \"name\": \"Wigglytuff\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/040.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"12.0 kg\",\n    \"candy\": \"Jigglypuff Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.018,\n    \"avg_spawns\": 1.8,\n    \"spawn_time\": \"12:28\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"039\",\n      \"name\": \"Jigglypuff\"\n    }]\n  }, {\n    \"id\": 41,\n    \"num\": \"041\",\n    \"name\": \"Zubat\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/041.png\",\n    \"type\": [\n      \"Poison\",\n      \"Flying\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"7.5 kg\",\n    \"candy\": \"Zubat Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 6.52,\n    \"avg_spawns\": 652,\n    \"spawn_time\": \"12:28\",\n    \"multipliers\": [\n      2.6,\n      3.67\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Ice\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"042\",\n      \"name\": \"Golbat\"\n    }]\n  }, {\n    \"id\": 42,\n    \"num\": \"042\",\n    \"name\": \"Golbat\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/042.png\",\n    \"type\": [\n      \"Poison\",\n      \"Flying\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"55.0 kg\",\n    \"candy\": \"Zubat Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.42,\n    \"avg_spawns\": 42,\n    \"spawn_time\": \"02:15\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Ice\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"041\",\n      \"name\": \"Zubat\"\n    }]\n  }, {\n    \"id\": 43,\n    \"num\": \"043\",\n    \"name\": \"Oddish\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/043.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"5.4 kg\",\n    \"candy\": \"Oddish Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.02,\n    \"avg_spawns\": 102,\n    \"spawn_time\": \"03:58\",\n    \"multipliers\": [1.5],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"044\",\n      \"name\": \"Gloom\"\n    }, {\n      \"num\": \"045\",\n      \"name\": \"Vileplume\"\n    }]\n  }, {\n    \"id\": 44,\n    \"num\": \"044\",\n    \"name\": \"Gloom\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/044.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"8.6 kg\",\n    \"candy\": \"Oddish Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.064,\n    \"avg_spawns\": 6.4,\n    \"spawn_time\": \"11:33\",\n    \"multipliers\": [1.49],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"043\",\n      \"name\": \"Oddish\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"045\",\n      \"name\": \"Vileplume\"\n    }]\n  }, {\n    \"id\": 45,\n    \"num\": \"045\",\n    \"name\": \"Vileplume\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/045.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"18.6 kg\",\n    \"candy\": \"Oddish Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0097,\n    \"avg_spawns\": 0.97,\n    \"spawn_time\": \"23:58\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"043\",\n      \"name\": \"Oddish\"\n    }, {\n      \"num\": \"044\",\n      \"name\": \"Gloom\"\n    }]\n  }, {\n    \"id\": 46,\n    \"num\": \"046\",\n    \"name\": \"Paras\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/046.png\",\n    \"type\": [\n      \"Bug\",\n      \"Grass\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"5.4 kg\",\n    \"candy\": \"Paras Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.36,\n    \"avg_spawns\": 236,\n    \"spawn_time\": \"01:42\",\n    \"multipliers\": [2.02],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Poison\",\n      \"Flying\",\n      \"Bug\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"047\",\n      \"name\": \"Parasect\"\n    }]\n  }, {\n    \"id\": 47,\n    \"num\": \"047\",\n    \"name\": \"Parasect\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/047.png\",\n    \"type\": [\n      \"Bug\",\n      \"Grass\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"29.5 kg\",\n    \"candy\": \"Paras Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.074,\n    \"avg_spawns\": 7.4,\n    \"spawn_time\": \"01:22\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Poison\",\n      \"Flying\",\n      \"Bug\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"046\",\n      \"name\": \"Paras\"\n    }]\n  }, {\n    \"id\": 48,\n    \"num\": \"048\",\n    \"name\": \"Venonat\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/048.png\",\n    \"type\": [\n      \"Bug\",\n      \"Poison\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"Venonat Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.28,\n    \"avg_spawns\": 228,\n    \"spawn_time\": \"02:31\",\n    \"multipliers\": [\n      1.86,\n      1.9\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"049\",\n      \"name\": \"Venomoth\"\n    }]\n  }, {\n    \"id\": 49,\n    \"num\": \"049\",\n    \"name\": \"Venomoth\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/049.png\",\n    \"type\": [\n      \"Bug\",\n      \"Poison\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"12.5 kg\",\n    \"candy\": \"Venonat Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.072,\n    \"avg_spawns\": 7.2,\n    \"spawn_time\": \"23:40\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Psychic\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"048\",\n      \"name\": \"Venonat\"\n    }]\n  }, {\n    \"id\": 50,\n    \"num\": \"050\",\n    \"name\": \"Diglett\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/050.png\",\n    \"type\": [\n      \"Ground\"\n    ],\n    \"height\": \"0.20 m\",\n    \"weight\": \"0.8 kg\",\n    \"candy\": \"Diglett Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.40,\n    \"avg_spawns\": 40,\n    \"spawn_time\": \"02:22\",\n    \"multipliers\": [2.69],\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"051\",\n      \"name\": \"Dugtrio\"\n    }]\n  }, {\n    \"id\": 51,\n    \"num\": \"051\",\n    \"name\": \"Dugtrio\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/051.png\",\n    \"type\": [\n      \"Ground\"\n    ],\n    \"height\": \"0.71 m\",\n    \"weight\": \"33.3 kg\",\n    \"candy\": \"Dugtrio\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.014,\n    \"avg_spawns\": 1.4,\n    \"spawn_time\": \"12:37\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"050\",\n      \"name\": \"Diglett\"\n    }]\n  }, {\n    \"id\": 52,\n    \"num\": \"052\",\n    \"name\": \"Meowth\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/052.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"4.2 kg\",\n    \"candy\": \"Meowth Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.86,\n    \"avg_spawns\": 86,\n    \"spawn_time\": \"02:54\",\n    \"multipliers\": [1.98],\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"053\",\n      \"name\": \"Persian\"\n    }]\n  }, {\n    \"id\": 53,\n    \"num\": \"053\",\n    \"name\": \"Persian\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/053.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"32.0 kg\",\n    \"candy\": \"Meowth Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.022,\n    \"avg_spawns\": 2.2,\n    \"spawn_time\": \"02:44\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"052\",\n      \"name\": \"Meowth\"\n    }]\n  }, {\n    \"id\": 54,\n    \"num\": \"054\",\n    \"name\": \"Psyduck\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/054.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"19.6 kg\",\n    \"candy\": \"Psyduck Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.54,\n    \"avg_spawns\": 254,\n    \"spawn_time\": \"03:41\",\n    \"multipliers\": [2.27],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"055\",\n      \"name\": \"Golduck\"\n    }]\n  }, {\n    \"id\": 55,\n    \"num\": \"055\",\n    \"name\": \"Golduck\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/055.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"1.70 m\",\n    \"weight\": \"76.6 kg\",\n    \"candy\": \"Psyduck Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.087,\n    \"avg_spawns\": 8.7,\n    \"spawn_time\": \"23:06\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"054\",\n      \"name\": \"Psyduck\"\n    }]\n  }, {\n    \"id\": 56,\n    \"num\": \"056\",\n    \"name\": \"Mankey\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/056.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"28.0 kg\",\n    \"candy\": \"Mankey Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.92,\n    \"avg_spawns\": 92,\n    \"spawn_time\": \"12:52\",\n    \"multipliers\": [\n      2.17,\n      2.28\n    ],\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"057\",\n      \"name\": \"Primeape\"\n    }]\n  }, {\n    \"id\": 57,\n    \"num\": \"057\",\n    \"name\": \"Primeape\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/057.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"32.0 kg\",\n    \"candy\": \"Mankey Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.031,\n    \"avg_spawns\": 3.1,\n    \"spawn_time\": \"12:33\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"056\",\n      \"name\": \"Mankey\"\n    }]\n  }, {\n    \"id\": 58,\n    \"num\": \"058\",\n    \"name\": \"Growlithe\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/058.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"0.71 m\",\n    \"weight\": \"19.0 kg\",\n    \"candy\": \"Growlithe Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.92,\n    \"avg_spawns\": 92,\n    \"spawn_time\": \"03:57\",\n    \"multipliers\": [\n      2.31,\n      2.36\n    ],\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"059\",\n      \"name\": \"Arcanine\"\n    }]\n  }, {\n    \"id\": 59,\n    \"num\": \"059\",\n    \"name\": \"Arcanine\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/059.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"1.91 m\",\n    \"weight\": \"155.0 kg\",\n    \"candy\": \"Growlithe Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.017,\n    \"avg_spawns\": 1.7,\n    \"spawn_time\": \"03:11\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"058\",\n      \"name\": \"Growlithe\"\n    }]\n  }, {\n    \"id\": 60,\n    \"num\": \"060\",\n    \"name\": \"Poliwag\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/060.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"12.4 kg\",\n    \"candy\": \"Poliwag Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.19,\n    \"avg_spawns\": 219,\n    \"spawn_time\": \"03:40\",\n    \"multipliers\": [\n      1.72,\n      1.73\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"061\",\n      \"name\": \"Poliwhirl\"\n    }, {\n      \"num\": \"062\",\n      \"name\": \"Poliwrath\"\n    }]\n  }, {\n    \"id\": 61,\n    \"num\": \"061\",\n    \"name\": \"Poliwhirl\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/061.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"20.0 kg\",\n    \"candy\": \"Poliwag Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.13,\n    \"avg_spawns\": 13,\n    \"spawn_time\": \"09:14\",\n    \"multipliers\": [1.95],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"060\",\n      \"name\": \"Poliwag\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"062\",\n      \"name\": \"Poliwrath\"\n    }]\n  }, {\n    \"id\": 62,\n    \"num\": \"062\",\n    \"name\": \"Poliwrath\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/062.png\",\n    \"type\": [\n      \"Water\",\n      \"Fighting\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"54.0 kg\",\n    \"candy\": \"Poliwag Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.011,\n    \"avg_spawns\": 1.1,\n    \"spawn_time\": \"01:32\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"060\",\n      \"name\": \"Poliwag\"\n    }, {\n      \"num\": \"061\",\n      \"name\": \"Poliwhirl\"\n    }]\n  }, {\n    \"id\": 63,\n    \"num\": \"063\",\n    \"name\": \"Abra\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/063.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"0.89 m\",\n    \"weight\": \"19.5 kg\",\n    \"candy\": \"Abra Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.42,\n    \"avg_spawns\": 42,\n    \"spawn_time\": \"04:30\",\n    \"multipliers\": [\n      1.36,\n      1.95\n    ],\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"064\",\n      \"name\": \"Kadabra\"\n    }, {\n      \"num\": \"065\",\n      \"name\": \"Alakazam\"\n    }]\n  }, {\n    \"id\": 64,\n    \"num\": \"064\",\n    \"name\": \"Kadabra\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/064.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"56.5 kg\",\n    \"candy\": \"Abra Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.027,\n    \"avg_spawns\": 2.7,\n    \"spawn_time\": \"11:25\",\n    \"multipliers\": [1.4],\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"063\",\n      \"name\": \"Abra\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"065\",\n      \"name\": \"Alakazam\"\n    }]\n  }, {\n    \"id\": 65,\n    \"num\": \"065\",\n    \"name\": \"Alakazam\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/065.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"48.0 kg\",\n    \"candy\": \"Abra Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0073,\n    \"avg_spawns\": 0.73,\n    \"spawn_time\": \"12:33\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"063\",\n      \"name\": \"Abra\"\n    }, {\n      \"num\": \"064\",\n      \"name\": \"Kadabra\"\n    }]\n  }, {\n    \"id\": 66,\n    \"num\": \"066\",\n    \"name\": \"Machop\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/066.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"19.5 kg\",\n    \"candy\": \"Machop Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.49,\n    \"avg_spawns\": 49,\n    \"spawn_time\": \"01:55\",\n    \"multipliers\": [\n      1.64,\n      1.65\n    ],\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"067\",\n      \"name\": \"Machoke\"\n    }, {\n      \"num\": \"068\",\n      \"name\": \"Machamp\"\n    }]\n  }, {\n    \"id\": 67,\n    \"num\": \"067\",\n    \"name\": \"Machoke\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/067.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"70.5 kg\",\n    \"candy\": \"Machop Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.034,\n    \"avg_spawns\": 3.4,\n    \"spawn_time\": \"10:32\",\n    \"multipliers\": [1.7],\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"066\",\n      \"name\": \"Machop\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"068\",\n      \"name\": \"Machamp\"\n    }]\n  }, {\n    \"id\": 68,\n    \"num\": \"068\",\n    \"name\": \"Machamp\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/068.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"130.0 kg\",\n    \"candy\": \"Machop Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0068,\n    \"avg_spawns\": 0.68,\n    \"spawn_time\": \"02:55\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"066\",\n      \"name\": \"Machop\"\n    }, {\n      \"num\": \"067\",\n      \"name\": \"Machoke\"\n    }]\n  }, {\n    \"id\": 69,\n    \"num\": \"069\",\n    \"name\": \"Bellsprout\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/069.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"0.71 m\",\n    \"weight\": \"4.0 kg\",\n    \"candy\": \"Bellsprout Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.15,\n    \"avg_spawns\": 115,\n    \"spawn_time\": \"04:10\",\n    \"multipliers\": [1.57],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"070\",\n      \"name\": \"Weepinbell\"\n    }, {\n      \"num\": \"071\",\n      \"name\": \"Victreebel\"\n    }]\n  }, {\n    \"id\": 70,\n    \"num\": \"070\",\n    \"name\": \"Weepinbell\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/070.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"6.4 kg\",\n    \"candy\": \"Bellsprout Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.072,\n    \"avg_spawns\": 7.2,\n    \"spawn_time\": \"09:45\",\n    \"multipliers\": [1.59],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"069\",\n      \"name\": \"Bellsprout\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"071\",\n      \"name\": \"Victreebel\"\n    }]\n  }, {\n    \"id\": 71,\n    \"num\": \"071\",\n    \"name\": \"Victreebel\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/071.png\",\n    \"type\": [\n      \"Grass\",\n      \"Poison\"\n    ],\n    \"height\": \"1.70 m\",\n    \"weight\": \"15.5 kg\",\n    \"candy\": \"Bellsprout Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0059,\n    \"avg_spawns\": 0.59,\n    \"spawn_time\": \"12:19\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Flying\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"069\",\n      \"name\": \"Bellsprout\"\n    }, {\n      \"num\": \"070\",\n      \"name\": \"Weepinbell\"\n    }]\n  }, {\n    \"id\": 72,\n    \"num\": \"072\",\n    \"name\": \"Tentacool\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/072.png\",\n    \"type\": [\n      \"Water\",\n      \"Poison\"\n    ],\n    \"height\": \"0.89 m\",\n    \"weight\": \"45.5 kg\",\n    \"candy\": \"Tentacool Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.81,\n    \"avg_spawns\": 81,\n    \"spawn_time\": \"03:20\",\n    \"multipliers\": [2.52],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"073\",\n      \"name\": \"Tentacruel\"\n    }]\n  }, {\n    \"id\": 73,\n    \"num\": \"073\",\n    \"name\": \"Tentacruel\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/073.png\",\n    \"type\": [\n      \"Water\",\n      \"Poison\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"55.0 kg\",\n    \"candy\": \"Tentacool Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.082,\n    \"avg_spawns\": 8.2,\n    \"spawn_time\": \"23:36\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"072\",\n      \"name\": \"Tentacool\"\n    }]\n  }, {\n    \"id\": 74,\n    \"num\": \"074\",\n    \"name\": \"Geodude\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/074.png\",\n    \"type\": [\n      \"Rock\",\n      \"Ground\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"20.0 kg\",\n    \"candy\": \"Geodude Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 1.19,\n    \"avg_spawns\": 119,\n    \"spawn_time\": \"12:40\",\n    \"multipliers\": [\n      1.75,\n      1.76\n    ],\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\",\n      \"Fighting\",\n      \"Ground\",\n      \"Steel\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"075\",\n      \"name\": \"Graveler\"\n    }, {\n      \"num\": \"076\",\n      \"name\": \"Golem\"\n    }]\n  }, {\n    \"id\": 75,\n    \"num\": \"075\",\n    \"name\": \"Graveler\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/075.png\",\n    \"type\": [\n      \"Rock\",\n      \"Ground\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"105.0 kg\",\n    \"candy\": \"Geodude Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.071,\n    \"avg_spawns\": 7.1,\n    \"spawn_time\": \"04:53\",\n    \"multipliers\": [\n      1.64,\n      1.72\n    ],\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\",\n      \"Fighting\",\n      \"Ground\",\n      \"Steel\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"074\",\n      \"name\": \"Geodude\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"076\",\n      \"name\": \"Golem\"\n    }]\n  }, {\n    \"id\": 76,\n    \"num\": \"076\",\n    \"name\": \"Golem\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/076.png\",\n    \"type\": [\n      \"Rock\",\n      \"Ground\"\n    ],\n    \"height\": \"1.40 m\",\n    \"weight\": \"300.0 kg\",\n    \"candy\": \"Geodude Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0047,\n    \"avg_spawns\": 0.47,\n    \"spawn_time\": \"12:16\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\",\n      \"Fighting\",\n      \"Ground\",\n      \"Steel\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"074\",\n      \"name\": \"Geodude\"\n    }, {\n      \"num\": \"075\",\n      \"name\": \"Graveler\"\n    }]\n  }, {\n    \"id\": 77,\n    \"num\": \"077\",\n    \"name\": \"Ponyta\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/077.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"Ponyta Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.51,\n    \"avg_spawns\": 51,\n    \"spawn_time\": \"02:50\",\n    \"multipliers\": [\n      1.48,\n      1.5\n    ],\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"078\",\n      \"name\": \"Rapidash\"\n    }]\n  }, {\n    \"id\": 78,\n    \"num\": \"078\",\n    \"name\": \"Rapidash\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/078.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"1.70 m\",\n    \"weight\": \"95.0 kg\",\n    \"candy\": \"Ponyta Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.011,\n    \"avg_spawns\": 1.1,\n    \"spawn_time\": \"04:00\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"077\",\n      \"name\": \"Ponyta\"\n    }]\n  }, {\n    \"id\": 79,\n    \"num\": \"079\",\n    \"name\": \"Slowpoke\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/079.png\",\n    \"type\": [\n      \"Water\",\n      \"Psychic\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"36.0 kg\",\n    \"candy\": \"Slowpoke Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.05,\n    \"avg_spawns\": 105,\n    \"spawn_time\": \"07:12\",\n    \"multipliers\": [2.21],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"080\",\n      \"name\": \"Slowbro\"\n    }]\n  }, {\n    \"id\": 80,\n    \"num\": \"080\",\n    \"name\": \"Slowbro\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/080.png\",\n    \"type\": [\n      \"Water\",\n      \"Psychic\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"78.5 kg\",\n    \"candy\": \"Slowpoke Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.036,\n    \"avg_spawns\": 3.6,\n    \"spawn_time\": \"02:56\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"079\",\n      \"name\": \"Slowpoke\"\n    }]\n  }, {\n    \"id\": 81,\n    \"num\": \"081\",\n    \"name\": \"Magnemite\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/081.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"6.0 kg\",\n    \"candy\": \"Magnemite Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.71,\n    \"avg_spawns\": 71,\n    \"spawn_time\": \"04:04\",\n    \"multipliers\": [\n      2.16,\n      2.17\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Water\",\n      \"Ground\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"082\",\n      \"name\": \"Magneton\"\n    }]\n  }, {\n    \"id\": 82,\n    \"num\": \"082\",\n    \"name\": \"Magneton\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/082.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"60.0 kg\",\n    \"candy\": \"Magnemite Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.023,\n    \"avg_spawns\": 2.3,\n    \"spawn_time\": \"15:25\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Water\",\n      \"Ground\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"081\",\n      \"name\": \"Magnemite\"\n    }]\n  }, {\n    \"id\": 83,\n    \"num\": \"083\",\n    \"name\": \"Farfetch'd\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/083.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"15.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.0212,\n    \"avg_spawns\": 2.12,\n    \"spawn_time\": \"01:09\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 84,\n    \"num\": \"084\",\n    \"name\": \"Doduo\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/084.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"1.40 m\",\n    \"weight\": \"39.2 kg\",\n    \"candy\": \"Doduo Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.52,\n    \"avg_spawns\": 52,\n    \"spawn_time\": \"05:10\",\n    \"multipliers\": [\n      2.19,\n      2.24\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"085\",\n      \"name\": \"Dodrio\"\n    }]\n  }, {\n    \"id\": 85,\n    \"num\": \"085\",\n    \"name\": \"Dodrio\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/085.png\",\n    \"type\": [\n      \"Normal\",\n      \"Flying\"\n    ],\n    \"height\": \"1.80 m\",\n    \"weight\": \"85.2 kg\",\n    \"candy\": \"Doduo Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.22,\n    \"avg_spawns\": 22,\n    \"spawn_time\": \"02:12\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"084\",\n      \"name\": \"Doduo\"\n    }]\n  }, {\n    \"id\": 86,\n    \"num\": \"086\",\n    \"name\": \"Seel\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/086.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"90.0 kg\",\n    \"candy\": \"Seel Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.28,\n    \"avg_spawns\": 28,\n    \"spawn_time\": \"06:46\",\n    \"multipliers\": [\n      1.04,\n      1.96\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"087\",\n      \"name\": \"Dewgong\"\n    }]\n  }, {\n    \"id\": 87,\n    \"num\": \"087\",\n    \"name\": \"Dewgong\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/087.png\",\n    \"type\": [\n      \"Water\",\n      \"Ice\"\n    ],\n    \"height\": \"1.70 m\",\n    \"weight\": \"120.0 kg\",\n    \"candy\": \"Seel Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.013,\n    \"avg_spawns\": 1.3,\n    \"spawn_time\": \"06:04\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"086\",\n      \"name\": \"Seel\"\n    }]\n  }, {\n    \"id\": 88,\n    \"num\": \"088\",\n    \"name\": \"Grimer\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/088.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"0.89 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"Grimer Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.052,\n    \"avg_spawns\": 5.2,\n    \"spawn_time\": \"15:11\",\n    \"multipliers\": [2.44],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"089\",\n      \"name\": \"Muk\"\n    }]\n  }, {\n    \"id\": 89,\n    \"num\": \"089\",\n    \"name\": \"Muk\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/089.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"Grimer Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0031,\n    \"avg_spawns\": 0.31,\n    \"spawn_time\": \"01:28\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"088\",\n      \"name\": \"Grimer\"\n    }]\n  }, {\n    \"id\": 90,\n    \"num\": \"090\",\n    \"name\": \"Shellder\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/090.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"4.0 kg\",\n    \"candy\": \"Shellder Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.52,\n    \"avg_spawns\": 52,\n    \"spawn_time\": \"07:39\",\n    \"multipliers\": [2.65],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"091\",\n      \"name\": \"Cloyster\"\n    }]\n  }, {\n    \"id\": 91,\n    \"num\": \"091\",\n    \"name\": \"Cloyster\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/091.png\",\n    \"type\": [\n      \"Water\",\n      \"Ice\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"132.5 kg\",\n    \"candy\": \"Shellder Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.015,\n    \"avg_spawns\": 1.5,\n    \"spawn_time\": \"02:33\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"090\",\n      \"name\": \"Shellder\"\n    }]\n  }, {\n    \"id\": 92,\n    \"num\": \"092\",\n    \"name\": \"Gastly\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/092.png\",\n    \"type\": [\n      \"Ghost\",\n      \"Poison\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"0.1 kg\",\n    \"candy\": \"Gastly Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.79,\n    \"avg_spawns\": 79,\n    \"spawn_time\": \"04:21\",\n    \"multipliers\": [1.78],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"093\",\n      \"name\": \"Haunter\"\n    }, {\n      \"num\": \"094\",\n      \"name\": \"Gengar\"\n    }]\n  }, {\n    \"id\": 93,\n    \"num\": \"093\",\n    \"name\": \"Haunter\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/093.png\",\n    \"type\": [\n      \"Ghost\",\n      \"Poison\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"0.1 kg\",\n    \"candy\": \"Gastly Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.052,\n    \"avg_spawns\": 5.2,\n    \"spawn_time\": \"00:10\",\n    \"multipliers\": [\n      1.56,\n      1.8\n    ],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"092\",\n      \"name\": \"Gastly\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"094\",\n      \"name\": \"Gengar\"\n    }]\n  }, {\n    \"id\": 94,\n    \"num\": \"094\",\n    \"name\": \"Gengar\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/094.png\",\n    \"type\": [\n      \"Ghost\",\n      \"Poison\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"40.5 kg\",\n    \"candy\": \"Gastly Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0067,\n    \"avg_spawns\": 0.67,\n    \"spawn_time\": \"03:55\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"092\",\n      \"name\": \"Gastly\"\n    }, {\n      \"num\": \"093\",\n      \"name\": \"Haunter\"\n    }]\n  }, {\n    \"id\": 95,\n    \"num\": \"095\",\n    \"name\": \"Onix\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/095.png\",\n    \"type\": [\n      \"Rock\",\n      \"Ground\"\n    ],\n    \"height\": \"8.79 m\",\n    \"weight\": \"210.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.10,\n    \"avg_spawns\": 10,\n    \"spawn_time\": \"01:18\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\",\n      \"Fighting\",\n      \"Ground\",\n      \"Steel\"\n    ]\n  }, {\n    \"id\": 96,\n    \"num\": \"096\",\n    \"name\": \"Drowzee\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/096.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"32.4 kg\",\n    \"candy\": \"Drowzee Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 3.21,\n    \"avg_spawns\": 321,\n    \"spawn_time\": \"01:51\",\n    \"multipliers\": [\n      2.08,\n      2.09\n    ],\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"097\",\n      \"name\": \"Hypno\"\n    }]\n  }, {\n    \"id\": 97,\n    \"num\": \"097\",\n    \"name\": \"Hypno\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/097.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"75.6 kg\",\n    \"candy\": \"Drowzee Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.10,\n    \"avg_spawns\": 10,\n    \"spawn_time\": \"02:17\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"096\",\n      \"name\": \"Drowzee\"\n    }]\n  }, {\n    \"id\": 98,\n    \"num\": \"098\",\n    \"name\": \"Krabby\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/098.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"6.5 kg\",\n    \"candy\": \"Krabby Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.12,\n    \"avg_spawns\": 212,\n    \"spawn_time\": \"03:33\",\n    \"multipliers\": [\n      2.36,\n      2.4\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"099\",\n      \"name\": \"Kingler\"\n    }]\n  }, {\n    \"id\": 99,\n    \"num\": \"099\",\n    \"name\": \"Kingler\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/099.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"60.0 kg\",\n    \"candy\": \"Krabby Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.062,\n    \"avg_spawns\": 6.2,\n    \"spawn_time\": \"03:44\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"098\",\n      \"name\": \"Krabby\"\n    }]\n  }, {\n    \"id\": 100,\n    \"num\": \"100\",\n    \"name\": \"Voltorb\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/100.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"10.4 kg\",\n    \"candy\": \"Voltorb Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.65,\n    \"avg_spawns\": 65,\n    \"spawn_time\": \"04:36\",\n    \"multipliers\": [\n      2.01,\n      2.02\n    ],\n    \"weaknesses\": [\n      \"Ground\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"101\",\n      \"name\": \"Electrode\"\n    }]\n  }, {\n    \"id\": 101,\n    \"num\": \"101\",\n    \"name\": \"Electrode\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/101.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"66.6 kg\",\n    \"candy\": \"Voltorb Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.02,\n    \"avg_spawns\": 2,\n    \"spawn_time\": \"04:10\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"100\",\n      \"name\": \"Voltorb\"\n    }]\n  }, {\n    \"id\": 102,\n    \"num\": \"102\",\n    \"name\": \"Exeggcute\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/102.png\",\n    \"type\": [\n      \"Grass\",\n      \"Psychic\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"2.5 kg\",\n    \"candy\": \"Exeggcute Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.78,\n    \"avg_spawns\": 78,\n    \"spawn_time\": \"09:09\",\n    \"multipliers\": [\n      2.7,\n      3.18\n    ],\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Poison\",\n      \"Flying\",\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"103\",\n      \"name\": \"Exeggutor\"\n    }]\n  }, {\n    \"id\": 103,\n    \"num\": \"103\",\n    \"name\": \"Exeggutor\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/103.png\",\n    \"type\": [\n      \"Grass\",\n      \"Psychic\"\n    ],\n    \"height\": \"2.01 m\",\n    \"weight\": \"120.0 kg\",\n    \"candy\": \"Exeggcute Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.014,\n    \"avg_spawns\": 1.4,\n    \"spawn_time\": \"12:34\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Poison\",\n      \"Flying\",\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"102\",\n      \"name\": \"Exeggcute\"\n    }]\n  }, {\n    \"id\": 104,\n    \"num\": \"104\",\n    \"name\": \"Cubone\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/104.png\",\n    \"type\": [\n      \"Ground\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"6.5 kg\",\n    \"candy\": \"Cubone Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.61,\n    \"avg_spawns\": 61,\n    \"spawn_time\": \"01:51\",\n    \"multipliers\": [1.67],\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"105\",\n      \"name\": \"Marowak\"\n    }]\n  }, {\n    \"id\": 105,\n    \"num\": \"105\",\n    \"name\": \"Marowak\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/105.png\",\n    \"type\": [\n      \"Ground\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"45.0 kg\",\n    \"candy\": \"Cubone Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.02,\n    \"avg_spawns\": 2,\n    \"spawn_time\": \"03:59\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"104\",\n      \"name\": \"Cubone\"\n    }]\n  }, {\n    \"id\": 106,\n    \"num\": \"106\",\n    \"name\": \"Hitmonlee\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/106.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"49.8 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.02,\n    \"avg_spawns\": 2,\n    \"spawn_time\": \"03:59\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ]\n  }, {\n    \"id\": 107,\n    \"num\": \"107\",\n    \"name\": \"Hitmonchan\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/107.png\",\n    \"type\": [\n      \"Fighting\"\n    ],\n    \"height\": \"1.40 m\",\n    \"weight\": \"50.2 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.022,\n    \"avg_spawns\": 2.2,\n    \"spawn_time\": \"05:58\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Flying\",\n      \"Psychic\",\n      \"Fairy\"\n    ]\n  }, {\n    \"id\": 108,\n    \"num\": \"108\",\n    \"name\": \"Lickitung\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/108.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"65.5 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.011,\n    \"avg_spawns\": 1.1,\n    \"spawn_time\": \"02:46\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 109,\n    \"num\": \"109\",\n    \"name\": \"Koffing\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/109.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"1.0 kg\",\n    \"candy\": \"Koffing Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.20,\n    \"avg_spawns\": 20,\n    \"spawn_time\": \"08:16\",\n    \"multipliers\": [1.11],\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"110\",\n      \"name\": \"Weezing\"\n    }]\n  }, {\n    \"id\": 110,\n    \"num\": \"110\",\n    \"name\": \"Weezing\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/110.png\",\n    \"type\": [\n      \"Poison\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"9.5 kg\",\n    \"candy\": \"Koffing Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.016,\n    \"avg_spawns\": 1.6,\n    \"spawn_time\": \"12:17\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\",\n      \"Psychic\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"109\",\n      \"name\": \"Koffing\"\n    }]\n  }, {\n    \"id\": 111,\n    \"num\": \"111\",\n    \"name\": \"Rhyhorn\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/111.png\",\n    \"type\": [\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"115.0 kg\",\n    \"candy\": \"Rhyhorn Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.63,\n    \"avg_spawns\": 63,\n    \"spawn_time\": \"03:21\",\n    \"multipliers\": [1.91],\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\",\n      \"Fighting\",\n      \"Ground\",\n      \"Steel\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"112\",\n      \"name\": \"Rhydon\"\n    }]\n  }, {\n    \"id\": 112,\n    \"num\": \"112\",\n    \"name\": \"Rhydon\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/112.png\",\n    \"type\": [\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"height\": \"1.91 m\",\n    \"weight\": \"120.0 kg\",\n    \"candy\": \"Rhyhorn Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.022,\n    \"avg_spawns\": 2.2,\n    \"spawn_time\": \"05:50\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Grass\",\n      \"Ice\",\n      \"Fighting\",\n      \"Ground\",\n      \"Steel\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"111\",\n      \"name\": \"Rhyhorn\"\n    }]\n  }, {\n    \"id\": 113,\n    \"num\": \"113\",\n    \"name\": \"Chansey\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/113.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"34.6 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.013,\n    \"avg_spawns\": 1.3,\n    \"spawn_time\": \"04:46\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 114,\n    \"num\": \"114\",\n    \"name\": \"Tangela\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/114.png\",\n    \"type\": [\n      \"Grass\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"35.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.228,\n    \"avg_spawns\": 22.8,\n    \"spawn_time\": \"23:13\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Ice\",\n      \"Poison\",\n      \"Flying\",\n      \"Bug\"\n    ]\n  }, {\n    \"id\": 115,\n    \"num\": \"115\",\n    \"name\": \"Kangaskhan\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/115.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"2.21 m\",\n    \"weight\": \"80.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.0086,\n    \"avg_spawns\": 0.86,\n    \"spawn_time\": \"02:40\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 116,\n    \"num\": \"116\",\n    \"name\": \"Horsea\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/116.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"8.0 kg\",\n    \"candy\": \"Horsea Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.13,\n    \"avg_spawns\": 113,\n    \"spawn_time\": \"02:53\",\n    \"multipliers\": [2.23],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"117\",\n      \"name\": \"Seadra\"\n    }]\n  }, {\n    \"id\": 117,\n    \"num\": \"117\",\n    \"name\": \"Seadra\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/117.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"1.19 m\",\n    \"weight\": \"25.0 kg\",\n    \"candy\": \"Horsea Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.034,\n    \"avg_spawns\": 3.4,\n    \"spawn_time\": \"03:18\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"116\",\n      \"name\": \"Horsea\"\n    }]\n  }, {\n    \"id\": 118,\n    \"num\": \"118\",\n    \"name\": \"Goldeen\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/118.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.61 m\",\n    \"weight\": \"15.0 kg\",\n    \"candy\": \"Goldeen Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 2.18,\n    \"avg_spawns\": 218,\n    \"spawn_time\": \"03:14\",\n    \"multipliers\": [\n      2.15,\n      2.2\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"119\",\n      \"name\": \"Seaking\"\n    }]\n  }, {\n    \"id\": 119,\n    \"num\": \"119\",\n    \"name\": \"Seaking\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/119.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"39.0 kg\",\n    \"candy\": \"Goldeen Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.08,\n    \"avg_spawns\": 8,\n    \"spawn_time\": \"05:21\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"118\",\n      \"name\": \"Goldeen\"\n    }]\n  }, {\n    \"id\": 120,\n    \"num\": \"120\",\n    \"name\": \"Staryu\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/120.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"34.5 kg\",\n    \"candy\": \"Staryu Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 1.95,\n    \"avg_spawns\": 195,\n    \"spawn_time\": \"22:59\",\n    \"multipliers\": [\n      2.38,\n      2.41\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"121\",\n      \"name\": \"Starmie\"\n    }]\n  }, {\n    \"id\": 121,\n    \"num\": \"121\",\n    \"name\": \"Starmie\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/121.png\",\n    \"type\": [\n      \"Water\",\n      \"Psychic\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"80.0 kg\",\n    \"candy\": \"Staryu Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.034,\n    \"avg_spawns\": 3.4,\n    \"spawn_time\": \"06:57\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"120\",\n      \"name\": \"Staryu\"\n    }]\n  }, {\n    \"id\": 122,\n    \"num\": \"122\",\n    \"name\": \"Mr. Mime\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/122.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"54.5 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.0031,\n    \"avg_spawns\": 0.31,\n    \"spawn_time\": \"01:51\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ]\n  }, {\n    \"id\": 123,\n    \"num\": \"123\",\n    \"name\": \"Scyther\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/123.png\",\n    \"type\": [\n      \"Bug\",\n      \"Flying\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"56.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.14,\n    \"avg_spawns\": 14,\n    \"spawn_time\": \"05:43\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Electric\",\n      \"Ice\",\n      \"Flying\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 124,\n    \"num\": \"124\",\n    \"name\": \"Jynx\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/124.png\",\n    \"type\": [\n      \"Ice\",\n      \"Psychic\"\n    ],\n    \"height\": \"1.40 m\",\n    \"weight\": \"40.6 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.35,\n    \"avg_spawns\": 35,\n    \"spawn_time\": \"05:41\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Bug\",\n      \"Rock\",\n      \"Ghost\",\n      \"Dark\",\n      \"Steel\"\n    ]\n  }, {\n    \"id\": 125,\n    \"num\": \"125\",\n    \"name\": \"Electabuzz\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/125.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"1.09 m\",\n    \"weight\": \"30.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.074,\n    \"avg_spawns\": 7.4,\n    \"spawn_time\": \"04:28\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\"\n    ]\n  }, {\n    \"id\": 126,\n    \"num\": \"126\",\n    \"name\": \"Magmar\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/126.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"44.5 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.10,\n    \"avg_spawns\": 10,\n    \"spawn_time\": \"20:36\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 127,\n    \"num\": \"127\",\n    \"name\": \"Pinsir\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/127.png\",\n    \"type\": [\n      \"Bug\"\n    ],\n    \"height\": \"1.50 m\",\n    \"weight\": \"55.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.99,\n    \"avg_spawns\": 99,\n    \"spawn_time\": \"03:25\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Flying\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 128,\n    \"num\": \"128\",\n    \"name\": \"Tauros\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/128.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"1.40 m\",\n    \"weight\": \"88.4 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.12,\n    \"avg_spawns\": 12,\n    \"spawn_time\": \"00:37\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 129,\n    \"num\": \"129\",\n    \"name\": \"Magikarp\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/129.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.89 m\",\n    \"weight\": \"10.0 kg\",\n    \"candy\": \"Magikarp Candy\",\n    \"candy_count\": 400,\n    \"egg\": \"2 km\",\n    \"spawn_chance\": 4.78,\n    \"avg_spawns\": 478,\n    \"spawn_time\": \"14:26\",\n    \"multipliers\": [\n      10.1,\n      11.8\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"130\",\n      \"name\": \"Gyarados\"\n    }]\n  }, {\n    \"id\": 130,\n    \"num\": \"130\",\n    \"name\": \"Gyarados\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/130.png\",\n    \"type\": [\n      \"Water\",\n      \"Flying\"\n    ],\n    \"height\": \"6.50 m\",\n    \"weight\": \"235.0 kg\",\n    \"candy\": \"Magikarp Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0032,\n    \"avg_spawns\": 0.32,\n    \"spawn_time\": \"02:15\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"129\",\n      \"name\": \"Magikarp\"\n    }]\n  }, {\n    \"id\": 131,\n    \"num\": \"131\",\n    \"name\": \"Lapras\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/131.png\",\n    \"type\": [\n      \"Water\",\n      \"Ice\"\n    ],\n    \"height\": \"2.49 m\",\n    \"weight\": \"220.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.006,\n    \"avg_spawns\": 0.6,\n    \"spawn_time\": \"08:59\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 132,\n    \"num\": \"132\",\n    \"name\": \"Ditto\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/132.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"4.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0,\n    \"avg_spawns\": 0,\n    \"spawn_time\": \"N/A\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 133,\n    \"num\": \"133\",\n    \"name\": \"Eevee\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/133.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.30 m\",\n    \"weight\": \"6.5 kg\",\n    \"candy\": \"Eevee Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 2.75,\n    \"avg_spawns\": 275,\n    \"spawn_time\": \"05:32\",\n    \"multipliers\": [\n      2.02,\n      2.64\n    ],\n    \"weaknesses\": [\n      \"Fighting\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"134\",\n      \"name\": \"Vaporeon\"\n    }, {\n      \"num\": \"135\",\n      \"name\": \"Jolteon\"\n    }, {\n      \"num\": \"136\",\n      \"name\": \"Flareon\"\n    }]\n  }, {\n    \"id\": 134,\n    \"num\": \"134\",\n    \"name\": \"Vaporeon\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/134.png\",\n    \"type\": [\n      \"Water\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"29.0 kg\",\n    \"candy\": \"Eevee Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.014,\n    \"avg_spawns\": 1.4,\n    \"spawn_time\": \"10:54\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"133\",\n      \"name\": \"Eevee\"\n    }]\n  }, {\n    \"id\": 135,\n    \"num\": \"135\",\n    \"name\": \"Jolteon\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/135.png\",\n    \"type\": [\n      \"Electric\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"24.5 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.012,\n    \"avg_spawns\": 1.2,\n    \"spawn_time\": \"02:30\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ground\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"133\",\n      \"name\": \"Eevee\"\n    }]\n  }, {\n    \"id\": 136,\n    \"num\": \"136\",\n    \"name\": \"Flareon\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/136.png\",\n    \"type\": [\n      \"Fire\"\n    ],\n    \"height\": \"0.89 m\",\n    \"weight\": \"25.0 kg\",\n    \"candy\": \"Eevee Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.017,\n    \"avg_spawns\": 1.7,\n    \"spawn_time\": \"07:02\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Ground\",\n      \"Rock\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"133\",\n      \"name\": \"Eevee\"\n    }]\n  }, {\n    \"id\": 137,\n    \"num\": \"137\",\n    \"name\": \"Porygon\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/137.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"0.79 m\",\n    \"weight\": \"36.5 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"5 km\",\n    \"spawn_chance\": 0.012,\n    \"avg_spawns\": 1.2,\n    \"spawn_time\": \"02:49\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 138,\n    \"num\": \"138\",\n    \"name\": \"Omanyte\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/138.png\",\n    \"type\": [\n      \"Rock\",\n      \"Water\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"7.5 kg\",\n    \"candy\": \"Omanyte Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.14,\n    \"avg_spawns\": 14,\n    \"spawn_time\": \"10:23\",\n    \"multipliers\": [2.12],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Ground\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"139\",\n      \"name\": \"Omastar\"\n    }]\n  }, {\n    \"id\": 139,\n    \"num\": \"139\",\n    \"name\": \"Omastar\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/139.png\",\n    \"type\": [\n      \"Rock\",\n      \"Water\"\n    ],\n    \"height\": \"0.99 m\",\n    \"weight\": \"35.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Omanyte Candy\",\n    \"spawn_chance\": 0.0061,\n    \"avg_spawns\": 0.61,\n    \"spawn_time\": \"05:04\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Ground\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"138\",\n      \"name\": \"Omanyte\"\n    }]\n  }, {\n    \"id\": 140,\n    \"num\": \"140\",\n    \"name\": \"Kabuto\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/140.png\",\n    \"type\": [\n      \"Rock\",\n      \"Water\"\n    ],\n    \"height\": \"0.51 m\",\n    \"weight\": \"11.5 kg\",\n    \"candy\": \"Kabuto Candy\",\n    \"candy_count\": 50,\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.10,\n    \"avg_spawns\": 10,\n    \"spawn_time\": \"00:05\",\n    \"multipliers\": [\n      1.97,\n      2.37\n    ],\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Ground\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"141\",\n      \"name\": \"Kabutops\"\n    }]\n  }, {\n    \"id\": 141,\n    \"num\": \"141\",\n    \"name\": \"Kabutops\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/141.png\",\n    \"type\": [\n      \"Rock\",\n      \"Water\"\n    ],\n    \"height\": \"1.30 m\",\n    \"weight\": \"40.5 kg\",\n    \"candy\": \"Kabuto Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0032,\n    \"avg_spawns\": 0.32,\n    \"spawn_time\": \"23:40\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Electric\",\n      \"Grass\",\n      \"Fighting\",\n      \"Ground\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"140\",\n      \"name\": \"Kabuto\"\n    }]\n  }, {\n    \"id\": 142,\n    \"num\": \"142\",\n    \"name\": \"Aerodactyl\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/142.png\",\n    \"type\": [\n      \"Rock\",\n      \"Flying\"\n    ],\n    \"height\": \"1.80 m\",\n    \"weight\": \"59.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.018,\n    \"avg_spawns\": 1.8,\n    \"spawn_time\": \"23:40\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Electric\",\n      \"Ice\",\n      \"Rock\",\n      \"Steel\"\n    ]\n  }, {\n    \"id\": 143,\n    \"num\": \"143\",\n    \"name\": \"Snorlax\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/143.png\",\n    \"type\": [\n      \"Normal\"\n    ],\n    \"height\": \"2.11 m\",\n    \"weight\": \"460.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.016,\n    \"avg_spawns\": 1.6,\n    \"spawn_time\": \"23:40\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fighting\"\n    ]\n  }, {\n    \"id\": 144,\n    \"num\": \"144\",\n    \"name\": \"Articuno\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/144.png\",\n    \"type\": [\n      \"Ice\",\n      \"Flying\"\n    ],\n    \"height\": \"1.70 m\",\n    \"weight\": \"55.4 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0,\n    \"avg_spawns\": 0,\n    \"spawn_time\": \"N/A\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Fire\",\n      \"Electric\",\n      \"Rock\",\n      \"Steel\"\n    ]\n  }, {\n    \"id\": 145,\n    \"num\": \"145\",\n    \"name\": \"Zapdos\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/145.png\",\n    \"type\": [\n      \"Electric\",\n      \"Flying\"\n    ],\n    \"height\": \"1.60 m\",\n    \"weight\": \"52.6 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0,\n    \"avg_spawns\": 0,\n    \"spawn_time\": \"N/A\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ice\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 146,\n    \"num\": \"146\",\n    \"name\": \"Moltres\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/146.png\",\n    \"type\": [\n      \"Fire\",\n      \"Flying\"\n    ],\n    \"height\": \"2.01 m\",\n    \"weight\": \"60.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0,\n    \"avg_spawns\": 0,\n    \"spawn_time\": \"N/A\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Water\",\n      \"Electric\",\n      \"Rock\"\n    ]\n  }, {\n    \"id\": 147,\n    \"num\": \"147\",\n    \"name\": \"Dratini\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/147.png\",\n    \"type\": [\n      \"Dragon\"\n    ],\n    \"height\": \"1.80 m\",\n    \"weight\": \"3.3 kg\",\n    \"candy\": \"Dratini Candy\",\n    \"candy_count\": 25,\n    \"egg\": \"10 km\",\n    \"spawn_chance\": 0.30,\n    \"avg_spawns\": 30,\n    \"spawn_time\": \"06:41\",\n    \"multipliers\": [\n      1.83,\n      1.84\n    ],\n    \"weaknesses\": [\n      \"Ice\",\n      \"Dragon\",\n      \"Fairy\"\n    ],\n    \"next_evolution\": [{\n      \"num\": \"148\",\n      \"name\": \"Dragonair\"\n    }, {\n      \"num\": \"149\",\n      \"name\": \"Dragonite\"\n    }]\n  }, {\n    \"id\": 148,\n    \"num\": \"148\",\n    \"name\": \"Dragonair\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/148.png\",\n    \"type\": [\n      \"Dragon\"\n    ],\n    \"height\": \"3.99 m\",\n    \"weight\": \"16.5 kg\",\n    \"candy\": \"Dratini Candy\",\n    \"candy_count\": 100,\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.02,\n    \"avg_spawns\": 2,\n    \"spawn_time\": \"11:57\",\n    \"multipliers\": [2.05],\n    \"weaknesses\": [\n      \"Ice\",\n      \"Dragon\",\n      \"Fairy\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"147\",\n      \"name\": \"Dratini\"\n    }],\n    \"next_evolution\": [{\n      \"num\": \"149\",\n      \"name\": \"Dragonite\"\n    }]\n  }, {\n    \"id\": 149,\n    \"num\": \"149\",\n    \"name\": \"Dragonite\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/149.png\",\n    \"type\": [\n      \"Dragon\",\n      \"Flying\"\n    ],\n    \"height\": \"2.21 m\",\n    \"weight\": \"210.0 kg\",\n    \"candy\": \"Dratini Candy\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0.0011,\n    \"avg_spawns\": 0.11,\n    \"spawn_time\": \"23:38\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Ice\",\n      \"Rock\",\n      \"Dragon\",\n      \"Fairy\"\n    ],\n    \"prev_evolution\": [{\n      \"num\": \"147\",\n      \"name\": \"Dratini\"\n    }, {\n      \"num\": \"148\",\n      \"name\": \"Dragonair\"\n    }]\n  }, {\n    \"id\": 150,\n    \"num\": \"150\",\n    \"name\": \"Mewtwo\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/150.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"2.01 m\",\n    \"weight\": \"122.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0,\n    \"avg_spawns\": 0,\n    \"spawn_time\": \"N/A\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ]\n  }, {\n    \"id\": 151,\n    \"num\": \"151\",\n    \"name\": \"Mew\",\n    \"img\": \"http://www.serebii.net/pokemongo/pokemon/151.png\",\n    \"type\": [\n      \"Psychic\"\n    ],\n    \"height\": \"0.41 m\",\n    \"weight\": \"4.0 kg\",\n    \"candy\": \"None\",\n    \"egg\": \"Not in Eggs\",\n    \"spawn_chance\": 0,\n    \"avg_spawns\": 0,\n    \"spawn_time\": \"N/A\",\n    \"multipliers\": null,\n    \"weaknesses\": [\n      \"Bug\",\n      \"Ghost\",\n      \"Dark\"\n    ]\n  }]\n}\n"
  },
  {
    "path": "tests/corpus/pokemon.json",
    "content": "{\"abilities\":[{\"ability\":{\"name\":\"overgrow\",\"url\":\"https://pokeapi.co/api/v2/ability/65/\"},\"is_hidden\":false,\"slot\":1},{\"ability\":{\"name\":\"chlorophyll\",\"url\":\"https://pokeapi.co/api/v2/ability/34/\"},\"is_hidden\":true,\"slot\":3}],\"base_experience\":64,\"forms\":[{\"name\":\"bulbasaur\",\"url\":\"https://pokeapi.co/api/v2/pokemon-form/1/\"}],\"game_indices\":[{\"game_index\":153,\"version\":{\"name\":\"red\",\"url\":\"https://pokeapi.co/api/v2/version/1/\"}},{\"game_index\":153,\"version\":{\"name\":\"blue\",\"url\":\"https://pokeapi.co/api/v2/version/2/\"}},{\"game_index\":153,\"version\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version/3/\"}},{\"game_index\":1,\"version\":{\"name\":\"gold\",\"url\":\"https://pokeapi.co/api/v2/version/4/\"}},{\"game_index\":1,\"version\":{\"name\":\"silver\",\"url\":\"https://pokeapi.co/api/v2/version/5/\"}},{\"game_index\":1,\"version\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version/6/\"}},{\"game_index\":1,\"version\":{\"name\":\"ruby\",\"url\":\"https://pokeapi.co/api/v2/version/7/\"}},{\"game_index\":1,\"version\":{\"name\":\"sapphire\",\"url\":\"https://pokeapi.co/api/v2/version/8/\"}},{\"game_index\":1,\"version\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version/9/\"}},{\"game_index\":1,\"version\":{\"name\":\"firered\",\"url\":\"https://pokeapi.co/api/v2/version/10/\"}},{\"game_index\":1,\"version\":{\"name\":\"leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version/11/\"}},{\"game_index\":1,\"version\":{\"name\":\"diamond\",\"url\":\"https://pokeapi.co/api/v2/version/12/\"}},{\"game_index\":1,\"version\":{\"name\":\"pearl\",\"url\":\"https://pokeapi.co/api/v2/version/13/\"}},{\"game_index\":1,\"version\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version/14/\"}},{\"game_index\":1,\"version\":{\"name\":\"heartgold\",\"url\":\"https://pokeapi.co/api/v2/version/15/\"}},{\"game_index\":1,\"version\":{\"name\":\"soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version/16/\"}},{\"game_index\":1,\"version\":{\"name\":\"black\",\"url\":\"https://pokeapi.co/api/v2/version/17/\"}},{\"game_index\":1,\"version\":{\"name\":\"white\",\"url\":\"https://pokeapi.co/api/v2/version/18/\"}},{\"game_index\":1,\"version\":{\"name\":\"black-2\",\"url\":\"https://pokeapi.co/api/v2/version/21/\"}},{\"game_index\":1,\"version\":{\"name\":\"white-2\",\"url\":\"https://pokeapi.co/api/v2/version/22/\"}}],\"height\":7,\"held_items\":[],\"id\":1,\"is_default\":true,\"location_area_encounters\":\"https://pokeapi.co/api/v2/pokemon/1/encounters\",\"moves\":[{\"move\":{\"name\":\"razor-wind\",\"url\":\"https://pokeapi.co/api/v2/move/13/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}}]},{\"move\":{\"name\":\"swords-dance\",\"url\":\"https://pokeapi.co/api/v2/move/14/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"cut\",\"url\":\"https://pokeapi.co/api/v2/move/15/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}}]},{\"move\":{\"name\":\"bind\",\"url\":\"https://pokeapi.co/api/v2/move/20/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"vine-whip\",\"url\":\"https://pokeapi.co/api/v2/move/22/\"},\"version_group_details\":[{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":10,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":5,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"headbutt\",\"url\":\"https://pokeapi.co/api/v2/move/29/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}}]},{\"move\":{\"name\":\"tackle\",\"url\":\"https://pokeapi.co/api/v2/move/33/\"},\"version_group_details\":[{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"body-slam\",\"url\":\"https://pokeapi.co/api/v2/move/34/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"take-down\",\"url\":\"https://pokeapi.co/api/v2/move/36/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":18,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"double-edge\",\"url\":\"https://pokeapi.co/api/v2/move/38/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"growl\",\"url\":\"https://pokeapi.co/api/v2/move/45/\"},\"version_group_details\":[{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":4,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":3,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":1,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"strength\",\"url\":\"https://pokeapi.co/api/v2/move/70/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}}]},{\"move\":{\"name\":\"mega-drain\",\"url\":\"https://pokeapi.co/api/v2/move/72/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}}]},{\"move\":{\"name\":\"leech-seed\",\"url\":\"https://pokeapi.co/api/v2/move/73/\"},\"version_group_details\":[{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":7,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":9,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"growth\",\"url\":\"https://pokeapi.co/api/v2/move/74/\"},\"version_group_details\":[{\"level_learned_at\":34,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":34,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":32,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":6,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"razor-leaf\",\"url\":\"https://pokeapi.co/api/v2/move/75/\"},\"version_group_details\":[{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":19,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":23,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":12,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"solar-beam\",\"url\":\"https://pokeapi.co/api/v2/move/76/\"},\"version_group_details\":[{\"level_learned_at\":48,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":48,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":46,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":36,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"poison-powder\",\"url\":\"https://pokeapi.co/api/v2/move/77/\"},\"version_group_details\":[{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":20,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":14,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"sleep-powder\",\"url\":\"https://pokeapi.co/api/v2/move/79/\"},\"version_group_details\":[{\"level_learned_at\":41,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":41,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":13,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":14,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":15,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"petal-dance\",\"url\":\"https://pokeapi.co/api/v2/move/80/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"string-shot\",\"url\":\"https://pokeapi.co/api/v2/move/81/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}}]},{\"move\":{\"name\":\"toxic\",\"url\":\"https://pokeapi.co/api/v2/move/92/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"rage\",\"url\":\"https://pokeapi.co/api/v2/move/99/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}}]},{\"move\":{\"name\":\"mimic\",\"url\":\"https://pokeapi.co/api/v2/move/102/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}}]},{\"move\":{\"name\":\"double-team\",\"url\":\"https://pokeapi.co/api/v2/move/104/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"defense-curl\",\"url\":\"https://pokeapi.co/api/v2/move/111/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}}]},{\"move\":{\"name\":\"light-screen\",\"url\":\"https://pokeapi.co/api/v2/move/113/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"reflect\",\"url\":\"https://pokeapi.co/api/v2/move/115/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}}]},{\"move\":{\"name\":\"bide\",\"url\":\"https://pokeapi.co/api/v2/move/117/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}}]},{\"move\":{\"name\":\"sludge\",\"url\":\"https://pokeapi.co/api/v2/move/124/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"skull-bash\",\"url\":\"https://pokeapi.co/api/v2/move/130/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"amnesia\",\"url\":\"https://pokeapi.co/api/v2/move/133/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"flash\",\"url\":\"https://pokeapi.co/api/v2/move/148/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}}]},{\"move\":{\"name\":\"rest\",\"url\":\"https://pokeapi.co/api/v2/move/156/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"substitute\",\"url\":\"https://pokeapi.co/api/v2/move/164/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"red-blue\",\"url\":\"https://pokeapi.co/api/v2/version-group/1/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"yellow\",\"url\":\"https://pokeapi.co/api/v2/version-group/2/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"snore\",\"url\":\"https://pokeapi.co/api/v2/move/173/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"curse\",\"url\":\"https://pokeapi.co/api/v2/move/174/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"protect\",\"url\":\"https://pokeapi.co/api/v2/move/182/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"sludge-bomb\",\"url\":\"https://pokeapi.co/api/v2/move/188/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"mud-slap\",\"url\":\"https://pokeapi.co/api/v2/move/189/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}}]},{\"move\":{\"name\":\"outrage\",\"url\":\"https://pokeapi.co/api/v2/move/200/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}}]},{\"move\":{\"name\":\"giga-drain\",\"url\":\"https://pokeapi.co/api/v2/move/202/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"endure\",\"url\":\"https://pokeapi.co/api/v2/move/203/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"charm\",\"url\":\"https://pokeapi.co/api/v2/move/204/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"false-swipe\",\"url\":\"https://pokeapi.co/api/v2/move/206/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"swagger\",\"url\":\"https://pokeapi.co/api/v2/move/207/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"fury-cutter\",\"url\":\"https://pokeapi.co/api/v2/move/210/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}}]},{\"move\":{\"name\":\"attract\",\"url\":\"https://pokeapi.co/api/v2/move/213/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"sleep-talk\",\"url\":\"https://pokeapi.co/api/v2/move/214/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"return\",\"url\":\"https://pokeapi.co/api/v2/move/216/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"frustration\",\"url\":\"https://pokeapi.co/api/v2/move/218/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"safeguard\",\"url\":\"https://pokeapi.co/api/v2/move/219/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"sweet-scent\",\"url\":\"https://pokeapi.co/api/v2/move/230/\"},\"version_group_details\":[{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":25,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":21,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":24,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"synthesis\",\"url\":\"https://pokeapi.co/api/v2/move/235/\"},\"version_group_details\":[{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":39,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":33,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":27,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"hidden-power\",\"url\":\"https://pokeapi.co/api/v2/move/237/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"sunny-day\",\"url\":\"https://pokeapi.co/api/v2/move/241/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"gold-silver\",\"url\":\"https://pokeapi.co/api/v2/version-group/3/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"crystal\",\"url\":\"https://pokeapi.co/api/v2/version-group/4/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"rock-smash\",\"url\":\"https://pokeapi.co/api/v2/move/249/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}}]},{\"move\":{\"name\":\"facade\",\"url\":\"https://pokeapi.co/api/v2/move/263/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"lets-go-pikachu-lets-go-eevee\",\"url\":\"https://pokeapi.co/api/v2/version-group/19/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"nature-power\",\"url\":\"https://pokeapi.co/api/v2/move/267/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"helping-hand\",\"url\":\"https://pokeapi.co/api/v2/move/270/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"ingrain\",\"url\":\"https://pokeapi.co/api/v2/move/275/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"knock-off\",\"url\":\"https://pokeapi.co/api/v2/move/282/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"secret-power\",\"url\":\"https://pokeapi.co/api/v2/move/290/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}}]},{\"move\":{\"name\":\"weather-ball\",\"url\":\"https://pokeapi.co/api/v2/move/311/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"grass-whistle\",\"url\":\"https://pokeapi.co/api/v2/move/320/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"bullet-seed\",\"url\":\"https://pokeapi.co/api/v2/move/331/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"colosseum\",\"url\":\"https://pokeapi.co/api/v2/version-group/12/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"xd\",\"url\":\"https://pokeapi.co/api/v2/version-group/13/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"magical-leaf\",\"url\":\"https://pokeapi.co/api/v2/move/345/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ruby-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/5/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"emerald\",\"url\":\"https://pokeapi.co/api/v2/version-group/6/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"firered-leafgreen\",\"url\":\"https://pokeapi.co/api/v2/version-group/7/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"natural-gift\",\"url\":\"https://pokeapi.co/api/v2/move/363/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}}]},{\"move\":{\"name\":\"worry-seed\",\"url\":\"https://pokeapi.co/api/v2/move/388/\"},\"version_group_details\":[{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":31,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":30,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"seed-bomb\",\"url\":\"https://pokeapi.co/api/v2/move/402/\"},\"version_group_details\":[{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":37,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":18,\"move_learn_method\":{\"name\":\"level-up\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/1/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"energy-ball\",\"url\":\"https://pokeapi.co/api/v2/move/412/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"leaf-storm\",\"url\":\"https://pokeapi.co/api/v2/move/437/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"power-whip\",\"url\":\"https://pokeapi.co/api/v2/move/438/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"captivate\",\"url\":\"https://pokeapi.co/api/v2/move/445/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}}]},{\"move\":{\"name\":\"grass-knot\",\"url\":\"https://pokeapi.co/api/v2/move/447/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"diamond-pearl\",\"url\":\"https://pokeapi.co/api/v2/version-group/8/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"platinum\",\"url\":\"https://pokeapi.co/api/v2/version-group/9/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"heartgold-soulsilver\",\"url\":\"https://pokeapi.co/api/v2/version-group/10/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"venoshock\",\"url\":\"https://pokeapi.co/api/v2/move/474/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"round\",\"url\":\"https://pokeapi.co/api/v2/move/496/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"echoed-voice\",\"url\":\"https://pokeapi.co/api/v2/move/497/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"grass-pledge\",\"url\":\"https://pokeapi.co/api/v2/move/520/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-white\",\"url\":\"https://pokeapi.co/api/v2/version-group/11/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"black-2-white-2\",\"url\":\"https://pokeapi.co/api/v2/version-group/14/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"work-up\",\"url\":\"https://pokeapi.co/api/v2/move/526/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"grassy-terrain\",\"url\":\"https://pokeapi.co/api/v2/move/580/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"egg\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/2/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]},{\"move\":{\"name\":\"confide\",\"url\":\"https://pokeapi.co/api/v2/move/590/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"x-y\",\"url\":\"https://pokeapi.co/api/v2/version-group/15/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"omega-ruby-alpha-sapphire\",\"url\":\"https://pokeapi.co/api/v2/version-group/16/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"sun-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/17/\"}},{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"machine\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/4/\"},\"version_group\":{\"name\":\"ultra-sun-ultra-moon\",\"url\":\"https://pokeapi.co/api/v2/version-group/18/\"}}]},{\"move\":{\"name\":\"grassy-glide\",\"url\":\"https://pokeapi.co/api/v2/move/803/\"},\"version_group_details\":[{\"level_learned_at\":0,\"move_learn_method\":{\"name\":\"tutor\",\"url\":\"https://pokeapi.co/api/v2/move-learn-method/3/\"},\"version_group\":{\"name\":\"sword-shield\",\"url\":\"https://pokeapi.co/api/v2/version-group/20/\"}}]}],\"name\":\"bulbasaur\",\"order\":1,\"past_types\":[],\"species\":{\"name\":\"bulbasaur\",\"url\":\"https://pokeapi.co/api/v2/pokemon-species/1/\"},\"sprites\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/1.png\",\"back_female\":null,\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/1.png\",\"back_shiny_female\":null,\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/1.png\",\"front_shiny_female\":null,\"other\":{\"dream_world\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/dream-world/1.svg\",\"front_female\":null},\"home\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/home/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/home/shiny/1.png\",\"front_shiny_female\":null},\"official-artwork\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/1.png\"}},\"versions\":{\"generation-i\":{\"red-blue\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/red-blue/back/1.png\",\"back_gray\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/red-blue/back/gray/1.png\",\"back_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/red-blue/transparent/back/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/red-blue/1.png\",\"front_gray\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/red-blue/gray/1.png\",\"front_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/red-blue/transparent/1.png\"},\"yellow\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/yellow/back/1.png\",\"back_gray\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/yellow/back/gray/1.png\",\"back_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/yellow/transparent/back/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/yellow/1.png\",\"front_gray\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/yellow/gray/1.png\",\"front_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-i/yellow/transparent/1.png\"}},\"generation-ii\":{\"crystal\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/back/1.png\",\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/back/shiny/1.png\",\"back_shiny_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/transparent/back/shiny/1.png\",\"back_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/transparent/back/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/1.png\",\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/shiny/1.png\",\"front_shiny_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/transparent/shiny/1.png\",\"front_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/crystal/transparent/1.png\"},\"gold\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/gold/back/1.png\",\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/gold/back/shiny/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/gold/1.png\",\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/gold/shiny/1.png\",\"front_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/gold/transparent/1.png\"},\"silver\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/silver/back/1.png\",\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/silver/back/shiny/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/silver/1.png\",\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/silver/shiny/1.png\",\"front_transparent\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-ii/silver/transparent/1.png\"}},\"generation-iii\":{\"emerald\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/emerald/1.png\",\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/emerald/shiny/1.png\"},\"firered-leafgreen\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/firered-leafgreen/back/1.png\",\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/firered-leafgreen/back/shiny/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/firered-leafgreen/1.png\",\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/firered-leafgreen/shiny/1.png\"},\"ruby-sapphire\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/ruby-sapphire/back/1.png\",\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/ruby-sapphire/back/shiny/1.png\",\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/ruby-sapphire/1.png\",\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iii/ruby-sapphire/shiny/1.png\"}},\"generation-iv\":{\"diamond-pearl\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/diamond-pearl/back/1.png\",\"back_female\":null,\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/diamond-pearl/back/shiny/1.png\",\"back_shiny_female\":null,\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/diamond-pearl/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/diamond-pearl/shiny/1.png\",\"front_shiny_female\":null},\"heartgold-soulsilver\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/heartgold-soulsilver/back/1.png\",\"back_female\":null,\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/heartgold-soulsilver/back/shiny/1.png\",\"back_shiny_female\":null,\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/heartgold-soulsilver/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/heartgold-soulsilver/shiny/1.png\",\"front_shiny_female\":null},\"platinum\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/platinum/back/1.png\",\"back_female\":null,\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/platinum/back/shiny/1.png\",\"back_shiny_female\":null,\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/platinum/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-iv/platinum/shiny/1.png\",\"front_shiny_female\":null}},\"generation-v\":{\"black-white\":{\"animated\":{\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/animated/back/1.gif\",\"back_female\":null,\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/animated/back/shiny/1.gif\",\"back_shiny_female\":null,\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/animated/1.gif\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/animated/shiny/1.gif\",\"front_shiny_female\":null},\"back_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/back/1.png\",\"back_female\":null,\"back_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/back/shiny/1.png\",\"back_shiny_female\":null,\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-v/black-white/shiny/1.png\",\"front_shiny_female\":null}},\"generation-vi\":{\"omegaruby-alphasapphire\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vi/omegaruby-alphasapphire/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vi/omegaruby-alphasapphire/shiny/1.png\",\"front_shiny_female\":null},\"x-y\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vi/x-y/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vi/x-y/shiny/1.png\",\"front_shiny_female\":null}},\"generation-vii\":{\"icons\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vii/icons/1.png\",\"front_female\":null},\"ultra-sun-ultra-moon\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vii/ultra-sun-ultra-moon/1.png\",\"front_female\":null,\"front_shiny\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-vii/ultra-sun-ultra-moon/shiny/1.png\",\"front_shiny_female\":null}},\"generation-viii\":{\"icons\":{\"front_default\":\"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/versions/generation-viii/icons/1.png\",\"front_female\":null}}}},\"stats\":[{\"base_stat\":45,\"effort\":0,\"stat\":{\"name\":\"hp\",\"url\":\"https://pokeapi.co/api/v2/stat/1/\"}},{\"base_stat\":49,\"effort\":0,\"stat\":{\"name\":\"attack\",\"url\":\"https://pokeapi.co/api/v2/stat/2/\"}},{\"base_stat\":49,\"effort\":0,\"stat\":{\"name\":\"defense\",\"url\":\"https://pokeapi.co/api/v2/stat/3/\"}},{\"base_stat\":65,\"effort\":1,\"stat\":{\"name\":\"special-attack\",\"url\":\"https://pokeapi.co/api/v2/stat/4/\"}},{\"base_stat\":65,\"effort\":0,\"stat\":{\"name\":\"special-defense\",\"url\":\"https://pokeapi.co/api/v2/stat/5/\"}},{\"base_stat\":45,\"effort\":0,\"stat\":{\"name\":\"speed\",\"url\":\"https://pokeapi.co/api/v2/stat/6/\"}}],\"types\":[{\"slot\":1,\"type\":{\"name\":\"grass\",\"url\":\"https://pokeapi.co/api/v2/type/12/\"}},{\"slot\":2,\"type\":{\"name\":\"poison\",\"url\":\"https://pokeapi.co/api/v2/type/4/\"}}],\"weight\":69}"
  },
  {
    "path": "tests/corpus/tiny.json",
    "content": "{\n\t\"people\": [\n\t\t{\"first-name\": \"Bob\", \"age\": 32, \"occupation\": \"Plumber\", \"full-time\": true},\n\t\t{\"first-name\": \"Alice\", \"age\": 28, \"occupation\": \"Programmer\", \"full-time\": true},\n\t\t{\"first-name\": \"Bernard\", \"age\": 36, \"occupation\": null, \"full-time\": null},\n\t\t{\"first-name\": \"El\", \"age\": 57, \"occupation\": \"Programmer\", \"full-time\": false}\n\t]\n}\n"
  },
  {
    "path": "tests/package.json",
    "content": "{\n  \"type\": \"module\"\n}\n"
  },
  {
    "path": "tests/test.js",
    "content": "import * as jcof from \"../implementations/javascript/jcof.js\";\nimport * as fs from \"fs\";\n\nlet corpora = [\n\t\"tiny\",\n\t\"circuitsim\",\n\t\"pokemon\",\n\t\"pokedex\",\n\t\"madrid\",\n\t\"meteorites\",\n\t\"comets\",\n];\n\nfunction deepDiff(a, b) {\n\tif (a == b) {\n\t\treturn null;\n\t}\n\n\tif (typeof a != typeof b) {\n\t\treturn [typeof a, typeof b];\n\t}\n\n\tif (a == null) {\n\t\treturn [\"null, non-null\"];\n\t} else if (b == null) {\n\t\treturn [\"non-null\", \"null\"];\n\t}\n\n\tif ((a instanceof Array) && !(b instanceof Array)) {\n\t\treturn [\"array\", \"non-array\"];\n\t} else if (!(a instanceof Array) && (b instanceof Array)) {\n\t\treturn [\"non-array\", \"array\"];\n\t}\n\n\tif (typeof a != \"object\") {\n\t\treturn [a, b];\n\t}\n\n\tif (a instanceof Array && b instanceof Array) {\n\t\tif (a.length != b.length) {\n\t\t\treturn [`|${a.length}|`, `|${b.length}|`];\n\t\t}\n\n\t\tfor (let i = 0; i < a.length; ++i) {\n\t\t\tlet diff = deepDiff(a[i], b[i]);\n\t\t\tif (diff) {\n\t\t\t\tlet d = {};\n\t\t\t\td[i] = diff;\n\t\t\t\treturn d;\n\t\t\t}\n\t\t}\n\n\t\treturn null;\n\t}\n\n\tlet keysA = Object.keys(a).sort();\n\tlet keysB = Object.keys(b).sort();\n\tlet keysDiff = deepDiff(keysA, keysB);\n\tif (keysDiff) {\n\t\treturn {\"$keys\": keysDiff};\n\t}\n\n\tfor (let key of keysA) {\n\t\tlet diff = deepDiff(a[key], b[key]);\n\t\tif (diff) {\n\t\t\tlet obj = {};\n\t\t\tobj[key] = diff;\n\t\t\treturn obj;\n\t\t}\n\t}\n\n\treturn null;\n}\n\nfunction strtime(t) {\n\tif (t > 1) {\n\t\treturn t.toFixed(2) + \"s\";\n\t} else if (t > 0.0001) {\n\t\treturn (t * 1000).toFixed(2) + \"ms\";\n\t} else {\n\t\treturn (t * 1000000).toFixed(2) + \"µs\";\n\t}\n}\n\nfunction compare(corpus) {\n\tlet text = fs.readFileSync(`corpus/${corpus}.json`, \"utf-8\");\n\tlet obj = JSON.parse(text);\n\n\tconsole.log(corpus + \".json:\");\n\tlet jsonEnc = JSON.stringify(obj);\n\tconsole.log(\"  JSON:\", jsonEnc.length, \"bytes\");\n\tfs.writeFileSync(`output/${corpus}.json`, jsonEnc);\n\n\tlet jcofEnc = jcof.stringify(obj);\n\tfs.writeFileSync(`output/${corpus}.jcof`, jcofEnc);\n\tlet parsed = jcof.parse(jcofEnc);\n\tlet efficiency = (jcofEnc.length / jsonEnc.length).toFixed(3);\n\tconsole.log(\"  JCOF:\", jcofEnc.length, \"bytes\", \"(\" + efficiency + \"x)\");\n\n\tlet diff = deepDiff(parsed, obj);\n\tif (diff) {\n\t\tconsole.error(`Oh no, ${name} produced a wrong object!`);\n\t\tconsole.log(JSON.stringify(diff));\n\t}\n}\n\nfs.mkdir(\"output\", () => {\n\tcorpora.forEach(compare);\n});\n"
  }
]