Repository: mortie/jcof Branch: main Commit: 1dfa554d8640 Files: 17 Total size: 684.1 KB Directory structure: gitextract_8_mn5i3v/ ├── LICENSE ├── README.md ├── implementations/ │ └── javascript/ │ ├── README.md │ ├── jcof.js │ └── package.json ├── jcof.bnf └── tests/ ├── .gitignore ├── Makefile ├── corpus/ │ ├── circuitsim.json │ ├── comets.json │ ├── madrid.json │ ├── meteorites.json │ ├── pokedex.json │ ├── pokemon.json │ └── tiny.json ├── package.json └── test.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: LICENSE ================================================ ISC License Copyright (c) 2022 Martin Dørum Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ================================================ FILE: README.md ================================================ # JCOF: JSON-like Compact Object Format A more efficient way to represent JSON-style objects. ## Status This format isn't nailed down yet. Most changes will likely be additive, such that existing JCOF documents will remain valid, but nothing is guaranteed. Use at your own risk. In its current form, JCOF is suitable for closed systems where one party controls every producer and consumer and where every implementation can be updated at once. ## About JCOF tries to be a drop-in replacement for JSON, with most of the same semantics, but with a much more compact representation of objects. The main way it does this is to introduce a string table at the beginning of the object, and then replace all strings with indexes into that string table. It also employs a few extra tricks to make objects as small as possible, without losing the most important benefits of JSON. Most importantly, it remains a text-based, schemaless format. The following JSON object: ```json { "people": [ {"first-name": "Bob", "age": 32, "occupation": "Plumber", "full-time": true}, {"first-name": "Alice", "age": 28, "occupation": "Programmer", "full-time": true}, {"first-name": "Bernard", "age": 36, "occupation": null, "full-time": null}, {"first-name": "El", "age": 57, "occupation": "Programmer", "full-time": false} ] } ``` could be represented as the following JCOF object: ``` Programmer;"age""first-name""full-time""occupation"; {"people"[(0,iw"Bob"b"Plumber")(0,is"Alice"b,s0)(0,iA"Bernard"n,n)(0,iV"El"B,s0)]} ``` Minimized, the JSON is 299 bytes, with 71.5 bytes on average per person object. The JCOF is 134 bytes, with only 17.5 bytes per person object; that's 0.45x the size in total, and 0.23x the size per person object. The reason the JCOF is so much smaller is threefold: 1. It has a string table, so that strings which occur multiple times only have to be included in the JCOF document once. In this example object, the only duplicated string is "Programmer". 2. It has an object shapes table, so that object shapes which occur multiple times only have to have their keys encoded once. In this example object, the only duplicated object shape is `{"age", "first-name", "full-time", "occupation"}`. 3. It has more compact encodings for various values and syntax. Large integers can be encoded as base 62 rather than base 10, booleans and null are encoded using single characters, and separator characters can be skipped where that results in an unambiguous document. ## Rationale I was making a JSON-based serialization format for a game I was working on, but found myself making trade-offs between space efficiency and descriptive key names, so decided to make a format which makes that a non-issue. I then kept iterating on it until I had what I call JCOF today. In most cases, you would use plain JSON, or if size is a concern, you would use gzipped JSON. But there are times when size is a concern and you can't reasonably use gzip; for example, gzipping stuff from JavaScript in the browser is inconvenient until [TextEncoderStream](https://developer.mozilla.org/en-US/docs/Web/API/TextEncoderStream) is supported in Firefox, and having a smaller uncompressed encoding can be an advantage some cases even where gzip is used. I've also observed significant reductions in size between compressed JSON and compressed JCOF in certain cases. I'm publishing it because other people may find it useful too. If you don't find it useful, feel free to disregard it. ## Reference implementations The only reference implementation currently is the javascript one, in [implementations/javascript/jcof.js](implementations/javascript/jcof.js). It's published on NPM here: https://www.npmjs.com/package/jcof ## Benchmarks This is the sizes of various documents in JSON compared to JCOF (from the test suite): ``` tiny.json: JSON: 299 bytes JCOF: 134 bytes (0.448x) circuitsim.json: JSON: 8315 bytes JCOF: 2093 bytes (0.252x) pokemon.json: JSON: 219635 bytes JCOF: 39650 bytes (0.181x) pokedex.json: JSON: 56812 bytes JCOF: 23132 bytes (0.407x) madrid.json: JSON: 37960 bytes JCOF: 11923 bytes (0.314x) meteorites.json: JSON: 244920 bytes JCOF: 87028 bytes (0.355x) comets.json: JSON: 51949 bytes JCOF: 37480 bytes (0.721x) ```` ## The format Here's the grammar which describes JCOF: ```ebnf grammar ::= string-table ';' object-shape-table ';' value string-table ::= (string (','? string)*)? string ::= plain-string | json-string plain-string ::= [a-zA-Z0-9]+ json-string ::= [https://datatracker.ietf.org/doc/html/rfc8259#section-7] object-shape-table ::= (object-shape (',' object-shape)*)? object-shape ::= object-key (':'? object-key)* object-key ::= base62 | json-string base62 ::= [0-9a-zA-Z]+ value ::= array-value | object-value | number-value | string-value | bool-value | null-value array-value ::= '[' (value (','? value)*)? ']' object-value ::= shaped-object-value | keyed-object-value shaped-object-value ::= '(' base62 (','? value)* ')' keyed-object-value ::= '{' (key-value-pair (','? key-value-pair)*)? '}' key-value-pair ::= object-key ':'? value number-value ::= 'i' base62 | 'I' base62 | 'finf' | 'fInf' | 'fnan' | float-value float-value ::= '-'? [0-9]+ ('.' [0-9]+)? (('e' | 'E') ('-' | '+')? [0-9]+)? string-value ::= 's' base62 | json-string bool-value ::= 'b' | 'B' null-value ::= 'n' ``` See the bottom of the readme for a [railroad diagram](#railroad-diagram). In addition to the grammar, you should know the following: ### Many separators are optional The grammar contains optional separators (`','?`, `':'?`). These separators can be skipped if either the character before or the character after is any of the following: `[`, `]`, `{`, `}`, `(`, `)`, `,`, `:` or `"`. This saves a bunch of bytes. JCOF generators can choose to always emit separators, but parsers must accept JCOF documents with missing separators. ### The string table All JCOF objects start with a string table, which is a list of strings separated by an optional `,`. ### The object shapes table An "object shape" is defined as a list of keys. If you have a bunch of objects with the same keys, it's usually advantageous to define that set of keys once in the object shapes table and encode the objects with the shaped objects syntax. An object shape is a list of object keys optionally separated by `:`, and the object shape table is a list of object shapes (non-optionally) separated by `,` ### Base62 Base62 encoding just refers to writing integer numbers in base 62 rather than base 10. This lets us use 0-9, a-z and A-Z as digits. The characters from `0` to `9` represent 0-9, the characters `a` to `z` represent 10-35, and the characters `A` to `Z` represent 36-61. ### Values A value can be: * An array literal: `[`, followed by 0 or more values, followed by `]` * A shaped object literal: `(`, followed by an object shape index, followed by values, followed by `)` * The object shape index is a base62-encoded index into the object shapes table * An object literal: `{`, followed by 0 or more key-value pairs, followed by `}` * A key-value pair is a base62 index into the header, followed by a `:`, followed by a value * A string reference: `s` followed by a base62 index into the header * A JSON string literal * A number literal: * `i` followed by a base62 number: A positive integer * `I` followed by a base62 number: A negative integer * A floating point number written in decimal, with an optional fractional part and an optional exponent part * A bool literal: `b`: true `B`: false * A null literal: `n` ### Railroad diagram generated with [bnf-railroad-generator](https://github.com/mortie/bnf-railroad-generator) ![railroad diagram](railroad-diagram.png) ================================================ FILE: implementations/javascript/README.md ================================================ # JCOF: JSON-like Compact Object Format A more efficient way to represent JSON-style objects. This Javascript implementation exposes two functions: `stringify` and `parse`. Read more at https://github.com/mortie/jcof. ## Example ```javascript import * as jcof from 'jcof'; let exampleObject = { people: [ {"first-name": "Bob", "age": 32, "occupation": "Plumber", "full-time": true}, {"first-name": "Alice", "age": 28, "occupation": "Programmer", "full-time": true}, {"first-name": "Bernard", "age": 36, "occupation": null, "full-time": null}, {"first-name": "El", "age": 57, "occupation": "Programmer", "full-time": false} ] }; let encoded = jcof.stringify(exampleObject); console.log("JCOF-encoded object:", encoded); let decoded = jcof.parse(encoded); console.log("Decoded object:", decoded); ``` ================================================ FILE: implementations/javascript/jcof.js ================================================ /* ISC License Copyright (c) 2022 Martin Dørum Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ let b62alphabet = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; let b62alphanum = {}; for (let i = 0; i < b62alphabet.length; ++i) { b62alphanum[b62alphabet[i]] = i; } function isSep(ch) { return ch == '[' || ch == ']' || ch == '{' || ch == '}' || ch == '(' || ch == ')' || ch == ',' || ch == ':' || ch == '"'; } class StringWriter { constructor() { this.str = ""; this.nextMaybeSep = null; this.prevCh = null; } write(s) { if (this.maybeNextSep) { if (!isSep(this.prevCh) && !isSep(s[0])) { this.str += this.maybeNextSep; } this.maybeNextSep = null; } this.str += s; this.prevCh = s[s.length - 1]; } maybeSep(sep) { if (this.nextMaybeSep) { this.write(this.maybeNextSep); } this.maybeNextSep = sep; } } function analyzeValue(value, strings, objectShapes) { if (value instanceof Array) { for (let v of value) { analyzeValue(v, strings, objectShapes); } } else if (typeof value == "object" && value != null) { let keys = Object.keys(value).sort(); if (keys.length > 1) { let shapeHash = JSON.stringify(keys); let shape = objectShapes.get(shapeHash) if (shape == null) { objectShapes.set(shapeHash, {count: 1, keys}); } else { shape.count += 1; } } else if (keys.length == 1) { let string = strings.get(keys[0]); if (string == null) { strings.set(keys[0], {count: 1}); } else { string.count += 1; } } for (let key of keys) { analyzeValue(value[key], strings, objectShapes); } } else if (typeof value == "string" && value.length > 1) { let string = strings.get(value); if (string == null) { strings.set(value, {count: 1}); } else { string.count += 1; } } } function analyze(value) { let strings = new Map(); let objectShapes = new Map(); analyzeValue(value, strings, objectShapes); for (let [hash, shape] of objectShapes) { if (shape.count == 1) { objectShapes.delete(hash); } for (let key of shape.keys) { let string = strings.get(key); if (string == null) { strings.set(key, {count: 1}); } else { string.count += 1; } } } for (let [string, s] of strings) { if (s.count == 1) { strings.delete(string); } } let stringList = Array.from(strings.keys()); let stringIds = new Map(); stringList.sort((a, b) => strings.get(b).count - strings.get(a).count); for (let id = 0; id < stringList.length; ++id) { stringIds.set(stringList[id], id); } let objectShapeList = []; let objectShapeIds = new Map(); for (let [hash, shape] of objectShapes) { objectShapeIds.set(hash, objectShapeList.length); objectShapeList.push(shape.keys); } return {stringList, stringIds, objectShapeList, objectShapeIds}; } export function stringify(value) { let w = new StringWriter(); let meta = analyze(value); stringifyStringTable(w, meta); w.write(';'); stringifyObjectShapeTable(w, meta); w.write(';'); stringifyValue(w, meta, value); return w.str; } function stringifyStringTable(w, meta) { if (meta.stringList.length == 0) { return; } stringifyString(w, meta.stringList[0]); for (let i = 1; i < meta.stringList.length; ++i) { w.maybeSep(','); stringifyString(w, meta.stringList[i]); } } function stringifyString(w, string) { if (/^[a-zA-Z0-9]+$/.test(string)) { w.write(string); } else { w.write(JSON.stringify(string)); } } function stringifyObjectShapeTable(w, meta) { if (meta.objectShapeList.length == 0) { return; } stringifyObjectShape(w, meta, meta.objectShapeList[0]); for (let i = 1; i < meta.objectShapeList.length; ++i) { w.write(','); stringifyObjectShape(w, meta, meta.objectShapeList[i]); } } function stringifyObjectShape(w, meta, shape) { stringifyObjectKey(w, meta, shape[0]); for (let i = 1; i < shape.length; ++i) { w.maybeSep(':'); stringifyObjectKey(w, meta, shape[i]); } } function stringifyObjectKey(w, meta, key) { let id = meta.stringIds.get(key); if (id == null) { w.write(JSON.stringify(key)); } else { stringifyBase62(w, id); } } function stringifyBase62(w, num) { let str = ""; do { str += b62alphabet[num % 62]; num = Math.floor(num / 62); } while (num > 0); for (let i = str.length - 1; i >= 0; --i) { w.write(str[i]); } } function stringifyValue(w, meta, value) { if (value instanceof Array) { w.write('['); if (value.length == 0) { w.write(']'); return; } stringifyValue(w, meta, value[0]); for (let i = 1; i < value.length; ++i) { w.maybeSep(','); stringifyValue(w, meta, value[i]); } w.write(']'); } else if (typeof value == "object" && value != null) { let keys = Object.keys(value).sort(); let hash = JSON.stringify(keys); let shapeId = meta.objectShapeIds.get(hash); if (shapeId == null) { stringifyKeyedObjectValue(w, meta, value, keys); } else { stringifyShapedObjectValue(w, meta, value, keys, shapeId); } } else if (typeof value == "number") { if (value == Math.floor(value) && (value < 0 || value > 10)) { if (value < 0) { w.write('I'); stringifyBase62(w, -value); } else { w.write('i'); stringifyBase62(w, value); } } else if (value == Infinity) { w.write('n'); // JSON.stringify outputs null for Infinity } else if (value == -Infinity) { w.write('n'); // JSON.stringify outputs null for -Infinity } else if (isNaN(value)) { w.write('n'); // JSON.stringify outputs null for NaN } else { // JavaScript's float to string function seems to always generate a // JCOF-compatible string w.write(value.toString()); } } else if (typeof value == "string") { let stringId = meta.stringIds.get(value); if (stringId == null) { w.write(JSON.stringify(value)); } else { w.write('s'); stringifyBase62(w, stringId); } } else if (typeof value == "boolean") { w.write(value ? 'b' : 'B'); } else if (value == null) { w.write('n'); } else { throw new Error("Can't serialize value: " + value); } } function stringifyShapedObjectValue(w, meta, value, keys, shapeId) { w.write('('); stringifyBase62(w, shapeId); if (keys.length == 0) { w.write(')'); return; } for (let key of keys) { w.maybeSep(','); stringifyValue(w, meta, value[key]); } w.write(')'); } function stringifyKeyedObjectValue(w, meta, value, keys) { w.write('{'); if (keys.length == 0) { w.write('}'); return; } stringifyKeyValuePair(w, meta, keys[0], value[keys[0]]); for (let i = 1; i < keys.length; ++i) { w.maybeSep(','); stringifyKeyValuePair(w, meta, keys[i], value[keys[i]]); }; w.write('}'); } function stringifyKeyValuePair(w, meta, key, val) { stringifyObjectKey(w, meta, key); w.maybeSep(':'); stringifyValue(w, meta, val); } export class ParseError extends Error { constructor(msg, index) { super(msg); this.name = "ParseError"; this.index = index; } } class StringReader { constructor(str) { this.str = str; this.index = 0; } peek() { if (this.index >= this.str.length) { return null; } else { return this.str[this.index]; } } consume() { this.index += 1; } skip(ch) { let peeked = this.peek(); if (peeked != ch) { this.error("Unexpected char: Expected '" + ch + "', got '" + peeked + "'"); } this.consume(); } maybeSkip(ch) { if (this.peek() == ch) { this.consume(); } } error(msg) { throw new ParseError(msg, this.index); } } export function parse(str) { let r = new StringReader(str); let stringTable = parseStringTable(r); r.skip(';'); let objectShapeTable = parseObjectShapeTable(r, stringTable); r.skip(';'); return parseValue(r, stringTable, objectShapeTable); } function parseStringTable(r) { if (r.peek() == ';') { return []; } let strings = []; while (true) { strings.push(parseString(r)); let ch = r.peek(); if (ch == ';') { return strings; } else if (ch == ',') { r.consume(); } } } function parseString(r) { if (r.peek() == '"') { return parseJsonString(r); } else if (/[a-zA-Z0-9]/.test(r.peek())) { return parsePlainString(r); } else { r.error("Expected plain string or JSON string"); } } function parsePlainString(r) { let str = r.peek(); r.consume(); let ch; while (true) { ch = r.peek(); if (!/[a-zA-Z0-9]/.test(ch)) { return str; } str += ch; r.consume(); } } function parseJsonString(r) { let start = r.index; r.skip('"'); while (true) { let ch = r.peek(); r.consume(); if (ch == '"') { break; } else if (ch == '\\') { r.consume(); } else if (ch == null) { r.error("Unexpected EOF"); } } return JSON.parse(r.str.substring(start, r.index)); } function parseObjectShapeTable(r, stringTable) { if (r.peek() == ';') { return []; } let shapes = []; while (true) { shapes.push(parseObjectShape(r, stringTable)); let ch = r.peek(); if (ch == ';') { return shapes; } else if (ch == ',') { r.consume(); } } } function parseObjectShape(r, stringTable) { let shape = []; while (true) { shape.push(parseObjectKey(r, stringTable)); let ch = r.peek(); if (ch == ',' || ch == ';') { return shape; } else if (ch == ':') { r.consume(); } } } function parseObjectKey(r, stringTable) { if (r.peek() == '"') { return parseJsonString(r); } else { let id = parseBase62(r); if (id >= stringTable.length) { r.error("String ID " + id + " out of range"); } return stringTable[id]; } } function parseBase62(r) { if (!/[0-9a-zA-Z]/.test(r.peek())) { r.error("Expected base62 value"); } let num = 0; while (true) { num *= 62; num += b62alphanum[r.peek()]; r.consume(); if (!/[0-9a-zA-Z]/.test(r.peek())) { return num; } } } function parseValue(r, stringTable, objectShapeTable) { let ch = r.peek(); if (ch == '[') { return parseArrayValue(r, stringTable, objectShapeTable); } else if (ch == '(') { return parseShapedObjectValue(r, stringTable, objectShapeTable); } else if (ch == '{') { return parseKeyedObjectValue(r, stringTable, objectShapeTable); } else if (/[iIf0-9\-]/.test(ch)) { return parseNumberValue(r); } else if (ch == 's' || ch == '"') { return parseStringValue(r, stringTable); } else if (ch == 'b') { r.consume(); return true; } else if (ch == 'B') { r.consume(); return false; } else if (ch == 'n') { r.consume(); return null; } else { r.error("Expected value, got '" + ch + "'"); } } function parseArrayValue(r, stringTable, objectShapeTable) { r.skip('['); if (r.peek() == ']') { r.consume(); return []; } let arr = []; while (true) { arr.push(parseValue(r, stringTable, objectShapeTable)); let ch = r.peek(); if (ch == ']') { r.consume(); return arr; } else if (ch == ',') { r.consume(); } } } function parseShapedObjectValue(r, stringTable, objectShapeTable) { r.skip('('); let shapeId = parseBase62(r); if (shapeId >= objectShapeTable.length) { r.error("Shape ID " + shapeId + " out of range"); } let shape = objectShapeTable[shapeId]; let obj = {}; for (let key of shape) { if (r.peek() == ',') { r.consume(); } obj[key] = parseValue(r, stringTable, objectShapeTable); } r.skip(')'); return obj; } function parseKeyedObjectValue(r, stringTable, objectShapeTable) { r.skip('{'); if (r.peek() == '}') { r.consume(); return {}; } let obj = {}; while (true) { let key = parseObjectKey(r, stringTable); if (r.peek() == ':') { r.consume(); } obj[key] = parseValue(r, stringTable, objectShapeTable); let ch = r.peek(); if (ch == ',') { r.consume(); } else if (ch == '}') { r.consume(); return obj; } } } function parseNumberValue(r) { let ch = r.peek(); if (ch == 'i') { r.consume(); return parseBase62(r); } else if (ch == 'I') { r.consume(); return -parseBase62(r); } else { return parseFloatValue(r); } } function parseFloatValue(r) { // Here, we read the float, but then use JavaScript's float parser, // because making a float parser and serializer pair // which can round-trip any number is apparently pretty hard let str = ""; let ch; if ((ch = r.peek()) == '-') { str += ch; r.consume(); } while (/[0-9]/.test(ch = r.peek())) { str += ch; r.consume(); } if (str == "" || str == "-") { r.error("Zero-length number in float literal"); } if ((ch = r.peek()) == '.') { str += ch; r.consume(); while (/[0-9]/.test(ch = r.peek())) { str += ch; r.consume(); } if (str[str.length - 1] == '.') { r.error("Zero-length fractional part in float literal"); } } ch = r.peek(); if (ch == 'e' || ch == 'E') { str += ch; r.consume(); ch = r.peek(); if (ch == '+' || ch == '-') { str += ch; r.consume(); } while (/[0-9]/.test(ch = r.peek())) { str += ch; r.consume(); } if (!/[0-9]/.test(str[str.length - 1])) { r.error("Zero-length exponential part in float literal"); } } return parseFloat(str); } function parseStringValue(r, stringTable) { if (r.peek() == '"') { return parseJsonString(r); } else { r.skip('s'); let id = parseBase62(r); if (id >= stringTable.length) { r.error("String ID " + id + " out of range"); } return stringTable[id]; } } ================================================ FILE: implementations/javascript/package.json ================================================ { "name": "jcof", "version": "1.0.2", "description": "JavaScript implementation of JCOF", "main": "jcof.js", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/mortie/jcof.git" }, "bugs": { "url": "https://github.com/mortie/jcof/issues" }, "homepage": "https://github.com/mortie/jcof#readme", "author": "Martin Dørum", "license": "ISC" } ================================================ FILE: jcof.bnf ================================================ grammar ::= string-table ';' object-shape-table ';' value string-table ::= (string (','? string)*)? string ::= plain-string | json-string plain-string ::= [a-zA-Z0-9]+ json-string ::= [https://datatracker.ietf.org/doc/html/rfc8259#section-7] object-shape-table ::= (object-shape (',' object-shape)*)? object-shape ::= object-key (':'? object-key)* object-key ::= base62 | json-string base62 ::= [0-9a-zA-Z]+ value ::= array-value | object-value | number-value | string-value | bool-value | null-value array-value ::= '[' (value (','? value)*)? ']' object-value ::= shaped-object-value | keyed-object-value shaped-object-value ::= '(' base62 (','? value)* ')' keyed-object-value ::= '{' (key-value-pair (','? key-value-pair)*)? '}' key-value-pair ::= object-key ':'? value number-value ::= 'i' base62 | 'I' base62 | float-value float-value ::= '-'? [0-9]+ ('.' [0-9]+)? (('e' | 'E') ('-' | '+')? [0-9]+)? string-value ::= 's' base62 | json-string bool-value ::= 'b' | 'B' null-value ::= 'n' ================================================ FILE: tests/.gitignore ================================================ /output ================================================ FILE: tests/Makefile ================================================ .PHONY: check check: node test.js ================================================ FILE: tests/corpus/circuitsim.json ================================================ {"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}]} ================================================ FILE: tests/corpus/comets.json ================================================ { "meta" : { "view" : { "id" : "7qz6-zrqt", "name" : "WISE NEA/COMET DISCOVERY STATISTICS", "assetType" : "dataset", "attribution" : "Near Earth Object Program", "attributionLink" : "http://neo.jpl.nasa.gov/stats/wise/", "averageRating" : 0, "category" : "Space Science", "createdAt" : 1427992829, "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/", "displayType" : "table", "downloadCount" : 2998, "hideFromCatalog" : false, "hideFromDataJson" : false, "indexUpdatedAt" : 1530128932, "newBackend" : true, "numberOfComments" : 0, "oid" : 12393317, "provenance" : "official", "publicationAppendEnabled" : false, "publicationDate" : 1437412744, "publicationGroup" : 2592697, "publicationStage" : "published", "rowClass" : "", "rowsUpdatedAt" : 1437412714, "rowsUpdatedBy" : "a6xx-j6mr", "tableId" : 3653577, "totalTimesRated" : 0, "viewCount" : 4438, "viewLastModified" : 1530128705, "viewType" : "tabular", "approvals" : [ { "reviewedAt" : 1437412744, "reviewedAutomatically" : true, "state" : "approved", "submissionId" : 650285, "submissionObject" : "public_audience_request", "submissionOutcome" : "change_audience", "submittedAt" : 1437412744, "workflowId" : 2019, "submissionDetails" : { "permissionType" : "READ" }, "submissionOutcomeApplication" : { "failureCount" : 0, "status" : "success" }, "submitter" : { "id" : "isxt-qkkm", "displayName" : "NASA Public Data" } } ], "clientContext" : { "clientContextVariables" : [ ], "inheritedVariables" : { } }, "columns" : [ { "id" : -1, "name" : "sid", "dataTypeName" : "meta_data", "fieldName" : ":sid", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "id", "dataTypeName" : "meta_data", "fieldName" : ":id", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "position", "dataTypeName" : "meta_data", "fieldName" : ":position", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "created_at", "dataTypeName" : "meta_data", "fieldName" : ":created_at", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "created_meta", "dataTypeName" : "meta_data", "fieldName" : ":created_meta", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "updated_at", "dataTypeName" : "meta_data", "fieldName" : ":updated_at", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "updated_meta", "dataTypeName" : "meta_data", "fieldName" : ":updated_meta", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : -1, "name" : "meta", "dataTypeName" : "meta_data", "fieldName" : ":meta", "position" : 0, "renderTypeName" : "meta_data", "format" : { }, "flags" : [ "hidden" ] }, { "id" : 213858267, "name" : "Designation", "dataTypeName" : "text", "fieldName" : "designation", "position" : 2, "renderTypeName" : "text", "tableColumnId" : 27309082, "width" : 232, "cachedContents" : { "non_null" : 202, "largest" : "P/2014 L2 (NEOWISE)", "null" : 0, "top" : [ { "item" : "C/2010 FB87 (WISE-Garradd)", "count" : 20 }, { "item" : "(2010 FJ81)", "count" : 19 }, { "item" : "(2010 FH81)", "count" : 18 }, { "item" : "(2010 FG81)", "count" : 17 }, { "item" : "(2010 FC81)", "count" : 16 }, { "item" : "(2010 FB81)", "count" : 15 }, { "item" : "(2010 FA81)", "count" : 14 }, { "item" : "(2010 FZ80)", "count" : 13 }, { "item" : "(2010 FY80)", "count" : 12 }, { "item" : "(2010 FX80)", "count" : 11 }, { "item" : "(2010 EX119)", "count" : 10 }, { "item" : "(2010 EN44)", "count" : 9 }, { "item" : "(2010 EX11)", "count" : 8 }, { "item" : "C/2010 E3 (WISE)", "count" : 7 }, { "item" : "(2010 DJ77)", "count" : 6 }, { "item" : "(2010 DH77)", "count" : 5 }, { "item" : "(2010 DG77)", "count" : 4 }, { "item" : "(2010 DM56)", "count" : 3 }, { "item" : "(2010 DJ56)", "count" : 2 }, { "item" : "(2010 DH56)", "count" : 1 } ], "smallest" : "(2010 AB78)" }, "format" : { } }, { "id" : 213858268, "name" : "Discovery Date YYYY-MM-DD", "dataTypeName" : "calendar_date", "fieldName" : "discovery_date", "position" : 3, "renderTypeName" : "calendar_date", "tableColumnId" : 27309083, "width" : 268, "cachedContents" : { "non_null" : 202, "largest" : "2015-04-17T00:00:00", "null" : 0, "top" : [ { "item" : "2010-06-23T00:00:00", "count" : 20 }, { "item" : "2010-06-14T00:00:00", "count" : 19 }, { "item" : "2010-06-02T00:00:00", "count" : 18 }, { "item" : "2010-05-11T00:00:00", "count" : 17 }, { "item" : "2010-05-10T00:00:00", "count" : 16 }, { "item" : "2010-04-25T00:00:00", "count" : 15 }, { "item" : "2010-04-20T00:00:00", "count" : 14 }, { "item" : "2010-04-14T00:00:00", "count" : 13 }, { "item" : "2010-04-10T00:00:00", "count" : 12 }, { "item" : "2010-03-28T00:00:00", "count" : 11 }, { "item" : "2010-03-31T00:00:00", "count" : 10 }, { "item" : "2010-03-30T00:00:00", "count" : 9 }, { "item" : "2010-02-20T00:00:00", "count" : 8 }, { "item" : "2010-02-19T00:00:00", "count" : 7 }, { "item" : "2010-02-23T00:00:00", "count" : 6 }, { "item" : "2010-02-18T00:00:00", "count" : 5 }, { "item" : "2010-02-16T00:00:00", "count" : 4 }, { "item" : "2010-02-28T00:00:00", "count" : 3 }, { "item" : "2010-02-26T00:00:00", "count" : 2 }, { "item" : "2010-02-25T00:00:00", "count" : 1 } ], "smallest" : "2010-01-12T00:00:00" }, "format" : { "view" : "date", "align" : "left" } }, { "id" : 213858295, "name" : "H (mag)", "dataTypeName" : "number", "fieldName" : "h_mag", "position" : 4, "renderTypeName" : "number", "tableColumnId" : 27309084, "width" : 172, "cachedContents" : { "non_null" : 181, "average" : "20.31049723756906", "largest" : "24.3", "null" : 21, "top" : [ { "item" : "19.7", "count" : 20 }, { "item" : "20.5", "count" : 19 }, { "item" : "19.5", "count" : 18 }, { "item" : "19.3", "count" : 17 }, { "item" : "21.1", "count" : 16 }, { "item" : "21.2", "count" : 15 }, { "item" : "20.1", "count" : 14 }, { "item" : "20", "count" : 13 }, { "item" : "21.6", "count" : 12 }, { "item" : "20.4", "count" : 11 }, { "item" : "21.3", "count" : 10 }, { "item" : "21.4", "count" : 9 }, { "item" : "22.5", "count" : 8 }, { "item" : "17.2", "count" : 7 }, { "item" : "18.7", "count" : 6 }, { "item" : "20.9", "count" : 5 }, { "item" : "20.7", "count" : 4 }, { "item" : "20.2", "count" : 3 }, { "item" : "19.6", "count" : 2 }, { "item" : "19.2", "count" : 1 } ], "smallest" : "15.6", "sum" : "3676.2" }, "format" : { "align" : "right" } }, { "id" : 213858270, "name" : "MOID (AU)", "dataTypeName" : "number", "fieldName" : "moid_au", "position" : 5, "renderTypeName" : "number", "tableColumnId" : 27309085, "width" : 196, "cachedContents" : { "non_null" : 202, "average" : "0.3305405940594059", "largest" : "6.373", "null" : 0, "top" : [ { "item" : "2.538", "count" : 20 }, { "item" : "0.128", "count" : 19 }, { "item" : "0.034", "count" : 18 }, { "item" : "0.019", "count" : 17 }, { "item" : "0.027", "count" : 16 }, { "item" : "0.096", "count" : 15 }, { "item" : "0.035", "count" : 14 }, { "item" : "0.297", "count" : 13 }, { "item" : "0.14", "count" : 12 }, { "item" : "0.535", "count" : 11 }, { "item" : "0.159", "count" : 10 }, { "item" : "0.023", "count" : 9 }, { "item" : "0.029", "count" : 8 }, { "item" : "1.546", "count" : 7 }, { "item" : "0.05", "count" : 6 }, { "item" : "0.146", "count" : 5 }, { "item" : "0.009", "count" : 4 }, { "item" : "0.006", "count" : 3 }, { "item" : "0.028", "count" : 2 }, { "item" : "0.333", "count" : 1 } ], "smallest" : "0.0002", "sum" : "66.7692" }, "format" : { "precisionStyle" : "standard", "noCommas" : "false", "align" : "right" } }, { "id" : 213858271, "name" : "q (AU)", "dataTypeName" : "number", "fieldName" : "q_au_1", "position" : 6, "renderTypeName" : "number", "tableColumnId" : 27309086, "width" : 160, "cachedContents" : { "non_null" : 202, "average" : "1.063514851485149", "largest" : "7.15", "null" : 0, "top" : [ { "item" : "0.97", "count" : 20 }, { "item" : "1.13", "count" : 19 }, { "item" : "1.04", "count" : 18 }, { "item" : "1.1", "count" : 17 }, { "item" : "1.05", "count" : 16 }, { "item" : "0.51", "count" : 15 }, { "item" : "0.99", "count" : 14 }, { "item" : "0.33", "count" : 13 }, { "item" : "0.87", "count" : 12 }, { "item" : "1.01", "count" : 11 }, { "item" : "0.95", "count" : 10 }, { "item" : "0.96", "count" : 9 }, { "item" : "0.92", "count" : 8 }, { "item" : "0.94", "count" : 7 }, { "item" : "1.59", "count" : 6 }, { "item" : "0.65", "count" : 5 }, { "item" : "0.98", "count" : 4 }, { "item" : "7.15", "count" : 3 }, { "item" : "4.25", "count" : 2 }, { "item" : "3.66", "count" : 1 } ], "smallest" : "0.14", "sum" : "214.83" }, "format" : { "precisionStyle" : "standard", "noCommas" : "false", "align" : "right" } }, { "id" : 213858299, "name" : "Q (AU)", "dataTypeName" : "number", "fieldName" : "q_au_2", "position" : 7, "renderTypeName" : "number", "tableColumnId" : 27309087, "width" : 160, "cachedContents" : { "non_null" : 200, "average" : "235.3495", "largest" : "23255.11", "null" : 2, "top" : [ { "item" : "1.59", "count" : 20 }, { "item" : "2", "count" : 19 }, { "item" : "2.31", "count" : 18 }, { "item" : "4.35", "count" : 17 }, { "item" : "4.14", "count" : 16 }, { "item" : "1.38", "count" : 15 }, { "item" : "4.8", "count" : 14 }, { "item" : "3.15", "count" : 13 }, { "item" : "3.04", "count" : 12 }, { "item" : "1.33", "count" : 11 }, { "item" : "1.06", "count" : 10 }, { "item" : "1.16", "count" : 9 }, { "item" : "5.58", "count" : 8 }, { "item" : "3.22", "count" : 7 }, { "item" : "1.69", "count" : 6 }, { "item" : "1.56", "count" : 5 }, { "item" : "3.51", "count" : 4 }, { "item" : "133.48", "count" : 3 }, { "item" : "4.83", "count" : 2 }, { "item" : "4.74", "count" : 1 } ], "smallest" : "1.04", "sum" : "47069.90" }, "format" : { "align" : "right" } }, { "id" : 213858300, "name" : "period (yr)", "dataTypeName" : "number", "fieldName" : "period_yr", "position" : 8, "renderTypeName" : "number", "tableColumnId" : 27309088, "width" : 220, "cachedContents" : { "non_null" : 200, "average" : "10723.7349", "largest" : "1254179.62", "null" : 2, "top" : [ { "item" : "3.42", "count" : 20 }, { "item" : "4.59", "count" : 19 }, { "item" : "2.14", "count" : 18 }, { "item" : "4.38", "count" : 17 }, { "item" : "4.14", "count" : 16 }, { "item" : "1.31", "count" : 15 }, { "item" : "4.56", "count" : 14 }, { "item" : "4.42", "count" : 13 }, { "item" : "3.19", "count" : 12 }, { "item" : "2.63", "count" : 11 }, { "item" : "1.22", "count" : 10 }, { "item" : "0.93", "count" : 9 }, { "item" : "5.9", "count" : 8 }, { "item" : "3.02", "count" : 7 }, { "item" : "1.49", "count" : 6 }, { "item" : "1.4", "count" : 5 }, { "item" : "3.35", "count" : 4 }, { "item" : "555.03", "count" : 3 }, { "item" : "4.54", "count" : 2 }, { "item" : "4.85", "count" : 1 } ], "smallest" : "0.72", "sum" : "2144746.98" }, "format" : { "align" : "right" } }, { "id" : 213858274, "name" : "i (deg)", "dataTypeName" : "number", "fieldName" : "i_deg", "position" : 9, "renderTypeName" : "number", "tableColumnId" : 27309089, "width" : 172, "cachedContents" : { "non_null" : 202, "average" : "29.38277227722772", "largest" : "162.3", "null" : 0, "top" : [ { "item" : "21.66", "count" : 20 }, { "item" : "42.54", "count" : 19 }, { "item" : "16.79", "count" : 18 }, { "item" : "7.97", "count" : 17 }, { "item" : "1.68", "count" : 16 }, { "item" : "9.48", "count" : 15 }, { "item" : "15.48", "count" : 14 }, { "item" : "27.34", "count" : 13 }, { "item" : "18.81", "count" : 12 }, { "item" : "36.96", "count" : 11 }, { "item" : "15.57", "count" : 10 }, { "item" : "10.18", "count" : 9 }, { "item" : "9.75", "count" : 8 }, { "item" : "96.48", "count" : 7 }, { "item" : "24.98", "count" : 6 }, { "item" : "34.38", "count" : 5 }, { "item" : "14.81", "count" : 4 }, { "item" : "25.61", "count" : 3 }, { "item" : "34.84", "count" : 2 }, { "item" : "33.67", "count" : 1 } ], "smallest" : "0.82", "sum" : "5935.32" }, "format" : { "precisionStyle" : "standard", "noCommas" : "false", "align" : "right" } }, { "id" : 213858275, "name" : "PHA", "dataTypeName" : "text", "fieldName" : "pha", "position" : 10, "renderTypeName" : "text", "tableColumnId" : 27309090, "width" : 136, "cachedContents" : { "non_null" : 202, "largest" : "Y", "null" : 0, "top" : [ { "item" : "Y", "count" : 20 }, { "item" : "N", "count" : 19 }, { "item" : "n/a", "count" : 18 } ], "smallest" : "N" }, "format" : { } }, { "id" : 213858276, "name" : "Orbit Class", "dataTypeName" : "text", "fieldName" : "orbit_class", "position" : 11, "renderTypeName" : "text", "tableColumnId" : 27309091, "width" : 232, "cachedContents" : { "non_null" : 202, "largest" : "Parabolic Comet", "null" : 0, "top" : [ { "item" : "Apollo", "count" : 20 }, { "item" : "Amor", "count" : 19 }, { "item" : "Aten", "count" : 18 }, { "item" : "Comet", "count" : 17 }, { "item" : "Jupiter-family Comet", "count" : 16 }, { "item" : "Halley-type Comet*", "count" : 15 }, { "item" : "Parabolic Comet", "count" : 14 }, { "item" : "Jupiter-family Comet*", "count" : 13 }, { "item" : "Encke-type Comet", "count" : 12 } ], "smallest" : "Amor" }, "format" : { } } ], "grants" : [ { "inherited" : false, "type" : "viewer", "flags" : [ "public" ] } ], "metadata" : { "rdfSubject" : "0", "rdfClass" : "", "custom_fields" : { "Common Core" : { "Contact Name" : "Alan Chamberlin", "Program Code" : "026:009", "Publisher" : "Alan Chamberlin", "Bureau Code" : "026:00" } }, "rowIdentifier" : "0", "rowLabel" : "NEA/Comets", "availableDisplayTypes" : [ "table", "fatrow", "page" ], "renderTypeConfig" : { "visible" : { "table" : true } } }, "owner" : { "id" : "isxt-qkkm", "displayName" : "NASA Public Data", "profileImageUrlLarge" : "/api/users/isxt-qkkm/profile_images/LARGE", "profileImageUrlMedium" : "/api/users/isxt-qkkm/profile_images/THUMB", "profileImageUrlSmall" : "/api/users/isxt-qkkm/profile_images/TINY", "screenName" : "NASA Public Data", "type" : "interactive" }, "query" : { }, "rights" : [ "read" ], "tableAuthor" : { "id" : "isxt-qkkm", "displayName" : "NASA Public Data", "profileImageUrlLarge" : "/api/users/isxt-qkkm/profile_images/LARGE", "profileImageUrlMedium" : "/api/users/isxt-qkkm/profile_images/THUMB", "profileImageUrlSmall" : "/api/users/isxt-qkkm/profile_images/TINY", "screenName" : "NASA Public Data", "type" : "interactive" }, "tags" : [ "spaceapps", "outerspace", "airburstvisual", "intermediate", "model", "platform", "data visualization" ], "flags" : [ "default", "ownerMayBeContacted", "restorable", "restorePossibleForType" ] } }, "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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*" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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*" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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*" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] , [ "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" ] ] } ================================================ FILE: tests/corpus/madrid.json ================================================ { "data": [ { "municipio_codigo": "001", "densidad_por_km2": 3.019213174748399, "municipio_codigo_ine": "280014", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Acebeda (La)", "nuts4_codigo": "06", "superficie_km2": 21.86 }, { "municipio_codigo": "002", "densidad_por_km2": 225.0, "municipio_codigo_ine": "280029", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Ajalvir", "nuts4_codigo": "03", "superficie_km2": 19.8 }, { "municipio_codigo": "003", "densidad_por_km2": 7.743190661478599, "municipio_codigo_ine": "280035", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Alameda del Valle", "nuts4_codigo": "06", "superficie_km2": 25.7 }, { "municipio_codigo": "004", "densidad_por_km2": 415.8636363636364, "municipio_codigo_ine": "280040", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Alamo (El)", "nuts4_codigo": "09", "superficie_km2": 22.0 }, { "municipio_codigo": "005", "densidad_por_km2": 2205.311542390193, "municipio_codigo_ine": "280053", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Alcalá de Henares", "nuts4_codigo": "03", "superficie_km2": 88.11000000000004 }, { "municipio_codigo": "006", "densidad_por_km2": 2538.992042440319, "municipio_codigo_ine": "280066", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "Alcobendas", "nuts4_codigo": "02", "superficie_km2": 45.23999999999999 }, { "municipio_codigo": "007", "densidad_por_km2": 5008.668453976766, "municipio_codigo_ine": "280072", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Alcorcón", "nuts4_codigo": "04", "superficie_km2": 33.56999999999999 }, { "municipio_codigo": "008", "densidad_por_km2": 50.63879210220674, "municipio_codigo_ine": "280088", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Aldea del Fresno", "nuts4_codigo": "09", "superficie_km2": 51.66 }, { "municipio_codigo": "009", "densidad_por_km2": 537.2007366482505, "municipio_codigo_ine": "280091", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "Algete", "nuts4_codigo": "02", "superficie_km2": 38.01 }, { "municipio_codigo": "010", "densidad_por_km2": 1124.8025276461294, "municipio_codigo_ine": "280105", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Alpedrete", "nuts4_codigo": "11", "superficie_km2": 12.66 }, { "municipio_codigo": "011", "densidad_por_km2": 13.12015503875969, "municipio_codigo_ine": "280112", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Ambite", "nuts4_codigo": "08", "superficie_km2": 51.6 }, { "municipio_codigo": "012", "densidad_por_km2": 57.34136174154701, "municipio_codigo_ine": "280127", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Anchuelo", "nuts4_codigo": "08", "superficie_km2": 21.59 }, { "municipio_codigo": "013", "densidad_por_km2": 307.9889952912544, "municipio_codigo_ine": "280133", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Aranjuez", "nuts4_codigo": "04", "superficie_km2": 189.01000000000002 }, { "municipio_codigo": "014", "densidad_por_km2": 670.4995639715959, "municipio_codigo_ine": "280148", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Arganda del Rey", "nuts4_codigo": "03", "superficie_km2": 80.27 }, { "municipio_codigo": "015", "densidad_por_km2": 1401.732435033686, "municipio_codigo_ine": "280151", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Arroyomolinos", "nuts4_codigo": "09", "superficie_km2": 20.780000000000005 }, { "municipio_codigo": "016", "densidad_por_km2": 3.4118888498065423, "municipio_codigo_ine": "280164", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Atazar (El)", "nuts4_codigo": "06", "superficie_km2": 28.43 }, { "municipio_codigo": "017", "densidad_por_km2": 75.374531835206, "municipio_codigo_ine": "280170", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Batres", "nuts4_codigo": "09", "superficie_km2": 21.36 }, { "municipio_codigo": "018", "densidad_por_km2": 184.1093117408907, "municipio_codigo_ine": "280186", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Becerril de la Sierra", "nuts4_codigo": "11", "superficie_km2": 29.64 }, { "municipio_codigo": "019", "densidad_por_km2": 67.63606148732862, "municipio_codigo_ine": "280199", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Belmonte de Tajo", "nuts4_codigo": "08", "superficie_km2": 24.07 }, { "municipio_codigo": "020", "densidad_por_km2": 13.885088919288647, "municipio_codigo_ine": "280203", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Berzosa del Lozoya", "nuts4_codigo": "06", "superficie_km2": 14.62 }, { "municipio_codigo": "021", "densidad_por_km2": 26.161971830985916, "municipio_codigo_ine": "280210", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Berrueco (El)", "nuts4_codigo": "06", "superficie_km2": 28.4 }, { "municipio_codigo": "022", "densidad_por_km2": 1086.1756015196281, "municipio_codigo_ine": "280225", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Boadilla del Monte", "nuts4_codigo": "05", "superficie_km2": 47.38000000000002 }, { "municipio_codigo": "023", "densidad_por_km2": 186.751269035533, "municipio_codigo_ine": "280231", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Boalo (El)", "nuts4_codigo": "11", "superficie_km2": 39.4 }, { "municipio_codigo": "024", "densidad_por_km2": 8.34336141195347, "municipio_codigo_ine": "280246", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Braojos", "nuts4_codigo": "06", "superficie_km2": 24.93 }, { "municipio_codigo": "025", "densidad_por_km2": 12.050078247261347, "municipio_codigo_ine": "280259", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Brea de Tajo", "nuts4_codigo": "08", "superficie_km2": 44.73 }, { "municipio_codigo": "026", "densidad_por_km2": 210.96196868008948, "municipio_codigo_ine": "280262", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Brunete", "nuts4_codigo": "05", "superficie_km2": 49.17 }, { "municipio_codigo": "027", "densidad_por_km2": 71.52777777777777, "municipio_codigo_ine": "280278", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Buitrago del Lozoya", "nuts4_codigo": "06", "superficie_km2": 25.92 }, { "municipio_codigo": "028", "densidad_por_km2": 42.740067699982184, "municipio_codigo_ine": "280284", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Bustarviejo", "nuts4_codigo": "06", "superficie_km2": 56.13 }, { "municipio_codigo": "029", "densidad_por_km2": 51.556842867487326, "municipio_codigo_ine": "280297", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Cabanillas de la Sierra", "nuts4_codigo": "06", "superficie_km2": 13.81 }, { "municipio_codigo": "030", "densidad_por_km2": 116.07949412827462, "municipio_codigo_ine": "280301", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Cabrera (La)", "nuts4_codigo": "06", "superficie_km2": 22.14 }, { "municipio_codigo": "031", "densidad_por_km2": 63.81688963210702, "municipio_codigo_ine": "280318", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Cadalso de los Vidrios", "nuts4_codigo": "10", "superficie_km2": 47.84 }, { "municipio_codigo": "032", "densidad_por_km2": 201.5362731152205, "municipio_codigo_ine": "280323", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Camarma de Esteruelas", "nuts4_codigo": "07", "superficie_km2": 35.15 }, { "municipio_codigo": "033", "densidad_por_km2": 97.08502024291498, "municipio_codigo_ine": "280339", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Campo Real", "nuts4_codigo": "08", "superficie_km2": 61.75 }, { "municipio_codigo": "034", "densidad_por_km2": 8.268733850129198, "municipio_codigo_ine": "280344", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Canencia", "nuts4_codigo": "06", "superficie_km2": 54.18 }, { "municipio_codigo": "035", "densidad_por_km2": 40.72208228379513, "municipio_codigo_ine": "280357", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Carabaña", "nuts4_codigo": "08", "superficie_km2": 47.64 }, { "municipio_codigo": "036", "densidad_por_km2": 684.8030018761726, "municipio_codigo_ine": "280360", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Casarrubuelos", "nuts4_codigo": "09", "superficie_km2": 5.33 }, { "municipio_codigo": "037", "densidad_por_km2": 29.06959706959707, "municipio_codigo_ine": "280376", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Cenicientos", "nuts4_codigo": "10", "superficie_km2": 68.25 }, { "municipio_codigo": "038", "densidad_por_km2": 167.88339049485546, "municipio_codigo_ine": "280382", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Cercedilla", "nuts4_codigo": "11", "superficie_km2": 40.82 }, { "municipio_codigo": "039", "densidad_por_km2": 13.518197573656847, "municipio_codigo_ine": "280395", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Cervera de Buitrago", "nuts4_codigo": "06", "superficie_km2": 11.54 }, { "municipio_codigo": "040", "densidad_por_km2": 480.40882412467124, "municipio_codigo_ine": "280409", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Ciempozuelos", "nuts4_codigo": "04", "superficie_km2": 49.40999999999999 }, { "municipio_codigo": "041", "densidad_por_km2": 344.54064454064456, "municipio_codigo_ine": "280416", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "Cobeña", "nuts4_codigo": "02", "superficie_km2": 20.79 }, { "municipio_codigo": "042", "densidad_por_km2": 33.09673494220239, "municipio_codigo_ine": "280421", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Colmenar del Arroyo", "nuts4_codigo": "10", "superficie_km2": 49.31 }, { "municipio_codigo": "043", "densidad_por_km2": 61.82221166785403, "municipio_codigo_ine": "280437", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Colmenar de Oreja", "nuts4_codigo": "08", "superficie_km2": 126.33000000000001 }, { "municipio_codigo": "044", "densidad_por_km2": 286.2813591616386, "municipio_codigo_ine": "280442", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Colmenarejo", "nuts4_codigo": "11", "superficie_km2": 31.490000000000002 }, { "municipio_codigo": "045", "densidad_por_km2": 265.82458442694656, "municipio_codigo_ine": "280455", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "Colmenar Viejo", "nuts4_codigo": "02", "superficie_km2": 182.88000000000005 }, { "municipio_codigo": "046", "densidad_por_km2": 300.405588102749, "municipio_codigo_ine": "280468", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Collado Mediano", "nuts4_codigo": "11", "superficie_km2": 22.19 }, { "municipio_codigo": "047", "densidad_por_km2": 2467.3283048828903, "municipio_codigo_ine": "280474", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Collado Villalba", "nuts4_codigo": "05", "superficie_km2": 25.189999999999998 }, { "municipio_codigo": "048", "densidad_por_km2": 26.36854279105628, "municipio_codigo_ine": "280480", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Corpa", "nuts4_codigo": "08", "superficie_km2": 25.94 }, { "municipio_codigo": "049", "densidad_por_km2": 6906.073211314479, "municipio_codigo_ine": "280493", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Coslada", "nuts4_codigo": "03", "superficie_km2": 12.019999999999996 }, { "municipio_codigo": "050", "densidad_por_km2": 474.1660201706749, "municipio_codigo_ine": "280506", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Cubas de la Sagra", "nuts4_codigo": "09", "superficie_km2": 12.89 }, { "municipio_codigo": "051", "densidad_por_km2": 87.08414872798434, "municipio_codigo_ine": "280513", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Chapinería", "nuts4_codigo": "10", "superficie_km2": 25.55 }, { "municipio_codigo": "052", "densidad_por_km2": 45.254339753001126, "municipio_codigo_ine": "280528", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Chinchón", "nuts4_codigo": "08", "superficie_km2": 115.78999999999999 }, { "municipio_codigo": "053", "densidad_por_km2": 232.30414746543775, "municipio_codigo_ine": "280534", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Daganzo de Arriba", "nuts4_codigo": "07", "superficie_km2": 43.400000000000006 }, { "municipio_codigo": "054", "densidad_por_km2": 226.15898851911058, "municipio_codigo_ine": "280549", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Escorial (El)", "nuts4_codigo": "11", "superficie_km2": 68.81 }, { "municipio_codigo": "055", "densidad_por_km2": 15.935801845065084, "municipio_codigo_ine": "280552", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Estremera", "nuts4_codigo": "08", "superficie_km2": 79.13 }, { "municipio_codigo": "056", "densidad_por_km2": 54.69301340860974, "municipio_codigo_ine": "280565", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Fresnedillas de la Oliva", "nuts4_codigo": "10", "superficie_km2": 28.34 }, { "municipio_codigo": "057", "densidad_por_km2": 66.61417322834646, "municipio_codigo_ine": "280571", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Fresno de Torote", "nuts4_codigo": "07", "superficie_km2": 31.75 }, { "municipio_codigo": "058", "densidad_por_km2": 4968.580908626851, "municipio_codigo_ine": "280587", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Fuenlabrada", "nuts4_codigo": "04", "superficie_km2": 39.17999999999999 }, { "municipio_codigo": "059", "densidad_por_km2": 193.78582202111616, "municipio_codigo_ine": "280590", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Fuente el Saz de Jarama", "nuts4_codigo": "07", "superficie_km2": 33.15 }, { "municipio_codigo": "060", "densidad_por_km2": 32.901296111665005, "municipio_codigo_ine": "280604", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Fuentidueña de Tajo", "nuts4_codigo": "08", "superficie_km2": 60.18 }, { "municipio_codigo": "061", "densidad_por_km2": 504.64723926380367, "municipio_codigo_ine": "280611", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Galapagar", "nuts4_codigo": "05", "superficie_km2": 65.2 }, { "municipio_codigo": "062", "densidad_por_km2": 8.207289858666005, "municipio_codigo_ine": "280626", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Garganta de los Montes", "nuts4_codigo": "06", "superficie_km2": 40.33 }, { "municipio_codigo": "063", "densidad_por_km2": 13.027295285359802, "municipio_codigo_ine": "280632", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Gargantilla del Lozoya y Pinilla de Buitrago", "nuts4_codigo": "06", "superficie_km2": 24.18 }, { "municipio_codigo": "064", "densidad_por_km2": 8.769307424015944, "municipio_codigo_ine": "280647", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Gascones", "nuts4_codigo": "06", "superficie_km2": 20.07 }, { "municipio_codigo": "065", "densidad_por_km2": 2268.5837892861678, "municipio_codigo_ine": "280650", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Getafe", "nuts4_codigo": "04", "superficie_km2": 78.59000000000003 }, { "municipio_codigo": "066", "densidad_por_km2": 588.6483323581043, "municipio_codigo_ine": "280663", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Griñón", "nuts4_codigo": "09", "superficie_km2": 17.089999999999996 }, { "municipio_codigo": "067", "densidad_por_km2": 100.38167938931298, "municipio_codigo_ine": "280679", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Guadalix de la Sierra", "nuts4_codigo": "06", "superficie_km2": 60.26 }, { "municipio_codigo": "068", "densidad_por_km2": 273.172437915355, "municipio_codigo_ine": "280685", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Guadarrama", "nuts4_codigo": "11", "superficie_km2": 57.18000000000001 }, { "municipio_codigo": "069", "densidad_por_km2": 3.0303030303030303, "municipio_codigo_ine": "280698", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Hiruela (La)", "nuts4_codigo": "06", "superficie_km2": 17.16 }, { "municipio_codigo": "070", "densidad_por_km2": 6.69811320754717, "municipio_codigo_ine": "280702", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Horcajo de la Sierra-Aoslos", "nuts4_codigo": "06", "superficie_km2": 21.2 }, { "municipio_codigo": "071", "densidad_por_km2": 3.692824171212757, "municipio_codigo_ine": "280719", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Horcajuelo de la Sierra", "nuts4_codigo": "06", "superficie_km2": 23.83 }, { "municipio_codigo": "072", "densidad_por_km2": 177.5812513818262, "municipio_codigo_ine": "280724", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Hoyo de Manzanares", "nuts4_codigo": "05", "superficie_km2": 45.230000000000004 }, { "municipio_codigo": "073", "densidad_por_km2": 997.3041709053919, "municipio_codigo_ine": "280730", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Humanes de Madrid", "nuts4_codigo": "04", "superficie_km2": 19.659999999999997 }, { "municipio_codigo": "074", "densidad_por_km2": 4342.354846171637, "municipio_codigo_ine": "280745", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Leganés", "nuts4_codigo": "04", "superficie_km2": 43.230000000000025 }, { "municipio_codigo": "075", "densidad_por_km2": 192.35108303249098, "municipio_codigo_ine": "280758", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Loeches", "nuts4_codigo": "08", "superficie_km2": 44.32 }, { "municipio_codigo": "076", "densidad_por_km2": 9.68972092217022, "municipio_codigo_ine": "280761", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Lozoya", "nuts4_codigo": "06", "superficie_km2": 57.69 }, { "municipio_codigo": "078", "densidad_por_km2": 5.380116959064327, "municipio_codigo_ine": "280783", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Madarcos", "nuts4_codigo": "06", "superficie_km2": 8.55 }, { "municipio_codigo": "079", "densidad_por_km2": 5264.0839480038385, "municipio_codigo_ine": "280796", "nuts4_nombre": "Municipio de Madrid", "municipio_nombre": "Madrid ", "nuts4_codigo": "01", "superficie_km2": 604.6599999999999 }, { "municipio_codigo": "080", "densidad_por_km2": 1853.366259422927, "municipio_codigo_ine": "280800", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Majadahonda", "nuts4_codigo": "05", "superficie_km2": 38.47 }, { "municipio_codigo": "082", "densidad_por_km2": 66.24581092666199, "municipio_codigo_ine": "280822", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Manzanares el Real", "nuts4_codigo": "11", "superficie_km2": 128.31 }, { "municipio_codigo": "083", "densidad_por_km2": 388.4912682507873, "municipio_codigo_ine": "280838", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Meco", "nuts4_codigo": "07", "superficie_km2": 34.93 }, { "municipio_codigo": "084", "densidad_por_km2": 1279.8661461238148, "municipio_codigo_ine": "280843", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Mejorada del Campo", "nuts4_codigo": "03", "superficie_km2": 17.93 }, { "municipio_codigo": "085", "densidad_por_km2": 103.13829787234042, "municipio_codigo_ine": "280856", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Miraflores de la Sierra", "nuts4_codigo": "11", "superficie_km2": 56.400000000000006 }, { "municipio_codigo": "086", "densidad_por_km2": 169.1771269177127, "municipio_codigo_ine": "280869", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Molar (El)", "nuts4_codigo": "07", "superficie_km2": 50.19 }, { "municipio_codigo": "087", "densidad_por_km2": 226.77453027139876, "municipio_codigo_ine": "280875", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Molinos (Los)", "nuts4_codigo": "11", "superficie_km2": 19.16 }, { "municipio_codigo": "088", "densidad_por_km2": 11.062771908017401, "municipio_codigo_ine": "280881", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Montejo de la Sierra", "nuts4_codigo": "06", "superficie_km2": 32.18 }, { "municipio_codigo": "089", "densidad_por_km2": 156.2399743342958, "municipio_codigo_ine": "280894", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Moraleja de Enmedio", "nuts4_codigo": "09", "superficie_km2": 31.17 }, { "municipio_codigo": "090", "densidad_por_km2": 286.86868686868684, "municipio_codigo_ine": "280908", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Moralzarzal", "nuts4_codigo": "11", "superficie_km2": 43.56 }, { "municipio_codigo": "091", "densidad_por_km2": 165.2020313534997, "municipio_codigo_ine": "280915", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Morata de Tajuña", "nuts4_codigo": "08", "superficie_km2": 45.28999999999999 }, { "municipio_codigo": "092", "densidad_por_km2": 4601.0913140311795, "municipio_codigo_ine": "280920", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Móstoles", "nuts4_codigo": "04", "superficie_km2": 44.90000000000001 }, { "municipio_codigo": "093", "densidad_por_km2": 105.19810977826245, "municipio_codigo_ine": "280936", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Navacerrada", "nuts4_codigo": "11", "superficie_km2": 27.51 }, { "municipio_codigo": "094", "densidad_por_km2": 110.01642036124795, "municipio_codigo_ine": "280941", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Navalafuente", "nuts4_codigo": "06", "superficie_km2": 12.18 }, { "municipio_codigo": "095", "densidad_por_km2": 32.24656810982049, "municipio_codigo_ine": "280954", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Navalagamella", "nuts4_codigo": "10", "superficie_km2": 75.76 }, { "municipio_codigo": "096", "densidad_por_km2": 273.4034113447044, "municipio_codigo_ine": "280967", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Navalcarnero", "nuts4_codigo": "09", "superficie_km2": 100.84000000000002 }, { "municipio_codigo": "097", "densidad_por_km2": 4.6013347383210395, "municipio_codigo_ine": "280973", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Navarredonda y San Mamés", "nuts4_codigo": "06", "superficie_km2": 28.47 }, { "municipio_codigo": "099", "densidad_por_km2": 54.4644624826767, "municipio_codigo_ine": "280992", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Navas del Rey", "nuts4_codigo": "10", "superficie_km2": 50.51 }, { "municipio_codigo": "100", "densidad_por_km2": 303.0348258706467, "municipio_codigo_ine": "281006", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Nuevo Baztán", "nuts4_codigo": "08", "superficie_km2": 20.1 }, { "municipio_codigo": "101", "densidad_por_km2": 20.09685230024213, "municipio_codigo_ine": "281013", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Olmeda de las Fuentes", "nuts4_codigo": "08", "superficie_km2": 16.52 }, { "municipio_codigo": "102", "densidad_por_km2": 57.02247191011236, "municipio_codigo_ine": "281028", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Orusco de Tajuña", "nuts4_codigo": "08", "superficie_km2": 21.36 }, { "municipio_codigo": "104", "densidad_por_km2": 546.0255824577432, "municipio_codigo_ine": "281049", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Paracuellos de Jarama", "nuts4_codigo": "03", "superficie_km2": 43.78 }, { "municipio_codigo": "106", "densidad_por_km2": 5031.894484412471, "municipio_codigo_ine": "281065", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Parla", "nuts4_codigo": "04", "superficie_km2": 25.019999999999996 }, { "municipio_codigo": "107", "densidad_por_km2": 15.768463073852296, "municipio_codigo_ine": "281071", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Patones", "nuts4_codigo": "06", "superficie_km2": 35.07 }, { "municipio_codigo": "108", "densidad_por_km2": 196.67133847231955, "municipio_codigo_ine": "281087", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Pedrezuela", "nuts4_codigo": "06", "superficie_km2": 28.54 }, { "municipio_codigo": "109", "densidad_por_km2": 326.0237780713342, "municipio_codigo_ine": "281090", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Pelayos de la Presa", "nuts4_codigo": "10", "superficie_km2": 7.57 }, { "municipio_codigo": "110", "densidad_por_km2": 57.40778479722845, "municipio_codigo_ine": "281104", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Perales de Tajuña", "nuts4_codigo": "08", "superficie_km2": 49.07 }, { "municipio_codigo": "111", "densidad_por_km2": 19.57773512476008, "municipio_codigo_ine": "281111", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Pezuela de las Torres", "nuts4_codigo": "08", "superficie_km2": 41.68 }, { "municipio_codigo": "112", "densidad_por_km2": 7.269155206286837, "municipio_codigo_ine": "281126", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Pinilla del Valle", "nuts4_codigo": "06", "superficie_km2": 25.45 }, { "municipio_codigo": "113", "densidad_por_km2": 813.843175217812, "municipio_codigo_ine": "281132", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Pinto", "nuts4_codigo": "04", "superficie_km2": 61.98000000000001 }, { "municipio_codigo": "114", "densidad_por_km2": 10.032894736842106, "municipio_codigo_ine": "281147", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Piñuecar-Gandullas", "nuts4_codigo": "06", "superficie_km2": 18.24 }, { "municipio_codigo": "115", "densidad_por_km2": 1986.1948955916469, "municipio_codigo_ine": "281150", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Pozuelo de Alarcón", "nuts4_codigo": "05", "superficie_km2": 43.10000000000001 }, { "municipio_codigo": "116", "densidad_por_km2": 35.55483662245228, "municipio_codigo_ine": "281163", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Pozuelo del Rey", "nuts4_codigo": "08", "superficie_km2": 30.91 }, { "municipio_codigo": "117", "densidad_por_km2": 5.866666666666666, "municipio_codigo_ine": "281179", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Prádena del Rincón", "nuts4_codigo": "06", "superficie_km2": 22.5 }, { "municipio_codigo": "118", "densidad_por_km2": 1.0760275180807903, "municipio_codigo_ine": "281185", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Puebla de la Sierra", "nuts4_codigo": "06", "superficie_km2": 56.69 }, { "municipio_codigo": "119", "densidad_por_km2": 127.80373831775701, "municipio_codigo_ine": "281198", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Quijorna", "nuts4_codigo": "09", "superficie_km2": 25.68 }, { "municipio_codigo": "120", "densidad_por_km2": 11.20042872454448, "municipio_codigo_ine": "281202", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Rascafría", "nuts4_codigo": "06", "superficie_km2": 149.28 }, { "municipio_codigo": "121", "densidad_por_km2": 19.033000767459708, "municipio_codigo_ine": "281219", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Redueña", "nuts4_codigo": "06", "superficie_km2": 13.03 }, { "municipio_codigo": "122", "densidad_por_km2": 21.828358208955226, "municipio_codigo_ine": "281224", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Ribatejada", "nuts4_codigo": "07", "superficie_km2": 32.16 }, { "municipio_codigo": "123", "densidad_por_km2": 1242.2808838795786, "municipio_codigo_ine": "281230", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Rivas-Vaciamadrid", "nuts4_codigo": "03", "superficie_km2": 67.43 }, { "municipio_codigo": "124", "densidad_por_km2": 4.138915318744053, "municipio_codigo_ine": "281245", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Robledillo de la Jara", "nuts4_codigo": "06", "superficie_km2": 21.02 }, { "municipio_codigo": "125", "densidad_por_km2": 43.2607541157727, "municipio_codigo_ine": "281258", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Robledo de Chavela", "nuts4_codigo": "10", "superficie_km2": 94.15 }, { "municipio_codigo": "126", "densidad_por_km2": 2.3978201634877383, "municipio_codigo_ine": "281261", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Robregordo", "nuts4_codigo": "06", "superficie_km2": 18.35 }, { "municipio_codigo": "127", "densidad_por_km2": 1631.2800274536714, "municipio_codigo_ine": "281277", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Rozas de Madrid (Las)", "nuts4_codigo": "05", "superficie_km2": 58.280000000000015 }, { "municipio_codigo": "128", "densidad_por_km2": 18.071065989847714, "municipio_codigo_ine": "281283", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Rozas de Puerto Real", "nuts4_codigo": "10", "superficie_km2": 29.55 }, { "municipio_codigo": "129", "densidad_por_km2": 342.8309785452642, "municipio_codigo_ine": "281296", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "San Agustín del Guadalix", "nuts4_codigo": "02", "superficie_km2": 38.220000000000006 }, { "municipio_codigo": "130", "densidad_por_km2": 1021.6529351184345, "municipio_codigo_ine": "281300", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "San Fernando de Henares", "nuts4_codigo": "03", "superficie_km2": 38.84 }, { "municipio_codigo": "131", "densidad_por_km2": 319.68783256473927, "municipio_codigo_ine": "281317", "nuts4_nombre": "Sierra Central", "municipio_nombre": "San Lorenzo de El Escorial", "nuts4_codigo": "11", "superficie_km2": 56.379999999999995 }, { "municipio_codigo": "132", "densidad_por_km2": 179.1056137012369, "municipio_codigo_ine": "281322", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "San Martín de la Vega", "nuts4_codigo": "04", "superficie_km2": 105.10000000000001 }, { "municipio_codigo": "133", "densidad_por_km2": 71.2764129874592, "municipio_codigo_ine": "281338", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "San Martín de Valdeiglesias", "nuts4_codigo": "10", "superficie_km2": 116.42 }, { "municipio_codigo": "134", "densidad_por_km2": 1467.1235194585447, "municipio_codigo_ine": "281343", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "San Sebastián de los Reyes", "nuts4_codigo": "02", "superficie_km2": 59.10000000000001 }, { "municipio_codigo": "135", "densidad_por_km2": 15.371398361089083, "municipio_codigo_ine": "281356", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Santa María de la Alameda", "nuts4_codigo": "10", "superficie_km2": 75.66 }, { "municipio_codigo": "136", "densidad_por_km2": 30.33309709425939, "municipio_codigo_ine": "281369", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Santorcaz", "nuts4_codigo": "08", "superficie_km2": 28.22 }, { "municipio_codigo": "137", "densidad_por_km2": 71.3957495692131, "municipio_codigo_ine": "281375", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Santos de la Humosa (Los)", "nuts4_codigo": "08", "superficie_km2": 34.82 }, { "municipio_codigo": "138", "densidad_por_km2": 13.224637681159422, "municipio_codigo_ine": "281381", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Serna del Monte (La)", "nuts4_codigo": "06", "superficie_km2": 5.52 }, { "municipio_codigo": "140", "densidad_por_km2": 298.4951091045899, "municipio_codigo_ine": "281408", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Serranillos del Valle", "nuts4_codigo": "09", "superficie_km2": 13.29 }, { "municipio_codigo": "141", "densidad_por_km2": 367.54244139046074, "municipio_codigo_ine": "281415", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Sevilla la Nueva", "nuts4_codigo": "09", "superficie_km2": 24.740000000000002 }, { "municipio_codigo": "143", "densidad_por_km2": 3.774509803921569, "municipio_codigo_ine": "281436", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Somosierra", "nuts4_codigo": "06", "superficie_km2": 20.4 }, { "municipio_codigo": "144", "densidad_por_km2": 200.9103641456583, "municipio_codigo_ine": "281441", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Soto del Real", "nuts4_codigo": "11", "superficie_km2": 42.839999999999996 }, { "municipio_codigo": "145", "densidad_por_km2": 92.85343035343035, "municipio_codigo_ine": "281454", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Talamanca de Jarama", "nuts4_codigo": "07", "superficie_km2": 38.48 }, { "municipio_codigo": "146", "densidad_por_km2": 98.1941309255079, "municipio_codigo_ine": "281467", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Tielmes", "nuts4_codigo": "08", "superficie_km2": 26.58 }, { "municipio_codigo": "147", "densidad_por_km2": 126.01384767556875, "municipio_codigo_ine": "281473", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Titulcia", "nuts4_codigo": "08", "superficie_km2": 10.11 }, { "municipio_codigo": "148", "densidad_por_km2": 3948.581122763726, "municipio_codigo_ine": "281489", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Torrejón de Ardoz", "nuts4_codigo": "03", "superficie_km2": 32.42 }, { "municipio_codigo": "149", "densidad_por_km2": 938.4615384615383, "municipio_codigo_ine": "281492", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Torrejón de la Calzada", "nuts4_codigo": "09", "superficie_km2": 8.97 }, { "municipio_codigo": "150", "densidad_por_km2": 81.6909509202454, "municipio_codigo_ine": "281505", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Torrejón de Velasco", "nuts4_codigo": "09", "superficie_km2": 52.16 }, { "municipio_codigo": "151", "densidad_por_km2": 109.42870413376683, "municipio_codigo_ine": "281512", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Torrelaguna", "nuts4_codigo": "06", "superficie_km2": 43.06 }, { "municipio_codigo": "152", "densidad_por_km2": 1067.2819566220583, "municipio_codigo_ine": "281527", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Torrelodones", "nuts4_codigo": "05", "superficie_km2": 21.669999999999998 }, { "municipio_codigo": "153", "densidad_por_km2": 49.94697773064687, "municipio_codigo_ine": "281533", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Torremocha de Jarama", "nuts4_codigo": "06", "superficie_km2": 18.86 }, { "municipio_codigo": "154", "densidad_por_km2": 180.5491462851869, "municipio_codigo_ine": "281548", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Torres de la Alameda", "nuts4_codigo": "08", "superficie_km2": 43.339999999999996 }, { "municipio_codigo": "155", "densidad_por_km2": 10.078369905956114, "municipio_codigo_ine": "281551", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Valdaracete", "nuts4_codigo": "08", "superficie_km2": 63.8 }, { "municipio_codigo": "156", "densidad_por_km2": 77.4986638161411, "municipio_codigo_ine": "281564", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Valdeavero", "nuts4_codigo": "07", "superficie_km2": 18.71 }, { "municipio_codigo": "157", "densidad_por_km2": 20.515854235683864, "municipio_codigo_ine": "281570", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Valdelaguna", "nuts4_codigo": "08", "superficie_km2": 42.26 }, { "municipio_codigo": "158", "densidad_por_km2": 51.48960089938168, "municipio_codigo_ine": "281586", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Valdemanco", "nuts4_codigo": "06", "superficie_km2": 17.79 }, { "municipio_codigo": "159", "densidad_por_km2": 14.829117590268392, "municipio_codigo_ine": "281599", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Valdemaqueda", "nuts4_codigo": "10", "superficie_km2": 51.79 }, { "municipio_codigo": "160", "densidad_por_km2": 131.13006396588486, "municipio_codigo_ine": "281603", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Valdemorillo", "nuts4_codigo": "11", "superficie_km2": 93.8 }, { "municipio_codigo": "161", "densidad_por_km2": 1152.992518703242, "municipio_codigo_ine": "281610", "nuts4_nombre": "Sur Metropolitano", "municipio_nombre": "Valdemoro", "nuts4_codigo": "04", "superficie_km2": 64.16 }, { "municipio_codigo": "162", "densidad_por_km2": 151.1609907120743, "municipio_codigo_ine": "281625", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Valdeolmos-Alalpardo", "nuts4_codigo": "07", "superficie_km2": 25.84 }, { "municipio_codigo": "163", "densidad_por_km2": 33.23895809739524, "municipio_codigo_ine": "281631", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Valdepiélagos", "nuts4_codigo": "07", "superficie_km2": 17.66 }, { "municipio_codigo": "164", "densidad_por_km2": 123.0681494154548, "municipio_codigo_ine": "281646", "nuts4_nombre": "Nordeste Comunidad", "municipio_nombre": "Valdetorres de Jarama", "nuts4_codigo": "07", "superficie_km2": 35.07 }, { "municipio_codigo": "165", "densidad_por_km2": 64.71693680996006, "municipio_codigo_ine": "281659", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Valdilecha", "nuts4_codigo": "08", "superficie_km2": 42.57 }, { "municipio_codigo": "166", "densidad_por_km2": 31.077147016011644, "municipio_codigo_ine": "281662", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Valverde de Alcalá", "nuts4_codigo": "08", "superficie_km2": 13.74 }, { "municipio_codigo": "167", "densidad_por_km2": 842.7974947807934, "municipio_codigo_ine": "281678", "nuts4_nombre": "Este Metropolitano", "municipio_nombre": "Velilla de San Antonio", "nuts4_codigo": "03", "superficie_km2": 14.37 }, { "municipio_codigo": "168", "densidad_por_km2": 54.762615706180945, "municipio_codigo_ine": "281684", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Vellón (El)", "nuts4_codigo": "06", "superficie_km2": 33.49 }, { "municipio_codigo": "169", "densidad_por_km2": 198.825831702544, "municipio_codigo_ine": "281697", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Venturada", "nuts4_codigo": "06", "superficie_km2": 10.22 }, { "municipio_codigo": "170", "densidad_por_km2": 100.69131349564174, "municipio_codigo_ine": "281701", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Villaconejos", "nuts4_codigo": "08", "superficie_km2": 33.269999999999996 }, { "municipio_codigo": "171", "densidad_por_km2": 82.01112980458133, "municipio_codigo_ine": "281718", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Villa del Prado", "nuts4_codigo": "09", "superficie_km2": 77.27000000000001 }, { "municipio_codigo": "172", "densidad_por_km2": 375.5184331797235, "municipio_codigo_ine": "281723", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Villalbilla", "nuts4_codigo": "08", "superficie_km2": 34.72 }, { "municipio_codigo": "173", "densidad_por_km2": 23.46179851250845, "municipio_codigo_ine": "281739", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Villamanrique de Tajo", "nuts4_codigo": "08", "superficie_km2": 29.58 }, { "municipio_codigo": "174", "densidad_por_km2": 39.39585639727977, "municipio_codigo_ine": "281744", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Villamanta", "nuts4_codigo": "09", "superficie_km2": 63.23 }, { "municipio_codigo": "175", "densidad_por_km2": 57.775919732441466, "municipio_codigo_ine": "281757", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Villamantilla", "nuts4_codigo": "09", "superficie_km2": 23.92 }, { "municipio_codigo": "176", "densidad_por_km2": 584.5799769850403, "municipio_codigo_ine": "281760", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Villanueva de la Cañada", "nuts4_codigo": "05", "superficie_km2": 34.76 }, { "municipio_codigo": "177", "densidad_por_km2": 669.4848604011011, "municipio_codigo_ine": "281776", "nuts4_nombre": "Sierra Central", "municipio_nombre": "Villanueva del Pardillo", "nuts4_codigo": "11", "superficie_km2": 25.43 }, { "municipio_codigo": "178", "densidad_por_km2": 48.329621380846326, "municipio_codigo_ine": "281782", "nuts4_nombre": "Sudoeste Comunidad", "municipio_nombre": "Villanueva de Perales", "nuts4_codigo": "09", "superficie_km2": 31.43 }, { "municipio_codigo": "179", "densidad_por_km2": 71.88624910007199, "municipio_codigo_ine": "281795", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Villar del Olmo", "nuts4_codigo": "08", "superficie_km2": 27.78 }, { "municipio_codigo": "180", "densidad_por_km2": 60.88235294117647, "municipio_codigo_ine": "281809", "nuts4_nombre": "Sudeste Comunidad", "municipio_nombre": "Villarejo de Salvanés", "nuts4_codigo": "08", "superficie_km2": 119.0 }, { "municipio_codigo": "181", "densidad_por_km2": 403.28445747800583, "municipio_codigo_ine": "281816", "nuts4_nombre": "Oeste Metropolitano", "municipio_nombre": "Villaviciosa de Odón", "nuts4_codigo": "05", "superficie_km2": 68.2 }, { "municipio_codigo": "182", "densidad_por_km2": 11.459227467811159, "municipio_codigo_ine": "281821", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Villavieja del Lozoya", "nuts4_codigo": "06", "superficie_km2": 23.3 }, { "municipio_codigo": "183", "densidad_por_km2": 79.08820614469772, "municipio_codigo_ine": "281837", "nuts4_nombre": "Sierra Sur", "municipio_nombre": "Zarzalejo", "nuts4_codigo": "10", "superficie_km2": 20.18 }, { "municipio_codigo": "901", "densidad_por_km2": 24.052109663620456, "municipio_codigo_ine": "289015", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Lozoyuela-Navas-Sieteiglesias", "nuts4_codigo": "06", "superficie_km2": 51.43 }, { "municipio_codigo": "902", "densidad_por_km2": 10.796036897847626, "municipio_codigo_ine": "289020", "nuts4_nombre": "Sierra Norte", "municipio_nombre": "Puentes Viejas", "nuts4_codigo": "06", "superficie_km2": 58.54 }, { "municipio_codigo": "903", "densidad_por_km2": 1213.333333333333, "municipio_codigo_ine": "289036", "nuts4_nombre": "Norte Metropolitano", "municipio_nombre": "Tres Cantos", "nuts4_codigo": "02", "superficie_km2": 37.95000000000001 } ] } ================================================ FILE: tests/corpus/meteorites.json ================================================ [{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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"} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Bulls Run","id":"5163","nametype":"Valid","recclass":"Iron?","mass":"2250","fall":"Fell","year":"1964-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"name":"Clohars","id":"5383","nametype":"Valid","recclass":"L4","mass":"48.6","fall":"Fell","year":"1822-01-01T00:00:00.000"} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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"} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Jalanash","id":"12068","nametype":"Valid","recclass":"Ureilite","mass":"700","fall":"Fell","year":"1990-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Jemlapur","id":"12079","nametype":"Valid","recclass":"L6","mass":"450","fall":"Fell","year":"1901-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Cumulus Hills 04075","id":"32531","nametype":"Valid","recclass":"Pallasite","mass":"9.6","fall":"Found","year":"2003-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Maria Linden","id":"15418","nametype":"Valid","recclass":"L4","mass":"114","fall":"Fell","year":"1925-01-01T00:00:00.000"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Natal","id":"16923","nametype":"Valid","recclass":"Stone-uncl","mass":"1.4","fall":"Fell","year":"1973-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Niger (L6)","id":"16974","nametype":"Valid","recclass":"L6","mass":"3.3","fall":"Fell","year":"1967-01-01T00:00:00.000"} ,{"name":"Niger (LL6)","id":"16975","nametype":"Valid","recclass":"LL6","mass":"3.3","fall":"Fell","year":"1967-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"name":"Dominion Range 03239","id":"32591","nametype":"Valid","recclass":"L6","mass":"69.5","fall":"Found","year":"2002-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Dominion Range 03240","id":"32592","nametype":"Valid","recclass":"LL5","mass":"290.89999999999998","fall":"Found","year":"2002-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"name":"Talampaya","id":"23791","nametype":"Valid","recclass":"Eucrite-cm","mass":"1421","fall":"Fell","year":"1995-01-01T00:00:00.000"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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"} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}} ,{"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]}}] ================================================ FILE: tests/corpus/pokedex.json ================================================ { "pokemon": [{ "id": 1, "num": "001", "name": "Bulbasaur", "img": "http://www.serebii.net/pokemongo/pokemon/001.png", "type": [ "Grass", "Poison" ], "height": "0.71 m", "weight": "6.9 kg", "candy": "Bulbasaur Candy", "candy_count": 25, "egg": "2 km", "spawn_chance": 0.69, "avg_spawns": 69, "spawn_time": "20:00", "multipliers": [1.58], "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "next_evolution": [{ "num": "002", "name": "Ivysaur" }, { "num": "003", "name": "Venusaur" }] }, { "id": 2, "num": "002", "name": "Ivysaur", "img": "http://www.serebii.net/pokemongo/pokemon/002.png", "type": [ "Grass", "Poison" ], "height": "0.99 m", "weight": "13.0 kg", "candy": "Bulbasaur Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.042, "avg_spawns": 4.2, "spawn_time": "07:00", "multipliers": [ 1.2, 1.6 ], "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "prev_evolution": [{ "num": "001", "name": "Bulbasaur" }], "next_evolution": [{ "num": "003", "name": "Venusaur" }] }, { "id": 3, "num": "003", "name": "Venusaur", "img": "http://www.serebii.net/pokemongo/pokemon/003.png", "type": [ "Grass", "Poison" ], "height": "2.01 m", "weight": "100.0 kg", "candy": "Bulbasaur Candy", "egg": "Not in Eggs", "spawn_chance": 0.017, "avg_spawns": 1.7, "spawn_time": "11:30", "multipliers": null, "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "prev_evolution": [{ "num": "001", "name": "Bulbasaur" }, { "num": "002", "name": "Ivysaur" }] }, { "id": 4, "num": "004", "name": "Charmander", "img": "http://www.serebii.net/pokemongo/pokemon/004.png", "type": [ "Fire" ], "height": "0.61 m", "weight": "8.5 kg", "candy": "Charmander Candy", "candy_count": 25, "egg": "2 km", "spawn_chance": 0.253, "avg_spawns": 25.3, "spawn_time": "08:45", "multipliers": [1.65], "weaknesses": [ "Water", "Ground", "Rock" ], "next_evolution": [{ "num": "005", "name": "Charmeleon" }, { "num": "006", "name": "Charizard" }] }, { "id": 5, "num": "005", "name": "Charmeleon", "img": "http://www.serebii.net/pokemongo/pokemon/005.png", "type": [ "Fire" ], "height": "1.09 m", "weight": "19.0 kg", "candy": "Charmander Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.012, "avg_spawns": 1.2, "spawn_time": "19:00", "multipliers": [1.79], "weaknesses": [ "Water", "Ground", "Rock" ], "prev_evolution": [{ "num": "004", "name": "Charmander" }], "next_evolution": [{ "num": "006", "name": "Charizard" }] }, { "id": 6, "num": "006", "name": "Charizard", "img": "http://www.serebii.net/pokemongo/pokemon/006.png", "type": [ "Fire", "Flying" ], "height": "1.70 m", "weight": "90.5 kg", "candy": "Charmander Candy", "egg": "Not in Eggs", "spawn_chance": 0.0031, "avg_spawns": 0.31, "spawn_time": "13:34", "multipliers": null, "weaknesses": [ "Water", "Electric", "Rock" ], "prev_evolution": [{ "num": "004", "name": "Charmander" }, { "num": "005", "name": "Charmeleon" }] }, { "id": 7, "num": "007", "name": "Squirtle", "img": "http://www.serebii.net/pokemongo/pokemon/007.png", "type": [ "Water" ], "height": "0.51 m", "weight": "9.0 kg", "candy": "Squirtle Candy", "candy_count": 25, "egg": "2 km", "spawn_chance": 0.58, "avg_spawns": 58, "spawn_time": "04:25", "multipliers": [2.1], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "008", "name": "Wartortle" }, { "num": "009", "name": "Blastoise" }] }, { "id": 8, "num": "008", "name": "Wartortle", "img": "http://www.serebii.net/pokemongo/pokemon/008.png", "type": [ "Water" ], "height": "0.99 m", "weight": "22.5 kg", "candy": "Squirtle Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.034, "avg_spawns": 3.4, "spawn_time": "07:02", "multipliers": [1.4], "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "007", "name": "Squirtle" }], "next_evolution": [{ "num": "009", "name": "Blastoise" }] }, { "id": 9, "num": "009", "name": "Blastoise", "img": "http://www.serebii.net/pokemongo/pokemon/009.png", "type": [ "Water" ], "height": "1.60 m", "weight": "85.5 kg", "candy": "Squirtle Candy", "egg": "Not in Eggs", "spawn_chance": 0.0067, "avg_spawns": 0.67, "spawn_time": "00:06", "multipliers": null, "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "007", "name": "Squirtle" }, { "num": "008", "name": "Wartortle" }] }, { "id": 10, "num": "010", "name": "Caterpie", "img": "http://www.serebii.net/pokemongo/pokemon/010.png", "type": [ "Bug" ], "height": "0.30 m", "weight": "2.9 kg", "candy": "Caterpie Candy", "candy_count": 12, "egg": "2 km", "spawn_chance": 3.032, "avg_spawns": 303.2, "spawn_time": "16:35", "multipliers": [1.05], "weaknesses": [ "Fire", "Flying", "Rock" ], "next_evolution": [{ "num": "011", "name": "Metapod" }, { "num": "012", "name": "Butterfree" }] }, { "id": 11, "num": "011", "name": "Metapod", "img": "http://www.serebii.net/pokemongo/pokemon/011.png", "type": [ "Bug" ], "height": "0.71 m", "weight": "9.9 kg", "candy": "Caterpie Candy", "candy_count": 50, "egg": "Not in Eggs", "spawn_chance": 0.187, "avg_spawns": 18.7, "spawn_time": "02:11", "multipliers": [ 3.55, 3.79 ], "weaknesses": [ "Fire", "Flying", "Rock" ], "prev_evolution": [{ "num": "010", "name": "Caterpie" }], "next_evolution": [{ "num": "012", "name": "Butterfree" }] }, { "id": 12, "num": "012", "name": "Butterfree", "img": "http://www.serebii.net/pokemongo/pokemon/012.png", "type": [ "Bug", "Flying" ], "height": "1.09 m", "weight": "32.0 kg", "candy": "Caterpie Candy", "egg": "Not in Eggs", "spawn_chance": 0.022, "avg_spawns": 2.2, "spawn_time": "05:23", "multipliers": null, "weaknesses": [ "Fire", "Electric", "Ice", "Flying", "Rock" ], "prev_evolution": [{ "num": "010", "name": "Caterpie" }, { "num": "011", "name": "Metapod" }] }, { "id": 13, "num": "013", "name": "Weedle", "img": "http://www.serebii.net/pokemongo/pokemon/013.png", "type": [ "Bug", "Poison" ], "height": "0.30 m", "weight": "3.2 kg", "candy": "Weedle Candy", "candy_count": 12, "egg": "2 km", "spawn_chance": 7.12, "avg_spawns": 712, "spawn_time": "02:21", "multipliers": [ 1.01, 1.09 ], "weaknesses": [ "Fire", "Flying", "Psychic", "Rock" ], "next_evolution": [{ "num": "014", "name": "Kakuna" }, { "num": "015", "name": "Beedrill" }] }, { "id": 14, "num": "014", "name": "Kakuna", "img": "http://www.serebii.net/pokemongo/pokemon/014.png", "type": [ "Bug", "Poison" ], "height": "0.61 m", "weight": "10.0 kg", "candy": "Weedle Candy", "candy_count": 50, "egg": "Not in Eggs", "spawn_chance": 0.44, "avg_spawns": 44, "spawn_time": "02:30", "multipliers": [ 3.01, 3.41 ], "weaknesses": [ "Fire", "Flying", "Psychic", "Rock" ], "prev_evolution": [{ "num": "013", "name": "Weedle" }], "next_evolution": [{ "num": "015", "name": "Beedrill" }] }, { "id": 15, "num": "015", "name": "Beedrill", "img": "http://www.serebii.net/pokemongo/pokemon/015.png", "type": [ "Bug", "Poison" ], "height": "0.99 m", "weight": "29.5 kg", "candy": "Weedle Candy", "egg": "Not in Eggs", "spawn_chance": 0.051, "avg_spawns": 5.1, "spawn_time": "04:50", "multipliers": null, "weaknesses": [ "Fire", "Flying", "Psychic", "Rock" ], "prev_evolution": [{ "num": "013", "name": "Weedle" }, { "num": "014", "name": "Kakuna" }] }, { "id": 16, "num": "016", "name": "Pidgey", "img": "http://www.serebii.net/pokemongo/pokemon/016.png", "type": [ "Normal", "Flying" ], "height": "0.30 m", "weight": "1.8 kg", "candy": "Pidgey Candy", "candy_count": 12, "egg": "2 km", "spawn_chance": 15.98, "avg_spawns": 1.598, "spawn_time": "01:34", "multipliers": [ 1.71, 1.92 ], "weaknesses": [ "Electric", "Rock" ], "next_evolution": [{ "num": "017", "name": "Pidgeotto" }, { "num": "018", "name": "Pidgeot" }] }, { "id": 17, "num": "017", "name": "Pidgeotto", "img": "http://www.serebii.net/pokemongo/pokemon/017.png", "type": [ "Normal", "Flying" ], "height": "1.09 m", "weight": "30.0 kg", "candy": "Pidgey Candy", "candy_count": 50, "egg": "Not in Eggs", "spawn_chance": 1.02, "avg_spawns": 102, "spawn_time": "01:30", "multipliers": [1.79], "weaknesses": [ "Electric", "Rock" ], "prev_evolution": [{ "num": "016", "name": "Pidgey" }], "next_evolution": [{ "num": "018", "name": "Pidgeot" }] }, { "id": 18, "num": "018", "name": "Pidgeot", "img": "http://www.serebii.net/pokemongo/pokemon/018.png", "type": [ "Normal", "Flying" ], "height": "1.50 m", "weight": "39.5 kg", "candy": "Pidgey Candy", "egg": "Not in Eggs", "spawn_chance": 0.13, "avg_spawns": 13, "spawn_time": "01:50", "multipliers": null, "weaknesses": [ "Electric", "Rock" ], "prev_evolution": [{ "num": "016", "name": "Pidgey" }, { "num": "017", "name": "Pidgeotto" }] }, { "id": 19, "num": "019", "name": "Rattata", "img": "http://www.serebii.net/pokemongo/pokemon/019.png", "type": [ "Normal" ], "height": "0.30 m", "weight": "3.5 kg", "candy": "Rattata Candy", "candy_count": 25, "egg": "2 km", "spawn_chance": 13.05, "avg_spawns": 1.305, "spawn_time": "01:55", "multipliers": [ 2.55, 2.73 ], "weaknesses": [ "Fighting" ], "next_evolution": [{ "num": "020", "name": "Raticate" }] }, { "id": 20, "num": "020", "name": "Raticate", "img": "http://www.serebii.net/pokemongo/pokemon/020.png", "type": [ "Normal" ], "height": "0.71 m", "weight": "18.5 kg", "candy": "Rattata Candy", "egg": "Not in Eggs", "spawn_chance": 0.41, "avg_spawns": 41, "spawn_time": "01:56", "multipliers": null, "weaknesses": [ "Fighting" ], "prev_evolution": [{ "num": "019", "name": "Rattata" }] }, { "id": 21, "num": "021", "name": "Spearow", "img": "http://www.serebii.net/pokemongo/pokemon/021.png", "type": [ "Normal", "Flying" ], "height": "0.30 m", "weight": "2.0 kg", "candy": "Spearow Candy", "candy_count": 50, "egg": "2 km", "spawn_chance": 4.73, "avg_spawns": 473, "spawn_time": "12:25", "multipliers": [ 2.66, 2.68 ], "weaknesses": [ "Electric", "Rock" ], "next_evolution": [{ "num": "022", "name": "Fearow" }] }, { "id": 22, "num": "022", "name": "Fearow", "img": "http://www.serebii.net/pokemongo/pokemon/022.png", "type": [ "Normal", "Flying" ], "height": "1.19 m", "weight": "38.0 kg", "candy": "Spearow Candy", "egg": "Not in Eggs", "spawn_chance": 0.15, "avg_spawns": 15, "spawn_time": "01:11", "multipliers": null, "weaknesses": [ "Electric", "Rock" ], "prev_evolution": [{ "num": "021", "name": "Spearow" }] }, { "id": 23, "num": "023", "name": "Ekans", "img": "http://www.serebii.net/pokemongo/pokemon/023.png", "type": [ "Poison" ], "height": "2.01 m", "weight": "6.9 kg", "candy": "Ekans Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 2.27, "avg_spawns": 227, "spawn_time": "12:20", "multipliers": [ 2.21, 2.27 ], "weaknesses": [ "Ground", "Psychic" ], "next_evolution": [{ "num": "024", "name": "Arbok" }] }, { "id": 24, "num": "024", "name": "Arbok", "img": "http://www.serebii.net/pokemongo/pokemon/024.png", "type": [ "Poison" ], "height": "3.51 m", "weight": "65.0 kg", "candy": "Ekans Candy", "egg": "Not in Eggs", "spawn_chance": 0.072, "avg_spawns": 7.2, "spawn_time": "01:50", "multipliers": null, "weaknesses": [ "Ground", "Psychic" ], "prev_evolution": [{ "num": "023", "name": "Ekans" }] }, { "id": 25, "num": "025", "name": "Pikachu", "img": "http://www.serebii.net/pokemongo/pokemon/025.png", "type": [ "Electric" ], "height": "0.41 m", "weight": "6.0 kg", "candy": "Pikachu Candy", "candy_count": 50, "egg": "2 km", "spawn_chance": 0.21, "avg_spawns": 21, "spawn_time": "04:00", "multipliers": [2.34], "weaknesses": [ "Ground" ], "next_evolution": [{ "num": "026", "name": "Raichu" }] }, { "id": 26, "num": "026", "name": "Raichu", "img": "http://www.serebii.net/pokemongo/pokemon/026.png", "type": [ "Electric" ], "height": "0.79 m", "weight": "30.0 kg", "candy": "Pikachu Candy", "egg": "Not in Eggs", "spawn_chance": 0.0076, "avg_spawns": 0.76, "spawn_time": "23:58", "multipliers": null, "weaknesses": [ "Ground" ], "prev_evolution": [{ "num": "025", "name": "Pikachu" }] }, { "id": 27, "num": "027", "name": "Sandshrew", "img": "http://www.serebii.net/pokemongo/pokemon/027.png", "type": [ "Ground" ], "height": "0.61 m", "weight": "12.0 kg", "candy": "Sandshrew Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 1.11, "avg_spawns": 111, "spawn_time": "01:58", "multipliers": [2.45], "weaknesses": [ "Water", "Grass", "Ice" ], "next_evolution": [{ "num": "028", "name": "Sandslash" }] }, { "id": 28, "num": "028", "name": "Sandslash", "img": "http://www.serebii.net/pokemongo/pokemon/028.png", "type": [ "Ground" ], "height": "0.99 m", "weight": "29.5 kg", "candy": "Sandshrew Candy", "egg": "Not in Eggs", "spawn_chance": 0.037, "avg_spawns": 3.7, "spawn_time": "12:34", "multipliers": null, "weaknesses": [ "Water", "Grass", "Ice" ], "prev_evolution": [{ "num": "027", "name": "Sandshrew" }] }, { "id": 29, "num": "029", "name": "Nidoran ♀ (Female)", "img": "http://www.serebii.net/pokemongo/pokemon/029.png", "type": [ "Poison" ], "height": "0.41 m", "weight": "7.0 kg", "candy": "Nidoran ♀ (Female) Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 1.38, "avg_spawns": 138, "spawn_time": "01:51", "multipliers": [ 1.63, 2.48 ], "weaknesses": [ "Ground", "Psychic" ], "next_evolution": [{ "num": "030", "name": "Nidorina" }, { "num": "031", "name": "Nidoqueen" }] }, { "id": 30, "num": "030", "name": "Nidorina", "img": "http://www.serebii.net/pokemongo/pokemon/030.png", "type": [ "Poison" ], "height": "0.79 m", "weight": "20.0 kg", "candy": "Nidoran ♀ (Female) Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.088, "avg_spawns": 8.8, "spawn_time": "07:22", "multipliers": [ 1.83, 2.48 ], "weaknesses": [ "Ground", "Psychic" ], "prev_evolution": [{ "num": "029", "name": "Nidoran(Female)" }], "next_evolution": [{ "num": "031", "name": "Nidoqueen" }] }, { "id": 31, "num": "031", "name": "Nidoqueen", "img": "http://www.serebii.net/pokemongo/pokemon/031.png", "type": [ "Poison", "Ground" ], "height": "1.30 m", "weight": "60.0 kg", "candy": "Nidoran ♀ (Female) Candy", "egg": "Not in Eggs", "spawn_chance": 0.012, "avg_spawns": 1.2, "spawn_time": "12:35", "multipliers": null, "weaknesses": [ "Water", "Ice", "Ground", "Psychic" ], "prev_evolution": [{ "num": "029", "name": "Nidoran(Female)" }, { "num": "030", "name": "Nidorina" }] }, { "id": 32, "num": "032", "name": "Nidoran ♂ (Male)", "img": "http://www.serebii.net/pokemongo/pokemon/032.png", "type": [ "Poison" ], "height": "0.51 m", "weight": "9.0 kg", "candy": "Nidoran ♂ (Male) Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 1.31, "avg_spawns": 131, "spawn_time": "01:12", "multipliers": [ 1.64, 1.7 ], "weaknesses": [ "Ground", "Psychic" ], "next_evolution": [{ "num": "033", "name": "Nidorino" }, { "num": "034", "name": "Nidoking" }] }, { "id": 33, "num": "033", "name": "Nidorino", "img": "http://www.serebii.net/pokemongo/pokemon/033.png", "type": [ "Poison" ], "height": "0.89 m", "weight": "19.5 kg", "candy": "Nidoran ♂ (Male) Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.083, "avg_spawns": 8.3, "spawn_time": "09:02", "multipliers": [1.83], "weaknesses": [ "Ground", "Psychic" ], "prev_evolution": [{ "num": "032", "name": "Nidoran(Male)" }], "next_evolution": [{ "num": "034", "name": "Nidoking" }] }, { "id": 34, "num": "034", "name": "Nidoking", "img": "http://www.serebii.net/pokemongo/pokemon/034.png", "type": [ "Poison", "Ground" ], "height": "1.40 m", "weight": "62.0 kg", "candy": "Nidoran ♂ (Male) Candy", "egg": "Not in Eggs", "spawn_chance": 0.017, "avg_spawns": 1.7, "spawn_time": "12:16", "multipliers": null, "weaknesses": [ "Water", "Ice", "Ground", "Psychic" ], "prev_evolution": [{ "num": "032", "name": "Nidoran(Male)" }, { "num": "033", "name": "Nidorino" }] }, { "id": 35, "num": "035", "name": "Clefairy", "img": "http://www.serebii.net/pokemongo/pokemon/035.png", "type": [ "Normal" ], "height": "0.61 m", "weight": "7.5 kg", "candy": "Clefairy Candy", "candy_count": 50, "egg": "2 km", "spawn_chance": 0.92, "avg_spawns": 92, "spawn_time": "03:30", "multipliers": [ 2.03, 2.14 ], "weaknesses": [ "Fighting" ], "next_evolution": [{ "num": "036", "name": "Clefable" }] }, { "id": 36, "num": "036", "name": "Clefable", "img": "http://www.serebii.net/pokemongo/pokemon/036.png", "type": [ "Normal" ], "height": "1.30 m", "weight": "40.0 kg", "candy": "Clefairy Candy", "egg": "Not in Eggs", "spawn_chance": 0.012, "avg_spawns": 1.2, "spawn_time": "03:29", "multipliers": null, "weaknesses": [ "Fighting" ], "prev_evolution": [{ "num": "035", "name": "Clefairy" }] }, { "id": 37, "num": "037", "name": "Vulpix", "img": "http://www.serebii.net/pokemongo/pokemon/037.png", "type": [ "Fire" ], "height": "0.61 m", "weight": "9.9 kg", "candy": "Vulpix Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.22, "avg_spawns": 22, "spawn_time": "13:43", "multipliers": [ 2.74, 2.81 ], "weaknesses": [ "Water", "Ground", "Rock" ], "next_evolution": [{ "num": "038", "name": "Ninetales" }] }, { "id": 38, "num": "038", "name": "Ninetales", "img": "http://www.serebii.net/pokemongo/pokemon/038.png", "type": [ "Fire" ], "height": "1.09 m", "weight": "19.9 kg", "candy": "Vulpix Candy", "egg": "Not in Eggs", "spawn_chance": 0.0077, "avg_spawns": 0.77, "spawn_time": "01:32", "multipliers": null, "weaknesses": [ "Water", "Ground", "Rock" ], "prev_evolution": [{ "num": "037", "name": "Vulpix" }] }, { "id": 39, "num": "039", "name": "Jigglypuff", "img": "http://www.serebii.net/pokemongo/pokemon/039.png", "type": [ "Normal" ], "height": "0.51 m", "weight": "5.5 kg", "candy": "Jigglypuff Candy", "candy_count": 50, "egg": "2 km", "spawn_chance": 0.39, "avg_spawns": 39, "spawn_time": "08:46", "multipliers": [1.85], "weaknesses": [ "Fighting" ], "next_evolution": [{ "num": "040", "name": "Wigglytuff" }] }, { "id": 40, "num": "040", "name": "Wigglytuff", "img": "http://www.serebii.net/pokemongo/pokemon/040.png", "type": [ "Normal" ], "height": "0.99 m", "weight": "12.0 kg", "candy": "Jigglypuff Candy", "egg": "Not in Eggs", "spawn_chance": 0.018, "avg_spawns": 1.8, "spawn_time": "12:28", "multipliers": null, "weaknesses": [ "Fighting" ], "prev_evolution": [{ "num": "039", "name": "Jigglypuff" }] }, { "id": 41, "num": "041", "name": "Zubat", "img": "http://www.serebii.net/pokemongo/pokemon/041.png", "type": [ "Poison", "Flying" ], "height": "0.79 m", "weight": "7.5 kg", "candy": "Zubat Candy", "candy_count": 50, "egg": "2 km", "spawn_chance": 6.52, "avg_spawns": 652, "spawn_time": "12:28", "multipliers": [ 2.6, 3.67 ], "weaknesses": [ "Electric", "Ice", "Psychic", "Rock" ], "next_evolution": [{ "num": "042", "name": "Golbat" }] }, { "id": 42, "num": "042", "name": "Golbat", "img": "http://www.serebii.net/pokemongo/pokemon/042.png", "type": [ "Poison", "Flying" ], "height": "1.60 m", "weight": "55.0 kg", "candy": "Zubat Candy", "egg": "Not in Eggs", "spawn_chance": 0.42, "avg_spawns": 42, "spawn_time": "02:15", "multipliers": null, "weaknesses": [ "Electric", "Ice", "Psychic", "Rock" ], "prev_evolution": [{ "num": "041", "name": "Zubat" }] }, { "id": 43, "num": "043", "name": "Oddish", "img": "http://www.serebii.net/pokemongo/pokemon/043.png", "type": [ "Grass", "Poison" ], "height": "0.51 m", "weight": "5.4 kg", "candy": "Oddish Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 1.02, "avg_spawns": 102, "spawn_time": "03:58", "multipliers": [1.5], "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "next_evolution": [{ "num": "044", "name": "Gloom" }, { "num": "045", "name": "Vileplume" }] }, { "id": 44, "num": "044", "name": "Gloom", "img": "http://www.serebii.net/pokemongo/pokemon/044.png", "type": [ "Grass", "Poison" ], "height": "0.79 m", "weight": "8.6 kg", "candy": "Oddish Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.064, "avg_spawns": 6.4, "spawn_time": "11:33", "multipliers": [1.49], "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "prev_evolution": [{ "num": "043", "name": "Oddish" }], "next_evolution": [{ "num": "045", "name": "Vileplume" }] }, { "id": 45, "num": "045", "name": "Vileplume", "img": "http://www.serebii.net/pokemongo/pokemon/045.png", "type": [ "Grass", "Poison" ], "height": "1.19 m", "weight": "18.6 kg", "candy": "Oddish Candy", "egg": "Not in Eggs", "spawn_chance": 0.0097, "avg_spawns": 0.97, "spawn_time": "23:58", "multipliers": null, "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "prev_evolution": [{ "num": "043", "name": "Oddish" }, { "num": "044", "name": "Gloom" }] }, { "id": 46, "num": "046", "name": "Paras", "img": "http://www.serebii.net/pokemongo/pokemon/046.png", "type": [ "Bug", "Grass" ], "height": "0.30 m", "weight": "5.4 kg", "candy": "Paras Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 2.36, "avg_spawns": 236, "spawn_time": "01:42", "multipliers": [2.02], "weaknesses": [ "Fire", "Ice", "Poison", "Flying", "Bug", "Rock" ], "next_evolution": [{ "num": "047", "name": "Parasect" }] }, { "id": 47, "num": "047", "name": "Parasect", "img": "http://www.serebii.net/pokemongo/pokemon/047.png", "type": [ "Bug", "Grass" ], "height": "0.99 m", "weight": "29.5 kg", "candy": "Paras Candy", "egg": "Not in Eggs", "spawn_chance": 0.074, "avg_spawns": 7.4, "spawn_time": "01:22", "multipliers": null, "weaknesses": [ "Fire", "Ice", "Poison", "Flying", "Bug", "Rock" ], "prev_evolution": [{ "num": "046", "name": "Paras" }] }, { "id": 48, "num": "048", "name": "Venonat", "img": "http://www.serebii.net/pokemongo/pokemon/048.png", "type": [ "Bug", "Poison" ], "height": "0.99 m", "weight": "30.0 kg", "candy": "Venonat Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 2.28, "avg_spawns": 228, "spawn_time": "02:31", "multipliers": [ 1.86, 1.9 ], "weaknesses": [ "Fire", "Flying", "Psychic", "Rock" ], "next_evolution": [{ "num": "049", "name": "Venomoth" }] }, { "id": 49, "num": "049", "name": "Venomoth", "img": "http://www.serebii.net/pokemongo/pokemon/049.png", "type": [ "Bug", "Poison" ], "height": "1.50 m", "weight": "12.5 kg", "candy": "Venonat Candy", "egg": "Not in Eggs", "spawn_chance": 0.072, "avg_spawns": 7.2, "spawn_time": "23:40", "multipliers": null, "weaknesses": [ "Fire", "Flying", "Psychic", "Rock" ], "prev_evolution": [{ "num": "048", "name": "Venonat" }] }, { "id": 50, "num": "050", "name": "Diglett", "img": "http://www.serebii.net/pokemongo/pokemon/050.png", "type": [ "Ground" ], "height": "0.20 m", "weight": "0.8 kg", "candy": "Diglett Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.40, "avg_spawns": 40, "spawn_time": "02:22", "multipliers": [2.69], "weaknesses": [ "Water", "Grass", "Ice" ], "next_evolution": [{ "num": "051", "name": "Dugtrio" }] }, { "id": 51, "num": "051", "name": "Dugtrio", "img": "http://www.serebii.net/pokemongo/pokemon/051.png", "type": [ "Ground" ], "height": "0.71 m", "weight": "33.3 kg", "candy": "Dugtrio", "egg": "Not in Eggs", "spawn_chance": 0.014, "avg_spawns": 1.4, "spawn_time": "12:37", "multipliers": null, "weaknesses": [ "Water", "Grass", "Ice" ], "prev_evolution": [{ "num": "050", "name": "Diglett" }] }, { "id": 52, "num": "052", "name": "Meowth", "img": "http://www.serebii.net/pokemongo/pokemon/052.png", "type": [ "Normal" ], "height": "0.41 m", "weight": "4.2 kg", "candy": "Meowth Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.86, "avg_spawns": 86, "spawn_time": "02:54", "multipliers": [1.98], "weaknesses": [ "Fighting" ], "next_evolution": [{ "num": "053", "name": "Persian" }] }, { "id": 53, "num": "053", "name": "Persian", "img": "http://www.serebii.net/pokemongo/pokemon/053.png", "type": [ "Normal" ], "height": "0.99 m", "weight": "32.0 kg", "candy": "Meowth Candy", "egg": "Not in Eggs", "spawn_chance": 0.022, "avg_spawns": 2.2, "spawn_time": "02:44", "multipliers": null, "weaknesses": [ "Fighting" ], "prev_evolution": [{ "num": "052", "name": "Meowth" }] }, { "id": 54, "num": "054", "name": "Psyduck", "img": "http://www.serebii.net/pokemongo/pokemon/054.png", "type": [ "Water" ], "height": "0.79 m", "weight": "19.6 kg", "candy": "Psyduck Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 2.54, "avg_spawns": 254, "spawn_time": "03:41", "multipliers": [2.27], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "055", "name": "Golduck" }] }, { "id": 55, "num": "055", "name": "Golduck", "img": "http://www.serebii.net/pokemongo/pokemon/055.png", "type": [ "Water" ], "height": "1.70 m", "weight": "76.6 kg", "candy": "Psyduck Candy", "egg": "Not in Eggs", "spawn_chance": 0.087, "avg_spawns": 8.7, "spawn_time": "23:06", "multipliers": null, "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "054", "name": "Psyduck" }] }, { "id": 56, "num": "056", "name": "Mankey", "img": "http://www.serebii.net/pokemongo/pokemon/056.png", "type": [ "Fighting" ], "height": "0.51 m", "weight": "28.0 kg", "candy": "Mankey Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.92, "avg_spawns": 92, "spawn_time": "12:52", "multipliers": [ 2.17, 2.28 ], "weaknesses": [ "Flying", "Psychic", "Fairy" ], "next_evolution": [{ "num": "057", "name": "Primeape" }] }, { "id": 57, "num": "057", "name": "Primeape", "img": "http://www.serebii.net/pokemongo/pokemon/057.png", "type": [ "Fighting" ], "height": "0.99 m", "weight": "32.0 kg", "candy": "Mankey Candy", "egg": "Not in Eggs", "spawn_chance": 0.031, "avg_spawns": 3.1, "spawn_time": "12:33", "multipliers": null, "weaknesses": [ "Flying", "Psychic", "Fairy" ], "prev_evolution": [{ "num": "056", "name": "Mankey" }] }, { "id": 58, "num": "058", "name": "Growlithe", "img": "http://www.serebii.net/pokemongo/pokemon/058.png", "type": [ "Fire" ], "height": "0.71 m", "weight": "19.0 kg", "candy": "Growlithe Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.92, "avg_spawns": 92, "spawn_time": "03:57", "multipliers": [ 2.31, 2.36 ], "weaknesses": [ "Water", "Ground", "Rock" ], "next_evolution": [{ "num": "059", "name": "Arcanine" }] }, { "id": 59, "num": "059", "name": "Arcanine", "img": "http://www.serebii.net/pokemongo/pokemon/059.png", "type": [ "Fire" ], "height": "1.91 m", "weight": "155.0 kg", "candy": "Growlithe Candy", "egg": "Not in Eggs", "spawn_chance": 0.017, "avg_spawns": 1.7, "spawn_time": "03:11", "multipliers": null, "weaknesses": [ "Water", "Ground", "Rock" ], "prev_evolution": [{ "num": "058", "name": "Growlithe" }] }, { "id": 60, "num": "060", "name": "Poliwag", "img": "http://www.serebii.net/pokemongo/pokemon/060.png", "type": [ "Water" ], "height": "0.61 m", "weight": "12.4 kg", "candy": "Poliwag Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 2.19, "avg_spawns": 219, "spawn_time": "03:40", "multipliers": [ 1.72, 1.73 ], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "061", "name": "Poliwhirl" }, { "num": "062", "name": "Poliwrath" }] }, { "id": 61, "num": "061", "name": "Poliwhirl", "img": "http://www.serebii.net/pokemongo/pokemon/061.png", "type": [ "Water" ], "height": "0.99 m", "weight": "20.0 kg", "candy": "Poliwag Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.13, "avg_spawns": 13, "spawn_time": "09:14", "multipliers": [1.95], "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "060", "name": "Poliwag" }], "next_evolution": [{ "num": "062", "name": "Poliwrath" }] }, { "id": 62, "num": "062", "name": "Poliwrath", "img": "http://www.serebii.net/pokemongo/pokemon/062.png", "type": [ "Water", "Fighting" ], "height": "1.30 m", "weight": "54.0 kg", "candy": "Poliwag Candy", "egg": "Not in Eggs", "spawn_chance": 0.011, "avg_spawns": 1.1, "spawn_time": "01:32", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Flying", "Psychic", "Fairy" ], "prev_evolution": [{ "num": "060", "name": "Poliwag" }, { "num": "061", "name": "Poliwhirl" }] }, { "id": 63, "num": "063", "name": "Abra", "img": "http://www.serebii.net/pokemongo/pokemon/063.png", "type": [ "Psychic" ], "height": "0.89 m", "weight": "19.5 kg", "candy": "Abra Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 0.42, "avg_spawns": 42, "spawn_time": "04:30", "multipliers": [ 1.36, 1.95 ], "weaknesses": [ "Bug", "Ghost", "Dark" ], "next_evolution": [{ "num": "064", "name": "Kadabra" }, { "num": "065", "name": "Alakazam" }] }, { "id": 64, "num": "064", "name": "Kadabra", "img": "http://www.serebii.net/pokemongo/pokemon/064.png", "type": [ "Psychic" ], "height": "1.30 m", "weight": "56.5 kg", "candy": "Abra Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.027, "avg_spawns": 2.7, "spawn_time": "11:25", "multipliers": [1.4], "weaknesses": [ "Bug", "Ghost", "Dark" ], "prev_evolution": [{ "num": "063", "name": "Abra" }], "next_evolution": [{ "num": "065", "name": "Alakazam" }] }, { "id": 65, "num": "065", "name": "Alakazam", "img": "http://www.serebii.net/pokemongo/pokemon/065.png", "type": [ "Psychic" ], "height": "1.50 m", "weight": "48.0 kg", "candy": "Abra Candy", "egg": "Not in Eggs", "spawn_chance": 0.0073, "avg_spawns": 0.73, "spawn_time": "12:33", "multipliers": null, "weaknesses": [ "Bug", "Ghost", "Dark" ], "prev_evolution": [{ "num": "063", "name": "Abra" }, { "num": "064", "name": "Kadabra" }] }, { "id": 66, "num": "066", "name": "Machop", "img": "http://www.serebii.net/pokemongo/pokemon/066.png", "type": [ "Fighting" ], "height": "0.79 m", "weight": "19.5 kg", "candy": "Machop Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 0.49, "avg_spawns": 49, "spawn_time": "01:55", "multipliers": [ 1.64, 1.65 ], "weaknesses": [ "Flying", "Psychic", "Fairy" ], "next_evolution": [{ "num": "067", "name": "Machoke" }, { "num": "068", "name": "Machamp" }] }, { "id": 67, "num": "067", "name": "Machoke", "img": "http://www.serebii.net/pokemongo/pokemon/067.png", "type": [ "Fighting" ], "height": "1.50 m", "weight": "70.5 kg", "candy": "Machop Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.034, "avg_spawns": 3.4, "spawn_time": "10:32", "multipliers": [1.7], "weaknesses": [ "Flying", "Psychic", "Fairy" ], "prev_evolution": [{ "num": "066", "name": "Machop" }], "next_evolution": [{ "num": "068", "name": "Machamp" }] }, { "id": 68, "num": "068", "name": "Machamp", "img": "http://www.serebii.net/pokemongo/pokemon/068.png", "type": [ "Fighting" ], "height": "1.60 m", "weight": "130.0 kg", "candy": "Machop Candy", "egg": "Not in Eggs", "spawn_chance": 0.0068, "avg_spawns": 0.68, "spawn_time": "02:55", "multipliers": null, "weaknesses": [ "Flying", "Psychic", "Fairy" ], "prev_evolution": [{ "num": "066", "name": "Machop" }, { "num": "067", "name": "Machoke" }] }, { "id": 69, "num": "069", "name": "Bellsprout", "img": "http://www.serebii.net/pokemongo/pokemon/069.png", "type": [ "Grass", "Poison" ], "height": "0.71 m", "weight": "4.0 kg", "candy": "Bellsprout Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 1.15, "avg_spawns": 115, "spawn_time": "04:10", "multipliers": [1.57], "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "next_evolution": [{ "num": "070", "name": "Weepinbell" }, { "num": "071", "name": "Victreebel" }] }, { "id": 70, "num": "070", "name": "Weepinbell", "img": "http://www.serebii.net/pokemongo/pokemon/070.png", "type": [ "Grass", "Poison" ], "height": "0.99 m", "weight": "6.4 kg", "candy": "Bellsprout Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.072, "avg_spawns": 7.2, "spawn_time": "09:45", "multipliers": [1.59], "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "prev_evolution": [{ "num": "069", "name": "Bellsprout" }], "next_evolution": [{ "num": "071", "name": "Victreebel" }] }, { "id": 71, "num": "071", "name": "Victreebel", "img": "http://www.serebii.net/pokemongo/pokemon/071.png", "type": [ "Grass", "Poison" ], "height": "1.70 m", "weight": "15.5 kg", "candy": "Bellsprout Candy", "egg": "Not in Eggs", "spawn_chance": 0.0059, "avg_spawns": 0.59, "spawn_time": "12:19", "multipliers": null, "weaknesses": [ "Fire", "Ice", "Flying", "Psychic" ], "prev_evolution": [{ "num": "069", "name": "Bellsprout" }, { "num": "070", "name": "Weepinbell" }] }, { "id": 72, "num": "072", "name": "Tentacool", "img": "http://www.serebii.net/pokemongo/pokemon/072.png", "type": [ "Water", "Poison" ], "height": "0.89 m", "weight": "45.5 kg", "candy": "Tentacool Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.81, "avg_spawns": 81, "spawn_time": "03:20", "multipliers": [2.52], "weaknesses": [ "Electric", "Ground", "Psychic" ], "next_evolution": [{ "num": "073", "name": "Tentacruel" }] }, { "id": 73, "num": "073", "name": "Tentacruel", "img": "http://www.serebii.net/pokemongo/pokemon/073.png", "type": [ "Water", "Poison" ], "height": "1.60 m", "weight": "55.0 kg", "candy": "Tentacool Candy", "egg": "Not in Eggs", "spawn_chance": 0.082, "avg_spawns": 8.2, "spawn_time": "23:36", "multipliers": null, "weaknesses": [ "Electric", "Ground", "Psychic" ], "prev_evolution": [{ "num": "072", "name": "Tentacool" }] }, { "id": 74, "num": "074", "name": "Geodude", "img": "http://www.serebii.net/pokemongo/pokemon/074.png", "type": [ "Rock", "Ground" ], "height": "0.41 m", "weight": "20.0 kg", "candy": "Geodude Candy", "candy_count": 25, "egg": "2 km", "spawn_chance": 1.19, "avg_spawns": 119, "spawn_time": "12:40", "multipliers": [ 1.75, 1.76 ], "weaknesses": [ "Water", "Grass", "Ice", "Fighting", "Ground", "Steel" ], "next_evolution": [{ "num": "075", "name": "Graveler" }, { "num": "076", "name": "Golem" }] }, { "id": 75, "num": "075", "name": "Graveler", "img": "http://www.serebii.net/pokemongo/pokemon/075.png", "type": [ "Rock", "Ground" ], "height": "0.99 m", "weight": "105.0 kg", "candy": "Geodude Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.071, "avg_spawns": 7.1, "spawn_time": "04:53", "multipliers": [ 1.64, 1.72 ], "weaknesses": [ "Water", "Grass", "Ice", "Fighting", "Ground", "Steel" ], "prev_evolution": [{ "num": "074", "name": "Geodude" }], "next_evolution": [{ "num": "076", "name": "Golem" }] }, { "id": 76, "num": "076", "name": "Golem", "img": "http://www.serebii.net/pokemongo/pokemon/076.png", "type": [ "Rock", "Ground" ], "height": "1.40 m", "weight": "300.0 kg", "candy": "Geodude Candy", "egg": "Not in Eggs", "spawn_chance": 0.0047, "avg_spawns": 0.47, "spawn_time": "12:16", "multipliers": null, "weaknesses": [ "Water", "Grass", "Ice", "Fighting", "Ground", "Steel" ], "prev_evolution": [{ "num": "074", "name": "Geodude" }, { "num": "075", "name": "Graveler" }] }, { "id": 77, "num": "077", "name": "Ponyta", "img": "http://www.serebii.net/pokemongo/pokemon/077.png", "type": [ "Fire" ], "height": "0.99 m", "weight": "30.0 kg", "candy": "Ponyta Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.51, "avg_spawns": 51, "spawn_time": "02:50", "multipliers": [ 1.48, 1.5 ], "weaknesses": [ "Water", "Ground", "Rock" ], "next_evolution": [{ "num": "078", "name": "Rapidash" }] }, { "id": 78, "num": "078", "name": "Rapidash", "img": "http://www.serebii.net/pokemongo/pokemon/078.png", "type": [ "Fire" ], "height": "1.70 m", "weight": "95.0 kg", "candy": "Ponyta Candy", "egg": "Not in Eggs", "spawn_chance": 0.011, "avg_spawns": 1.1, "spawn_time": "04:00", "multipliers": null, "weaknesses": [ "Water", "Ground", "Rock" ], "prev_evolution": [{ "num": "077", "name": "Ponyta" }] }, { "id": 79, "num": "079", "name": "Slowpoke", "img": "http://www.serebii.net/pokemongo/pokemon/079.png", "type": [ "Water", "Psychic" ], "height": "1.19 m", "weight": "36.0 kg", "candy": "Slowpoke Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 1.05, "avg_spawns": 105, "spawn_time": "07:12", "multipliers": [2.21], "weaknesses": [ "Electric", "Grass", "Bug", "Ghost", "Dark" ], "next_evolution": [{ "num": "080", "name": "Slowbro" }] }, { "id": 80, "num": "080", "name": "Slowbro", "img": "http://www.serebii.net/pokemongo/pokemon/080.png", "type": [ "Water", "Psychic" ], "height": "1.60 m", "weight": "78.5 kg", "candy": "Slowpoke Candy", "egg": "Not in Eggs", "spawn_chance": 0.036, "avg_spawns": 3.6, "spawn_time": "02:56", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Bug", "Ghost", "Dark" ], "prev_evolution": [{ "num": "079", "name": "Slowpoke" }] }, { "id": 81, "num": "081", "name": "Magnemite", "img": "http://www.serebii.net/pokemongo/pokemon/081.png", "type": [ "Electric" ], "height": "0.30 m", "weight": "6.0 kg", "candy": "Magnemite Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.71, "avg_spawns": 71, "spawn_time": "04:04", "multipliers": [ 2.16, 2.17 ], "weaknesses": [ "Fire", "Water", "Ground" ], "next_evolution": [{ "num": "082", "name": "Magneton" }] }, { "id": 82, "num": "082", "name": "Magneton", "img": "http://www.serebii.net/pokemongo/pokemon/082.png", "type": [ "Electric" ], "height": "0.99 m", "weight": "60.0 kg", "candy": "Magnemite Candy", "egg": "Not in Eggs", "spawn_chance": 0.023, "avg_spawns": 2.3, "spawn_time": "15:25", "multipliers": null, "weaknesses": [ "Fire", "Water", "Ground" ], "prev_evolution": [{ "num": "081", "name": "Magnemite" }] }, { "id": 83, "num": "083", "name": "Farfetch'd", "img": "http://www.serebii.net/pokemongo/pokemon/083.png", "type": [ "Normal", "Flying" ], "height": "0.79 m", "weight": "15.0 kg", "candy": "None", "egg": "5 km", "spawn_chance": 0.0212, "avg_spawns": 2.12, "spawn_time": "01:09", "multipliers": null, "weaknesses": [ "Electric", "Rock" ] }, { "id": 84, "num": "084", "name": "Doduo", "img": "http://www.serebii.net/pokemongo/pokemon/084.png", "type": [ "Normal", "Flying" ], "height": "1.40 m", "weight": "39.2 kg", "candy": "Doduo Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.52, "avg_spawns": 52, "spawn_time": "05:10", "multipliers": [ 2.19, 2.24 ], "weaknesses": [ "Electric", "Rock" ], "next_evolution": [{ "num": "085", "name": "Dodrio" }] }, { "id": 85, "num": "085", "name": "Dodrio", "img": "http://www.serebii.net/pokemongo/pokemon/085.png", "type": [ "Normal", "Flying" ], "height": "1.80 m", "weight": "85.2 kg", "candy": "Doduo Candy", "egg": "Not in Eggs", "spawn_chance": 0.22, "avg_spawns": 22, "spawn_time": "02:12", "multipliers": null, "weaknesses": [ "Electric", "Rock" ], "prev_evolution": [{ "num": "084", "name": "Doduo" }] }, { "id": 86, "num": "086", "name": "Seel", "img": "http://www.serebii.net/pokemongo/pokemon/086.png", "type": [ "Water" ], "height": "1.09 m", "weight": "90.0 kg", "candy": "Seel Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.28, "avg_spawns": 28, "spawn_time": "06:46", "multipliers": [ 1.04, 1.96 ], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "087", "name": "Dewgong" }] }, { "id": 87, "num": "087", "name": "Dewgong", "img": "http://www.serebii.net/pokemongo/pokemon/087.png", "type": [ "Water", "Ice" ], "height": "1.70 m", "weight": "120.0 kg", "candy": "Seel Candy", "egg": "Not in Eggs", "spawn_chance": 0.013, "avg_spawns": 1.3, "spawn_time": "06:04", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Fighting", "Rock" ], "prev_evolution": [{ "num": "086", "name": "Seel" }] }, { "id": 88, "num": "088", "name": "Grimer", "img": "http://www.serebii.net/pokemongo/pokemon/088.png", "type": [ "Poison" ], "height": "0.89 m", "weight": "30.0 kg", "candy": "Grimer Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.052, "avg_spawns": 5.2, "spawn_time": "15:11", "multipliers": [2.44], "weaknesses": [ "Ground", "Psychic" ], "next_evolution": [{ "num": "089", "name": "Muk" }] }, { "id": 89, "num": "089", "name": "Muk", "img": "http://www.serebii.net/pokemongo/pokemon/089.png", "type": [ "Poison" ], "height": "1.19 m", "weight": "30.0 kg", "candy": "Grimer Candy", "egg": "Not in Eggs", "spawn_chance": 0.0031, "avg_spawns": 0.31, "spawn_time": "01:28", "multipliers": null, "weaknesses": [ "Ground", "Psychic" ], "prev_evolution": [{ "num": "088", "name": "Grimer" }] }, { "id": 90, "num": "090", "name": "Shellder", "img": "http://www.serebii.net/pokemongo/pokemon/090.png", "type": [ "Water" ], "height": "0.30 m", "weight": "4.0 kg", "candy": "Shellder Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.52, "avg_spawns": 52, "spawn_time": "07:39", "multipliers": [2.65], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "091", "name": "Cloyster" }] }, { "id": 91, "num": "091", "name": "Cloyster", "img": "http://www.serebii.net/pokemongo/pokemon/091.png", "type": [ "Water", "Ice" ], "height": "1.50 m", "weight": "132.5 kg", "candy": "Shellder Candy", "egg": "Not in Eggs", "spawn_chance": 0.015, "avg_spawns": 1.5, "spawn_time": "02:33", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Fighting", "Rock" ], "prev_evolution": [{ "num": "090", "name": "Shellder" }] }, { "id": 92, "num": "092", "name": "Gastly", "img": "http://www.serebii.net/pokemongo/pokemon/092.png", "type": [ "Ghost", "Poison" ], "height": "1.30 m", "weight": "0.1 kg", "candy": "Gastly Candy", "candy_count": 25, "egg": "5 km", "spawn_chance": 0.79, "avg_spawns": 79, "spawn_time": "04:21", "multipliers": [1.78], "weaknesses": [ "Ground", "Psychic", "Ghost", "Dark" ], "next_evolution": [{ "num": "093", "name": "Haunter" }, { "num": "094", "name": "Gengar" }] }, { "id": 93, "num": "093", "name": "Haunter", "img": "http://www.serebii.net/pokemongo/pokemon/093.png", "type": [ "Ghost", "Poison" ], "height": "1.60 m", "weight": "0.1 kg", "candy": "Gastly Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.052, "avg_spawns": 5.2, "spawn_time": "00:10", "multipliers": [ 1.56, 1.8 ], "weaknesses": [ "Ground", "Psychic", "Ghost", "Dark" ], "prev_evolution": [{ "num": "092", "name": "Gastly" }], "next_evolution": [{ "num": "094", "name": "Gengar" }] }, { "id": 94, "num": "094", "name": "Gengar", "img": "http://www.serebii.net/pokemongo/pokemon/094.png", "type": [ "Ghost", "Poison" ], "height": "1.50 m", "weight": "40.5 kg", "candy": "Gastly Candy", "egg": "Not in Eggs", "spawn_chance": 0.0067, "avg_spawns": 0.67, "spawn_time": "03:55", "multipliers": null, "weaknesses": [ "Ground", "Psychic", "Ghost", "Dark" ], "prev_evolution": [{ "num": "092", "name": "Gastly" }, { "num": "093", "name": "Haunter" }] }, { "id": 95, "num": "095", "name": "Onix", "img": "http://www.serebii.net/pokemongo/pokemon/095.png", "type": [ "Rock", "Ground" ], "height": "8.79 m", "weight": "210.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.10, "avg_spawns": 10, "spawn_time": "01:18", "multipliers": null, "weaknesses": [ "Water", "Grass", "Ice", "Fighting", "Ground", "Steel" ] }, { "id": 96, "num": "096", "name": "Drowzee", "img": "http://www.serebii.net/pokemongo/pokemon/096.png", "type": [ "Psychic" ], "height": "0.99 m", "weight": "32.4 kg", "candy": "Drowzee Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 3.21, "avg_spawns": 321, "spawn_time": "01:51", "multipliers": [ 2.08, 2.09 ], "weaknesses": [ "Bug", "Ghost", "Dark" ], "next_evolution": [{ "num": "097", "name": "Hypno" }] }, { "id": 97, "num": "097", "name": "Hypno", "img": "http://www.serebii.net/pokemongo/pokemon/097.png", "type": [ "Psychic" ], "height": "1.60 m", "weight": "75.6 kg", "candy": "Drowzee Candy", "egg": "Not in Eggs", "spawn_chance": 0.10, "avg_spawns": 10, "spawn_time": "02:17", "multipliers": null, "weaknesses": [ "Bug", "Ghost", "Dark" ], "prev_evolution": [{ "num": "096", "name": "Drowzee" }] }, { "id": 98, "num": "098", "name": "Krabby", "img": "http://www.serebii.net/pokemongo/pokemon/098.png", "type": [ "Water" ], "height": "0.41 m", "weight": "6.5 kg", "candy": "Krabby Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 2.12, "avg_spawns": 212, "spawn_time": "03:33", "multipliers": [ 2.36, 2.4 ], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "099", "name": "Kingler" }] }, { "id": 99, "num": "099", "name": "Kingler", "img": "http://www.serebii.net/pokemongo/pokemon/099.png", "type": [ "Water" ], "height": "1.30 m", "weight": "60.0 kg", "candy": "Krabby Candy", "egg": "Not in Eggs", "spawn_chance": 0.062, "avg_spawns": 6.2, "spawn_time": "03:44", "multipliers": null, "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "098", "name": "Krabby" }] }, { "id": 100, "num": "100", "name": "Voltorb", "img": "http://www.serebii.net/pokemongo/pokemon/100.png", "type": [ "Electric" ], "height": "0.51 m", "weight": "10.4 kg", "candy": "Voltorb Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.65, "avg_spawns": 65, "spawn_time": "04:36", "multipliers": [ 2.01, 2.02 ], "weaknesses": [ "Ground" ], "next_evolution": [{ "num": "101", "name": "Electrode" }] }, { "id": 101, "num": "101", "name": "Electrode", "img": "http://www.serebii.net/pokemongo/pokemon/101.png", "type": [ "Electric" ], "height": "1.19 m", "weight": "66.6 kg", "candy": "Voltorb Candy", "egg": "Not in Eggs", "spawn_chance": 0.02, "avg_spawns": 2, "spawn_time": "04:10", "multipliers": null, "weaknesses": [ "Ground" ], "prev_evolution": [{ "num": "100", "name": "Voltorb" }] }, { "id": 102, "num": "102", "name": "Exeggcute", "img": "http://www.serebii.net/pokemongo/pokemon/102.png", "type": [ "Grass", "Psychic" ], "height": "0.41 m", "weight": "2.5 kg", "candy": "Exeggcute Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.78, "avg_spawns": 78, "spawn_time": "09:09", "multipliers": [ 2.7, 3.18 ], "weaknesses": [ "Fire", "Ice", "Poison", "Flying", "Bug", "Ghost", "Dark" ], "next_evolution": [{ "num": "103", "name": "Exeggutor" }] }, { "id": 103, "num": "103", "name": "Exeggutor", "img": "http://www.serebii.net/pokemongo/pokemon/103.png", "type": [ "Grass", "Psychic" ], "height": "2.01 m", "weight": "120.0 kg", "candy": "Exeggcute Candy", "egg": "Not in Eggs", "spawn_chance": 0.014, "avg_spawns": 1.4, "spawn_time": "12:34", "multipliers": null, "weaknesses": [ "Fire", "Ice", "Poison", "Flying", "Bug", "Ghost", "Dark" ], "prev_evolution": [{ "num": "102", "name": "Exeggcute" }] }, { "id": 104, "num": "104", "name": "Cubone", "img": "http://www.serebii.net/pokemongo/pokemon/104.png", "type": [ "Ground" ], "height": "0.41 m", "weight": "6.5 kg", "candy": "Cubone Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.61, "avg_spawns": 61, "spawn_time": "01:51", "multipliers": [1.67], "weaknesses": [ "Water", "Grass", "Ice" ], "next_evolution": [{ "num": "105", "name": "Marowak" }] }, { "id": 105, "num": "105", "name": "Marowak", "img": "http://www.serebii.net/pokemongo/pokemon/105.png", "type": [ "Ground" ], "height": "0.99 m", "weight": "45.0 kg", "candy": "Cubone Candy", "egg": "Not in Eggs", "spawn_chance": 0.02, "avg_spawns": 2, "spawn_time": "03:59", "multipliers": null, "weaknesses": [ "Water", "Grass", "Ice" ], "prev_evolution": [{ "num": "104", "name": "Cubone" }] }, { "id": 106, "num": "106", "name": "Hitmonlee", "img": "http://www.serebii.net/pokemongo/pokemon/106.png", "type": [ "Fighting" ], "height": "1.50 m", "weight": "49.8 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.02, "avg_spawns": 2, "spawn_time": "03:59", "multipliers": null, "weaknesses": [ "Flying", "Psychic", "Fairy" ] }, { "id": 107, "num": "107", "name": "Hitmonchan", "img": "http://www.serebii.net/pokemongo/pokemon/107.png", "type": [ "Fighting" ], "height": "1.40 m", "weight": "50.2 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.022, "avg_spawns": 2.2, "spawn_time": "05:58", "multipliers": null, "weaknesses": [ "Flying", "Psychic", "Fairy" ] }, { "id": 108, "num": "108", "name": "Lickitung", "img": "http://www.serebii.net/pokemongo/pokemon/108.png", "type": [ "Normal" ], "height": "1.19 m", "weight": "65.5 kg", "candy": "None", "egg": "5 km", "spawn_chance": 0.011, "avg_spawns": 1.1, "spawn_time": "02:46", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 109, "num": "109", "name": "Koffing", "img": "http://www.serebii.net/pokemongo/pokemon/109.png", "type": [ "Poison" ], "height": "0.61 m", "weight": "1.0 kg", "candy": "Koffing Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.20, "avg_spawns": 20, "spawn_time": "08:16", "multipliers": [1.11], "weaknesses": [ "Ground", "Psychic" ], "next_evolution": [{ "num": "110", "name": "Weezing" }] }, { "id": 110, "num": "110", "name": "Weezing", "img": "http://www.serebii.net/pokemongo/pokemon/110.png", "type": [ "Poison" ], "height": "1.19 m", "weight": "9.5 kg", "candy": "Koffing Candy", "egg": "Not in Eggs", "spawn_chance": 0.016, "avg_spawns": 1.6, "spawn_time": "12:17", "multipliers": null, "weaknesses": [ "Ground", "Psychic" ], "prev_evolution": [{ "num": "109", "name": "Koffing" }] }, { "id": 111, "num": "111", "name": "Rhyhorn", "img": "http://www.serebii.net/pokemongo/pokemon/111.png", "type": [ "Ground", "Rock" ], "height": "0.99 m", "weight": "115.0 kg", "candy": "Rhyhorn Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 0.63, "avg_spawns": 63, "spawn_time": "03:21", "multipliers": [1.91], "weaknesses": [ "Water", "Grass", "Ice", "Fighting", "Ground", "Steel" ], "next_evolution": [{ "num": "112", "name": "Rhydon" }] }, { "id": 112, "num": "112", "name": "Rhydon", "img": "http://www.serebii.net/pokemongo/pokemon/112.png", "type": [ "Ground", "Rock" ], "height": "1.91 m", "weight": "120.0 kg", "candy": "Rhyhorn Candy", "egg": "Not in Eggs", "spawn_chance": 0.022, "avg_spawns": 2.2, "spawn_time": "05:50", "multipliers": null, "weaknesses": [ "Water", "Grass", "Ice", "Fighting", "Ground", "Steel" ], "prev_evolution": [{ "num": "111", "name": "Rhyhorn" }] }, { "id": 113, "num": "113", "name": "Chansey", "img": "http://www.serebii.net/pokemongo/pokemon/113.png", "type": [ "Normal" ], "height": "1.09 m", "weight": "34.6 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.013, "avg_spawns": 1.3, "spawn_time": "04:46", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 114, "num": "114", "name": "Tangela", "img": "http://www.serebii.net/pokemongo/pokemon/114.png", "type": [ "Grass" ], "height": "0.99 m", "weight": "35.0 kg", "candy": "None", "egg": "5 km", "spawn_chance": 0.228, "avg_spawns": 22.8, "spawn_time": "23:13", "multipliers": null, "weaknesses": [ "Fire", "Ice", "Poison", "Flying", "Bug" ] }, { "id": 115, "num": "115", "name": "Kangaskhan", "img": "http://www.serebii.net/pokemongo/pokemon/115.png", "type": [ "Normal" ], "height": "2.21 m", "weight": "80.0 kg", "candy": "None", "egg": "5 km", "spawn_chance": 0.0086, "avg_spawns": 0.86, "spawn_time": "02:40", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 116, "num": "116", "name": "Horsea", "img": "http://www.serebii.net/pokemongo/pokemon/116.png", "type": [ "Water" ], "height": "0.41 m", "weight": "8.0 kg", "candy": "Horsea Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 1.13, "avg_spawns": 113, "spawn_time": "02:53", "multipliers": [2.23], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "117", "name": "Seadra" }] }, { "id": 117, "num": "117", "name": "Seadra", "img": "http://www.serebii.net/pokemongo/pokemon/117.png", "type": [ "Water" ], "height": "1.19 m", "weight": "25.0 kg", "candy": "Horsea Candy", "egg": "Not in Eggs", "spawn_chance": 0.034, "avg_spawns": 3.4, "spawn_time": "03:18", "multipliers": null, "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "116", "name": "Horsea" }] }, { "id": 118, "num": "118", "name": "Goldeen", "img": "http://www.serebii.net/pokemongo/pokemon/118.png", "type": [ "Water" ], "height": "0.61 m", "weight": "15.0 kg", "candy": "Goldeen Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 2.18, "avg_spawns": 218, "spawn_time": "03:14", "multipliers": [ 2.15, 2.2 ], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "119", "name": "Seaking" }] }, { "id": 119, "num": "119", "name": "Seaking", "img": "http://www.serebii.net/pokemongo/pokemon/119.png", "type": [ "Water" ], "height": "1.30 m", "weight": "39.0 kg", "candy": "Goldeen Candy", "egg": "Not in Eggs", "spawn_chance": 0.08, "avg_spawns": 8, "spawn_time": "05:21", "multipliers": null, "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "118", "name": "Goldeen" }] }, { "id": 120, "num": "120", "name": "Staryu", "img": "http://www.serebii.net/pokemongo/pokemon/120.png", "type": [ "Water" ], "height": "0.79 m", "weight": "34.5 kg", "candy": "Staryu Candy", "candy_count": 50, "egg": "5 km", "spawn_chance": 1.95, "avg_spawns": 195, "spawn_time": "22:59", "multipliers": [ 2.38, 2.41 ], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "121", "name": "Starmie" }] }, { "id": 121, "num": "121", "name": "Starmie", "img": "http://www.serebii.net/pokemongo/pokemon/121.png", "type": [ "Water", "Psychic" ], "height": "1.09 m", "weight": "80.0 kg", "candy": "Staryu Candy", "egg": "Not in Eggs", "spawn_chance": 0.034, "avg_spawns": 3.4, "spawn_time": "06:57", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Bug", "Ghost", "Dark" ], "prev_evolution": [{ "num": "120", "name": "Staryu" }] }, { "id": 122, "num": "122", "name": "Mr. Mime", "img": "http://www.serebii.net/pokemongo/pokemon/122.png", "type": [ "Psychic" ], "height": "1.30 m", "weight": "54.5 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.0031, "avg_spawns": 0.31, "spawn_time": "01:51", "multipliers": null, "weaknesses": [ "Bug", "Ghost", "Dark" ] }, { "id": 123, "num": "123", "name": "Scyther", "img": "http://www.serebii.net/pokemongo/pokemon/123.png", "type": [ "Bug", "Flying" ], "height": "1.50 m", "weight": "56.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.14, "avg_spawns": 14, "spawn_time": "05:43", "multipliers": null, "weaknesses": [ "Fire", "Electric", "Ice", "Flying", "Rock" ] }, { "id": 124, "num": "124", "name": "Jynx", "img": "http://www.serebii.net/pokemongo/pokemon/124.png", "type": [ "Ice", "Psychic" ], "height": "1.40 m", "weight": "40.6 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.35, "avg_spawns": 35, "spawn_time": "05:41", "multipliers": null, "weaknesses": [ "Fire", "Bug", "Rock", "Ghost", "Dark", "Steel" ] }, { "id": 125, "num": "125", "name": "Electabuzz", "img": "http://www.serebii.net/pokemongo/pokemon/125.png", "type": [ "Electric" ], "height": "1.09 m", "weight": "30.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.074, "avg_spawns": 7.4, "spawn_time": "04:28", "multipliers": null, "weaknesses": [ "Ground" ] }, { "id": 126, "num": "126", "name": "Magmar", "img": "http://www.serebii.net/pokemongo/pokemon/126.png", "type": [ "Fire" ], "height": "1.30 m", "weight": "44.5 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.10, "avg_spawns": 10, "spawn_time": "20:36", "multipliers": null, "weaknesses": [ "Water", "Ground", "Rock" ] }, { "id": 127, "num": "127", "name": "Pinsir", "img": "http://www.serebii.net/pokemongo/pokemon/127.png", "type": [ "Bug" ], "height": "1.50 m", "weight": "55.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.99, "avg_spawns": 99, "spawn_time": "03:25", "multipliers": null, "weaknesses": [ "Fire", "Flying", "Rock" ] }, { "id": 128, "num": "128", "name": "Tauros", "img": "http://www.serebii.net/pokemongo/pokemon/128.png", "type": [ "Normal" ], "height": "1.40 m", "weight": "88.4 kg", "candy": "None", "egg": "5 km", "spawn_chance": 0.12, "avg_spawns": 12, "spawn_time": "00:37", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 129, "num": "129", "name": "Magikarp", "img": "http://www.serebii.net/pokemongo/pokemon/129.png", "type": [ "Water" ], "height": "0.89 m", "weight": "10.0 kg", "candy": "Magikarp Candy", "candy_count": 400, "egg": "2 km", "spawn_chance": 4.78, "avg_spawns": 478, "spawn_time": "14:26", "multipliers": [ 10.1, 11.8 ], "weaknesses": [ "Electric", "Grass" ], "next_evolution": [{ "num": "130", "name": "Gyarados" }] }, { "id": 130, "num": "130", "name": "Gyarados", "img": "http://www.serebii.net/pokemongo/pokemon/130.png", "type": [ "Water", "Flying" ], "height": "6.50 m", "weight": "235.0 kg", "candy": "Magikarp Candy", "egg": "Not in Eggs", "spawn_chance": 0.0032, "avg_spawns": 0.32, "spawn_time": "02:15", "multipliers": null, "weaknesses": [ "Electric", "Rock" ], "prev_evolution": [{ "num": "129", "name": "Magikarp" }] }, { "id": 131, "num": "131", "name": "Lapras", "img": "http://www.serebii.net/pokemongo/pokemon/131.png", "type": [ "Water", "Ice" ], "height": "2.49 m", "weight": "220.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.006, "avg_spawns": 0.6, "spawn_time": "08:59", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Fighting", "Rock" ] }, { "id": 132, "num": "132", "name": "Ditto", "img": "http://www.serebii.net/pokemongo/pokemon/132.png", "type": [ "Normal" ], "height": "0.30 m", "weight": "4.0 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0, "avg_spawns": 0, "spawn_time": "N/A", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 133, "num": "133", "name": "Eevee", "img": "http://www.serebii.net/pokemongo/pokemon/133.png", "type": [ "Normal" ], "height": "0.30 m", "weight": "6.5 kg", "candy": "Eevee Candy", "candy_count": 25, "egg": "10 km", "spawn_chance": 2.75, "avg_spawns": 275, "spawn_time": "05:32", "multipliers": [ 2.02, 2.64 ], "weaknesses": [ "Fighting" ], "next_evolution": [{ "num": "134", "name": "Vaporeon" }, { "num": "135", "name": "Jolteon" }, { "num": "136", "name": "Flareon" }] }, { "id": 134, "num": "134", "name": "Vaporeon", "img": "http://www.serebii.net/pokemongo/pokemon/134.png", "type": [ "Water" ], "height": "0.99 m", "weight": "29.0 kg", "candy": "Eevee Candy", "egg": "Not in Eggs", "spawn_chance": 0.014, "avg_spawns": 1.4, "spawn_time": "10:54", "multipliers": null, "weaknesses": [ "Electric", "Grass" ], "prev_evolution": [{ "num": "133", "name": "Eevee" }] }, { "id": 135, "num": "135", "name": "Jolteon", "img": "http://www.serebii.net/pokemongo/pokemon/135.png", "type": [ "Electric" ], "height": "0.79 m", "weight": "24.5 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0.012, "avg_spawns": 1.2, "spawn_time": "02:30", "multipliers": null, "weaknesses": [ "Ground" ], "prev_evolution": [{ "num": "133", "name": "Eevee" }] }, { "id": 136, "num": "136", "name": "Flareon", "img": "http://www.serebii.net/pokemongo/pokemon/136.png", "type": [ "Fire" ], "height": "0.89 m", "weight": "25.0 kg", "candy": "Eevee Candy", "egg": "Not in Eggs", "spawn_chance": 0.017, "avg_spawns": 1.7, "spawn_time": "07:02", "multipliers": null, "weaknesses": [ "Water", "Ground", "Rock" ], "prev_evolution": [{ "num": "133", "name": "Eevee" }] }, { "id": 137, "num": "137", "name": "Porygon", "img": "http://www.serebii.net/pokemongo/pokemon/137.png", "type": [ "Normal" ], "height": "0.79 m", "weight": "36.5 kg", "candy": "None", "egg": "5 km", "spawn_chance": 0.012, "avg_spawns": 1.2, "spawn_time": "02:49", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 138, "num": "138", "name": "Omanyte", "img": "http://www.serebii.net/pokemongo/pokemon/138.png", "type": [ "Rock", "Water" ], "height": "0.41 m", "weight": "7.5 kg", "candy": "Omanyte Candy", "candy_count": 50, "egg": "10 km", "spawn_chance": 0.14, "avg_spawns": 14, "spawn_time": "10:23", "multipliers": [2.12], "weaknesses": [ "Electric", "Grass", "Fighting", "Ground" ], "next_evolution": [{ "num": "139", "name": "Omastar" }] }, { "id": 139, "num": "139", "name": "Omastar", "img": "http://www.serebii.net/pokemongo/pokemon/139.png", "type": [ "Rock", "Water" ], "height": "0.99 m", "weight": "35.0 kg", "candy": "None", "egg": "Omanyte Candy", "spawn_chance": 0.0061, "avg_spawns": 0.61, "spawn_time": "05:04", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Fighting", "Ground" ], "prev_evolution": [{ "num": "138", "name": "Omanyte" }] }, { "id": 140, "num": "140", "name": "Kabuto", "img": "http://www.serebii.net/pokemongo/pokemon/140.png", "type": [ "Rock", "Water" ], "height": "0.51 m", "weight": "11.5 kg", "candy": "Kabuto Candy", "candy_count": 50, "egg": "10 km", "spawn_chance": 0.10, "avg_spawns": 10, "spawn_time": "00:05", "multipliers": [ 1.97, 2.37 ], "weaknesses": [ "Electric", "Grass", "Fighting", "Ground" ], "next_evolution": [{ "num": "141", "name": "Kabutops" }] }, { "id": 141, "num": "141", "name": "Kabutops", "img": "http://www.serebii.net/pokemongo/pokemon/141.png", "type": [ "Rock", "Water" ], "height": "1.30 m", "weight": "40.5 kg", "candy": "Kabuto Candy", "egg": "Not in Eggs", "spawn_chance": 0.0032, "avg_spawns": 0.32, "spawn_time": "23:40", "multipliers": null, "weaknesses": [ "Electric", "Grass", "Fighting", "Ground" ], "prev_evolution": [{ "num": "140", "name": "Kabuto" }] }, { "id": 142, "num": "142", "name": "Aerodactyl", "img": "http://www.serebii.net/pokemongo/pokemon/142.png", "type": [ "Rock", "Flying" ], "height": "1.80 m", "weight": "59.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.018, "avg_spawns": 1.8, "spawn_time": "23:40", "multipliers": null, "weaknesses": [ "Water", "Electric", "Ice", "Rock", "Steel" ] }, { "id": 143, "num": "143", "name": "Snorlax", "img": "http://www.serebii.net/pokemongo/pokemon/143.png", "type": [ "Normal" ], "height": "2.11 m", "weight": "460.0 kg", "candy": "None", "egg": "10 km", "spawn_chance": 0.016, "avg_spawns": 1.6, "spawn_time": "23:40", "multipliers": null, "weaknesses": [ "Fighting" ] }, { "id": 144, "num": "144", "name": "Articuno", "img": "http://www.serebii.net/pokemongo/pokemon/144.png", "type": [ "Ice", "Flying" ], "height": "1.70 m", "weight": "55.4 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0, "avg_spawns": 0, "spawn_time": "N/A", "multipliers": null, "weaknesses": [ "Fire", "Electric", "Rock", "Steel" ] }, { "id": 145, "num": "145", "name": "Zapdos", "img": "http://www.serebii.net/pokemongo/pokemon/145.png", "type": [ "Electric", "Flying" ], "height": "1.60 m", "weight": "52.6 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0, "avg_spawns": 0, "spawn_time": "N/A", "multipliers": null, "weaknesses": [ "Ice", "Rock" ] }, { "id": 146, "num": "146", "name": "Moltres", "img": "http://www.serebii.net/pokemongo/pokemon/146.png", "type": [ "Fire", "Flying" ], "height": "2.01 m", "weight": "60.0 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0, "avg_spawns": 0, "spawn_time": "N/A", "multipliers": null, "weaknesses": [ "Water", "Electric", "Rock" ] }, { "id": 147, "num": "147", "name": "Dratini", "img": "http://www.serebii.net/pokemongo/pokemon/147.png", "type": [ "Dragon" ], "height": "1.80 m", "weight": "3.3 kg", "candy": "Dratini Candy", "candy_count": 25, "egg": "10 km", "spawn_chance": 0.30, "avg_spawns": 30, "spawn_time": "06:41", "multipliers": [ 1.83, 1.84 ], "weaknesses": [ "Ice", "Dragon", "Fairy" ], "next_evolution": [{ "num": "148", "name": "Dragonair" }, { "num": "149", "name": "Dragonite" }] }, { "id": 148, "num": "148", "name": "Dragonair", "img": "http://www.serebii.net/pokemongo/pokemon/148.png", "type": [ "Dragon" ], "height": "3.99 m", "weight": "16.5 kg", "candy": "Dratini Candy", "candy_count": 100, "egg": "Not in Eggs", "spawn_chance": 0.02, "avg_spawns": 2, "spawn_time": "11:57", "multipliers": [2.05], "weaknesses": [ "Ice", "Dragon", "Fairy" ], "prev_evolution": [{ "num": "147", "name": "Dratini" }], "next_evolution": [{ "num": "149", "name": "Dragonite" }] }, { "id": 149, "num": "149", "name": "Dragonite", "img": "http://www.serebii.net/pokemongo/pokemon/149.png", "type": [ "Dragon", "Flying" ], "height": "2.21 m", "weight": "210.0 kg", "candy": "Dratini Candy", "egg": "Not in Eggs", "spawn_chance": 0.0011, "avg_spawns": 0.11, "spawn_time": "23:38", "multipliers": null, "weaknesses": [ "Ice", "Rock", "Dragon", "Fairy" ], "prev_evolution": [{ "num": "147", "name": "Dratini" }, { "num": "148", "name": "Dragonair" }] }, { "id": 150, "num": "150", "name": "Mewtwo", "img": "http://www.serebii.net/pokemongo/pokemon/150.png", "type": [ "Psychic" ], "height": "2.01 m", "weight": "122.0 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0, "avg_spawns": 0, "spawn_time": "N/A", "multipliers": null, "weaknesses": [ "Bug", "Ghost", "Dark" ] }, { "id": 151, "num": "151", "name": "Mew", "img": "http://www.serebii.net/pokemongo/pokemon/151.png", "type": [ "Psychic" ], "height": "0.41 m", "weight": "4.0 kg", "candy": "None", "egg": "Not in Eggs", "spawn_chance": 0, "avg_spawns": 0, "spawn_time": "N/A", "multipliers": null, "weaknesses": [ "Bug", "Ghost", "Dark" ] }] } ================================================ FILE: tests/corpus/pokemon.json ================================================ {"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} ================================================ FILE: tests/corpus/tiny.json ================================================ { "people": [ {"first-name": "Bob", "age": 32, "occupation": "Plumber", "full-time": true}, {"first-name": "Alice", "age": 28, "occupation": "Programmer", "full-time": true}, {"first-name": "Bernard", "age": 36, "occupation": null, "full-time": null}, {"first-name": "El", "age": 57, "occupation": "Programmer", "full-time": false} ] } ================================================ FILE: tests/package.json ================================================ { "type": "module" } ================================================ FILE: tests/test.js ================================================ import * as jcof from "../implementations/javascript/jcof.js"; import * as fs from "fs"; let corpora = [ "tiny", "circuitsim", "pokemon", "pokedex", "madrid", "meteorites", "comets", ]; function deepDiff(a, b) { if (a == b) { return null; } if (typeof a != typeof b) { return [typeof a, typeof b]; } if (a == null) { return ["null, non-null"]; } else if (b == null) { return ["non-null", "null"]; } if ((a instanceof Array) && !(b instanceof Array)) { return ["array", "non-array"]; } else if (!(a instanceof Array) && (b instanceof Array)) { return ["non-array", "array"]; } if (typeof a != "object") { return [a, b]; } if (a instanceof Array && b instanceof Array) { if (a.length != b.length) { return [`|${a.length}|`, `|${b.length}|`]; } for (let i = 0; i < a.length; ++i) { let diff = deepDiff(a[i], b[i]); if (diff) { let d = {}; d[i] = diff; return d; } } return null; } let keysA = Object.keys(a).sort(); let keysB = Object.keys(b).sort(); let keysDiff = deepDiff(keysA, keysB); if (keysDiff) { return {"$keys": keysDiff}; } for (let key of keysA) { let diff = deepDiff(a[key], b[key]); if (diff) { let obj = {}; obj[key] = diff; return obj; } } return null; } function strtime(t) { if (t > 1) { return t.toFixed(2) + "s"; } else if (t > 0.0001) { return (t * 1000).toFixed(2) + "ms"; } else { return (t * 1000000).toFixed(2) + "µs"; } } function compare(corpus) { let text = fs.readFileSync(`corpus/${corpus}.json`, "utf-8"); let obj = JSON.parse(text); console.log(corpus + ".json:"); let jsonEnc = JSON.stringify(obj); console.log(" JSON:", jsonEnc.length, "bytes"); fs.writeFileSync(`output/${corpus}.json`, jsonEnc); let jcofEnc = jcof.stringify(obj); fs.writeFileSync(`output/${corpus}.jcof`, jcofEnc); let parsed = jcof.parse(jcofEnc); let efficiency = (jcofEnc.length / jsonEnc.length).toFixed(3); console.log(" JCOF:", jcofEnc.length, "bytes", "(" + efficiency + "x)"); let diff = deepDiff(parsed, obj); if (diff) { console.error(`Oh no, ${name} produced a wrong object!`); console.log(JSON.stringify(diff)); } } fs.mkdir("output", () => { corpora.forEach(compare); });