From f133a8f1d9d1f3b4af406006953fdf5a10ff1708 Mon Sep 17 00:00:00 2001 From: Felix Staud Date: Fri, 2 Aug 2024 14:49:14 -0700 Subject: [PATCH] refine optional API mocking --- .env.development | 2 +- package-lock.json | 8 ++++ package.json | 15 +++--- src/main.ts | 2 +- src/mocks/msw/api/data/everything.json | 1 + .../msw/api/handlers/msw-account-handlers.ts | 38 +++++++++++++++ .../msw/api/handlers/msw-daily-handlers.ts | 28 +++++++++++ .../msw/api/handlers/msw-game-handlers.ts | 18 +++++++ .../msw/api/handlers/msw-savedata-handlers.ts | 47 +++++++++++++++++++ src/mocks/msw/handlers/get-handlers.ts | 43 ----------------- src/mocks/msw/handlers/post-handlers.ts | 24 ---------- src/mocks/msw/msw-browser.ts | 15 ++++-- 12 files changed, 162 insertions(+), 79 deletions(-) create mode 100644 src/mocks/msw/api/data/everything.json create mode 100644 src/mocks/msw/api/handlers/msw-account-handlers.ts create mode 100644 src/mocks/msw/api/handlers/msw-daily-handlers.ts create mode 100644 src/mocks/msw/api/handlers/msw-game-handlers.ts create mode 100644 src/mocks/msw/api/handlers/msw-savedata-handlers.ts delete mode 100644 src/mocks/msw/handlers/get-handlers.ts delete mode 100644 src/mocks/msw/handlers/post-handlers.ts diff --git a/.env.development b/.env.development index c3ee3450c04..5e67674b052 100644 --- a/.env.development +++ b/.env.development @@ -5,4 +5,4 @@ VITE_DISCORD_CLIENT_ID=1234567890 VITE_GOOGLE_CLIENT_ID=1234567890 VITE_I18N_DEBUG=1 VITE_PORT=8000 -VITE_MOCK_API=1 \ No newline at end of file +VITE_MOCK_API=0 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index a9b3f86d2d3..8269e9e15a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,6 +21,7 @@ "@eslint/js": "^9.3.0", "@hpcc-js/wasm": "^2.18.0", "@stylistic/eslint-plugin-ts": "^2.6.0-beta.0", + "@types/crypto-js": "^4.2.2", "@types/jsdom": "^21.1.7", "@types/node": "^20.12.13", "@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54", @@ -1763,6 +1764,13 @@ "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", "dev": true }, + "node_modules/@types/crypto-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.2.2.tgz", + "integrity": "sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/eslint": { "version": "8.56.11", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.11.tgz", diff --git a/package.json b/package.json index a05cf24fceb..ac35d6084f1 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "@eslint/js": "^9.3.0", "@hpcc-js/wasm": "^2.18.0", "@stylistic/eslint-plugin-ts": "^2.6.0-beta.0", + "@types/crypto-js": "^4.2.2", "@types/jsdom": "^21.1.7", "@types/node": "^20.12.13", "@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54", @@ -32,7 +33,7 @@ "eslint": "^9.7.0", "jsdom": "^24.0.0", "lefthook": "^1.6.12", - "msw": "^2.3.1", + "msw": "^2.3.1", "phaser3spectorjs": "^0.0.8", "typedoc": "^0.26.4", "typescript": "^5.5.3", @@ -61,9 +62,9 @@ "#app/*": "./src/*", "#test/*": "./src/test/*" }, - "msw": { - "workerDirectory": [ - "public" - ] - } -} \ No newline at end of file + "msw": { + "workerDirectory": [ + "public" + ] + } +} diff --git a/src/main.ts b/src/main.ts index f5283951736..9125b478be5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -13,7 +13,7 @@ async function enableApiMocking(): Promise { const { worker } = await import("./mocks/msw/msw-browser"); return worker.start({ onUnhandledRequest: "bypass" }); } - + console.log("API Mocking disabled."); return Promise.resolve(); } diff --git a/src/mocks/msw/api/data/everything.json b/src/mocks/msw/api/data/everything.json new file mode 100644 index 00000000000..4422b7c249b --- /dev/null +++ b/src/mocks/msw/api/data/everything.json @@ -0,0 +1 @@ +{"trainerId":9545,"secretId":57355,"gender":2,"dexData":{"1":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"3":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"5":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"7":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"8":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"9":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"10":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"11":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"12":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":-1,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"13":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"14":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"15":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"16":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":3,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"17":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"18":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"19":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"20":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"21":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":3,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"22":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"23":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":2,"caughtCount":2,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"24":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"25":{"seenAttr":131071,"caughtAttr":131071,"natureAttr":1125899906842623,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"26":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"27":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"28":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"29":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"30":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"31":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"32":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"33":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"34":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"35":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"36":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"37":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"38":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"39":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"40":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"41":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"42":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"43":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"44":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"45":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"46":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"47":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"48":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"49":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"50":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"51":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"52":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"53":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"54":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"55":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"56":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"57":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"58":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"59":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"60":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"61":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"62":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"63":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"64":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"65":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"66":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"67":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"68":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"69":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"70":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"71":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"72":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"73":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"74":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"75":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"76":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"77":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"78":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"79":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"80":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"81":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"82":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"83":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"84":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"85":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"86":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"87":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"88":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"89":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"90":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"91":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"92":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"93":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"94":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"95":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"96":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"97":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"98":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"99":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"100":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"101":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"102":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"103":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"104":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"105":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"106":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"107":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"108":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"109":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"110":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"111":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"112":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"113":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"114":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"115":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"116":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"117":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"118":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"119":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"120":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"121":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"122":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"123":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"124":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"125":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"126":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"127":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"128":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"129":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"130":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"131":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"132":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"133":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"134":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"135":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"136":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"137":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"138":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"139":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"140":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"141":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"142":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"143":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"144":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"145":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"146":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"147":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"148":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"149":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"150":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"151":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"152":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"153":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"154":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"155":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"156":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"157":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"158":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"159":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"160":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"161":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"162":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"163":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"164":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"165":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"166":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"167":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"168":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"169":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"170":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"171":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"172":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"173":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"174":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"175":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"176":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"177":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"178":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"179":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"180":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"181":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"182":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"183":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"184":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"185":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"186":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"187":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"188":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"189":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"190":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"191":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"192":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"193":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"194":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"195":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"196":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"197":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"198":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"199":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"200":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"201":{"seenAttr":"68719476735","caughtAttr":"68719476735","natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"202":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"203":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"204":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"205":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"206":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"207":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"208":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"209":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"210":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"211":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"212":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"213":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"214":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"215":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"216":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"217":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"218":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"219":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"220":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"221":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"222":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"223":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"224":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"225":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"226":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"227":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"228":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"229":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"230":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"231":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"232":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"233":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"234":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"235":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"236":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"237":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"238":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"239":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"240":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"241":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"242":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"243":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"244":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"245":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"246":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"247":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"248":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"249":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"250":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"251":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"252":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"253":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"254":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"255":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"256":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"257":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"258":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"259":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"260":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"261":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":4,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"262":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"263":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"264":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"265":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"266":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"267":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"268":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"269":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"270":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"271":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"272":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"273":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"274":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"275":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"276":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"277":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"278":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"279":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"280":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"281":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"282":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"283":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"284":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"285":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"286":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"287":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"288":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"289":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"290":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"291":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"292":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"293":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"294":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"295":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"296":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"297":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"298":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"299":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"300":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":2,"caughtCount":2,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"301":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"302":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"303":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"304":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"305":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"306":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"307":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"308":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"309":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"310":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"311":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"312":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"313":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"314":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"315":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"316":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"317":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"318":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"319":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"320":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"321":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"322":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"323":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"324":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"325":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"326":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"327":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"328":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"329":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"330":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"331":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"332":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"333":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"334":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"335":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"336":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"337":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"338":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"339":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"340":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"341":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"342":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"343":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"344":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"345":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"346":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"347":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"348":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"349":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"350":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"351":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"352":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"353":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"354":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"355":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"356":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"357":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"358":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"359":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"360":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"361":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"362":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"363":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"364":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"365":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"366":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"367":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"368":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"369":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"370":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"371":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"372":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"373":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"374":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"375":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"376":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"377":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"378":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"379":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"380":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"381":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"382":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"383":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"384":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"385":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"386":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"387":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"388":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"389":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"390":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"391":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"392":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"393":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"394":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"395":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"396":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"397":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"398":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"399":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"400":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"401":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"402":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"403":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"404":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"405":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"406":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"407":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"408":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"409":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"410":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"411":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"412":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"413":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"414":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"415":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"416":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"417":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"418":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"419":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"420":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"421":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"422":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"423":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"424":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"425":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"426":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"427":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"428":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"429":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"430":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"431":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"432":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"433":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"434":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"435":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"436":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"437":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"438":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"439":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"440":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"441":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"442":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"443":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"444":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"445":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"446":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"447":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"448":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"449":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"450":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"451":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"452":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"453":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"454":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"455":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"456":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"457":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"458":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"459":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"460":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"461":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"462":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"463":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"464":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"465":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"466":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"467":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"468":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"469":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"470":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"471":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"472":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"473":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"474":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"475":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"476":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"477":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"478":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"479":{"seenAttr":16383,"caughtAttr":16383,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"480":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"481":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"482":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"483":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"484":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"485":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"486":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"487":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"488":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"489":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"490":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"491":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"492":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"493":{"seenAttr":134217727,"caughtAttr":134217727,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"494":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"495":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"496":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"497":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"498":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"499":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"500":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"501":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"502":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"503":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"504":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"505":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"506":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":3,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"507":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"508":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"509":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"510":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"511":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"512":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"513":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"514":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"515":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"516":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"517":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"518":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"519":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"520":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"521":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"522":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"523":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"524":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"525":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"526":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"527":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"528":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"529":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"530":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"531":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"532":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"533":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"534":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"535":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"536":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"537":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"538":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"539":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"540":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"541":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"542":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"543":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"544":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"545":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"546":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"547":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"548":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"549":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"550":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"551":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"552":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"553":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"554":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"555":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"556":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"557":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"558":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"559":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"560":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"561":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"562":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"563":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"564":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"565":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"566":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"567":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"568":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"569":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"570":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"571":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"572":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"573":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"574":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"575":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"576":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"577":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"578":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"579":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"580":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"581":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"582":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"583":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"584":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"585":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"586":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"587":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"588":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"589":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"590":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"591":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"592":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"593":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"594":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"595":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"596":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"597":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"598":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"599":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"600":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"601":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"602":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"603":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"604":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"605":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"606":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"607":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"608":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"609":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"610":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"611":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"612":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"613":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"614":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"615":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"616":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"617":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"618":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"619":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"620":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"621":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"622":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"623":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"624":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"625":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"626":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"627":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"628":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"629":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"630":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"631":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"632":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"633":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"634":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"635":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"636":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"637":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"638":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"639":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"640":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"641":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"642":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"643":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"644":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"645":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"646":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"647":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"648":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"649":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"650":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"651":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"652":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"653":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"654":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"655":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"656":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"657":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"658":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"659":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"660":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"661":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"662":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"663":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"664":{"seenAttr":268435455,"caughtAttr":268435455,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"665":{"seenAttr":268435455,"caughtAttr":268435455,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"666":{"seenAttr":268435455,"caughtAttr":268435455,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"667":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"668":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"669":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"670":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"671":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"672":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"673":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"674":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"675":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"676":{"seenAttr":262143,"caughtAttr":262143,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"677":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"678":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"679":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"680":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"681":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"682":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"683":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"684":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"685":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"686":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"687":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"688":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"689":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"690":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"691":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"692":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"693":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"694":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"695":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"696":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"697":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"698":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"699":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"700":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"701":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"702":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"703":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"704":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"705":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"706":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"707":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"708":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"709":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"710":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"711":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"712":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"713":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"714":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"715":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"716":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"717":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"718":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"719":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"720":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"721":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"722":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"723":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"724":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"725":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"726":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"727":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"728":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"729":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"730":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"731":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"732":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"733":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"734":{"seenAttr":255,"caughtAttr":255,"natureAttr":-1,"seenCount":2,"caughtCount":2,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"735":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"736":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"737":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"738":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"739":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"740":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"741":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"742":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"743":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"744":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"745":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"746":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"747":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"748":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"749":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"750":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"751":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"752":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"753":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"754":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"755":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"756":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"757":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"758":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"759":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"760":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"761":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"762":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"763":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"764":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"765":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"766":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"767":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"768":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"769":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"770":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"771":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"772":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"773":{"seenAttr":67108863,"caughtAttr":67108863,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"774":{"seenAttr":4194303,"caughtAttr":4194303,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"775":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"776":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"777":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"778":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"779":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"780":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"781":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"782":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"783":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"784":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"785":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"786":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"787":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"788":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"789":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"790":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"791":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"792":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"793":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"794":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"795":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"796":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"797":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"798":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"799":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"800":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"801":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"802":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"803":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"804":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"805":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"806":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"807":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"808":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"809":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"810":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"811":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"812":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"813":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"814":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"815":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"816":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"817":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"818":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"819":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"820":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"821":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"822":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"823":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"824":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"825":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"826":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"827":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"828":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"829":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"830":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"831":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"832":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"833":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"834":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"835":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"836":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"837":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"838":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"839":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"840":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"841":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"842":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"843":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"844":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"845":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"846":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"847":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"848":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"849":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"850":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"851":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"852":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"853":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"854":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"855":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"856":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"857":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"858":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"859":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"860":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"861":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"862":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"863":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"864":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"865":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"866":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"867":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"868":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"869":{"seenAttr":262143,"caughtAttr":262143,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"870":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"871":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"872":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"873":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"874":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"875":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"876":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"877":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"878":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"879":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"880":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"881":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"882":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"883":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"884":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"885":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"886":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"887":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"888":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"889":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"890":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"891":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"892":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"893":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"894":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"895":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"896":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"897":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"898":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"899":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"900":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"901":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"902":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"903":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"904":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"905":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"906":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"907":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"908":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"909":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"910":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"911":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"912":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"913":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"914":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"915":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"916":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"917":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"918":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"919":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"920":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"921":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":2,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"922":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"923":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"924":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"925":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"926":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"927":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"928":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"929":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"930":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"931":{"seenAttr":4095,"caughtAttr":4095,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"932":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"933":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"934":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"935":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"936":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"937":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"938":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"939":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"940":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"941":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"942":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"943":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"944":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"945":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"946":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"947":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"948":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"949":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"950":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"951":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"952":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"953":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"954":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"955":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"956":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"957":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"958":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"959":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"960":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"961":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"962":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"963":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"964":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"965":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"966":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"967":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"968":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"969":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"970":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"971":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"972":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"973":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"974":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"975":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"976":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"977":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"978":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"979":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"980":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"981":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"982":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"983":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"984":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"985":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"986":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"987":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"988":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"989":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"990":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"991":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"992":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"993":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"994":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"995":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"996":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"997":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"998":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"999":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1000":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1001":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1002":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1003":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1004":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1005":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1006":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1007":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1008":{"seenAttr":8191,"caughtAttr":8191,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1009":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1010":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1011":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1012":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1013":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1014":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1015":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1016":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1017":{"seenAttr":65535,"caughtAttr":65535,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1018":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1019":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1020":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1021":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1022":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1023":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1024":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"1025":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2019":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2020":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2026":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2027":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2028":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2037":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2038":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2050":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2051":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2052":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2053":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2074":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2075":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2076":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2088":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2089":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2103":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2105":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"2670":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4052":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4077":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4078":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4079":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4080":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4083":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4110":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4122":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4144":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4145":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4146":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4199":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4222":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4263":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4264":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4554":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4555":{"seenAttr":1023,"caughtAttr":1023,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4562":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"4618":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6058":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6059":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6100":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6101":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6157":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6211":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6215":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6503":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6549":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6570":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6571":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6628":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6705":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6706":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6713":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"6724":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"8128":{"seenAttr":2047,"caughtAttr":2047,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"8194":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]},"8901":{"seenAttr":255,"caughtAttr":255,"natureAttr":1125899906842623,"seenCount":1,"caughtCount":1,"hatchedCount":0,"ivs":[31,31,31,31,31,31]}},"starterData":{"1":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":8,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":1},"4":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":24,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":1},"7":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":8,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":1},"10":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"13":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"16":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"19":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"21":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"23":{"moveset":null,"eggMoves":0,"candyCount":1,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"25":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"27":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":2,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"29":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"32":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"35":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"37":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"39":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"41":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"43":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"46":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"48":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"50":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"52":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"54":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"56":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"58":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"60":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"63":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"66":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"69":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"72":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"74":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"77":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"79":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"81":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"83":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"84":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"86":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"88":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"90":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"92":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"95":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"96":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"98":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"100":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"102":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"104":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"106":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"107":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"108":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"109":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"111":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"113":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"114":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"115":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"116":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"118":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"120":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"122":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"123":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"124":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"125":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"126":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"127":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"128":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"129":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"131":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"132":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"133":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"137":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"138":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"140":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"142":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"143":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"144":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"145":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"146":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"147":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"150":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"151":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"152":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"155":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"158":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"161":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"163":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"165":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"167":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"170":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"172":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"173":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"174":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"175":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"177":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"179":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"183":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"185":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"187":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"190":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"191":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"193":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"194":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"198":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"200":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"201":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"202":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"203":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"204":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"206":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"207":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"209":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"211":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"213":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"214":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"215":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"216":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"218":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"220":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"222":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"223":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"225":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"226":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"227":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"228":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"231":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"234":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"235":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"236":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"238":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"239":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"240":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"241":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"243":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"244":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"245":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"246":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"249":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"250":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"251":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"252":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"255":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"258":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"261":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"263":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"265":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"270":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"273":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"276":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"278":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"280":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"283":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"285":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"287":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"290":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"293":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"296":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"298":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"299":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"300":{"moveset":null,"eggMoves":0,"candyCount":2,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"302":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"303":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"304":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"307":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"309":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"311":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"312":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"313":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"314":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"315":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"316":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"318":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"320":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"322":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"324":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"325":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"327":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"328":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"331":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"333":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"335":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"336":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"337":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"338":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"339":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"341":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"343":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"345":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"347":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"349":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"351":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"352":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"353":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"355":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"357":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"358":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"359":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"360":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"361":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"363":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"366":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"369":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"370":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"371":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"374":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"377":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"378":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"379":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"380":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"381":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"382":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"383":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"384":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"385":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"386":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"387":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"390":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"393":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"396":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"399":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"401":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"403":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"406":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"408":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"410":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"412":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"415":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"417":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"418":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"420":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"422":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"425":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"427":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"431":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"433":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"434":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"436":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"438":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"439":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"440":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"441":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"442":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"443":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"446":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"447":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"449":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"451":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"453":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"455":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"456":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"458":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"459":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"479":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"480":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"481":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"482":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"483":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"484":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"485":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"486":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"487":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"488":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"489":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"490":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"491":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"492":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"493":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"494":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"495":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"498":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"501":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"504":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"506":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"509":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"511":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"513":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"515":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"517":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"519":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"522":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"524":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"527":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"529":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"531":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"532":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"535":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"538":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"539":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"540":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"543":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"546":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"548":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"550":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"551":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"554":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"556":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"557":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"559":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"561":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"562":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"564":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"566":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"568":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"570":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"572":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"574":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"577":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"580":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"582":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"585":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"587":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"588":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"590":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"592":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"594":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"595":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"597":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"599":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"602":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"605":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"607":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"610":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"613":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"615":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"616":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"618":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"619":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"621":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"622":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"624":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"626":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"627":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"629":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"631":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"632":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"633":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"636":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"638":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"639":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"640":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"641":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"642":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"643":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"644":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"645":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"646":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"647":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"648":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"649":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"650":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"653":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"656":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"659":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"661":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"664":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"667":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"669":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"672":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"674":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"676":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"677":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"679":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"682":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"684":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"686":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"688":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"690":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"692":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"694":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"696":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"698":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"701":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"702":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"703":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"704":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"707":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"708":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"710":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"712":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"714":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"716":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"717":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"718":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"719":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"720":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"721":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"722":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"725":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"728":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"731":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"734":{"moveset":null,"eggMoves":0,"candyCount":2,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"736":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"739":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"741":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"742":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"744":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"746":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"747":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"749":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"751":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"753":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"755":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"757":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"759":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"761":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"764":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"765":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"766":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"767":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"769":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"771":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"772":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"774":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"775":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"776":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"777":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"778":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"779":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"780":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"781":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"782":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"785":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"786":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"787":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"788":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"789":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"793":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"794":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"795":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"796":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"797":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"798":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"799":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"800":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"801":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"802":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"803":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"805":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"806":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"807":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"808":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"810":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"813":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"816":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"819":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"821":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"824":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"827":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"829":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"831":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"833":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"835":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"837":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"840":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"843":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"845":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"846":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"848":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"850":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"852":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"854":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"856":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"859":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"868":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"870":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"871":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"872":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"874":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"875":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"876":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"877":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"878":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"880":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"881":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"882":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"883":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"884":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"885":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"888":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"889":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"890":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"891":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"893":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"894":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"895":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"896":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"897":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"898":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"905":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"906":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"909":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"912":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"915":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"917":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"919":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"921":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"924":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"926":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"928":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"931":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"932":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"935":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"938":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"940":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"942":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"944":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"946":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"948":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"950":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"951":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"953":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"955":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"957":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"960":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"962":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"963":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"965":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"967":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"968":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"969":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"971":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"973":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"974":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"976":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"977":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"978":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"984":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"985":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"986":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"987":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"988":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"989":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"990":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"991":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"992":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"993":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"994":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"995":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"996":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"999":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1001":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1002":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1003":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1004":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1005":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1006":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1007":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1008":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1009":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1010":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1012":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1014":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1015":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1016":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1017":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1020":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1021":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1022":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1023":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1024":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"1025":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2019":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2027":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2037":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2050":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2052":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2074":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2088":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"2670":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4052":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4077":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4079":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4083":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4122":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":0,"valueReduction":0,"classicWinCount":0},"4144":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4145":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4146":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4222":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4263":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4554":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":5,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4562":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"4618":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"6058":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"6100":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"6211":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"6215":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"6570":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"8128":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"8194":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":7,"passiveAttr":3,"valueReduction":0,"classicWinCount":0},"8901":{"moveset":null,"eggMoves":0,"candyCount":0,"friendship":0,"abilityAttr":1,"passiveAttr":3,"valueReduction":0,"classicWinCount":0}},"gameStats":{"playTime":731,"battles":8,"classicSessionsPlayed":5,"sessionsWon":1,"ribbonsOwned":3,"dailyRunSessionsPlayed":0,"dailyRunSessionsWon":0,"endlessSessionsPlayed":1,"highestEndlessWave":2,"highestLevel":16,"highestMoney":2030,"highestDamage":32,"highestHeal":3,"pokemonSeen":19,"pokemonDefeated":9,"pokemonCaught":3,"pokemonHatched":0,"subLegendaryPokemonSeen":0,"subLegendaryPokemonCaught":0,"subLegendaryPokemonHatched":0,"legendaryPokemonSeen":0,"legendaryPokemonCaught":0,"legendaryPokemonHatched":0,"mythicalPokemonSeen":0,"mythicalPokemonCaught":0,"mythicalPokemonHatched":0,"shinyPokemonSeen":2,"shinyPokemonCaught":0,"shinyPokemonHatched":0,"pokemonFused":0,"trainersDefeated":1,"eggsPulled":0,"rareEggsPulled":0,"epicEggsPulled":0,"legendaryEggsPulled":0,"manaphyEggsPulled":0},"unlocks":{"0":true,"1":true,"2":false},"achvUnlocks":{"CLASSIC_VICTORY":1720679124667,"PERFECT_IVS":1720697906483},"voucherUnlocks":{"CLASSIC_VICTORY":1720679124680},"voucherCounts":{"0":0,"1":3,"2":0,"3":1},"eggs":[],"gameVersion":"1.0.4","timestamp":1720711877980,"eggPity":[0,0,0,0],"unlockPity":[0,0,0,0]} \ No newline at end of file diff --git a/src/mocks/msw/api/handlers/msw-account-handlers.ts b/src/mocks/msw/api/handlers/msw-account-handlers.ts new file mode 100644 index 00000000000..dc5df17d209 --- /dev/null +++ b/src/mocks/msw/api/handlers/msw-account-handlers.ts @@ -0,0 +1,38 @@ +import { http, HttpResponse } from "msw"; + +/** + * Api mock handlers for `/account` path + */ +export const mswAccountHandlers = (baseUrl: string) => [ + /** + * Account Info + */ + http.get(`${baseUrl}/account/info`, async () => { + return HttpResponse.json({ + username: "Guest", + }); + }), + /** + * Account login + */ + http.post(`${baseUrl}/account/login`, async () => { + return HttpResponse.json({ + token: "this-is-your-session-token", + }); + }), + /** + * Account logout + */ + http.get(`${baseUrl}/account/logout`, async () => { + return HttpResponse.text(); + }), + /** + * Account register + */ + http.post(`${baseUrl}/account/register`, async ({ request }) => { + return new HttpResponse("This is just a mocked API. Registration not possible!", { + status: 500, + statusText: "Internal Server Error", + }); + }), +]; diff --git a/src/mocks/msw/api/handlers/msw-daily-handlers.ts b/src/mocks/msw/api/handlers/msw-daily-handlers.ts new file mode 100644 index 00000000000..e087f00d096 --- /dev/null +++ b/src/mocks/msw/api/handlers/msw-daily-handlers.ts @@ -0,0 +1,28 @@ +import { randInt } from "#app/utils.js"; +import { http, HttpResponse } from "msw"; + +/** + * Api mock handlers for `/daily` path + */ +export const mswDailyHandlers = (baseUrl: string) => [ + /** + * Daily rankingpagecount + */ + http.get(`${baseUrl}/daily/rankingpagecount`, async () => { + return HttpResponse.text("1"); + }), + /** + * Daily rankings + */ + http.get(`${baseUrl}/daily/rankings`, async () => { + const rankings = Array.from({ length: 9 }) + .map((n: number) => ({ + username: `Player ${n + 1}`, + score: randInt(99999), + wave: randInt(99), + })) + .sort((a, b) => (a.score > b.score ? -1 : 1)) + .map((rank, i) => ({ ...rank, rank: i + 1 })); + return HttpResponse.json(rankings); + }), +]; diff --git a/src/mocks/msw/api/handlers/msw-game-handlers.ts b/src/mocks/msw/api/handlers/msw-game-handlers.ts new file mode 100644 index 00000000000..5b6f4ab5c7c --- /dev/null +++ b/src/mocks/msw/api/handlers/msw-game-handlers.ts @@ -0,0 +1,18 @@ +import { randInt } from "#app/utils.js"; +import { http, HttpResponse } from "msw"; + +/** + * Api mock handlers for `/game` path + */ +export const mswGameHandlers = (baseUrl: string) => [ + /** + * Game titlestats + */ + http.get(`${baseUrl}/game/titlestats`, async () => { + const playerCount = randInt(999999); + return HttpResponse.json({ + playerCount, + battleCount: randInt(999999, playerCount), + }); + }), +]; diff --git a/src/mocks/msw/api/handlers/msw-savedata-handlers.ts b/src/mocks/msw/api/handlers/msw-savedata-handlers.ts new file mode 100644 index 00000000000..b3b1c5b9f35 --- /dev/null +++ b/src/mocks/msw/api/handlers/msw-savedata-handlers.ts @@ -0,0 +1,47 @@ +import { http, HttpResponse } from "msw"; +import everythingJson from "../data/everything.json"; + +/** + * Api mock handlers for `/savedata` path + */ +export const mswSavedataHandlers = (baseUrl: string) => [ + /** + * Savedata system + */ + http.get(`${baseUrl}/savedata/system/get`, async () => { + try { + const lsData = localStorage.getItem("data_Guest"); + const data = atob(lsData); + const json = JSON.parse(data); + return HttpResponse.json(json); + } catch (e) { + console.warn("Failed to load localStorage data. Falling back to everything.json", e); + return HttpResponse.json(everythingJson); // make sure that the localhost data is loaded + } + }), + /** + * Savedata session + */ + http.get(`${baseUrl}/savedata/session/get`, async ({ request }) => { + console.log(`${baseUrl}/savedata/session/get`, request); + const { searchParams } = new URL(request.url); + const slot = searchParams.get("slot"); + const lsData = localStorage.getItem(`sessionData${slot}_Guest`); + + return HttpResponse.text(lsData ?? null); + }), + /** + * Savedata update + */ + http.post(`${baseUrl}/savedata/updateAll`, async () => { + return HttpResponse.text(); // right? + }), + /** + * Savedata verify + */ + http.get(`${baseUrl}/savedata/system/verify`, async () => { + return HttpResponse.json({ + valid: true, + }); + }), +]; diff --git a/src/mocks/msw/handlers/get-handlers.ts b/src/mocks/msw/handlers/get-handlers.ts deleted file mode 100644 index d32fe5fa976..00000000000 --- a/src/mocks/msw/handlers/get-handlers.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { randInt } from "#app/utils.js"; -import { http, HttpResponse } from "msw"; -import everythingPrsv from "../test/utils/saves/everything.prsv?raw"; - -const baseUrl = import.meta.env.VITE_SERVER_URL ?? "https://api.pokerogue.net"; - -export const getHandlers = [ - http.get(`${baseUrl}/account/info`, async () => { - return HttpResponse.json({ - username: "guest", - }); - }), - http.get(`${baseUrl}/savedata/system`, async () => { - return HttpResponse.text(everythingPrsv); - }), - http.get(`${baseUrl}/savedata/session`, async () => { - return HttpResponse.text(); - }), - http.get(`${baseUrl}/daily/rankingpagecount`, async () => { - return HttpResponse.text("1"); - }), - http.get(`${baseUrl}/daily/rankings`, async () => { - const rankings = [...Array(9)] - .map((_, i) => ({ - username: `Player ${i + 1}`, - score: randInt(99999), - wave: randInt(99), - })) - .sort((a, b) => (a.score > b.score ? -1 : 1)) - .map((rank, i) => ({ ...rank, rank: i + 1 })); - return HttpResponse.json(rankings); - }), - http.get(`${baseUrl}/game/titlestats`, async () => { - const playerCount = randInt(999999); - return HttpResponse.json({ - playerCount, - battleCount: randInt(999999, playerCount), - }); - }), - http.get(`${baseUrl}/account/logout`, async () => { - return HttpResponse.text(); - }), -]; diff --git a/src/mocks/msw/handlers/post-handlers.ts b/src/mocks/msw/handlers/post-handlers.ts deleted file mode 100644 index 1537100f38f..00000000000 --- a/src/mocks/msw/handlers/post-handlers.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { http, HttpResponse } from "msw"; - -const baseUrl = import.meta.env.VITE_SERVER_URL ?? "https://api.pokerogue.net"; - -export const postHandlers = [ - http.post(`${baseUrl}/account/login`, async () => { - return HttpResponse.json({ - token: "this-is-your-session-token", - }); - }), - http.post( - `${baseUrl}/account/register`, - async ({ request }) => { - console.log(request); - return new HttpResponse("This is just localhost!", { - status: 500, - statusText: "Internal Server Error", - }); - } - ), - http.post(`${baseUrl}/savedata/update`, async () => { - return HttpResponse.text(); // right? - }), -]; diff --git a/src/mocks/msw/msw-browser.ts b/src/mocks/msw/msw-browser.ts index 96b0d8ce9e1..d583e9f6537 100644 --- a/src/mocks/msw/msw-browser.ts +++ b/src/mocks/msw/msw-browser.ts @@ -1,5 +1,14 @@ import { setupWorker } from "msw/browser"; -import { getHandlers } from "./handlers/get-handlers"; -import { postHandlers } from "./handlers/post-handlers"; +import { mswAccountHandlers } from "./api/handlers/msw-account-handlers"; +import { mswDailyHandlers } from "./api/handlers/msw-daily-handlers"; +import { mswGameHandlers } from "./api/handlers/msw-game-handlers"; +import { mswSavedataHandlers } from "./api/handlers/msw-savedata-handlers"; -export const worker = setupWorker(...getHandlers, ...postHandlers); +const mswApiBase = import.meta.env.VITE_SERVER_URL ?? "http://localhost:8001"; + +export const worker = setupWorker( + ...mswAccountHandlers(mswApiBase), + ...mswDailyHandlers(mswApiBase), + ...mswSavedataHandlers(mswApiBase), + ...mswGameHandlers(mswApiBase) +);