Prechádzať zdrojové kódy

Merge branch 'cam02'

Kirk Trombley 3 rokov pred
rodič
commit
21db081f4e
11 zmenil súbory, kde vykonal 2105 pridanie a 2168 odobranie
  1. 9 9
      README.md
  2. 0 60
      convert.py
  3. 1019 0
      database-cam02.csv
  4. 0 1019
      database-luv.csv
  5. 1019 1019
      database.js
  6. 21 29
      ingest.py
  7. 4 6
      math.md
  8. 3 3
      nearest.html
  9. 20 14
      nearest.js
  10. 8 9
      nearest.py
  11. 2 0
      requirements.txt

+ 9 - 9
README.md

@@ -6,22 +6,22 @@ See also explanations of [the underlying math](math.md) and [which images are us
 
 # Included Files
 
-- `nearest.py` provides multiple options for finding pokemon "near" a color.
-No external dependencies, but `database.csv` must be present and populated.
 - `ingest.py` generates `database.csv` which is needed for `nearest.py`, 
-`database-luv.csv` which is an alternative database for `nearest.py` using 
-the CIE LUV color space, and `database.js` which is needed for `nearest.html`. 
-Requires Pillow (PIL).
+`database-cam02.csv` which is an alternative database for `nearest.py` using 
+the CAM02-UCS color space, and `database.js` which is needed for `nearest.html`. 
+Requires numpy, Pillow (PIL), and [colorspacious](https://github.com/njsmith/colorspacious).
+- `nearest.py` provides multiple options for finding pokemon "near" a color.
+No external dependencies, but a database must be provided. If CAM02-UCS is
+being used, this requires colorspacious and numpy.
 - `nearest.html` and `nearest.js` allow you to use a front-end in your browser,
 by opening `nearest.html` directly. The implementation is somewhat lazy to avoid
 the use of an actual build system, and statically imports the dependencies
-[Fuse.js](https://fusejs.io/), [jQuery](https://jquery.com/), and 
-[colorspaces](https://www.npmjs.com/package/colorspaces). Requires `database.js`
+[Fuse.js](https://fusejs.io/), [d3-color](https://www.npmjs.com/package/d3-color),
+and [d3-cam02](https://www.npmjs.com/package/d3-cam02). Requires `database.js`
 to be present, meaning `ingest.py` must be run first, unless you are using the
 included database.
 - `explore.py` traverses a subset of the 24-bit RGB color space and finds the
 pokemon that most closely match each color, and produces `best.csv` and 
 `counts.csv` as results.
-- `convert.py` provides an RGB -> CIELUV implementation
-- `database.csv`, `database-luv.csv`, and `database.js` are included as well,
+- `database.csv`, `database-cam02.csv`, and `database.js` are included as well,
 built from the set of pngs detailed in [pngs.md](pngs.md).

+ 0 - 60
convert.py

@@ -1,60 +0,0 @@
-# I could not find a single decent RGB -> CIELUV conversion library out there
-
-
-def rescale_and_linearize(component: int) -> float:
-    # takes an sRGB color component [0,255]
-    # first rescales to [0, 1]
-    # then linearizes according to some CIEXYZ stuff I don't understand
-    # then rescales to [0, 100]
-    component /= 255
-    linearized = (
-        component / 12.92
-        if component <= 0.04045
-        else ((component + 0.055) / 1.055) ** 2.4
-    )
-    return 100 * linearized
-
-
-# conversion values I also do not understand
-# pulled from https://www.image-engineering.de/library/technotes/958-how-to-convert-between-srgb-and-ciexyz
-# instead of easy rgb, since it seemed to give more accurate values
-rgb_to_xyz_matrix = [
-    [0.4124564, 0.3575761, 0.1804375],
-    [0.2126729, 0.7151522, 0.0721750],
-    [0.0193339, 0.1191920, 0.9503041],
-]
-
-# reference values I also also do not understand
-# pulled from easy rgb
-# note X and Y here have nothing to do with the X and Y metrics during ingest
-ref_x = 95.047
-ref_y = 100.000
-ref_z = 108.883
-ref_denom = ref_x + 15 * ref_y + 3 * ref_z
-ref_u = 4 * ref_x / ref_denom
-ref_v = 9 * ref_y / ref_denom
-
-
-def rgb_to_cieluv(r: int, g: int, b: int) -> tuple[float, float, float]:
-    # accepts RGB (components [0, 255])
-    # converts to CIE LUV (components [0, 100], [-100, 100], [-100, 100])
-    # math taken from http://www.easyrgb.com/en/math.php
-
-    # RGB (components [0, 255]) -> XYZ (components [0, 100])
-    # X, Y and Z output refer to a D65/2° standard illuminant.
-    sr, sg, sb = (rescale_and_linearize(c) for c in (r, g, b))
-    x, y, z = (cr * sr + cg * sg + cb * sb for cr, cg, cb in rgb_to_xyz_matrix)
-
-    # XYZ (components [0, 100]) -> LUV (components [0, 100], [-100, 100], [-100, 100])
-    uv_denom = x + 15 * y + 3 * z
-    u = 4 * x / uv_denom
-    v = 9 * y / uv_denom
-
-    if y > 0.8856:
-        yprime = (y / 100) ** (1 / 3)
-    else:
-        yprime = (y / 100) * 7.787 + (16 / 116)
-
-    lstar = 116 * yprime - 16
-    lstar_factor = 13 * lstar
-    return lstar, lstar_factor * (u - ref_u), lstar_factor * (v - ref_v)

+ 1019 - 0
database-cam02.csv

@@ -0,0 +1,1019 @@
+malamar,5842.812491626187,73.353355387684,-3.4397158743145266,-8.330644311616862
+bounsweet,5587.604061163399,69.65668671765606,5.407006177310472,5.016603254023065
+furfrou-diamond,5996.549275677926,72.65148606736193,2.3539502812278776,4.953015781282135
+geodude,5375.507014362614,71.39650799131053,-0.7116363906671437,3.0747083935953254
+rotom-heat,4552.932844909729,60.280680845424875,15.237070270028727,10.562404471840589
+dialga,4661.992888932691,60.67321816709229,-5.347676999602366,-10.635606880609528
+gothorita,3097.153067067845,45.22724149933098,0.2527916563289881,-1.558743803428471
+fennekin,6544.1153359463,75.33303422751294,6.2099986890550305,16.222940380402076
+spoink,5045.775809608028,68.70483305120241,0.62566053454401,-0.48114679055568815
+panpour,6186.6868290076,74.27227075020235,-10.890373913680053,-4.394838552346384
+budew,5748.821718248944,68.96227092334298,-12.052764303636344,19.116913924930014
+blastoise,5985.010189757167,73.29148195431367,-2.790135122027663,-4.653928335302054
+kirlia,5969.5064076079625,73.90838419122751,-6.045318440962146,4.887261500715865
+bruxish,5118.79031117848,66.57478739284392,7.180898489347106,-4.573240435171848
+scorbunny,7059.234664685304,80.3030401997059,3.230636449135563,4.498892458969519
+magneton,5020.413330392276,67.1039049310437,-4.415028599930947,-2.6761930202588076
+plusle,5943.847182771259,71.26261666915195,10.60787923931668,9.883959792254704
+riolu,3421.733100015432,52.978613091660094,-4.7040873984408265,-5.955958235195484
+umbreon,2570.0799864901564,44.05325428337121,-5.181567485802162,0.5902537072228445
+meowth-alola,5754.397065285451,72.50434823481145,-1.5476417236225137,-6.620337531634976
+kabuto,4544.248160473907,62.022988903574046,5.653533673086263,10.79046021550453
+wailmer,7116.302560206247,80.85447944598279,-4.268930175454701,-1.1548945342589203
+dragonite,6717.549930079903,78.12373889358832,0.5249072016746892,14.236405414783672
+vulpix-alola,7470.0573585385155,84.37518983023524,-1.7787310403614356,-4.049405001910741
+vivillon-jungle,2374.2257597394173,44.29178636115461,-5.294656541616121,4.075979892507831
+bulbasaur,6189.977445379253,75.06961389423167,-14.072017856050579,5.262424484435015
+croconaw,6379.3905008208085,75.7445580551202,-7.692748016071541,2.0671467067534843
+teddiursa,5913.066028249616,71.49854159436939,7.5488168781485685,17.871485650672582
+tangrowth,4486.295531626458,61.866360312393596,-6.878145854117052,-13.303838050336049
+persian-alola,6230.115172558551,76.38343836846272,-1.5961681406571102,-9.785998322464966
+meloetta-pirouette,4844.712266644129,65.66494551120591,5.0424835088900135,4.222410998571389
+weavile,3718.119291833714,52.32373950674078,11.77750451257711,-0.041265205956734184
+gyarados,5036.642412069966,66.44720340143449,-5.843575655041998,-4.830239829541623
+celesteela,4235.675706947382,60.53304097360963,-10.627680440443463,2.6401602925776664
+genesect,4330.470346227519,60.610027849458206,8.162846622445125,-7.044274843131005
+rolycoly,2045.1308726054529,34.27798906093007,1.4490079836836374,2.0798976799145215
+furfrou-natural,7382.058751899477,83.59302990786387,-0.5835515955819796,2.79889165794581
+bidoof,4016.906935407657,57.8782432759499,3.964199836547594,14.437192841572136
+volcanion,4178.762094321473,57.42972607410549,15.958546709814593,8.699742947780878
+vivillon-elegant,3274.01015054019,50.17375092966032,7.108339936049127,-7.388669144371715
+simisear,5899.910253480483,71.21269556685095,10.949908450531694,12.85646173009928
+granbull,6300.209317512486,76.34558864087789,9.304445791222811,-5.00504733448503
+electrike,6187.767440227854,75.45551516161545,-9.697950848899689,10.629581759743276
+exeggutor,5676.080165006935,71.59933137875237,-5.596462210592302,7.9950275063644085
+delphox,4195.170165400659,57.62769027263111,15.558830522876576,12.555331900702948
+cloyster,4255.537571743838,60.81716889460361,2.9492023288027656,-11.010626479475258
+unown,3674.9869894262247,48.86249416980417,-4.004126457226041,-5.285384832437901
+gallade,6225.64555438301,74.39437986121729,-7.740263335684793,2.3570501949908635
+froslass,6708.641099295967,77.90460605436844,-0.9039991133153797,-1.9082349548319517
+pachirisu,7409.691149686583,83.89455220235587,-6.363243443526718,-4.245430713761266
+zweilous,2473.027886755647,45.629994340504865,-0.3198793741772346,-3.0941843347233946
+sandshrew-alola,7407.997919958849,83.51200748272683,-5.66332897036598,-0.09780445875956706
+grimmsnarl,1916.291569220339,33.980366031102044,2.4025265733316647,-12.53608106811974
+charjabug,4410.058494441889,61.89936932034965,-9.360153306999774,10.74278761002419
+bronzor,3461.170287035735,51.99769930267547,-13.702416303436015,-10.583774879898929
+scatterbug,3777.1773521116083,57.424845967711846,-1.3971355634064242,-0.6718262713917045
+miltank,6091.765104741987,72.20818852392398,4.436443072118841,3.0661838141664273
+feebas,5876.945796884852,73.24486204498528,0.8622343858061577,5.548720033153035
+togetic,7146.277263328322,82.44770972127868,0.5609116923802899,0.7720061440998098
+venonat,4050.504665270989,57.841148792746495,6.316673794928509,-12.277280386350432
+oricorio,3748.287161002242,53.46945600227522,19.074404363472997,4.950535219109676
+medicham,5817.635762673527,71.58698926233694,14.913675657990149,2.856786239934433
+meowstic,4238.354290986462,58.48737207177199,-7.788470042067824,-10.326600934380368
+steenee,6157.4933315153785,74.64452786020061,-2.325460084039133,6.312241430058537
+victreebel,7230.662260458048,79.84162035324643,-7.6641156589141115,16.23602448274281
+totodile,5529.522757230086,69.87071362092357,-13.940815565125213,-5.4078577665270915
+cursola,7463.4848245406265,84.20337565083591,1.7263551201260598,-4.046607265796468
+seedot,4752.733091423848,65.60493370732361,0.2980314391690029,3.8159279673436233
+vanillite,7675.888074327169,85.20018927068044,-2.5150538741761825,-5.0704276827547305
+dusknoir,3857.8592672858495,57.10090139482857,-1.3978963007458756,5.042192972703874
+turtwig,6066.5219662776735,73.06970707250844,-7.431758683455695,15.56207774403342
+regirock,4922.188687473844,66.66675502683609,5.51919152998779,4.62712981422635
+haxorus,3525.808390140206,52.055992292882244,0.2273627580520076,14.123891618664798
+caterpie,5832.022427938681,70.99300157516478,-7.862092569404904,15.348252880214819
+lotad,4986.682927618441,65.12367273234763,-11.54881127012476,5.481624266828255
+kingler,5958.955244405189,72.72050093457234,7.818291708360323,10.187935924044785
+cleffa,6548.537162583678,78.13493115225332,5.029773026239608,5.226950020141059
+clefairy,6992.286375861948,81.62045272530155,7.175760487604302,-0.39236846758397914
+croagunk,3444.5396332930195,51.884628461148665,-2.5685588005831734,-10.532018833664512
+charmeleon,5967.541655445291,72.7186886886197,12.542413691511651,11.36911231727233
+magcargo,4561.154613951562,60.35882216466498,16.566928841396734,11.032038947550816
+oranguru,5220.836419257862,66.73360455824391,-2.653347487437734,-0.3664245406707115
+hawlucha,5463.768766108381,67.50078646853734,-2.1136877906648164,5.708205860418111
+corphish,5552.550098086261,69.49949356810487,11.992521215096128,10.998918725605769
+regidrago,2229.487126678587,40.634516773129086,3.023416801458044,-3.5463191791963453
+pidgeotto,6289.163097736825,74.71337107455471,2.885074463286789,11.282373898954255
+buizel,5798.137488501738,70.41284122359227,8.21540705038874,16.99956189858074
+eelektross,3468.0325341583653,51.548797156095,-1.2381606944668213,-2.297049148593381
+vivillon-sun,5638.206065843362,67.8734320425969,8.333477974600997,10.654868491460652
+breloom,5240.579633320285,68.09973964578606,-2.537859424493349,7.921253129841404
+houndoom,3319.7932972998806,50.938974597689594,2.912386334009905,2.8466634650575204
+heliolisk,5168.1024679536185,65.56526839510525,0.43003301449181053,10.441944887250695
+virizion,5941.7712889197255,72.03127620466242,-8.215600784099317,15.337906339265727
+primeape,6479.634511797044,77.2345972511511,3.0381502393778197,5.9932618016464145
+solosis,7438.8402040142355,84.12744095716624,-10.733800180268927,9.005880456093244
+gloom,3618.249887623536,54.918890588723045,1.8564938367939456,-2.9692171198345934
+electrode,7280.421925236009,82.0194184358757,3.1226075403885383,-1.4122741406578398
+shelgon,6740.971901802999,79.37411724602725,-1.3034048474178086,-0.6473929861569712
+magnemite,5317.091868754774,68.9536577361487,-4.406730178313044,-2.869105481672614
+articuno,5416.402926551572,69.06228213268433,-8.793421624231563,-12.781503822126012
+qwilfish,5235.230083964545,67.52700775217457,-8.751861789098143,3.7559935273127065
+kricketot,4277.702944625738,57.946712922807386,6.011477565501593,9.337455042207868
+graveler-alola,3983.8037494699934,60.5030865650484,-3.9635284439230714,-1.4853499860522081
+palossand,6844.7482679827235,79.70224777393464,4.5478114755124945,13.681252985250062
+staryu,5144.065556059643,66.35845890393409,2.0491737053124397,16.46127841886963
+magearna,6251.7566443896685,76.44975396797,1.073650680319646,2.0716582965650003
+furfrou-kabuki,5662.248955009291,70.79819540344644,6.854968987052016,6.601639501772813
+cofagrigus,2938.7144602478625,46.973443041405,-1.4834732155658343,2.3568860017360835
+trumbeak,3520.065207247683,53.50180363063781,0.01446584450964776,0.04834362746343646
+swoobat,3627.4303428565245,52.09683068676728,-4.027222201451113,-7.622656313323463
+golurk,4832.257194554285,65.08978413955008,-11.05564411795878,-1.6909994686065093
+vivillon-marine,4391.355124568497,58.66044513469907,-10.327557390565348,-12.461965362578729
+staravia,2634.521880329062,44.54774127700804,1.2704793056966577,4.5158044225935505
+nickit,3375.065875486586,47.376146859499435,9.779300488248584,9.207390845287101
+makuhita,6047.928728091977,73.56215079976806,0.25724720660726447,9.765682554613479
+ho-oh,5226.326852831815,63.71486533191006,11.375210695180279,14.602575251969602
+drednaw,5394.287393210936,67.83491655530158,-5.528300078264351,9.930339395927213
+toxel,4740.356346036837,61.0711156904187,10.696599196045398,-13.732191596148036
+horsea,6636.479840526863,77.99081262770682,-9.020457775451506,-5.6380037621608405
+brionne,7069.979630640471,81.04084523629194,-9.614885303083224,-6.565897047749724
+kakuna,6585.83706527744,75.73850782381831,-1.2399480760991552,20.21776050697
+floette-red,5644.635388067706,69.86977880714505,-1.275512754024573,5.085219843155546
+skwovet,3824.266110183558,57.65957504604843,0.8805926463339734,3.7615725864706526
+dunsparce,6504.350683083698,75.30617308523448,-8.362298055722862,7.520688337172705
+melmetal,3262.766931354772,48.350053801376056,0.150678142593947,2.610665654570181
+hakamo-o,5425.744543154884,69.46826047933968,-1.6174482075896357,8.068521285695082
+ivysaur,5280.297815173576,67.31950152453345,-3.524862037531744,-2.6156279146736328
+pawniard,3704.4687239044583,53.924623316689015,3.7485102993610635,1.98640254666946
+fomantis,5426.594463879996,69.4938317644067,-10.039724155277042,2.053456760005989
+absol,6779.130880612064,79.00805674165647,-1.4037369420605461,-5.777394679308463
+salazzle,2326.6728108711045,44.858299637875994,1.2940749585113405,-4.601810218080935
+incineroar,3304.121728431093,49.846165530562736,11.847808960704645,7.723227064633324
+simisage,5360.992527096223,68.02624076434208,-14.009427174213865,10.747409160049347
+slowking-galar,2943.7606415182577,45.05223964633143,10.530007064877656,-8.926667351413656
+skiddo,4267.492851961508,60.02031709585718,-3.335436715262659,3.2533619112589265
+prinplup,4573.611634815996,60.23834358594611,-7.5651397892784304,-7.6890175585729965
+spheal,6943.3111800173965,80.09942149303134,-2.763955372304843,-1.829191604911476
+volbeat,5020.865170078715,64.83795872613237,5.738991045175877,3.951264955971666
+regieleki,7678.484223736617,79.46222565461791,-5.528386906779253,21.346125041555673
+meltan,4605.950971111494,55.58937822308868,0.274896547731957,9.207497132518093
+porygon-z,4687.972990641313,62.48084436116534,-0.20193448917331458,-5.818504760541397
+nosepass,3131.369133971867,49.79944959555608,1.5603770604915348,-11.71485378668065
+sizzlipede,4756.28082591804,56.88225638810063,18.718035811782453,13.69663027167998
+greedent,3913.4858147250684,55.930473544562375,11.266307061465982,9.513138443325325
+ludicolo,6059.942324608048,73.92467027497631,-5.32692610144702,12.137507465449062
+torracat,3129.2938106327483,48.00529044829874,9.03767388945815,10.219379095477706
+mewtwo,6732.236569531165,79.97989833165212,3.4182309089038885,-4.582434111751987
+wartortle,6466.518238397672,77.63772572992956,-3.95914556000004,-5.700025745037897
+emolga,4811.876293795433,62.08457013947844,-0.28522286371129757,1.944738154546813
+throh,5153.715684259499,65.28304511193915,3.8829690034955444,3.5773617156911057
+heracross,4037.661864176955,58.28039786725457,-9.17994857934268,-13.728824620226511
+minun,6594.616445254161,77.47352592410807,-7.28522853891147,-1.307357296824596
+cramorant,4597.019384983615,58.32085158412064,-5.949036009666416,-14.478119681865627
+jumpluff,6387.90941609776,75.34736443385798,-1.209076988785396,-1.7901784003492551
+pidgeot,7273.688527103024,82.00842785263264,-0.027763554072634682,11.073235077014923
+skiploom,6183.027375684298,71.73569173464115,-14.983622202151167,22.885360768534575
+alakazam,6605.9012290437195,74.63558604213563,-2.426746624960156,16.3397387641396
+sandshrew,7310.7413460077805,81.54942616839344,-1.2015829993796172,15.682070428959168
+azelf,5900.261219379799,73.19090531871223,-8.17706436459046,-8.480871442437865
+flareon,7036.8325816981915,77.85734155286181,2.521690922112345,15.95907745932715
+runerigus,2991.3249214503526,47.37796415993579,5.038917388083012,-1.1372097404545707
+tsareena,5760.96464851864,70.9493210067377,-1.2336731812586945,7.953881014584246
+hydreigon,2771.0582169954446,46.95938549912277,4.201967226689593,-4.063657782806396
+munchlax,4108.96005123972,58.99029407891795,-8.107437553042077,-7.005532763995596
+vivillon-monsoon,4145.646143866598,57.43181832963982,-1.977650037767917,-3.3081571988898926
+timburr,5311.00196675447,69.14118362822667,4.26222972118574,8.035528042436
+archeops,5187.185016692218,65.8105205178943,-1.7448163329478268,3.725549219857181
+pichu,6044.752861314152,69.60333377061595,-2.3264839920172102,12.763616212696054
+samurott,4652.75752434691,61.35676600211598,-4.05749164214463,-6.911574492933316
+murkrow,2088.7568219878754,34.350490150910346,-4.090853991019866,-9.483491804096438
+thundurus-incarnate,5336.704250709022,68.00307212863353,-2.9518637002743118,-4.4809102270919094
+coalossal,1764.0510718867583,33.21507051286514,1.2470697937020385,1.3388920133277264
+bellsprout,6120.67341435202,73.64802513391673,-7.653130721708385,11.998910494773751
+ribombee,6614.4186525364885,77.77293307804149,-0.3817521567233484,3.0881509976705463
+seismitoad,4254.153044493545,59.02649879820272,-9.487211856904707,-11.60824027227183
+dracozolt,4743.590838115217,57.91745611823283,0.9805011386942561,13.321965416638456
+ursaring,3839.873873692863,56.79215711153443,8.581037880867049,12.143006990232703
+tropius,4793.615561710561,65.06721842854334,-9.334199809670142,10.074859645250775
+braixen,5627.282292547819,68.33527094126097,4.8900214546033665,11.601917946991852
+herdier,4537.89300317562,60.4911698625016,3.630102482135644,3.885344771673563
+sunflora,6617.110920097065,76.18548621832764,-7.540420090305038,17.83703795783486
+mareep,6459.391095470964,75.95464448956318,-2.437304614461528,4.391612573706717
+froakie,6265.135128741937,74.88224525587614,-10.04136573131221,-4.472377120902519
+simipour,6439.381991527277,75.5648612299454,-10.625508964536689,-2.651469819518564
+roggenrola,2245.7326766890906,37.73704103175996,-0.7141502617783557,-2.362290773756801
+pangoro,3638.03447218499,55.00103441854099,-1.5865473434773498,-0.48199134309015573
+dottler,5822.629239571215,68.25464707571017,2.297922078234499,15.754942848802031
+vivillon-modern,4389.152472458246,58.1720303414229,10.348226809908315,3.2889942546893978
+chimchar,6101.523045195707,72.62379969702995,4.376544971110464,15.725676628290406
+whirlipede,4144.970653889349,60.44890090692149,4.250155170514426,-4.460806271553297
+scyther,6617.719012651881,78.13244988685108,-7.806621305624794,8.628975001451161
+scolipede,2655.5820340509345,44.30137252735969,12.889986913435328,1.8637940127655357
+yungoos,4861.164526203452,65.47257996862156,4.9080852185791555,10.866517966436037
+munna,7428.88776594558,84.6499235032827,9.635116474518208,-0.09378647772619696
+golduck,5564.213462819685,70.64844800238103,-7.932817920729942,-11.903993043898357
+sandslash-alola,6367.189417473093,76.29403032776827,-10.53334457424375,-9.175140785585546
+blipbug,4845.517653236207,61.909996718939276,0.033672752876917386,-3.755992825708708
+remoraid,6306.446027567465,77.53940903647779,-6.595180776772416,2.8201338960330617
+magby,5309.515652447691,66.90247429794803,16.138575087411965,9.771265686600916
+ampharos,7821.603206955769,83.42792306033787,-1.5811350870649394,16.789243644863856
+duraludon,5200.071415255125,66.27864680614078,2.599771939389328,-6.463565717794172
+darkrai,2871.4796123095384,46.504451827826955,0.2007064205618354,1.0801369335197988
+trubbish,3439.9164244502435,54.756215799770274,-7.448843501101594,4.566207902980264
+marowak-alola,4879.6900782423145,63.64962980355947,-0.30352958571027555,0.057001332846869424
+sandslash,5831.2409170747305,70.04998173004482,1.7084535863422297,15.082200721223298
+silvally,4235.979999818911,58.55414910343137,-1.797247432237338,-3.002936173034081
+aipom,5593.895826326625,69.80357743989609,7.301221502305414,-2.0362277186714803
+dedenne,5127.870165393208,64.42773378212058,1.1123931909461593,12.42361485256923
+axew,3629.7008782568287,55.822532653701884,-5.749920279304754,8.414442517763643
+palkia,6245.198885694106,75.18767716721484,2.4859197523211054,-3.474331758507412
+hoppip,5164.153951440253,66.40932087742956,8.901267473254757,4.639075671204235
+vulpix,4863.312108613112,64.64772038210651,11.929832372877824,15.309833739429758
+togepi,6801.361240318701,79.44911114911004,-0.4936137125469068,3.8215695611614335
+skrelp,3849.1156475791863,57.558441140214185,7.545717819477381,1.4400555345272668
+ponyta-galar,6315.622264668831,72.62126040123128,1.3834058502430358,-10.996150417527085
+shuppet,3901.7040569974183,57.739091775270865,-1.1512771436504263,-14.087727565782902
+grumpig,3751.966833527173,57.070195698260726,1.842450108210465,-2.8102160354289345
+floette-orange,5764.246353035838,71.54928046410069,-3.7166835774059024,6.718628608797749
+squirtle,5926.54778128353,73.35108177219654,-9.427095316125616,-4.073374689523934
+shellder,4079.84597047957,55.35255331373974,2.795566231448354,-9.86342603046078
+illumise,4517.570554110047,60.98437096370168,-0.5148045983317521,-4.811599288337802
+seel,7698.494992356386,86.1972382472503,-0.7505511409871769,-3.197983914212928
+tentacruel,5012.3992460646505,65.7845827205003,-0.7647852557754025,-3.927076756911174
+cherrim,3065.820736863952,46.970201620297715,5.916486211217003,-4.585815434170647
+necrozma-dawn-wings,3355.7075928906243,47.806174893696245,-10.005661000121256,-11.5031507702127
+goomy,6821.5502185252135,80.35521979984888,3.5778391531632603,-7.436375141717594
+lunatone,6263.092947912152,74.6393159076885,-0.16861537988729267,9.767106944681275
+urshifu,2776.901193187524,45.699850829590936,-0.48093653381599305,1.51328125019815
+bayleef,6990.049933786984,79.75731520663192,-5.097270525751998,16.379694344502884
+applin,5598.669213505673,67.30629929861381,10.731214366939787,10.635954196677488
+vivillon-fancy,5658.811347465947,69.08410691422986,-1.380126047131906,6.255995127674411
+yanma,6082.618931344223,72.67957725918488,0.9780099041883284,5.0458559111645735
+slurpuff,7166.654613230762,82.47013713267,6.554254200589297,-0.27014119633935363
+carracosta,3428.9296212305317,52.90318822142305,-6.6700020435113325,-14.250185444128764
+swadloon,5676.065071952097,67.44806238934858,-13.625169213150862,21.47763248737882
+landorus-therian,5344.965914857127,68.01317388509659,8.138501987916081,8.78105042180801
+primarina,6731.928180282693,78.65082233296836,-5.061544020738994,-6.156488051691152
+grovyle,4673.752905282199,63.273077048367384,-5.885300265319422,7.975843668621891
+comfey,5574.956866119684,70.03513186914853,3.4839629616720864,11.169238343958062
+machamp,4775.248434112853,65.7605505572037,-2.950223119980506,-7.987746241901715
+vikavolt,4421.199895716781,59.74753610044781,-9.29768303486126,-4.037926180510429
+golem-alola,2640.598626716385,46.95898245096237,-2.8902310172883925,-1.7203193882343402
+escavalier,5675.462621749267,70.99363668282919,8.632772533969467,5.7925463997569455
+celebi,7128.928727132983,81.20377976870739,-5.546654882751883,6.929135058449147
+beartic,8131.398728006838,88.43040981478605,-4.401150973834414,-4.547543360234019
+poliwag,4525.674459122866,60.94359345571721,-3.774332960840309,-10.277892539161959
+raikou,6901.955593080126,78.43981029191369,0.1145000908085034,9.721849408658354
+combusken,6164.934048242863,74.02781928707998,3.832165274225578,13.359046580935255
+drilbur,4177.378479303237,59.13528690794157,1.070202697657744,-2.220213853270114
+unfezant,3611.066742020651,55.49990367327185,-0.6329014103897878,0.8732890668411474
+zekrom,1753.7876463654036,37.6621164685899,-5.676966053213139,-2.361450601067374
+minior,5621.102975872444,70.87842307412323,14.616166137810199,0.009064361608649178
+nidoran-f,6112.925178072544,74.76121998644363,-3.213053317004612,-10.542170937537902
+kangaskhan,5057.703813241126,67.15643997832366,3.407454431391409,9.845956572388397
+krookodile,3954.6494402562907,57.104665923962735,9.739673124955006,0.7972950381647194
+floette-yellow,5951.416329837441,73.18534159312568,-5.479189755452476,6.7715439339553
+patrat,5179.805338932786,67.05068466796186,4.384132625507339,10.527103625552263
+hoothoot,5141.887028219242,65.44029438705479,4.931340472964887,8.27421696494023
+litwick,7354.349042738843,83.04042432374871,-1.8988629321042834,-6.643298333863127
+wormadam-sandy,4933.620838597986,65.42236246547243,2.374170845594489,11.458054538636926
+klefki,5317.146955674665,69.54543509303853,-0.6119170659639968,1.6108291989053816
+hoopa-confined,5653.491274027799,70.87626507840561,7.192990001610101,3.409972053312464
+blissey,7678.723069503961,86.04461141467286,4.293452733681067,-2.7344842381333434
+klink,5206.608516635769,68.02515664415475,-2.2490552732379667,-1.8268482318323962
+kabutops,5010.8937000427795,66.09890597851792,4.409503103214637,12.13385915648541
+zangoose,6831.075862647861,79.25538952372112,3.8925925388817317,-0.017759802311023507
+flabebe-white,6359.35208470638,76.38507087337528,-4.131399433656912,6.074648031768708
+glastrier,6034.5576585076,70.6155524606924,-2.0869556826343096,-9.318425174277223
+snom,6492.070851200449,76.10130995802916,-3.684149155308566,-3.825202195839734
+electivire,5405.661926180796,65.04198298898194,-1.3762497243743579,12.328396065554266
+tyranitar,5891.755106294462,73.08726132499184,-6.635426100210869,9.985635931514278
+golisopod,5226.108024437962,68.2806691017668,-3.821997682818669,-0.1719424299050809
+jellicent,7587.583033737496,84.80161157928725,-8.041497856731775,-9.89142499843661
+lucario,3608.770678109554,54.38487251588823,-4.545243562052933,-3.7885833597783525
+floette-eternal,4098.79191613682,54.195062772103874,3.0465009591115217,-1.161524589230838
+ninjask,5517.370343650542,68.1558117923106,0.28285775237572797,2.491685145611702
+dracovish,3968.1129478457146,53.73584405389396,0.7346405837920106,-1.9297055233805533
+chingling,7136.7709883319385,77.30413237382328,0.5613923282682655,17.90430833449714
+nidorino,5033.27028687449,66.50915460594429,9.6759865136624,-8.840524789028729
+popplio,4976.275851427372,64.79931440789925,-5.439738205939999,-15.878753042347583
+claydol,3632.1772203122027,51.939719862568744,3.018869635081097,2.469586760857671
+venipede,4156.564137273583,56.175895539726696,19.2041595451175,3.5660254949893235
+pheromosa,6659.004790680305,78.18632384311238,-1.1558280124198932,0.022558190067184285
+carbink,4544.25474343486,62.482897565504686,-0.6593345980478832,-8.671283186162112
+copperajah,2354.992366067214,41.2158100963375,-7.845155827865012,3.92857725942256
+nidorina,6586.791630794473,77.94075696175298,-6.8491838070210145,-6.129250840173959
+magmortar,5291.150541711455,64.40303998629055,12.026969670857751,18.045417929699806
+victini,5860.017007879406,71.49984159590018,4.263289399793757,11.960322438455721
+dewgong,8119.955941578418,88.97785748197144,-1.3344887715813962,-2.8759454697696794
+darmanitan,4298.194019435643,57.25193698590301,17.336909344472307,12.77828659622645
+meowth,6392.637337612366,76.31241693350411,0.04414424468340883,5.424457955601997
+kadabra,6113.254348966932,71.4460354885658,-1.7124126526118664,17.982673667278437
+spritzee,5955.57264361251,72.94933576726834,9.188202468178815,-0.8435408706291992
+yamask-galar,1660.9131754520165,34.1861402449397,2.21737518719248,-1.1277910879386377
+latios,4221.634668183719,59.19398868985252,-6.383065909404806,-13.073836414316146
+oricorio-pom-pom,8661.285840333689,87.8168800918133,-6.409265691717407,23.781170610401034
+moltres-galar,2756.9509372636553,43.272179555158836,9.384213898486207,-0.4000671331136819
+larvesta,6685.448967516896,76.84552778907232,3.4660354732983754,2.674032883083131
+shellos-west,6031.756749740806,74.23295274465613,8.721253722483453,2.2886984342231673
+parasect,6560.48171337355,75.90863464056962,9.09085992136996,10.60993084661472
+vanillish,6907.750400542803,79.82910219944817,-4.3578604021561,-8.834624294329434
+vivillon-river,4286.795283638597,59.478344991282086,-3.3002149394469655,8.132201742045732
+aurorus,6788.259563178765,79.0862114993929,-5.677862228294191,-7.151724097751426
+geodude-alola,4320.187997682685,62.00363942131315,-3.8653626371009606,-8.860065002304468
+combee,6702.075795006143,76.34051348306025,1.4629925611242351,16.129132704852335
+happiny,6319.720662644399,76.9575989162027,6.913922652260656,1.1517273393641987
+charmander,6483.286644964096,76.98865531196392,4.698276094564386,13.715615723409133
+flabebe-yellow,6345.015250031376,75.6859609981639,-4.439219531170162,10.57934944925127
+snivy,6011.1454981103325,72.07593280131003,-9.228652028751371,13.940102500528262
+hariyama,5482.86711914427,67.39466836020158,4.695504732160093,7.680073758237851
+weezing-galar,4174.00467706482,59.20689954338958,-3.340050065951309,1.3127827692325917
+diggersby,4257.369080813416,60.96665111066799,2.3254469646244433,9.210495695611728
+cyndaquil,6013.027858261595,71.69947437882907,-4.762172742261409,6.235434979258084
+forretress,5460.703024988201,67.48006784420333,10.49497375654222,4.072847526921696
+vivillon-ocean,5434.532021228749,66.51202971475573,-0.5948165967332119,5.617045841664234
+houndour,2903.6107330340133,47.17733322869161,0.6851172193270773,2.9915361958902578
+lurantis,5674.073872323354,71.29571449357933,13.066271400844157,2.06311019556126
+mismagius,3149.72898150569,50.59615846763031,12.517576036877477,-11.048594640295862
+passimian,5777.774356128153,70.88328757319228,-3.8343902391536098,4.8944798937308125
+corviknight,2473.488646198601,35.5495393746915,1.9592122635925486,-12.096567169010672
+tranquill,5028.994138375168,63.81761872534686,0.6600495151159856,-0.868867692840807
+marshtomp,6150.705914254524,74.86721114029977,-6.712252503930819,-0.45864474034102043
+steelix,5865.307126262483,73.61355475038712,-2.3880992027956216,-9.524093099771829
+vivillon-pokeball,3730.0888391749595,52.758806347916924,7.72302493044081,4.015076027469234
+vanilluxe,7130.734041920237,81.54787393145658,-3.669672149930955,-8.315498354691806
+dwebble,3303.3580943198554,51.241160532774586,6.221631771006228,9.773077395584572
+muk,3883.542327924002,59.03536182560237,5.398093929317204,-6.407842131367809
+drowzee,6088.317283407499,69.46634463212727,-3.621671921984983,19.06687454977907
+bergmite,7512.212509225115,84.10617905081241,-9.316359064233339,-8.100848839721941
+jigglypuff,7069.921570134076,81.09442085806822,4.1619428386390815,-1.4220424140504428
+eelektrik,4481.518824758364,60.07368663274069,0.5305211464911525,1.1661700399636197
+cryogonal,4727.645675306287,62.415343807673544,-7.0802415866064745,-13.0436234411263
+lileep,5032.509800279685,66.31773493673586,5.222047801137102,-1.7470287044719566
+deoxys-attack,4976.420972604403,65.9070931837345,4.0968340573888264,7.456528114312855
+espeon,5925.57485125193,73.60553878754035,5.548029506555471,-6.019945920582035
+zorua,2298.175968047568,41.32789623745136,5.312277827200277,-7.487877286033686
+smoochum,6289.3383991649325,74.5926431125712,4.90125775289436,9.238902766497656
+wooper,6002.778737534081,74.13170872531141,-6.136250455465346,-9.876350759666142
+ferroseed,4710.413075723752,62.04128586440948,-5.680040682305635,4.144923139345088
+dragonair,6759.8621379417455,78.68749358796678,-4.8637533546840315,-9.192190521201345
+metagross,3971.341448466309,58.07318100349242,-10.200536229864584,-9.655038124179525
+leafeon,6395.155078132806,76.34974014125191,-5.295922085924277,10.724307126921824
+grookey,5787.5854120026015,68.89083695727481,-3.4209161862510853,15.995997664471764
+skuntank,3974.6164883679453,54.82572085219578,5.649755825875464,-4.082918280904208
+jangmo-o,5981.0963097795075,72.62882448697961,-1.9498823179550957,8.212441874463378
+sawsbuck-summer,2589.904780055685,43.68800771743808,-2.1635388287482393,10.412850307468217
+dustox,4988.682310933119,65.33300036262904,-2.766749973906182,11.751671727809923
+sinistea,5088.531825902732,63.448321754815105,-3.2766360713287805,-1.8237012564172388
+snover,5926.080630967184,73.50176905835956,-3.8222456172779116,1.3146372506216313
+durant,3991.6885248908493,57.445295419487046,0.005689858978386326,-0.6405834215614996
+inteleon,4454.072486064437,58.0706098540864,-6.331786996100149,-3.1471934640909605
+sylveon,6776.083734222665,79.79431109848879,4.950651874823944,-1.827055961445672
+necrozma-dusk-mane,2749.460652836571,43.864085032044514,-2.453004394923878,1.088438180434942
+crustle,2973.978354438346,50.46266722213915,3.7308075402240313,9.653041592891316
+slakoth,6524.841538476579,78.76802241834783,1.479976219950098,3.687915839549366
+kingdra,5523.122618847714,69.75325337748812,-9.795322760367787,-9.4240949837156
+arcanine,6809.852511806409,78.44447461338197,3.588040193414302,11.585345919449974
+dhelmise,3825.629597999432,55.85307226577196,-8.225981486793225,2.0891708634436554
+bagon,5261.846016093372,68.9826278002036,-6.637953196003102,-7.142376665020943
+drifloon,5162.071522390404,67.30911303390128,4.537465197150023,-2.4721369220137808
+burmy-plant,2983.7410749874534,47.93721585347408,-10.405007053840507,10.80217167937732
+clobbopus,5320.062816715997,63.696703637223074,7.380050986954931,3.0792296614220085
+cherubi,4565.114701158993,59.22652594605409,10.722120614781826,9.285589883913385
+binacle,5381.60504350836,68.78263834215329,-2.2141419553319603,3.2269318996471426
+pyukumuku,2385.9235830534585,43.04136888800462,5.114965219899291,-1.0767863329958336
+florges-yellow,5647.021840911141,70.59744302592962,-9.432166192270648,6.424150187411498
+rotom-mow,5484.483181294161,67.17744056307248,0.20175093073982797,15.444043762360764
+gligar,5014.766529341546,65.90784494454431,13.32934451668981,-6.992243225364998
+togedemaru,6992.077398433015,81.58379526827834,-1.5500756392958515,1.479134823777425
+shedinja,5718.648696971187,72.60091475518564,1.4381757097356382,9.451870775942396
+porygon,5726.970778847332,69.98288049095706,-6.498952574318643,-3.882135010680436
+fraxure,3445.8132895077265,53.68041206020174,-3.250706775910792,3.907100207079025
+zeraora,5916.45366764948,70.74384427347488,-4.337971964577626,13.392963964500108
+watchog,5150.4612917752,63.28904639968441,8.446257980031445,12.647836315497583
+furret,6184.485178536223,74.98103979064918,4.298223724934985,9.562065946416277
+gurdurr,4461.9613350931395,59.560502192730205,10.074224077881768,3.526066074571965
+golem,3741.7714456039307,58.90288214503855,0.760505390831787,1.8862976607233124
+morpeko,4420.1265154521125,58.70871936157552,1.774575620688164,10.692013633881464
+conkeldurr,4516.191830043362,64.7782348455142,2.451329218422239,0.9710110037379301
+rayquaza,4163.959196189854,58.75825789117054,-10.371415775637407,6.559613310885078
+cottonee,7305.835035778562,82.19738874844776,-10.086274733796316,8.589799416249921
+basculin-bluestriped,5395.782293140145,69.04914796566455,-11.068886457454882,5.856130295930936
+zygarde-complete,1874.397166040727,35.49593900400519,0.5197836995753742,2.4772512084748866
+cufant,4057.622011623906,54.62875251850669,8.212552836764717,10.342529849325738
+swalot,4754.59142645064,64.74853830299855,5.689529367359108,-13.260192438461047
+weepinbell,7090.645707268874,79.21098516104966,-6.5235436431012905,13.374366771397797
+deoxys-speed,3906.3716018771825,57.92833857091926,-0.21287806900444503,2.554647956005389
+slaking,5548.24264242962,71.43296489825099,2.502012159080921,3.8821622723951603
+whismur,7275.631405095116,82.74776216781281,3.737099117992779,4.821897517795741
+klinklang,6024.875900611079,73.35283367775457,-2.7120657426183734,-2.1867426633549916
+amoonguss,4610.8100777877,61.81678393678615,4.805892772785866,4.8468740138765405
+inkay,6196.4822723759235,75.5519083020675,0.0453220612519606,-4.733785659799265
+zapdos,6472.529119532379,75.44264450302681,-0.7388076333903887,14.820715351476757
+archen,4943.279667002009,64.61704173689928,8.56248736449782,6.7309387063201855
+pignite,3785.644978114816,52.84114475854236,8.530276533477533,12.207534287676657
+turtonator,4283.265882524614,57.536371731919644,10.14597502697152,11.820672132329063
+emboar,3818.6942721653477,50.97021278211503,4.718552896176539,11.11331503626102
+greninja,4629.2486412222115,60.435368643789744,-3.2377549719757894,-9.828815088303053
+weezing,4928.706234484847,67.28408403133211,4.354794670519308,-2.909602037867025
+silicobra,5224.643739471619,67.96385138541574,-1.9594792131220002,8.070570910986024
+drakloak,3413.0062921458684,51.25849236847396,-5.797593457082704,-3.9407446548853353
+hatenna,6095.034150182383,72.40417540036132,-0.2659199335472454,-9.591258792037964
+sawsbuck-spring,3794.1495250891967,53.58800454282593,5.768767864788741,12.162451731573256
+poochyena,3937.8421552717805,57.84696825533373,-0.874831759930556,-0.5046837560515514
+diancie,5117.538702524178,66.51225673082477,6.257094891004436,-5.821004642111702
+tentacool,5472.916050437604,69.92313581430707,-2.466182686570599,-6.06953218108066
+swirlix,8119.957772273116,89.04903332076209,0.6161580824845213,-1.4858886406088498
+appletun,5395.4180079488715,67.20790155580798,-3.4014872192168175,13.125106446241494
+magearna-original,4828.110729420976,62.90244707604647,10.768275602528872,8.727336017307874
+mareanie,6084.986890561341,74.30628080757745,-7.097773236311402,-6.470448613042056
+araquanid,6037.120199518923,73.23513198296668,-8.158401140311305,-2.2077494306578473
+burmy-trash,4142.939567658428,60.08196137051002,8.364322835411418,3.025164236407122
+lycanroc,6383.725240281312,76.63790943469802,0.5817692553307182,1.1182800982348344
+roserade,5507.577362799415,68.78120116902981,-2.6656362217793466,-2.688836867907084
+aerodactyl,5443.18153079702,70.75450299554682,3.5715335507914796,-6.339304189920901
+clefable,7357.112726880598,84.10820690354282,5.825128139148609,2.590038009461826
+falinks,4049.1890197657417,50.57403122641392,9.383731941609103,14.782280822160223
+morgrem,3059.6141989976227,43.515395813504696,12.774231050512439,-2.6964460700389132
+florges-red,4689.138935784235,63.28962005410242,-0.7802738403494027,2.567624190232099
+electabuzz,5627.478435577834,66.57259839838908,-2.2217061098039452,14.296216199542743
+guzzlord,2475.558133563037,41.30584731124571,-5.9676833330037695,-1.6810708881654888
+gigalith,2528.3428891537997,41.69651481834148,9.311850366272735,-1.3273934739081616
+crabominable,5130.886846128886,66.90088427463846,-2.1993076047674505,-7.734748100033176
+sentret,4245.276384179155,60.25505961964671,6.351084809966826,7.549838239791817
+magikarp,5691.529890433443,70.91773274098816,9.054426059455727,9.77245525784413
+kommo-o,4448.507013347558,63.01469499377997,-0.5531541398626332,5.66239982535562
+raboot,5741.210157792291,69.18962559396272,3.8198624980299245,4.0704711451010605
+stunfisk-galar,3177.4197432568867,48.78059938190706,-1.3135839670201948,7.027398670242505
+krabby,5839.876379424761,72.6859996048929,5.050197770558066,6.698722373762987
+spearow,5382.483236330549,69.31986894032323,7.199805491382909,7.866858809667892
+accelgor,4333.51094757286,60.11364066650006,5.408130193153006,-3.8690339132168097
+deoxys,5295.505069552928,68.00191578875003,5.7340041580142165,9.399004748505126
+smeargle,6379.029447506953,76.06163803056796,0.4353584723293252,7.300693057442677
+seviper,3048.9867346097544,49.476392706419645,-3.9208723349011723,-3.3831305284692657
+oddish,4368.880262923671,58.81710963012438,-15.573445103344465,7.734824412195539
+snorunt,5341.115161737485,65.6711466484511,0.48405086554802573,9.875740387026369
+scrafty,5683.770596751517,70.46526948156172,7.945854168464734,14.893232654287353
+garbodor,4283.958424566083,62.29166040183459,-2.143475430075365,6.135314316033142
+nincada,5664.868960760213,72.73951418488976,-1.380714739980689,-1.1975439368036171
+sirfetchd,4652.054865465764,59.48254027857635,-5.688667831004992,6.433537232368558
+pikachu,7719.202126350189,83.5836193061789,-2.177509262363146,19.836454136028365
+nidoking,5108.147940811009,67.29777221954242,7.980758724492329,-6.6397728580336475
+vaporeon,6418.561338481821,76.29496964323985,-9.43385746911978,-7.130498678011915
+cascoon,7543.401159267529,85.08697394069323,3.9272494432149214,-3.3938512701266603
+altaria,8416.65168718986,90.20985369998732,-3.9341539115548563,-4.774800418598696
+hitmonchan,5246.779786516576,68.58865936390177,5.047857943475922,2.4346632712930547
+igglybuff,7069.603333306529,82.08919707947324,6.380446996537574,0.9145113543325747
+rhyperior,3954.043254209455,58.03939196779157,9.473920403846542,7.053116756048394
+gliscor,4120.906350702916,58.87235050417139,0.6781997383426058,-8.184821057999667
+aggron,3906.879116075002,57.60611901728899,-0.9534230308888273,-1.016746967935288
+arbok,4392.891752898376,62.13732324845029,4.056463469743295,-7.130959110061671
+banette,3788.9073878358636,59.29236882622464,-1.275091205789284,-0.2571549080936764
+rotom-fan,6505.435348331747,75.13326726479318,4.119700315342373,16.954094016983227
+taillow,4005.1038295256008,53.76146978810949,5.3459702966704326,-3.291671397106273
+omanyte,6975.983300395111,80.05468840093882,-4.720580522393346,4.544442065717019
+tyrogue,5529.257446502816,70.70768662370092,5.634306146568883,0.6139490124463614
+vullaby,3609.2907556131677,54.27589787557272,3.4340790196288733,4.313874581510177
+stantler,5453.940427463657,69.73841413692362,3.634807264542624,10.223634808976325
+muk-alola,4950.7131687617475,63.04803256505958,-1.0052272067065509,4.89965850171412
+noibat,4700.7000117317575,63.50402173171512,8.265161515209446,-6.047911040857
+golbat,2990.6111903682,47.51228651970447,4.541132109783705,-8.547570670594967
+hoopa-unbound,4473.162192596162,59.56714279300791,7.729741255722546,-2.197134331767991
+gossifleur,6192.690866590827,69.45875863624558,5.195002566234142,19.36352622725575
+kyurem-white,5678.11216242323,71.49934633383312,2.2282797565322143,-0.12348546881285284
+spiritomb,5057.816053555713,66.32588861071301,10.280234062894786,1.0206182248452647
+furfrou-heart,5917.028030599683,71.65252765597018,4.3503129830488865,1.3495963653498253
+marowak,6693.016974270688,79.33559245896477,0.5267058558964406,5.294224448932585
+gardevoir,7713.13944155084,85.51406686931288,-4.792382377744349,2.2516901229371293
+litleo,4219.491051299068,60.56093228279894,3.4058459188360963,7.24991007013198
+flaaffy,6920.454337458335,80.3803020881604,5.191260339583532,-2.6007038635620985
+starly,4144.139281147426,58.69101292537957,2.530007080357849,3.361254622630845
+bellossom,5331.044893815445,66.93479990924696,-3.2414290354703317,14.950194592897693
+starmie,5391.177455633773,69.03132750606775,2.8723423326434965,-1.7516422658051454
+chimecho,6393.852699769181,76.9743541814056,0.23145610580529333,-1.6869167104313336
+lycanroc-midnight,4841.9331299747655,62.95519794274619,7.056729453611291,2.6413421123091734
+probopass,3788.6129024601264,53.7629472547913,4.66883020585365,-2.3094071479090914
+garchomp,3120.405829467252,49.19189600113966,1.360484516484016,-8.670979349923485
+gogoat,4369.353905128782,60.829292551021446,-4.096315686096084,4.224158718623668
+sudowoodo,4003.1478856776416,58.45589498918506,0.5317303238560696,10.1349298632916
+lickilicky,5968.0198291827355,72.8994240302285,16.030771615418622,4.893767656711897
+woobat,5707.731464501997,68.95537507316352,-4.581448278106375,-4.8340974064164834
+ambipom,5279.103701574123,67.24665005646011,7.991844737290119,0.36019350043726334
+wingull,6550.133500033765,78.44334383812144,-1.9887541122155081,-3.3083551587492863
+gulpin,5771.046889257863,71.9831299092683,-11.364165959312952,11.025311281116768
+deino,2691.4081350925367,47.9021442651922,-0.8666354345416238,-4.432441563107057
+deerling-winter,5624.975522300008,71.10613995821011,1.9896816629544296,8.728389316354855
+poipole,2848.098956179975,43.99205594868911,8.273272706316142,-18.680446439064433
+nihilego,5980.222216358941,75.01377959814565,-4.519181727315526,-6.401186361312256
+blaziken,6047.414138448529,72.22022063284383,8.622924905207684,12.57736051001542
+florges-blue,4695.735189911013,63.35270380347396,-13.897209893648402,-4.03048868948081
+mime-jr,4503.312273221731,58.94726476278818,-1.646296638561672,-6.818171706067812
+regigigas,6473.233273355036,74.25598758515892,-4.593628542171285,8.162026626639433
+fletchling,4970.334326124148,62.90626959870189,5.715772985090352,3.7408467152996985
+azurill,4115.587155926553,57.52322902330676,-11.664726999910378,-17.740480619769304
+yamask,2666.5043734367637,44.85565881705217,0.8446852166111075,2.7529964604030224
+cubchoo,7108.577264351949,81.56924981652426,-6.867230558092374,-9.112414861056683
+cacnea,4855.322936981339,63.92009810028972,-9.951804492616729,10.526919721765237
+rotom-frost,4832.537801740886,64.48104082405443,12.59581479869065,4.176584149128675
+linoone,5614.31570966275,72.40967818139373,2.7725144918256897,2.3979190826787415
+lampent,2925.8156381069707,46.39051548878948,-1.3137419595839597,-3.7438734748485167
+litten,2918.7970462944277,46.35583023475904,5.778377191561212,3.596366647070733
+darmanitan-galar,6385.286345205742,73.80430771485662,-3.789588289871098,-2.10896370869726
+chansey,7025.052280849275,81.85913630896447,9.150848905051358,-1.1703866019176614
+corsola,5608.376401439532,71.43600161406216,14.82253204339984,2.0957605766427125
+rhydon,5541.857689724155,71.65436971513489,-1.6802570932625027,-4.23288066830922
+flabebe-red,5637.421336681488,69.84703782149988,2.8088688655854375,7.635563998953992
+chinchou,6140.414417915596,72.22085340310346,-3.559026264592457,2.334365211192664
+monferno,5386.157515430326,67.71486776480542,4.879052509507924,12.974720910194405
+basculin-redstriped,5445.082238198852,69.5032761575652,-9.07716313991584,6.829737760703208
+xatu,5966.911685329274,69.42293392750864,-2.0485756083802844,11.10494733728752
+arctozolt,4826.473337469069,61.25510799826904,-7.739394731435681,-3.799096582340314
+glameow,4565.422022966335,64.15672403580044,-1.5032969315711422,-4.691122590538254
+regice,7014.1205655284375,79.53591150475232,-13.630736890823993,-14.553590384698515
+sawsbuck-autumn,3806.8053991345155,54.01471087848826,12.502088396280504,11.977434313332928
+lunala,3980.5574178652537,52.8176006614957,3.552755981983242,-9.632168288245694
+pansear,5822.031219991326,70.61515328911426,12.446892194111301,13.866454293671385
+feraligatr,6503.944321653848,76.5101368329788,-10.909166300074814,-7.6572957986419405
+honchkrow,3364.5969906079818,48.52122036955866,-4.395216529270447,-9.163061263291675
+beheeyem,4639.234030460699,63.715674223632085,5.781367587901043,6.5346035759516266
+clauncher,6217.480715045485,74.13057687834524,-11.118573678134325,-5.8090407377063755
+noivern,3326.8372133083535,50.6560410369002,-2.6688908563517453,-2.5075939948914248
+wimpod,4964.565922528044,66.88224245997637,0.49655937272938067,-1.252490193638329
+tangela,4162.059942859981,57.54733108237827,-6.842023462903569,-9.426838314980229
+rampardos,3302.252348819751,53.32812117584293,-1.903018562781682,-4.2514168094945495
+aromatisse,5358.072502521486,68.54381668819173,15.652561838038569,-0.8204713093092088
+centiskorch,5317.573735062202,61.974851378165916,13.430706230557337,16.316868822757524
+rapidash,7118.827907337208,78.80269140271523,5.970213020451304,18.904571773433926
+blacephalon,5606.2310365475605,67.38242990419603,-2.744290287979987,-3.118915643135132
+espurr,5258.061011809352,70.30846728091682,0.6707888581232762,-9.602747611707143
+voltorb,6169.9954347966495,75.37122930081502,11.301040225139579,4.52883476160443
+volcarona,5224.834530307792,66.05939422913228,6.917875091354694,5.521176777881405
+type-null,2699.1449536742625,47.60069079466056,-0.010126753177709115,1.2306662420246992
+mightyena,3130.7593685742577,49.057110540534175,-0.8966884878967473,-0.6533729082903984
+finneon,4528.631128700479,61.22725284711437,-2.8655905601570657,-4.008103269220184
+armaldo,4496.125247061349,61.86402873730969,-1.0272292038343762,-4.447456686845897
+gengar,4036.6903329209945,58.90191985410284,4.42186710814596,-14.339809154823117
+sobble,6367.391257629107,74.83660796697791,-8.756971271997111,-4.631140237701678
+sawsbuck-winter,5539.622807129211,68.41682748278508,2.821623721955111,4.102589477504668
+arceus,6678.265923884638,78.08698586664238,-2.0679407779100005,2.326105611251024
+tornadus-therian,4202.35578806022,58.0036811875658,-5.928290987879309,5.05470403094555
+pelipper,7594.4243368015705,84.12264819193176,-2.93732887201191,8.88914336996356
+grotle,4789.745700456669,62.40226958306162,-9.822074980807853,17.74073020102764
+wynaut,5679.12440929807,70.26089842825792,-12.430738847096803,-6.201999815608398
+scizor,4530.8957651649,60.024334865682604,16.175603259008682,7.035023369998154
+beldum,3084.7390599433434,49.4357955202817,-10.757568049412448,-10.64297647797884
+cacturne,6010.088922836687,73.8070990804796,-9.244966948050996,9.71280025273706
+salandit,1920.9325472352505,39.57755574302685,-0.740782179047457,-1.843139165629012
+magnezone,4957.019514833951,66.1375664687839,-2.407234958723522,-1.4967911843891366
+wobbuffet,5846.845427665083,71.93748301966815,-14.130396028504958,-16.557631140387006
+torkoal,5616.190203814791,71.81715053746444,5.375620063121718,7.974550981286601
+metapod,5994.431579034556,70.80941432374408,-13.401629116401814,18.87044007240397
+sceptile,5177.592696591482,67.31700624729599,-11.579553673604835,8.999043988469744
+gabite,3632.2135151315388,54.3925460791447,2.992861123125272,-8.570104182078286
+lapras,6640.889064091579,78.19910550566999,-7.513312719650721,-6.774804921827994
+slowbro-galar,4399.409235399833,58.76539439443181,11.68866471228555,-1.2179467706940668
+hitmontop,4869.025249383729,66.06890246616068,2.4421491873257795,3.5049011368561147
+kecleon,6034.295397250142,73.8839304343102,-5.343375384447599,14.23809924768608
+dugtrio-alola,5121.561422356522,65.83537246261088,0.5259561618244727,9.083465558550039
+rowlet,6090.671088184124,74.54054550105782,1.1651044578467058,5.854062421529792
+flabebe-blue,5488.47230483284,68.99197068227357,-6.783446097458172,0.8807093729372596
+cubone,6548.852168576906,78.13852800347834,0.7471307452121791,4.1678279854333375
+barraskewda,4103.009086577067,56.32538807261481,4.716571037577349,6.905481631053162
+marill,5398.070624110861,68.15889326518636,-6.134412674162363,-10.578352199221039
+pumpkaboo,3216.4510707727877,51.57020097030993,6.7750689339801,7.6910141521773046
+oricorio-sensu,5176.933174006018,68.12002453889842,0.15640179756876524,-13.34723893711194
+lombre,5313.714281585879,67.74278956009007,-11.259789276099452,11.951963162541652
+rookidee,4047.15169202136,52.355670829552615,-2.1958899381993353,1.6739377943237008
+oshawott,6522.2848479540535,76.23143192050419,-4.7701936360925625,-3.5311198948503852
+tapu-koko,4830.835052115017,62.01865418137067,1.2412029463828693,16.644311009863188
+perrserker,2873.5412841591997,45.25018348673458,-1.8394504134930907,0.011390117243352831
+yveltal,2154.213169925406,37.723866771753045,7.721288636976428,1.3606531159327968
+moltres,6473.823920129723,74.63998880921967,6.467222283817199,21.448204861018105
+scraggy,6979.621209033856,79.40993050726631,1.7915803722679478,15.306738382016274
+slugma,5463.193771254447,67.90292493285126,16.11646877982207,15.83912726320432
+mienshao,5918.65791713293,74.03859130158237,2.766778371663749,-2.466872077407648
+eiscue,6504.439697193227,74.51492037156294,-7.198412809038878,-4.4141854473298086
+spewpa,6379.753897805306,75.24307674319537,-0.3791294347123466,1.3652561330784152
+frillish,6896.487688938058,80.3475812749266,-11.003371855336335,-7.282882850896826
+yanmega,4108.744932689816,57.534959029776914,-0.4933636133490902,5.245937725825034
+doublade,5313.648259990103,68.6698990511871,5.023423434750263,1.6973540715071447
+staraptor,2693.202875994461,45.01133087100978,1.2894956096422645,4.596929190084132
+tirtouga,3478.9687552124674,53.14140107084784,-6.0194346512067956,-12.780909937173414
+sliggoo,6554.5678009338535,78.51837977214286,4.255132696180976,-7.690663334871797
+luxio,3587.738876308949,51.77099965418771,-4.46977918728513,-0.9491546609279382
+lanturn,6034.404503067768,72.80683715650532,-3.259203084811449,-3.094376786394449
+amaura,6733.518278053839,79.12695050952894,-8.202512824519365,-7.793434726317863
+huntail,5982.867566895084,73.60027706777767,-1.6118313177853123,0.6387466389330609
+wooloo,6168.027235601286,74.67860000545,-0.7117494319933506,-0.371011290970525
+meditite,6135.872368821837,74.97087001453447,-2.9480142710879242,-3.974673198769013
+gible,3784.7840351771515,56.5738433434572,-2.9610656401088913,-3.2733566026927963
+serperior,4683.542999775641,61.64101424995504,-13.041021062650147,9.930451257222941
+wormadam-plant,3224.937967148052,49.335577338927926,-12.030097609707628,9.826223560746635
+sandaconda,2741.2083729564797,42.47636731759598,-2.80998369128375,11.613342528420235
+florges-white,5614.751111737352,70.9942869509892,-8.934675628470542,1.1008178918460112
+barboach,5588.56111234867,70.62119502559483,-7.686803829357556,-7.982691827195813
+komala,5457.036823694701,70.47431251331382,-3.7445572246912735,-5.135156688348734
+vivillon-garden,3197.8605899524355,50.12846512777334,-13.041388715106384,4.7476137182385765
+orbeetle,3835.3410145936923,48.900664118732806,11.06877896317747,4.139863512731084
+mr-mime-galar,4209.510971192741,55.044723524047484,0.028677617719095466,-7.875041232722665
+fearow,4808.730021872144,65.36116214199446,6.465156660054775,13.321103959571538
+keldeo-ordinary,5927.108861424273,71.62688164958615,-0.25329404517062803,2.508047736404222
+grimer-alola,3579.8068687504187,55.939145198141865,-12.173379773308874,1.5912548971588771
+nuzleaf,4392.521791737413,63.13399071997972,3.0934055337774056,4.775471601742682
+minccino,6792.070746828818,80.59138128977314,1.0237953371128208,0.16160294067030448
+sandile,3775.5965068060905,55.391199529343695,3.768367892570781,9.246286958337572
+swampert,5268.819900285077,68.15960243616388,-8.46736704549146,-7.733911128456005
+slowpoke,6632.5449706363515,79.34296864888,9.411217940141174,0.5705362484382814
+bewear,3844.295317090455,54.945359835953525,0.6594214866940153,1.2903766874056595
+ledian,5110.814917734555,63.419705395786934,8.653362365880827,5.173630299837278
+marshadow,2355.5063751445027,45.84008759191632,-1.119997498966896,0.1260255271977732
+klang,5495.920875516347,69.42393698336531,-2.575333847448872,-1.3410375313681582
+liepard,4021.707142231309,56.21835379659129,6.177322153955135,-0.49690076237260067
+piloswine,4029.7477529051775,60.01779463600895,8.602542964606307,10.686752748834522
+giratina-altered,4425.86886494959,59.21017828273735,1.2968570764279062,5.2473996304944475
+vivillon-highplains,4435.202572600114,59.669952561405296,7.3187112567141615,13.90727349032209
+snubbull,5235.501538034202,67.55785516477351,11.657792421710166,2.3029204528914473
+hypno,8012.601365997224,84.24615232186221,-3.8855986397184252,20.91269193633693
+drampa,6329.548514975141,76.67153221601473,-6.014649023391896,2.824761113446847
+raichu,6823.174419160497,77.17122138415422,-0.1636565373593107,16.67444310641356
+deerling-spring,6127.238509120805,74.40066017053937,4.955934995927107,7.801059438808133
+girafarig,5286.727385673978,62.86565890438555,3.867660684202894,15.812609769372346
+ledyba,5907.061163427359,71.65972306716796,2.8127451953106832,9.452236196884
+fletchinder,4322.072435631783,58.70499166179057,4.490953174118096,5.241793415799404
+latias,5009.494352931173,66.06173193981363,9.54408778179321,-0.261944797597324
+gastrodon-east,4876.912178827209,63.93809844670915,-16.5336910401809,2.974689333505407
+quilladin,4771.91581780269,61.83585232796754,-2.6983427470115386,14.96835907239442
+loudred,4837.255282453348,64.68626976469322,1.9541347684859993,-6.415404086830094
+frogadier,5312.41072530837,67.39880620411925,-10.11234871213747,-8.463032152491278
+joltik,7393.64447406952,79.88233152739622,-3.9304339793933805,17.892138981934007
+farfetchd,6032.050630659515,74.50209321008415,0.396152038067137,8.871372711476875
+grapploct,2203.8117848376464,34.448959386308516,-1.8941852971227646,-14.03456264662224
+mankey,6326.233685710274,77.08112054576624,2.8274945051333455,4.710564353123979
+zigzagoon-galar,3266.6565863568626,47.052100018870014,-1.3071394403456333,-1.6496253487272718
+reshiram,7214.141467854269,82.97898434109992,-0.8762916833804092,-5.4165611186941875
+hitmonlee,5261.148932138429,70.10648457369187,3.0518628795899447,4.414503952212829
+bisharp,4350.437773028906,59.54017299139249,7.654293187895179,4.239009796945231
+gastrodon-west,4811.373592064668,64.81095169295106,10.126345262556415,7.832271192511732
+gorebyss,6778.703708984331,80.0166466563719,9.300219261462445,-2.4111252829502376
+entei,4022.535703463709,56.84667357110339,5.008478719208064,8.940627954866445
+bonsly,4151.479868946688,59.1630942585516,-4.22254732199821,10.930501777370251
+clawitzer,4325.3576602681005,58.79708322205773,-7.155207224310861,-12.483950570520705
+machop,6087.459784957362,75.86262904408665,-7.5985740889908975,-3.7732116245328013
+rhyhorn,4827.48699309507,66.97270461393333,-2.982332433168014,-7.458794479952322
+thievul,4131.711256756952,54.17388613402061,7.360368108445786,6.518766366997148
+groudon,4255.397978608154,55.9092414129157,15.17611079480055,9.620430966506417
+polteageist,5442.040223333373,66.60473273995636,-3.2011366792180844,-3.958709854899587
+thwackey,5771.566168439014,68.98336058513092,-3.2144277915430566,13.515910060894507
+zapdos-galar,2573.899356606857,38.9162840974384,13.159905223955116,13.598034260429788
+shiftry,4928.814290179344,65.29437039652571,-1.9319364117223818,6.047853484399109
+cranidos,4280.364993157771,62.53976739316113,-4.801618429616758,-8.112517951635057
+rotom,7338.4889937302405,82.50107292649797,-4.596462694052202,1.1010663102828109
+palpitoad,4887.326015952355,63.461256539461544,-6.415064965484249,-4.346477508321366
+meganium,6985.7328025826055,79.53903908440326,-2.112658319677393,12.593549036834112
+kubfu,4937.143558822251,63.576035806478934,-0.2481553773733488,0.7208558318950246
+furfrou-debutante,6523.463002186027,77.51461094852483,-0.4504226006176841,7.491327620188869
+reuniclus,7335.821209441231,83.33337240720991,-10.015118123927099,8.5340087930667
+luvdisc,7024.987596106244,81.65226499110896,10.390718304487939,3.625246772164738
+heatran,4438.828839815965,59.55663951859194,5.2427403095877345,5.0816394229485295
+avalugg,6123.462573138823,74.45979723091435,-10.44604954490592,-13.24715233263899
+rotom-wash,4812.979831898475,63.14883504483902,0.09306720448622359,1.9365670669094621
+exeggutor-alola,5041.0181644576605,67.46308331285908,-5.0729361413562835,6.487588517319065
+omastar,6571.460605437143,77.21153484134902,-6.9187859762925505,0.8221457433156428
+toucannon,4169.236889780257,57.21821535304752,2.545658471948399,3.9606296487626826
+doduo,5376.008902879721,69.5769339023285,5.213062180953752,9.416178266217528
+diglett,4782.042957819334,66.8772980197744,3.2879525477651086,5.3634967408666165
+gothita,5366.4663854953205,67.75310671514876,4.028675383900527,-4.243264271589103
+surskit,5523.50465577863,70.7094168385652,-7.635587369692596,-7.0255952023956105
+azumarill,4676.182056052677,62.43335431018394,-8.25703548683661,-13.451705832072511
+alomomola,5945.82997422063,73.94919033956853,12.636576158794623,0.08296510021846555
+barbaracle,4794.022749950415,63.287740778333294,-1.1585301104376535,3.2143854058031955
+carkol,1500.7578898146974,29.060765458692362,0.7279743256814166,1.1378686903639859
+cradily,5926.873284530489,73.2717065744278,0.09309012585302041,7.085567332400603
+necrozma,1452.1530226018199,30.22547180467677,-0.9559455981552855,-3.1414413940088295
+suicune,5147.246568663823,67.84069802024447,-4.698874800384389,-6.257015214664118
+haunter,4370.137066388379,62.08541666928368,4.702088379796048,-14.42947368359744
+slowbro,6596.369236372071,78.57357924865802,4.515894833357294,-0.4631009622898025
+solrock,6057.681514712754,72.21231599542111,5.334802197656701,17.157958168160295
+infernape,5417.387995565448,66.84303542394133,5.898121125935093,9.856932947517743
+slowpoke-galar,5399.869420716644,65.8746943229156,15.436633272666464,6.101873472340784
+rattata-alola,3180.3819013676775,52.07775750799461,-1.6547173556695345,3.5634894479275934
+swinub,4132.076166768308,59.33070414807731,8.456756955307133,10.50022647611863
+shroomish,6668.189878813849,78.91470334737707,-0.9984441090405898,5.040196660328448
+dragapult,4030.958929650686,55.30196759094396,-8.217771240321882,-5.118173158028072
+stoutland,5447.2924495304105,66.99714948020376,-0.366624455185606,3.0267198054591384
+shiinotic,5514.3732719174,71.6694284581509,4.748543007337247,2.2739539375421858
+deerling-summer,5885.8178484653245,70.9413652858026,-8.505692009475279,13.889209929742927
+ekans,4882.665410631028,66.08977452221325,11.9170375642768,-7.516514401784075
+lickitung,6766.603868558457,80.20093728279188,9.307754600542564,2.4269577390998918
+anorith,4413.443786008968,62.15385352171204,-2.3724087601530575,1.8450650094459946
+spinda,6392.787156216307,74.55577674789349,7.096327933977826,5.239637093738548
+shelmet,5099.28390518158,66.41408293206518,6.316079471321435,3.3933572644788863
+dewpider,5052.524000436351,65.03886019042903,-8.228100498362604,1.388435734237795
+porygon2,5244.619787091153,66.3363657123642,6.079125856659499,-4.383045759130236
+chatot,4353.627919658623,58.064550033229615,-3.388013264204322,2.238070414251771
+sealeo,6838.554987410611,79.25964539483307,-6.655504191396891,-5.606146771959945
+zamazenta,2973.9324933067255,42.65487631249498,11.264655904932805,-4.865304902596247
+rillaboom,3696.418727805706,52.780354899424026,-1.892838681090423,9.873739046784308
+walrein,5511.332558961314,69.63914810428905,-8.870771847595847,-8.839989105696475
+ninetales,7891.236069889677,84.87707487196909,-3.226439396811034,19.474057967125063
+darumaka-galar,5383.330850465992,65.2075746345354,-5.552783574109639,-3.1810312025940517
+shuckle,6764.937164907968,75.88438525595873,5.157588076181047,19.037827437795052
+aron,5960.48439958674,70.9610381482109,-1.963220092457865,-2.3751757208635063
+slowking,6757.8730489296995,79.78287614979949,5.43024589365181,2.0939046575156364
+hippowdon,3670.6089775778682,54.74525688462567,-0.6873722549043286,8.518294220316239
+typhlosion,7843.576767229027,84.20627548313395,-2.5128621187629823,14.8147842610532
+deerling-autumn,6083.3880411410255,73.37849505746455,3.5986978195697783,13.885412399625878
+zacian,3445.3134447992875,47.950529167181564,4.617809251353838,-5.510666592981472
+indeedee,3139.118892631792,46.88319988767038,3.419992706804088,-11.544534688301074
+articuno-galar,3726.8903713826217,49.49746365302899,4.384040147228259,-13.447936433787422
+chesnaught,5515.993888914002,69.69114914563634,-1.0536655780798154,7.644964008257115
+sneasel,3688.3056878657967,54.626332770937445,-2.036234119380434,-6.4981204118996025
+vivillon-archipelago,3382.7676544040323,52.012266433386515,9.75533912675034,9.29839474349525
+carvanha,4790.979471225199,63.64991943467428,3.9126295238075812,4.915177268007419
+kyogre,4539.745085784236,58.91873577972941,-5.170215299768919,-16.56775086939285
+trapinch,5852.344408968634,72.54715775069137,12.71403674181382,13.018564343173495
+deoxys-defense,5656.130837642041,70.53004627536627,8.311591108676582,12.467285718494198
+krokorok,3981.1695116681904,56.971441874191235,4.425894006785847,7.93242158211769
+florges-orange,5141.742742575544,67.24765268086202,-6.15046913961224,6.415153995943079
+thundurus-therian,5120.97523951587,65.18968080698122,-2.7063590523754626,-8.73331978457091
+tapu-lele,4027.174525825558,57.10845615542005,12.353582791708305,1.8478326774330331
+pineco,2406.8375868936646,42.74072991429094,-10.04536724334579,-1.5848892712185942
+vivillon-tundra,5984.954551547971,71.76890302495231,-8.12940375164331,-9.971140964819563
+ditto,6675.160265797401,79.6468587109623,6.8155534621797385,-11.216269593294403
+vivillon-sandstorm,5204.67176283774,66.62289141918822,1.4877650622751168,9.839186676146436
+misdreavus,3858.1142341674135,57.89710554388727,-8.17617927645801,-9.209491783255576
+arctovish,4903.446772870227,62.62850946548139,-6.305397162575908,-15.48207588560788
+rapidash-galar,5647.829271926232,67.62513886025087,5.0768088713583,-6.355175348935575
+weedle,5997.556354015162,73.31575496116685,5.001769820180483,10.083565378132333
+pansage,5623.69674749814,69.90613447911821,-14.309620894613607,11.433692616194715
+diglett-alola,3538.251460471812,54.66215202572432,1.9724427617618818,4.302476903362651
+venusaur,5853.952841817981,71.75229385069987,-7.6193597635804595,-1.3858283516474714
+zigzagoon,4529.359374810416,63.984805215461634,0.725968417952346,4.628838054562921
+kyurem,5817.8033340743,72.9578582725777,-5.315339928328347,-3.3546453468695288
+stunky,3413.370260560043,49.49206811484752,5.896602209758382,-5.8367215613134125
+whiscash,3848.934777652174,53.62386469577418,-4.902035592373029,-8.128673744552072
+noctowl,4467.596909841225,62.523284722990205,5.6628644531946755,9.949413890055162
+decidueye,5099.372435763911,66.70905394155959,-2.5371614347031097,9.575599573977273
+mawile,3545.703805576406,52.50831419208761,-1.4079632041141457,3.8043378170109934
+lugia,7156.66279427832,81.53242790519961,-1.3231680031824666,-6.125708429958071
+farfetchd-galar,2955.8521382639588,44.59930492663349,-0.4314877131120538,4.610069166597398
+furfrou-matron,5501.253784296066,70.68628494872794,5.992583224982144,0.7214245912409463
+lycanroc-dusk,5576.160957618199,68.22933431557198,0.7109575739227123,4.470684512426794
+wormadam-trash,4356.144399740148,61.29527817920392,13.199830164228132,2.0686860996855
+pidgey,6188.534098683711,74.25614591432674,0.9356841314183877,10.830775328530175
+dodrio,4581.980107845822,62.336925471651185,4.014662865247637,7.41379499903463
+chikorita,7135.4418452565915,80.67412528192715,-7.226881074331481,12.072449240902289
+lopunny,6060.807415036599,73.53609405298195,3.6972319319164195,13.3011264128933
+tympole,5175.700674285825,64.62405143354995,-1.3549217956725563,4.744447088896761
+purugly,5270.741331835947,68.89202529863714,-0.16086793828306273,-4.76829190729339
+tapu-fini,3289.2872819692107,49.86206476624142,0.08516855937071811,-9.772042824075275
+vibrava,4480.107934526255,59.55041753126352,-6.253266564334093,6.696969636103616
+druddigon,3445.4089511649477,50.56802085554355,-2.9546464316349623,-7.677263821940417
+stakataka,2726.364573320636,49.195262661697015,-3.311489371126138,-1.5068089009025867
+delcatty,5220.203784745788,68.10330402842334,7.275694653816914,1.593824644323859
+zoroark,2083.937266582696,37.555249005287244,9.434024509884868,-1.2228040390968646
+hatterene,6166.252307981577,73.05893069269459,2.761806194444764,-7.294201464828506
+togekiss,7784.708047746722,86.50474532218794,-4.952953093109818,-1.8513982921554566
+musharna,6631.893296386089,78.86443964451475,10.043515595050595,-2.9046767804730904
+frosmoth,7385.780272252778,83.14993757404471,-0.3405341890201177,-3.4415300537534823
+elekid,6272.843073375675,71.89101055586039,-2.1733041993192814,16.467318443271637
+poliwhirl,4822.204313524972,63.226868415986324,-3.4889790351262064,-8.636812974491454
+meowth-galar,2994.6190899544254,47.49157311848663,1.452833243851368,1.8221880722774284
+quilava,5045.141461154716,64.0209081755157,-5.350766253312744,3.0677146301075418
+dugtrio,5014.482032659766,68.38382243403437,4.091892682115448,6.906876065646832
+roselia,4981.7108058442445,65.15764423822867,-3.6218357915083277,3.2790416715293973
+phantump,2915.7608129886216,48.755033597815256,0.039057365254684014,3.3164270098693316
+butterfree,5410.4815253052375,66.98324122792155,-1.0845140388176815,-2.962654062220127
+metang,3867.729964909556,56.03320838585421,-9.707158086317774,-9.550541268574179
+seadra,6506.349688658152,77.35818790295575,-10.001069620385646,-6.219520126039121
+servine,6428.794041060261,75.35750157725144,-8.114718319495978,14.088161932031278
+dartrix,5698.120369673029,70.58592352690057,-0.357322496334557,7.105339217162099
+paras,5956.249997506702,71.46770885726117,5.952976897709637,13.32708120576779
+ralts,6851.698747175544,79.80991633617298,-4.45424863488981,3.672139569786401
+kyurem-black,5071.627450137265,65.78140172100684,-7.099829668933111,-6.552350968266567
+octillery,4803.752759068835,60.964882094844434,23.012697990435996,14.8670179993075
+poliwrath,4783.117180705867,63.189248767753746,-3.8083138303588897,-10.727953202999718
+terrakion,4272.500297868445,61.13285656266184,2.143205945356464,3.712200993035242
+swablu,7579.260010894226,84.55636500763914,-5.192302405468421,-5.996978090156383
+spectrier,2126.2912410927847,36.431539729379686,2.069758210330884,-12.70777646206875
+magmar,5768.485567499664,68.2556072879996,9.418389575626875,17.335844522466658
+cinccino,7250.817305931885,83.50564389240031,0.25580561543586056,0.10941101210125061
+boldore,1831.8607586712228,32.885370201504664,2.4862740803545935,-6.216737834517368
+drizzile,5508.947818416558,67.6824189875199,-10.543751692780509,-5.965658949011108
+mantine,4836.233070282652,64.4129665576359,-1.5110445863659223,-7.662242322759202
+boltund,5733.776865682701,70.05438442814634,-3.8308015118518504,7.378279662151873
+milcery,7615.0489218282655,82.10920624478484,-1.9600106980049092,14.429985393779146
+tornadus-incarnate,5450.3965904659135,68.51298491619357,1.4248782130772908,-2.554816497986863
+zarude,1530.1064023233123,31.8872225273591,-3.00804510782993,0.5431385660393732
+glaceon,5559.965939390713,69.71267638201107,-11.556316410651352,-5.868903072372323
+pidove,4694.634562883961,63.09403635681236,-0.09187608225033343,1.5350598538413227
+skarmory,5104.6265229088385,66.75121820681754,2.744183805341094,-4.145961861831411
+salamence,4125.196463261964,57.98891411696805,1.509252695404829,-4.27164078634446
+jolteon,6852.9551356259,76.801057190289,-2.020301946116265,12.74811970402497
+tyrunt,3235.2310198010646,52.30384804887952,3.8988928322073915,3.3508900566752753
+eevee,4883.310169945362,63.063815879368036,6.38682929423123,14.498556794400429
+nidoqueen,5548.409914051134,70.49240775849307,-5.961102571498733,-7.516633957909868
+petilil,7222.228022943004,80.20295256965706,-8.451542998465078,14.573106338863852
+pyroar,5011.684932643068,64.09320775102715,13.874231010648801,14.082518901736515
+linoone-galar,3407.1290161175075,47.26515114129565,0.056426335299653366,-0.3258085773049726
+drapion,3996.4326252025794,56.08096015318068,13.258536171656042,-7.702712637662202
+alcremie,6266.815571437425,73.18347463921127,9.60868799127836,4.8057833141908
+gastly,2888.5433001936317,46.72219355868907,5.506282403244307,-8.679530853954875
+toxtricity,4871.966094264278,60.390964583463614,4.393687370783614,-3.6514069389710135
+lumineon,3967.2702040178856,54.45396061865181,-9.228603920028997,-5.206408022064129
+toxicroak,4101.8447205708335,58.223264347837095,-0.7142585364198788,-9.61438525404403
+machoke,5402.942230744086,70.09792134530564,1.0476967382980975,-7.668137527749792
+darumaka,4386.418168338883,58.73387428376008,16.11499383564331,12.063075671335694
+swellow,2954.6119659714645,45.27847978809233,3.449891375488828,-8.617407427238275
+mr-mime,5217.447896818422,65.97037578516661,2.832839384196668,-4.289423075465177
+exploud,4983.242931373997,66.50734606394461,0.7897338962631524,-8.978867992596808
+floette-blue,5549.505984370754,69.2880298298468,-6.998520938772934,1.3411407100824901
+pancham,4915.248998381598,62.38313681466977,-1.9983615034043978,2.3284262309705714
+growlithe,6315.330042716968,75.20657820318489,4.4422821190390955,11.154134618555835
+mantyke,4253.775062140516,57.99488233125052,-8.988681598645512,-16.397513900798188
+pinsir,5526.7171425079005,71.47029139453429,1.862638009540607,0.4763726403009214
+spinarak,5977.427320342123,70.89647929619281,-5.49007241709944,12.091398454978124
+duskull,4684.914034357123,63.17036495018882,-1.6960562801081447,0.898645500435314
+mudbray,4114.967049136493,59.97359120427022,5.318620549919153,5.680297183123999
+vespiquen,5357.133082286906,65.0107121764294,0.49782346562735785,15.58784374390059
+ferrothorn,5236.248011254329,66.55862704072422,-8.476639044752972,5.659743645540891
+dewott,4992.187874948077,64.29072089209977,-9.200718516981814,-7.795952330357263
+crobat,4173.553475875628,59.734810607406196,0.05673975846198744,-11.613308764482582
+cosmoem,5667.54202029295,66.55752720663853,0.008901796589803116,10.515810591501339
+tynamo,7240.778307905852,83.21209098868167,-3.582180763992139,0.0410211180994212
+rufflet,6538.552244247237,76.77214459486454,0.03819749488108666,0.6148414370761204
+calyrex,2986.612962794724,47.15154023923651,-9.69157674628107,-1.2265193278612312
+exeggcute,7319.272454624433,84.01803343030606,4.296469495480267,0.19996113074662694
+clamperl,2510.368922824202,39.20339256897154,-3.1067115031700467,-7.245910694427961
+bronzong,4589.129518535139,63.296005996215,-13.406935166048743,-4.690031921460074
+jynx,5736.558344345822,70.48382320057603,13.15004263177287,6.298862658468652
+uxie,6527.35207532966,76.73320253415352,-2.7312534893515066,5.211747350826635
+foongus,6824.558507988415,78.26598966433473,0.9359891466011971,1.9669029797249604
+yamper,7030.322318134536,80.3207925661116,-1.8136235359856225,11.140140523810622
+nidoran-m,4891.358670007553,65.7975798080446,7.514420685995161,-8.162433565141747
+morelull,5942.084831484409,73.93362443289669,2.9522303413777267,-0.8138516784893856
+luxray,2084.547778382149,39.56085331761414,-0.8600186190876066,0.6310869861965863
+mienfoo,6440.541209981769,74.6494139042752,7.271672802744634,11.540070855583016
+stonjourner,3165.263302774927,51.448670837939204,-0.9339392555064724,5.178557758018069
+blitzle,3720.629492386859,54.44328314955529,-0.6480218408827371,-0.09858308429259426
+chewtle,6140.74942716376,74.45448249787725,-8.14615933746496,3.105125018614277
+toxtricity-low-key,4481.933047319118,58.51185964665958,2.377855742923985,-13.83509039516862
+flygon,5756.248976896795,71.21713510404017,-2.7975302928659005,9.278347285852496
+manaphy,6587.2876476540505,76.88186019030383,-15.024429496245602,-9.653560560892608
+beedrill,7331.52857875175,82.19934694974123,-1.3807896488850877,0.7848537911353141
+treecko,6331.140517159702,74.7777932727341,-5.30348482926818,14.387922023248363
+mudkip,6492.212724685529,76.98774966167967,-6.891574544157875,-6.3525722569689105
+tyrantrum,4287.778787827347,59.46452074031398,7.51801779213276,3.8523751544476093
+gumshoos,5081.121179704084,66.3255281661714,0.6151988600524765,12.06749476435538
+impidimp,4469.9644887424365,57.07925265818001,19.227448769596833,-3.993121280391907
+corsola-galar,6517.58004077618,77.50915167580149,3.1463261917793455,-4.628501340875621
+natu,6328.280922378037,71.40797042468361,-6.346282416949965,19.347696586835294
+vivillon-meadow,4171.82550953163,57.721821709318796,15.415526199105013,-1.767845587487256
+rattata,5048.846262882734,67.40791901665762,6.1781207607627895,-4.792597029628863
+pupitar,6104.378149600106,74.19193746513648,-1.72878941787965,-12.929787875148698
+phanpy,6702.615195798509,78.31734833331056,-10.198844794355603,-4.611090507030915
+keldeo-resolute,5384.3045445010775,67.73357286250105,0.041881851908829225,0.5495143446197377
+beautifly,4552.243717387679,60.87616848161615,0.6862535166413832,4.671438286724983
+dusclops,4716.960496612742,66.80245979416152,-0.18113090211035515,0.378907270697619
+galvantula,6289.069000377283,73.38684418534874,-1.1476378682015598,11.108554246037892
+masquerain,6859.773153382757,80.43098454390999,3.6984625250807257,3.1034551005415327
+oricorio-pau,7045.073968750298,81.08673331540673,5.68075465725881,1.5249958445010796
+relicanth,3457.191653534602,55.01396274567805,1.93324134424984,4.875513657584587
+zygarde-10,2156.7998218982702,38.880857251513866,-2.140838956648437,4.920926258030456
+whimsicott,7279.554597176266,81.97961747424146,-2.715868452964343,12.227185707631987
+silcoon,7718.421259299213,86.41344825453604,0.40574329487382316,-5.81633985871617
+obstagoon,2480.6228271717678,42.59484137948397,-0.5945217456503017,-1.4013693322274354
+vivillon-icysnow,7140.430149622485,79.77964550523076,-1.546106384479089,-0.8636376060236906
+eldegoss,7527.143384889613,83.87465299292485,-2.7193784091541024,6.2492438740188
+sewaddle,6277.493761445626,72.59839457563292,-6.102332086709625,19.50759376682984
+bastiodon,4089.3195801826323,60.68741301217922,-0.5866288343950358,1.0002018755665454
+cutiefly,6874.771047738583,79.53304331637428,-1.0774002098047224,6.1128977043136645
+wailord,6415.286720915306,75.18516064232573,-11.902640040681883,-14.23032379809333
+baltoy,6187.060455548382,75.3571761032819,1.8574877632498359,10.537339342114969
+onix,3813.3290944533865,58.97626918831024,-0.7601596680035682,-1.2015711404897984
+abra,7184.739391053932,77.89056729560127,-4.144533961057171,22.222552837318958
+xerneas,4881.614744677184,64.42023753373705,-0.30555535831650366,1.1942707880683436
+psyduck,7394.474676339082,82.84388152382851,0.4682158042298449,14.495751892028201
+rockruff,5201.135441942313,68.6597473849038,4.244394461354957,3.938851169181127
+dubwool,4086.570031047845,57.510676351939146,-0.3728666136677225,-2.042804786733662
+stunfisk,5213.212870253703,66.54800466776305,5.026094290121304,13.077498779342529
+sableye,3618.7219038561943,54.27461156292254,6.012227505739034,-14.125068611905835
+eternatus,1917.5403499247602,27.716036212062587,9.936019441767096,-11.17703583034273
+larvitar,5625.867108548222,70.17356233608511,-3.0576258517890915,12.264575377382329
+meloetta-aria,5209.520681088049,68.09111795344961,-3.0930448868561,3.8600554213161855
+venomoth,6619.032016339657,79.14890727681671,2.5039412720371184,-5.665021821256055
+shaymin-sky,6289.756033904345,75.76709972112226,-1.3640353340580353,4.436509954645013
+wigglytuff,7089.867886191896,80.82088108771617,3.2620157018878326,-2.3467278205716835
+dragalge,3919.7338222171497,58.061797635747865,9.687598503407896,3.998211369771717
+toxapex,4971.914242891218,64.78758588100163,-4.8764313163472375,-6.107727053127819
+cresselia,7119.883423322541,81.16840966442528,6.455682123483067,0.8247815105226486
+raticate,6254.933518254414,75.24532134103312,3.1271115987685243,13.873552994116586
+bibarel,4345.1204979702015,60.580046201824274,3.6288999101997543,14.068073041998405
+furfrou-pharaoh,5149.288667750203,66.52673873384464,-2.9369705750234685,-7.019620848514026
+sunkern,5361.922948443569,63.80309191715837,-2.9459717642165795,15.552099575446256
+purrloin,3604.695195362682,53.195548044864275,7.046650211375008,-6.7235550332339376
+charizard,5723.5551662693715,70.92841554429097,-1.2865860572003884,7.68679187867318
+wishiwashi-school,3755.6670650871906,52.90005371120951,-8.66236811245868,-18.580831062738902
+elgyem,6096.127794863757,73.74714735463206,-12.39665336295006,-2.2480569998964497
+grimer,4031.0730878087634,59.5185419756681,7.918353607616154,-8.771815305980923
+duosion,7678.024084679533,85.53243146102403,-11.591059504544248,9.01846609358921
+buneary,5554.20797331616,70.224992818874,5.446692212040022,13.060230573455751
+honedge,4572.478821135888,62.562868761061615,-5.476993666213181,-2.2895233288344476
+ponyta,7144.538543291111,79.6022071229679,2.5485985715764015,15.615453822257118
+burmy-sandy,5252.193616054211,67.39690179356629,-0.6332837260044644,8.001228207028307
+tepig,4231.198127907582,56.39716265867283,10.792827949511553,13.282414247160016
+donphan,4906.145236510034,66.10620399315714,-4.361691846669515,-7.439946998247253
+mimikyu,6574.6236273641225,76.70341751819001,-1.7284607757766328,9.996085067188098
+landorus-incarnate,5450.466116629455,69.81852635940304,4.1392050837929215,3.7033153086785373
+zygarde,3379.697972013785,48.69077917808593,-4.493806698852854,9.445560731734762
+naganadel,2252.681089581592,39.094851944971694,5.385352765628734,-15.071185180942715
+goodra,6519.699241051029,78.33974354678232,4.663373692679949,-7.994728087246256
+chandelure,3447.6278745707236,49.48100590504119,-0.919325903879476,-7.614008185944942
+lillipup,6483.553957871334,76.49773763186364,4.450026052755715,13.225544815811734
+floette-white,5975.128780279348,73.74725053788488,-5.492881910053206,4.5511408117529975
+arrokuda,5519.0490039477645,69.26418009031612,-1.0557968072182995,6.844105167325719
+pincurchin,1977.8311540274733,37.440638960504316,4.931957567541198,-2.826856240741675
+numel,7675.367349638142,84.9467458017935,-0.9998852316029453,13.124142298432048
+cinderace,5811.150144598674,67.85152086050381,4.269467998585009,4.729447435232863
+crabrawler,4675.664285895691,62.53575040600366,-6.082329788675629,-10.804730518666204
+xurkitree,3394.0189606667545,50.61969557217246,-1.3810351601996378,-0.11136879769858869
+vivillon-polar,3108.54891926317,46.20558690895048,-0.9116021699995008,-12.761843688546012
+bunnelby,4763.712329635269,66.13040329043247,3.2868816620364245,2.8836780930411843
+vivillon-savanna,5042.566223163738,63.981311049299165,-9.450962846757854,1.6865587105412498
+grubbin,6451.980541873882,76.81344768423665,3.12537255278292,10.592099508475016
+mudsdale,3009.13650113324,48.6043763432291,8.421017897682137,6.052232114940505
+glalie,5024.743361000229,64.23869854905038,-2.4666713964715137,-6.279056363686267
+dreepy,3577.907927225257,51.903040204478565,-7.712645450750048,8.763909036758582
+persian,7269.3721224513965,82.77288768623926,0.14926679357465072,9.267676729480852
+trevenant,3369.506363735762,53.73532744923829,-1.1324720773023356,6.322792640052885
+audino,7028.709485616929,81.78462269742305,7.369478083836329,5.401697746131883
+mr-rime,3057.791239999033,44.66399732453638,0.22007227353270734,-11.896686150654542
+furfrou-lareine,6255.752452723533,75.49662541742715,-4.306357019369507,-2.456763833244113
+cobalion,5030.35736641498,65.2025572560916,-8.681040056043862,-4.274556052596567
+mew,6582.816650199838,79.20128598689222,7.94039305643626,-2.925204935163632
+tauros,4566.122225510052,63.870422902125966,2.439976521512994,6.776549812302873
+skorupi,4784.104861950044,63.49829525016206,-0.9249734452513376,-11.70625662526719
+camerupt,5327.225510845878,68.36454959564522,10.030992854400138,7.6387098854663895
+karrablast,4042.7118690762213,56.01813950780737,-5.41010750632401,-2.139790344116094
+jirachi,7548.788111287945,83.72691624316282,-3.441766975081335,9.803985195738035
+vigoroth,6999.79719370699,80.72998305822736,-0.18691752753365443,-0.2977933898744363
+politoed,6812.8714416439425,76.4281258697479,-11.603592677244546,20.698942497758402
+heatmor,3875.190490863806,56.20615515872801,10.53667872231701,11.693473913032722
+braviary,2461.9527524281707,42.0054476704853,2.9825910696162268,-3.199861737383081
+helioptile,5421.323208321822,67.51575063931486,-2.7954925251858946,8.27489253447664
+zebstrika,3785.704142685757,53.920044986211394,-0.013855680041154533,1.1626644846824457
+stufful,5245.614939146167,67.1875119432919,6.9924056143830455,2.5480972731223233
+quagsire,6898.208991189253,80.84701649995655,-11.436313694354144,-9.90585730453564
+gourgeist,4813.968256165374,63.04902455630137,6.98919279582818,10.118006680800821
+shellos-east,4955.061702295083,65.5039110936811,-10.951381074442136,4.713551572272042
+sigilyph,4760.680466478191,61.90010415767597,-0.26717130022073426,4.693470676867303
+flapple,5332.268018047154,68.2396763963081,0.8254160825777109,11.992711113597311
+skitty,6478.469859317357,77.1066004198246,7.403148843286947,4.983909400908466
+vileplume,3896.0237323594342,57.19195940153839,7.44762972629896,-3.393027462447684
+gothitelle,2532.31069330996,39.91893153375389,0.7653391085838158,-1.2782669533378
+castform,6869.840479171827,80.9860519011066,-0.7861874473770376,-1.7546039831378786
+solgaleo,6067.141567456455,73.80387741450288,-1.5065646287173444,1.510961596754408
+furfrou-dandy,6131.359108978273,74.58836359720162,-3.582482389724597,6.761904298147119
+mamoswine,5585.459238091329,69.7657410786567,2.9118082793305966,8.980763795351033
+shaymin-land,6439.600841821133,75.34444553733388,-4.630718664898786,10.847977542616452
+leavanny,5208.931013464763,65.0977957396234,-10.968087932636184,18.673225664193918
+lairon,5317.072783436393,67.27053103870789,-1.1091846638836944,-0.9288856851784567
+goldeen,6806.495793786178,80.36892567835531,0.11953161251975633,1.1296911296950651
+bouffalant,3012.218799339686,49.62307675985217,2.4561488455927614,7.9852423194498
+piplup,5783.372260463863,70.1971381219441,-7.769330136810603,-9.14180999149744
+torchic,6625.197239384054,76.46591215984535,4.476893081192864,20.64674438593937
+sawk,4069.1451929250234,55.9935299580585,-7.38584977126746,-7.476472336255958
+mandibuzz,4019.6292674798883,58.55340949652051,4.2551233695247666,4.809485193478426
+snorlax,6046.156928771918,71.22942223522976,-4.96289604442509,-4.255069764563374
+swanna,7161.468419820429,82.34368023619925,-4.071214623865956,-5.6209989272854
+floatzel,6558.834359681452,75.07099002881775,4.129037178786808,18.99544098293908
+lilligant,5863.987098552876,71.09712140916064,-5.738653897143392,15.879569207572567
+furfrou-star,6119.465155009275,73.42247727165545,-3.5874825173486613,-0.630361644696126
+flabebe-orange,5948.329045842621,72.955113330622,-1.5301625828216314,10.383927941534415
+delibird,5979.877911574685,70.93540978373005,9.272532940122387,5.370864375951563
+tapu-bulu,4046.99425866664,56.07996528691383,8.778867360025217,10.293379898585288
+phione,5854.455831590449,71.7235422778178,-14.062718015501853,-11.873906884301258
+raichu-alola,7016.53481387394,79.81354722739485,1.2489061706947644,16.67698588458718
+pikipek,3924.6912401824675,55.633907679210026,4.318225365617131,2.7051364053499056
+ariados,5042.377078021535,64.34387673556394,8.972871742070607,3.6406539906866304
+torterra,3766.501300594783,55.222409127835526,-8.760497858331238,11.431923154894642
+carnivine,6221.689187302737,73.43053867692228,-5.745923433830344,15.990034980392364
+shinx,5537.487645303257,69.23267570656616,-9.25967913206435,-4.921137422255988
+ducklett,6333.290496883309,76.4648419204728,-9.593192557729694,-1.8997926089960249
+dratini,7075.850286832019,81.64278588886856,-2.1475006785886186,-6.094786844993764
+zubat,3217.655136718503,50.979997732388796,5.584915210751554,-9.38979145131746
+seaking,6574.219086687315,77.3266321926397,4.715480068960693,4.677184018924907
+excadrill,2949.468008121981,48.55965314986732,3.8026130863963084,0.9822863531983046
+mesprit,5699.9531686931505,72.10548531489249,6.443613693985121,-4.392057314369538
+sandygast,6567.466185997158,78.30333687770134,-1.0089511092891195,7.667714001408891
+mothim,6106.41562229455,71.97131500656455,5.110918645454056,18.715865850290136
+drifblim,5290.169709061966,67.94914020643499,5.169995013033048,0.4809943199350799
+buzzwole,2741.746874073267,42.58028177185209,14.22324474827333,8.63460545248182
+abomasnow,7260.946343906662,82.33675369079862,-5.903063718771207,-1.9479260346543155
+ninetales-alola,7403.678544940859,83.82946124338623,-5.923037756250569,-5.024251479292445
+meowstic-female,6362.464559582486,74.98443610640253,-4.006363748313677,-5.17506294440163
+chespin,5380.059938493861,67.85247004486835,-1.8911673403984826,13.602126840854773
+kartana,6307.250074985735,75.61337639564648,0.6271655538131395,6.446901047284544
+hippopotas,5706.9354956825155,68.55718288327031,0.08974261886378425,18.034494817099155
+corvisquire,2925.7030950042385,41.24616960994453,-3.729763504756327,-4.325473411546699
+giratina-origin,3773.1702599669875,52.32657081285812,1.639455985231978,4.7755816319318924
+talonflame,4300.896593781101,60.72750087190879,2.56014661243481,3.2694147302019876
+hattrem,6501.727207287285,75.1242458639839,-0.7556928470651508,-8.580098516401483
+golett,4392.381354879947,60.943890707312924,-10.494199966768207,-2.3656387874749174
+koffing,4935.586945992901,67.25030411836038,3.4692218153382326,-8.337769454128967
+aegislash,4825.947698064751,64.08641175400356,2.2059831163778933,2.2482015236493003
+empoleon,3643.056999742098,49.403616419680475,-3.9575669529935205,-2.708758401141612
+manectric,6696.891955435555,78.18142191386076,-5.029521804408951,2.2632463003703847
+kricketune,3804.6034416724274,54.4170060616461,10.244125143570256,8.608010291925137
+vivillon-continental,5849.05378578245,68.66463525215205,2.0398538756176476,15.413873703189266
+raticate-alola,3656.7925389340526,55.694311343101255,-0.06305537718429284,4.480535624439768
+shieldon,4388.390096846173,61.96302033240607,-0.12974601194150892,4.0671901680769045
+cosmog,3910.1150643249052,54.136308777807315,-6.882639926471146,-17.436825357693454
+sharpedo,4243.262432257217,57.77099861021533,-6.993705232380133,-12.613253699545078
+milotic,6935.488809055347,79.8194965652376,1.881297429638025,4.530409403913642
+wurmple,6107.04566552282,73.69300908644927,8.551661951907459,4.525126431071225
+registeel,5560.295409932604,70.94419468655038,-1.0011142350588023,-0.36532040971725066
+crawdaunt,4029.8905656793645,55.56264775087709,10.594489277815471,6.554092585651535
+maractus,4850.988772172087,62.76202573825891,-9.767289875107402,9.084879225700966
+graveler,5627.872116253349,73.61421327822748,-0.2718661780791008,3.3734065419450223

+ 0 - 1019
database-luv.csv

@@ -1,1019 +0,0 @@
-malamar,6225.181505885933,71.38646100617763,-6.417106851035581,-15.005727392590147
-bounsweet,7057.717450381824,66.98266247582106,16.73685452604206,11.333475958602593
-furfrou-diamond,6466.489293966709,70.55355558498155,12.20155456589571,12.478552550378629
-geodude,5154.123896670183,69.00812972117404,2.534257055621935,7.990386507277438
-rotom-heat,9527.293635062706,56.35309533126057,58.13403238005396,21.650588370590704
-dialga,5131.15403516995,59.110008408175815,-9.103383586909644,-18.853689975960616
-gothorita,3017.2794175289173,43.07527739895708,1.0253877920997707,-1.7974837396243954
-fennekin,11139.571854452663,72.4326009530877,38.09307825876441,41.06786256662942
-spoink,4879.869615857146,66.18952441820264,4.687393009968063,0.03725459062984398
-panpour,8213.833368135452,72.79279041855933,-18.525630301826375,-6.672105958882804
-budew,8696.680416167768,67.44897643162078,-13.937006301677904,52.729264449134675
-blastoise,6717.692518571813,71.37566144027643,-3.4232700505334983,-8.90738625144385
-kirlia,6702.176494584159,72.04318280453514,-7.481109398648736,15.383553241200957
-bruxish,6754.40458881972,63.63153862190385,17.031914055651182,-13.3171509905203
-scorbunny,9528.866658289791,78.21300888960663,20.91224067563369,10.509867857965236
-magneton,4941.1189932619845,65.13753493497406,-5.24364195420746,-2.8267043210763965
-plusle,9588.649761592513,68.05728249741713,41.27770306018884,22.663780025692798
-riolu,3752.6771095580093,50.90291278589427,-7.921864574319913,-10.77793193421444
-umbreon,3007.1941735845758,42.12903982987234,-3.104380918713263,6.439839552029444
-meowth-alola,5822.818980286848,70.51176992273254,-2.169605135101325,-9.950595306366193
-kabuto,5820.182769102231,58.762908984310926,25.807797081903583,25.719167196886783
-wailmer,7959.662502614718,79.55834567816204,-4.254145678358625,0.28873429366905895
-dragonite,8979.91656743005,75.76225560621742,19.02572598109733,38.594016029558304
-vulpix-alola,7345.698005573306,83.0625374130793,-1.5912725665784595,-5.430770031674221
-vivillon-jungle,2503.507442565893,42.14659910507266,-4.640520891683162,9.837114354555931
-bulbasaur,7259.371074044331,73.62238945440585,-23.76863903483551,18.592230657979012
-croconaw,8126.740257694742,73.96776053851978,-6.820911400901305,10.909041391700983
-teddiursa,9963.7090023412,68.10154260320446,43.73357846821154,43.60594767832435
-tangrowth,5782.004377678157,59.90167356893942,-13.585615039207504,-27.882428780679454
-persian-alola,6224.929265638267,74.43548834701613,-4.134355531444989,-17.014389868163224
-meloetta-pirouette,5543.81929642627,62.85084701320825,18.934989444886227,9.675391672405897
-weavile,8588.67002365724,48.84548100734226,43.60253779325591,-2.1607385242839277
-gyarados,5669.306635241394,64.65766591080018,-8.003859842116404,-7.88135561476432
-celesteela,4365.387838075544,58.6440756390784,-14.92633118693316,9.493814611330171
-genesect,4790.833887693238,57.824050601268084,13.893378669647475,-16.68469581045921
-rolycoly,2388.791318030349,31.764240925394137,5.590776104812893,3.2746708504312183
-furfrou-natural,7288.378891764126,82.10147922735766,3.0760796030953963,7.727794173238836
-bidoof,5590.4461034587275,54.941984578272766,24.20362325208255,31.8235977591107
-volcanion,8768.683771290987,53.415791495707744,55.71054412355811,16.373756870063215
-vivillon-elegant,4287.452700859832,47.46639063459947,13.615840663284189,-16.682750391628463
-simisear,10047.87867417328,67.80985913100463,46.67583375987418,30.461122444286023
-granbull,6425.877982413782,73.64134510006741,17.458307098955345,-13.644055885705832
-electrike,7271.823523589309,73.63246825696983,-12.361669450335219,30.999781297311717
-exeggutor,6364.10863793805,69.69046717783691,-5.702238873684056,22.539810730538022
-delphox,8575.955889499091,53.73020929257463,56.41607544574591,25.190856102392463
-cloyster,4414.280128467704,58.287766338117336,1.9939034292321844,-21.505846966661228
-unown,3597.58323633654,47.12834307283604,-3.719173281538769,-5.1553174141963645
-gallade,6855.651395618626,73.05907291544392,-12.017414706803384,9.359246515316768
-froslass,7170.404177996185,76.22372170778584,2.0953900805122623,-2.341931744299866
-pachirisu,7758.355941674536,82.59592344239796,-10.144481295515314,-5.455891025538859
-zweilous,2713.2455937910136,43.368482567262035,0.047908701103783334,-6.596827163121809
-sandshrew-alola,7797.189333432541,82.18845183029926,-6.164231036767071,4.9672676484043246
-grimmsnarl,3916.692446183477,31.542304339493352,-1.2517820142278622,-26.741054219080745
-charjabug,5728.284556168624,59.86607154494224,-10.76840268842077,28.244465866705514
-bronzor,4701.796350910393,50.674039062088006,-24.09415679177048,-18.931468734734317
-scatterbug,3644.468172468229,55.14944878619222,0.1220326796850752,1.2917383943640552
-miltank,6569.11076359449,69.84717971745421,15.10780990076426,9.144810736365768
-feebas,6627.736075120498,70.8054492398066,11.077597231112414,16.47660722322967
-togetic,7235.89063774804,80.73007898843254,5.681771965840297,2.8295748472074584
-venonat,5594.802156323928,55.15129224188112,9.693744806477394,-30.890349582417
-oricorio,8366.529319722382,49.227013034499876,59.2905284964798,5.89428492394529
-medicham,8632.873384627914,67.85798137021408,45.693715479344306,3.0333821334466
-meowstic,4759.844368915636,57.08547235708558,-13.175323280859494,-18.742288788454612
-steenee,6960.5234887662,72.67791909233753,-0.23693773601145007,18.072452271328416
-victreebel,10220.314168649214,78.32435664976916,-4.01216777835418,48.135122089336214
-totodile,6657.146953431616,68.40723180810231,-25.435069308626737,-6.9938276457244335
-cursola,7289.603984042536,82.57974836185652,3.340948618449697,-5.985355607839081
-seedot,4800.090881012339,63.10506335095441,6.129645066336881,10.520403754086868
-vanillite,7857.5968673717925,84.07002060138527,-3.171080060289933,-8.909335676748693
-dusknoir,4022.1630678810598,54.72628476165427,2.9628404698637767,12.351612159606738
-turtwig,8157.619109723121,71.10822696889332,-4.612917406410507,43.37260821964215
-regirock,5331.575966104333,63.82428890646356,17.766314506410087,9.740953261727277
-haxorus,5605.5530022157645,49.35965542867291,14.598664801239602,32.575293893022724
-caterpie,8431.729679305561,69.0013930381452,-5.952528146528511,43.178850807678224
-lotad,6845.601979169783,63.38436291853726,-17.31213389078921,20.091587397134496
-kingler,8756.071233913633,69.56377168652672,36.25351520101186,24.737859323405996
-cleffa,6755.848646228303,75.80182974302247,17.07276223618581,11.343922659093499
-clefairy,6944.772663313542,79.22441628349594,16.486963964450077,-2.0810916172632887
-croagunk,5226.628970272438,49.801869563575224,-5.256157239034586,-25.784631204842018
-charmeleon,9747.96136366724,69.0542123024639,50.15252717337885,25.601381027241295
-magcargo,10561.248616737084,56.15402612197752,64.37426353918782,23.24166697617374
-oranguru,6419.711301721651,64.75198359753787,-5.36044658998617,1.5271569627967059
-hawlucha,8335.22965432626,65.24725942425391,6.918467804767609,15.404402944727327
-corphish,9741.858962415452,65.8531867916855,49.31167471667302,23.583336621879138
-regidrago,4204.779181305371,37.76539664450853,17.616582565950793,-5.855112949091336
-pidgeotto,8226.99538470536,72.31065018046142,20.42750376446555,28.140058138694638
-buizel,10322.047580782959,67.06603563819414,45.094694172488154,39.67071064956756
-eelektross,4433.848450963533,49.31543252328842,4.551414576810231,0.02715443505951314
-vivillon-sun,8813.513327888366,64.72555121903991,35.49052407564624,27.469518818056095
-breloom,6139.3311878572895,65.847157684396,3.3893277259074672,20.134760977005325
-houndoom,3528.196501298636,48.47336341703647,9.441402507288728,5.724761318433702
-heliolisk,7385.43208177785,63.17252838269892,14.507641279622831,30.30561111005996
-virizion,8318.433886256853,70.10220330697415,-8.397697937102382,43.15518342176095
-primeape,6791.438623468869,75.02721733463702,14.016928919803652,14.757878769467675
-solosis,8236.539577304797,82.80936457791533,-16.00288925349275,27.435382645110042
-gloom,5481.2193184149655,52.24441098506736,13.045700756878956,-6.097455491678404
-electrode,7807.218602735913,80.29398895662014,11.890819256544285,-1.0580404880615033
-shelgon,6575.04610707705,77.76094928796375,0.6796793082886916,0.6646477007145859
-magnemite,5219.072606182823,67.04059379721542,-5.482899899497408,-3.217607022853442
-articuno,6611.937926162207,67.48930572647136,-18.2093448982854,-27.407208749816146
-qwilfish,5791.147632589848,65.86383884415525,-10.395972678179845,14.49286415590462
-kricketot,6512.329593870567,55.10035223452434,27.101962707856714,20.773082431928113
-graveler-alola,3745.816474638325,58.096536999241614,-3.4337323764828116,-0.20279980783834506
-palossand,8460.96587518364,77.08380451981967,26.164034458137582,36.21672065313625
-staryu,7411.967855038803,63.57052814436819,21.4660064511385,40.75550973873407
-magearna,6200.985096619012,74.33200926516639,6.020835555791268,6.042581736435727
-furfrou-kabuki,7417.609161974941,67.96276862922262,27.93403187865611,14.828341429849738
-cofagrigus,3672.9213433373243,44.697504810523895,4.116560846343657,9.527877258795668
-trumbeak,3704.7527294293595,51.10142387736446,4.597884151306907,1.6066751022333896
-swoobat,4141.016043199868,50.06607562160148,-7.0964662333277655,-15.317223069198793
-golurk,5808.881186267585,63.28002513649606,-15.740649744814226,0.9495921687163362
-vivillon-marine,5742.477066292789,57.173709369620106,-21.77899579977754,-26.489040883825517
-staravia,3030.2124504063363,42.090834677001396,7.989131202164785,8.374895250526713
-nickit,5989.591560315556,44.31071706322478,35.856218085548306,14.8329783560415
-makuhita,7504.91178709238,71.32090434744453,12.030251508219454,29.170425707442128
-ho-oh,12476.935508115967,60.10601396608071,56.318079946428234,29.900802204066135
-drednaw,7943.319345903994,65.6060554658383,5.744935752498479,26.248906376163053
-toxel,7317.815017054618,58.44555701690415,15.260254893357567,-41.93402454334416
-horsea,7469.370684515415,76.47102565371702,-15.763570092386534,-9.13269074869915
-brionne,7682.188711473058,79.89691243619585,-18.07136492333011,-11.39548556187738
-kakuna,9613.184114621721,73.44272328907448,17.426318235264226,54.14577934966112
-floette-red,6963.57168560848,67.72286729881823,4.712116387662912,14.420300543459245
-skwovet,3722.9292368466045,55.403305523575185,5.592115122921019,8.294310851562926
-dunsparce,8680.833492384885,73.88355732565591,-6.399951399669152,26.13041882706414
-melmetal,3463.26367876738,46.01496909948505,4.088444915659423,6.761252993134398
-hakamo-o,6460.745821435475,67.1882812214747,6.158362612994372,22.412888048708698
-ivysaur,7344.480020988199,64.97749233606592,2.2807217650079417,-4.0484887158637655
-pawniard,4347.924432792617,51.39599374929439,13.246312030109014,3.834978340990522
-fomantis,6095.666719763462,67.72276078943102,-15.877140023659091,8.73267457341355
-absol,6855.028925522975,77.5612425539822,-1.5776309637823787,-9.785727882387356
-salazzle,2291.69562570552,42.43839256926047,2.415962505551906,-7.342447232753648
-incineroar,6948.885874733435,46.23061617768642,42.51721210916148,14.191768724066389
-simisage,7405.9972426940985,66.53021922302338,-23.60295728552982,33.28347773517182
-slowking-galar,4621.510271530943,41.6718565765513,21.140011733520428,-22.773113544723806
-skiddo,4664.402529877559,57.95094018590362,-1.860115120731687,9.404597339332108
-prinplup,5723.37645969288,58.52263425231627,-10.003077208424836,-12.5449408266063
-spheal,7702.197097688653,78.55856295002833,-2.2439471610192663,-2.13030822527315
-volbeat,7415.041008516586,61.87257435463433,26.064616272424264,10.197902791553988
-regieleki,12986.426257690924,77.90290751793853,7.966477275459888,60.387322338902926
-meltan,6765.605641034475,53.406990111687726,13.040061161503248,24.93114897677632
-porygon-z,7978.31881684428,59.846832249819755,9.943455532715873,-13.897261604303178
-nosepass,4305.128119991352,47.26408454494399,2.7837967783001405,-24.674899839835156
-sizzlipede,12877.005047560842,53.14111200726519,70.90241203235009,21.6767127633061
-greedent,5128.00060399531,52.6905794104417,34.89261204203394,16.566416572751354
-ludicolo,7339.089846459272,71.94681022623523,-2.5496811674841924,33.895983837332075
-torracat,6659.087346207923,44.63606363300447,39.6913924317115,20.547465165888937
-mewtwo,6678.781529087265,77.90480514620006,6.834600951109913,-9.252535952956496
-wartortle,6913.474548112944,75.7971332763361,-5.989505745216952,-9.554852894248935
-emolga,5057.254536199239,60.06149052548898,3.9436365467165455,6.820911006082482
-throh,5983.526076265597,62.97262502240952,15.774036342390849,7.962948134527726
-heracross,5022.8955872345905,56.57149231150396,-18.222530324205195,-27.23135921854927
-minun,7936.149504140689,75.89380355015233,-10.29872700037312,0.8074423228929646
-cramorant,7311.333351163417,57.219149052223685,-10.362196411960507,-35.556868359879765
-jumpluff,7757.395623769784,73.60722410801827,1.7358570831945823,-1.4458031138240677
-pidgeot,8668.671683990979,80.18554856324192,11.648831455946755,29.907907283603212
-skiploom,10909.041541195238,70.06085152387126,-22.15881515069543,65.0274646974005
-alakazam,9809.250011406883,72.74709310884509,9.784608181660088,46.08943195049324
-sandshrew,9714.80752157716,79.53515724546637,14.030638363443929,43.82015906830274
-azelf,6692.801007249913,71.49892904219253,-14.862815227276107,-15.57452092053407
-flareon,10672.518182561083,75.56797469702701,27.020118280305375,42.71491576071385
-runerigus,3655.5366978255556,44.41613057294981,13.779647663838515,-1.1537702824321001
-tsareena,6899.330081172658,68.79831698791395,2.9223837733665436,21.546999686199847
-hydreigon,3393.5786054007303,44.33844966410948,9.043966288565597,-10.414730059144707
-munchlax,4638.507807249272,57.26560781015837,-12.377628911736977,-10.906776762769297
-vivillon-monsoon,4179.948369911042,55.36472546741261,-1.8063244173184538,-5.545253312466394
-timburr,6154.790120507491,66.35508101177804,19.01076634255178,18.353136646876127
-archeops,7604.196891615768,63.55496689167327,8.68153308965951,12.066831489062128
-pichu,7936.066418387092,67.69157220550716,7.613899319710331,37.320272438447965
-samurott,6211.206212014817,59.63629380700468,-4.878537977919074,-14.873378313275527
-murkrow,2476.966522138037,32.18858864914679,-3.2674771035256045,-11.039423322341293
-thundurus-incarnate,5461.488778749543,66.20324110663269,-4.469524998895588,-7.7326385994543765
-coalossal,1743.3380944902551,30.828267312579253,2.973357042073441,1.7468982317369646
-bellsprout,7977.4327595757595,71.78635831455517,-7.610609637179232,35.3916924144268
-ribombee,6776.728260700171,75.85303275690693,4.762413248680188,9.186687327484385
-seismitoad,6093.974330641213,57.4852527735407,-19.580271302760192,-27.315037177144976
-dracozolt,9104.387235077842,55.11594858506222,23.44887045382494,33.77722566833155
-ursaring,5489.000930330839,53.562546496240444,32.30388755030337,26.17936207159777
-tropius,6189.356429682964,63.03174678778666,-13.460482736162339,28.67377452172217
-braixen,8817.613474756887,65.60642573375821,29.01239250548808,28.993765832501573
-herdier,5894.15312539672,57.89490976113987,18.785490341244017,12.890279264339192
-sunflora,9607.903280398888,74.3723447102572,-1.461774282015298,49.73674923881475
-mareep,7736.128060875403,74.1837003932912,2.7354997780550643,13.705630831597063
-froakie,7303.550142746267,73.48266823289148,-17.78947362526104,-6.2047743179072405
-simipour,8683.436251983398,74.18024050613296,-17.2370450763399,-2.175668807284305
-roggenrola,3096.0856593002404,35.35684472762538,5.45061337250257,1.2600045440993013
-pangoro,3578.220030832162,52.80659789953623,-0.12457674018941912,2.7390906583475405
-dottler,9986.324621877664,65.58296297207549,29.139795083954365,39.40075222979771
-vivillon-modern,8207.579433770097,54.876729195116795,39.06108726889983,5.7926636580127076
-chimchar,9146.628176116341,69.90760188358824,29.89539779244365,37.88086023017014
-whirlipede,4365.214024258634,57.72558559493706,8.724789636505527,-9.230702889987647
-scyther,7479.6682703644565,76.54686274576046,-10.244069254684337,25.569431236188723
-scolipede,4497.024367676369,40.92771119751879,33.96187464536842,-0.05306065658573863
-yungoos,5933.504706945024,62.612075394472186,21.974122924052796,26.069809035593902
-munna,7659.269610372392,82.1184406379042,23.143791205186588,-2.4717784033755628
-golduck,6555.285339672881,68.92185321120816,-16.003208945551847,-24.47372956376727
-sandslash-alola,6983.137314117556,74.94494900509187,-20.25982909782273,-16.4020924046802
-blipbug,5472.544033913493,60.191754034491986,2.5928593063867185,-5.016599264373796
-remoraid,6239.958403695518,75.69274118205041,-8.333749658340873,9.323527581178544
-magby,9829.43743365222,62.86591280325101,57.66612780912125,20.690928012997393
-ampharos,11474.345223747177,81.6713207101673,15.308461837520184,47.02083747373522
-duraludon,5222.594932252752,63.86997932715917,3.450734118022357,-12.159915849945893
-darkrai,3194.425066185081,44.30067277629203,5.325928972367917,3.024115803152631
-trubbish,3572.715333714271,52.73008148703039,-8.63900307913862,11.697439020533947
-marowak-alola,5004.3986849021285,61.691051669049344,-0.3256856897705628,3.6496431435290164
-sandslash,7952.192466898888,67.65217266604941,20.130715427247026,36.54887069837151
-silvally,4101.170185714262,56.44655074197359,-1.5631942917620758,-3.4911420562317113
-aipom,6952.698523740348,67.13965971434156,15.907388264701401,-6.90392289159421
-dedenne,6925.53207217002,61.79481072878477,17.434757324981216,31.569317353430975
-axew,3965.8612415065927,53.67162668545594,-4.387250734802615,19.167472137751336
-palkia,6288.584718188418,73.2300050737969,5.503717235230265,-7.018026645833638
-hoppip,6780.871653562809,63.09525594259537,28.164570417821526,6.638413227368949
-vulpix,8474.028535043326,60.82072199834687,50.5553903309633,33.98548708920556
-togepi,7320.230915262215,77.64252236252011,5.697266647843951,11.236186934952057
-skrelp,4348.3785728955345,54.582331023924695,18.983921878022226,0.9732939061644088
-ponyta-galar,9113.231317480735,70.47934323913026,-0.07742740142580076,-33.30963009787924
-shuppet,4732.668379990693,55.48527600921341,-5.466397015110852,-29.315697781424436
-grumpig,3647.1762746561253,54.622272631117426,4.119229871649733,-5.536195644711416
-floette-orange,6789.364279242702,69.53807452413535,0.45193020174316395,18.865963157462904
-squirtle,6610.667760056839,71.66174305544301,-16.171515112150438,-5.470270417505461
-shellder,4294.947195366249,53.175602967244714,2.5455200962259843,-17.5743077472092
-illumise,5194.5001155678265,58.776951920277014,0.26902608971206154,-8.775880804143902
-seel,7562.50452737302,84.76215910446369,0.40258539098164026,-3.9179464424204475
-tentacruel,6055.884339259968,63.385195581264234,2.7302656392088216,-8.308207829862903
-cherrim,5363.337928521937,44.3336561344,7.249000948268419,-9.40311064199288
-necrozma-dawn-wings,4489.989862428431,46.188009524168166,-19.693645762038848,-22.76081112454658
-goomy,7475.182967547192,78.11189744538436,4.342783422385297,-16.874271798876798
-lunatone,6938.745407373894,72.45077204226287,9.344031736252607,26.705873630184904
-urshifu,2938.259344266467,43.55547552175529,2.454773865287526,4.910344627685522
-bayleef,9185.479505763615,77.92574384460951,1.866109772670525,46.65727072718589
-applin,10481.949968408982,64.07199226094923,42.660037454427915,24.379037438982273
-vivillon-fancy,7029.204312039119,66.92427404256597,2.8110356111490975,18.05425160494249
-yanma,7967.034418784176,70.39859113747633,11.22814737585934,14.583135185534639
-slurpuff,7562.715984449547,80.17993192089405,18.191710801149647,-1.533801818934449
-carracosta,4279.008008527228,51.05212144399864,-14.326369148896037,-27.751891389348767
-swadloon,9564.678108626498,65.83742798259864,-17.52660251656832,58.99098173521141
-landorus-therian,7763.462444720062,64.91891690177155,33.870425713474425,19.90191127977813
-primarina,6932.047924545721,77.28706876714419,-8.326939236487176,-10.120963375973329
-grovyle,6029.701767951977,61.12476386331513,-3.178736428161925,21.414891487621905
-comfey,8086.063255168997,67.1479381183042,22.71879672698971,28.301984381284022
-machamp,4834.842493487999,63.546600608291676,-5.4561459224508,-12.993977718266823
-vikavolt,4872.585454645742,58.38790590480296,-13.054084527467158,-3.4368784065770326
-golem-alola,2500.264910883081,44.73385241308498,-2.0879761911519776,-0.33075902601539886
-escavalier,8035.107412764473,67.85802857807114,31.887653144716072,12.040043262429844
-celebi,7708.005912362944,79.76599381809632,-5.224841491537441,20.28161868841947
-beartic,8110.309456180868,87.47486028474485,-6.065498275556541,-6.267877891774208
-poliwag,5265.422019221224,59.202416754193315,-7.48657686455352,-21.37140187101935
-raikou,9083.794034019058,76.44215493506766,11.485127031067673,27.923856864054677
-combusken,8488.280434128965,71.38603608391752,25.542099554875794,34.64245864184223
-drilbur,4239.495616916133,57.07515965618879,3.4161387295999837,-3.5197810665880325
-unfezant,4130.118146925686,52.96690687483507,3.1716708939893827,3.55192810184916
-zekrom,1644.3297808557757,35.670811932211215,-6.324279086935617,-1.8499980732747188
-minior,7218.407729914343,67.40160001419669,38.270449943475256,-4.419351911823624
-nidoran-f,6403.836128854413,72.94863532400541,-6.805769250844867,-19.520666334727178
-kangaskhan,5852.510167248251,64.49873316866343,17.324797481738788,24.40312934500095
-krookodile,5069.695899295102,53.793103392298875,27.309786542766222,-0.00011589579816622796
-floette-yellow,6809.640882360014,71.31170479417139,-4.380616481599057,20.173290635647984
-patrat,6505.218150196065,64.27969187497935,22.6375995864905,24.18338423214536
-hoothoot,6598.747752433058,62.59223913494644,23.2571534864904,20.588830083674484
-litwick,7901.130169539683,81.70698372728384,-2.8010273954069507,-13.379696666482552
-wormadam-sandy,6147.923722685039,62.76516209179247,17.857669446619656,28.062726160452524
-klefki,5403.289689374475,67.18734302477985,4.428706454057276,5.621881865834242
-hoopa-confined,7487.508809768765,67.87941272045225,24.118929214352217,7.497761340429799
-blissey,7628.959886601824,84.26126317157623,10.08206568857032,-5.692785355282164
-klink,5115.484282223133,65.99991237574488,-2.505912867339087,-1.6467839384976048
-kabutops,6736.199972041438,63.08609036974035,25.16245709834808,29.022055458285937
-zangoose,7861.591374007829,77.17572950711026,15.686570787167174,0.7442816861338583
-flabebe-white,7012.933440201188,74.60594270677605,-2.0006152596012976,17.73778856118368
-glastrier,6515.006518535054,68.80684783950593,-4.672294860002178,-18.740633879847778
-snom,6365.615933567631,74.24832693982779,-4.789182198277777,-4.671353115648359
-electivire,7274.494820481018,62.873280534218736,10.495792687965958,35.43443884711032
-tyranitar,6825.063357909443,71.09510208177704,-6.431884690439555,29.127045064069023
-golisopod,5059.062732169934,66.396425539726,-3.900685715345939,1.7548899323122518
-jellicent,8265.246699459318,83.6308485767867,-16.04564815857177,-18.995521631157263
-lucario,3932.1387512447113,52.338643294327824,-6.851813856617799,-5.821220256774113
-floette-eternal,5275.012497580893,51.68158940415829,11.519548885114006,-3.402156991351381
-ninjask,6077.103964382337,66.07153251159565,6.6177822492292275,8.224130847384131
-dracovish,7736.786883087896,50.95511835336664,13.353014829969236,-5.2758014717685215
-chingling,11947.942144716173,75.09413227613936,21.880992351366814,50.089397438805065
-nidorino,5726.430321421679,63.53110404832067,16.34231066594205,-24.302103691043385
-popplio,6822.233408807756,63.12091160561884,-12.838824590870617,-37.098076061700986
-claydol,4419.753990423725,49.395317434373155,13.881200038479943,5.875876478793763
-venipede,8603.547266269397,51.8472504261819,59.20190367017895,1.5530392917851226
-pheromosa,6490.320477977047,76.69771165972752,0.9935042199934282,1.8388475785499316
-carbink,4662.995211683356,60.523552845229574,-2.6883933713188295,-15.120382561998698
-copperajah,3541.9690766333465,39.18259140977786,-3.304334245458025,11.264671405284624
-nidorina,6806.900311113501,76.45577235783935,-11.063731562924199,-9.895624954366072
-magmortar,12067.260994817816,60.62137139536646,59.059880721045616,40.19211368798133
-victini,8956.467931923373,68.6519523471421,28.684216766641274,29.458433074529022
-dewgong,7963.475056702321,87.78309673803572,-0.2800261308812092,-3.4087849092722378
-darmanitan,9586.741408911425,53.23320567031625,62.94620099291631,24.608661735210585
-meowth,6625.299435294509,74.32335499366148,6.696625810198601,13.920903664062052
-kadabra,9438.420282468005,69.24120326316346,13.040002376919468,48.94701366069455
-spritzee,6572.999589427474,70.04195632177743,24.075857776174995,-3.7615784808792707
-yamask-galar,2209.481748187655,31.408739280217084,6.8199263737752105,-3.309092036247688
-latios,5600.018490880905,57.532415224676136,-12.819545279846208,-29.07757654286302
-oricorio-pom-pom,13620.145978635204,86.66766559014701,5.6805881592974385,70.40743916442595
-moltres-galar,6867.062979753078,39.752264205728714,37.70535605499155,-1.5793876908073663
-larvesta,7613.361906181972,74.96215463955413,15.239800513570865,6.175177953581658
-shellos-west,7470.679117875709,71.09499263414119,26.478378718329363,3.1193123476162765
-parasect,9773.436314617233,72.848502194667,36.87775858129341,25.18550818804712
-vanillish,7528.4190888232215,78.49541647754064,-8.445709510511183,-17.91850700043725
-vivillon-river,5845.705444493813,56.900716465273796,5.8998274699414575,22.639062582497875
-aurorus,7862.357447264655,77.56068884840235,-9.645771574550896,-13.129796704015765
-geodude-alola,4222.940894156261,59.77979423482891,-6.687104298475339,-13.613980709096296
-combee,10137.370606976008,73.85871356450741,24.59076212403305,41.075185569873454
-happiny,6526.16852776315,74.42520598943447,18.718611895331073,1.6833518759299069
-charmander,8682.191631625217,74.13993887353139,28.656396612366102,35.820913893250626
-flabebe-yellow,7705.685240709269,73.80166818288684,0.5730476186619424,29.898508855692995
-snivy,8309.031355877194,70.40484807795625,-11.482699555728436,39.51537405232293
-hariyama,7915.199788057779,64.73211399657325,25.46955144830919,22.919742621713777
-weezing-galar,4645.630780603653,56.96418312417409,-3.6953209000989826,8.380299971868173
-diggersby,4929.309394515723,58.284146431844704,14.277579115971017,20.825706976580246
-cyndaquil,7051.214380850895,70.10259836854875,0.6996142996310896,21.36507483727929
-forretress,7734.663457176607,64.3994859991532,32.49778838746716,5.360836209585792
-vivillon-ocean,8513.733668267914,64.04813848413824,13.606016495764603,17.08713437556222
-houndour,3276.412788929036,44.81473878022389,7.241439634569415,6.678429156598323
-lurantis,7371.587658865465,67.8667685667044,37.383075166641135,1.624241811427212
-mismagius,4209.180416341295,47.43043817560517,19.50801286300319,-28.727340211347286
-passimian,6166.83332775444,69.22904727707501,-2.2543610016003965,14.64123466265179
-corviknight,2638.090766542984,33.358448085734516,0.21568303486625404,-17.17794720831148
-tranquill,5050.8905732487065,61.796834167710784,3.6590898007132036,-0.10450524330537715
-marshtomp,6929.54610260723,73.0236176226303,-5.921534929819151,4.2171735357194216
-steelix,5880.4613995993805,71.63024447728962,-5.143393802906339,-16.389253307206335
-vivillon-pokeball,5381.001462280602,49.81906459022748,26.368015396182102,7.22827552515199
-vanilluxe,7580.109783374255,80.22212080411555,-7.0827893702065765,-16.28674201447013
-dwebble,5387.275809906389,48.09286904648246,28.531877897343247,21.50527567440616
-muk,3766.9233435857527,56.215592067923545,7.191055535088562,-12.832535975114551
-drowzee,9975.512365646417,67.67338542795764,9.661151472570038,53.13515508169707
-bergmite,8137.66159058327,83.02900052652689,-17.936728392402966,-14.461006270943239
-jigglypuff,7077.645413908012,79.07713280678574,10.906279975819297,-2.8824155054030087
-eelektrik,6009.62616074609,57.74441589331438,10.66488964156874,7.1300079130873755
-cryogonal,5652.611802376023,60.798053484043166,-14.730561001236367,-26.544491319427628
-lileep,5538.2602125011945,63.62017608582571,13.733073774252231,-3.5652240579077485
-deoxys-attack,7967.098527351158,62.77621982833239,27.176977730401653,18.094694043035215
-espeon,6035.018560867281,71.18346335413999,10.208163308279094,-13.661944558274707
-zorua,3697.5864950258056,38.6563974163436,12.084337641643721,-13.204620865752483
-smoochum,8166.23125530615,72.02401928723154,21.308323785209293,23.968199301356453
-wooper,6395.321295249391,72.2577275277591,-11.981783233493388,-18.46721898683477
-ferroseed,5256.106558906953,60.11153578790353,-7.57649784391324,11.83878015927689
-dragonair,7612.275701964331,77.29902368266454,-9.54197600919973,-19.821760717212772
-metagross,4464.0852698205235,56.3069670369762,-18.28364868662147,-17.003080931425863
-leafeon,7634.970848216728,74.44673942779562,-1.0531674768699477,29.534207750884388
-grookey,8872.539908221055,66.88420015577466,7.25350009904363,40.469735241731975
-skuntank,4248.989950018344,52.64534541964308,8.71808883903139,-6.552292554729153
-jangmo-o,7005.419255236093,70.68343116875307,4.989655159952095,23.648771755557625
-sawsbuck-summer,3602.522108616094,41.35743650525533,5.19611333836764,21.835895460680433
-dustox,7015.348490744509,62.855622460674525,3.278737790290438,29.913437538278767
-sinistea,6718.385958774774,61.27389314533415,-2.512872594806419,-3.170813686785964
-snover,5965.890733916985,71.80551793587392,-2.9401172962681645,5.560451571683571
-durant,3841.630771477039,55.13974375413305,2.0631601234005172,0.25641077380759336
-inteleon,5171.660429701343,56.56950660420215,-7.849703527920901,-3.1670283537263964
-sylveon,7258.945102685943,77.50032607250905,14.581034370482673,-4.679396672623614
-necrozma-dusk-mane,3066.7609881831527,41.75762116771799,1.440616546093622,6.303297658081416
-crustle,3659.5258987480756,47.50477725074359,17.014657040947903,20.691917730362956
-slakoth,6416.386275829547,76.58736278390568,7.695694384470378,9.256515993259528
-kingdra,7373.950458546718,68.0517789774182,-17.190035023749587,-20.022328006123818
-arcanine,8540.85433067896,76.11034362335396,23.26088926209398,30.17159749629181
-dhelmise,5041.472141969063,53.88227241765107,-9.146822206397829,7.902504817414841
-bagon,5654.8485707693335,67.10094490023066,-11.241040883382597,-12.320945853789267
-drifloon,5989.556612812639,64.77749958170463,10.384985992872199,-5.211230613040119
-burmy-plant,4254.717442308341,46.16699947256765,-14.76236665435334,26.87601772004862
-clobbopus,8267.785162800885,60.81396956781391,29.797923265209562,8.403402183981518
-cherubi,10374.16644351569,55.430556200371996,44.84485668303998,18.88940618073246
-binacle,6327.690860942682,66.65813569517795,4.755858770996791,9.325159252134613
-pyukumuku,3378.8431726642502,40.22761334349456,17.38643898020221,-3.6274088752411697
-florges-yellow,6801.996461597908,68.96457657853432,-12.113083891903754,21.159281711069102
-rotom-mow,9183.955456453124,64.55065162193124,17.168730651350558,40.60801272967281
-gligar,6397.778062019833,62.52832915609613,28.253540444284774,-22.760667514578337
-togedemaru,7080.7225658132065,79.83947797687894,1.5155749778823477,6.533503815054332
-shedinja,6638.786137471064,69.97262512690001,13.832460267470427,25.674145539510867
-porygon,8854.185108004094,67.97036755619925,-4.7127455034076,-6.736634622808676
-fraxure,4329.711038431881,51.440792120440285,-1.384748808334681,12.139960328027584
-zeraora,8069.235910448327,68.90783042715992,4.205858936218335,36.759555377697076
-watchog,8035.476067643002,60.362827311530616,34.04342027669405,27.56085778593919
-furret,6931.782973525096,72.57887494656521,19.851519635755057,23.17522319693231
-gurdurr,5321.7829108468595,56.455100010137706,24.416987665724267,4.469935875972223
-golem,3554.1517227413447,56.26091545445994,4.695996101545628,4.673307484342439
-morpeko,6240.817487068442,55.8963075276536,16.499641327870734,28.519752020512712
-conkeldurr,4637.932745266284,61.89922083432157,9.379862063876615,3.7715632755123334
-rayquaza,5113.290941043394,56.872861623843576,-15.257815861712585,19.11733303881201
-cottonee,8764.808241897172,81.0089666977941,-16.20970400823597,26.894949850032503
-basculin-bluestriped,6457.063691105181,67.47657271591615,-18.77435905322017,18.946330541159135
-zygarde-complete,2313.7923928527052,33.029118776520946,3.7545107231469643,5.649622279108786
-cufant,9097.078013482598,51.01738357324631,44.67572740276123,23.84820710481206
-swalot,5855.9429725301325,61.97991069502861,6.140993579826848,-32.54757728655638
-weepinbell,9597.65838529783,77.68269160825943,-3.912210842261917,40.359006454426236
-deoxys-speed,5182.278557349435,55.3573060121825,8.319469666548988,6.2911516634249285
-slaking,5505.024233370975,69.08726936288228,9.938665661107313,9.115277592726626
-whismur,8239.863666659445,80.62756835770978,14.190954022463819,14.8211606937205
-klinklang,6011.740773266485,71.62668027979045,-3.0193830658168967,-2.08025334805132
-amoonguss,5721.148481994385,58.96326759147493,18.106540020396675,8.41570343043734
-inkay,6476.4866785977165,73.54729799038562,2.3370175292356525,-9.617452256797593
-zapdos,8729.15653051305,73.1627440483425,14.230037300682767,41.35019535293197
-archen,8247.125952242033,61.281516376824314,36.312956855963186,14.97308606850767
-pignite,7185.921744183205,49.52643482355364,37.07747842684564,27.22397643663407
-turtonator,7542.429061333914,54.221028334485936,38.0917227863302,25.515499930751925
-emboar,6746.250515505315,48.01768971074444,26.669424805913117,26.625074832973013
-greninja,6176.154872164009,58.74676011049256,-2.906175203464708,-21.375585337863043
-weezing,5153.09496849044,64.51789438822979,8.463269733966346,-5.957394903497397
-silicobra,5532.139708168207,65.90176729182433,3.0122953643987778,19.437835153652554
-drakloak,4203.021855950783,48.90476247915978,-6.403477618368543,-3.3463489546721648
-hatenna,6630.366116904496,70.25514153283703,-0.7710909322598103,-20.299032744664
-sawsbuck-spring,5067.749739205995,50.72818144388962,22.361270672104503,25.52231691156428
-poochyena,3807.114978004986,55.601368678027534,1.0450294002314078,0.5737765817696879
-diancie,5688.292671671271,63.97216854112723,13.836666466724074,-13.002173070367256
-tentacool,6552.4683914526,67.6771272518557,-1.7275652509678605,-12.584956129137302
-swirlix,8030.523236754614,87.68075169461055,4.123834185532095,-1.663483137663371
-appletun,7920.560643644184,65.03105659736606,8.197600110699446,34.84253467372069
-magearna-original,8197.039105765189,59.51539053756894,40.63089037280203,17.859140733171134
-mareanie,6337.2635294145975,72.68295631369148,-13.040740847210303,-10.548361031580109
-araquanid,6528.206272987233,71.63449963754448,-11.53179626587928,0.9507733088640437
-burmy-trash,4984.5804477322745,56.853356330722,25.87727699140285,5.4588243165898245
-lycanroc,6255.272236848984,74.79664648970467,4.78963463963058,4.019785902711297
-roserade,6996.026837115198,66.85803387092983,-0.21707123006324622,-4.019724224843826
-aerodactyl,5437.5175356942445,68.36713040944024,5.676008163922919,-12.427792117857779
-clefable,7376.958715271692,81.92371949439685,16.637989479783602,5.440589654880104
-falinks,8965.729177314608,47.008194442636395,43.36579567915243,31.62143304552977
-morgrem,7838.038496903567,39.71035719938436,38.03197998173155,-8.99398445044033
-florges-red,6813.373714867073,60.70391696639721,8.161368415502098,7.386832160443695
-electabuzz,7923.233009516003,64.437333654677,9.769261272926421,40.81078740714278
-guzzlord,3146.552014553161,39.250276197494514,-4.787644897449697,2.7200492251450776
-gigalith,5556.043635720306,38.451847927918145,31.931243138593974,-1.031332598348732
-crabominable,5395.957554085364,65.07103585772137,-4.6463768947581645,-13.818604761674885
-sentret,4940.46787379063,57.27914576729575,22.28405315814363,15.955560875699689
-magikarp,8796.188865457623,67.67446514547984,38.68677266352162,21.98666711803906
-kommo-o,4767.457690800729,60.520410388389614,5.708507580820282,15.043525061898352
-raboot,8427.947172779177,66.92425722936765,22.138507327037974,8.456682992204092
-stunfisk-galar,4141.635435192772,46.363524294121056,1.7110279622597802,17.85424541144281
-krabby,7382.873228597479,69.8373174093239,23.131463923582892,16.829377040461846
-spearow,6734.101582802792,66.36098025163929,27.393658390550975,17.535235935914226
-accelgor,6551.284605248656,57.00534739960091,19.746566377730954,-7.282096073043253
-deoxys,9011.975314548083,64.6832673812615,34.620715731418855,22.678798817585335
-smeargle,6925.969342368816,74.05891104316254,8.232226634834444,17.335907353794163
-seviper,3530.8039394637503,47.463806132086404,-2.327970840997368,-1.4154191469808988
-oddish,7262.85235768081,57.3670650730788,-29.013072339062624,26.16373055909775
-snorunt,6895.041431066647,63.476182496810395,13.837750535170569,27.156346949945814
-scrafty,9306.161820206076,67.10315697376518,40.67677713990925,36.80381429269183
-garbodor,4518.517273860142,59.800516281148894,2.6053565002941843,15.343702441050771
-nincada,5447.42304835086,70.59737877552742,-0.1536317511475823,-0.22138724264976103
-sirfetchd,5539.330408734153,57.503071118278086,-4.871090153972259,17.97996710865337
-pikachu,11200.97385553727,81.64081993525818,14.97902327289087,56.77382763828368
-nidoking,5727.103726543098,64.45078849082763,15.226095457173994,-18.37250391867513
-vaporeon,7118.639540917629,74.9131308125772,-17.425371641688905,-12.54830490052261
-cascoon,7654.748427151669,83.26688906945309,9.239381587197084,-6.758074942852437
-altaria,8567.656187369592,89.38177095149953,-5.57130449479399,-7.548795245932674
-hitmonchan,6044.371022736881,65.82715240642206,17.448121834774447,6.463014005210839
-igglybuff,7132.569551870488,79.80807208990025,16.381615848635196,1.1780260605517392
-rhyperior,6712.057965962803,54.652680751304096,34.609654573867985,13.24066467771382
-gliscor,4852.197232849193,56.480692039105826,1.776558648561842,-16.41069398282664
-aggron,3711.7235080762193,55.56963290713414,0.2951416931155965,-0.5159956428394321
-arbok,4585.66388776007,59.434487554369674,6.315271675637533,-14.3326887749755
-banette,3679.9427979805646,56.73511768553083,0.7315646000768056,1.8278680666477363
-rotom-fan,10040.072841933956,72.4503388331483,31.110158782812494,45.27505171201549
-taillow,5025.86541919782,51.04623817537753,17.308237095737503,-3.393635974227449
-omanyte,7846.171856022249,78.51494435202609,-2.404597900878335,15.45183856489717
-tyrogue,5685.823117314401,68.14406564860907,14.011366331561222,0.15662955017570504
-vullaby,3669.974373046633,51.736868901825304,10.114621367947436,9.203826672086652
-stantler,6643.63151142358,66.95820192355481,19.34783075680804,26.567392431386757
-muk-alola,7353.094285353103,60.647342016116404,8.079536304977994,15.018754383643815
-noibat,5227.037226100801,60.699287066003,13.810410880326131,-16.713332021874447
-golbat,3828.6702251920788,44.77029736021024,7.5257747971940585,-21.396160052511796
-hoopa-unbound,6060.610523031009,56.56956877968976,20.93542640139104,-7.453393240279466
-gossifleur,12690.562519084475,66.69641140067907,39.21201253304545,45.289489173197126
-kyurem-white,7049.012547798603,69.07233671894372,13.087993411118374,0.890173826732966
-spiritomb,7122.720734398285,62.913197570123586,24.167639468924563,-1.7065254829811354
-furfrou-heart,6093.521375259139,69.51255420689819,12.32151736825553,1.882499425526333
-marowak,7189.078892852979,77.25209015003068,9.433240650748335,14.56276617219649
-gardevoir,8059.64908311093,84.41062061884612,-5.670016062499304,8.937096218872812
-litleo,4819.476850066271,57.898893597655615,14.757438055839295,17.31607619110828
-flaaffy,7285.998794739752,78.03125580836836,14.423752328935578,-7.087375076618126
-starly,4563.233159142799,56.296386588589456,10.622503908274625,6.677102359635733
-bellossom,8825.670582062387,64.47748027391162,10.922733680733963,38.92979065254864
-starmie,6729.979703473168,66.47699496236538,10.821529445390544,-1.3064626630975966
-chimecho,7247.934501831733,74.6885414357652,7.432674914419111,-1.2019955871714139
-lycanroc-midnight,5991.673691458763,60.36939301241708,21.753213446808115,4.151760085186188
-probopass,6215.960522982821,50.73068405074699,20.71481555660228,-5.320808310740165
-garchomp,4535.666282412279,46.86999894667606,6.02579796898907,-15.137855595483366
-gogoat,5067.172006087474,58.69773187648966,-1.526879242505343,12.878764854600862
-sudowoodo,5589.583995239792,55.69920461810303,10.881413323660695,24.448501191357252
-lickilicky,8441.241478764417,69.1284487680433,47.596129304470615,7.694080042792476
-woobat,5895.541491145078,67.16715676511502,-6.634703892665693,-7.865363492603378
-ambipom,7316.063397778272,64.40685234510754,22.684913483403214,1.1307127243647606
-wingull,6550.648125988716,76.68148757646924,-1.4260370603634747,-4.47495427608262
-gulpin,7007.839920056184,70.27870250477453,-15.973976737316637,32.13198447792782
-deino,3117.620641214413,45.68243214033214,-1.1643114221673567,-9.950304021065472
-deerling-winter,6587.51531308386,68.58411338842521,13.44722522679748,21.80686122340655
-poipole,6317.105900281816,41.27243226797144,11.13688586865277,-52.07707723389709
-nihilego,5899.262380931869,73.10630695487846,-6.92835832991598,-9.69564617878519
-blaziken,10188.631472172501,69.11451617149513,41.06691715969569,29.76653414711789
-florges-blue,6019.811559253918,61.938215162408234,-26.059184302468914,-5.535666774980145
-mime-jr,4779.599865587996,57.10255070822,0.17312316852149573,-11.286056980708603
-regigigas,8131.878134045121,72.66753178029252,0.4116728206739793,24.84094420938786
-fletchling,8463.91233586423,59.76602019740574,31.478691851355027,10.340199680774518
-azurill,6913.967376144221,56.1521270696676,-24.32197038017164,-42.310315403293274
-yamask,3454.407476973591,42.40404851979519,9.256521646531365,9.214839158439563
-cubchoo,7477.257100324408,80.20692885868253,-13.302442556170885,-16.53479533485281
-cacnea,5884.635587897072,62.14931395933368,-13.05251486074061,29.44079402888373
-rotom-frost,8526.440194204726,60.776542380482816,43.74483836056979,8.88086380757267
-linoone,5468.6606326355295,69.9955839843655,9.072233969508247,5.443299775080762
-lampent,3138.2930825824224,44.00265871134033,-2.278006369789682,-7.271099062401348
-litten,5274.933172614988,43.43831442914485,25.105826341650726,8.759469428547606
-darmanitan-galar,6564.136569292371,72.11188320764764,-4.78330345085967,-3.0463424184866525
-chansey,7170.675719824095,79.33511106810754,20.771705354815,-4.503974651836513
-corsola,7488.38903947159,67.57152071119229,43.49394862914135,1.3074614870428611
-rhydon,5503.879862033289,69.48414941450926,-0.9806797244890838,-4.739406054305135
-flabebe-red,7998.5447615568555,67.21657776658466,18.368352153811646,18.97207541304423
-chinchou,8395.688729993475,70.46206358078182,0.23012924034584253,13.252064703951902
-monferno,8824.638929303635,64.71019945599375,32.129873683557726,29.83770622189881
-basculin-redstriped,6589.025733170299,67.77445711469022,-13.426818176542248,20.598591117838765
-xatu,9335.367522754294,67.2738902856838,7.660007303706508,30.21462304545348
-arctozolt,6306.144849284483,59.44511726071355,-8.646395301674731,-3.7955654099239964
-glameow,4552.0247258418485,61.87704971787569,-0.568406010479561,-6.719467539633773
-regice,9014.917511015745,78.59917652175005,-29.929796682916745,-32.33673890331164
-sawsbuck-autumn,6781.81202029437,50.44023285077663,43.713682858588015,23.528147086065132
-lunala,7095.224502861704,50.66934444172797,5.653983335837559,-24.741557555315737
-pansear,10720.269038155575,66.89045444810449,53.17322881347727,32.63666059186314
-feraligatr,8432.157754894995,75.09171609600354,-19.931099875006804,-14.813030601702318
-honchkrow,4098.50487239486,46.80790552443809,-5.019929100919003,-15.616121818371443
-beheeyem,5202.180603162249,60.71204047250602,20.492695078375963,14.633334933000496
-clauncher,7388.59210075138,72.78195503521924,-20.6901441877261,-9.345870622147629
-noivern,3928.9089886633965,48.398057979934286,-4.681102547585507,-5.054763655214126
-wimpod,4815.215080757667,64.5924027856888,2.308901244156798,-1.4784339075357562
-tangela,5212.939175605678,55.71700465125881,-11.062504801866213,-17.82831166052151
-rampardos,3710.1772614376346,51.181265699397706,-2.5261239071933064,-9.163097524943515
-aromatisse,6693.571560145857,64.9059530313948,38.258703159377326,-7.542930372296591
-centiskorch,12341.935515954798,58.53637576177003,58.47637919521271,32.5783445567804
-rapidash,12704.579948466688,75.95379507521307,43.44579360087575,46.10153790328491
-blacephalon,6470.546867927519,65.84141603038275,-0.8871253171219841,-5.003287497252312
-espurr,5247.995425325003,67.83814474561375,-0.5997664881333173,-17.640571766702614
-voltorb,8445.688446832017,71.88992377922521,39.86347004926524,10.985407052335836
-volcarona,7373.881545009764,63.32918024566373,28.715142253161268,12.345117996661752
-type-null,2722.968379917043,45.03223867840677,4.4045912726685605,4.117520201796523
-mightyena,2949.7868115905753,46.648447125622454,0.42826580708791817,0.06654223162156694
-finneon,4912.017801659712,59.037179103809805,-0.4584031081820023,-6.111197914969362
-armaldo,5483.607273370265,59.56095150328632,1.9923660486509944,-7.003620126796628
-gengar,4868.293075302457,56.36756837008818,3.403853092854822,-31.983939087365474
-sobble,7842.870836626097,73.47525662301388,-13.069780325875655,-4.994612271897701
-sawsbuck-winter,5774.870345692307,66.3763723329975,11.311965075801794,7.854902884505258
-arceus,7197.444399608046,76.41662489855773,1.9838063834022674,9.242606615126295
-tornadus-therian,6289.692867383023,55.946018582132844,-11.313868216843773,15.260882018624699
-pelipper,9353.829475650271,82.42350980755486,6.668976852474857,28.889111625023794
-grotle,7477.7571466645395,60.42718728782912,-6.863128965005007,46.24927796583358
-wynaut,6430.433198986731,68.81726537283124,-24.21204225434158,-9.660197814015097
-scizor,9125.935839881424,56.06346939242153,55.96265481142053,12.19725707366126
-beldum,3642.937214574879,47.71495000057076,-18.691241068961574,-18.571125355651105
-cacturne,6714.822095948285,72.11486171372698,-12.156181539556915,27.605018570016153
-salandit,1767.6547347954088,37.29126193638149,0.03925926869383921,-1.6678808030919199
-magnezone,5057.487114990398,64.02023103484628,-1.006627953952644,-0.6374267921281578
-wobbuffet,7795.498585639713,70.60880288618064,-31.393974323453364,-36.72480789204276
-torkoal,6905.996305218158,68.84693358365242,24.382244675132036,19.571722386301705
-metapod,9153.499152348246,69.26771355643075,-19.500410317752305,53.83259156336224
-sceptile,6351.076856969242,65.64017308857292,-17.809167376249324,26.497935707251482
-gabite,5760.201400286701,51.79869818697226,11.080816867575674,-18.655399377456963
-lapras,7762.360525430644,76.73690739173279,-14.17785429032974,-13.94244640759997
-slowbro-galar,6275.91531780499,55.16750898605811,31.468349348817515,-6.528967422700903
-hitmontop,5906.912614992743,63.291113142708014,14.012599919557548,8.98992156974443
-kecleon,7535.447811249502,71.74926635928949,-0.5275542626427909,39.12780252205958
-dugtrio-alola,6088.441767538535,63.38714053831338,11.765872614574672,25.02394788424902
-rowlet,6728.102539155423,72.27520245611383,11.148242344028144,15.24653938390528
-flabebe-blue,6873.122811742177,67.28478566125332,-8.725379960251903,4.955238773480742
-cubone,6931.610931272425,76.02360579219304,8.850014493895806,11.731796068566961
-barraskewda,5361.784420174797,54.0255314683203,19.169051189691537,12.447760002813636
-marill,7645.95445938658,66.39284093078766,-10.10047485532306,-25.51057342516155
-pumpkaboo,4403.071218186134,48.507245114823526,24.20221481524727,15.910266390471905
-oricorio-sensu,5983.333853195153,65.83299860589699,-3.072596944616432,-29.510878210999653
-lombre,7145.690509676854,65.9302811306441,-15.253505844753873,33.23363767175202
-rookidee,5283.374201140416,50.41430850652676,1.9616756391941277,3.2507586949262595
-oshawott,6976.769662850148,74.86892388306666,-5.698739754515885,-4.5502649911135205
-tapu-koko,7628.295821502865,59.288679715576045,21.59736591151692,40.13953336461425
-perrserker,2883.4665976886317,42.91609081064454,0.8970929666181182,2.082955039254709
-yveltal,3265.9045591001473,34.68850000370755,20.773519141358264,1.410228182854298
-moltres,12194.237089534841,71.31232711507828,46.13098366977256,52.45317303470729
-scraggy,9791.581044777633,77.05434841589738,22.371613591562014,41.13423569874924
-slugma,11473.344703274579,63.69376602829457,67.01950592905874,35.20322856976668
-mienshao,5893.6743425816,71.84184053256384,5.902347262329913,-4.715164099052827
-eiscue,6863.080164336788,73.12191705378383,-11.81081904758566,-5.386981503773979
-spewpa,6423.07473510383,73.6430489304317,3.320549530024914,4.990847678227064
-frillish,7302.901258689153,79.06520763928454,-20.213266496579337,-11.542780613594733
-yanmega,5091.240956554011,55.065205088995235,6.735746896205921,12.845336821832834
-doublade,6006.0617767278,65.93185549252826,15.267828042667073,2.974041074656126
-staraptor,3066.6830080347427,42.58412179855877,7.944312455998395,8.944745190451767
-tirtouga,4030.9690120963255,51.31206590846839,-12.342454895929038,-23.392179798981495
-sliggoo,6887.845079804786,76.27697223916587,5.9880980940478485,-17.418047507655036
-luxio,4392.079979873772,49.592919703475154,-4.319211344323341,0.21994644469064742
-lanturn,7980.469095582236,70.98560979159164,-2.105581845565558,-1.7840898080337793
-amaura,7512.875234509842,77.5917175913565,-15.021687341217312,-13.832532141919504
-huntail,7252.367163324808,71.2748088726904,5.588173079546525,3.9385101250070806
-wooloo,5965.620011166606,72.88902674815836,1.3459091616689678,0.7870356928629008
-meditite,6235.939350908633,73.22952351239472,-3.8714462328253005,-6.72919164902265
-gible,5022.03215025916,54.136205438262074,2.1682043980688706,-4.993928456163154
-serperior,6208.356064130112,60.15536567735819,-19.284293529788066,27.750136288932506
-wormadam-plant,4363.098409461343,47.775691877427455,-17.942643871032782,24.599877396733028
-sandaconda,3173.270625381231,40.14713820295994,4.531352092537055,21.417168135963003
-florges-white,5980.453720776837,69.45409667382411,-14.611177700716931,6.565928773586652
-barboach,6071.91559540942,68.96279631348794,-14.371069164061216,-14.523270240263146
-komala,5601.046118532162,68.38448188530474,-4.314833423840775,-7.169386299910153
-vivillon-garden,4144.726636633126,48.42433203373882,-21.356506675682574,15.448036921281751
-orbeetle,9353.86805652442,45.85494671154311,40.20316632915767,3.8380003121158155
-mr-mime-galar,4828.267820978772,52.81248313692741,0.5724139452778292,-15.82898201398416
-fearow,6871.1693019255745,62.03792295249987,31.917311374252336,30.35076830423546
-keldeo-ordinary,8630.228519171542,69.3496166659877,12.866700565580386,8.11029433027756
-grimer-alola,3958.684951909378,54.05077601109416,-17.6523170085249,7.74919049752791
-nuzleaf,4473.842108655831,60.38841827775805,11.803447905250321,10.716985271271016
-minccino,6660.414364150012,78.58136310517754,5.485132836575312,1.4153358445267532
-sandile,4623.201704681333,52.379075549560035,18.22197866754918,21.877561138890595
-swampert,5960.410457828435,66.46364941730991,-14.719165013089468,-13.085645704806204
-slowpoke,6934.606160175564,76.5261247446447,23.66946856357396,-0.9725910336308452
-bewear,3869.9609419151807,52.90672381152933,6.010133301230098,2.323196484708112
-ledian,9015.688333644537,60.33537681916737,35.83388406052244,11.122380572514343
-marshadow,2426.603876551579,43.45130971606405,2.002332961231949,1.7233563863203558
-klang,5453.42361413997,67.5495483741816,-3.012879877423246,-0.7835015669302845
-liepard,5733.223473830001,53.53746961246951,15.555117166413108,0.7649174268255746
-piloswine,5225.439486194653,56.59081867902599,31.51188380005483,23.051464827605887
-giratina-altered,5582.597842431524,56.83166462914426,11.004093670239754,14.66385697786073
-vivillon-highplains,7859.892935678209,56.18875196946135,38.828643624506064,33.30516937141481
-snubbull,6921.026050950596,64.07305773933794,35.553481465496176,2.658830136921069
-hypno,12550.94597044804,82.5196893722137,12.981992896946409,59.382386412409176
-drampa,6439.067985896471,75.04180019420599,-7.3006953201671765,9.255790729994052
-raichu,9629.516217969105,75.06066264229463,17.877462847977,44.72457087376834
-deerling-spring,7491.993728739392,71.67639029986354,20.90878120425747,18.57314698263018
-girafarig,8546.279343662836,59.87938218810442,27.902826959490472,37.91463453682276
-ledyba,8034.958194262497,69.0937297534653,21.53013762565113,25.07030727346024
-fletchinder,6803.272738964627,55.60105963588151,24.511482465541853,14.71302132129187
-latias,6581.1770225647915,62.969369668634066,27.84584058242095,-1.499407684471793
-gastrodon-east,6937.076800714143,62.56259368256089,-29.2025864127756,13.356761995046131
-quilladin,6932.0277753679065,59.497082202951425,3.7717803968057626,38.01623680634572
-loudred,5616.795346330686,62.211394989167026,4.8602272227361505,-11.91285456130576
-frogadier,6302.638008315489,66.05548492426217,-18.868345971900702,-16.1971072133559
-joltik,11539.11244228409,78.14635865237183,10.312415177213868,52.69184436626844
-farfetchd,6930.342877206134,72.13407248377642,9.624601106079098,22.423257391344958
-grapploct,5914.043749600236,32.66031282906154,-4.001141139285643,-34.02745459033758
-mankey,6459.608798592636,74.8048962240294,12.156207587027398,11.391649539953464
-zigzagoon-galar,3172.3772881691466,45.110426996295494,0.32406721237414043,-1.2714958108355203
-reshiram,7181.496696851354,81.37677065690119,-0.8082725639079104,-9.131170428053808
-hitmonlee,5222.49988502601,67.41386601067205,11.464349093299042,10.382947820404922
-bisharp,5947.539462202516,56.592166612947125,26.055774624170407,8.598601956735305
-gastrodon-west,6377.712948173414,61.38784842262228,32.44078282492817,14.910432737937594
-gorebyss,7114.757003049948,77.29557576747537,21.655952031373012,-8.006720918323367
-entei,5819.426938598095,54.026109056478354,24.13335528233226,17.78950321220719
-bonsly,5734.040780267817,56.77860427877694,0.35840584140006443,28.44238756571514
-clawitzer,7306.146133825742,57.16790501091297,-13.636389443449572,-31.505078873116172
-machop,6021.069878393535,74.01880580285999,-11.16821654126152,-4.111051120344719
-rhyhorn,4661.551441094492,64.63107118475027,-5.142987776049859,-11.383961167329524
-thievul,5832.476299839544,51.58793286307576,26.48839517639885,10.149762416778275
-groudon,11028.707548880988,52.16770761752362,58.85731066277655,15.360632614945281
-polteageist,6762.363443418712,64.54893289612559,-3.556281676239752,-6.940322898226264
-thwackey,8415.04083070802,67.03701695166771,7.552344783436563,35.25241366157454
-zapdos-galar,8002.935506596761,34.867264799545296,54.12483954329735,24.468729769606362
-shiftry,5798.429711074501,63.10569611762843,1.7602841814676806,15.903583036685871
-cranidos,4666.579194752169,60.32879498666725,-8.89251420737423,-15.293984021945791
-rotom,9255.424617207822,80.7796045045888,2.5603294880352188,6.0758807021566446
-palpitoad,6140.850429882699,61.88543089422651,-10.48247770196379,-8.650259320660338
-meganium,9706.275626108529,77.37756673379336,7.7216777271902854,35.29260342637161
-kubfu,4810.171462918629,61.137249462195356,2.4586130954316823,3.5316003812778916
-furfrou-debutante,7076.7101763881155,75.49828560542711,6.92419157122081,20.703963742530533
-reuniclus,8185.807412277484,81.94696569830138,-14.558260846723229,25.929350374847207
-luvdisc,7696.790993426671,78.74903438420318,30.541810586618272,6.804272820035957
-heatran,5378.972527500606,56.920733740575685,18.72108494095018,8.590057545456116
-avalugg,7120.94318876557,72.98434456376754,-22.00713866730798,-26.606901029690505
-rotom-wash,8405.710370635907,60.42825504156873,17.27273317610034,5.294912117491929
-exeggutor-alola,5224.909016812275,65.40682690413085,-4.584516400296873,16.97407716741885
-omastar,7464.809344619422,75.69657223254532,-8.693356652185908,6.309368890366448
-toucannon,5608.624219201208,54.77429473438663,15.717188648121475,10.605800484857202
-doduo,6673.453095399586,66.50169028817149,24.96256369392139,23.75223525464806
-diglett,5153.841121792595,63.92965113201842,14.856319643183223,13.74793767364279
-gothita,5468.683844378527,65.26595605836994,7.510468840527336,-9.918286666500835
-surskit,6554.986800933737,68.83228151368272,-13.035628842966299,-12.409159775524682
-azumarill,7168.175327550036,60.765043746012815,-15.995749860418975,-32.72718353830382
-alomomola,6651.3686616526675,70.76824917457395,31.03418574715441,-2.9367951195954807
-barbaracle,5329.6583613306675,61.13565938411046,5.0576766002737745,7.410357190149712
-carkol,1456.8821755130243,26.542709604976274,1.979625185205301,1.3782578937238883
-cradily,6831.304174237845,70.75278379072813,8.269738000224855,18.54460144873093
-necrozma,1318.3496108889724,27.63093117879643,-0.6865937677179028,-2.3649342487612426
-suicune,5484.9839881587495,65.85436200122102,-7.958293371572342,-11.608183440115146
-haunter,5254.702201889108,59.43662163196766,3.679489525223326,-33.39613096967648
-slowbro,6801.703398466222,76.16613800869474,13.605126765700486,-0.9088853093468886
-solrock,9794.946842430032,69.28334860726738,34.647033630039324,42.47907548623493
-infernape,9483.505244174992,63.88431344831641,33.81964281557364,22.79404627876994
-slowpoke-galar,8537.731027471302,62.00822013512004,46.77726394911189,10.425179703738026
-rattata-alola,3090.2194555286756,49.75386679568413,0.7824254582447399,8.633369614630302
-swinub,5061.801570275077,55.87794932759115,28.874355774423467,21.344809384597337
-shroomish,6736.432270820996,77.06535029673806,4.386972306119533,13.691802657058274
-dragapult,5474.479888847465,53.20710479461205,-11.60591282765021,-6.553659569778466
-stoutland,6003.133203690277,65.25873824159572,5.810217775517709,11.770523027646831
-shiinotic,5775.060222329209,68.88667164160181,12.834673115201717,4.468566704317801
-deerling-summer,8411.875113090375,69.17632894505203,-9.515318574496645,38.293803444853744
-ekans,5550.523883892706,62.82452988546017,20.648063579182338,-21.60527153202672
-lickitung,7156.3268713312755,77.40287252368411,25.058991504174845,4.056445161141061
-anorith,4408.317382947961,59.84789018241932,-0.4368782305634463,5.558773285485048
-spinda,7974.5112181664945,72.05561765838551,26.23219956414045,11.349177147317176
-shelmet,6114.683102313881,63.480580943552184,21.124148049354204,6.591695424239888
-dewpider,5776.988824830345,63.37517144335836,-10.238946353169196,7.45039170840327
-porygon2,9447.749841260922,63.209719132403855,26.98676639676156,-11.814327575602915
-chatot,6011.105641865586,56.06020384978528,1.092845822984901,7.026003695454873
-sealeo,8026.474192843189,77.884556286171,-11.560641835896607,-11.445532369368527
-zamazenta,9228.60038433947,39.25835895998909,39.31289498769686,-17.69050574469836
-rillaboom,4795.780368527896,50.64923632611788,4.457271771827785,23.42585146039829
-walrein,6209.273679430944,68.21911929143987,-16.320346189183386,-16.51682542942226
-ninetales,10929.170109450248,83.24368789562031,10.727016115838946,55.94129677681509
-darumaka-galar,5785.53039546262,63.37486829310377,-9.061232866664916,-4.785110377323124
-shuckle,12094.579471344521,73.04160288344885,37.77647102917757,48.151856185754895
-aron,5912.071733721929,69.33608461744134,-1.4003833318340912,-3.0874119623542535
-slowking,7261.091661418387,77.37996868901013,17.63327557350831,4.489741341977883
-hippowdon,4775.862462987665,52.165555093428026,8.327712731477813,22.990361080633043
-typhlosion,10256.906997963924,82.72174676140285,9.661184408066122,45.021801171262084
-deerling-autumn,8875.098660851567,70.57754147964212,27.024327283964695,34.053105004695
-zacian,7399.263301759434,44.927066328508886,19.918165302400986,-16.405971376742276
-indeedee,3741.504833531382,44.56567083882528,2.3639167344362084,-23.929965910384734
-articuno-galar,5305.731352561634,46.79584736070139,4.4869538133839875,-35.25502536133707
-chesnaught,6148.9558633701445,67.56799995444958,4.689913227405598,19.358329681019352
-sneasel,5007.804741558836,52.3989827736392,3.205163151017316,-11.049380425390659
-vivillon-archipelago,6007.075020412828,48.459356409306054,36.500323562941254,19.53499863056239
-carvanha,7546.980274337066,60.75327778303991,21.511139770552106,10.839400670807235
-kyogre,7515.972629078474,57.482877440236294,-9.841684140240249,-41.1689168968785
-trapinch,9377.27073800745,68.68354793052316,52.131096823884455,31.167574045979922
-deoxys-defense,10192.429858169577,66.89695127754514,45.17568391169727,30.229404721626906
-krokorok,4969.347241773193,54.011688425596276,19.814506357692565,19.546221530432657
-florges-orange,6559.315701415439,65.1151926121558,-2.503568149359611,19.2252655785397
-thundurus-therian,5740.071804765376,63.461534403579904,-6.1313199095069075,-17.687555139683692
-tapu-lele,5351.467133227914,53.76924811507953,32.31814959898407,0.5275162752776358
-pineco,2462.638822489471,40.81602135843051,-13.69016971015919,0.1723811959137606
-vivillon-tundra,6642.62137471543,70.21042172193214,-16.506785344552146,-19.695512130351617
-ditto,6976.80413619864,77.13774689040736,8.907052882930593,-26.027093313689743
-vivillon-sandstorm,6025.935113944077,64.03883493045556,14.070347214490026,26.314463298878
-misdreavus,4752.8329606810785,55.86249247453427,-12.429755223346392,-16.44849802383813
-arctovish,6415.611458911061,60.92437361077984,-14.72341364958864,-34.84947521482782
-rapidash-galar,8698.245455514232,64.94152613084569,8.625654995160204,-23.498715288008942
-weedle,7576.145625253161,70.56593425664681,23.392785012734688,25.28175725504287
-pansage,7963.372302740932,68.39697876858506,-24.443574403993214,35.84646722453494
-diglett-alola,3756.9955317200197,51.813632117145346,11.286052189703284,11.178132909171131
-venusaur,7285.55823208281,69.92324705248656,-10.56701733081061,0.6884402337546598
-zigzagoon,4460.440495896048,61.51429477713754,6.363512001701433,10.97682603058763
-kyurem,5830.836547067821,71.22445414938157,-7.991643108581941,-4.277100531019165
-stunky,3620.4920312375984,47.30626129768272,7.53104495709554,-10.10233452414282
-whiscash,4893.872687294448,51.708411900826576,-7.051702786147203,-13.411084116666027
-noctowl,5363.893251085177,59.454937132210794,22.923404301692322,22.94885052142096
-decidueye,6394.409643909227,64.314498362243,5.428289543721475,25.417369868795827
-mawile,3937.4460795147083,50.323742135723535,2.724943057612436,11.662189952193135
-lugia,7315.32979694859,80.11570776526955,-1.7462716866531398,-11.059228402907879
-farfetchd-galar,3514.2132895299405,42.068170786448974,5.595648013987112,11.262886056217438
-furfrou-matron,5581.696412644793,68.02409744654935,14.873848417705847,0.24785957869732936
-lycanroc-dusk,6784.0577021787685,66.20991325953479,13.312935677437414,12.353679524900855
-wormadam-trash,5598.362157402488,57.714639504005746,35.3099042282224,1.0466342642095385
-pidgey,7239.813828144051,72.12646364229549,12.880246607793044,28.191849480262967
-dodrio,5439.726414789128,59.41862455953593,18.98511971243473,18.330862874575836
-chikorita,8448.252427040376,79.30871183424811,-7.213155848559767,34.54376339758644
-lopunny,7652.003662719058,70.97625653053517,22.563712844791297,33.729332612538606
-tympole,5743.650966911803,62.642983368357626,3.863836509999186,14.685618840350644
-purugly,5297.148781400324,66.74966411600153,1.076720877113727,-8.11214434936768
-tapu-fini,3931.476953991838,47.59768156975083,-1.6330636982559095,-20.851238983181524
-vibrava,5657.42341794672,57.645363115649864,-8.80868839402314,20.280194137016455
-druddigon,6178.660441763185,48.529478997615065,3.218878033188542,-16.79184492839182
-stakataka,2549.1670660627074,46.812255025510396,-3.2997190434007146,-0.9891817728544627
-delcatty,5926.4950452566,65.20538065778568,17.999437945082146,3.59459875467404
-zoroark,4053.6317751764154,34.490797654270416,25.06980610201041,-2.0671355320097184
-hatterene,6859.229560746249,70.62417282357394,7.385711445109003,-15.766429049353388
-togekiss,7820.664039133523,85.3641798955123,-5.29209708739886,-1.0853070124013504
-musharna,7343.1172857108795,76.00843991362139,23.961416156238993,-9.564053372201368
-frosmoth,7298.53248717422,81.66695887661137,0.47150128723380913,-4.625018621685796
-elekid,8971.153563517915,69.725088625319,11.939497993769072,46.72944883792658
-poliwhirl,5414.838328268756,61.47956475039839,-6.26861920718321,-17.704898529858287
-meowth-galar,2955.5440243500607,44.912610818835354,5.700879028320824,4.880492796319252
-quilava,6153.561319098896,62.295121614888394,-0.744748419899319,13.348989842180755
-dugtrio,5567.998107350587,65.36236571209551,18.014883948250446,17.39390016515322
-roselia,7175.752401047397,62.84441281354503,0.2371810672312249,10.686841439523594
-phantump,3290.259031085245,46.19637979322275,7.308550604946361,9.759922955000402
-butterfree,5618.532050426843,65.23256561045248,0.6475116734423161,-4.439117277984516
-metang,4372.404502399551,54.31326880782894,-16.69546539869574,-16.526310212337645
-seadra,7169.835988905203,75.88687112314157,-18.00941127000969,-9.658961415695018
-servine,8679.516598061355,73.6809395020116,-7.9783855772775,40.065695446578296
-dartrix,6490.31566289601,68.5578809141968,6.087009875677035,18.12803571936792
-paras,9214.75575758292,68.46479053603656,33.00081294801634,33.09535787410627
-ralts,7642.004175172195,78.15679159247074,-4.119013153397929,12.629620202071532
-kyurem-black,5561.083936277516,64.20572779441864,-11.992062054476383,-11.803068236639824
-octillery,14102.206980329554,56.04896898715527,89.95976710774885,28.426890550244142
-poliwrath,5507.2375478563035,61.4394483852652,-7.6503464688902705,-22.035604249840993
-terrakion,4539.670544337149,58.408441277185105,10.317214576030327,9.372650658496056
-swablu,7867.373209006849,83.44006443117358,-8.628902893170272,-10.333554800920206
-spectrier,4116.622122095159,33.876054869744856,1.1953809039925947,-33.841147715848074
-magmar,12078.237825260363,64.82014980542469,50.78111107866956,40.60126596910705
-cinccino,7141.609507792121,81.75835976580214,4.2400187918171115,1.6503222728306268
-boldore,3486.7316594011895,30.29655247223403,12.842492353709568,-8.309369391489309
-drizzile,7169.543959915356,66.56449777452528,-19.46636349622065,-9.512264766087366
-mantine,4914.713585955942,62.46510013251517,-2.429476294476541,-13.482179531550567
-boltund,6763.002343099902,68.35406587124754,2.1293527816797173,20.07578391685364
-milcery,9180.54204829115,80.41546141175573,8.979578560538213,41.01606759017984
-tornadus-incarnate,6658.446698569286,66.32066129077053,3.0896821506655563,-6.020246246589575
-zarude,1944.619865561264,29.889564387946415,-4.391579095253628,4.757328923708862
-glaceon,5903.196204283719,68.43669625582594,-19.276163681281567,-8.493128278162652
-pidove,4653.018484066886,60.68172369280333,4.1563817077474665,3.9479283288665457
-skarmory,5509.173749434578,64.38618115054236,8.255716105630032,-7.052028315355659
-salamence,5749.8793446232,55.447091371655645,7.8074040558469875,-10.487733383611578
-jolteon,9395.227785118826,74.81335022274028,10.189139974868596,37.76635474433267
-tyrunt,3323.6360102504473,49.639761494277266,11.391026301224132,6.490684779782865
-eevee,6935.199839140474,59.94127927989686,30.950209774815537,31.50345018944532
-nidoqueen,6349.031884743608,68.62516011856115,-10.290870237341315,-13.723799233153553
-petilil,9596.687357129986,78.92239211741362,-7.790590035493919,43.31520817466532
-pyroar,10551.015802160005,60.15992471662909,57.89344231255241,30.917769587601843
-linoone-galar,3438.1417935855125,45.274637307714826,2.4564344220312835,0.08657836156303775
-drapion,4985.502587094308,52.938951660283614,23.016330674061678,-22.989319876189874
-alcremie,7432.9718926124815,70.3069642111898,29.555857787949122,10.012433263379675
-gastly,3005.7760960428704,44.29122350152015,6.077656166935812,-17.059672140308642
-toxtricity,6976.443461710503,58.32266541831449,9.09328092459363,-7.100855332212145
-lumineon,4113.8639752452555,52.9819518134857,-13.966449292387983,-5.719354679361516
-toxicroak,6734.081237600647,55.78479210311474,4.250584081021216,-22.665818468593375
-machoke,5467.490062964948,67.76488866778743,1.3562786726168612,-13.23072209005808
-darumaka,8912.59840886985,54.85162186738526,57.344548674920695,24.307574165068765
-swellow,3771.4700724922327,42.752783388037805,9.36608074680444,-14.695091182966285
-mr-mime,5951.012218411208,63.6797491872572,11.26538381937604,-8.30035965942229
-exploud,5768.686616718313,64.1129925082973,0.6718645317970755,-17.28381039717399
-floette-blue,6325.715494013534,67.65060244411801,-9.496043309523296,8.063978950709027
-pancham,5053.681412970064,60.704529977400284,0.5510408995655155,9.352626566046046
-growlithe,7951.296349959247,72.63279482307672,24.840648177242116,28.39601865005172
-mantyke,6358.845985873937,56.627945373869565,-18.1402979837289,-38.19474455019451
-pinsir,5334.972065469288,69.12277340961491,6.270696497613805,2.0883151387877086
-spinarak,8294.583508447648,69.02144028498414,-0.8669420715477464,35.34284462492867
-duskull,4595.0907123385305,61.091979015937774,0.5547239913724008,3.594682992924897
-mudbray,4441.679547291738,57.14048394760377,18.23558995064041,12.340652373261996
-vespiquen,8552.571288060475,62.58215397449913,19.74089760871834,40.82903928846524
-ferrothorn,6292.123251730112,64.9030792448369,-14.488414336730722,17.779654516984287
-dewott,5883.641786647897,62.78404443480265,-16.421685624937332,-13.978114743252387
-crobat,5253.248075236744,57.33498833382977,-3.7793431335874628,-26.780792578219163
-cosmoem,7900.328660368981,64.42907960966754,10.499733610101028,31.629525669021643
-tynamo,7202.188426896806,81.6463358105173,-2.5243965195754954,3.056793010998007
-rufflet,6890.966074080113,75.11426935681128,4.580494922708685,4.0171201858315
-calyrex,3274.314730768704,45.347019169287876,-14.932838515033854,1.171204338597282
-exeggcute,7181.719108170737,82.0328746131709,11.142047086420243,0.38110126935253863
-clamperl,2828.861308537714,36.503286450331785,-5.631779762756103,-13.569177152174092
-bronzong,5289.713778785966,61.66555818128976,-21.94981291752267,-4.966282386958965
-jynx,10151.657889258759,66.90976564323168,48.39137398254661,12.967678841726222
-uxie,8070.366189398925,74.81805563797766,4.0225871306831635,19.180299447022705
-foongus,6866.791367189958,76.69105831309098,5.9982376271837605,4.88971911865918
-yamper,8812.981546136238,78.40687519828634,7.883724710285558,31.965965727444004
-nidoran-m,5519.535569902598,62.88878969084267,12.58802693009141,-21.593174792360305
-morelull,6012.592127787009,71.6497234164899,8.117915074970306,-2.0789183316205215
-luxray,2341.295121431639,37.34426418558335,1.2145667106492866,2.2765747441608477
-mienfoo,9491.501906636197,71.90915076078642,30.856642733343893,30.080761959774748
-stonjourner,3145.297393887108,48.88281531761375,3.396285226199798,10.8367015805881
-blitzle,3628.726782090459,52.41658672191593,1.045768896452171,1.184337817693151
-chewtle,7318.3016108061765,72.68022703288345,-6.427180914963006,10.965377761943571
-toxtricity-low-key,5797.508372322873,56.59502062811162,-0.7223792984076198,-32.54812609262225
-flygon,7072.1935511251795,69.07448189734282,2.033599135353521,25.018023206272456
-manaphy,8297.664159395641,75.75493302029538,-30.829453219899545,-18.859617087427562
-beedrill,7850.143883904591,80.76846731437614,3.1412990831035064,5.392380291703014
-treecko,8500.484734290985,72.82884173002495,0.2866851913059708,40.438872741913165
-mudkip,8154.939772003114,75.18793375967225,-8.737186323809846,-10.969684288846254
-tyrantrum,4955.819213212854,56.65469064179696,21.30895302527248,7.633208530407445
-gumshoos,6160.93988379073,63.95472346023278,11.737435103800061,31.20604790580741
-impidimp,8387.484306441505,52.81204980759739,50.73139870974736,-18.11968925862776
-corsola-galar,6347.189304298121,75.42128197226083,5.16570728284147,-7.961012787507417
-natu,11476.697312726346,69.27310437726769,0.9785604635230437,54.85636101115091
-vivillon-meadow,6091.001816257151,53.95825210992834,38.630118649590145,-10.207010854109942
-rattata,5496.7677060149035,64.67378371904358,11.45401964067501,-11.904991821604089
-pupitar,6625.978534856023,72.16941210320485,-6.030373138500781,-26.662970779651356
-phanpy,8176.069883277363,76.74396404388963,-14.263734919467012,-6.388327224661311
-keldeo-resolute,8112.767177868822,65.28906288136275,13.166227535250783,3.009893141437794
-beautifly,5908.797810498411,58.604491286553625,10.182374211122568,13.184960298576636
-dusclops,4493.416974309651,64.28172581849806,2.5854192073867637,2.216068206637706
-galvantula,8771.6725881769,71.37794334033057,10.263525843181744,33.404116246739896
-masquerain,7900.300482668928,78.03488684628056,18.345058771990868,9.446599940326859
-oricorio-pau,7412.804749049455,78.99614853527187,16.531248192797246,2.6370737915882745
-relicanth,3438.2673699087254,52.38996428053978,8.346716263935303,10.93003756544535
-zygarde-10,2474.1248466790107,36.50080927766731,-1.25808992173513,11.815673986027155
-whimsicott,8421.791873458797,80.37676791924451,4.486513765157643,33.90705162915057
-silcoon,7675.2037793610025,84.84569669471553,1.4134639714868884,-9.62001146365815
-obstagoon,2349.181945299403,40.4074507858561,0.9407979688523814,-0.968331709749142
-vivillon-icysnow,7004.573547418078,78.53375335655825,0.11706268512606167,0.25425660145282686
-eldegoss,8376.01897938494,82.37904648333836,2.898684509774709,17.325236870879472
-sewaddle,9691.258520075167,70.64955266138256,3.721723945758312,52.046973987485124
-bastiodon,4040.5448836906926,58.314363576759284,2.2852592418443822,4.204620737649641
-cutiefly,7546.459860022558,77.61925641878307,5.595932246039582,18.136015075907558
-wailord,8633.912780069977,74.14842230822235,-26.361506875604977,-33.84888533055699
-baltoy,7378.046229770092,72.90096344026284,15.825404903959516,27.917270230443307
-onix,3537.496109944389,56.45432934238532,0.4757998777155216,-0.86941787234149
-abra,11705.281682295376,76.03789711967973,11.101134142792569,62.20417831478192
-xerneas,5845.468723951225,62.16733400474598,5.262712031133131,5.022870249585175
-psyduck,9544.704301139034,80.72523315217781,17.09265091194633,40.47475139516821
-rockruff,5297.897735909284,66.04332013432662,14.271626668278227,8.987704091871043
-dubwool,3928.5455509110598,55.369702668305024,0.6536571333164175,-2.3366841152463174
-stunfisk,7325.143205200177,63.66104066495873,26.913357222332284,33.02014153107558
-sableye,4868.698328311998,51.69892941877073,5.7057639338277975,-34.14519757315405
-eternatus,6746.956364955725,24.83680997442962,27.493326020971452,-27.40792541747084
-larvitar,7231.434242582174,67.8433954302848,4.0892132447126395,32.144100702340864
-meloetta-aria,5425.081206107804,66.08111923220551,-2.31795982718561,11.551006339438384
-venomoth,6535.029358645696,77.07320156754956,3.9565734616910064,-10.965656315104212
-shaymin-sky,7929.658983353201,73.59328044330424,5.095590297183301,14.469585570724899
-wigglytuff,7077.83138855404,78.96595092001596,8.630183570457342,-4.160235211426239
-dragalge,5014.238420611137,54.774797429112844,27.71930248791421,6.411191800604219
-toxapex,5312.116674531491,63.05758745692637,-7.809614951790516,-9.049956010564399
-cresselia,8439.64995620227,78.73996830201874,20.376082907350956,2.05825470641769
-raticate,8224.475091828568,72.56451031021084,24.013156771224445,34.84710669831337
-bibarel,5920.9909175279245,57.680545382267795,23.099872255051626,32.37441238978834
-furfrou-pharaoh,5996.504893756583,64.78638323024441,-4.690328590370044,-15.3402596751839
-sunkern,8120.531043945017,61.75267050457984,7.6601726802533765,42.58783705465686
-purrloin,4326.902289277125,50.5855712781246,10.952953460014184,-14.906693894776438
-charizard,8228.484562566633,68.50218939886518,14.47469713195979,22.033685132168014
-wishiwashi-school,5732.719214629013,51.35966313971034,-18.70166165674575,-41.19651778788042
-elgyem,6414.365396884928,72.36850036277481,-21.72545229282409,-0.1592644362391141
-grimer,4195.427449474127,56.639270734781284,10.846524099938442,-20.006395554021235
-duosion,8586.926702366183,84.37167033622733,-18.32368181887478,27.952657926254314
-buneary,7281.995244098159,67.3022211292254,27.222298047049822,31.879930492166576
-honedge,5160.773758422041,60.5451254950732,-7.142036550036341,-2.3351608844172422
-ponyta,10725.453137703324,77.26430815323954,27.332652607790248,40.338864760123556
-burmy-sandy,5990.140600891947,65.19557616793342,7.988046009570438,22.748569560301164
-tepig,8986.655100255188,52.73916937779784,48.87830220207379,29.11669097014898
-donphan,4830.405712501908,64.14273079559825,-7.132186883275165,-11.142366906647121
-mimikyu,7213.612977681388,74.91349417648783,5.477093812733274,27.254691778219943
-landorus-incarnate,6305.94360493032,67.27518438355493,17.07040471240803,8.905608677506656
-zygarde,4753.233797948709,46.587357790661336,-5.136577576258551,25.611895654831013
-naganadel,3690.8859764233084,36.655472601738616,5.286178352308492,-35.14003711770595
-goodra,6909.057305852476,76.0450107955763,6.558953225529161,-18.566598138177017
-chandelure,4631.595369949876,47.25605953647389,-3.1016785026650413,-19.39107922898079
-lillipup,8438.376537022405,73.87593979794379,25.941882744608353,34.568490715978285
-floette-white,6517.545343235517,71.92232196585047,-6.176646867784483,14.667258456181047
-arrokuda,5933.242991647185,67.391025195907,4.5694341349571,17.614834877760035
-pincurchin,2646.0104333845056,34.66243489197695,9.31578187187528,-3.5083861733257344
-numel,9318.785347456776,83.11298245534746,11.736763657176997,37.127872072094114
-cinderace,8679.097274998128,65.50251055740839,24.95259683852857,11.347900858063237
-crabrawler,6117.338815413939,60.68077501249076,-14.883828814906362,-24.191422550918837
-xurkitree,3318.2546896358413,48.38815555083762,0.7809396754675695,1.2564064826280141
-vivillon-polar,4008.6241535671766,44.44193658863689,-3.4001484860523727,-26.486114611026963
-bunnelby,4794.52419661048,63.410140806622195,11.611520843376088,6.4577284856632655
-vivillon-savanna,6664.817894597143,62.29673493601655,-13.436708464462509,10.102351887963014
-grubbin,8077.524896611183,74.23652249882842,21.913152224706536,28.577160052073214
-mudsdale,4852.432592642044,45.28128708672076,31.485916629110154,13.507109294864838
-glalie,5051.137634857897,62.3465595976382,-4.230829535328735,-10.871871993411926
-dreepy,4993.6025870802005,49.536209623136656,-6.2761999165087765,22.66917879652089
-persian,7832.017612799903,80.90319581825234,9.554555973223941,25.360539414637977
-trevenant,3866.015340634636,51.19734294825276,4.671187036811128,15.19037033062368
-audino,7762.852087624357,79.13708404517948,24.405391121228863,12.430726508837255
-mr-rime,4586.338693820082,42.41238559728936,-0.36494243234107143,-25.51055335892544
-furfrou-lareine,6423.735137127705,73.8358214105325,-5.8150500611589555,-3.2527976662449865
-cobalion,5948.338584730983,63.593988865021196,-13.375490752775061,-5.901424522895391
-mew,6587.667950508937,76.60889302879963,16.443095339965964,-8.08464461729195
-tauros,5704.738266037083,61.038273242228925,15.625664769717044,17.936963677153056
-skorupi,5373.472026401101,61.437476166099444,-4.406042825863312,-23.54575880269591
-camerupt,7697.570133897162,65.04305508874234,38.00690384736078,17.16912530844442
-karrablast,6951.904694404977,54.1040312113354,-3.0210457213671624,-5.540039835671134
-jirachi,9219.858708481115,82.14660963339499,3.9589374442253744,30.79032122685352
-vigoroth,7048.5213723730785,79.16530499252433,3.9201176452451003,1.0332872168353688
-politoed,10942.588332803867,74.85047987184406,-12.886803102052584,60.53211917735824
-heatmor,6632.512904267159,52.68585573240559,39.66260361398961,24.222598042331363
-braviary,3128.66281548364,39.66818677682507,8.987207888293883,-3.1010674380881547
-helioptile,7314.526761528848,65.5431838613363,4.64222003895972,26.76583578994867
-zebstrika,3652.98924981965,51.8338727671238,2.186839467258633,2.5915651324713953
-stufful,5489.111516730606,64.65105188294136,18.92960990135297,3.893837479756241
-quagsire,7288.223366881955,79.44111981871059,-21.56544853342549,-16.912823200977034
-gourgeist,6383.7374703697515,60.048790166944364,28.088607616616947,23.62125323178301
-shellos-east,6558.544558644129,63.6796511638722,-15.413626982861915,14.408221108250475
-sigilyph,7174.248076677957,59.310904702096934,11.284318777235782,13.393957035652688
-flapple,6618.451833896642,65.79262838884868,13.87218670396394,29.386353032787795
-skitty,7395.084552751065,74.43450472348057,23.849602937285617,11.87845447319439
-vileplume,6438.121946191352,53.93206831218672,26.889003776578498,-8.259677905471667
-gothitelle,2432.354652567281,37.5763363034271,1.7555920578703923,-1.3425620952223274
-castform,6626.857889945581,79.19942977606088,0.8873666217032823,-1.6813113424706119
-solgaleo,6752.8946248948705,71.75283444262132,4.071317472315732,7.3122653758491465
-furfrou-dandy,6712.200699302015,72.68519142383082,-2.4510209930993603,18.83368395302877
-mamoswine,6505.1731400972785,67.39115742060127,17.29655191739071,19.58706586911793
-shaymin-land,8469.067448047608,73.46945848850622,-1.4270976478964688,31.34456740721283
-leavanny,8170.317298868022,63.275634195200446,-11.083808741836222,49.77163995344015
-lairon,5158.937493766437,65.54673576637217,0.39039799818322535,-0.2988419274982831
-goldeen,7005.492789970715,78.4150902906707,6.014281881288746,4.3009057061859775
-bouffalant,3372.1015944383716,47.20797849171464,11.519768764418817,16.59487885901194
-piplup,7404.821825476788,68.83730321481872,-13.108920681835036,-19.42104306087916
-torchic,11313.391893867814,73.33753009470135,39.081564921220156,52.80005553002698
-sawk,4664.115491436934,54.18923672237844,-13.483726885610062,-14.05605099195741
-mandibuzz,4260.237234028703,55.897034682957106,13.679672200024102,10.819388953972165
-snorlax,6452.93583264169,70.07963314346446,-5.7193328928775875,-6.450349885389509
-swanna,7265.729938349641,80.8282293601757,-6.167157555563288,-8.704660222312196
-floatzel,10961.885129544164,72.3008869012416,34.4929073886168,47.49126152800621
-lilligant,8455.170604170726,69.02928338285852,0.8865652613522651,42.90452351091962
-furfrou-star,6188.628909119307,71.83815360306659,-4.220891295614393,0.605873657779549
-flabebe-orange,7561.316956616318,70.6788440123728,9.155987055390886,27.58788434548456
-delibird,9558.00724187922,68.16249996783553,36.37047611601042,9.631693624896656
-tapu-bulu,7418.809886556744,52.65461693793468,37.582696424732376,22.263085754669486
-phione,7558.310917986305,70.45602706910576,-29.305002924724224,-25.03402199937695
-raichu-alola,9557.667183641279,77.52387181456129,20.77426533185576,44.99026897225377
-pikipek,5797.588694613165,52.823361485601104,20.909428540786525,6.55072296681083
-ariados,8100.029091706416,61.14473115965529,30.78288540752694,7.4552238408812705
-torterra,5207.972429540063,53.31905979392013,-9.535986065491006,28.550897054615664
-carnivine,9446.78093889084,71.42280123079323,0.9529894876740612,44.10562163675617
-shinx,6690.7217924790775,67.38769680791647,-14.20058837481613,-7.167990618510785
-ducklett,6868.520516311809,74.9384747194774,-14.109349637216326,0.5406853632147365
-dratini,7197.058103465554,80.10762123822377,-3.3611863560093327,-11.044349741909
-zubat,4033.5205127940144,48.20537952650223,9.990601313485106,-22.892570467808895
-seaking,8555.152576026481,74.83849906384887,23.916535256729517,11.399283057758906
-excadrill,3017.231288311771,46.059787638696065,9.266074996720075,1.586886762162658
-mesprit,6513.3739823778715,69.21956894479558,17.609522199833076,-10.905939285010527
-sandygast,6848.667603789549,76.34834305021116,5.292330849317902,19.7005326244969
-mothim,10625.366761480285,68.91912071054901,37.63735978676197,46.501105246969125
-drifblim,7083.452085786434,65.21972721713591,15.53983341359727,2.5518288280042443
-buzzwole,5579.423722345186,38.835972287058624,42.46357622492882,13.831013451196531
-abomasnow,7259.555711832686,81.28597377049593,-7.862482883700072,-0.656668093526756
-ninetales-alola,7351.307220042636,82.64685962844322,-8.609899657642151,-6.606668780166392
-meowstic-female,6554.797321591442,73.69400867355884,-4.989803536263323,-8.245433056893985
-chespin,7299.42472985168,65.4179333372895,6.064243792574315,35.44111959447026
-kartana,7312.0841715998085,73.44622120132608,11.342361330266186,16.166714964340155
-hippopotas,8090.62489220911,66.14633687002797,17.03689845744145,45.77963280783392
-corvisquire,3250.7748835604825,39.27276235288932,-4.984476834737463,-10.50905184606535
-giratina-origin,4757.624640898967,49.92767974308175,9.903529936300115,13.747891573989225
-talonflame,5917.538709246987,57.68808206130588,17.600411246935234,8.067401704731601
-hattrem,6959.69771569064,73.16836763516342,-1.169382188344748,-17.631186899156578
-golett,5354.08494654491,59.15673872727152,-14.831678109741478,-0.7587149853789402
-koffing,5346.148601796141,64.5771271084835,4.842542291643196,-17.42234507417591
-aegislash,5765.270245804735,61.55282617243581,8.328670211862297,6.181438593129627
-empoleon,4440.314364230913,47.34341806967582,-1.539608123468336,-1.8683483840014599
-manectric,7891.00322857264,76.52089318820121,-3.0058800012832947,11.209545077248652
-kricketune,7723.337635205356,50.895939471220636,42.43397780372493,17.71636431707514
-vivillon-continental,9019.6692546115,66.17106351303028,22.68528165702595,42.67922405207228
-raticate-alola,3602.054398572189,53.47914858169702,4.2334080199195805,10.20618826691716
-shieldon,4788.106833803378,59.57368523908546,6.181882844821813,11.998715158670256
-cosmog,6414.910331575882,52.45681726775631,-17.18054597110596,-41.71335046719532
-sharpedo,5721.458061389765,56.327150059590345,-12.908970466366023,-27.9484921352191
-milotic,7982.785011577684,77.76880188806813,13.284922551317848,12.655017311478844
-wurmple,8619.372149165727,70.7854562072815,32.41778875157234,9.870475270030523
-registeel,5399.345132411844,68.95267313546628,1.2420884978455162,0.9691906861651995
-crawdaunt,6935.118065767444,52.10847915994653,37.43227308339908,12.195187437579571
-maractus,6952.5380857743685,60.970079383799074,-13.693219921883838,28.103263643346132
-graveler,5386.628922169801,71.12133734935885,3.400948491963174,8.462250963113803

+ 1019 - 1019
database.js

@@ -1,1021 +1,1021 @@
 const database = [
-  { name: "malamar", xRGB: 101863.6879278158, xLUV: 6225.181505885933, yRGB: [ 165.03329184816428, 176.5588052271313, 192.82887367766023 ], yLUV: [ 71.38646100617763, -6.417106851035581, -15.005727392590147 ] },
-  { name: "bounsweet", xRGB: 87208.17402269861, xLUV: 7057.717450381824, yRGB: [ 182.3013871374527, 156.5435056746532, 146.42118537200506 ], yLUV: [ 66.98266247582106, 16.73685452604206, 11.333475958602593 ] },
-  { name: "furfrou-diamond", xRGB: 104135.69536423842, xLUV: 6466.489293966709, yRGB: [ 189.04900662251654, 171.89889624724063, 156.87284768211921 ], yLUV: [ 70.55355558498155, 12.20155456589571, 12.478552550378629 ] },
-  { name: "geodude", xRGB: 89388.87580299786, xLUV: 5154.123896670183, yRGB: [ 172.7119914346895, 169.38115631691647, 159.38865096359743 ], yLUV: [ 69.00812972117404, 2.534257055621935, 7.990386507277438 ] },
-  { name: "rotom-heat", xRGB: 68346.23915958873, xLUV: 9527.293635062706, yRGB: [ 190.16137684398748, 113.65757711220384, 95.69244523915958 ], yLUV: [ 56.35309533126057, 58.13403238005396, 21.650588370590704 ] },
-  { name: "dialga", xRGB: 81405.85063559322, xLUV: 5131.15403516995, yRGB: [ 126.74724576271187, 146.86631355932204, 168.8510593220339 ], yLUV: [ 59.110008408175815, -9.103383586909644, -18.853689975960616 ] },
-  { name: "gothorita", xRGB: 55372.4, xLUV: 3017.2794175289173, yRGB: [ 107.99259259259259, 105.97777777777777, 109.06666666666666 ], yLUV: [ 43.07527739895708, 1.0253877920997707, -1.7974837396243954 ] },
-  { name: "fennekin", xRGB: 96085.08739708677, xLUV: 11139.571854452663, yRGB: [ 214.7017099430019, 167.81443951868272, 109.4718176060798 ], yLUV: [ 72.4326009530877, 38.09307825876441, 41.06786256662942 ] },
-  { name: "spoink", xRGB: 86309.03369672943, xLUV: 4879.869615857146, yRGB: [ 167.6412289395441, 160.07631318136768, 161.4410307234886 ], yLUV: [ 66.18952441820264, 4.687393009968063, 0.03725459062984398 ] },
-  { name: "panpour", xRGB: 95896.03005603667, xLUV: 8213.833368135452, yRGB: [ 130.206316861946, 186.3678043810494, 184.18543046357615 ], yLUV: [ 72.79279041855933, -18.525630301826375, -6.672105958882804 ] },
-  { name: "budew", xRGB: 68787.07574094401, xLUV: 8696.680416167768, yRGB: [ 144.37870472008782, 175.7848518111965, 86.2689352360044 ], yLUV: [ 67.44897643162078, -13.937006301677904, 52.729264449134675 ] },
-  { name: "blastoise", xRGB: 103860.97047884704, xLUV: 6717.692518571813, yRGB: [ 168.1229660622966, 176.89562993956298, 185.08344955834497 ], yLUV: [ 71.37566144027643, -3.4232700505334983, -8.90738625144385 ] },
-  { name: "kirlia", xRGB: 93604.95595054096, xLUV: 6702.176494584159, yRGB: [ 164.10123647604328, 181.5873261205564, 158.67542503863987 ], yLUV: [ 72.04318280453514, -7.481109398648736, 15.383553241200957 ] },
-  { name: "bruxish", xRGB: 86302.99790619765, xLUV: 6754.40458881972, yRGB: [ 174.83668341708542, 144.06448911222782, 165.33040201005025 ], yLUV: [ 63.63153862190385, 17.031914055651182, -13.3171509905203 ] },
-  { name: "scorbunny", xRGB: 123243.02529358627, xLUV: 9528.866658289791, yRGB: [ 212.21183378500453, 186.31255645889792, 170.42953929539294 ], yLUV: [ 78.21300888960663, 20.91224067563369, 10.509867857965236 ] },
-  { name: "magneton", xRGB: 85574.77914798206, xLUV: 4941.1189932619845, yRGB: [ 150.73841554559044, 161.7350523168909, 163.71076233183857 ], yLUV: [ 65.13753493497406, -5.24364195420746, -2.8267043210763965 ] },
-  { name: "plusle", xRGB: 92428.85809682804, xLUV: 9588.649761592513, yRGB: [ 205.97245409015025, 149.79298831385643, 131.92737896494157 ], yLUV: [ 68.05728249741713, 41.27770306018884, 22.663780025692798 ] },
-  { name: "riolu", xRGB: 55431.15876777251, xLUV: 3752.6771095580093, yRGB: [ 107.57266982622433, 125.25750394944708, 135.89257503949446 ], yLUV: [ 50.90291278589427, -7.921864574319913, -10.77793193421444 ] },
-  { name: "umbreon", xRGB: 37337.41141141141, xLUV: 3007.1941735845758, yRGB: [ 94.94474474474474, 103.87867867867868, 91.67747747747748 ], yLUV: [ 42.12903982987234, -3.104380918713263, 6.439839552029444 ] },
-  { name: "meowth-alola", xRGB: 102541.29894578313, xLUV: 5822.818980286848, yRGB: [ 170.45481927710844, 173.70406626506025, 184.23117469879517 ], yLUV: [ 70.51176992273254, -2.169605135101325, -9.950595306366193 ] },
-  { name: "kabuto", xRGB: 68235.83665716999, xLUV: 5820.182769102231, yRGB: [ 171.8727445394112, 136.48433048433048, 104.51851851851852 ], yLUV: [ 58.762908984310926, 25.807797081903583, 25.719167196886783 ] },
-  { name: "wailmer", xRGB: 123156.21032132425, xLUV: 7959.662502614718, yRGB: [ 186.40408958130476, 200.4521259331386, 196.37455371632586 ], yLUV: [ 79.55834567816204, -4.254145678358625, 0.28873429366905895 ] },
-  { name: "dragonite", xRGB: 101591.96334890406, xLUV: 8979.91656743005, yRGB: [ 205.42328422565578, 185.1491196550485, 128.19942508084802 ], yLUV: [ 75.76225560621742, 19.02572598109733, 38.594016029558304 ] },
-  { name: "vulpix-alola", xRGB: 139115.5102963335, xLUV: 7345.698005573306, yRGB: [ 205.49422400803616, 208.07985936715218, 214.5399296835761 ], yLUV: [ 83.0625374130793, -1.5912725665784595, -5.430770031674221 ] },
-  { name: "vivillon-jungle", xRGB: 32475.92352173102, xLUV: 2503.507442565893, yRGB: [ 91.91923148666294, 103.68065659391904, 88.27886588323074 ], yLUV: [ 42.14659910507266, -4.640520891683162, 9.837114354555931 ] },
-  { name: "bulbasaur", xRGB: 88655.03558967201, xLUV: 7259.371074044331, yRGB: [ 141.38590369853455, 192.1486392184229, 161.42288904396372 ], yLUV: [ 73.62238945440585, -23.76863903483551, 18.592230657979012 ] },
-  { name: "croconaw", xRGB: 97916.16619585687, xLUV: 8126.740257694742, yRGB: [ 162.64453860640302, 186.55178907721282, 165.70998116760828 ], yLUV: [ 73.96776053851978, -6.820911400901305, 10.909041391700983 ] },
-  { name: "teddiursa", xRGB: 84761.0138431114, xLUV: 9963.7090023412, yRGB: [ 210.41001977587342, 155.54383651944627, 92.49703361898484 ], yLUV: [ 68.10154260320446, 43.73357846821154, 43.60594767832435 ] },
-  { name: "tangrowth", xRGB: 74448.56976016684, xLUV: 5782.004377678157, yRGB: [ 117.61376433785193, 147.91595411887383, 177.05881126173097 ], yLUV: [ 59.90167356893942, -13.585615039207504, -27.882428780679454 ] },
-  { name: "persian-alola", xRGB: 113578.22224704042, xLUV: 6224.929265638267, yRGB: [ 177.68595041322314, 183.76725485816394, 204.0909090909091 ], yLUV: [ 74.43548834701613, -4.134355531444989, -17.014389868163224 ] },
-  { name: "meloetta-pirouette", xRGB: 80768.28339140535, xLUV: 5543.81929642627, yRGB: [ 174.23519163763066, 147.14576074332172, 138.56678281068525 ], yLUV: [ 62.85084701320825, 18.934989444886227, 9.675391672405897 ] },
-  { name: "weavile", xRGB: 54558.01564885496, xLUV: 8588.67002365724, yRGB: [ 147.73129770992367, 90.71641221374045, 111.16183206106871 ], yLUV: [ 48.84548100734226, 43.60253779325591, -2.1607385242839277 ] },
-  { name: "gyarados", xRGB: 82701.14184397164, xLUV: 5669.306635241394, yRGB: [ 134.63356973995272, 160.77372509287403, 166.8193177980412 ], yLUV: [ 64.65766591080018, -8.003859842116404, -7.88135561476432 ] },
-  { name: "celesteela", xRGB: 62147.36750760422, xLUV: 4365.387838075544, yRGB: [ 117.52585435677223, 149.69261048488102, 132.5437466451959 ], yLUV: [ 58.6440756390784, -14.92633118693316, 9.493814611330171 ] },
-  { name: "genesect", xRGB: 78083.33788150808, xLUV: 4790.833887693238, yRGB: [ 158.67073608617594, 132.2093357271095, 158.06642728904848 ], yLUV: [ 57.824050601268084, 13.893378669647475, -16.68469581045921 ] },
-  { name: "rolycoly", xRGB: 35410.40315934066, xLUV: 2388.791318030349, yRGB: [ 84.98626373626374, 76.90934065934066, 71.3701923076923 ], yLUV: [ 31.764240925394137, 5.590776104812893, 3.2746708504312183 ] },
-  { name: "furfrou-natural", xRGB: 133136.75031793132, xLUV: 7288.378891764126, yRGB: [ 209.6570580754557, 205.38363713437897, 195.8062738448495 ], yLUV: [ 82.10147922735766, 3.0760796030953963, 7.727794173238836 ] },
-  { name: "bidoof", xRGB: 56281.49503722084, xLUV: 5590.4461034587275, yRGB: [ 158.46277915632754, 127.61600496277916, 80.03287841191067 ], yLUV: [ 54.941984578272766, 24.20362325208255, 31.8235977591107 ] },
-  { name: "volcanion", xRGB: 59236.79102206442, xLUV: 8768.683771290987, yRGB: [ 175.5617550088765, 104.66015724067968, 96.0071011919858 ], yLUV: [ 53.415791495707744, 55.71054412355811, 16.373756870063215 ] },
-  { name: "vivillon-elegant", xRGB: 56087.78283582089, xLUV: 4287.452700859832, yRGB: [ 131.06492537313432, 105.82182835820896, 130.39570895522388 ], yLUV: [ 47.46639063459947, 13.615840663284189, -16.682750391628463 ] },
-  { name: "simisear", xRGB: 89177.59779614325, xLUV: 10047.87867417328, yRGB: [ 211.1585989767808, 149.93585202676113, 114.86540731995278 ], yLUV: [ 67.80985913100463, 46.67583375987418, 30.461122444286023 ] },
-  { name: "granbull", xRGB: 118056.36259904913, xLUV: 6425.877982413782, yRGB: [ 205.08304278922344, 172.86656101426308, 195.86909667194928 ], yLUV: [ 73.64134510006741, 17.458307098955345, -13.644055885705832 ] },
-  { name: "electrike", xRGB: 87594.92069214131, xLUV: 7271.823523589309, yRGB: [ 162.7685652487383, 189.59841384282623, 142.64311463590482 ], yLUV: [ 73.63246825696983, -12.361669450335219, 30.999781297311717 ] },
-  { name: "exeggutor", xRGB: 86298.09287454325, xLUV: 6364.10863793805, yRGB: [ 161.35505481120586, 175.9531059683313, 143.03501827040196 ], yLUV: [ 69.69046717783691, -5.702238873684056, 22.539810730538022 ] },
-  { name: "delphox", xRGB: 59469.08016510971, xLUV: 8575.955889499091, yRGB: [ 182.0362806865088, 108.15663697588529, 82.89854442754725 ], yLUV: [ 53.73020929257463, 56.41607544574591, 25.190856102392463 ] },
-  { name: "cloyster", xRGB: 75448.66869983949, xLUV: 4414.280128467704, yRGB: [ 144.9556982343499, 137.85553772070625, 166.23434991974318 ], yLUV: [ 58.287766338117336, 1.9939034292321844, -21.505846966661228 ] },
-  { name: "unown", xRGB: 66548.53260869565, xLUV: 3597.58323633654, yRGB: [ 109.13722826086956, 118.60733695652173, 125.46739130434783 ], yLUV: [ 47.12834307283604, -3.719173281538769, -5.1553174141963645 ] },
-  { name: "gallade", xRGB: 104090.55343283582, xLUV: 6855.651395618626, yRGB: [ 155.3444776119403, 186.12716417910448, 169.7158208955224 ], yLUV: [ 73.05907291544392, -12.017414706803384, 9.359246515316768 ] },
-  { name: "froslass", xRGB: 120146.26363636364, xLUV: 7170.404177996185, yRGB: [ 189.47272727272727, 188.37272727272727, 191.14545454545456 ], yLUV: [ 76.22372170778584, 2.0953900805122623, -2.341931744299866 ] },
-  { name: "pachirisu", xRGB: 131263.93116490167, xLUV: 7758.355941674536, yRGB: [ 187.63010590015128, 209.8252647503782, 212.55143721633888 ], yLUV: [ 82.59592344239796, -10.144481295515314, -5.455891025538859 ] },
-  { name: "zweilous", xRGB: 39214.08888888889, xLUV: 2713.2455937910136, yRGB: [ 101.54910394265232, 102.76774193548387, 110.49390681003584 ], yLUV: [ 43.368482567262035, 0.047908701103783334, -6.596827163121809 ] },
-  { name: "sandshrew-alola", xRGB: 129164.28123184195, xLUV: 7797.189333432541, yRGB: [ 195.2643811737362, 208.62347472399767, 198.4584543869843 ], yLUV: [ 82.18845183029926, -6.164231036767071, 4.9672676484043246 ] },
-  { name: "grimmsnarl", xRGB: 26852.146633876422, xLUV: 3916.692446183477, yRGB: [ 72.16723024900092, 68.67476175837689, 105.54380571779896 ], yLUV: [ 31.542304339493352, -1.2517820142278622, -26.741054219080745 ] },
-  { name: "charjabug", xRGB: 56693.72272272272, xLUV: 5728.284556168624, yRGB: [ 126.43843843843844, 151.86186186186185, 104.86086086086087 ], yLUV: [ 59.86607154494224, -10.76840268842077, 28.244465866705514 ] },
-  { name: "bronzor", xRGB: 49315.05714285714, xLUV: 4701.796350910393, yRGB: [ 59.24285714285714, 129.95714285714286, 144.45714285714286 ], yLUV: [ 50.674039062088006, -24.09415679177048, -18.931468734734317 ] },
-  { name: "scatterbug", xRGB: 62137.51304347826, xLUV: 3644.468172468229, yRGB: [ 133.875, 134.1336956521739, 132.04565217391306 ], yLUV: [ 55.14944878619222, 0.1220326796850752, 1.2917383943640552 ] },
-  { name: "miltank", xRGB: 105804.92976588629, xLUV: 6569.11076359449, yRGB: [ 191.94648829431438, 168.64176885916015, 160.16387959866222 ], yLUV: [ 69.84717971745421, 15.10780990076426, 9.144810736365768 ] },
-  { name: "feebas", xRGB: 94847.25534591195, xLUV: 6627.736075120498, yRGB: [ 186.0805031446541, 172.2238993710692, 150.75471698113208 ], yLUV: [ 70.8054492398066, 11.077597231112414, 16.47660722322967 ] },
-  { name: "togetic", xRGB: 129702.460554371, xLUV: 7235.89063774804, yRGB: [ 207.38308457711443, 199.32409381663112, 196.90760483297797 ], yLUV: [ 80.73007898843254, 5.681771965840297, 2.8295748472074584 ] },
-  { name: "venonat", xRGB: 71801.0572519084, xLUV: 5594.802156323928, yRGB: [ 145.64198473282443, 123.8793893129771, 166.23664122137404 ], yLUV: [ 55.15129224188112, 9.693744806477394, -30.890349582417 ] },
-  { name: "oricorio", xRGB: 57083.161822466616, xLUV: 8366.529319722382, yRGB: [ 174.62843676355067, 89.4261586802828, 102.29261586802828 ], yLUV: [ 49.227013034499876, 59.2905284964798, 5.89428492394529 ] },
-  { name: "medicham", xRGB: 97674.04587155963, xLUV: 8632.873384627914, yRGB: [ 213.6697247706422, 144.8119266055046, 155.72935779816513 ], yLUV: [ 67.85798137021408, 45.693715479344306, 3.0333821334466 ] },
-  { name: "meowstic", xRGB: 71601.54524144398, xLUV: 4759.844368915636, yRGB: [ 107.7304266291608, 142.78246601031412, 161.79090482887952 ], yLUV: [ 57.08547235708558, -13.175323280859494, -18.742288788454612 ] },
-  { name: "steenee", xRGB: 97385.15816993464, xLUV: 6960.5234887662, yRGB: [ 178.36666666666667, 181.08496732026143, 155.37712418300654 ], yLUV: [ 72.67791909233753, -0.23693773601145007, 18.072452271328416 ] },
-  { name: "victreebel", xRGB: 99485.22813688213, xLUV: 10220.314168649214, yRGB: [ 187.56020278833967, 201.65145754119138, 122.2319391634981 ], yLUV: [ 78.32435664976916, -4.01216777835418, 48.135122089336214 ] },
-  { name: "totodile", xRGB: 83414.8293897883, xLUV: 6657.146953431616, yRGB: [ 115.1892901618929, 177.07098381070983, 177.3038605230386 ], yLUV: [ 68.40723180810231, -25.435069308626737, -6.9938276457244335 ] },
-  { name: "cursola", xRGB: 140509.16031390135, xLUV: 7289.603984042536, yRGB: [ 211.59118086696563, 204.84080717488789, 213.6109865470852 ], yLUV: [ 82.57974836185652, 3.340948618449697, -5.985355607839081 ] },
-  { name: "seedot", xRGB: 77172.88531187123, xLUV: 4800.090881012339, yRGB: [ 161.67102615694165, 153.27364185110665, 140.0533199195171 ], yLUV: [ 63.10506335095441, 6.129645066336881, 10.520403754086868 ] },
-  { name: "vanillite", xRGB: 143282.12109061747, xLUV: 7857.5968673717925, yRGB: [ 204.5316760224539, 211.08901363271852, 221.2317562149158 ], yLUV: [ 84.07002060138527, -3.171080060289933, -8.909335676748693 ] },
-  { name: "dusknoir", xRGB: 60173.6299580028, xLUV: 4022.1630678810598, yRGB: [ 136.43233784414372, 133.66378908072795, 116.0648623425105 ], yLUV: [ 54.72628476165427, 2.9628404698637767, 12.351612159606738 ] },
-  { name: "turtwig", xRGB: 81002.57142857143, xLUV: 8157.619109723121, yRGB: [ 164.67324388318863, 181.43172849250197, 113.8208366219416 ], yLUV: [ 71.10822696889332, -4.612917406410507, 43.37260821964215 ] },
-  { name: "regirock", xRGB: 81839.71459227467, xLUV: 5331.575966104333, yRGB: [ 176.19442060085836, 150.16909871244636, 140.4725321888412 ], yLUV: [ 63.82428890646356, 17.766314506410087, 9.740953261727277 ] },
-  { name: "haxorus", xRGB: 42419.936888681885, xLUV: 5605.5530022157645, yRGB: [ 133.3197484862599, 116.15742897065672, 58.23707498835584 ], yLUV: [ 49.35965542867291, 14.598664801239602, 32.575293893022724 ] },
-  { name: "caterpie", xRGB: 75159.68856447689, xLUV: 8431.729679305561, yRGB: [ 156.8880778588808, 175.77007299270073, 108.51459854014598 ], yLUV: [ 69.0013930381452, -5.952528146528511, 43.178850807678224 ] },
-  { name: "lotad", xRGB: 65379.7724137931, xLUV: 6845.601979169783, yRGB: [ 124.84741379310344, 162.81896551724137, 122.47327586206896 ], yLUV: [ 63.38436291853726, -17.31213389078921, 20.091587397134496 ] },
-  { name: "kingler", xRGB: 95402.52761506276, xLUV: 8756.071233913633, yRGB: [ 207.52803347280334, 159.97071129707112, 129.13598326359832 ], yLUV: [ 69.56377168652672, 36.25351520101186, 24.737859323405996 ] },
-  { name: "cleffa", xRGB: 115598.36194331983, xLUV: 6755.848646228303, yRGB: [ 209.0931174089069, 182.76032388663967, 170.79838056680163 ], yLUV: [ 75.80182974302247, 17.07276223618581, 11.343922659093499 ] },
-  { name: "clefairy", xRGB: 128894.0, xLUV: 6944.772663313542, yRGB: [ 218.5456953642384, 190.08476821192053, 197.33509933774835 ], yLUV: [ 79.22441628349594, 16.486963964450077, -2.0810916172632887 ] },
-  { name: "croagunk", xRGB: 57419.406389776355, xLUV: 5226.628970272438, yRGB: [ 107.12715654952076, 119.18466453674121, 146.78658146964855 ], yLUV: [ 49.801869563575224, -5.256157239034586, -25.784631204842018 ] },
-  { name: "charmeleon", xRGB: 93841.09138230191, xLUV: 9747.96136366724, yRGB: [ 218.49277038750722, 151.46616541353384, 123.47368421052632 ], yLUV: [ 69.0542123024639, 50.15252717337885, 25.601381027241295 ] },
-  { name: "magcargo", xRGB: 64604.5703517588, xLUV: 10561.248616737084, yRGB: [ 193.06532663316582, 109.87760229720028, 88.99066762383346 ], yLUV: [ 56.15402612197752, 64.37426353918782, 23.24166697617374 ] },
-  { name: "oranguru", xRGB: 83343.50557402699, xLUV: 6419.711301721651, yRGB: [ 141.91022882847642, 158.55525132016427, 155.92176804224525 ], yLUV: [ 64.75198359753787, -5.36044658998617, 1.5271569627967059 ] },
-  { name: "hawlucha", xRGB: 80346.93013809911, xLUV: 8335.22965432626, yRGB: [ 147.17221770917953, 155.27173030056863, 137.38789601949634 ], yLUV: [ 65.24725942425391, 6.918467804767609, 15.404402944727327 ] },
-  { name: "corphish", xRGB: 86396.26394721055, xLUV: 9741.858962415452, yRGB: [ 206.90641871625675, 142.9856028794241, 118.60227954409118 ], yLUV: [ 65.8531867916855, 49.31167471667302, 23.583336621879138 ] },
-  { name: "regidrago", xRGB: 31550.48727154047, xLUV: 4204.779181305371, yRGB: [ 99.11325065274151, 79.05156657963447, 94.18342036553524 ], yLUV: [ 37.76539664450853, 17.616582565950793, -5.855112949091336 ] },
-  { name: "pidgeotto", xRGB: 99225.69830878341, xLUV: 8226.99538470536, yRGB: [ 199.0938352427714, 173.57992362247683, 135.66612111292963 ], yLUV: [ 72.31065018046142, 20.42750376446555, 28.140058138694638 ] },
-  { name: "buizel", xRGB: 83089.74031007753, xLUV: 10322.047580782959, yRGB: [ 206.21834625322998, 151.11111111111111, 91.28165374677003 ], yLUV: [ 67.06603563819414, 45.094694172488154, 39.67071064956756 ] },
-  { name: "eelektross", xRGB: 53199.75342465754, xLUV: 4433.848450963533, yRGB: [ 119.09087871700635, 117.69361844303374, 116.62011359839626 ], yLUV: [ 49.31543252328842, 4.551414576810231, 0.02715443505951314 ] },
-  { name: "vivillon-sun", xRGB: 84849.484249767, xLUV: 8813.513327888366, yRGB: [ 196.16067101584343, 147.1030754892824, 115.07716682199441 ], yLUV: [ 64.72555121903991, 35.49052407564624, 27.469518818056095 ] },
-  { name: "breloom", xRGB: 80114.83591022444, xLUV: 6139.3311878572895, yRGB: [ 161.59750623441397, 161.6653366583541, 135.30473815461346 ], yLUV: [ 65.847157684396, 3.3893277259074672, 20.134760977005325 ] },
-  { name: "houndoom", xRGB: 55392.187387387385, xLUV: 3528.196501298636, yRGB: [ 129.26891891891893, 115.01036036036037, 108.72342342342343 ], yLUV: [ 48.47336341703647, 9.441402507288728, 5.724761318433702 ] },
-  { name: "heliolisk", xRGB: 73970.59914582063, xLUV: 7385.43208177785, yRGB: [ 169.95851128737036, 152.95851128737036, 105.39170225747407 ], yLUV: [ 63.17252838269892, 14.507641279622831, 30.30561111005996 ] },
-  { name: "virizion", xRGB: 76552.9914802982, xLUV: 8318.433886256853, yRGB: [ 159.89172878949236, 179.34788782392616, 109.09087681931132 ], yLUV: [ 70.10220330697415, -8.397697937102382, 43.15518342176095 ] },
-  { name: "primeape", xRGB: 112213.11784841075, xLUV: 6791.438623468869, yRGB: [ 203.10220048899757, 182.760391198044, 165.50268948655255 ], yLUV: [ 75.02721733463702, 14.016928919803652, 14.757878769467675 ] },
-  { name: "solosis", xRGB: 113273.52665589661, xLUV: 8236.539577304797, yRGB: [ 182.7156704361874, 215.5896607431341, 174.09208400646204 ], yLUV: [ 82.80936457791533, -16.00288925349275, 27.435382645110042 ] },
-  { name: "gloom", xRGB: 55067.905520774046, xLUV: 5481.2193184149655, yRGB: [ 129.4689812179852, 119.31929425156517, 125.32783153101879 ], yLUV: [ 52.24441098506736, 13.045700756878956, -6.097455491678404 ] },
-  { name: "electrode", xRGB: 134939.9844006568, xLUV: 7807.218602735913, yRGB: [ 212.85591133004925, 195.76518883415434, 200.0291461412151 ], yLUV: [ 80.29398895662014, 11.890819256544285, -1.0580404880615033 ] },
-  { name: "shelgon", xRGB: 122390.35365344468, xLUV: 6575.04610707705, yRGB: [ 194.60918580375784, 193.6580375782881, 192.9340292275574 ], yLUV: [ 77.76094928796375, 0.6796793082886916, 0.6646477007145859 ] },
-  { name: "magnemite", xRGB: 91802.79716312057, xLUV: 5219.072606182823, yRGB: [ 156.01418439716312, 167.0822695035461, 169.5418439716312 ], yLUV: [ 67.04059379721542, -5.482899899497408, -3.217607022853442 ] },
-  { name: "articuno", xRGB: 92431.93625356126, xLUV: 6611.937926162207, yRGB: [ 127.89351851851852, 169.91524216524218, 197.5462962962963 ], yLUV: [ 67.48930572647136, -18.2093448982854, -27.407208749816146 ] },
-  { name: "qwilfish", xRGB: 79101.56058282209, xLUV: 5791.147632589848, yRGB: [ 140.0935582822086, 167.52300613496934, 144.06978527607362 ], yLUV: [ 65.86383884415525, -10.395972678179845, 14.49286415590462 ] },
-  { name: "kricketot", xRGB: 64386.065084745765, xLUV: 6512.329593870567, yRGB: [ 159.52338983050848, 125.12, 99.29152542372881 ], yLUV: [ 55.10035223452434, 27.101962707856714, 20.773082431928113 ] },
-  { name: "graveler-alola", xRGB: 64216.24022346369, xLUV: 3745.816474638325, yRGB: [ 135.58804955064366, 142.2999757104688, 141.29511780422638 ], yLUV: [ 58.096536999241614, -3.4337323764828116, -0.20279980783834506 ] },
-  { name: "palossand", xRGB: 108225.59202453987, xLUV: 8460.96587518364, yRGB: [ 221.32114204813593, 185.48867390278434, 139.14464369985842 ], yLUV: [ 77.08380451981967, 26.164034458137582, 36.21672065313625 ] },
-  { name: "staryu", xRGB: 70593.25488454707, xLUV: 7411.967855038803, yRGB: [ 178.53019538188278, 151.73179396092362, 90.2841918294849 ], yLUV: [ 63.57052814436819, 21.4660064511385, 40.75550973873407 ] },
-  { name: "magearna", xRGB: 109531.00190748689, xLUV: 6200.985096619012, yRGB: [ 191.89079637577493, 182.58226037195993, 175.4969003338102 ], yLUV: [ 74.33200926516639, 6.020835555791268, 6.042581736435727 ] },
-  { name: "furfrou-kabuki", xRGB: 94663.87309435518, xLUV: 7417.609161974941, yRGB: [ 195.02719406674908, 157.56695508858672, 143.2707045735476 ], yLUV: [ 67.96276862922262, 27.93403187865611, 14.828341429849738 ] },
-  { name: "cofagrigus", xRGB: 42580.480158730155, xLUV: 3672.9213433373243, yRGB: [ 110.03487886382624, 107.82289055973267, 90.71637426900585 ], yLUV: [ 44.697504810523895, 4.116560846343657, 9.527877258795668 ] },
-  { name: "trumbeak", xRGB: 58492.88980263158, xLUV: 3704.7527294293595, yRGB: [ 128.45682565789474, 122.77055921052632, 121.2701480263158 ], yLUV: [ 51.10142387736446, 4.597884151306907, 1.6066751022333896 ] },
-  { name: "swoobat", xRGB: 62214.936170212764, xLUV: 4141.016043199868, yRGB: [ 108.36049779205139, 123.78402248093136, 140.31312725812927 ], yLUV: [ 50.06607562160148, -7.0964662333277655, -15.317223069198793 ] },
-  { name: "golurk", xRGB: 71135.99856115108, xLUV: 5808.881186267585, yRGB: [ 118.73908872901679, 160.74308553157474, 151.85035971223022 ], yLUV: [ 63.28002513649606, -15.740649744814226, 0.9495921687163362 ] },
-  { name: "vivillon-marine", xRGB: 71196.72920552033, xLUV: 5742.477066292789, yRGB: [ 93.33513614323014, 145.71428571428572, 171.417195076464 ], yLUV: [ 57.173709369620106, -21.77899579977754, -26.489040883825517 ] },
-  { name: "staravia", xRGB: 41654.44757665678, xLUV: 3030.2124504063363, yRGB: [ 110.48318496538081, 99.81404549950544, 87.45499505440158 ], yLUV: [ 42.090834677001396, 7.989131202164785, 8.374895250526713 ] },
-  { name: "nickit", xRGB: 52544.11072261072, xLUV: 5989.591560315556, yRGB: [ 140.2773892773893, 94.26184926184926, 74.21095571095572 ], yLUV: [ 44.31071706322478, 35.856218085548306, 14.8329783560415 ] },
-  { name: "makuhita", xRGB: 92353.17448487505, xLUV: 7504.91178709238, yRGB: [ 189.76501534414732, 174.91889522139414, 133.22007891275757 ], yLUV: [ 71.32090434744453, 12.030251508219454, 29.170425707442128 ] },
-  { name: "ho-oh", xRGB: 73807.49940659862, xLUV: 12476.935508115967, yRGB: [ 192.47970567291716, 122.5145976738666, 79.82292902919535 ], yLUV: [ 60.10601396608071, 56.318079946428234, 29.900802204066135 ] },
-  { name: "drednaw", xRGB: 74697.52068876896, xLUV: 7943.319345903994, yRGB: [ 150.70675918786944, 161.39270110511436, 105.00796710357234 ], yLUV: [ 65.6060554658383, 5.744935752498479, 26.248906376163053 ] },
-  { name: "toxel", xRGB: 88931.55636070854, xLUV: 7317.815017054618, yRGB: [ 166.56441223832527, 124.53703703703704, 187.35668276972623 ], yLUV: [ 58.44555701690415, 15.260254893357567, -41.93402454334416 ] },
-  { name: "horsea", xRGB: 111426.9710327456, xLUV: 7469.370684515415, yRGB: [ 159.85138539042822, 195.02896725440806, 200.61712846347606 ], yLUV: [ 76.47102565371702, -15.763570092386534, -9.13269074869915 ] },
-  { name: "brionne", xRGB: 122719.62424547283, xLUV: 7682.188711473058, yRGB: [ 164.16549295774647, 204.9969818913481, 214.03621730382295 ], yLUV: [ 79.89691243619585, -18.07136492333011, -11.39548556187738 ] },
-  { name: "kakuna", xRGB: 90474.5299073294, xLUV: 9613.184114621721, yRGB: [ 201.1356360572873, 181.54338668913226, 96.37152485256951 ], yLUV: [ 73.44272328907448, 17.426318235264226, 54.14577934966112 ] },
-  { name: "floette-red", xRGB: 89154.77614035088, xLUV: 6963.57168560848, yRGB: [ 165.80070175438595, 164.8701754385965, 146.04491228070177 ], yLUV: [ 67.72286729881823, 4.712116387662912, 14.420300543459245 ] },
-  { name: "skwovet", xRGB: 63675.425435765006, xLUV: 3722.9292368466045, yRGB: [ 141.89025177533892, 133.58457069076823, 123.6536475145255 ], yLUV: [ 55.403305523575185, 5.592115122921019, 8.294310851562926 ] },
-  { name: "dunsparce", xRGB: 95604.4045174538, xLUV: 8680.833492384885, yRGB: [ 164.54277891854895, 188.69883641341548, 142.1088295687885 ], yLUV: [ 73.88355732565591, -6.399951399669152, 26.13041882706414 ] },
-  { name: "melmetal", xRGB: 54344.33560254925, xLUV: 3463.26367876738, yRGB: [ 118.22653534183083, 112.59762456546929, 102.62876593279259 ], yLUV: [ 46.01496909948505, 4.088444915659423, 6.761252993134398 ] },
-  { name: "hakamo-o", xRGB: 83166.87225274726, xLUV: 6460.745821435475, yRGB: [ 172.01785714285714, 165.41849816849816, 130.09432234432234 ], yLUV: [ 67.1882812214747, 6.158362612994372, 22.412888048708698 ] },
-  { name: "ivysaur", xRGB: 82820.73613121081, xLUV: 7344.480020988199, yRGB: [ 144.9141341051616, 155.80463096960926, 162.35697057404727 ], yLUV: [ 64.97749233606592, 2.2807217650079417, -4.0484887158637655 ] },
-  { name: "pawniard", xRGB: 61680.65376495426, xLUV: 4347.924432792617, yRGB: [ 138.00985221674875, 119.43068261787474, 117.12174524982407 ], yLUV: [ 51.39599374929439, 13.246312030109014, 3.834978340990522 ] },
-  { name: "fomantis", xRGB: 81265.81231671554, xLUV: 6095.666719763462, yRGB: [ 135.52590420332356, 172.7565982404692, 157.4672531769306 ], yLUV: [ 67.72276078943102, -15.877140023659091, 8.73267457341355 ] },
-  { name: "absol", xRGB: 125502.7468879668, xLUV: 6855.028925522975, yRGB: [ 190.32240663900416, 192.84066390041494, 204.58547717842325 ], yLUV: [ 77.5612425539822, -1.5776309637823787, -9.785727882387356 ] },
-  { name: "salazzle", xRGB: 37310.459394521866, xLUV: 2291.69562570552, yRGB: [ 104.16722729456991, 99.13310908217203, 109.6309466602595 ], yLUV: [ 42.43839256926047, 2.415962505551906, -7.342447232753648 ] },
-  { name: "incineroar", xRGB: 46823.55647751606, xLUV: 6948.885874733435, yRGB: [ 149.57976445396145, 92.42773019271948, 81.58806209850107 ], yLUV: [ 46.23061617768642, 42.51721210916148, 14.191768724066389 ] },
-  { name: "simisage", xRGB: 67857.73461401636, xLUV: 7405.9972426940985, yRGB: [ 115.69797225186767, 174.21522589825685, 121.46140163642832 ], yLUV: [ 66.53021922302338, -23.60295728552982, 33.28347773517182 ] },
-  { name: "slowking-galar", xRGB: 49564.98573779484, xLUV: 4621.510271530943, yRGB: [ 125.1716950082282, 86.2029621503017, 123.5233132199671 ], yLUV: [ 41.6718565765513, 21.140011733520428, -22.773113544723806 ] },
-  { name: "skiddo", xRGB: 67319.66, xLUV: 4664.402529877559, yRGB: [ 129.6563157894737, 142.91631578947369, 129.45052631578946 ], yLUV: [ 57.95094018590362, -1.860115120731687, 9.404597339332108 ] },
-  { name: "prinplup", xRGB: 72587.96334376397, xLUV: 5723.37645969288, yRGB: [ 118.863209655789, 145.82610639248995, 152.14126061689763 ], yLUV: [ 58.52263425231627, -10.003077208424836, -12.5449408266063 ] },
-  { name: "spheal", xRGB: 121710.51381215469, xLUV: 7702.197097688653, yRGB: [ 189.54932912391476, 196.4325177584846, 196.3251775848461 ], yLUV: [ 78.55856295002833, -2.2439471610192663, -2.13030822527315 ] },
-  { name: "volbeat", xRGB: 80968.72479721901, xLUV: 7415.041008516586, yRGB: [ 174.93453070683663, 141.15121668597914, 130.59269988412515 ], yLUV: [ 61.87257435463433, 26.064616272424264, 10.197902791553988 ] },
-  { name: "regieleki", xRGB: 98710.4631043257, xLUV: 12986.426257690924, yRGB: [ 201.22973464194837, 198.08760450745183, 70.3206106870229 ], yLUV: [ 77.90290751793853, 7.966477275459888, 60.387322338902926 ] },
-  { name: "meltan", xRGB: 70750.4168618267, xLUV: 6765.605641034475, yRGB: [ 146.61943793911007, 131.38290398126463, 88.84309133489461 ], yLUV: [ 53.406990111687726, 13.040061161503248, 24.93114897677632 ] },
-  { name: "porygon-z", xRGB: 71813.17816091955, xLUV: 7978.31881684428, yRGB: [ 131.10098522167488, 136.9072249589491, 156.39162561576356 ], yLUV: [ 59.846832249819755, 9.943455532715873, -13.897261604303178 ] },
-  { name: "nosepass", xRGB: 52437.55230326296, xLUV: 4305.128119991352, yRGB: [ 112.62907869481766, 108.76247600767755, 140.21737044145874 ], yLUV: [ 47.26408454494399, 2.7837967783001405, -24.674899839835156 ] },
-  { name: "sizzlipede", xRGB: 68467.57275902212, xLUV: 12877.005047560842, yRGB: [ 186.23748544819557, 83.57857974388824, 70.9697322467986 ], yLUV: [ 53.14111200726519, 70.90241203235009, 21.6767127633061 ] },
-  { name: "greedent", xRGB: 61826.54136493307, xLUV: 5128.00060399531, yRGB: [ 164.48123765635287, 115.37766074171604, 97.98858898398069 ], yLUV: [ 52.6905794104417, 34.89261204203394, 16.566416572751354 ] },
-  { name: "ludicolo", xRGB: 87512.76833740831, xLUV: 7339.089846459272, yRGB: [ 172.32243276283617, 181.96026894865525, 132.53453545232273 ], yLUV: [ 71.94681022623523, -2.5496811674841924, 33.895983837332075 ] },
-  { name: "torracat", xRGB: 42546.41516853932, xLUV: 6659.087346207923, yRGB: [ 142.67162921348316, 92.64691011235955, 66.0252808988764 ], yLUV: [ 44.63606363300447, 39.6913924317115, 20.547465165888937 ] },
-  { name: "mewtwo", xRGB: 124444.34042553192, xLUV: 6678.781529087265, yRGB: [ 202.60283687943263, 189.34751773049646, 203.45390070921985 ], yLUV: [ 77.90480514620006, 6.834600951109913, -9.252535952956496 ] },
-  { name: "wartortle", xRGB: 113190.65529308836, xLUV: 6913.474548112944, yRGB: [ 176.8416447944007, 189.12685914260717, 198.06561679790028 ], yLUV: [ 75.7971332763361, -5.989505745216952, -9.554852894248935 ] },
-  { name: "emolga", xRGB: 82675.29639737992, xLUV: 5057.254536199239, yRGB: [ 153.3711790393013, 147.96124454148472, 136.51965065502182 ], yLUV: [ 60.06149052548898, 3.9436365467165455, 6.820911006082482 ] },
-  { name: "throh", xRGB: 89053.12372482344, xLUV: 5983.526076265597, yRGB: [ 171.06277792309703, 149.62490190949515, 143.03923620193567 ], yLUV: [ 62.97262502240952, 15.774036342390849, 7.962948134527726 ] },
-  { name: "heracross", xRGB: 65074.73015252249, xLUV: 5022.8955872345905, yRGB: [ 100.80993351583888, 141.3187328901056, 168.80328509972625 ], yLUV: [ 56.57149231150396, -18.222530324205195, -27.23135921854927 ] },
-  { name: "minun", xRGB: 106923.13595413596, xLUV: 7936.149504140689, yRGB: [ 164.04095004095004, 192.55528255528256, 184.8001638001638 ], yLUV: [ 75.89380355015233, -10.29872700037312, 0.8074423228929646 ] },
-  { name: "cramorant", xRGB: 80337.21506949524, xLUV: 7311.333351163417, yRGB: [ 98.2713972201902, 139.8152889539137, 178.1437454279444 ], yLUV: [ 57.219149052223685, -10.362196411960507, -35.556868359879765 ] },
-  { name: "jumpluff", xRGB: 107909.48634294386, xLUV: 7757.395623769784, yRGB: [ 181.95030349013658, 181.4343702579666, 179.90591805766311 ], yLUV: [ 73.60722410801827, 1.7358570831945823, -1.4458031138240677 ] },
-  { name: "pidgeot", xRGB: 117948.63520496039, xLUV: 8668.671683990979, yRGB: [ 212.33895969686532, 198.7530141233207, 157.43300034447122 ], yLUV: [ 80.18554856324192, 11.648831455946755, 29.907907283603212 ] },
-  { name: "skiploom", xRGB: 62163.877955758966, xLUV: 10909.041541195238, yRGB: [ 138.68421052631578, 185.1586575133486, 63.61708619374523 ], yLUV: [ 70.06085152387126, -22.15881515069543, 65.0274646974005 ] },
-  { name: "alakazam", xRGB: 91811.63746537396, xLUV: 9809.250011406883, yRGB: [ 191.89162049861497, 182.0024238227147, 99.3452216066482 ], yLUV: [ 72.74709310884509, 9.784608181660088, 46.08943195049324 ] },
-  { name: "sandshrew", xRGB: 109941.42092840283, xLUV: 9714.80752157716, yRGB: [ 213.65696302124312, 197.94099134539732, 130.7970102281668 ], yLUV: [ 79.53515724546637, 14.030638363443929, 43.82015906830274 ] },
-  { name: "azelf", xRGB: 99429.27157561362, xLUV: 6692.801007249913, yRGB: [ 145.35471100554236, 180.20269200316707, 194.21456848772763 ], yLUV: [ 71.49892904219253, -14.862815227276107, -15.57452092053407 ] },
-  { name: "flareon", xRGB: 105910.44113090627, xLUV: 10672.518182561083, yRGB: [ 213.09914794732765, 182.41092176607282, 120.88303640588691 ], yLUV: [ 75.56797469702701, 27.020118280305375, 42.71491576071385 ] },
-  { name: "runerigus", xRGB: 49092.59901178259, xLUV: 3655.5366978255556, yRGB: [ 122.11098441657164, 101.44735841885215, 107.46332193082478 ], yLUV: [ 44.41613057294981, 13.779647663838515, -1.1537702824321001 ] },
-  { name: "tsareena", xRGB: 87255.74666666667, xLUV: 6899.330081172658, yRGB: [ 171.35315315315316, 169.35531531531532, 140.14162162162162 ], yLUV: [ 68.79831698791395, 2.9223837733665436, 21.546999686199847 ] },
-  { name: "hydreigon", xRGB: 44770.86943121323, xLUV: 3393.5786054007303, yRGB: [ 114.13196973942281, 100.09470439899131, 116.73746147380218 ], yLUV: [ 44.33844966410948, 9.043966288565597, -10.414730059144707 ] },
-  { name: "munchlax", xRGB: 65067.2699742268, xLUV: 4638.507807249272, yRGB: [ 112.37306701030928, 142.98840206185568, 151.72938144329896 ], yLUV: [ 57.26560781015837, -12.377628911736977, -10.906776762769297 ] },
-  { name: "vivillon-monsoon", xRGB: 72623.43365150664, xLUV: 4179.948369911042, yRGB: [ 131.76829496537525, 136.28635597978663, 142.61800486618006 ], yLUV: [ 55.36472546741261, -1.8063244173184538, -5.545253312466394 ] },
-  { name: "timburr", xRGB: 84967.10305343512, xLUV: 6154.790120507491, yRGB: [ 183.41275899672846, 156.93947655398037, 135.23064340239912 ], yLUV: [ 66.35508101177804, 19.01076634255178, 18.353136646876127 ] },
-  { name: "archeops", xRGB: 76775.24287548139, xLUV: 7604.196891615768, yRGB: [ 143.9653401797176, 153.27060333761233, 133.26341463414633 ], yLUV: [ 63.55496689167327, 8.68153308965951, 12.066831489062128 ] },
-  { name: "pichu", xRGB: 89810.82042253521, xLUV: 7936.066418387092, yRGB: [ 177.60211267605635, 170.25440140845072, 114.7649647887324 ], yLUV: [ 67.69157220550716, 7.613899319710331, 37.320272438447965 ] },
-  { name: "samurott", xRGB: 77124.13475965546, xLUV: 6211.206212014817, yRGB: [ 128.62656293414838, 146.16504584606835, 160.73242567379828 ], yLUV: [ 59.63629380700468, -4.878537977919074, -14.873378313275527 ] },
-  { name: "murkrow", xRGB: 31603.645569620254, xLUV: 2476.966522138037, yRGB: [ 65.20253164556962, 79.13924050632912, 94.29113924050633 ], yLUV: [ 32.18858864914679, -3.2674771035256045, -11.039423322341293 ] },
-  { name: "thundurus-incarnate", xRGB: 94416.16351829989, xLUV: 5461.488778749543, yRGB: [ 155.37337662337663, 164.29486422668242, 172.76977567886658 ], yLUV: [ 66.20324110663269, -4.469524998895588, -7.7326385994543765 ] },
-  { name: "coalossal", xRGB: 30237.961980990494, xLUV: 1743.3380944902551, yRGB: [ 79.7690511922628, 74.30281807570452, 72.61313990328497 ], yLUV: [ 30.828267312579253, 2.973357042073441, 1.7468982317369646 ] },
-  { name: "bellsprout", xRGB: 84565.76860465117, xLUV: 7977.4327595757595, yRGB: [ 164.64302325581394, 183.61976744186046, 127.4406976744186 ], yLUV: [ 71.78635831455517, -7.610609637179232, 35.3916924144268 ] },
-  { name: "ribombee", xRGB: 115518.23369036027, xLUV: 6776.728260700171, yRGB: [ 194.77458617332036, 188.30769230769232, 175.41626095423564 ], yLUV: [ 75.85303275690693, 4.762413248680188, 9.186687327484385 ] },
-  { name: "seismitoad", xRGB: 67744.0732708089, xLUV: 6093.974330641213, yRGB: [ 94.99140289175459, 144.3737788198515, 170.83040250097693 ], yLUV: [ 57.4852527735407, -19.580271302760192, -27.315037177144976 ] },
-  { name: "dracozolt", xRGB: 61429.6763682379, xLUV: 9104.387235077842, yRGB: [ 139.99746915533058, 127.15691236950332, 74.07086365074343 ], yLUV: [ 55.11594858506222, 23.44887045382494, 33.77722566833155 ] },
-  { name: "ursaring", xRGB: 54991.93373193822, xLUV: 5489.000930330839, yRGB: [ 162.84255107125063, 119.44469357249626, 87.42675635276532 ], yLUV: [ 53.562546496240444, 32.30388755030337, 26.17936207159777 ] },
-  { name: "tropius", xRGB: 62188.26883365201, xLUV: 6189.356429682964, yRGB: [ 126.24856596558317, 160.54110898661568, 116.82217973231357 ], yLUV: [ 63.03174678778666, -13.460482736162339, 28.67377452172217 ] },
-  { name: "braixen", xRGB: 85398.66680395388, xLUV: 8817.613474756887, yRGB: [ 188.8204283360791, 152.83896210873147, 111.85831960461284 ], yLUV: [ 65.60642573375821, 29.01239250548808, 28.993765832501573 ] },
-  { name: "herdier", xRGB: 71299.79281381241, xLUV: 5894.15312539672, yRGB: [ 159.89360709286046, 135.8810079328045, 120.34857676154923 ], yLUV: [ 57.89490976113987, 18.785490341244017, 12.890279264339192 ] },
-  { name: "sunflora", xRGB: 88079.28882681564, xLUV: 9607.903280398888, yRGB: [ 177.54078212290503, 189.49776536312848, 105.7608938547486 ], yLUV: [ 74.3723447102572, -1.461774282015298, 49.73674923881475 ] },
-  { name: "mareep", xRGB: 104968.67580174927, xLUV: 7736.128060875403, yRGB: [ 183.22332361516035, 184.8192419825073, 162.64489795918368 ], yLUV: [ 74.1837003932912, 2.7354997780550643, 13.705630831597063 ] },
-  { name: "froakie", xRGB: 102126.71819960861, xLUV: 7303.550142746267, yRGB: [ 144.84931506849315, 188.40834964122635, 189.06262230919765 ], yLUV: [ 73.48266823289148, -17.78947362526104, -6.2047743179072405 ] },
-  { name: "simipour", xRGB: 99460.39339237058, xLUV: 8683.436251983398, yRGB: [ 136.20265667574932, 190.32356948228883, 182.00885558583107 ], yLUV: [ 74.18024050613296, -17.2370450763399, -2.175668807284305 ] },
-  { name: "roggenrola", xRGB: 31218.31821862348, xLUV: 3096.0856593002404, yRGB: [ 87.46396761133603, 83.58218623481781, 79.71417004048583 ], yLUV: [ 35.35684472762538, 5.45061337250257, 1.2600045440993013 ] },
-  { name: "pangoro", xRGB: 59299.55864726027, xLUV: 3578.220030832162, yRGB: [ 127.9730308219178, 129.0064212328767, 125.13484589041096 ], yLUV: [ 52.80659789953623, -0.12457674018941912, 2.7390906583475405 ] },
-  { name: "dottler", xRGB: 79567.74032459426, xLUV: 9986.324621877664, yRGB: [ 189.6046608406159, 154.70203911776946, 62.4173949230129 ], yLUV: [ 65.58296297207549, 29.139795083954365, 39.40075222979771 ] },
-  { name: "vivillon-modern", xRGB: 69340.05037313433, xLUV: 8207.579433770097, yRGB: [ 166.2828358208955, 116.1106343283582, 117.59496268656716 ], yLUV: [ 54.876729195116795, 39.06108726889983, 5.7926636580127076 ] },
-  { name: "chimchar", xRGB: 90522.11883116883, xLUV: 9146.628176116341, yRGB: [ 201.65974025974026, 164.80064935064934, 103.39090909090909 ], yLUV: [ 69.90760188358824, 29.89539779244365, 37.88086023017014 ] },
-  { name: "whirlipede", xRGB: 71862.54010301693, xLUV: 4365.214024258634, yRGB: [ 150.49190581309787, 135.05555555555554, 149.4223693892568 ], yLUV: [ 57.72558559493706, 8.724789636505527, -9.230702889987647 ] },
-  { name: "scyther", xRGB: 101706.73623322535, xLUV: 7479.6682703644565, yRGB: [ 175.17630726515503, 196.37714021286442, 157.58630263766776 ], yLUV: [ 76.54686274576046, -10.244069254684337, 25.569431236188723 ] },
-  { name: "scolipede", xRGB: 40026.34386817936, xLUV: 4497.024367676369, yRGB: [ 131.6237169097785, 79.98082117774176, 93.10507833603458 ], yLUV: [ 40.92771119751879, 33.96187464536842, -0.05306065658573863 ] },
-  { name: "yungoos", xRGB: 73936.81230769231, xLUV: 5933.504706945024, yRGB: [ 177.5403076923077, 147.38892307692308, 114.72492307692308 ], yLUV: [ 62.612075394472186, 21.974122924052796, 26.069809035593902 ] },
-  { name: "munna", xRGB: 137843.11504975124, xLUV: 7659.269610372392, yRGB: [ 233.79228855721394, 194.5167910447761, 204.6766169154229 ], yLUV: [ 82.1184406379042, 23.143791205186588, -2.4717784033755628 ] },
-  { name: "golduck", xRGB: 94575.25, xLUV: 6555.285339672881, yRGB: [ 138.39271653543307, 172.85285433070865, 197.6166338582677 ], yLUV: [ 68.92185321120816, -16.003208945551847, -24.47372956376727 ] },
-  { name: "sandslash-alola", xRGB: 108675.93874172185, xLUV: 6983.137314117556, yRGB: [ 146.9751655629139, 191.90190397350995, 206.34975165562915 ], yLUV: [ 74.94494900509187, -20.25982909782273, -16.4020924046802 ] },
-  { name: "blipbug", xRGB: 84318.13674560733, xLUV: 5472.544033913493, yRGB: [ 150.84339190221544, 146.6577540106952, 150.34988540870893 ], yLUV: [ 60.191754034491986, 2.5928593063867185, -5.016599264373796 ] },
-  { name: "remoraid", xRGB: 103640.243575419, xLUV: 6239.958403695518, yRGB: [ 174.7296089385475, 191.59664804469273, 177.0659217877095 ], yLUV: [ 75.69274118205041, -8.333749658340873, 9.323527581178544 ] },
-  { name: "magby", xRGB: 81094.06571815719, xLUV: 9829.43743365222, yRGB: [ 208.50338753387533, 129.8150406504065, 117.03048780487805 ], yLUV: [ 62.86591280325101, 57.66612780912125, 20.690928012997393 ] },
-  { name: "ampharos", xRGB: 116338.73927257866, xLUV: 11474.345223747177, yRGB: [ 220.63874131589702, 203.52758479771148, 119.28483857785042 ], yLUV: [ 81.6713207101673, 15.308461837520184, 47.02083747373522 ] },
-  { name: "duraludon", xRGB: 94181.07494736843, xLUV: 5222.594932252752, yRGB: [ 162.7061052631579, 154.9818947368421, 171.65473684210525 ], yLUV: [ 63.86997932715917, 3.450734118022357, -12.159915849945893 ] },
-  { name: "darkrai", xRGB: 48191.93682082386, xLUV: 3194.425066185081, yRGB: [ 112.27217589082639, 105.86656557998484, 102.68309325246399 ], yLUV: [ 44.30067277629203, 5.325928972367917, 3.024115803152631 ] },
-  { name: "trubbish", xRGB: 49913.973411154344, xLUV: 3572.715333714271, yRGB: [ 112.99156939040208, 131.52399481193257, 113.42153047989623 ], yLUV: [ 52.73008148703039, -8.63900307913862, 11.697439020533947 ] },
-  { name: "marowak-alola", xRGB: 82119.03987624613, xLUV: 5004.3986849021285, yRGB: [ 151.63630113441045, 152.52973530422827, 147.59092471639738 ], yLUV: [ 61.691051669049344, -0.3256856897705628, 3.6496431435290164 ] },
-  { name: "sandslash", xRGB: 86989.48776371308, xLUV: 7952.192466898888, yRGB: [ 188.26244725738397, 163.68059071729957, 104.83333333333333 ], yLUV: [ 67.65217266604941, 20.130715427247026, 36.54887069837151 ] },
-  { name: "silvally", xRGB: 73867.30404217927, xLUV: 4101.170185714262, yRGB: [ 135.8927943760984, 138.993848857645, 143.08435852372583 ], yLUV: [ 56.44655074197359, -1.5631942917620758, -3.4911420562317113 ] },
-  { name: "aipom", xRGB: 95266.49422336329, xLUV: 6952.698523740348, yRGB: [ 186.41078305519898, 155.36777920410782, 168.0250320924262 ], yLUV: [ 67.13965971434156, 15.907388264701401, -6.90392289159421 ] },
-  { name: "dedenne", xRGB: 76170.54263565892, xLUV: 6925.53207217002, yRGB: [ 171.03030303030303, 149.59760394644115, 101.86821705426357 ], yLUV: [ 61.79481072878477, 17.434757324981216, 31.569317353430975 ] },
-  { name: "axew", xRGB: 51469.001459854015, xLUV: 3965.8612415065927, yRGB: [ 122.4992700729927, 133.36934306569344, 103.73722627737226 ], yLUV: [ 53.67162668545594, -4.387250734802615, 19.167472137751336 ] },
-  { name: "palkia", xRGB: 114260.69660641829, xLUV: 6288.584718188418, yRGB: [ 189.3672076724456, 177.84157137587607, 189.43618590925857 ], yLUV: [ 73.2300050737969, 5.503717235230265, -7.018026645833638 ] },
-  { name: "hoppip", xRGB: 84558.67148362235, xLUV: 6780.871653562809, yRGB: [ 184.03564547206165, 141.47013487475914, 137.40847784200386 ], yLUV: [ 63.09525594259537, 28.164570417821526, 6.638413227368949 ] },
-  { name: "vulpix", xRGB: 69950.39859594384, xLUV: 8474.028535043326, yRGB: [ 197.4625585023401, 131.61076443057723, 88.67316692667707 ], yLUV: [ 60.82072199834687, 50.5553903309633, 33.98548708920556 ] },
-  { name: "togepi", xRGB: 116660.93127413128, xLUV: 7320.230915262215, yRGB: [ 196.9899613899614, 192.1196911196911, 177.180694980695 ], yLUV: [ 77.64252236252011, 5.697266647843951, 11.236186934952057 ] },
-  { name: "skrelp", xRGB: 64028.92415730337, xLUV: 4348.3785728955345, yRGB: [ 154.0187265917603, 124.04588014981273, 127.11797752808988 ], yLUV: [ 54.582331023924695, 18.983921878022226, 0.9732939061644088 ] },
-  { name: "ponyta-galar", xRGB: 113740.69033965594, xLUV: 9113.231317480735, yRGB: [ 166.08866343184826, 166.97309219232466, 210.59902955447728 ], yLUV: [ 70.47934323913026, -0.07742740142580076, -33.30963009787924 ] },
-  { name: "shuppet", xRGB: 66820.4125, xLUV: 4732.668379990693, yRGB: [ 125.02083333333333, 132.47604166666667, 166.653125 ], yLUV: [ 55.48527600921341, -5.466397015110852, -29.315697781424436 ] },
-  { name: "grumpig", xRGB: 64943.69866567828, xLUV: 3647.1762746561253, yRGB: [ 138.05411415863603, 130.07079318013342, 138.38176426982952 ], yLUV: [ 54.622272631117426, 4.119229871649733, -5.536195644711416 ] },
-  { name: "floette-orange", xRGB: 90533.71488764045, xLUV: 6789.364279242702, yRGB: [ 166.88412921348313, 173.23525280898878, 143.54494382022472 ], yLUV: [ 69.53807452413535, 0.45193020174316395, 18.865963157462904 ] },
-  { name: "squirtle", xRGB: 95565.63952724884, xLUV: 6610.667760056839, yRGB: [ 144.37163493105712, 182.52396585686145, 183.5397242284964 ], yLUV: [ 71.66174305544301, -16.171515112150438, -5.470270417505461 ] },
-  { name: "shellder", xRGB: 73725.43386689133, xLUV: 4294.947195366249, yRGB: [ 134.63942712721146, 126.84835720303286, 151.75400168491996 ], yLUV: [ 53.175602967244714, 2.5455200962259843, -17.5743077472092 ] },
-  { name: "illumise", xRGB: 76283.65373805509, xLUV: 5194.5001155678265, yRGB: [ 140.42439572793705, 142.57448004496908, 151.5283867341203 ], yLUV: [ 58.776951920277014, 0.26902608971206154, -8.775880804143902 ] },
-  { name: "seel", xRGB: 143167.890625, xLUV: 7562.50452737302, yRGB: [ 213.03125, 211.87088815789474, 216.88980263157896 ], yLUV: [ 84.76215910446369, 0.40258539098164026, -3.9179464424204475 ] },
-  { name: "tentacruel", xRGB: 83598.57936507936, xLUV: 6055.884339259968, yRGB: [ 151.20634920634922, 151.6031746031746, 163.9126984126984 ], yLUV: [ 63.385195581264234, 2.7302656392088216, -8.308207829862903 ] },
-  { name: "cherrim", xRGB: 41358.66512345679, xLUV: 5363.337928521937, yRGB: [ 107.81095679012346, 97.80246913580247, 110.82793209876543 ], yLUV: [ 44.3336561344, 7.249000948268419, -9.40311064199288 ] },
-  { name: "necrozma-dawn-wings", xRGB: 53913.3495407032, xLUV: 4489.989862428431, yRGB: [ 69.18435223313273, 118.69337979094077, 140.9535951853025 ], yLUV: [ 46.188009524168166, -19.693645762038848, -22.76081112454658 ] },
-  { name: "goomy", xRGB: 124980.47920277296, xLUV: 7475.182967547192, yRGB: [ 199.3890814558059, 189.07712305025996, 211.08578856152513 ], yLUV: [ 78.11189744538436, 4.342783422385297, -16.874271798876798 ] },
-  { name: "lunatone", xRGB: 100259.9748096075, xLUV: 6938.745407373894, yRGB: [ 191.18277680140596, 179.53075571177504, 144.49502050380784 ], yLUV: [ 72.45077204226287, 9.344031736252607, 26.705873630184904 ] },
-  { name: "urshifu", xRGB: 44180.19668938656, xLUV: 2938.259344266467, yRGB: [ 107.8750405712431, 104.9227523531321, 96.6166828951639 ], yLUV: [ 43.55547552175529, 2.454773865287526, 4.910344627685522 ] },
-  { name: "bayleef", xRGB: 99473.66431924883, xLUV: 9185.479505763615, yRGB: [ 194.7218309859155, 197.76467136150234, 127.41021126760563 ], yLUV: [ 77.92574384460951, 1.866109772670525, 46.65727072718589 ] },
-  { name: "applin", xRGB: 81722.66951124903, xLUV: 10481.949968408982, yRGB: [ 192.822342901474, 135.6733902249806, 116.16912335143522 ], yLUV: [ 64.07199226094923, 42.660037454427915, 24.379037438982273 ] },
-  { name: "vivillon-fancy", xRGB: 88918.23675373134, xLUV: 7029.204312039119, yRGB: [ 166.01641791044776, 165.31231343283582, 138.87033582089552 ], yLUV: [ 66.92427404256597, 2.8110356111490975, 18.05425160494249 ] },
-  { name: "yanma", xRGB: 98307.21287128713, xLUV: 7967.034418784176, yRGB: [ 182.56364922206507, 170.04809052333806, 148.35926449787837 ], yLUV: [ 70.39859113747633, 11.22814737585934, 14.583135185534639 ] },
-  { name: "slurpuff", xRGB: 131444.2807219662, xLUV: 7562.715984449547, yRGB: [ 220.97388632872503, 191.56336405529953, 199.36482334869433 ], yLUV: [ 80.17993192089405, 18.191710801149647, -1.533801818934449 ] },
-  { name: "carracosta", xRGB: 56108.97534316218, xLUV: 4279.008008527228, yRGB: [ 96.42119979664464, 125.7153024911032, 155.6187086934418 ], yLUV: [ 51.05212144399864, -14.326369148896037, -27.751891389348767 ] },
-  { name: "swadloon", xRGB: 60086.84526112186, xLUV: 9564.678108626498, yRGB: [ 134.892972275951, 172.88265635074146, 61.894906511927786 ], yLUV: [ 65.83742798259864, -17.52660251656832, 58.99098173521141 ] },
-  { name: "landorus-therian", xRGB: 85316.85448613377, xLUV: 7763.462444720062, yRGB: [ 192.83491027732464, 147.58107667210442, 123.08776508972268 ], yLUV: [ 64.91891690177155, 33.870425713474425, 19.90191127977813 ] },
-  { name: "primarina", xRGB: 121502.04492512479, xLUV: 6932.047924545721, yRGB: [ 177.63727121464225, 194.66943982251803, 205.09262340543538 ], yLUV: [ 77.28706876714419, -8.326939236487176, -10.120963375973329 ] },
-  { name: "grovyle", xRGB: 65788.90465988216, xLUV: 6029.701767951977, yRGB: [ 137.12747723620782, 151.76593465452598, 121.41671130155329 ], yLUV: [ 61.12476386331513, -3.178736428161925, 21.414891487621905 ] },
-  { name: "comfey", xRGB: 81482.37134146341, xLUV: 8086.063255168997, yRGB: [ 186.7609756097561, 157.8048780487805, 116.93231707317074 ], yLUV: [ 67.1479381183042, 22.71879672698971, 28.301984381284022 ] },
-  { name: "machamp", xRGB: 81681.88545727136, xLUV: 4834.842493487999, yRGB: [ 146.56191904047975, 155.823988005997, 170.19880059970015 ], yLUV: [ 63.546600608291676, -5.4561459224508, -12.993977718266823 ] },
-  { name: "vikavolt", xRGB: 71423.74780058651, xLUV: 4872.585454645742, yRGB: [ 112.83903551645487, 148.03095470837405, 146.94232649071358 ], yLUV: [ 58.38790590480296, -13.054084527467158, -3.4368784065770326 ] },
-  { name: "golem-alola", xRGB: 41257.36991070077, xLUV: 2500.264910883081, yRGB: [ 103.67700923263206, 108.51672468593915, 108.16906311487816 ], yLUV: [ 44.73385241308498, -2.0879761911519776, -0.33075902601539886 ] },
-  { name: "escavalier", xRGB: 92572.86679292929, xLUV: 8035.107412764473, yRGB: [ 197.1205808080808, 152.7907196969697, 145.5464015151515 ], yLUV: [ 67.85802857807114, 31.887653144716072, 12.040043262429844 ] },
-  { name: "celebi", xRGB: 116887.70249355116, xLUV: 7708.005912362944, yRGB: [ 191.03439380911436, 203.4737747205503, 173.05503009458297 ], yLUV: [ 79.76599381809632, -5.224841491537441, 20.28161868841947 ] },
-  { name: "beartic", xRGB: 151585.37357679915, xLUV: 8110.309456180868, yRGB: [ 211.15059076262085, 221.8655209452202, 228.11041890440387 ], yLUV: [ 87.47486028474485, -6.065498275556541, -6.267877891774208 ] },
-  { name: "poliwag", xRGB: 79381.65838509316, xLUV: 5265.422019221224, yRGB: [ 129.2724046140195, 145.50310559006212, 169.2910381543922 ], yLUV: [ 59.202416754193315, -7.48657686455352, -21.37140187101935 ] },
-  { name: "raikou", xRGB: 107972.92591328098, xLUV: 9083.794034019058, yRGB: [ 203.33253670194605, 188.6483441447593, 137.71799248890406 ], yLUV: [ 76.44215493506766, 11.485127031067673, 27.923856864054677 ] },
-  { name: "combusken", xRGB: 94002.84657671164, xLUV: 8488.280434128965, yRGB: [ 202.7256371814093, 170.40779610194903, 123.12043978010995 ], yLUV: [ 71.38603608391752, 25.542099554875794, 34.64245864184223 ] },
-  { name: "drilbur", xRGB: 72880.98914354644, xLUV: 4239.495616916133, yRGB: [ 143.60796139927623, 137.71230398069963, 142.59288299155608 ], yLUV: [ 57.07515965618879, 3.4161387295999837, -3.5197810665880325 ] },
-  { name: "unfezant", xRGB: 56204.38779463997, xLUV: 4130.118146925686, yRGB: [ 126.45979980626413, 126.30061349693251, 122.84791733936068 ], yLUV: [ 52.96690687483507, 3.1716708939893827, 3.55192810184916 ] },
-  { name: "zekrom", xRGB: 26296.767174775527, xLUV: 1644.3297808557757, yRGB: [ 74.60263102944248, 87.7723950720401, 88.26936730006264 ], yLUV: [ 35.670811932211215, -6.324279086935617, -1.8499980732747188 ] },
-  { name: "minior", xRGB: 99062.58482758621, xLUV: 7218.407729914343, yRGB: [ 207.16275862068966, 146.7103448275862, 165.65241379310345 ], yLUV: [ 67.40160001419669, 38.270449943475256, -4.419351911823624 ] },
-  { name: "nidoran-f", xRGB: 110389.52578361981, xLUV: 6403.836128854413, yRGB: [ 169.1577350859454, 180.69160768452983, 203.24368048533873 ], yLUV: [ 72.94863532400541, -6.805769250844867, -19.520666334727178 ] },
-  { name: "kangaskhan", xRGB: 78504.4776119403, xLUV: 5852.510167248251, yRGB: [ 177.90310741375092, 154.10643503792514, 123.40078297039393 ], yLUV: [ 64.49873316866343, 17.324797481738788, 24.40312934500095 ] },
-  { name: "krookodile", xRGB: 65026.99585635359, xLUV: 5069.695899295102, yRGB: [ 158.40055248618785, 118.0889502762431, 126.41519337016575 ], yLUV: [ 53.793103392298875, 27.309786542766222, -0.00011589579816622796 ] },
-  { name: "floette-yellow", xRGB: 92885.29002808989, xLUV: 6809.640882360014, yRGB: [ 166.9796348314607, 179.8370786516854, 147.72331460674158 ], yLUV: [ 71.31170479417139, -4.380616481599057, 20.173290635647984 ] },
-  { name: "patrat", xRGB: 81771.4204851752, xLUV: 6505.218150196065, yRGB: [ 181.73045822102426, 151.69407008086253, 119.366576819407 ], yLUV: [ 64.27969187497935, 22.6375995864905, 24.18338423214536 ] },
-  { name: "hoothoot", xRGB: 82653.6128600134, xLUV: 6598.747752433058, yRGB: [ 178.926992632284, 147.44340254521097, 122.8030810448761 ], yLUV: [ 62.59223913494644, 23.2571534864904, 20.588830083674484 ] },
-  { name: "litwick", xRGB: 136693.65326975478, xLUV: 7901.130169539683, yRGB: [ 199.49523160762942, 203.60626702997274, 218.6607629427793 ], yLUV: [ 81.70698372728384, -2.8010273954069507, -13.379696666482552 ] },
-  { name: "wormadam-sandy", xRGB: 74119.43031914893, xLUV: 6147.923722685039, yRGB: [ 172.7218085106383, 149.89840425531915, 111.8654255319149 ], yLUV: [ 62.76516209179247, 17.857669446619656, 28.062726160452524 ] },
-  { name: "klefki", xRGB: 89625.69494047618, xLUV: 5403.289689374475, yRGB: [ 169.63318452380952, 164.18154761904762, 157.06026785714286 ], yLUV: [ 67.18734302477985, 4.428706454057276, 5.621881865834242 ] },
-  { name: "hoopa-confined", xRGB: 92250.67591721543, xLUV: 7487.508809768765, yRGB: [ 192.42944496707432, 155.95860771401692, 144.22013170272814 ], yLUV: [ 67.87941272045225, 24.118929214352217, 7.497761340429799 ] },
-  { name: "blissey", xRGB: 144763.69469411424, xLUV: 7628.959886601824, yRGB: [ 224.0953899681067, 206.0060887213685, 216.44563641635256 ], yLUV: [ 84.26126317157623, 10.08206568857032, -5.692785355282164 ] },
-  { name: "klink", xRGB: 90288.0271170314, xLUV: 5115.484282223133, yRGB: [ 156.04091341579448, 163.39248334919125, 164.72692673644147 ], yLUV: [ 65.99991237574488, -2.505912867339087, -1.6467839384976048 ] },
-  { name: "kabutops", xRGB: 75022.68787712562, xLUV: 6736.199972041438, yRGB: [ 181.07844212835985, 148.04827207899066, 107.1848601206802 ], yLUV: [ 63.08609036974035, 25.16245709834808, 29.022055458285937 ] },
-  { name: "zangoose", xRGB: 123450.00996828274, xLUV: 7861.591374007829, yRGB: [ 207.11961939284097, 184.73538740371546, 188.91798821930223 ], yLUV: [ 77.17572950711026, 15.686570787167174, 0.7442816861338583 ] },
-  { name: "flabebe-white", xRGB: 104182.51237964237, xLUV: 7012.933440201188, yRGB: [ 181.39958734525447, 187.39752407152682, 159.94497936726273 ], yLUV: [ 74.60594270677605, -2.0006152596012976, 17.73778856118368 ] },
-  { name: "glastrier", xRGB: 111225.31627701808, xLUV: 6515.006518535054, yRGB: [ 161.0414644905161, 171.4609616232907, 193.6669607410675 ], yLUV: [ 68.80684783950593, -4.672294860002178, -18.740633879847778 ] },
-  { name: "snom", xRGB: 116036.01715265866, xLUV: 6365.615933567631, yRGB: [ 178.21783876500857, 186.87993138936534, 191.3310463121784 ], yLUV: [ 74.24832693982779, -4.789182198277777, -4.671353115648359 ] },
-  { name: "electivire", xRGB: 78843.46684894053, xLUV: 7274.494820481018, yRGB: [ 167.51332877648667, 156.15675552517658, 103.41763499658236 ], yLUV: [ 62.873280534218736, 10.495792687965958, 35.43443884711032 ] },
-  { name: "tyranitar", xRGB: 85140.97134459956, xLUV: 6825.063357909443, yRGB: [ 166.27773695811902, 180.8087190791085, 137.31569924075436 ], yLUV: [ 71.09510208177704, -6.431884690439555, 29.127045064069023 ] },
-  { name: "golisopod", xRGB: 89458.7394349191, xLUV: 5059.062732169934, yRGB: [ 157.8481043226274, 165.3574015938179, 162.0222168558319 ], yLUV: [ 66.396425539726, -3.900685715345939, 1.7548899323122518 ] },
-  { name: "jellicent", xRGB: 136462.0661498708, xLUV: 8265.246699459318, yRGB: [ 180.23514211886305, 213.25555555555556, 232.10051679586564 ], yLUV: [ 83.6308485767867, -16.04564815857177, -18.995521631157263 ] },
-  { name: "lucario", xRGB: 57925.663057600694, xLUV: 3932.1387512447113, yRGB: [ 113.47812906019922, 129.30749242096147, 133.51147682979644 ], yLUV: [ 52.338643294327824, -6.851813856617799, -5.821220256774113 ] },
-  { name: "floette-eternal", xRGB: 70287.10089224434, xLUV: 5275.012497580893, yRGB: [ 135.75497597803707, 120.03843514070007, 129.01098146877146 ], yLUV: [ 51.68158940415829, 11.519548885114006, -3.402156991351381 ] },
-  { name: "ninjask", xRGB: 94495.72621240024, xLUV: 6077.103964382337, yRGB: [ 170.44874155923878, 161.59914057704114, 150.77716390423572 ], yLUV: [ 66.07153251159565, 6.6177822492292275, 8.224130847384131 ] },
-  { name: "dracovish", xRGB: 59351.66193280221, xLUV: 7736.786883087896, yRGB: [ 112.28576376861794, 112.83477658468999, 124.85244198129546 ], yLUV: [ 50.95511835336664, 13.353014829969236, -5.2758014717685215 ] },
-  { name: "chingling", xRGB: 97861.15990730011, xLUV: 11947.942144716173, yRGB: [ 208.19582850521437, 182.70567786790266, 95.40092699884126 ], yLUV: [ 75.09413227613936, 21.880992351366814, 50.089397438805065 ] },
-  { name: "nidorino", xRGB: 92280.04853273138, xLUV: 5726.430321421679, yRGB: [ 173.07957110609482, 143.7229119638826, 180.70654627539503 ], yLUV: [ 63.53110404832067, 16.34231066594205, -24.302103691043385 ] },
-  { name: "popplio", xRGB: 87435.53234115627, xLUV: 6822.233408807756, yRGB: [ 128.582140812822, 154.84716657126503, 196.1064682312536 ], yLUV: [ 63.12091160561884, -12.838824590870617, -37.098076061700986 ] },
-  { name: "claydol", xRGB: 61137.68144766873, xLUV: 4419.753990423725, yRGB: [ 135.02445386371048, 115.81838930551027, 111.73328985979785 ], yLUV: [ 49.395317434373155, 13.881200038479943, 5.875876478793763 ] },
-  { name: "venipede", xRGB: 65542.41798606713, xLUV: 8603.547266269397, yRGB: [ 182.57504749841672, 95.13109563014567, 114.61811272957569 ], yLUV: [ 51.8472504261819, 59.20190367017895, 1.5530392917851226 ] },
-  { name: "pheromosa", xRGB: 121840.98574338085, xLUV: 6490.320477977047, yRGB: [ 192.82222868780914, 191.33954029677045, 189.1015420424789 ], yLUV: [ 76.69771165972752, 0.9935042199934282, 1.8388475785499316 ] },
-  { name: "carbink", xRGB: 80571.88636363637, xLUV: 4662.995211683356, yRGB: [ 143.44628099173553, 147.28650137741047, 165.65633608815426 ], yLUV: [ 60.523552845229574, -2.6883933713188295, -15.120382561998698 ] },
-  { name: "copperajah", xRGB: 29833.614043950492, xLUV: 3541.9690766333465, yRGB: [ 74.20383935337206, 96.69461985349835, 76.99141197272039 ], yLUV: [ 39.18259140977786, -3.304334245458025, 11.264671405284624 ] },
-  { name: "nidorina", xRGB: 115369.76333333334, xLUV: 6806.900311113501, yRGB: [ 172.04, 193.086, 202.45866666666666 ], yLUV: [ 76.45577235783935, -11.063731562924199, -9.895624954366072 ] },
-  { name: "magmortar", xRGB: 71006.93723849373, xLUV: 12067.260994817816, yRGB: [ 200.83117154811717, 126.93451882845189, 65.92301255230126 ], yLUV: [ 60.62137139536646, 59.059880721045616, 40.19211368798133 ] },
-  { name: "victini", xRGB: 88809.016689847, xLUV: 8956.467931923373, yRGB: [ 194.3059805285118, 160.9089012517385, 120.02851182197496 ], yLUV: [ 68.6519523471421, 28.684216766641274, 29.458433074529022 ] },
-  { name: "dewgong", xRGB: 152404.65734720416, xLUV: 7963.475056702321, yRGB: [ 220.41417425227567, 220.49154746423926, 224.78023407022107 ], yLUV: [ 87.78309673803572, -0.2800261308812092, -3.4087849092722378 ] },
-  { name: "darmanitan", xRGB: 61141.427085852476, xLUV: 9586.741408911425, yRGB: [ 185.51584038694074, 102.95792019347037, 80.08706166868198 ], yLUV: [ 53.23320567031625, 62.94620099291631, 24.608661735210585 ] },
-  { name: "meowth", xRGB: 109629.26, xLUV: 6625.299435294509, yRGB: [ 192.70066666666668, 183.94, 165.206 ], yLUV: [ 74.32335499366148, 6.696625810198601, 13.920903664062052 ] },
-  { name: "kadabra", xRGB: 80731.86215139442, xLUV: 9438.420282468005, yRGB: [ 185.6792828685259, 171.36812749003985, 83.78764940239044 ], yLUV: [ 69.24120326316346, 13.040002376919468, 48.94701366069455 ] },
-  { name: "spritzee", xRGB: 107222.83968113374, xLUV: 6572.999589427474, yRGB: [ 200.58193091231178, 161.9140832595217, 174.30646589902568 ], yLUV: [ 70.04195632177743, 24.075857776174995, -3.7615784808792707 ] },
-  { name: "yamask-galar", xRGB: 26611.43401360544, xLUV: 2209.481748187655, yRGB: [ 83.5578231292517, 71.35510204081632, 78.65986394557824 ], yLUV: [ 31.408739280217084, 6.8199263737752105, -3.309092036247688 ] },
-  { name: "latios", xRGB: 70085.01571125265, xLUV: 5600.018490880905, yRGB: [ 104.70700636942675, 141.5583864118896, 172.6348195329087 ], yLUV: [ 57.532415224676136, -12.819545279846208, -29.07757654286302 ] },
-  { name: "oricorio-pom-pom", xRGB: 116710.264158918, xLUV: 13620.145978635204, yRGB: [ 224.25866441251057, 223.29543533389688, 103.57311918850381 ], yLUV: [ 86.66766559014701, 5.6805881592974385, 70.40743916442595 ] },
-  { name: "moltres-galar", xRGB: 41077.84262796027, xLUV: 6867.062979753078, yRGB: [ 125.66348357524828, 73.0546218487395, 91.3292589763178 ], yLUV: [ 39.752264205728714, 37.70535605499155, -1.5793876908073663 ] },
-  { name: "larvesta", xRGB: 120947.90838206628, xLUV: 7613.361906181972, yRGB: [ 201.76315789473685, 181.4327485380117, 175.9317738791423 ], yLUV: [ 74.96215463955413, 15.239800513570865, 6.175177953581658 ] },
-  { name: "shellos-west", xRGB: 102041.92900763359, xLUV: 7470.679117875709, yRGB: [ 204.55801526717556, 162.48625954198474, 164.64045801526717 ], yLUV: [ 71.09499263414119, 26.478378718329363, 3.1193123476162765 ] },
-  { name: "parasect", xRGB: 104294.45517540061, xLUV: 9773.436314617233, yRGB: [ 220.14595062797747, 167.8354265915981, 128.59333044608056 ], yLUV: [ 72.848502194667, 36.87775858129341, 25.18550818804712 ] },
-  { name: "vanillish", xRGB: 126154.90135853515, xLUV: 7528.4190888232215, yRGB: [ 178.63555818074425, 196.78027170702893, 216.2203189604253 ], yLUV: [ 78.49541647754064, -8.445709510511183, -17.91850700043725 ] },
-  { name: "vivillon-river", xRGB: 58301.051798024964, xLUV: 5845.705444493813, yRGB: [ 135.39817402645798, 139.03763741382522, 102.02534004099124 ], yLUV: [ 56.900716465273796, 5.8998274699414575, 22.639062582497875 ] },
-  { name: "aurorus", xRGB: 118229.12195913072, xLUV: 7862.357447264655, yRGB: [ 174.7531625040545, 195.00648718780408, 206.38209536166073 ], yLUV: [ 77.56068884840235, -9.645771574550896, -13.129796704015765 ] },
-  { name: "geodude-alola", xRGB: 73415.94743816255, xLUV: 4222.940894156261, yRGB: [ 135.2089222614841, 146.71687279151942, 162.06934628975264 ], yLUV: [ 59.77979423482891, -6.687104298475339, -13.613980709096296 ] },
-  { name: "combee", xRGB: 98449.07529239765, xLUV: 10137.370606976008, yRGB: [ 207.30555555555554, 178.2017543859649, 104.02558479532163 ], yLUV: [ 73.85871356450741, 24.59076212403305, 41.075185569873454 ] },
-  { name: "happiny", xRGB: 113566.18886861314, xLUV: 6526.16852776315, yRGB: [ 206.4507299270073, 176.59215328467153, 179.8339416058394 ], yLUV: [ 74.42520598943447, 18.718611895331073, 1.6833518759299069 ] },
-  { name: "charmander", xRGB: 99689.07251631617, xLUV: 8682.191631625217, yRGB: [ 213.62799129804205, 176.38578680203045, 127.74039158810733 ], yLUV: [ 74.13993887353139, 28.656396612366102, 35.820913893250626 ] },
-  { name: "flabebe-yellow", xRGB: 96984.14649243467, xLUV: 7705.685240709269, yRGB: [ 182.08940852819808, 185.55020632737276, 139.33218707015132 ], yLUV: [ 73.80166818288684, 0.5730476186619424, 29.898508855692995 ] },
-  { name: "snivy", xRGB: 80969.58333333333, xLUV: 8309.031355877194, yRGB: [ 150.93055555555554, 181.08333333333334, 116.93055555555556 ], yLUV: [ 70.40484807795625, -11.482699555728436, 39.51537405232293 ] },
-  { name: "hariyama", xRGB: 83606.47354645729, xLUV: 7915.199788057779, yRGB: [ 184.56234810244905, 151.81136661058142, 121.2024677509815 ], yLUV: [ 64.73211399657325, 25.46955144830919, 22.919742621713777 ] },
-  { name: "weezing-galar", xRGB: 64501.57246579168, xLUV: 4645.630780603653, yRGB: [ 133.45573862049707, 141.2046914269757, 126.89639765428652 ], yLUV: [ 56.96418312417409, -3.6953209000989826, 8.380299971868173 ] },
-  { name: "diggersby", xRGB: 64878.26071103008, xLUV: 4929.309394515723, yRGB: [ 157.82338195077483, 138.65382862351868, 109.26025524156792 ], yLUV: [ 58.284146431844704, 14.277579115971017, 20.825706976580246 ] },
-  { name: "cyndaquil", xRGB: 94091.39393939394, xLUV: 7051.214380850895, yRGB: [ 165.78512396694214, 176.32231404958677, 144.50780532598714 ], yLUV: [ 70.10259836854875, 0.6996142996310896, 21.36507483727929 ] },
-  { name: "forretress", xRGB: 92813.18742293464, xLUV: 7734.663457176607, yRGB: [ 188.97564734895192, 141.87453760789148, 143.2632552404439 ], yLUV: [ 64.3994859991532, 32.49778838746716, 5.360836209585792 ] },
-  { name: "vivillon-ocean", xRGB: 80702.4418344519, xLUV: 8513.733668267914, yRGB: [ 162.05145413870247, 153.66554809843402, 126.44780014914244 ], yLUV: [ 64.04813848413824, 13.606016495764603, 17.08713437556222 ] },
-  { name: "houndour", xRGB: 47145.83631165118, xLUV: 3276.412788929036, yRGB: [ 116.13223731236597, 106.84846318799143, 97.88062902072909 ], yLUV: [ 44.81473878022389, 7.241439634569415, 6.678429156598323 ] },
-  { name: "lurantis", xRGB: 98301.90819672131, xLUV: 7371.587658865465, yRGB: [ 206.31598360655738, 149.84959016393444, 159.6655737704918 ], yLUV: [ 67.8667685667044, 37.383075166641135, 1.624241811427212 ] },
-  { name: "mismagius", xRGB: 54702.9032369146, xLUV: 4209.180416341295, yRGB: [ 139.30165289256198, 99.04373278236915, 143.58677685950414 ], yLUV: [ 47.43043817560517, 19.50801286300319, -28.727340211347286 ] },
-  { name: "passimian", xRGB: 95795.8300942285, xLUV: 6166.83332775444, yRGB: [ 167.6198468786808, 174.2005300353357, 152.60159010600708 ], yLUV: [ 69.22904727707501, -2.2543610016003965, 14.64123466265179 ] },
-  { name: "corviknight", xRGB: 44374.68220140515, xLUV: 2638.090766542984, yRGB: [ 84.41241217798594, 79.61943793911007, 107.907962529274 ], yLUV: [ 33.358448085734516, 0.21568303486625404, -17.17794720831148 ] },
-  { name: "tranquill", xRGB: 90244.37072243346, xLUV: 5050.8905732487065, yRGB: [ 157.64591254752852, 151.69106463878327, 153.02423954372622 ], yLUV: [ 61.796834167710784, 3.6590898007132036, -0.10450524330537715 ] },
-  { name: "marshtomp", xRGB: 99968.38886198547, xLUV: 6929.54610260723, yRGB: [ 164.97820823244552, 183.45181598062953, 174.28910411622277 ], yLUV: [ 73.0236176226303, -5.921534929819151, 4.2171735357194216 ] },
-  { name: "steelix", xRGB: 105236.72527472528, xLUV: 5880.4613995993805, yRGB: [ 168.9945054945055, 176.8186813186813, 196.0 ], yLUV: [ 71.63024447728962, -5.143393802906339, -16.389253307206335 ] },
-  { name: "vivillon-pokeball", xRGB: 61003.39365079365, xLUV: 5381.001462280602, yRGB: [ 146.4126984126984, 110.12698412698413, 107.76190476190476 ], yLUV: [ 49.81906459022748, 26.368015396182102, 7.22827552515199 ] },
-  { name: "vanilluxe", xRGB: 131142.4238126649, xLUV: 7580.109783374255, yRGB: [ 186.3552110817942, 201.028364116095, 219.00395778364117 ], yLUV: [ 80.22212080411555, -7.0827893702065765, -16.28674201447013 ] },
-  { name: "dwebble", xRGB: 46913.526417525776, xLUV: 5387.275809906389, yRGB: [ 144.12757731958763, 107.24677835051547, 78.73453608247422 ], yLUV: [ 48.09286904648246, 28.531877897343247, 21.50527567440616 ] },
-  { name: "muk", xRGB: 67070.71044219499, xLUV: 3766.9233435857527, yRGB: [ 146.11667554608417, 131.30394246137453, 150.0293020777837 ], yLUV: [ 56.215592067923545, 7.191055535088562, -12.832535975114551 ] },
-  { name: "drowzee", xRGB: 78135.23455440131, xLUV: 9975.512365646417, yRGB: [ 178.52323674138873, 169.89775833788957, 72.2941498086386 ], yLUV: [ 67.67338542795764, 9.661151472570038, 53.13515508169707 ] },
-  { name: "bergmite", xRGB: 132739.17286501377, xLUV: 8137.66159058327, yRGB: [ 176.54476584022038, 213.05027548209367, 225.64807162534436 ], yLUV: [ 83.02900052652689, -17.936728392402966, -14.461006270943239 ] },
-  { name: "jigglypuff", xRGB: 130590.76306370794, xLUV: 7077.645413908012, yRGB: [ 208.87974230493916, 192.5733715103794, 199.57050823192554 ], yLUV: [ 79.07713280678574, 10.906279975819297, -2.8824155054030087 ] },
-  { name: "eelektrik", xRGB: 69117.90168350168, xLUV: 6009.62616074609, yRGB: [ 147.4936026936027, 137.27070707070706, 126.23501683501684 ], yLUV: [ 57.74441589331438, 10.66488964156874, 7.1300079130873755 ] },
-  { name: "cryogonal", xRGB: 81331.21503720811, xLUV: 5652.611802376023, yRGB: [ 121.75263022838081, 151.8178085706954, 179.9679240441365 ], yLUV: [ 60.798053484043166, -14.730561001236367, -26.544491319427628 ] },
-  { name: "lileep", xRGB: 87080.14756174794, xLUV: 5538.2602125011945, yRGB: [ 172.3793540215326, 149.68397720075998, 157.17732742241924 ], yLUV: [ 63.62017608582571, 13.733073774252231, -3.5652240579077485 ] },
-  { name: "deoxys-attack", xRGB: 73873.11057268722, xLUV: 7967.098527351158, yRGB: [ 171.32555066079294, 144.12555066079295, 118.54317180616741 ], yLUV: [ 62.77621982833239, 27.176977730401653, 18.094694043035215 ] },
-  { name: "espeon", xRGB: 109047.38836104513, xLUV: 6035.018560867281, yRGB: [ 187.7268408551069, 169.52553444180523, 190.17992874109262 ], yLUV: [ 71.18346335413999, 10.208163308279094, -13.661944558274707 ] },
-  { name: "zorua", xRGB: 35820.64417910448, xLUV: 3697.5864950258056, yRGB: [ 102.24358208955223, 83.42686567164179, 104.87223880597016 ], yLUV: [ 38.6563974163436, 12.084337641643721, -13.204620865752483 ] },
-  { name: "smoochum", xRGB: 98416.02341772152, xLUV: 8166.23125530615, yRGB: [ 201.90189873417722, 171.12974683544303, 140.52974683544304 ], yLUV: [ 72.02401928723154, 21.308323785209293, 23.968199301356453 ] },
-  { name: "wooper", xRGB: 103971.69561324977, xLUV: 6395.321295249391, yRGB: [ 157.0787824529991, 180.86660698299016, 200.66696508504924 ], yLUV: [ 72.2577275277591, -11.981783233493388, -18.46721898683477 ] },
-  { name: "ferroseed", xRGB: 74296.69380925823, xLUV: 5256.106558906953, yRGB: [ 133.2883435582822, 151.81483547127718, 131.27830451756833 ], yLUV: [ 60.11153578790353, -7.57649784391324, 11.83878015927689 ] },
-  { name: "dragonair", xRGB: 122772.93819855359, xLUV: 7612.275701964331, yRGB: [ 173.35305719921104, 193.79552925706773, 214.930966469428 ], yLUV: [ 77.29902368266454, -9.54197600919973, -19.821760717212772 ] },
-  { name: "metagross", xRGB: 62119.85258790129, xLUV: 4464.0852698205235, yRGB: [ 100.15483730072069, 141.91788600131034, 157.46625900851714 ], yLUV: [ 56.3069670369762, -18.28364868662147, -17.003080931425863 ] },
-  { name: "leafeon", xRGB: 95893.70408163265, xLUV: 7634.970848216728, yRGB: [ 177.26530612244898, 187.73469387755102, 143.8469387755102 ], yLUV: [ 74.44673942779562, -1.0531674768699477, 29.534207750884388 ] },
-  { name: "grookey", xRGB: 79773.6513761468, xLUV: 8872.539908221055, yRGB: [ 167.52339449541284, 165.7880733944954, 96.00963302752294 ], yLUV: [ 66.88420015577466, 7.25350009904363, 40.469735241731975 ] },
-  { name: "skuntank", xRGB: 68174.69368830392, xLUV: 4248.989950018344, yRGB: [ 141.76159138498355, 123.54113072090936, 135.59317977864194 ], yLUV: [ 52.64534541964308, 8.71808883903139, -6.552292554729153 ] },
-  { name: "jangmo-o", xRGB: 94589.62385814078, xLUV: 7005.419255236093, yRGB: [ 180.91080064481463, 175.9065018807093, 139.93820526598603 ], yLUV: [ 70.68343116875307, 4.989655159952095, 23.648771755557625 ] },
-  { name: "sawsbuck-summer", xRGB: 32334.976699648898, xLUV: 3602.522108616094, yRGB: [ 92.77018831790616, 99.0536227258219, 66.01404404723907 ], yLUV: [ 41.35743650525533, 5.19611333836764, 21.835895460680433 ] },
-  { name: "dustox", xRGB: 66920.1091954023, xLUV: 7015.348490744509, yRGB: [ 154.20498084291188, 153.72298850574714, 105.54980842911877 ], yLUV: [ 62.855622460674525, 3.278737790290438, 29.913437538278767 ] },
-  { name: "sinistea", xRGB: 79948.84538653366, xLUV: 6718.385958774774, yRGB: [ 137.0847880299252, 150.01870324189525, 149.79177057356608 ], yLUV: [ 61.27389314533415, -2.512872594806419, -3.170813686785964 ] },
-  { name: "snover", xRGB: 102440.07602591792, xLUV: 5965.890733916985, yRGB: [ 171.10151187904967, 179.4950323974082, 171.0060475161987 ], yLUV: [ 71.80551793587392, -2.9401172962681645, 5.560451571683571 ] },
-  { name: "durant", xRGB: 68394.04009623095, xLUV: 3841.630771477039, yRGB: [ 137.59502806736168, 134.14595028067362, 134.54129911788291 ], yLUV: [ 55.13974375413305, 2.0631601234005172, 0.25641077380759336 ] },
-  { name: "inteleon", xRGB: 74484.09971625455, xLUV: 5171.660429701343, yRGB: [ 122.20753952168626, 142.45156059991893, 141.16578840697204 ], yLUV: [ 56.56950660420215, -7.849703527920901, -3.1670283537263964 ] },
-  { name: "sylveon", xRGB: 123179.8105459636, xLUV: 7258.945102685943, yRGB: [ 208.01399906672887, 185.46896873541763, 195.924405039664 ], yLUV: [ 77.50032607250905, 14.581034370482673, -4.679396672623614 ] },
-  { name: "necrozma-dusk-mane", xRGB: 42949.77673399092, xLUV: 3066.7609881831527, yRGB: [ 99.89071551589166, 102.37388445279474, 91.12447158290277 ], yLUV: [ 41.75762116771799, 1.440616546093622, 6.303297658081416 ] },
-  { name: "crustle", xRGB: 41543.92948595452, xLUV: 3659.5258987480756, yRGB: [ 132.9560481559335, 109.67972482323715, 82.67724058857252 ], yLUV: [ 47.50477725074359, 17.014657040947903, 20.691917730362956 ] },
-  { name: "slakoth", xRGB: 113326.78873239437, xLUV: 6416.386275829547, yRGB: [ 199.90140845070422, 188.1267605633803, 177.74647887323943 ], yLUV: [ 76.58736278390568, 7.695694384470378, 9.256515993259528 ] },
-  { name: "kingdra", xRGB: 88723.3601246106, xLUV: 7373.950458546718, yRGB: [ 126.19190031152648, 171.5993769470405, 185.50654205607478 ], yLUV: [ 68.0517789774182, -17.190035023749587, -20.022328006123818 ] },
-  { name: "arcanine", xRGB: 110542.04416403786, xLUV: 8540.85433067896, yRGB: [ 213.9211356466877, 183.89934040722684, 144.5121881273301 ], yLUV: [ 76.11034362335396, 23.26088926209398, 30.17159749629181 ] },
-  { name: "dhelmise", xRGB: 51128.28842177808, xLUV: 5041.472141969063, yRGB: [ 94.66988283942109, 134.67057201929703, 112.86526533425224 ], yLUV: [ 53.88227241765107, -9.146822206397829, 7.902504817414841 ] },
-  { name: "bagon", xRGB: 88337.5138778747, xLUV: 5654.8485707693335, yRGB: [ 143.98096748612213, 167.72164948453607, 178.87073750991277 ], yLUV: [ 67.10094490023066, -11.241040883382597, -12.320945853789267 ] },
-  { name: "drifloon", xRGB: 88006.31773667029, xLUV: 5989.556612812639, yRGB: [ 172.4602829162133, 153.18498367791076, 158.01305767138194 ], yLUV: [ 64.77749958170463, 10.384985992872199, -5.211230613040119 ] },
-  { name: "burmy-plant", xRGB: 32928.78988764045, xLUV: 4254.717442308341, yRGB: [ 85.63033707865169, 118.15955056179776, 70.13932584269664 ], yLUV: [ 46.16699947256765, -14.76236665435334, 26.87601772004862 ] },
-  { name: "clobbopus", xRGB: 89636.25236294896, xLUV: 8267.785162800885, yRGB: [ 178.45841209829868, 139.07277882797732, 131.96124763705103 ], yLUV: [ 60.81396956781391, 29.797923265209562, 8.403402183981518 ] },
-  { name: "cherubi", xRGB: 61946.20176297747, xLUV: 10374.16644351569, yRGB: [ 162.27424094025466, 111.25759059745347, 99.10284035259549 ], yLUV: [ 55.430556200371996, 44.84485668303998, 18.88940618073246 ] },
-  { name: "binacle", xRGB: 87705.15416285452, xLUV: 6327.690860942682, yRGB: [ 164.78179322964317, 163.31976212259835, 145.69762122598354 ], yLUV: [ 66.65813569517795, 4.755858770996791, 9.325159252134613 ] },
-  { name: "pyukumuku", xRGB: 37753.036758563074, xLUV: 3378.8431726642502, yRGB: [ 113.10693400167085, 86.48705096073517, 98.42355889724311 ], yLUV: [ 40.22761334349456, 17.38643898020221, -3.6274088752411697 ] },
-  { name: "florges-yellow", xRGB: 82797.58085035153, xLUV: 6801.996461597908, yRGB: [ 142.96618680950786, 176.45965852025444, 142.09541345831937 ], yLUV: [ 68.96457657853432, -12.113083891903754, 21.159281711069102 ] },
-  { name: "rotom-mow", xRGB: 72280.99469652328, xLUV: 9183.955456453124, yRGB: [ 171.19210371243372, 154.99351797289333, 91.29110194460813 ], yLUV: [ 64.55065162193124, 17.168730651350558, 40.60801272967281 ] },
-  { name: "gligar", xRGB: 90374.59132720105, xLUV: 6397.778062019833, yRGB: [ 183.79807271134473, 135.58300481822164, 174.69864213753831 ], yLUV: [ 62.52832915609613, 28.253540444284774, -22.760667514578337 ] },
-  { name: "togedemaru", xRGB: 123288.41896361632, xLUV: 7080.7225658132065, yRGB: [ 200.91345093715546, 199.21775082690186, 189.4983461962514 ], yLUV: [ 79.83947797687894, 1.5155749778823477, 6.533503815054332 ] },
-  { name: "shedinja", xRGB: 88575.83465085638, xLUV: 6638.786137471064, yRGB: [ 188.231884057971, 169.79841897233203, 135.13768115942028 ], yLUV: [ 69.97262512690001, 13.832460267470427, 25.674145539510867 ] },
-  { name: "porygon", xRGB: 86442.29723502304, xLUV: 8854.185108004094, yRGB: [ 126.6774193548387, 165.573732718894, 173.48617511520737 ], yLUV: [ 67.97036755619925, -4.7127455034076, -6.736634622808676 ] },
-  { name: "fraxure", xRGB: 48372.61726272352, xLUV: 4329.711038431881, yRGB: [ 117.76650618982119, 124.91609353507566, 107.07427785419533 ], yLUV: [ 51.440792120440285, -1.384748808334681, 12.139960328027584 ] },
-  { name: "zeraora", xRGB: 85420.90165546631, xLUV: 8069.235910448327, yRGB: [ 174.1150631044091, 172.84281265366334, 109.66153089657433 ], yLUV: [ 68.90783042715992, 4.205858936218335, 36.759555377697076 ] },
-  { name: "watchog", xRGB: 76281.78423700391, xLUV: 8035.476067643002, yRGB: [ 181.57406372275014, 136.16154276131917, 91.86081609837898 ], yLUV: [ 60.362827311530616, 34.04342027669405, 27.56085778593919 ] },
-  { name: "furret", xRGB: 102448.59868421052, xLUV: 6931.782973525096, yRGB: [ 202.09169407894737, 174.67639802631578, 146.75082236842104 ], yLUV: [ 72.57887494656521, 19.851519635755057, 23.17522319693231 ] },
-  { name: "gurdurr", xRGB: 73125.7773828756, xLUV: 5321.7829108468595, yRGB: [ 165.9903069466882, 125.95928917609046, 128.65621970920841 ], yLUV: [ 56.455100010137706, 24.416987665724267, 4.469935875972223 ] },
-  { name: "golem", xRGB: 59885.88771295818, xLUV: 3554.1517227413447, yRGB: [ 141.75735673722252, 134.56504904491482, 129.5844088797109 ], yLUV: [ 56.26091545445994, 4.695996101545628, 4.673307484342439 ] },
-  { name: "morpeko", xRGB: 62548.420187793425, xLUV: 6240.817487068442, yRGB: [ 154.89201877934272, 133.8462441314554, 92.60915492957747 ], yLUV: [ 55.8963075276536, 16.499641327870734, 28.519752020512712 ] },
-  { name: "conkeldurr", xRGB: 73131.39377431906, xLUV: 4637.932745266284, yRGB: [ 161.16264591439688, 146.903813229572, 143.63081712062257 ], yLUV: [ 61.89922083432157, 9.379862063876615, 3.7715632755123334 ] },
-  { name: "rayquaza", xRGB: 55041.803347280336, xLUV: 5113.290941043394, yRGB: [ 109.06276150627615, 145.47280334728035, 115.28451882845188 ], yLUV: [ 56.872861623843576, -15.257815861712585, 19.11733303881201 ] },
-  { name: "cottonee", xRGB: 111743.63254593176, xLUV: 8764.808241897172, yRGB: [ 175.08661417322836, 210.58880139982503, 168.49781277340333 ], yLUV: [ 81.0089666977941, -16.20970400823597, 26.894949850032503 ] },
-  { name: "basculin-bluestriped", xRGB: 78341.62940824866, xLUV: 6457.063691105181, yRGB: [ 132.39270771069934, 174.10520023909146, 142.7573221757322 ], yLUV: [ 67.47657271591615, -18.77435905322017, 18.946330541159135 ] },
-  { name: "zygarde-complete", xRGB: 27629.038839006054, xLUV: 2313.7923928527052, yRGB: [ 83.77469200250574, 78.63833785759032, 70.91522238463145 ], yLUV: [ 33.029118776520946, 3.7545107231469643, 5.649622279108786 ] },
-  { name: "cufant", xRGB: 55025.66156282999, xLUV: 9097.078013482598, yRGB: [ 151.64625131995777, 106.96990496304119, 79.53009503695881 ], yLUV: [ 51.01738357324631, 44.67572740276123, 23.84820710481206 ] },
-  { name: "swalot", xRGB: 86802.91261556814, xLUV: 5855.9429725301325, yRGB: [ 160.01699970175963, 143.22994333432746, 185.1544885177453 ], yLUV: [ 61.97991069502861, 6.140993579826848, -32.54757728655638 ] },
-  { name: "weepinbell", xRGB: 101375.63511326861, xLUV: 9597.65838529783, yRGB: [ 185.9822006472492, 199.04854368932038, 133.89563106796118 ], yLUV: [ 77.68269160825943, -3.912210842261917, 40.359006454426236 ] },
-  { name: "deoxys-speed", xRGB: 58953.804368471036, xLUV: 5182.278557349435, yRGB: [ 133.96581196581195, 131.2454890788224, 120.86467236467236 ], yLUV: [ 55.3573060121825, 8.319469666548988, 6.2911516634249285 ] },
-  { name: "slaking", xRGB: 95570.375, xLUV: 5505.024233370975, yRGB: [ 182.63970588235293, 167.44117647058823, 157.59558823529412 ], yLUV: [ 69.08726936288228, 9.938665661107313, 9.115277592726626 ] },
-  { name: "whismur", xRGB: 124856.16274377942, xLUV: 8239.863666659445, yRGB: [ 218.63349024882314, 196.93476798924007, 176.69939475453933 ], yLUV: [ 80.62756835770978, 14.190954022463819, 14.8211606937205 ] },
-  { name: "klinklang", xRGB: 107263.20425398811, xLUV: 6011.740773266485, yRGB: [ 170.07976227713482, 178.80043791054112, 180.571160462934 ], yLUV: [ 71.62668027979045, -3.0193830658168967, -2.08025334805132 ] },
-  { name: "amoonguss", xRGB: 75041.88271604938, xLUV: 5721.148481994385, yRGB: [ 163.12404467960025, 136.38977072310405, 131.02792475014698 ], yLUV: [ 58.96326759147493, 18.106540020396675, 8.41570343043734 ] },
-  { name: "inkay", xRGB: 111115.33928571429, xLUV: 6476.4866785977165, yRGB: [ 181.42532467532467, 179.70048701298703, 192.3125 ], yLUV: [ 73.54729799038562, 2.3370175292356525, -9.617452256797593 ] },
-  { name: "zapdos", xRGB: 94654.56226094348, xLUV: 8729.15653051305, yRGB: [ 197.23756906077347, 180.77220569485763, 118.21249468763281 ], yLUV: [ 73.1627440483425, 14.230037300682767, 41.35019535293197 ] },
-  { name: "archen", xRGB: 75116.62645647704, xLUV: 8247.125952242033, yRGB: [ 177.84167237834134, 135.1261137765593, 120.7128169979438 ], yLUV: [ 61.281516376824314, 36.312956855963186, 14.97308606850767 ] },
-  { name: "pignite", xRGB: 52323.04347826087, xLUV: 7185.921744183205, yRGB: [ 156.43478260869566, 108.40993788819875, 68.34782608695652 ], yLUV: [ 49.52643482355364, 37.07747842684564, 27.22397643663407 ] },
-  { name: "turtonator", xRGB: 59859.80587595212, xLUV: 7542.429061333914, yRGB: [ 169.32295973884658, 117.44787812840043, 83.53993471164308 ], yLUV: [ 54.221028334485936, 38.0917227863302, 25.515499930751925 ] },
-  { name: "emboar", xRGB: 53022.775371627824, xLUV: 6746.250515505315, yRGB: [ 143.6061662690402, 109.70912093962195, 66.99541200220224 ], yLUV: [ 48.01768971074444, 26.669424805913117, 26.625074832973013 ] },
-  { name: "greninja", xRGB: 78156.33704115685, xLUV: 6176.154872164009, yRGB: [ 123.33667037449017, 142.38524286243975, 167.18242491657398 ], yLUV: [ 58.74676011049256, -2.906175203464708, -21.375585337863043 ] },
-  { name: "weezing", xRGB: 84298.23686635945, xLUV: 5153.09496849044, yRGB: [ 168.85622119815667, 152.87465437788018, 161.1004608294931 ], yLUV: [ 64.51789438822979, 8.463269733966346, -5.957394903497397 ] },
-  { name: "silicobra", xRGB: 84412.65638075313, xLUV: 5532.139708168207, yRGB: [ 165.68096234309624, 163.2112970711297, 134.41056485355648 ], yLUV: [ 65.90176729182433, 3.0122953643987778, 19.437835153652554 ] },
-  { name: "drakloak", xRGB: 50347.991407089154, xLUV: 4203.021855950783, yRGB: [ 104.19495166487647, 120.25402792696026, 121.32760472610097 ], yLUV: [ 48.90476247915978, -6.403477618368543, -3.3463489546721648 ] },
-  { name: "hatenna", xRGB: 111273.23961661341, xLUV: 6630.366116904496, yRGB: [ 170.92492012779553, 172.1996805111821, 197.56549520766774 ], yLUV: [ 70.25514153283703, -0.7710909322598103, -20.299032744664 ] },
-  { name: "sawsbuck-spring", xRGB: 54884.954260953295, xLUV: 5067.749739205995, yRGB: [ 148.260953298026, 117.45305729417429, 82.06162734713529 ], yLUV: [ 50.72818144388962, 22.361270672104503, 25.52231691156428 ] },
-  { name: "poochyena", xRGB: 66521.77326801959, xLUV: 3807.114978004986, yRGB: [ 136.71378586424072, 135.31000699790064, 134.81035689293213 ], yLUV: [ 55.601368678027534, 1.0450294002314078, 0.5737765817696879 ] },
-  { name: "diancie", xRGB: 92765.90116550117, xLUV: 5688.292671671271, yRGB: [ 173.33659673659673, 148.7123543123543, 170.11888111888112 ], yLUV: [ 63.97216854112723, 13.836666466724074, -13.002173070367256 ] },
-  { name: "tentacool", xRGB: 91626.24840085288, xLUV: 6552.4683914526, yRGB: [ 154.79424307036248, 163.74733475479744, 179.9861407249467 ], yLUV: [ 67.6771272518557, -1.7275652509678605, -12.584956129137302 ] },
-  { name: "swirlix", xRGB: 151943.6331849968, xLUV: 8030.523236754614, yRGB: [ 225.5174825174825, 218.40623013350287, 221.86458995549904 ], yLUV: [ 87.68075169461055, 4.123834185532095, -1.663483137663371 ] },
-  { name: "appletun", xRGB: 75516.6129471891, xLUV: 7920.560643644184, yRGB: [ 158.0725724020443, 157.993867120954, 108.63100511073254 ], yLUV: [ 65.03105659736606, 8.197600110699446, 34.84253467372069 ] },
-  { name: "magearna-original", xRGB: 73415.51691281563, xLUV: 8197.039105765189, yRGB: [ 182.4459266317294, 127.29680800381134, 112.50214387803716 ], yLUV: [ 59.51539053756894, 40.63089037280203, 17.859140733171134 ] },
-  { name: "mareanie", xRGB: 103941.72818086225, xLUV: 6337.2635294145975, yRGB: [ 158.06098843322818, 183.5199789695058, 193.403785488959 ], yLUV: [ 72.68295631369148, -13.040740847210303, -10.548361031580109 ] },
-  { name: "araquanid", xRGB: 100081.61331704337, xLUV: 6528.206272987233, yRGB: [ 158.5442883323152, 182.0843005497862, 173.3787416004887 ], yLUV: [ 71.63449963754448, -11.53179626587928, 0.9507733088640437 ] },
-  { name: "burmy-trash", xRGB: 67783.02536997886, xLUV: 4984.5804477322745, yRGB: [ 166.02854122621565, 127.42811839323467, 127.01479915433404 ], yLUV: [ 56.853356330722, 25.87727699140285, 5.4588243165898245 ] },
-  { name: "lycanroc", xRGB: 114843.06510626849, xLUV: 6255.272236848984, yRGB: [ 192.25746569814368, 184.697067527576, 180.48829701372074 ], yLUV: [ 74.79664648970467, 4.78963463963058, 4.019785902711297 ] },
-  { name: "roserade", xRGB: 92166.71828665568, xLUV: 6996.026837115198, yRGB: [ 156.37012630422845, 163.06370126304228, 166.87259747391542 ], yLUV: [ 66.85803387092983, -0.21707123006324622, -4.019724224843826 ] },
-  { name: "aerodactyl", xRGB: 98024.54632034632, xLUV: 5437.5175356942445, yRGB: [ 175.62987012987014, 163.84761904761905, 181.54675324675324 ], yLUV: [ 68.36713040944024, 5.676008163922919, -12.427792117857779 ] },
-  { name: "clefable", xRGB: 133793.1236294896, xLUV: 7376.958715271692, yRGB: [ 225.64045368620037, 198.38260869565218, 195.8181474480151 ], yLUV: [ 81.92371949439685, 16.637989479783602, 5.440589654880104 ] },
-  { name: "falinks", xRGB: 53959.88008752735, xLUV: 8965.729177314608, yRGB: [ 154.71947483588622, 97.66739606126914, 51.094091903719914 ], yLUV: [ 47.008194442636395, 43.36579567915243, 31.62143304552977 ] },
-  { name: "morgrem", xRGB: 43906.61059907834, xLUV: 7838.038496903567, yRGB: [ 127.56739631336406, 70.59907834101382, 99.78168202764977 ], yLUV: [ 39.71035719938436, 38.03197998173155, -8.99398445044033 ] },
-  { name: "florges-red", xRGB: 69618.93007694882, xLUV: 6813.373714867073, yRGB: [ 139.94145199063232, 142.52927400468383, 136.9953161592506 ], yLUV: [ 60.70391696639721, 8.161368415502098, 7.386832160443695 ] },
-  { name: "electabuzz", xRGB: 79101.17602548785, xLUV: 7923.233009516003, yRGB: [ 170.5551573078455, 160.85344484269214, 97.24731182795699 ], yLUV: [ 64.437333654677, 9.769261272926421, 40.81078740714278 ] },
-  { name: "guzzlord", xRGB: 34321.982289336316, xLUV: 3146.552014553161, yRGB: [ 82.82494407158836, 97.67300521998509, 87.1599552572707 ], yLUV: [ 39.250276197494514, -4.787644897449697, 2.7200492251450776 ] },
-  { name: "gigalith", xRGB: 36042.5229819346, xLUV: 5556.043635720306, yRGB: [ 118.80562542876744, 77.05008003658816, 85.17493711410931 ], yLUV: [ 38.451847927918145, 31.931243138593974, -1.031332598348732 ] },
-  { name: "crabominable", xRGB: 90217.43685636856, xLUV: 5395.957554085364, yRGB: [ 150.60569105691056, 160.06666666666666, 175.93631436314362 ], yLUV: [ 65.07103585772137, -4.6463768947581645, -13.818604761674885 ] },
-  { name: "sentret", xRGB: 67564.58224163028, xLUV: 4940.46787379063, yRGB: [ 164.23435225618633, 132.32532751091702, 115.54803493449782 ], yLUV: [ 57.27914576729575, 22.28405315814363, 15.955560875699689 ] },
-  { name: "magikarp", xRGB: 90590.1530448718, xLUV: 8796.188865457623, yRGB: [ 202.9238782051282, 152.5096153846154, 127.47275641025641 ], yLUV: [ 67.67446514547984, 38.68677266352162, 21.98666711803906 ] },
-  { name: "kommo-o", xRGB: 69059.900875722, xLUV: 4767.457690800729, yRGB: [ 153.97596422582447, 147.04080491894914, 126.12539593814049 ], yLUV: [ 60.520410388389614, 5.708507580820282, 15.043525061898352 ] },
-  { name: "raboot", xRGB: 97486.77402700557, xLUV: 8427.947172779177, yRGB: [ 182.47934868943605, 154.37609213661636, 143.48093725178714 ], yLUV: [ 66.92425722936765, 22.138507327037974, 8.456682992204092 ] },
-  { name: "stunfisk-galar", xRGB: 43752.26501766784, xLUV: 4141.635435192772, yRGB: [ 113.02915194346289, 113.61042402826855, 87.68551236749117 ], yLUV: [ 46.363524294121056, 1.7110279622597802, 17.85424541144281 ] },
-  { name: "krabby", xRGB: 95648.54051927615, xLUV: 7382.873228597479, yRGB: [ 196.05507474429584, 164.9441384736428, 142.78127458693942 ], yLUV: [ 69.8373174093239, 23.131463923582892, 16.829377040461846 ] },
-  { name: "spearow", xRGB: 87780.88792270531, xLUV: 6734.101582802792, yRGB: [ 191.43478260869566, 153.62415458937198, 135.06376811594203 ], yLUV: [ 66.36098025163929, 27.393658390550975, 17.535235935914226 ] },
-  { name: "accelgor", xRGB: 69293.06068376069, xLUV: 6551.284605248656, yRGB: [ 153.57393162393163, 127.22393162393162, 142.69102564102565 ], yLUV: [ 57.00534739960091, 19.746566377730954, -7.282096073043253 ] },
-  { name: "deoxys", xRGB: 77878.54746423927, xLUV: 9011.975314548083, yRGB: [ 183.23450368443866, 146.6111833550065, 115.07975726051149 ], yLUV: [ 64.6832673812615, 34.620715731418855, 22.678798817585335 ] },
-  { name: "smeargle", xRGB: 107100.17455357143, xLUV: 6925.969342368816, yRGB: [ 192.3580357142857, 182.24151785714287, 157.75089285714284 ], yLUV: [ 74.05891104316254, 8.232226634834444, 17.335907353794163 ] },
-  { name: "seviper", xRGB: 46179.52874818049, xLUV: 3530.8039394637503, yRGB: [ 107.07896652110625, 115.21397379912663, 114.31077147016012 ], yLUV: [ 47.463806132086404, -2.327970840997368, -1.4154191469808988 ] },
-  { name: "oddish", xRGB: 47183.754056362086, xLUV: 7262.85235768081, yRGB: [ 85.05807002561913, 150.67719897523483, 95.03159692570452 ], yLUV: [ 57.3670650730788, -29.013072339062624, 26.16373055909775 ] },
-  { name: "snorunt", xRGB: 82818.88642413488, xLUV: 6895.041431066647, yRGB: [ 171.206743566992, 154.99112688553683, 117.20496894409938 ], yLUV: [ 63.476182496810395, 13.837750535170569, 27.156346949945814 ] },
-  { name: "scrafty", xRGB: 82738.5272914521, xLUV: 9306.161820206076, yRGB: [ 204.88414006179195, 152.27342945417095, 103.173017507724 ], yLUV: [ 67.10315697376518, 40.67677713990925, 36.80381429269183 ] },
-  { name: "garbodor", xRGB: 64581.74511041009, xLUV: 4518.517273860142, yRGB: [ 145.5135646687697, 145.67802313354363, 125.41030494216614 ], yLUV: [ 59.800516281148894, 2.6053565002941843, 15.343702441050771 ] },
-  { name: "nincada", xRGB: 98518.33988212181, xLUV: 5447.42304835086, yRGB: [ 173.7239685658153, 174.14145383104125, 174.12475442043223 ], yLUV: [ 70.59737877552742, -0.1536317511475823, -0.22138724264976103 ] },
-  { name: "sirfetchd", xRGB: 71988.98205473306, xLUV: 5539.330408734153, yRGB: [ 131.349932705249, 145.85598923283985, 116.12427097353073 ], yLUV: [ 57.503071118278086, -4.871090153972259, 17.97996710865337 ] },
-  { name: "pikachu", xRGB: 109588.86575654152, xLUV: 11200.97385553727, yRGB: [ 220.54550625711036, 204.57053469852104, 116.69852104664392 ], yLUV: [ 81.64081993525818, 14.97902327289087, 56.77382763828368 ] },
-  { name: "nidoking", xRGB: 91691.84044055351, xLUV: 5727.103726543098, yRGB: [ 175.29539678057046, 147.44535441965547, 176.59644168314037 ], yLUV: [ 64.45078849082763, 15.226095457173994, -18.37250391867513 ] },
-  { name: "vaporeon", xRGB: 108950.86453201971, xLUV: 7118.639540917629, yRGB: [ 151.6935960591133, 191.35467980295567, 201.32857142857142 ], yLUV: [ 74.9131308125772, -17.425371641688905, -12.54830490052261 ] },
-  { name: "cascoon", xRGB: 141323.04529370135, xLUV: 7654.748427151669, yRGB: [ 219.5322009907997, 203.35031847133757, 214.8761500353857 ], yLUV: [ 83.26688906945309, 9.239381587197084, -6.758074942852437 ] },
-  { name: "altaria", xRGB: 158022.49523175872, xLUV: 8567.656187369592, yRGB: [ 214.688622754491, 226.70813927700155, 234.45220669771567 ], yLUV: [ 89.38177095149953, -5.57130449479399, -7.548795245932674 ] },
-  { name: "hitmonchan", xRGB: 88403.71501597443, xLUV: 6044.371022736881, yRGB: [ 180.16741214057507, 154.9444089456869, 149.73035143769968 ], yLUV: [ 65.82715240642206, 17.448121834774447, 6.463014005210839 ] },
-  { name: "igglybuff", xRGB: 129351.24549098196, xLUV: 7132.569551870488, yRGB: [ 219.05811623246493, 192.0420841683367, 195.15931863727454 ], yLUV: [ 79.80807208990025, 16.381615848635196, 1.1780260605517392 ] },
-  { name: "rhyperior", xRGB: 59717.02121157649, xLUV: 6712.057965962803, yRGB: [ 164.95470070106057, 119.03361495595901, 97.67895020672299 ], yLUV: [ 54.652680751304096, 34.609654573867985, 13.24066467771382 ] },
-  { name: "gliscor", xRGB: 71454.2335396736, xLUV: 4852.197232849193, yRGB: [ 136.9518851997749, 134.22537985368598, 153.94710185706248 ], yLUV: [ 56.480692039105826, 1.776558648561842, -16.41069398282664 ] },
-  { name: "aggron", xRGB: 67878.0057057802, xLUV: 3711.7235080762193, yRGB: [ 136.1096502108658, 135.55296452493178, 136.3331679483999 ], yLUV: [ 55.56963290713414, 0.2951416931155965, -0.5159956428394321 ] },
-  { name: "arbok", xRGB: 77224.21088746568, xLUV: 4585.66388776007, yRGB: [ 152.75892040256176, 140.1683440073193, 159.7657822506862 ], yLUV: [ 59.434487554369674, 6.315271675637533, -14.3326887749755 ] },
-  { name: "banette", xRGB: 60073.10831509847, xLUV: 3679.9427979805646, yRGB: [ 137.61816192560175, 136.9206783369803, 134.09354485776805 ], yLUV: [ 56.73511768553083, 0.7315646000768056, 1.8278680666477363 ] },
-  { name: "rotom-fan", xRGB: 94765.88212180746, xLUV: 10040.072841933956, yRGB: [ 211.28762278978388, 172.39803536345775, 108.25225933202357 ], yLUV: [ 72.4503388331483, 31.110158782812494, 45.27505171201549 ] },
-  { name: "taillow", xRGB: 68034.74708520179, xLUV: 5025.86541919782, yRGB: [ 142.1291479820628, 116.85022421524664, 128.48340807174887 ], yLUV: [ 51.04623817537753, 17.308237095737503, -3.393635974227449 ] },
-  { name: "omanyte", xRGB: 114354.78489326766, xLUV: 7846.171856022249, yRGB: [ 186.58128078817734, 198.55665024630542, 174.77339901477833 ], yLUV: [ 78.51494435202609, -2.404597900878335, 15.45183856489717 ] },
-  { name: "tyrogue", xRGB: 98095.42442748092, xLUV: 5685.823117314401, yRGB: [ 184.91068702290076, 162.00610687022902, 163.00534351145038 ], yLUV: [ 68.14406564860907, 14.011366331561222, 0.15662955017570504 ] },
-  { name: "vullaby", xRGB: 58507.79392405063, xLUV: 3669.974373046633, yRGB: [ 138.79746835443038, 122.8820253164557, 113.01772151898734 ], yLUV: [ 51.736868901825304, 10.114621367947436, 9.203826672086652 ] },
-  { name: "stantler", xRGB: 83771.63228271251, xLUV: 6643.63151142358, yRGB: [ 186.43982808022923, 159.9574976122254, 125.10506208213944 ], yLUV: [ 66.95820192355481, 19.34783075680804, 26.567392431386757 ] },
-  { name: "muk-alola", xRGB: 70130.18378617185, xLUV: 7353.094285353103, yRGB: [ 152.631764965761, 145.59796774906118, 115.9946984758118 ], yLUV: [ 60.647342016116404, 8.079536304977994, 15.018754383643815 ] },
-  { name: "noibat", xRGB: 84646.74302030457, xLUV: 5227.037226100801, yRGB: [ 167.27093908629442, 139.03109137055839, 164.78997461928935 ], yLUV: [ 60.699287066003, 13.810410880326131, -16.713332021874447 ] },
-  { name: "golbat", xRGB: 49083.3870967742, xLUV: 3828.6702251920788, yRGB: [ 109.40322580645162, 100.31265508684864, 130.9379652605459 ], yLUV: [ 44.77029736021024, 7.5257747971940585, -21.396160052511796 ] },
-  { name: "hoopa-unbound", xRGB: 73244.38901395768, xLUV: 6060.610523031009, yRGB: [ 158.85164340387212, 123.49302116163891, 139.5400720396218 ], yLUV: [ 56.56956877968976, 20.93542640139104, -7.453393240279466 ] },
-  { name: "gossifleur", xRGB: 81690.33271787297, xLUV: 12690.562519084475, yRGB: [ 194.03397341211226, 149.352658788774, 61.16100443131462 ], yLUV: [ 66.69641140067907, 39.21201253304545, 45.289489173197126 ] },
-  { name: "kyurem-white", xRGB: 97190.00631654936, xLUV: 7049.012547798603, yRGB: [ 179.6305720988991, 163.87312759429705, 165.83667208085183 ], yLUV: [ 69.07233671894372, 13.087993411118374, 0.890173826732966 ] },
-  { name: "spiritomb", xRGB: 79806.67590319186, xLUV: 7122.720734398285, yRGB: [ 178.3598737285163, 139.27955103472465, 145.8923184847422 ], yLUV: [ 62.913197570123586, 24.167639468924563, -1.7065254829811354 ] },
-  { name: "furfrou-heart", xRGB: 106937.87631027254, xLUV: 6093.521375259139, yRGB: [ 187.7769392033543, 167.50524109014674, 168.55303983228512 ], yLUV: [ 69.51255420689819, 12.32151736825553, 1.882499425526333 ] },
-  { name: "marowak", xRGB: 114584.58613217768, xLUV: 7189.078892852979, yRGB: [ 202.52654387865655, 190.04821235102926, 169.82502708559048 ], yLUV: [ 77.25209015003068, 9.433240650748335, 14.56276617219649 ] },
-  { name: "gardevoir", xRGB: 136398.42576687117, xLUV: 8059.64908311093, yRGB: [ 202.5329243353783, 214.57546012269938, 200.8642126789366 ], yLUV: [ 84.41062061884612, -5.670016062499304, 8.937096218872812 ] },
-  { name: "litleo", xRGB: 65670.03526170799, xLUV: 4819.476850066271, yRGB: [ 157.95482093663912, 137.06776859504131, 115.63746556473829 ], yLUV: [ 57.898893597655615, 14.757438055839295, 17.31607619110828 ] },
-  { name: "flaaffy", xRGB: 126953.86013986015, xLUV: 7285.998794739752, yRGB: [ 210.4378698224852, 186.75309306078537, 200.54330285099516 ], yLUV: [ 78.03125580836836, 14.423752328935578, -7.087375076618126 ] },
-  { name: "starly", xRGB: 69914.22943722944, xLUV: 4563.233159142799, yRGB: [ 148.95238095238096, 134.1417748917749, 124.86904761904762 ], yLUV: [ 56.296386588589456, 10.622503908274625, 6.677102359635733 ] },
-  { name: "bellossom", xRGB: 69706.08441193022, xLUV: 8825.670582062387, yRGB: [ 159.19921215531795, 156.30050647158131, 99.00562746201463 ], yLUV: [ 64.47748027391162, 10.922733680733963, 38.92979065254864 ] },
-  { name: "starmie", xRGB: 90035.881826742, xLUV: 6729.979703473168, yRGB: [ 173.8978342749529, 157.93832391713747, 156.84981167608285 ], yLUV: [ 66.47699496236538, 10.821529445390544, -1.3064626630975966 ] },
-  { name: "chimecho", xRGB: 109578.70574162679, xLUV: 7247.934501831733, yRGB: [ 188.13875598086125, 180.96052631578948, 183.92942583732057 ], yLUV: [ 74.6885414357652, 7.432674914419111, -1.2019955871714139 ] },
-  { name: "lycanroc-midnight", xRGB: 82864.003996004, xLUV: 5991.673691458763, yRGB: [ 169.08241758241758, 137.52397602397602, 139.74025974025975 ], yLUV: [ 60.36939301241708, 21.753213446808115, 4.151760085186188 ] },
-  { name: "probopass", xRGB: 60477.186698717946, xLUV: 6215.960522982821, yRGB: [ 136.88995726495727, 113.4332264957265, 123.67227564102564 ], yLUV: [ 50.73068405074699, 20.71481555660228, -5.320808310740165 ] },
-  { name: "garchomp", xRGB: 49781.72826086957, xLUV: 4535.666282412279, yRGB: [ 115.04347826086956, 108.01449275362319, 125.85144927536231 ], yLUV: [ 46.86999894667606, 6.02579796898907, -15.137855595483366 ] },
-  { name: "gogoat", xRGB: 66007.45425072046, xLUV: 5067.172006087474, yRGB: [ 129.42903458213257, 144.7265850144092, 126.56304034582132 ], yLUV: [ 58.69773187648966, -1.526879242505343, 12.878764854600862 ] },
-  { name: "sudowoodo", xRGB: 53446.250982961996, xLUV: 5589.583995239792, yRGB: [ 137.14744429882043, 132.3348623853211, 99.02555701179554 ], yLUV: [ 55.69920461810303, 10.881413323660695, 24.448501191357252 ] },
-  { name: "lickilicky", xRGB: 100002.57985719654, xLUV: 8441.241478764417, yRGB: [ 221.35137166478768, 149.14768883878241, 150.91732431416762 ], yLUV: [ 69.1284487680433, 47.596129304470615, 7.694080042792476 ] },
-  { name: "woobat", xRGB: 101051.29538461538, xLUV: 5895.541491145078, yRGB: [ 155.23615384615385, 168.9146153846154, 176.72153846153847 ], yLUV: [ 67.16715676511502, -6.634703892665693, -7.865363492603378 ] },
-  { name: "ambipom", xRGB: 86453.31640953716, xLUV: 7316.063397778272, yRGB: [ 183.30911640953715, 147.0726507713885, 149.8765778401122 ], yLUV: [ 64.40685234510754, 22.684913483403214, 1.1307127243647606 ] },
-  { name: "wingull", xRGB: 117612.66538952746, xLUV: 6550.648125988716, yRGB: [ 186.89144316730523, 190.60408684546616, 195.4457215836526 ], yLUV: [ 76.68148757646924, -1.4260370603634747, -4.47495427608262 ] },
-  { name: "gulpin", xRGB: 78618.28063241107, xLUV: 7007.839920056184, yRGB: [ 148.60553359683794, 182.13517786561266, 132.15652173913043 ], yLUV: [ 70.27870250477453, -15.973976737316637, 32.13198447792782 ] },
-  { name: "deino", xRGB: 43087.40516698173, xLUV: 3117.620641214413, yRGB: [ 104.52804032766225, 108.44864524259609, 119.73913043478261 ], yLUV: [ 45.68243214033214, -1.1643114221673567, -9.950304021065472 ] },
-  { name: "deerling-winter", xRGB: 88264.64195804196, xLUV: 6587.51531308386, yRGB: [ 184.43216783216783, 165.9223776223776, 130.82867132867133 ], yLUV: [ 68.58411338842521, 13.44722522679748, 21.80686122340655 ] },
-  { name: "poipole", xRGB: 51969.63527467989, xLUV: 6317.105900281816, yRGB: [ 112.37381247418422, 81.39116067740603, 155.7926476662536 ], yLUV: [ 41.27243226797144, 11.13688586865277, -52.07707723389709 ] },
-  { name: "nihilego", xRGB: 105122.72114972115, xLUV: 5899.262380931869, yRGB: [ 169.65980265980266, 182.15486915486915, 192.34620334620334 ], yLUV: [ 73.10630695487846, -6.92835832991598, -9.69564617878519 ] },
-  { name: "blaziken", xRGB: 92681.32807137955, xLUV: 10188.631472172501, yRGB: [ 207.9787234042553, 155.7652711050103, 119.4200411805079 ], yLUV: [ 69.11451617149513, 41.06691715969569, 29.76653414711789 ] },
-  { name: "florges-blue", xRGB: 68512.73092369478, xLUV: 6019.811559253918, yRGB: [ 93.4032797858099, 160.14022757697455, 158.80321285140562 ], yLUV: [ 61.938215162408234, -26.059184302468914, -5.535666774980145 ] },
-  { name: "mime-jr", xRGB: 79482.64550264551, xLUV: 4779.599865587996, yRGB: [ 130.12345679012347, 139.35802469135803, 154.43915343915344 ], yLUV: [ 57.10255070822, 0.17312316852149573, -11.286056980708603 ] },
-  { name: "regigigas", xRGB: 102956.22616298251, xLUV: 8131.878134045121, yRGB: [ 176.13873309138899, 183.46931705707686, 142.9183437809304 ], yLUV: [ 72.66753178029252, 0.4116728206739793, 24.84094420938786 ] },
-  { name: "fletchling", xRGB: 79711.57674418605, xLUV: 8463.91233586423, yRGB: [ 171.99651162790698, 134.853488372093, 122.53837209302326 ], yLUV: [ 59.76602019740574, 31.478691851355027, 10.340199680774518 ] },
-  { name: "azurill", xRGB: 64408.005741626795, xLUV: 6913.967376144221, yRGB: [ 65.00669856459331, 140.68516746411484, 183.43732057416267 ], yLUV: [ 56.1521270696676, -24.32197038017164, -42.310315403293274 ] },
-  { name: "yamask", xRGB: 39293.961608775135, xLUV: 3454.407476973591, yRGB: [ 111.12157221206581, 99.73126142595979, 85.91681901279708 ], yLUV: [ 42.40404851979519, 9.256521646531365, 9.214839158439563 ] },
-  { name: "cubchoo", xRGB: 127862.13553607553, xLUV: 7477.257100324408, yRGB: [ 178.11598111935265, 203.40391099123397, 220.17464598786245 ], yLUV: [ 80.20692885868253, -13.302442556170885, -16.53479533485281 ] },
-  { name: "cacnea", xRGB: 65825.67213114754, xLUV: 5884.635587897072, yRGB: [ 131.78870673952642, 160.08075288403157, 114.70613236187006 ], yLUV: [ 62.14931395933368, -13.05251486074061, 29.44079402888373 ] },
-  { name: "rotom-frost", xRGB: 75902.01171875, xLUV: 8526.440194204726, yRGB: [ 190.486328125, 130.242578125, 122.57265625 ], yLUV: [ 60.776542380482816, 43.74483836056979, 8.88086380757267 ] },
-  { name: "linoone", xRGB: 97445.07976366322, xLUV: 5468.6606326355295, yRGB: [ 183.84441161989167, 169.46430329886755, 164.45051698670605 ], yLUV: [ 69.9955839843655, 9.072233969508247, 5.443299775080762 ] },
-  { name: "lampent", xRGB: 49136.266581632655, xLUV: 3138.2930825824224, yRGB: [ 103.64795918367346, 107.24744897959184, 114.85841836734694 ], yLUV: [ 44.00265871134033, -2.278006369789682, -7.271099062401348 ] },
-  { name: "litten", xRGB: 41939.13694915254, xLUV: 5274.933172614988, yRGB: [ 125.59118644067797, 93.5335593220339, 85.1064406779661 ], yLUV: [ 43.43831442914485, 25.105826341650726, 8.759469428547606 ] },
-  { name: "darmanitan-galar", xRGB: 113657.94510936855, xLUV: 6564.136569292371, yRGB: [ 169.9694593479158, 182.18860916219563, 184.35575732562938 ], yLUV: [ 72.11188320764764, -4.78330345085967, -3.0463424184866525 ] },
-  { name: "chansey", xRGB: 130389.60497925311, xLUV: 7170.675719824095, yRGB: [ 223.3771784232365, 187.91701244813277, 200.0286307053942 ], yLUV: [ 79.33511106810754, 20.771705354815, -4.503974651836513 ] },
-  { name: "corsola", xRGB: 95553.14795654423, xLUV: 7488.38903947159, yRGB: [ 211.82721158820488, 145.97309881013967, 157.92498706673564 ], yLUV: [ 67.57152071119229, 43.49394862914135, 1.3074614870428611 ] },
-  { name: "rhydon", xRGB: 95580.18966547192, xLUV: 5503.879862033289, yRGB: [ 168.71027479091995, 170.8073476702509, 176.01194743130227 ], yLUV: [ 69.48414941450926, -0.9806797244890838, -4.739406054305135 ] },
-  { name: "flabebe-red", xRGB: 87486.70013755158, xLUV: 7998.5447615568555, yRGB: [ 180.3707015130674, 157.37276478679505, 135.56740027510315 ], yLUV: [ 67.21657776658466, 18.368352153811646, 18.97207541304423 ] },
-  { name: "chinchou", xRGB: 94445.94758339007, xLUV: 8395.688729993475, yRGB: [ 171.93260721579307, 175.7631041524847, 148.28999319264807 ], yLUV: [ 70.46206358078182, 0.23012924034584253, 13.252064703951902 ] },
-  { name: "monferno", xRGB: 78712.1510945008, xLUV: 8824.638929303635, yRGB: [ 185.55686065136146, 148.56166577682862, 99.35878270154832 ], yLUV: [ 64.71019945599375, 32.129873683557726, 29.83770622189881 ] },
-  { name: "basculin-redstriped", xRGB: 80173.19571865443, xLUV: 6589.025733170299, yRGB: [ 141.51070336391436, 172.82813455657492, 141.00122324159022 ], yLUV: [ 67.77445711469022, -13.426818176542248, 20.598591117838765 ] },
-  { name: "xatu", xRGB: 85443.275, xLUV: 9335.367522754294, yRGB: [ 168.04166666666666, 163.95, 112.43333333333334 ], yLUV: [ 67.2738902856838, 7.660007303706508, 30.21462304545348 ] },
-  { name: "arctozolt", xRGB: 74998.46866295264, xLUV: 6306.144849284483, yRGB: [ 118.73363509749304, 149.74477715877438, 141.4199164345404 ], yLUV: [ 59.44511726071355, -8.646395301674731, -3.7955654099239964 ] },
-  { name: "glameow", xRGB: 77739.22203579418, xLUV: 4552.0247258418485, yRGB: [ 148.64541387024607, 150.2807606263982, 158.65715883668904 ], yLUV: [ 61.87704971787569, -0.568406010479561, -6.719467539633773 ] },
-  { name: "regice", xRGB: 120130.07686355429, xLUV: 9014.917511015745, yRGB: [ 138.15295331441837, 203.63167397472273, 234.14573123549135 ], yLUV: [ 78.59917652175005, -29.929796682916745, -32.33673890331164 ] },
-  { name: "sawsbuck-autumn", xRGB: 54188.750907567715, xLUV: 6781.81202029437, yRGB: [ 164.54537838592572, 105.54146886344597, 80.8461323652611 ], yLUV: [ 50.44023285077663, 43.713682858588015, 23.528147086065132 ] },
-  { name: "lunala", xRGB: 63871.787237793054, xLUV: 7095.224502861704, yRGB: [ 133.33298078618014, 110.7740172748105, 147.7489864269346 ], yLUV: [ 50.66934444172797, 5.653983335837559, -24.741557555315737 ] },
-  { name: "pansear", xRGB: 85750.90148911798, xLUV: 10720.269038155575, yRGB: [ 214.21363115693012, 144.72394043528064, 107.36483390607101 ], yLUV: [ 66.89045444810449, 53.17322881347727, 32.63666059186314 ] },
-  { name: "feraligatr", xRGB: 105017.76991643454, xLUV: 8432.157754894995, yRGB: [ 138.30139275766015, 191.83481894150418, 202.58412256267408 ], yLUV: [ 75.09171609600354, -19.931099875006804, -14.813030601702318 ] },
-  { name: "honchkrow", xRGB: 56162.804666917575, xLUV: 4098.50487239486, yRGB: [ 96.63831388784344, 114.10538200978547, 132.59616108392925 ], yLUV: [ 46.80790552443809, -5.019929100919003, -15.616121818371443 ] },
-  { name: "beheeyem", xRGB: 74689.42529296875, xLUV: 5202.180603162249, yRGB: [ 170.90478515625, 141.7109375, 126.90234375 ], yLUV: [ 60.71204047250602, 20.492695078375963, 14.633334933000496 ] },
-  { name: "clauncher", xRGB: 100886.27473498233, xLUV: 7388.59210075138, yRGB: [ 138.89840989399292, 187.46554770318022, 190.8595406360424 ], yLUV: [ 72.78195503521924, -20.6901441877261, -9.345870622147629 ] },
-  { name: "noivern", xRGB: 50718.38996836873, xLUV: 3928.9089886633965, yRGB: [ 103.29055580659738, 117.4098508811568, 123.00994125621328 ], yLUV: [ 48.398057979934286, -4.681102547585507, -5.054763655214126 ] },
-  { name: "wimpod", xRGB: 85239.88506876228, xLUV: 4815.215080757667, yRGB: [ 161.38015717092338, 157.2033398821218, 159.77504911591356 ], yLUV: [ 64.5924027856888, 2.308901244156798, -1.4784339075357562 ] },
-  { name: "tangela", xRGB: 68083.93692224035, xLUV: 5212.939175605678, yRGB: [ 110.00543773790103, 138.44045676998368, 156.20772158781946 ], yLUV: [ 55.71700465125881, -11.062504801866213, -17.82831166052151 ] },
-  { name: "rampardos", xRGB: 54672.36278759586, xLUV: 3710.1772614376346, yRGB: [ 115.91630543514505, 123.4214738246082, 133.57385795265088 ], yLUV: [ 51.181265699397706, -2.5261239071933064, -9.163097524943515 ] },
-  { name: "aromatisse", xRGB: 94513.70737564322, xLUV: 6693.571560145857, yRGB: [ 202.89777015437392, 139.77324185248713, 162.61097770154373 ], yLUV: [ 64.9059530313948, 38.258703159377326, -7.542930372296591 ] },
-  { name: "centiskorch", xRGB: 74981.17548298067, xLUV: 12341.935515954798, yRGB: [ 193.4533118675253, 113.88339466421343, 61.77115915363385 ], yLUV: [ 58.53637576177003, 58.47637919521271, 32.5783445567804 ] },
-  { name: "rapidash", xRGB: 104745.53948590894, xLUV: 12704.579948466688, yRGB: [ 227.50201300712294, 176.09662434190153, 95.51904614431713 ], yLUV: [ 75.95379507521307, 43.44579360087575, 46.10153790328491 ] },
-  { name: "blacephalon", xRGB: 98027.05720250522, xLUV: 6470.546867927519, yRGB: [ 151.73277661795407, 162.25344467640917, 166.9624217118998 ], yLUV: [ 65.84141603038275, -0.8871253171219841, -5.003287497252312 ] },
-  { name: "espurr", xRGB: 92804.47157622738, xLUV: 5247.995425325003, yRGB: [ 164.88242894056847, 163.94896640826875, 186.04457364341084 ], yLUV: [ 67.83814474561375, -0.5997664881333173, -17.640571766702614 ] },
-  { name: "voltorb", xRGB: 103794.29820788531, xLUV: 8445.688446832017, yRGB: [ 218.12401433691755, 161.56702508960572, 156.41218637992833 ], yLUV: [ 71.88992377922521, 39.86347004926524, 10.985407052335836 ] },
-  { name: "volcarona", xRGB: 87548.215, xLUV: 7373.881545009764, yRGB: [ 182.60833333333332, 145.03833333333333, 133.705 ], yLUV: [ 63.32918024566373, 28.715142253161268, 12.345117996661752 ] },
-  { name: "type-null", xRGB: 41440.41627218935, xLUV: 2722.968379917043, yRGB: [ 112.16656804733728, 107.01153846153846, 102.048224852071 ], yLUV: [ 45.03223867840677, 4.4045912726685605, 4.117520201796523 ] },
-  { name: "mightyena", xRGB: 52653.020719311964, xLUV: 2949.7868115905753, yRGB: [ 114.54065676309617, 113.88272087568413, 113.97576231430806 ], yLUV: [ 46.648447125622454, 0.42826580708791817, 0.06654223162156694 ] },
-  { name: "finneon", xRGB: 75363.42857142857, xLUV: 4912.017801659712, yRGB: [ 138.46428571428572, 143.39285714285714, 152.0 ], yLUV: [ 59.037179103809805, -0.4584031081820023, -6.111197914969362 ] },
-  { name: "armaldo", xRGB: 73973.12138896994, xLUV: 5483.607273370265, yRGB: [ 142.98453457834842, 143.361540706157, 150.40064196089875 ], yLUV: [ 59.56095150328632, 1.9923660486509944, -7.003620126796628 ] },
-  { name: "gengar", xRGB: 72089.57655010285, xLUV: 4868.293075302457, yRGB: [ 141.41522186306202, 130.12018806935058, 171.32882750514253 ], yLUV: [ 56.36756837008818, 3.403853092854822, -31.983939087365474 ] },
-  { name: "sobble", xRGB: 104255.72450052576, xLUV: 7842.870836626097, yRGB: [ 156.06992639327024, 186.76813880126184, 180.96635120925342 ], yLUV: [ 73.47525662301388, -13.069780325875655, -4.994612271897701 ] },
-  { name: "sawsbuck-winter", xRGB: 98349.81510621558, xLUV: 5774.870345692307, yRGB: [ 177.1290322580645, 160.985051140834, 150.79307631785994 ], yLUV: [ 66.3763723329975, 11.311965075801794, 7.854902884505258 ] },
-  { name: "arceus", xRGB: 115840.35115911486, xLUV: 7197.444399608046, yRGB: [ 191.72471022128556, 190.6095890410959, 173.89620653319284 ], yLUV: [ 76.41662489855773, 1.9838063834022674, 9.242606615126295 ] },
-  { name: "tornadus-therian", xRGB: 53550.18496538081, xLUV: 6289.692867383023, yRGB: [ 117.37314540059347, 138.48442136498517, 111.23986152324431 ], yLUV: [ 55.946018582132844, -11.313868216843773, 15.260882018624699 ] },
-  { name: "pelipper", xRGB: 120964.64651162791, xLUV: 9353.829475650271, yRGB: [ 211.09471458773785, 206.86088794926005, 163.58816067653277 ], yLUV: [ 82.42350980755486, 6.668976852474857, 28.889111625023794 ] },
-  { name: "grotle", xRGB: 55041.57316227462, xLUV: 7477.7571466645395, yRGB: [ 127.10506241331484, 153.79576976421637, 73.42891816920942 ], yLUV: [ 60.42718728782912, -6.863128965005007, 46.24927796583358 ] },
-  { name: "wynaut", xRGB: 89726.97395833333, xLUV: 6430.433198986731, yRGB: [ 122.99913194444444, 178.02777777777777, 183.50260416666666 ], yLUV: [ 68.81726537283124, -24.21204225434158, -9.660197814015097 ] },
-  { name: "scizor", xRGB: 69506.11152416357, xLUV: 9125.935839881424, yRGB: [ 186.00289136720363, 110.65799256505576, 109.44320528707146 ], yLUV: [ 56.06346939242153, 55.96265481142053, 12.19725707366126 ] },
-  { name: "beldum", xRGB: 46221.73363431151, xLUV: 3642.937214574879, yRGB: [ 76.13544018058691, 120.38148984198645, 137.803611738149 ], yLUV: [ 47.71495000057076, -18.691241068961574, -18.571125355651105 ] },
-  { name: "cacturne", xRGB: 88258.79886685552, xLUV: 6714.822095948285, yRGB: [ 159.40509915014164, 185.56728045325778, 144.36756373937678 ], yLUV: [ 72.11486171372698, -12.156181539556915, 27.605018570016153 ] },
-  { name: "salandit", xRGB: 30650.331259720064, xLUV: 1767.6547347954088, yRGB: [ 89.39657853810264, 89.27916018662519, 91.47356143079315 ], yLUV: [ 37.29126193638149, 0.03925926869383921, -1.6678808030919199 ] },
-  { name: "magnezone", xRGB: 84629.32989690722, xLUV: 5057.487114990398, yRGB: [ 154.48295003965106, 157.5297383029342, 156.53211736716892 ], yLUV: [ 64.02023103484628, -1.006627953952644, -0.6374267921281578 ] },
-  { name: "wobbuffet", xRGB: 96151.24801192843, xLUV: 7795.498585639713, yRGB: [ 109.97614314115309, 181.97266401590457, 217.13021868787277 ], yLUV: [ 70.60880288618064, -31.393974323453364, -36.72480789204276 ] },
-  { name: "torkoal", xRGB: 90502.73669661369, xLUV: 6905.996305218158, yRGB: [ 194.85970974429856, 161.6644782308224, 139.213199723566 ], yLUV: [ 68.84693358365242, 24.382244675132036, 19.571722386301705 ] },
-  { name: "metapod", xRGB: 69513.54740608229, xLUV: 9153.499152348246, yRGB: [ 142.64490161001788, 182.49910554561717, 91.7361359570662 ], yLUV: [ 69.26771355643075, -19.500410317752305, 53.83259156336224 ] },
-  { name: "sceptile", xRGB: 69773.035988004, xLUV: 6351.076856969242, yRGB: [ 131.33222259246918, 169.81306231256247, 128.85104965011664 ], yLUV: [ 65.64017308857292, -17.809167376249324, 26.497935707251482 ] },
-  { name: "gabite", xRGB: 58984.487333026256, xLUV: 5760.201400286701, yRGB: [ 130.158452326117, 117.10502072777521, 139.53155228005528 ], yLUV: [ 51.79869818697226, 11.080816867575674, -18.655399377456963 ] },
-  { name: "lapras", xRGB: 113280.3001776199, xLUV: 7762.360525430644, yRGB: [ 157.348134991119, 194.51261101243338, 206.14387211367674 ], yLUV: [ 76.73690739173279, -14.17785429032974, -13.94244640759997 ] },
-  { name: "slowbro-galar", xRGB: 73928.749661705, xLUV: 6275.91531780499, yRGB: [ 168.92873252142536, 117.9873703202526, 137.05683355886333 ], yLUV: [ 55.16750898605811, 31.468349348817515, -6.528967422700903 ] },
-  { name: "hitmontop", xRGB: 76918.48563685636, xLUV: 5906.912614992743, yRGB: [ 166.15772357723577, 150.06070460704606, 138.68130081300814 ], yLUV: [ 63.291113142708014, 14.012599919557548, 8.98992156974443 ] },
-  { name: "kecleon", xRGB: 84131.03991130821, xLUV: 7535.447811249502, yRGB: [ 174.9190687361419, 180.99722838137473, 123.26884700665188 ], yLUV: [ 71.74926635928949, -0.5275542626427909, 39.12780252205958 ] },
-  { name: "dugtrio-alola", xRGB: 78569.38597411683, xLUV: 6088.441767538535, yRGB: [ 169.65075201119274, 154.5416229450857, 120.27019937040923 ], yLUV: [ 63.38714053831338, 11.765872614574672, 25.02394788424902 ] },
-  { name: "rowlet", xRGB: 102020.25134973005, xLUV: 6728.102539155423, yRGB: [ 188.0365926814637, 176.123575284943, 157.15776844631074 ], yLUV: [ 72.27520245611383, 11.148242344028144, 15.24653938390528 ] },
-  { name: "flabebe-blue", xRGB: 86225.42739160357, xLUV: 6873.122811742177, yRGB: [ 143.46455609084651, 169.25120440467998, 155.16448726772197 ], yLUV: [ 67.28478566125332, -8.725379960251903, 4.955238773480742 ] },
-  { name: "cubone", xRGB: 112876.62379702537, xLUV: 6931.610931272425, yRGB: [ 198.8390201224847, 186.80664916885388, 170.59492563429572 ], yLUV: [ 76.02360579219304, 8.850014493895806, 11.731796068566961 ] },
-  { name: "barraskewda", xRGB: 68598.20420223243, xLUV: 5361.784420174797, yRGB: [ 150.48456992777412, 124.96782665791201, 108.24753775443205 ], yLUV: [ 54.0255314683203, 19.169051189691537, 12.447760002813636 ] },
-  { name: "marill", xRGB: 90260.56227758007, xLUV: 7645.95445938658, yRGB: [ 122.52099644128114, 163.68398576512456, 190.6661921708185 ], yLUV: [ 66.39284093078766, -10.10047485532306, -25.51057342516155 ] },
-  { name: "pumpkaboo", xRGB: 47863.28515007899, xLUV: 4403.071218186134, yRGB: [ 142.57977883096368, 108.70063191153238, 90.80094786729858 ], yLUV: [ 48.507245114823526, 24.20221481524727, 15.910266390471905 ] },
-  { name: "oricorio-sensu", xRGB: 93121.72313865359, xLUV: 5983.333853195153, yRGB: [ 156.19661168078466, 158.2666072224699, 193.9786000891663 ], yLUV: [ 65.83299860589699, -3.072596944616432, -29.510878210999653 ] },
-  { name: "lombre", xRGB: 68650.75824742268, xLUV: 7145.690509676854, yRGB: [ 137.2180412371134, 169.6319587628866, 112.98865979381443 ], yLUV: [ 65.9302811306441, -15.253505844753873, 33.23363767175202 ] },
-  { name: "rookidee", xRGB: 66472.55667276052, xLUV: 5283.374201140416, yRGB: [ 121.41864716636198, 124.12614259597807, 111.73948811700183 ], yLUV: [ 50.41430850652676, 1.9616756391941277, 3.2507586949262595 ] },
-  { name: "oshawott", xRGB: 115519.0016934801, xLUV: 6976.769662850148, yRGB: [ 172.36071126164268, 188.22353937341236, 190.80016934801017 ], yLUV: [ 74.86892388306666, -5.698739754515885, -4.5502649911135205 ] },
-  { name: "tapu-koko", xRGB: 64443.508985507244, xLUV: 7628.295821502865, yRGB: [ 166.62028985507246, 141.22086956521738, 74.94434782608695 ], yLUV: [ 59.288679715576045, 21.59736591151692, 40.13953336461425 ] },
-  { name: "perrserker", xRGB: 46436.41257995736, xLUV: 2883.4665976886317, yRGB: [ 104.41684434968018, 104.50373134328358, 101.51972281449893 ], yLUV: [ 42.91609081064454, 0.8970929666181182, 2.082955039254709 ] },
-  { name: "yveltal", xRGB: 33138.52282423208, xLUV: 3265.9045591001473, yRGB: [ 104.13225255972696, 72.97162969283276, 79.33575085324232 ], yLUV: [ 34.68850000370755, 20.773519141358264, 1.410228182854298 ] },
-  { name: "moltres", xRGB: 87870.88787878788, xLUV: 12194.237089534841, yRGB: [ 219.58619528619528, 163.0053872053872, 69.94612794612794 ], yLUV: [ 71.31232711507828, 46.13098366977256, 52.45317303470729 ] },
-  { name: "scraggy", xRGB: 105293.33605947955, xLUV: 9791.581044777633, yRGB: [ 214.51598513011152, 187.15167286245352, 127.02602230483271 ], yLUV: [ 77.05434841589738, 22.371613591562014, 41.13423569874924 ] },
-  { name: "slugma", xRGB: 78515.73958333333, xLUV: 11473.344703274579, yRGB: [ 217.14583333333334, 130.875, 91.84375 ], yLUV: [ 63.69376602829457, 67.01950592905874, 35.20322856976668 ] },
-  { name: "mienshao", xRGB: 105560.97971976401, xLUV: 5893.6743425816, yRGB: [ 185.57706489675516, 174.21238938053096, 181.82227138643069 ], yLUV: [ 71.84184053256384, 5.902347262329913, -4.715164099052827 ] },
-  { name: "eiscue", xRGB: 113727.78102481985, xLUV: 6863.080164336788, yRGB: [ 163.20656525220176, 187.14011208967173, 189.86909527622097 ], yLUV: [ 73.12191705378383, -11.81081904758566, -5.386981503773979 ] },
-  { name: "spewpa", xRGB: 115010.67139282735, xLUV: 6423.07473510383, yRGB: [ 187.66638865721436, 182.94495412844037, 177.0041701417848 ], yLUV: [ 73.6430489304317, 3.320549530024914, 4.990847678227064 ] },
-  { name: "frillish", xRGB: 117699.44324601952, xLUV: 7302.901258689153, yRGB: [ 162.26399589111455, 203.3276836158192, 212.0241397021058 ], yLUV: [ 79.06520763928454, -20.213266496579337, -11.542780613594733 ] },
-  { name: "yanmega", xRGB: 63666.99578567128, xLUV: 5091.240956554011, yRGB: [ 139.14208308248044, 132.5201685731487, 114.33293196869356 ], yLUV: [ 55.065205088995235, 6.735746896205921, 12.845336821832834 ] },
-  { name: "doublade", xRGB: 89425.21317695756, xLUV: 6006.0617767278, yRGB: [ 179.97481890307003, 154.5422559503277, 154.70645050017248 ], yLUV: [ 65.93185549252826, 15.267828042667073, 2.974041074656126 ] },
-  { name: "staraptor", xRGB: 42722.23463687151, xLUV: 3066.6830080347427, yRGB: [ 112.03351955307262, 101.19553072625699, 88.91620111731844 ], yLUV: [ 42.58412179855877, 7.944312455998395, 8.944745190451767 ] },
-  { name: "tirtouga", xRGB: 57266.41341991342, xLUV: 4030.9690120963255, yRGB: [ 101.3989898989899, 126.34704184704185, 151.78571428571428 ], yLUV: [ 51.31206590846839, -12.342454895929038, -23.392179798981495 ] },
-  { name: "sliggoo", xRGB: 121500.95584577114, xLUV: 6887.845079804786, yRGB: [ 197.33955223880596, 183.88121890547265, 207.55223880597015 ], yLUV: [ 76.27697223916587, 5.9880980940478485, -17.418047507655036 ] },
-  { name: "luxio", xRGB: 55129.517982799065, xLUV: 4392.079979873772, yRGB: [ 109.94839718530102, 123.02071931196247, 113.52384675527756 ], yLUV: [ 49.592919703475154, -4.319211344323341, 0.21994644469064742 ] },
-  { name: "lanturn", xRGB: 97631.8640883978, xLUV: 7980.469095582236, yRGB: [ 168.85414364640883, 175.51325966850828, 169.12651933701656 ], yLUV: [ 70.98560979159164, -2.105581845565558, -1.7840898080337793 ] },
-  { name: "amaura", xRGB: 115599.08428390368, xLUV: 7512.875234509842, yRGB: [ 164.5595690747782, 197.00823827629912, 208.72940430925223 ], yLUV: [ 77.5917175913565, -15.021687341217312, -13.832532141919504 ] },
-  { name: "huntail", xRGB: 98045.37202797203, xLUV: 7252.367163324808, yRGB: [ 173.73286713286714, 174.0776223776224, 166.63566433566433 ], yLUV: [ 71.2748088726904, 5.588173079546525, 3.9385101250070806 ] },
-  { name: "wooloo", xRGB: 111104.32837445573, xLUV: 5965.620011166606, yRGB: [ 183.13679245283018, 180.8653846153846, 180.13534107402032 ], yLUV: [ 72.88902674815836, 1.3459091616689678, 0.7870356928629008 ] },
-  { name: "meditite", xRGB: 109095.81322957198, xLUV: 6235.939350908633, yRGB: [ 172.0373540856031, 182.31673151750974, 189.40778210116733 ], yLUV: [ 73.22952351239472, -3.8714462328253005, -6.72919164902265 ] },
-  { name: "gible", xRGB: 57312.666666666664, xLUV: 5022.03215025916, yRGB: [ 121.43137254901961, 128.54901960784315, 132.7843137254902 ], yLUV: [ 54.136205438262074, 2.1682043980688706, -4.993928456163154 ] },
-  { name: "serperior", xRGB: 61627.613589567605, xLUV: 6208.356064130112, yRGB: [ 100.45401509951957, 156.33699382292383, 108.32978723404256 ], yLUV: [ 60.15536567735819, -19.284293529788066, 27.750136288932506 ] },
-  { name: "wormadam-plant", xRGB: 38729.53465346534, xLUV: 4363.098409461343, yRGB: [ 82.76237623762377, 123.63366336633663, 78.98019801980197 ], yLUV: [ 47.775691877427455, -17.942643871032782, 24.599877396733028 ] },
-  { name: "sandaconda", xRGB: 39192.096956031564, xLUV: 3173.270625381231, yRGB: [ 102.64740698985344, 98.7652198421646, 57.267756482525364 ], yLUV: [ 40.14713820295994, 4.531352092537055, 21.417168135963003 ] },
-  { name: "florges-white", xRGB: 90340.45214190094, xLUV: 5980.453720776837, yRGB: [ 141.00100401606426, 177.16298527443107, 164.99899598393574 ], yLUV: [ 69.45409667382411, -14.611177700716931, 6.565928773586652 ] },
-  { name: "barboach", xRGB: 95173.21212121213, xLUV: 6071.91559540942, yRGB: [ 141.9090909090909, 174.07575757575756, 187.6818181818182 ], yLUV: [ 68.96279631348794, -14.371069164061216, -14.523270240263146 ] },
-  { name: "komala", xRGB: 93477.36549295775, xLUV: 5601.046118532162, yRGB: [ 159.86830985915492, 169.16197183098592, 175.93802816901407 ], yLUV: [ 68.38448188530474, -4.314833423840775, -7.169386299910153 ] },
-  { name: "vivillon-garden", xRGB: 37760.0096906448, xLUV: 4144.726636633126, yRGB: [ 73.44278792396571, 125.7322027581066, 99.24692508386136 ], yLUV: [ 48.42433203373882, -21.356506675682574, 15.448036921281751 ] },
-  { name: "orbeetle", xRGB: 59524.36858685868, xLUV: 9353.86805652442, yRGB: [ 144.33708370837084, 83.64491449144914, 87.19036903690369 ], yLUV: [ 45.85494671154311, 40.20316632915767, 3.8380003121158155 ] },
-  { name: "mr-mime-galar", xRGB: 75246.45447761194, xLUV: 4828.267820978772, yRGB: [ 127.83880597014925, 128.51044776119403, 148.16194029850746 ], yLUV: [ 52.81248313692741, 0.5724139452778292, -15.82898201398416 ] },
-  { name: "fearow", xRGB: 70263.93984962406, xLUV: 6871.1693019255745, yRGB: [ 183.56554429552142, 142.05753514220333, 99.93821510297482 ], yLUV: [ 62.03792295249987, 31.917311374252336, 30.35076830423546 ] },
-  { name: "keldeo-ordinary", xRGB: 94050.65217391304, xLUV: 8630.228519171542, yRGB: [ 171.73258532024312, 166.2964001870033, 154.1921458625526 ], yLUV: [ 69.3496166659877, 12.866700565580386, 8.11029433027756 ] },
-  { name: "grimer-alola", xRGB: 48536.96738479952, xLUV: 3958.684951909378, yRGB: [ 100.50329144225014, 137.86026331538002, 120.8294434470377 ], yLUV: [ 54.05077601109416, -17.6523170085249, 7.74919049752791 ] },
-  { name: "nuzleaf", xRGB: 70920.0739476678, xLUV: 4473.842108655831, yRGB: [ 160.5136518771331, 143.4943117178612, 131.95790671217293 ], yLUV: [ 60.38841827775805, 11.803447905250321, 10.716985271271016 ] },
-  { name: "minccino", xRGB: 122021.48566387295, xLUV: 6660.414364150012, yRGB: [ 202.17026907807676, 193.38906043228937, 193.10410233789148 ], yLUV: [ 78.58136310517754, 5.485132836575312, 1.4153358445267532 ] },
-  { name: "sandile", xRGB: 55315.65090909091, xLUV: 4623.201704681333, yRGB: [ 147.9061818181818, 122.75854545454546, 94.45818181818181 ], yLUV: [ 52.379075549560035, 18.22197866754918, 21.877561138890595 ] },
-  { name: "swampert", xRGB: 87077.0187744459, xLUV: 5960.410457828435, yRGB: [ 135.6498044328553, 167.64172099087352, 178.74159061277706 ], yLUV: [ 66.46364941730991, -14.719165013089468, -13.085645704806204 ] },
-  { name: "slowpoke", xRGB: 119828.82836879433, xLUV: 6934.606160175564, yRGB: [ 218.39574468085107, 179.2595744680851, 187.69929078014184 ], yLUV: [ 76.5261247446447, 23.66946856357396, -0.9725910336308452 ] },
-  { name: "bewear", xRGB: 68026.65820683113, xLUV: 3869.9609419151807, yRGB: [ 136.58064516129033, 127.47604364326375, 126.06404174573055 ], yLUV: [ 52.90672381152933, 6.010133301230098, 2.323196484708112 ] },
-  { name: "ledian", xRGB: 81391.93795379538, xLUV: 9015.688333644537, yRGB: [ 177.61914191419143, 130.45676567656767, 126.8996699669967 ], yLUV: [ 60.33537681916737, 35.83388406052244, 11.122380572514343 ] },
-  { name: "marshadow", xRGB: 35934.43182795699, xLUV: 2426.603876551579, yRGB: [ 104.88645161290323, 103.02150537634408, 100.34494623655914 ], yLUV: [ 43.45130971606405, 2.002332961231949, 1.7233563863203558 ] },
-  { name: "klang", xRGB: 96096.55596888739, xLUV: 5453.42361413997, yRGB: [ 158.78356442340208, 168.2005410889415, 168.30977341900575 ], yLUV: [ 67.5495483741816, -3.012879877423246, -0.7835015669302845 ] },
-  { name: "liepard", xRGB: 60742.416666666664, xLUV: 5733.223473830001, yRGB: [ 149.49166666666667, 121.88333333333334, 118.75833333333334 ], yLUV: [ 53.53746961246951, 15.555117166413108, 0.7649174268255746 ] },
-  { name: "piloswine", xRGB: 60021.358639642734, xLUV: 5225.439486194653, yRGB: [ 170.54895225008588, 126.85468911027138, 100.94297492270698 ], yLUV: [ 56.59081867902599, 31.51188380005483, 23.051464827605887 ] },
-  { name: "giratina-altered", xRGB: 69759.2812703583, xLUV: 5582.597842431524, yRGB: [ 150.76009771986972, 136.59250814332248, 115.4671009771987 ], yLUV: [ 56.83166462914426, 11.004093670239754, 14.66385697786073 ] },
-  { name: "vivillon-highplains", xRGB: 61522.55679702049, xLUV: 7859.892935678209, yRGB: [ 173.20372439478584, 125.15735567970205, 80.00763500931099 ], yLUV: [ 56.18875196946135, 38.828643624506064, 33.30516937141481 ] },
-  { name: "snubbull", xRGB: 88780.83239910314, xLUV: 6921.026050950596, yRGB: [ 194.09921524663676, 141.42208520179372, 148.4164798206278 ], yLUV: [ 64.07305773933794, 35.553481465496176, 2.658830136921069 ] },
-  { name: "hypno", xRGB: 110547.486852917, xLUV: 12550.94597044804, yRGB: [ 220.37140509449466, 207.94617912900574, 96.41248972884141 ], yLUV: [ 82.5196893722137, 12.981992896946409, 59.382386412409176 ] },
-  { name: "drampa", xRGB: 105876.98803939963, xLUV: 6439.067985896471, yRGB: [ 172.98217636022514, 189.91791744840526, 175.26665103189492 ], yLUV: [ 75.04180019420599, -7.3006953201671765, 9.255790729994052 ] },
-  { name: "raichu", xRGB: 100624.47395023328, xLUV: 9629.516217969105, yRGB: [ 206.10186625194402, 185.05015552099533, 113.50077760497668 ], yLUV: [ 75.06066264229463, 17.877462847977, 44.72457087376834 ] },
-  { name: "deerling-spring", xRGB: 98933.9965034965, xLUV: 7491.993728739392, yRGB: [ 200.6118881118881, 170.13076923076923, 142.0986013986014 ], yLUV: [ 71.67639029986354, 20.90878120425747, 18.57314698263018 ] },
-  { name: "girafarig", xRGB: 73956.8413488115, xLUV: 8546.279343662836, yRGB: [ 177.32061912658926, 141.4129353233831, 67.50193477059149 ], yLUV: [ 59.87938218810442, 27.902826959490472, 37.91463453682276 ] },
-  { name: "ledyba", xRGB: 93161.1277932961, xLUV: 8034.958194262497, yRGB: [ 191.9504189944134, 165.2395251396648, 130.0286312849162 ], yLUV: [ 69.0937297534653, 21.53013762565113, 25.07030727346024 ] },
-  { name: "fletchinder", xRGB: 64663.85365853659, xLUV: 6803.272738964627, yRGB: [ 157.390243902439, 127.02439024390245, 107.36585365853658 ], yLUV: [ 55.60105963588151, 24.511482465541853, 14.71302132129187 ] },
-  { name: "latias", xRGB: 84908.54610778444, xLUV: 6581.1770225647915, yRGB: [ 180.5053892215569, 140.64191616766468, 150.59760479041915 ], yLUV: [ 62.969369668634066, 27.84584058242095, -1.499407684471793 ] },
-  { name: "gastrodon-east", xRGB: 61929.72897196261, xLUV: 6937.076800714143, yRGB: [ 87.42650807136789, 164.31648258283772, 132.7574341546304 ], yLUV: [ 62.56259368256089, -29.2025864127756, 13.356761995046131 ] },
-  { name: "quilladin", xRGB: 60847.41716328963, xLUV: 6932.0277753679065, yRGB: [ 147.90742947953913, 147.2860548271752, 84.93245927691696 ], yLUV: [ 59.497082202951425, 3.7717803968057626, 38.01623680634572 ] },
-  { name: "loudred", xRGB: 82814.40279099271, xLUV: 5616.795346330686, yRGB: [ 156.94671741198857, 148.43862987630828, 162.7427846495401 ], yLUV: [ 62.211394989167026, 4.8602272227361505, -11.91285456130576 ] },
-  { name: "frogadier", xRGB: 87058.48444976077, xLUV: 6302.638008315489, yRGB: [ 117.16985645933015, 168.24102870813397, 181.9671052631579 ], yLUV: [ 66.05548492426217, -18.868345971900702, -16.1971072133559 ] },
-  { name: "joltik", xRGB: 101322.08163265306, xLUV: 11539.11244228409, yRGB: [ 204.85714285714286, 196.59183673469389, 107.48979591836735 ], yLUV: [ 78.14635865237183, 10.312415177213868, 52.69184436626844 ] },
-  { name: "farfetchd", xRGB: 95578.16410670978, xLUV: 6930.342877206134, yRGB: [ 188.97898140662895, 176.5828617623282, 140.71382376717867 ], yLUV: [ 72.13407248377642, 9.624601106079098, 22.423257391344958 ] },
-  { name: "grapploct", xRGB: 33076.44334085779, xLUV: 5914.043749600236, yRGB: [ 56.116930022573364, 74.02979683972912, 110.63431151241535 ], yLUV: [ 32.66031282906154, -4.001141139285643, -34.02745459033758 ] },
-  { name: "mankey", xRGB: 109619.11570945945, xLUV: 6459.608798592636, yRGB: [ 199.95101351351352, 181.9028716216216, 169.05236486486487 ], yLUV: [ 74.8048962240294, 12.156207587027398, 11.391649539953464 ] },
-  { name: "zigzagoon-galar", xRGB: 57224.6875, xLUV: 3172.3772881691466, yRGB: [ 110.54885057471265, 110.48635057471265, 112.39942528735632 ], yLUV: [ 45.110426996295494, 0.32406721237414043, -1.2714958108355203 ] },
-  { name: "reshiram", xRGB: 133446.79184952978, xLUV: 7181.496696851354, yRGB: [ 201.7901776384535, 202.35506792058516, 213.57115987460816 ], yLUV: [ 81.37677065690119, -0.8082725639079104, -9.131170428053808 ] },
-  { name: "hitmonlee", xRGB: 87625.18791946309, xLUV: 5222.49988502601, yRGB: [ 179.6253813300793, 162.01342281879195, 151.0085417937767 ], yLUV: [ 67.41386601067205, 11.464349093299042, 10.382947820404922 ] },
-  { name: "bisharp", xRGB: 70406.8328506413, xLUV: 5947.539462202516, yRGB: [ 162.77658254033926, 127.05337194869674, 120.73727761688043 ], yLUV: [ 56.592166612947125, 26.055774624170407, 8.598601956735305 ] },
-  { name: "gastrodon-west", xRGB: 75517.58191621734, xLUV: 6377.712948173414, yRGB: [ 185.836582330983, 137.03649937785153, 120.38199917046869 ], yLUV: [ 61.38784842262228, 32.44078282492817, 14.910432737937594 ] },
-  { name: "gorebyss", xRGB: 125495.36, xLUV: 7114.757003049948, yRGB: [ 218.57333333333332, 181.18666666666667, 198.42666666666668 ], yLUV: [ 77.29557576747537, 21.655952031373012, -8.006720918323367 ] },
-  { name: "entei", xRGB: 60235.66174832962, xLUV: 5819.426938598095, yRGB: [ 152.87694877505567, 122.92817371937639, 96.28758351893096 ], yLUV: [ 54.026109056478354, 24.13335528233226, 17.78950321220719 ] },
-  { name: "bonsly", xRGB: 53373.56912637829, xLUV: 5734.040780267817, yRGB: [ 127.9253604749788, 140.00848176420695, 97.27056827820186 ], yLUV: [ 56.77860427877694, 0.35840584140006443, 28.44238756571514 ] },
-  { name: "clawitzer", xRGB: 69784.59134615384, xLUV: 7306.146133825742, yRGB: [ 101.26442307692308, 140.6875, 171.15865384615384 ], yLUV: [ 57.16790501091297, -13.636389443449572, -31.505078873116172 ] },
-  { name: "machop", xRGB: 102965.4055032585, xLUV: 6021.069878393535, yRGB: [ 165.2237509051412, 186.77842143374366, 188.78493845039827 ], yLUV: [ 74.01880580285999, -11.16821654126152, -4.111051120344719 ] },
-  { name: "rhyhorn", xRGB: 82274.8470478847, xLUV: 4661.551441094492, yRGB: [ 150.07577870757788, 158.50860065086007, 171.46211064621107 ], yLUV: [ 64.63107118475027, -5.142987776049859, -11.383961167329524 ] },
-  { name: "thievul", xRGB: 69625.95913043479, xLUV: 5832.476299839544, yRGB: [ 150.98478260869564, 116.60782608695652, 102.26739130434783 ], yLUV: [ 51.58793286307576, 26.48839517639885, 10.149762416778275 ] },
-  { name: "groudon", xRGB: 62405.21223709369, xLUV: 11028.707548880988, yRGB: [ 173.2721478648821, 94.93201614616528, 87.54981941788826 ], yLUV: [ 52.16770761752362, 58.85731066277655, 15.360632614945281 ] },
-  { name: "polteageist", xRGB: 89654.34518828453, xLUV: 6762.363443418712, yRGB: [ 145.96600418410043, 158.98953974895397, 164.38755230125523 ], yLUV: [ 64.54893289612559, -3.556281676239752, -6.940322898226264 ] },
-  { name: "thwackey", xRGB: 83112.27579852579, xLUV: 8415.04083070802, yRGB: [ 163.26105651105652, 165.78961916461915, 107.64649877149877 ], yLUV: [ 67.03701695166771, 7.552344783436563, 35.25241366157454 ] },
-  { name: "zapdos-galar", xRGB: 31121.142355889726, xLUV: 8002.935506596761, yRGB: [ 131.23408521303259, 63.69273182957394, 27.813533834586465 ], yLUV: [ 34.867264799545296, 54.12483954329735, 24.468729769606362 ] },
-  { name: "shiftry", xRGB: 76966.83160237389, xLUV: 5798.429711074501, yRGB: [ 149.56973293768547, 155.08506429277944, 131.54821958456972 ], yLUV: [ 63.10569611762843, 1.7602841814676806, 15.903583036685871 ] },
-  { name: "cranidos", xRGB: 70491.20955670696, xLUV: 4666.579194752169, yRGB: [ 129.4329303396661, 148.03799654576858, 164.08865860679333 ], yLUV: [ 60.32879498666725, -8.89251420737423, -15.293984021945791 ] },
-  { name: "rotom", xRGB: 123098.36429215509, xLUV: 9255.424617207822, yRGB: [ 191.59873760144274, 200.87285843101893, 189.6366095581605 ], yLUV: [ 80.7796045045888, 2.5603294880352188, 6.0758807021566446 ] },
-  { name: "palpitoad", xRGB: 79130.04673342871, xLUV: 6140.850429882699, yRGB: [ 126.0205054840248, 155.24558893657607, 160.7176919408679 ], yLUV: [ 61.88543089422651, -10.48247770196379, -8.650259320660338 ] },
-  { name: "meganium", xRGB: 102111.04621715733, xLUV: 9706.275626108529, yRGB: [ 197.2355175688509, 191.19214941437164, 140.5096549540994 ], yLUV: [ 77.37756673379336, 7.7216777271902854, 35.29260342637161 ] },
-  { name: "kubfu", xRGB: 85431.56525285481, xLUV: 4810.171462918629, yRGB: [ 154.9061990212072, 151.22512234910278, 146.90864600326265 ], yLUV: [ 61.137249462195356, 2.4586130954316823, 3.5316003812778916 ] },
-  { name: "furfrou-debutante", xRGB: 107532.13336103033, xLUV: 7076.7101763881155, yRGB: [ 195.91316992106357, 187.33194848358954, 159.1657665143332 ], yLUV: [ 75.49828560542711, 6.92419157122081, 20.703963742530533 ] },
-  { name: "reuniclus", xRGB: 111918.5391960915, xLUV: 8185.807412277484, yRGB: [ 181.38241172551633, 212.5018876304686, 173.56007106373528 ], yLUV: [ 81.94696569830138, -14.558260846723229, 25.929350374847207 ] },
-  { name: "luvdisc", xRGB: 125666.38, xLUV: 7696.790993426671, yRGB: [ 231.44, 183.74, 183.48 ], yLUV: [ 78.74903438420318, 30.541810586618272, 6.804272820035957 ] },
-  { name: "heatran", xRGB: 73496.95871903928, xLUV: 5378.972527500606, yRGB: [ 157.31273455091318, 131.94671003252438, 121.69226920190142 ], yLUV: [ 56.920733740575685, 18.72108494095018, 8.590057545456116 ] },
-  { name: "avalugg", xRGB: 104644.9828009828, xLUV: 7120.94318876557, yRGB: [ 140.93292383292382, 185.85135135135135, 212.11990171990172 ], yLUV: [ 72.98434456376754, -22.00713866730798, -26.606901029690505 ] },
-  { name: "rotom-wash", xRGB: 70364.327908869, xLUV: 8405.710370635907, yRGB: [ 137.27949552481692, 140.35028478437755, 130.35638730675345 ], yLUV: [ 60.42825504156873, 17.27273317610034, 5.294912117491929 ] },
-  { name: "exeggutor-alola", xRGB: 78085.75944811037, xLUV: 5224.909016812275, yRGB: [ 152.50509898020397, 163.80743851229755, 139.31493701259748 ], yLUV: [ 65.40682690413085, -4.584516400296873, 16.97407716741885 ] },
-  { name: "omastar", xRGB: 107336.1768579492, xLUV: 7464.809344619422, yRGB: [ 167.7290686735654, 192.3254938852305, 178.89181561618062 ], yLUV: [ 75.69657223254532, -8.693356652185908, 6.309368890366448 ] },
-  { name: "toucannon", xRGB: 67375.67721518988, xLUV: 5608.624219201208, yRGB: [ 147.6937682570594, 128.71518987341773, 115.88753651411879 ], yLUV: [ 54.77429473438663, 15.717188648121475, 10.605800484857202 ] },
-  { name: "doduo", xRGB: 84391.16423357664, xLUV: 6673.453095399586, yRGB: [ 190.35036496350364, 156.2728102189781, 127.4844890510949 ], yLUV: [ 66.50169028817149, 24.96256369392139, 23.75223525464806 ] },
-  { name: "diglett", xRGB: 75907.06867469879, xLUV: 5153.841121792595, yRGB: [ 172.9289156626506, 151.48433734939758, 135.7132530120482 ], yLUV: [ 63.92965113201842, 14.856319643183223, 13.74793767364279 ] },
-  { name: "gothita", xRGB: 97652.82432432432, xLUV: 5468.683844378527, yRGB: [ 170.55405405405406, 156.6891891891892, 171.85135135135135 ], yLUV: [ 65.26595605836994, 7.510468840527336, -9.918286666500835 ] },
-  { name: "surskit", xRGB: 89599.13505747127, xLUV: 6554.986800933737, yRGB: [ 142.10632183908046, 172.66235632183907, 181.79741379310346 ], yLUV: [ 68.83228151368272, -13.035628842966299, -12.409159775524682 ] },
-  { name: "azumarill", xRGB: 75170.21743849493, xLUV: 7168.175327550036, yRGB: [ 93.38929088277858, 150.33068017366136, 184.0416063675832 ], yLUV: [ 60.765043746012815, -15.995749860418975, -32.72718353830382 ] },
-  { name: "alomomola", xRGB: 106632.37313432836, xLUV: 6651.3686616526675, yRGB: [ 210.32153518123667, 160.23496801705758, 173.76972281449895 ], yLUV: [ 70.76824917457395, 31.03418574715441, -2.9367951195954807 ] },
-  { name: "barbaracle", xRGB: 79899.50648779415, xLUV: 5329.6583613306675, yRGB: [ 153.1308555091269, 149.0631185396965, 136.60567407081592 ], yLUV: [ 61.13565938411046, 5.0576766002737745, 7.410357190149712 ] },
-  { name: "carkol", xRGB: 26237.94223933649, xLUV: 1456.8821755130243, yRGB: [ 69.03939573459715, 65.31161137440758, 63.54443127962085 ], yLUV: [ 26.542709604976274, 1.979625185205301, 1.3782578937238883 ] },
-  { name: "cradily", xRGB: 93156.63057075841, xLUV: 6831.304174237845, yRGB: [ 181.49061767005472, 172.57857701329164, 149.46442533229086 ], yLUV: [ 70.75278379072813, 8.269738000224855, 18.54460144873093 ] },
-  { name: "necrozma", xRGB: 23583.640781827788, xLUV: 1318.3496108889724, yRGB: [ 66.73058637083993, 68.01558372952985, 71.77205493924987 ], yLUV: [ 27.63093117879643, -0.6865937677179028, -2.3649342487612426 ] },
-  { name: "suicune", xRGB: 86047.18833396873, xLUV: 5484.9839881587495, yRGB: [ 143.7708730461304, 162.68928707586733, 175.23675181090354 ], yLUV: [ 65.85436200122102, -7.958293371572342, -11.608183440115146 ] },
-  { name: "haunter", xRGB: 78740.40984340044, xLUV: 5254.702201889108, yRGB: [ 149.6456375838926, 137.5440715883669, 180.4586129753915 ], yLUV: [ 59.43662163196766, 3.679489525223326, -33.39613096967648 ] },
-  { name: "slowbro", xRGB: 118164.23243895086, xLUV: 6801.703398466222, yRGB: [ 204.9378956888755, 182.97678625263794, 188.20440156768163 ], yLUV: [ 76.16613800869474, 13.605126765700486, -0.9088853093468886 ] },
-  { name: "solrock", xRGB: 87129.36283185841, xLUV: 9794.946842430032, yRGB: [ 204.10619469026548, 161.75221238938053, 100.67256637168141 ], yLUV: [ 69.28334860726738, 34.647033630039324, 42.47907548623493 ] },
-  { name: "infernape", xRGB: 81955.12646793135, xLUV: 9483.505244174992, yRGB: [ 184.80909364649202, 144.69707919301416, 108.96687744655225 ], yLUV: [ 63.88431344831641, 33.81964281557364, 22.79404627876994 ] },
-  { name: "slowpoke-galar", xRGB: 85371.50163934426, xLUV: 8537.731027471302, yRGB: [ 202.4967213114754, 131.07950819672132, 125.26803278688524 ], yLUV: [ 62.00822013512004, 46.77726394911189, 10.425179703738026 ] },
-  { name: "rattata-alola", xRGB: 49395.08529411765, xLUV: 3090.2194555286756, yRGB: [ 121.25514705882352, 121.07867647058823, 109.25882352941177 ], yLUV: [ 49.75386679568413, 0.7824254582447399, 8.633369614630302 ] },
-  { name: "swinub", xRGB: 62205.84435797665, xLUV: 5061.801570275077, yRGB: [ 167.8501945525292, 126.30933852140078, 101.80155642023347 ], yLUV: [ 55.87794932759115, 28.874355774423467, 21.344809384597337 ] },
-  { name: "shroomish", xRGB: 114415.18910585817, xLUV: 6736.432270820996, yRGB: [ 196.31243576567317, 191.5950668036999, 174.28057553956833 ], yLUV: [ 77.06535029673806, 4.386972306119533, 13.691802657058274 ] },
-  { name: "dragapult", xRGB: 58679.33718892394, xLUV: 5474.479888847465, yRGB: [ 97.36347704171048, 132.27795303189626, 137.90816684192077 ], yLUV: [ 53.20710479461205, -11.60591282765021, -6.553659569778466 ] },
-  { name: "stoutland", xRGB: 91347.21057786484, xLUV: 6003.133203690277, yRGB: [ 167.68560235063663, 160.97967678746326, 144.75391772771792 ], yLUV: [ 65.25873824159572, 5.810217775517709, 11.770523027646831 ] },
-  { name: "shiinotic", xRGB: 93482.39025119618, xLUV: 5775.060222329209, yRGB: [ 185.38666267942583, 163.88815789473685, 160.57296650717703 ], yLUV: [ 68.88667164160181, 12.834673115201717, 4.468566704317801 ] },
-  { name: "deerling-summer", xRGB: 79037.76380153738, xLUV: 8411.875113090375, yRGB: [ 148.06988120195666, 176.89028651292801, 107.34591194968553 ], yLUV: [ 69.17632894505203, -9.515318574496645, 38.293803444853744 ] },
-  { name: "ekans", xRGB: 88002.4414587332, xLUV: 5550.523883892706, yRGB: [ 180.4088291746641, 140.16026871401152, 174.22552783109404 ], yLUV: [ 62.82452988546017, 20.648063579182338, -21.60527153202672 ] },
-  { name: "lickitung", xRGB: 121070.04904051173, xLUV: 7156.3268713312755, yRGB: [ 222.2505330490405, 181.91631130063965, 183.69243070362472 ], yLUV: [ 77.40287252368411, 25.058991504174845, 4.056445161141061 ] },
-  { name: "anorith", xRGB: 71449.00135135135, xLUV: 4408.317382947961, yRGB: [ 144.27027027027026, 146.82027027027027, 139.44594594594594 ], yLUV: [ 59.84789018241932, -0.4368782305634463, 5.558773285485048 ] },
-  { name: "spinda", xRGB: 111441.86677282378, xLUV: 7974.5112181664945, yRGB: [ 205.34447983014863, 168.95329087048833, 161.06687898089172 ], yLUV: [ 72.05561765838551, 26.23219956414045, 11.349177147317176 ] },
-  { name: "shelmet", xRGB: 85842.3802163833, xLUV: 6114.683102313881, yRGB: [ 178.06646058732613, 147.15378670788255, 144.8678516228748 ], yLUV: [ 63.480580943552184, 21.124148049354204, 6.591695424239888 ] },
-  { name: "dewpider", xRGB: 79301.37113402062, xLUV: 5776.988824830345, yRGB: [ 137.10767468499427, 160.7033218785796, 141.12256586483392 ], yLUV: [ 63.37517144335836, -10.238946353169196, 7.45039170840327 ] },
-  { name: "porygon2", xRGB: 83858.54474097332, xLUV: 9447.749841260922, yRGB: [ 164.4756671899529, 138.0949764521193, 161.9536891679749 ], yLUV: [ 63.209719132403855, 26.98676639676156, -11.814327575602915 ] },
-  { name: "chatot", xRGB: 67244.87336244542, xLUV: 6011.105641865586, yRGB: [ 127.73013100436681, 137.32139737991267, 120.88558951965065 ], yLUV: [ 56.06020384978528, 1.092845822984901, 7.026003695454873 ] },
-  { name: "sealeo", xRGB: 118122.61160949868, xLUV: 8026.474192843189, yRGB: [ 164.734036939314, 197.1282321899736, 206.09920844327178 ], yLUV: [ 77.884556286171, -11.560641835896607, -11.445532369368527 ] },
-  { name: "zamazenta", xRGB: 43486.33514596451, xLUV: 9228.60038433947, yRGB: [ 117.84487693188323, 68.8073840870063, 103.74298797939325 ], yLUV: [ 39.25835895998909, 39.31289498769686, -17.69050574469836 ] },
-  { name: "rillaboom", xRGB: 53139.66151560178, xLUV: 4795.780368527896, yRGB: [ 117.60178306092125, 123.77607726597326, 88.58023774145617 ], yLUV: [ 50.64923632611788, 4.457271771827785, 23.42585146039829 ] },
-  { name: "walrein", xRGB: 93419.86125211506, xLUV: 6209.273679430944, yRGB: [ 132.85984207557811, 172.66074450084602, 187.69994359842076 ], yLUV: [ 68.21911929143987, -16.320346189183386, -16.51682542942226 ] },
-  { name: "ninetales", xRGB: 114249.69023383768, xLUV: 10929.170109450248, yRGB: [ 220.47620357634113, 210.55680880330124, 125.58486932599725 ], yLUV: [ 83.24368789562031, 10.727016115838946, 55.94129677681509 ] },
-  { name: "darumaka-galar", xRGB: 92706.78553299492, xLUV: 5785.53039546262, yRGB: [ 137.64720812182742, 161.01776649746193, 164.30837563451777 ], yLUV: [ 63.37486829310377, -9.061232866664916, -4.785110377323124 ] },
-  { name: "shuckle", xRGB: 94110.2897897898, xLUV: 12094.579471344521, yRGB: [ 215.94594594594594, 168.9024024024024, 91.61111111111111 ], yLUV: [ 73.04160288344885, 37.77647102917757, 48.151856185754895 ] },
-  { name: "aron", xRGB: 108895.14489990467, xLUV: 5912.071733721929, yRGB: [ 169.07626310772164, 173.40324118207818, 176.87130600571973 ], yLUV: [ 69.33608461744134, -1.4003833318340912, -3.0874119623542535 ] },
-  { name: "slowking", xRGB: 120391.95180722892, xLUV: 7261.091661418387, yRGB: [ 212.37951807228916, 185.25903614457832, 183.84337349397592 ], yLUV: [ 77.37996868901013, 17.63327557350831, 4.489741341977883 ] },
-  { name: "hippowdon", xRGB: 50283.048438867816, xLUV: 4775.862462987665, yRGB: [ 135.67259994163993, 125.89028304639626, 89.39509775313685 ], yLUV: [ 52.165555093428026, 8.327712731477813, 22.990361080633043 ] },
-  { name: "typhlosion", xRGB: 119290.36652332121, xLUV: 10256.906997963924, yRGB: [ 218.01389348329474, 208.90936156136289, 143.02381739993385 ], yLUV: [ 82.72174676140285, 9.661184408066122, 45.021801171262084 ] },
-  { name: "deerling-autumn", xRGB: 91438.91334730957, xLUV: 8875.098660851567, yRGB: [ 200.74493361285815, 167.3508036338225, 112.71558350803633 ], yLUV: [ 70.57754147964212, 27.024327283964695, 34.053105004695 ] },
-  { name: "zacian", xRGB: 52875.0811550152, xLUV: 7399.263301759434, yRGB: [ 110.96960486322189, 96.20790273556231, 120.85379939209726 ], yLUV: [ 44.927066328508886, 19.918165302400986, -16.405971376742276 ] },
-  { name: "indeedee", xRGB: 56339.342366757, xLUV: 3741.504833531382, yRGB: [ 112.42095754290877, 104.07407407407408, 135.85546522131887 ], yLUV: [ 44.56567083882528, 2.3639167344362084, -23.929965910384734 ] },
-  { name: "articuno-galar", xRGB: 70647.50751173709, xLUV: 5305.731352561634, yRGB: [ 121.36760563380281, 106.92018779342723, 153.46666666666667 ], yLUV: [ 46.79584736070139, 4.4869538133839875, -35.25502536133707 ] },
-  { name: "chesnaught", xRGB: 88069.1086, xLUV: 6148.9558633701445, yRGB: [ 170.3774, 166.3552, 140.2228 ], yLUV: [ 67.56799995444958, 4.689913227405598, 19.358329681019352 ] },
-  { name: "sneasel", xRGB: 58606.69533333334, xLUV: 5007.804741558836, yRGB: [ 118.388, 123.692, 137.19 ], yLUV: [ 52.3989827736392, 3.205163151017316, -11.049380425390659 ] },
-  { name: "vivillon-archipelago", xRGB: 46494.21445872927, xLUV: 6007.075020412828, yRGB: [ 148.07452953232718, 102.11086267933669, 84.09726103968697 ], yLUV: [ 48.459356409306054, 36.500323562941254, 19.53499863056239 ] },
-  { name: "carvanha", xRGB: 71282.29193697868, xLUV: 7546.980274337066, yRGB: [ 159.38090824837812, 139.37164040778498, 126.05838739573679 ], yLUV: [ 60.75327778303991, 21.511139770552106, 10.839400670807235 ] },
-  { name: "kyogre", xRGB: 78415.90760059613, xLUV: 7515.972629078474, yRGB: [ 102.22168405365127, 137.98248882265275, 185.56855439642325 ], yLUV: [ 57.482877440236294, -9.841684140240249, -41.1689168968785 ] },
-  { name: "trapinch", xRGB: 89981.6932038835, xLUV: 9377.27073800745, yRGB: [ 221.15404530744337, 151.06343042071197, 117.29449838187702 ], yLUV: [ 68.68354793052316, 52.131096823884455, 31.167574045979922 ] },
-  { name: "deoxys-defense", xRGB: 82368.4870512066, xLUV: 10192.429858169577, yRGB: [ 201.22336668628606, 149.08269570335491, 108.47881106533255 ], yLUV: [ 66.89695127754514, 45.17568391169727, 30.229404721626906 ] },
-  { name: "krokorok", xRGB: 59962.553975776726, xLUV: 4969.347241773193, yRGB: [ 153.3312269615587, 125.92890995260663, 102.15218536071616 ], yLUV: [ 54.011688425596276, 19.814506357692565, 19.546221530432657 ] },
-  { name: "florges-orange", xRGB: 74642.27777777778, xLUV: 6559.315701415439, yRGB: [ 142.44042838018743, 162.00066934404285, 132.25635876840695 ], yLUV: [ 65.1151926121558, -2.503568149359611, 19.2252655785397 ] },
-  { name: "thundurus-therian", xRGB: 90408.69117252482, xLUV: 5740.071804765376, yRGB: [ 144.98577944727663, 156.15186477059297, 177.3072176012879 ], yLUV: [ 63.461534403579904, -6.1313199095069075, -17.687555139683692 ] },
-  { name: "tapu-lele", xRGB: 67791.64689378758, xLUV: 5351.467133227914, yRGB: [ 165.30581162324648, 115.64889779559118, 125.37034068136272 ], yLUV: [ 53.76924811507953, 32.31814959898407, 0.5275162752776358 ] },
-  { name: "pineco", xRGB: 34106.34707520891, xLUV: 2462.638822489471, yRGB: [ 73.28467966573817, 103.94150417827298, 99.63231197771587 ], yLUV: [ 40.81602135843051, -13.69016971015919, 0.1723811959137606 ] },
-  { name: "vivillon-tundra", xRGB: 105079.75298507462, xLUV: 6642.62137471543, yRGB: [ 145.69253731343284, 178.7125, 198.11026119402985 ], yLUV: [ 70.21042172193214, -16.506785344552146, -19.695512130351617 ] },
-  { name: "ditto", xRGB: 126722.62946428571, xLUV: 6976.80413619864, yRGB: [ 203.77232142857142, 183.5544642857143, 219.40625 ], yLUV: [ 77.13774689040736, 8.907052882930593, -26.027093313689743 ] },
-  { name: "vivillon-sandstorm", xRGB: 80510.92898415658, xLUV: 6025.935113944077, yRGB: [ 174.44883504193848, 155.5951537744641, 121.24026095060577 ], yLUV: [ 64.03883493045556, 14.070347214490026, 26.314463298878 ] },
-  { name: "misdreavus", xRGB: 58592.43625377643, xLUV: 4752.8329606810785, yRGB: [ 104.16737160120846, 137.33534743202418, 153.7190332326284 ], yLUV: [ 55.86249247453427, -12.429755223346392, -16.44849802383813 ] },
-  { name: "arctovish", xRGB: 86183.89650949174, xLUV: 6415.611458911061, yRGB: [ 119.45805266380894, 151.54255970606246, 189.5817513778322 ], yLUV: [ 60.92437361077984, -14.72341364958864, -34.84947521482782 ] },
-  { name: "rapidash-galar", xRGB: 98990.36262295082, xLUV: 8698.245455514232, yRGB: [ 169.54590163934427, 147.92885245901638, 182.89573770491802 ], yLUV: [ 64.94152613084569, 8.625654995160204, -23.498715288008942 ] },
-  { name: "weedle", xRGB: 94874.2790368272, xLUV: 7576.145625253161, yRGB: [ 200.8456090651558, 167.39943342776203, 134.12181303116148 ], yLUV: [ 70.56593425664681, 23.392785012734688, 25.28175725504287 ] },
-  { name: "pansage", xRGB: 70061.58861788618, xLUV: 7963.372302740932, yRGB: [ 117.40596205962059, 179.53658536585365, 122.51056910569106 ], yLUV: [ 68.39697876858506, -24.443574403993214, 35.84646722453494 ] },
-  { name: "diglett-alola", xRGB: 55043.091688089116, xLUV: 3756.9955317200197, yRGB: [ 138.5304198800343, 122.6203941730934, 109.67523564695801 ], yLUV: [ 51.813632117145346, 11.286052189703284, 11.178132909171131 ] },
-  { name: "venusaur", xRGB: 90849.48157370518, xLUV: 7285.55823208281, yRGB: [ 145.2026892430279, 175.56225099601593, 169.6613545816733 ], yLUV: [ 69.92324705248656, -10.56701733081061, 0.6884402337546598 ] },
-  { name: "zigzagoon", xRGB: 74056.01618122977, xLUV: 4460.440495896048, yRGB: [ 158.1495145631068, 149.02783171521037, 135.5598705501618 ], yLUV: [ 61.51429477713754, 6.363512001701433, 10.97682603058763 ] },
-  { name: "kyurem", xRGB: 100554.2665388303, xLUV: 5830.836547067821, yRGB: [ 162.76861617130072, 178.74177053371685, 181.7027804410355 ], yLUV: [ 71.22445414938157, -7.991643108581941, -4.277100531019165 ] },
-  { name: "stunky", xRGB: 59123.19432120674, xLUV: 3620.4920312375984, yRGB: [ 127.04747116237799, 110.122892635315, 127.0248447204969 ], yLUV: [ 47.30626129768272, 7.53104495709554, -10.10233452414282 ] },
-  { name: "whiscash", xRGB: 60337.56540880503, xLUV: 4893.872687294448, yRGB: [ 107.70943396226416, 126.85849056603773, 141.66666666666666 ], yLUV: [ 51.708411900826576, -7.051702786147203, -13.411084116666027 ] },
-  { name: "noctowl", xRGB: 68004.78979099679, xLUV: 5363.893251085177, yRGB: [ 170.45779742765274, 138.45297427652733, 110.99879421221866 ], yLUV: [ 59.454937132210794, 22.923404301692322, 22.94885052142096 ] },
-  { name: "decidueye", xRGB: 74488.98596491228, xLUV: 6394.409643909227, yRGB: [ 153.25454545454545, 157.81690590111643, 122.88421052631578 ], yLUV: [ 64.314498362243, 5.428289543721475, 25.417369868795827 ] },
-  { name: "mawile", xRGB: 55177.99242806663, xLUV: 3937.4460795147083, yRGB: [ 125.79656739020696, 123.18778394750126, 106.57395254921757 ], yLUV: [ 50.323742135723535, 2.724943057612436, 11.662189952193135 ] },
-  { name: "lugia", xRGB: 133326.2956263499, xLUV: 7315.32979694859, yRGB: [ 196.74838012958963, 199.5939524838013, 213.19303455723542 ], yLUV: [ 80.11570776526955, -1.7462716866531398, -11.059228402907879 ] },
-  { name: "farfetchd-galar", xRGB: 45836.86490156144, xLUV: 3514.2132895299405, yRGB: [ 105.95179904955873, 102.46707399864222, 85.58384249830279 ], yLUV: [ 42.068170786448974, 5.595648013987112, 11.262886056217438 ] },
-  { name: "furfrou-matron", xRGB: 96549.24125874125, xLUV: 5581.696412644793, yRGB: [ 185.833479020979, 161.02447552447552, 165.0590034965035 ], yLUV: [ 68.02409744654935, 14.873848417705847, 0.24785957869732936 ] },
-  { name: "lycanroc-dusk", xRGB: 95364.73120886734, xLUV: 6784.0577021787685, yRGB: [ 174.27641149982682, 160.53706269483894, 142.09092483546934 ], yLUV: [ 66.20991325953479, 13.312935677437414, 12.353679524900855 ] },
-  { name: "wormadam-trash", xRGB: 72228.25651658767, xLUV: 5598.362157402488, yRGB: [ 179.14454976303318, 123.64277251184834, 133.80450236966826 ], yLUV: [ 57.714639504005746, 35.3099042282224, 1.0466342642095385 ] },
-  { name: "pidgey", xRGB: 98485.12475442044, xLUV: 7239.813828144051, yRGB: [ 193.4459724950884, 177.04715127701374, 138.12082514734774 ], yLUV: [ 72.12646364229549, 12.880246607793044, 28.191849480262967 ] },
-  { name: "dodrio", xRGB: 72338.10411105178, xLUV: 5439.726414789128, yRGB: [ 166.5056059797117, 140.3021890016017, 118.17405232247731 ], yLUV: [ 59.41862455953593, 18.98511971243473, 18.330862874575836 ] },
-  { name: "chikorita", xRGB: 108510.91341256366, xLUV: 8448.252427040376, yRGB: [ 186.1629881154499, 203.7546689303905, 152.55263157894737 ], yLUV: [ 79.30871183424811, -7.213155848559767, 34.54376339758644 ] },
-  { name: "lopunny", xRGB: 93345.4323905463, xLUV: 7652.003662719058, yRGB: [ 199.71212708252617, 170.45447500968618, 126.02130956993413 ], yLUV: [ 70.97625653053517, 22.563712844791297, 33.729332612538606 ] },
-  { name: "tympole", xRGB: 84534.58028792913, xLUV: 5743.650966911803, yRGB: [ 158.23366555924696, 155.65448504983388, 135.34108527131784 ], yLUV: [ 62.642983368357626, 3.863836509999186, 14.685618840350644 ] },
-  { name: "purugly", xRGB: 93207.86239737274, xLUV: 5297.148781400324, yRGB: [ 165.0144499178982, 162.51888341543514, 173.1264367816092 ], yLUV: [ 66.74966411600153, 1.076720877113727, -8.11214434936768 ] },
-  { name: "tapu-fini", xRGB: 57685.1517101253, xLUV: 3931.476953991838, yRGB: [ 113.45445309854385, 112.98611581442601, 139.45750084659667 ], yLUV: [ 47.59768156975083, -1.6330636982559095, -20.851238983181524 ] },
-  { name: "vibrava", xRGB: 63813.80316930776, xLUV: 5657.42341794672, yRGB: [ 124.14678899082568, 146.50625521267722, 114.23603002502085 ], yLUV: [ 57.645363115649864, -8.80868839402314, 20.280194137016455 ] },
-  { name: "druddigon", xRGB: 50781.10313115831, xLUV: 6178.660441763185, yRGB: [ 79.24523757389971, 111.39522662579374, 132.07291438581126 ], yLUV: [ 48.529478997615065, 3.218878033188542, -16.79184492839182 ] },
-  { name: "stakataka", xRGB: 41830.82613851992, xLUV: 2549.1670660627074, yRGB: [ 105.11681688804553, 113.53154648956357, 113.71050759013282 ], yLUV: [ 46.812255025510396, -3.2997190434007146, -0.9891817728544627 ] },
-  { name: "delcatty", xRGB: 86499.3707596751, xLUV: 5926.4950452566, yRGB: [ 182.54897276636407, 152.0984233158146, 150.75011944577162 ], yLUV: [ 65.20538065778568, 17.999437945082146, 3.59459875467404 ] },
-  { name: "zoroark", xRGB: 30526.007950530035, xLUV: 4053.6317751764154, yRGB: [ 105.31890459363957, 68.23527679623086, 80.80005889281507 ], yLUV: [ 34.490797654270416, 25.06980610201041, -2.0671355320097184 ] },
-  { name: "hatterene", xRGB: 112356.82392667631, xLUV: 6859.229560746249, yRGB: [ 181.79787747226243, 170.11384466956102, 192.2590448625181 ], yLUV: [ 70.62417282357394, 7.385711445109003, -15.766429049353388 ] },
-  { name: "togekiss", xRGB: 141887.57406431207, xLUV: 7820.664039133523, yRGB: [ 205.10226673695308, 216.14285714285714, 215.847127042699 ], yLUV: [ 85.3641798955123, -5.29209708739886, -1.0853070124013504 ] },
-  { name: "musharna", xRGB: 121518.94815789473, xLUV: 7343.1172857108795, yRGB: [ 217.33157894736843, 176.36157894736843, 195.6834210526316 ], yLUV: [ 76.00843991362139, 23.961416156238993, -9.564053372201368 ] },
-  { name: "frosmoth", xRGB: 137409.40740740742, xLUV: 7298.53248717422, yRGB: [ 205.3466972126766, 204.03589156166476, 210.0225276823215 ], yLUV: [ 81.66695887661137, 0.47150128723380913, -4.625018621685796 ] },
-  { name: "elekid", xRGB: 87845.20176630435, xLUV: 8971.153563517915, yRGB: [ 186.5149456521739, 174.1460597826087, 101.0991847826087 ], yLUV: [ 69.725088625319, 11.939497993769072, 46.72944883792658 ] },
-  { name: "poliwhirl", xRGB: 85209.565351418, xLUV: 5414.838328268756, yRGB: [ 138.0123304562269, 151.64796547472255, 171.2577065351418 ], yLUV: [ 61.47956475039839, -6.26861920718321, -17.704898529858287 ] },
-  { name: "meowth-galar", xRGB: 47737.74565972222, xLUV: 2955.5440243500607, yRGB: [ 116.18836805555556, 107.35243055555556, 101.07638888888889 ], yLUV: [ 44.912610818835354, 5.700879028320824, 4.880492796319252 ] },
-  { name: "quilava", xRGB: 77228.71178707224, xLUV: 6153.561319098896, yRGB: [ 138.67604562737642, 155.0296577946768, 133.6342205323194 ], yLUV: [ 62.295121614888394, -0.744748419899319, 13.348989842180755 ] },
-  { name: "dugtrio", xRGB: 79153.35011185682, xLUV: 5567.998107350587, yRGB: [ 180.37304250559285, 154.4927293064877, 134.19351230425056 ], yLUV: [ 65.36236571209551, 18.014883948250446, 17.39390016515322 ] },
-  { name: "roselia", xRGB: 72368.26234979973, xLUV: 7175.752401047397, yRGB: [ 143.8871829105474, 152.73898531375167, 136.76034712950602 ], yLUV: [ 62.84441281354503, 0.2371810672312249, 10.686841439523594 ] },
-  { name: "phantump", xRGB: 42562.294375, xLUV: 3290.259031085245, yRGB: [ 115.185625, 109.448125, 96.528125 ], yLUV: [ 46.19637979322275, 7.308550604946361, 9.759922955000402 ] },
-  { name: "butterfree", xRGB: 97886.31288343559, xLUV: 5618.532050426843, yRGB: [ 160.83435582822085, 161.17177914110428, 166.57668711656441 ], yLUV: [ 65.23256561045248, 0.6475116734423161, -4.439117277984516 ] },
-  { name: "metang", xRGB: 61486.15963107485, xLUV: 4372.404502399551, yRGB: [ 97.53139411138702, 136.93472862717275, 152.487406881873 ], yLUV: [ 54.31326880782894, -16.69546539869574, -16.526310212337645 ] },
-  { name: "seadra", xRGB: 108756.7813095995, xLUV: 7169.835988905203, yRGB: [ 155.74507310870948, 194.25174825174824, 200.17418944691673 ], yLUV: [ 75.88687112314157, -18.00941127000969, -9.658961415695018 ] },
-  { name: "servine", xRGB: 89462.38711819389, xLUV: 8679.516598061355, yRGB: [ 165.93625498007967, 188.83997343957503, 123.47011952191235 ], yLUV: [ 73.6809395020116, -7.9783855772775, 40.065695446578296 ] },
-  { name: "dartrix", xRGB: 92927.85066570708, xLUV: 6490.31566289601, yRGB: [ 174.99424253328536, 168.85606333213386, 143.724721122706 ], yLUV: [ 68.5578809141968, 6.087009875677035, 18.12803571936792 ] },
-  { name: "paras", xRGB: 89177.06604651162, xLUV: 9214.75575758292, yRGB: [ 202.60837209302326, 159.48372093023255, 107.42418604651162 ], yLUV: [ 68.46479053603656, 33.00081294801634, 33.09535787410627 ] },
-  { name: "ralts", xRGB: 113274.73442622951, xLUV: 7642.004175172195, yRGB: [ 185.1792349726776, 196.64262295081969, 178.67650273224044 ], yLUV: [ 78.15679159247074, -4.119013153397929, 12.629620202071532 ] },
-  { name: "kyurem-black", xRGB: 86911.32618379805, xLUV: 5561.083936277516, yRGB: [ 135.5764725292856, 161.5603035802673, 172.2719023263488 ], yLUV: [ 64.20572779441864, -11.992062054476383, -11.803068236639824 ] },
-  { name: "octillery", xRGB: 65938.67445403758, xLUV: 14102.206980329554, yRGB: [ 212.06399187404773, 96.52615540883697, 76.30573895378365 ], yLUV: [ 56.04896898715527, 89.95976710774885, 28.426890550244142 ] },
-  { name: "poliwrath", xRGB: 84374.61049610496, xLUV: 5507.2375478563035, yRGB: [ 135.03116031160312, 151.25748257482576, 175.90364903649038 ], yLUV: [ 61.4394483852652, -7.6503464688902705, -22.035604249840993 ] },
-  { name: "terrakion", xRGB: 69050.0217972445, xLUV: 4539.670544337149, yRGB: [ 154.24799506477484, 139.54122969360478, 127.96319144560971 ], yLUV: [ 58.408441277185105, 10.317214576030327, 9.372650658496056 ] },
-  { name: "swablu", xRGB: 139010.93605359318, xLUV: 7867.373209006849, yRGB: [ 192.2076735688185, 211.39220462850182, 221.64190012180268 ], yLUV: [ 83.44006443117358, -8.628902893170272, -10.333554800920206 ] },
-  { name: "spectrier", xRGB: 38436.53723616089, xLUV: 4116.622122095159, yRGB: [ 82.25686977299881, 75.07287933094385, 119.56113102349661 ], yLUV: [ 33.876054869744856, 1.1953809039925947, -33.841147715848074 ] },
-  { name: "magmar", xRGB: 80049.09769658459, xLUV: 12078.237825260363, yRGB: [ 203.59491660047658, 141.68467037331214, 81.73232724384432 ], yLUV: [ 64.82014980542469, 50.78111107866956, 40.60126596910705 ] },
-  { name: "cinccino", xRGB: 131809.4246186591, xLUV: 7141.609507792121, yRGB: [ 209.26463284852784, 202.64916637105355, 201.6903157147925 ], yLUV: [ 81.75835976580214, 4.2400187918171115, 1.6503222728306268 ] },
-  { name: "boldore", xRGB: 25473.54375, xLUV: 3486.7316594011895, yRGB: [ 79.025, 65.93125, 78.3 ], yLUV: [ 30.29655247223403, 12.842492353709568, -8.309369391489309 ] },
-  { name: "drizzile", xRGB: 87686.60878405855, xLUV: 7169.543959915356, yRGB: [ 116.7547783651891, 170.35095567303782, 172.2464416429443 ], yLUV: [ 66.56449777452528, -19.46636349622065, -9.512264766087366 ] },
-  { name: "mantine", xRGB: 85108.19785105594, xLUV: 4914.713585955942, yRGB: [ 146.7139681363468, 152.76065209336792, 168.9544275657651 ], yLUV: [ 62.46510013251517, -2.429476294476541, -13.482179531550567 ] },
-  { name: "boltund", xRGB: 92817.20845070423, xLUV: 6763.002343099902, yRGB: [ 170.3718309859155, 170.72032193158952, 134.8221327967807 ], yLUV: [ 68.35406587124754, 2.1293527816797173, 20.07578391685364 ] },
-  { name: "milcery", xRGB: 120060.89887640449, xLUV: 9180.54204829115, yRGB: [ 213.0308988764045, 203.72331460674158, 145.86657303370785 ], yLUV: [ 80.41546141175573, 8.979578560538213, 41.01606759017984 ] },
-  { name: "tornadus-incarnate", xRGB: 92192.58929088278, xLUV: 6658.446698569286, yRGB: [ 166.74761215629522, 158.83068017366136, 166.1178002894356 ], yLUV: [ 66.32066129077053, 3.0896821506655563, -6.020246246589575 ] },
-  { name: "zarude", xRGB: 19787.34736842105, xLUV: 1944.619865561264, yRGB: [ 63.66896551724138, 73.36987295825772, 64.67150635208712 ], yLUV: [ 29.889564387946415, -4.391579095253628, 4.757328923708862 ] },
-  { name: "glaceon", xRGB: 92617.67137425313, xLUV: 5903.196204283719, yRGB: [ 128.41879413362304, 175.6235741444867, 180.6469310157523 ], yLUV: [ 68.43669625582594, -19.276163681281567, -8.493128278162652 ] },
-  { name: "pidove", xRGB: 79963.51543498597, xLUV: 4653.018484066886, yRGB: [ 153.6997193638915, 148.16557530402244, 143.09260991580916 ], yLUV: [ 60.68172369280333, 4.1563817077474665, 3.9479283288665457 ] },
-  { name: "skarmory", xRGB: 89199.74135338346, xLUV: 5509.173749434578, yRGB: [ 164.95538847117794, 153.10225563909773, 164.52080200501254 ], yLUV: [ 64.38618115054236, 8.255716105630032, -7.052028315355659 ] },
-  { name: "salamence", xRGB: 63706.95161290323, xLUV: 5749.8793446232, yRGB: [ 125.48790322580645, 127.98790322580645, 144.24193548387098 ], yLUV: [ 55.447091371655645, 7.8074040558469875, -10.487733383611578 ] },
-  { name: "jolteon", xRGB: 102238.0098265896, xLUV: 9395.227785118826, yRGB: [ 197.61271676300578, 186.25317919075144, 123.31387283236994 ], yLUV: [ 74.81335022274028, 10.189139974868596, 37.76635474433267 ] },
-  { name: "tyrunt", xRGB: 52388.974043114824, xLUV: 3323.6360102504473, yRGB: [ 133.6066871975363, 116.15046194456666, 109.52397712274526 ], yLUV: [ 49.639761494277266, 11.391026301224132, 6.490684779782865 ] },
-  { name: "eevee", xRGB: 72653.20512820513, xLUV: 6935.199839140474, yRGB: [ 179.17948717948718, 138.53846153846155, 93.12820512820512 ], yLUV: [ 59.94127927989686, 30.950209774815537, 31.50345018944532 ] },
-  { name: "nidoqueen", xRGB: 93178.84107657801, xLUV: 6349.031884743608, yRGB: [ 149.04005126561998, 171.29637936558794, 183.54661967318168 ], yLUV: [ 68.62516011856115, -10.290870237341315, -13.723799233153553 ] },
-  { name: "petilil", xRGB: 104212.56116102281, xLUV: 9596.687357129986, yRGB: [ 182.65307532826537, 203.89426399447132, 135.90601243953006 ], yLUV: [ 78.92239211741362, -7.790590035493919, 43.31520817466532 ] },
-  { name: "pyroar", xRGB: 70976.62012211309, xLUV: 10551.015802160005, yRGB: [ 198.95009291213168, 123.35041146801169, 90.60047783382002 ], yLUV: [ 60.15992471662909, 57.89344231255241, 30.917769587601843 ] },
-  { name: "linoone-galar", xRGB: 60836.75411836486, xLUV: 3438.1417935855125, yRGB: [ 114.72300183038438, 110.71201952410006, 111.48139109212934 ], yLUV: [ 45.274637307714826, 2.4564344220312835, 0.08657836156303775 ] },
-  { name: "drapion", xRGB: 70843.44983748646, xLUV: 4985.502587094308, yRGB: [ 156.790465872156, 112.07107258938245, 152.2632719393283 ], yLUV: [ 52.938951660283614, 23.016330674061678, -22.989319876189874 ] },
-  { name: "alcremie", xRGB: 109817.8596112311, xLUV: 7432.9718926124815, yRGB: [ 207.89992800575953, 163.12598992080635, 158.90856731461483 ], yLUV: [ 70.3069642111898, 29.555857787949122, 10.012433263379675 ] },
-  { name: "gastly", xRGB: 51051.531627576405, xLUV: 3005.7760960428704, yRGB: [ 116.14854299928926, 101.91542288557214, 126.39445628997868 ], yLUV: [ 44.29122350152015, 6.077656166935812, -17.059672140308642 ] },
-  { name: "toxtricity", xRGB: 79419.18045334118, xLUV: 6976.443461710503, yRGB: [ 157.41095083897557, 135.899028554607, 141.62731822196056 ], yLUV: [ 58.32266541831449, 9.09328092459363, -7.100855332212145 ] },
-  { name: "lumineon", xRGB: 65174.98003992016, xLUV: 4113.8639752452555, yRGB: [ 105.38473053892216, 135.38922155688624, 139.02844311377245 ], yLUV: [ 52.9819518134857, -13.966449292387983, -5.719354679361516 ] },
-  { name: "toxicroak", xRGB: 66324.32137030995, xLUV: 6734.081237600647, yRGB: [ 125.89151712887438, 129.739396411093, 156.14070146818923 ], yLUV: [ 55.78479210311474, 4.250584081021216, -22.665818468593375 ] },
-  { name: "machoke", xRGB: 96139.85859796286, xLUV: 5467.490062964948, yRGB: [ 167.71839424805273, 164.23996405032955, 181.08717795086878 ], yLUV: [ 67.76488866778743, 1.3562786726168612, -13.23072209005808 ] },
-  { name: "darumaka", xRGB: 62664.692700729924, xLUV: 8912.59840886985, yRGB: [ 185.77153284671533, 109.43284671532847, 88.41240875912409 ], yLUV: [ 54.85162186738526, 57.344548674920695, 24.307574165068765 ] },
-  { name: "swellow", xRGB: 48915.61806020067, xLUV: 3771.4700724922327, yRGB: [ 110.6989966555184, 97.05351170568562, 120.79665551839464 ], yLUV: [ 42.752783388037805, 9.36608074680444, -14.695091182966285 ] },
-  { name: "mr-mime", xRGB: 91809.21578947369, xLUV: 5951.012218411208, yRGB: [ 162.29780701754385, 150.66622807017544, 165.49649122807017 ], yLUV: [ 63.6797491872572, 11.26538381937604, -8.30035965942229 ] },
-  { name: "exploud", xRGB: 85998.26911314984, xLUV: 5768.686616718313, yRGB: [ 156.62181447502547, 154.06141692150865, 173.66946992864425 ], yLUV: [ 64.1129925082973, 0.6718645317970755, -17.28381039717399 ] },
-  { name: "floette-blue", xRGB: 88270.21980337078, xLUV: 6325.715494013534, yRGB: [ 146.20716292134833, 171.3251404494382, 155.35182584269663 ], yLUV: [ 67.65060244411801, -9.496043309523296, 8.063978950709027 ] },
-  { name: "pancham", xRGB: 83750.34147909968, xLUV: 5053.681412970064, yRGB: [ 150.57299035369775, 151.63344051446944, 139.01736334405146 ], yLUV: [ 60.704529977400284, 0.5510408995655155, 9.352626566046046 ] },
-  { name: "growlithe", xRGB: 101524.0326923077, xLUV: 7951.296349959247, yRGB: [ 206.29935897435897, 173.6179487179487, 137.04615384615386 ], yLUV: [ 72.63279482307672, 24.840648177242116, 28.39601865005172 ] },
-  { name: "mantyke", xRGB: 71034.77868852459, xLUV: 6358.845985873937, yRGB: [ 89.48688524590163, 140.57049180327868, 181.3704918032787 ], yLUV: [ 56.627945373869565, -18.1402979837289, -38.19474455019451 ] },
-  { name: "pinsir", xRGB: 96692.4012526096, xLUV: 5334.972065469288, yRGB: [ 178.4893528183716, 168.09060542797494, 166.91941544885177 ], yLUV: [ 69.12277340961491, 6.270696497613805, 2.0883151387877086 ] },
-  { name: "spinarak", xRGB: 83058.93604651163, xLUV: 8294.583508447648, yRGB: [ 164.7122093023256, 173.90406976744185, 119.44476744186046 ], yLUV: [ 69.02144028498414, -0.8669420715477464, 35.34284462492867 ] },
-  { name: "duskull", xRGB: 80392.55453257791, xLUV: 4595.0907123385305, yRGB: [ 150.43555240793202, 150.50779036827194, 145.98087818696885 ], yLUV: [ 61.091979015937774, 0.5547239913724008, 3.594682992924897 ] },
-  { name: "mudbray", xRGB: 66779.46343130554, xLUV: 4441.679547291738, yRGB: [ 159.892002734108, 133.1701982228298, 120.5393028024607 ], yLUV: [ 57.14048394760377, 18.23558995064041, 12.340652373261996 ] },
-  { name: "vespiquen", xRGB: 72943.33701657459, xLUV: 8552.571288060475, yRGB: [ 174.69060773480663, 151.22099447513813, 77.4475138121547 ], yLUV: [ 62.58215397449913, 19.74089760871834, 40.82903928846524 ] },
-  { name: "ferrothorn", xRGB: 77660.6912696227, xLUV: 6292.123251730112, yRGB: [ 133.52795373175434, 166.7367116496833, 137.47480033048748 ], yLUV: [ 64.9030792448369, -14.488414336730722, 17.779654516984287 ] },
-  { name: "dewott", xRGB: 81238.57450628366, xLUV: 5883.641786647897, yRGB: [ 122.21484141232794, 159.24655894673847, 171.15978456014363 ], yLUV: [ 62.78404443480265, -16.421685624937332, -13.978114743252387 ] },
-  { name: "crobat", xRGB: 68919.67278406872, xLUV: 5253.248075236744, yRGB: [ 128.1936743459586, 135.2963686060133, 168.60601327606403 ], yLUV: [ 57.33498833382977, -3.7793431335874628, -26.780792578219163 ] },
-  { name: "cosmoem", xRGB: 81228.25299684543, xLUV: 7900.328660368981, yRGB: [ 172.2094637223975, 158.49905362776025, 109.87381703470031 ], yLUV: [ 64.42907960966754, 10.499733610101028, 31.629525669021643 ] },
-  { name: "tynamo", xRGB: 128639.95570698466, xLUV: 7202.188426896806, yRGB: [ 199.8006814310051, 205.30323679727428, 200.23509369676322 ], yLUV: [ 81.6463358105173, -2.5243965195754954, 3.056793010998007 ] },
-  { name: "rufflet", xRGB: 116185.8390596745, xLUV: 6890.966074080113, yRGB: [ 191.85714285714286, 185.667872212176, 180.60578661844485 ], yLUV: [ 75.11426935681128, 4.580494922708685, 4.0171201858315 ] },
-  { name: "calyrex", xRGB: 43803.73396381579, xLUV: 3274.314730768704, yRGB: [ 64.92598684210526, 115.62993421052632, 110.40666118421052 ], yLUV: [ 45.347019169287876, -14.932838515033854, 1.171204338597282 ] },
-  { name: "exeggcute", xRGB: 134976.03479381444, xLUV: 7181.719108170737, yRGB: [ 219.42268041237114, 200.3305412371134, 202.95940721649484 ], yLUV: [ 82.0328746131709, 11.142047086420243, 0.38110126935253863 ] },
-  { name: "clamperl", xRGB: 42177.33558441558, xLUV: 2828.861308537714, yRGB: [ 79.66597402597402, 91.10233766233766, 106.16831168831169 ], yLUV: [ 36.503286450331785, -5.631779762756103, -13.569177152174092 ] },
-  { name: "bronzong", xRGB: 68048.64161849712, xLUV: 5289.713778785966, yRGB: [ 106.51477199743096, 157.91329479768785, 157.94059087989723 ], yLUV: [ 61.66555818128976, -21.94981291752267, -4.966282386958965 ] },
-  { name: "jynx", xRGB: 92849.0337723742, xLUV: 10151.657889258759, yRGB: [ 209.3968253968254, 143.58426207362376, 137.98649105032084 ], yLUV: [ 66.90976564323168, 48.39137398254661, 12.967678841726222 ] },
-  { name: "uxie", xRGB: 103538.80444126074, xLUV: 8070.366189398925, yRGB: [ 188.13252148997134, 185.95272206303724, 154.36389684813753 ], yLUV: [ 74.81805563797766, 4.0225871306831635, 19.180299447022705 ] },
-  { name: "foongus", xRGB: 124950.96254355401, xLUV: 6866.791367189958, yRGB: [ 199.21689895470382, 190.0801393728223, 184.83797909407664 ], yLUV: [ 76.69105831309098, 5.9982376271837605, 4.88971911865918 ] },
-  { name: "yamper", xRGB: 109715.1924904943, xLUV: 8812.981546136238, yRGB: [ 203.66777566539923, 195.4843155893536, 145.56131178707224 ], yLUV: [ 78.40687519828634, 7.883724710285558, 31.965965727444004 ] },
-  { name: "nidoran-m", xRGB: 87452.8020344288, xLUV: 5519.535569902598, yRGB: [ 162.71048513302034, 143.88810641627543, 176.17214397496087 ], yLUV: [ 62.88878969084267, 12.58802693009141, -21.593174792360305 ] },
-  { name: "morelull", xRGB: 106219.42, xLUV: 6012.592127787009, yRGB: [ 187.6288888888889, 173.14333333333335, 178.01666666666668 ], yLUV: [ 71.6497234164899, 8.117915074970306, -2.0789183316205215 ] },
-  { name: "luxray", xRGB: 31563.596343178622, xLUV: 2341.295121431639, yRGB: [ 89.75330520393811, 89.74374120956399, 83.33586497890295 ], yLUV: [ 37.34426418558335, 1.2145667106492866, 2.2765747441608477 ] },
-  { name: "mienfoo", xRGB: 97589.03272323904, xLUV: 9491.501906636197, yRGB: [ 209.32723239046035, 166.78480310593454, 131.56849694952857 ], yLUV: [ 71.90915076078642, 30.856642733343893, 30.080761959774748 ] },
-  { name: "stonjourner", xRGB: 47921.76815920398, xLUV: 3145.297393887108, yRGB: [ 121.69253731343284, 118.36119402985075, 103.38673300165837 ], yLUV: [ 48.88281531761375, 3.396285226199798, 10.8367015805881 ] },
-  { name: "blitzle", xRGB: 64253.84089456869, xLUV: 3628.726782090459, yRGB: [ 129.27603833865814, 128.13546325878593, 126.4408945686901 ], yLUV: [ 52.41658672191593, 1.045768896452171, 1.184337817693151 ] },
-  { name: "chewtle", xRGB: 96474.40066592675, xLUV: 7318.3016108061765, yRGB: [ 161.90455049944507, 183.37125416204216, 157.9095449500555 ], yLUV: [ 72.68022703288345, -6.427180914963006, 10.965377761943571 ] },
-  { name: "toxtricity-low-key", xRGB: 80274.29202556265, xLUV: 5797.508372322873, yRGB: [ 136.6999166435121, 132.12031119755488, 175.66796332314533 ], yLUV: [ 56.59502062811162, -0.7223792984076198, -32.54812609262225 ] },
-  { name: "flygon", xRGB: 85066.29537729436, xLUV: 7072.1935511251795, yRGB: [ 167.79843643779742, 170.98232494901427, 137.27124405166555 ], yLUV: [ 69.07448189734282, 2.033599135353521, 25.018023206272456 ] },
-  { name: "manaphy", xRGB: 105452.78778337532, xLUV: 8297.664159395641, yRGB: [ 124.04219143576826, 197.72670025188916, 210.85138539042822 ], yLUV: [ 75.75493302029538, -30.829453219899545, -18.859617087427562 ] },
-  { name: "beedrill", xRGB: 131661.60796786073, xLUV: 7850.143883904591, yRGB: [ 205.07566119852694, 201.6039504519585, 191.7693337797121 ], yLUV: [ 80.76846731437614, 3.1412990831035064, 5.392380291703014 ] },
-  { name: "treecko", xRGB: 88245.74795417348, xLUV: 8500.484734290985, yRGB: [ 177.91571194762685, 183.75859247135844, 122.36661211129297 ], yLUV: [ 72.82884173002495, 0.2866851913059708, 40.438872741913165 ] },
-  { name: "mudkip", xRGB: 108636.15474452554, xLUV: 8154.939772003114, yRGB: [ 163.5970802919708, 188.4021897810219, 193.71313868613137 ], yLUV: [ 75.18793375967225, -8.737186323809846, -10.969684288846254 ] },
-  { name: "tyrantrum", xRGB: 70838.78574532812, xLUV: 4955.819213212854, yRGB: [ 161.8250760538896, 129.84941329856585, 124.98435462842242 ], yLUV: [ 56.65469064179696, 21.30895302527248, 7.633208530407445 ] },
-  { name: "gumshoos", xRGB: 75112.69951923077, xLUV: 6160.93988379073, yRGB: [ 171.03645833333334, 156.08293269230768, 112.77003205128206 ], yLUV: [ 63.95472346023278, 11.737435103800061, 31.20604790580741 ] },
-  { name: "impidimp", xRGB: 78123.61476725522, xLUV: 8387.484306441505, yRGB: [ 181.86677367576243, 99.26565008025682, 142.79373996789727 ], yLUV: [ 52.81204980759739, 50.73139870974736, -18.11968925862776 ] },
-  { name: "corsola-galar", xRGB: 121134.16386554622, xLUV: 6347.189304298121, yRGB: [ 194.9485294117647, 184.68172268907563, 196.4810924369748 ], yLUV: [ 75.42128197226083, 5.16570728284147, -7.961012787507417 ] },
-  { name: "natu", xRGB: 73341.71284125379, xLUV: 11476.697312726346, yRGB: [ 164.24165824064713, 173.74721941354903, 76.68048533872599 ], yLUV: [ 69.27310437726769, 0.9785604635230437, 54.85636101115091 ] },
-  { name: "vivillon-meadow", xRGB: 70638.31065970928, xLUV: 6091.001816257151, yRGB: [ 171.62206485277673, 109.63827804696236, 137.98956392098398 ], yLUV: [ 53.95825210992834, 38.630118649590145, -10.207010854109942 ] },
-  { name: "rattata", xRGB: 88487.14612326043, xLUV: 5496.7677060149035, yRGB: [ 173.54870775347914, 151.14115308151094, 169.40854870775348 ], yLUV: [ 64.67378371904358, 11.45401964067501, -11.904991821604089 ] },
-  { name: "pupitar", xRGB: 112360.26811594203, xLUV: 6625.978534856023, yRGB: [ 169.1552795031056, 177.63768115942028, 209.03312629399585 ], yLUV: [ 72.16941210320485, -6.030373138500781, -26.662970779651356 ] },
-  { name: "phanpy", xRGB: 109417.65645645646, xLUV: 8176.069883277363, yRGB: [ 157.63543543543543, 194.74954954954956, 196.41381381381382 ], yLUV: [ 76.74396404388963, -14.263734919467012, -6.388327224661311 ] },
-  { name: "keldeo-resolute", xRGB: 84650.93235039029, xLUV: 8112.767177868822, yRGB: [ 159.43581960104078, 154.67346053772766, 149.72679965307893 ], yLUV: [ 65.28906288136275, 13.166227535250783, 3.009893141437794 ] },
-  { name: "beautifly", xRGB: 71741.80288728484, xLUV: 5908.797810498411, yRGB: [ 151.90505274847308, 140.97445863409217, 119.66074403109384 ], yLUV: [ 58.604491286553625, 10.182374211122568, 13.184960298576636 ] },
-  { name: "dusclops", xRGB: 78567.02577805721, xLUV: 4493.416974309651, yRGB: [ 159.9635334800377, 155.95535994970135, 153.72681546683432 ], yLUV: [ 64.28172581849806, 2.5854192073867637, 2.216068206637706 ] },
-  { name: "galvantula", xRGB: 92308.32617825478, xLUV: 8771.6725881769, yRGB: [ 187.90433971068595, 176.56836210919272, 123.32337844143724 ], yLUV: [ 71.37794334033057, 10.263525843181744, 33.404116246739896 ] },
-  { name: "masquerain", xRGB: 119235.25323149236, xLUV: 7900.300482668928, yRGB: [ 212.59988249118683, 187.46944770857814, 177.98061104582843 ], yLUV: [ 78.03488684628056, 18.345058771990868, 9.446599940326859 ] },
-  { name: "oricorio-pau", xRGB: 128472.18981481482, xLUV: 7412.804749049455, yRGB: [ 216.43101851851853, 190.09583333333333, 191.8175925925926 ], yLUV: [ 78.99614853527187, 16.531248192797246, 2.6370737915882745 ] },
-  { name: "relicanth", xRGB: 53950.213184931505, xLUV: 3438.2673699087254, yRGB: [ 137.11344178082192, 124.62542808219177, 111.85359589041096 ], yLUV: [ 52.38996428053978, 8.346716263935303, 10.93003756544535 ] },
-  { name: "zygarde-10", xRGB: 29338.643823657792, xLUV: 2474.1248466790107, yRGB: [ 86.93190746398952, 90.12439982540376, 70.90484504583152 ], yLUV: [ 36.50080927766731, -1.25808992173513, 11.815673986027155 ] },
-  { name: "whimsicott", xRGB: 115692.91749062394, xLUV: 8421.791873458797, yRGB: [ 204.2434367541766, 202.71905898397546, 155.52130923968633 ], yLUV: [ 80.37676791924451, 4.486513765157643, 33.90705162915057 ] },
-  { name: "silcoon", xRGB: 144762.51875901877, xLUV: 7675.2037793610025, yRGB: [ 214.00865800865802, 210.6969696969697, 223.41630591630593 ], yLUV: [ 84.84569669471553, 1.4134639714868884, -9.62001146365815 ] },
-  { name: "obstagoon", xRGB: 41286.548012003004, xLUV: 2349.181945299403, yRGB: [ 98.67516879219805, 97.2993248312078, 98.95311327831958 ], yLUV: [ 40.4074507858561, 0.9407979688523814, -0.968331709749142 ] },
-  { name: "vivillon-icysnow", xRGB: 133696.93048028406, xLUV: 7004.573547418078, yRGB: [ 197.83348906746403, 197.68099420669034, 197.3632965800785 ], yLUV: [ 78.53375335655825, 0.11706268512606167, 0.25425660145282686 ] },
-  { name: "eldegoss", xRGB: 128984.654522293, xLUV: 8376.01897938494, yRGB: [ 209.19210191082803, 206.88713375796178, 170.88305732484076 ], yLUV: [ 82.37904648333836, 2.898684509774709, 17.325236870879472 ] },
-  { name: "sewaddle", xRGB: 81704.20398912058, xLUV: 9691.258520075167, yRGB: [ 175.6563916591115, 178.16863100634632, 85.29283771532185 ], yLUV: [ 70.64955266138256, 3.721723945758312, 52.046973987485124 ] },
-  { name: "bastiodon", xRGB: 66878.23979848866, xLUV: 4040.5448836906926, yRGB: [ 144.5770780856423, 141.37405541561714, 135.5375314861461 ], yLUV: [ 58.314363576759284, 2.2852592418443822, 4.204620737649641 ] },
-  { name: "cutiefly", xRGB: 115366.97630662021, xLUV: 7546.459860022558, yRGB: [ 200.28571428571428, 193.53101045296168, 166.97142857142856 ], yLUV: [ 77.61925641878307, 5.595932246039582, 18.136015075907558 ] },
-  { name: "wailord", xRGB: 109672.6731453252, xLUV: 8633.912780069977, yRGB: [ 121.72319613821138, 190.4142530487805, 222.77299288617886 ], yLUV: [ 74.14842230822235, -26.361506875604977, -33.84888533055699 ] },
-  { name: "baltoy", xRGB: 97053.87611496531, xLUV: 7378.046229770092, yRGB: [ 197.49653121902875, 176.97522299306243, 141.2398414271556 ], yLUV: [ 72.90096344026284, 15.825404903959516, 27.917270230443307 ] },
-  { name: "onix", xRGB: 62677.17903596022, xLUV: 3537.496109944389, yRGB: [ 137.4892884468248, 136.51377199693957, 137.79495026778883 ], yLUV: [ 56.45432934238532, 0.4757998777155216, -0.86941787234149 ] },
-  { name: "abra", xRGB: 92396.55633802817, xLUV: 11705.281682295376, yRGB: [ 201.43270735524257, 191.70892018779344, 76.91236306729265 ], yLUV: [ 76.03789711967973, 11.101134142792569, 62.20417831478192 ] },
-  { name: "xerneas", xRGB: 78643.24858757062, xLUV: 5845.468723951225, yRGB: [ 155.57062146892656, 150.5819209039548, 142.75706214689265 ], yLUV: [ 62.16733400474598, 5.262712031133131, 5.022870249585175 ] },
-  { name: "psyduck", xRGB: 114511.52959262107, xLUV: 9544.704301139034, yRGB: [ 220.59492697924674, 199.42659492697925, 140.52113758647195 ], yLUV: [ 80.72523315217781, 17.09265091194633, 40.47475139516821 ] },
-  { name: "rockruff", xRGB: 88438.39201373981, xLUV: 5297.897735909284, yRGB: [ 179.31129240017174, 157.6268784886217, 149.05538857878918 ], yLUV: [ 66.04332013432662, 14.271626668278227, 8.987704091871043 ] },
-  { name: "dubwool", xRGB: 71337.65893741557, xLUV: 3928.5455509110598, yRGB: [ 136.70261143628997, 135.30751913552453, 138.4533993696533 ], yLUV: [ 55.369702668305024, 0.6536571333164175, -2.3366841152463174 ] },
-  { name: "stunfisk", xRGB: 77294.89506953224, xLUV: 7325.143205200177, yRGB: [ 185.35050568900127, 149.58817951959546, 105.27749683944374 ], yLUV: [ 63.66104066495873, 26.913357222332284, 33.02014153107558 ] },
-  { name: "sableye", xRGB: 63467.25112107623, xLUV: 4868.698328311998, yRGB: [ 133.1031390134529, 115.83632286995515, 161.88116591928252 ], yLUV: [ 51.69892941877073, 5.7057639338277975, -34.14519757315405 ] },
-  { name: "eternatus", xRGB: 29297.625800548947, xLUV: 6746.956364955725, yRGB: [ 84.27233912778286, 32.09759072888075, 91.5870692284233 ], yLUV: [ 24.83680997442962, 27.493326020971452, -27.40792541747084 ] },
-  { name: "larvitar", xRGB: 79146.10593900482, xLUV: 7231.434242582174, yRGB: [ 167.3940609951846, 167.46227929373995, 122.75200642054574 ], yLUV: [ 67.8433954302848, 4.0892132447126395, 32.144100702340864 ] },
-  { name: "meloetta-aria", xRGB: 84192.57166947723, xLUV: 5425.081206107804, yRGB: [ 158.71922428330524, 164.6964586846543, 147.8254637436762 ], yLUV: [ 66.08111923220551, -2.31795982718561, 11.551006339438384 ] },
-  { name: "venomoth", xRGB: 122199.963554668, xLUV: 6535.029358645696, yRGB: [ 196.95556665002496, 188.32401397903146, 203.45681477783324 ], yLUV: [ 77.07320156754956, 3.9565734616910064, -10.965656315104212 ] },
-  { name: "shaymin-sky", xRGB: 101135.94875164257, xLUV: 7929.658983353201, yRGB: [ 183.85764345159876, 180.4323258869908, 157.40823477879982 ], yLUV: [ 73.59328044330424, 5.095590297183301, 14.469585570724899 ] },
-  { name: "wigglytuff", xRGB: 132059.36149126946, xLUV: 7077.83138855404, yRGB: [ 206.75979235488438, 193.38603114676735, 201.46484190655968 ], yLUV: [ 78.96595092001596, 8.630183570457342, -4.160235211426239 ] },
-  { name: "dragalge", xRGB: 63115.12219551282, xLUV: 5014.238420611137, yRGB: [ 162.5625, 120.96834935897436, 119.74919871794872 ], yLUV: [ 54.774797429112844, 27.71930248791421, 6.411191800604219 ] },
-  { name: "toxapex", xRGB: 83153.80668380462, xLUV: 5312.116674531491, yRGB: [ 140.87043701799485, 156.84164524421593, 165.8740359897172 ], yLUV: [ 63.05758745692637, -7.809614951790516, -9.049956010564399 ] },
-  { name: "cresselia", xRGB: 126098.5923694779, xLUV: 8439.64995620227, yRGB: [ 219.23855421686747, 186.90441767068273, 187.1024096385542 ], yLUV: [ 78.73996830201874, 20.376082907350956, 2.05825470641769 ] },
-  { name: "raticate", xRGB: 95991.2451144612, xLUV: 8224.475091828568, yRGB: [ 204.9396984924623, 174.14796203238413, 122.71133445002792 ], yLUV: [ 72.56451031021084, 24.013156771224445, 34.84710669831337 ] },
-  { name: "bibarel", xRGB: 61756.98562628337, xLUV: 5920.9909175279245, yRGB: [ 164.83367556468173, 135.2459958932238, 88.00903490759754 ], yLUV: [ 57.680545382267795, 23.099872255051626, 32.37441238978834 ] },
-  { name: "furfrou-pharaoh", xRGB: 89808.51814345992, xLUV: 5996.504893756583, yRGB: [ 147.9717299578059, 159.29789029535866, 175.7886075949367 ], yLUV: [ 64.78638323024441, -4.690328590370044, -15.3402596751839 ] },
-  { name: "sunkern", xRGB: 71881.77850877192, xLUV: 8120.531043945017, yRGB: [ 160.51206140350877, 154.547149122807, 82.3530701754386 ], yLUV: [ 61.75267050457984, 7.6601726802533765, 42.58783705465686 ] },
-  { name: "purrloin", xRGB: 60393.45540246555, xLUV: 4326.902289277125, yRGB: [ 137.5039883973894, 114.0442349528644, 138.0710659898477 ], yLUV: [ 50.5855712781246, 10.952953460014184, -14.906693894776438 ] },
-  { name: "charizard", xRGB: 85115.83353703251, xLUV: 8228.484562566633, yRGB: [ 165.40821315081888, 165.31679296015645, 130.294549010022 ], yLUV: [ 68.50218939886518, 14.47469713195979, 22.033685132168014 ] },
-  { name: "wishiwashi-school", xRGB: 62821.107320540155, xLUV: 5732.719214629013, yRGB: [ 82.07510068704099, 127.53304904051173, 172.3800047382137 ], yLUV: [ 51.35966313971034, -18.70166165674575, -41.19651778788042 ] },
-  { name: "elgyem", xRGB: 98331.54538634658, xLUV: 6414.365396884928, yRGB: [ 143.62640660165042, 187.72693173293322, 181.80945236309077 ], yLUV: [ 72.36850036277481, -21.72545229282409, -0.1592644362391141 ] },
-  { name: "grimer", xRGB: 71586.32951653944, xLUV: 4195.427449474127, yRGB: [ 152.3295165394402, 129.5114503816794, 158.73155216284988 ], yLUV: [ 56.639270734781284, 10.846524099938442, -20.006395554021235 ] },
-  { name: "duosion", xRGB: 116990.26163723916, xLUV: 8586.926702366183, yRGB: [ 183.2525414660246, 220.72712680577848, 178.12252541466026 ], yLUV: [ 84.37167033622733, -18.32368181887478, 27.952657926254314 ] },
-  { name: "buneary", xRGB: 84117.76384468492, xLUV: 7281.995244098159, yRGB: [ 194.13112667091025, 158.29153405474221, 117.33354551241247 ], yLUV: [ 67.3022211292254, 27.222298047049822, 31.879930492166576 ] },
-  { name: "honedge", xRGB: 72232.54759467758, xLUV: 5160.773758422041, yRGB: [ 128.0220061412487, 150.60747185261002, 149.20675537359264 ], yLUV: [ 60.5451254950732, -7.142036550036341, -2.3351608844172422 ] },
-  { name: "ponyta", xRGB: 108796.10871033085, xLUV: 10725.453137703324, yRGB: [ 217.5793382849426, 185.8750844024308, 120.99729912221471 ], yLUV: [ 77.26430815323954, 27.332652607790248, 40.338864760123556 ] },
-  { name: "burmy-sandy", xRGB: 82069.19618834081, xLUV: 5990.140600891947, yRGB: [ 169.847533632287, 160.26121076233184, 128.60538116591928 ], yLUV: [ 65.19557616793342, 7.988046009570438, 22.748569560301164 ] },
-  { name: "tepig", xRGB: 59291.03539823009, xLUV: 8986.655100255188, yRGB: [ 173.14771953710007, 111.36215112321307, 71.42545949625595 ], yLUV: [ 52.73916937779784, 48.87830220207379, 29.11669097014898 ] },
-  { name: "donphan", xRGB: 84780.06067544362, xLUV: 4830.405712501908, yRGB: [ 146.1542644533486, 158.7169433314253, 170.8563251287922 ], yLUV: [ 64.14273079559825, -7.132186883275165, -11.142366906647121 ] },
-  { name: "mimikyu", xRGB: 106349.77137767221, xLUV: 7213.612977681388, yRGB: [ 193.42399049881234, 187.81947743467933, 150.58016627078385 ], yLUV: [ 74.91349417648783, 5.477093812733274, 27.254691778219943 ] },
-  { name: "landorus-incarnate", xRGB: 92876.81434846266, xLUV: 6305.94360493032, yRGB: [ 183.27144948755492, 159.68550512445094, 149.31625183016106 ], yLUV: [ 67.27518438355493, 17.07040471240803, 8.905608677506656 ] },
-  { name: "zygarde", xRGB: 41962.89945919371, xLUV: 4753.233797948709, yRGB: [ 106.98131760078662, 117.9385447394297, 74.81588003933136 ], yLUV: [ 46.587357790661336, -5.136577576258551, 25.611895654831013 ] },
-  { name: "naganadel", xRGB: 39203.32994432341, xLUV: 3690.8859764233084, yRGB: [ 92.4158799322198, 77.81481481481481, 127.48123940934398 ], yLUV: [ 36.655472601738616, 5.286178352308492, -35.14003711770595 ] },
-  { name: "goodra", xRGB: 121143.46112696148, xLUV: 6909.057305852476, yRGB: [ 197.45827389443653, 182.7863766048502, 208.00748930099857 ], yLUV: [ 76.0450107955763, 6.558953225529161, -18.566598138177017 ] },
-  { name: "chandelure", xRGB: 60769.662933526015, xLUV: 4631.595369949876, yRGB: [ 110.21134393063583, 114.10513005780346, 136.5097543352601 ], yLUV: [ 47.25605953647389, -3.1016785026650413, -19.39107922898079 ] },
-  { name: "lillipup", xRGB: 101019.4212098581, xLUV: 8438.376537022405, yRGB: [ 210.9193427931292, 176.88125466766243, 132.36893203883494 ], yLUV: [ 73.87593979794379, 25.941882744608353, 34.568490715978285 ] },
-  { name: "floette-white", xRGB: 95831.30407303371, xLUV: 6517.545343235517, yRGB: [ 166.57373595505618, 181.5203651685393, 158.26474719101122 ], yLUV: [ 71.92232196585047, -6.176646867784483, 14.667258456181047 ] },
-  { name: "arrokuda", xRGB: 91843.87969924812, xLUV: 5933.242991647185, yRGB: [ 172.04761904761904, 166.88345864661653, 142.093984962406 ], yLUV: [ 67.391025195907, 4.5694341349571, 17.614834877760035 ] },
-  { name: "pincurchin", xRGB: 29221.73918918919, xLUV: 2646.0104333845056, yRGB: [ 95.31891891891892, 78.90810810810811, 81.29594594594595 ], yLUV: [ 34.66243489197695, 9.31578187187528, -3.5083861733257344 ] },
-  { name: "numel", xRGB: 121514.27947096032, xLUV: 9318.785347456776, yRGB: [ 220.21794134560093, 207.59746981023576, 155.65899942495687 ], yLUV: [ 83.11298245534746, 11.736763657176997, 37.127872072094114 ] },
-  { name: "cinderace", xRGB: 96505.00578536303, xLUV: 8679.097274998128, yRGB: [ 180.6771767428406, 151.81486838299102, 133.44055539485103 ], yLUV: [ 65.50251055740839, 24.95259683852857, 11.347900858063237 ] },
-  { name: "crabrawler", xRGB: 74951.4740200547, xLUV: 6117.338815413939, yRGB: [ 109.82497721057429, 150.179580674567, 175.91248860528714 ], yLUV: [ 60.68077501249076, -14.883828814906362, -24.191422550918837 ] },
-  { name: "xurkitree", xRGB: 57702.22947615325, xLUV: 3318.2546896358413, yRGB: [ 118.89327599687256, 118.5879593432369, 116.01563721657546 ], yLUV: [ 48.38815555083762, 0.7809396754675695, 1.2564064826280141 ] },
-  { name: "vivillon-polar", xRGB: 54347.47444029851, xLUV: 4008.6241535671766, yRGB: [ 101.25149253731344, 105.59347014925373, 138.93694029850747 ], yLUV: [ 44.44193658863689, -3.4001484860523727, -26.486114611026963 ] },
-  { name: "bunnelby", xRGB: 79555.8952991453, xLUV: 4794.52419661048, yRGB: [ 168.4017094017094, 150.99487179487178, 144.97222222222223 ], yLUV: [ 63.410140806622195, 11.611520843376088, 6.4577284856632655 ] },
-  { name: "vivillon-savanna", xRGB: 72087.82811334825, xLUV: 6664.817894597143, yRGB: [ 126.28299776286353, 159.3797539149888, 137.4610365398956 ], yLUV: [ 62.29673493601655, -13.436708464462509, 10.102351887963014 ] },
-  { name: "grubbin", xRGB: 102654.69958419958, xLUV: 8077.524896611183, yRGB: [ 207.31185031185032, 178.71413721413722, 140.83367983367984 ], yLUV: [ 74.23652249882842, 21.913152224706536, 28.577160052073214 ] },
-  { name: "mudsdale", xRGB: 43944.86930641822, xLUV: 4852.432592642044, yRGB: [ 139.39518633540374, 97.25103519668737, 85.24844720496894 ], yLUV: [ 45.28128708672076, 31.485916629110154, 13.507109294864838 ] },
-  { name: "glalie", xRGB: 90886.94951194884, xLUV: 5051.137634857897, yRGB: [ 147.53550992931673, 154.79097946819252, 167.06462470548638 ], yLUV: [ 62.3465595976382, -4.230829535328735, -10.871871993411926 ] },
-  { name: "dreepy", xRGB: 45178.45494994438, xLUV: 4993.6025870802005, yRGB: [ 106.146829810901, 123.95661846496107, 89.55283648498332 ], yLUV: [ 49.536209623136656, -6.2761999165087765, 22.66917879652089 ] },
-  { name: "persian", xRGB: 121154.8568041726, xLUV: 7832.017612799903, yRGB: [ 213.8421052631579, 201.34803224276908, 168.3475580844002 ], yLUV: [ 80.90319581825234, 9.554555973223941, 25.360539414637977 ] },
-  { name: "trevenant", xRGB: 47633.227860948995, xLUV: 3866.015340634636, yRGB: [ 121.34229890890637, 122.99441766049226, 102.35371733062675 ], yLUV: [ 51.19734294825276, 4.671187036811128, 15.19037033062368 ] },
-  { name: "audino", xRGB: 122022.60817307692, xLUV: 7762.852087624357, yRGB: [ 224.9435096153846, 187.96714743589743, 177.703125 ], yLUV: [ 79.13708404517948, 24.405391121228863, 12.430726508837255 ] },
-  { name: "mr-rime", xRGB: 52175.0831815422, xLUV: 4586.338693820082, yRGB: [ 95.84699453551913, 99.93746205221615, 130.80570734669095 ], yLUV: [ 42.41238559728936, -0.36494243234107143, -25.51055335892544 ] },
-  { name: "furfrou-lareine", xRGB: 109301.6669576604, xLUV: 6423.735137127705, yRGB: [ 171.70667830641642, 185.2191182889568, 186.94805761676125 ], yLUV: [ 73.8358214105325, -5.8150500611589555, -3.2527976662449865 ] },
-  { name: "cobalion", xRGB: 80344.41084462982, xLUV: 5948.338584730983, yRGB: [ 113.6405978449774, 160.90615224191868, 162.46611053180396 ], yLUV: [ 63.593988865021196, -13.375490752775061, -5.901424522895391 ] },
-  { name: "mew", xRGB: 121496.5138339921, xLUV: 6587.667950508937, yRGB: [ 210.92094861660078, 181.7140974967062, 197.23583662714097 ], yLUV: [ 76.60889302879963, 16.443095339965964, -8.08464461729195 ] },
-  { name: "tauros", xRGB: 69110.80169628432, xLUV: 5704.738266037083, yRGB: [ 165.20072697899838, 144.5686591276252, 118.8626817447496 ], yLUV: [ 61.038273242228925, 15.625664769717044, 17.936963677153056 ] },
-  { name: "skorupi", xRGB: 84772.11811926606, xLUV: 5373.472026401101, yRGB: [ 141.6244266055046, 149.08142201834863, 177.76892201834863 ], yLUV: [ 61.437476166099444, -4.406042825863312, -23.54575880269591 ] },
-  { name: "camerupt", xRGB: 86187.73517465475, xLUV: 7697.570133897162, yRGB: [ 196.7682101272678, 145.68995396696454, 130.31031681559708 ], yLUV: [ 65.04305508874234, 38.00690384736078, 17.16912530844442 ] },
-  { name: "karrablast", xRGB: 58368.20664451827, xLUV: 6951.904694404977, yRGB: [ 104.62059800664451, 132.04651162790697, 125.12225913621262 ], yLUV: [ 54.1040312113354, -3.0210457213671624, -5.540039835671134 ] },
-  { name: "jirachi", xRGB: 119763.40625, xLUV: 9219.858708481115, yRGB: [ 207.74939903846155, 207.37139423076923, 160.73377403846155 ], yLUV: [ 82.14660963339499, 3.9589374442253744, 30.79032122685352 ] },
-  { name: "vigoroth", xRGB: 128505.57725947522, xLUV: 7048.5213723730785, yRGB: [ 201.93252811328614, 196.268221574344, 196.03456892961267 ], yLUV: [ 79.16530499252433, 3.9201176452451003, 1.0332872168353688 ] },
-  { name: "politoed", xRGB: 80711.37850271852, xLUV: 10942.588332803867, yRGB: [ 165.31451275616897, 195.2689251359264, 90.31827687160184 ], yLUV: [ 74.85047987184406, -12.886803102052584, 60.53211917735824 ] },
-  { name: "heatmor", xRGB: 54083.061312895705, xLUV: 6632.512904267159, yRGB: [ 165.63812062645783, 112.56481172942352, 83.53282239253582 ], yLUV: [ 52.68585573240559, 39.66260361398961, 24.222598042331363 ] },
-  { name: "braviary", xRGB: 38746.011128284386, xLUV: 3128.66281548364, yRGB: [ 103.48191653786708, 91.03802163833076, 96.34559505409582 ], yLUV: [ 39.66818677682507, 8.987207888293883, -3.1010674380881547 ] },
-  { name: "helioptile", xRGB: 79060.04495114007, xLUV: 7314.526761528848, yRGB: [ 165.27100977198697, 162.73485342019544, 117.9257328990228 ], yLUV: [ 65.5431838613363, 4.64222003895972, 26.76583578994867 ] },
-  { name: "zebstrika", xRGB: 66201.36950021358, xLUV: 3652.98924981965, yRGB: [ 130.3720632208458, 127.00256300726186, 123.69841947885519 ], yLUV: [ 51.8338727671238, 2.186839467258633, 2.5915651324713953 ] },
-  { name: "stufful", xRGB: 93534.75516423976, xLUV: 5489.111516730606, yRGB: [ 182.0335252285811, 151.9972908906197, 151.7571960717914 ], yLUV: [ 64.65105188294136, 18.92960990135297, 3.893837479756241 ] },
-  { name: "quagsire", xRGB: 118528.80489614244, xLUV: 7288.223366881955, yRGB: [ 161.72069732937686, 203.96216617210683, 218.96327893175075 ], yLUV: [ 79.44111981871059, -21.56544853342549, -16.912823200977034 ] },
-  { name: "gourgeist", xRGB: 75040.66477809254, xLUV: 6383.7374703697515, yRGB: [ 178.18696883852692, 138.7851746931067, 110.01841359773371 ], yLUV: [ 60.048790166944364, 28.088607616616947, 23.62125323178301 ] },
-  { name: "shellos-east", xRGB: 67530.35231316726, xLUV: 6558.544558644129, yRGB: [ 116.2896797153025, 162.72811387900356, 131.17224199288256 ], yLUV: [ 63.6796511638722, -15.413626982861915, 14.408221108250475 ] },
-  { name: "sigilyph", xRGB: 71164.49771528998, xLUV: 7174.248076677957, yRGB: [ 149.72548330404217, 141.47943760984182, 118.83866432337435 ], yLUV: [ 59.310904702096934, 11.284318777235782, 13.393957035652688 ] },
-  { name: "flapple", xRGB: 80796.94981640147, xLUV: 6618.451833896642, yRGB: [ 175.66829865361078, 158.3798449612403, 117.6344349245206 ], yLUV: [ 65.79262838884868, 13.87218670396394, 29.386353032787795 ] },
-  { name: "skitty", xRGB: 110197.21851542953, xLUV: 7395.084552751065, yRGB: [ 212.03919933277732, 175.47289407839867, 166.0300250208507 ], yLUV: [ 74.43450472348057, 23.849602937285617, 11.87845447319439 ] },
-  { name: "vileplume", xRGB: 60370.03571428572, xLUV: 6438.121946191352, yRGB: [ 148.4811224489796, 115.92091836734694, 133.4326530612245 ], yLUV: [ 53.93206831218672, 26.889003776578498, -8.259677905471667 ] },
-  { name: "gothitelle", xRGB: 44719.505429997065, xLUV: 2432.354652567281, yRGB: [ 95.72292339301438, 92.01555620780745, 94.77487525682419 ], yLUV: [ 37.5763363034271, 1.7555920578703923, -1.3425620952223274 ] },
-  { name: "castform", xRGB: 124821.9158974359, xLUV: 6626.857889945581, yRGB: [ 198.6123076923077, 196.79897435897436, 199.2225641025641 ], yLUV: [ 79.19942977606088, 0.8873666217032823, -1.6813113424706119 ] },
-  { name: "solgaleo", xRGB: 102524.47961675747, xLUV: 6752.8946248948705, yRGB: [ 180.26470035694157, 176.80048844636482, 164.12229945519445 ], yLUV: [ 71.75283444262132, 4.071317472315732, 7.3122653758491465 ] },
-  { name: "furfrou-dandy", xRGB: 98356.45542881284, xLUV: 6712.200699302015, yRGB: [ 176.00422475707646, 182.63329108576258, 154.47950992817914 ], yLUV: [ 72.68519142383082, -2.4510209930993603, 18.83368395302877 ] },
-  { name: "mamoswine", xRGB: 91985.69061962134, xLUV: 6505.1731400972785, yRGB: [ 183.64242685025818, 161.92061101549052, 133.04840791738383 ], yLUV: [ 67.39115742060127, 17.29655191739071, 19.58706586911793 ] },
-  { name: "shaymin-land", xRGB: 94766.21484653819, xLUV: 8469.067448047608, yRGB: [ 174.82940756602426, 184.86438258386866, 134.76231263383298 ], yLUV: [ 73.46945848850622, -1.4270976478964688, 31.34456740721283 ] },
-  { name: "leavanny", xRGB: 59556.89890710382, xLUV: 8170.317298868022, yRGB: [ 134.64371584699452, 162.99562841530056, 72.20819672131148 ], yLUV: [ 63.275634195200446, -11.083808741836222, 49.77163995344015 ] },
-  { name: "lairon", xRGB: 96531.0376146789, xLUV: 5158.937493766437, yRGB: [ 162.97385321100919, 162.47477064220183, 162.9348623853211 ], yLUV: [ 65.54673576637217, 0.39039799818322535, -0.2988419274982831 ] },
-  { name: "goldeen", xRGB: 121011.26426076834, xLUV: 7005.492789970715, yRGB: [ 201.011641443539, 193.19441210710127, 188.2270081490105 ], yLUV: [ 78.4150902906707, 6.014281881288746, 4.3009057061859775 ] },
-  { name: "bouffalant", xRGB: 45491.2183908046, xLUV: 3372.1015944383716, yRGB: [ 127.39080459770115, 111.35249042145594, 88.6896551724138 ], yLUV: [ 47.20797849171464, 11.519768764418817, 16.59487885901194 ] },
-  { name: "piplup", xRGB: 98770.9592476489, xLUV: 7404.821825476788, yRGB: [ 139.15485893416928, 172.9843260188088, 188.6733542319749 ], yLUV: [ 68.83730321481872, -13.108920681835036, -19.42104306087916 ] },
-  { name: "torchic", xRGB: 91522.20416253716, xLUV: 11313.391893867814, yRGB: [ 219.65213082259663, 172.17343904856293, 87.0386521308226 ], yLUV: [ 73.33753009470135, 39.081564921220156, 52.80005553002698 ] },
-  { name: "sawk", xRGB: 66862.1795626577, xLUV: 4664.115491436934, yRGB: [ 107.25441547518923, 136.6433978132885, 150.18334735071488 ], yLUV: [ 54.18923672237844, -13.483726885610062, -14.05605099195741 ] },
-  { name: "mandibuzz", xRGB: 64879.062880975296, xLUV: 4260.237234028703, yRGB: [ 152.62367661212704, 131.75136349053577, 120.54347128649343 ], yLUV: [ 55.897034682957106, 13.679672200024102, 10.819388953972165 ] },
-  { name: "snorlax", xRGB: 107365.80565001308, xLUV: 6452.93583264169, yRGB: [ 149.00680094166884, 176.35443369081872, 181.9484697881245 ], yLUV: [ 70.07963314346446, -5.7193328928775875, -6.450349885389509 ] },
-  { name: "swanna", xRGB: 129643.28195033313, xLUV: 7265.729938349641, yRGB: [ 191.7159297395518, 203.1968503937008, 211.72774076317384 ], yLUV: [ 80.8282293601757, -6.167157555563288, -8.704660222312196 ] },
-  { name: "floatzel", xRGB: 92358.68639053254, xLUV: 10961.885129544164, yRGB: [ 211.0887573964497, 170.55029585798817, 90.45562130177515 ], yLUV: [ 72.3008869012416, 34.4929073886168, 47.49126152800621 ] },
-  { name: "lilligant", xRGB: 78053.95136986302, xLUV: 8455.170604170726, yRGB: [ 164.79520547945205, 173.53390410958903, 106.79143835616438 ], yLUV: [ 69.02928338285852, 0.8865652613522651, 42.90452351091962 ] },
-  { name: "furfrou-star", xRGB: 107420.15198618307, xLUV: 6188.628909119307, yRGB: [ 170.38903281519862, 180.4304835924007, 177.97150259067357 ], yLUV: [ 71.83815360306659, -4.220891295614393, 0.605873657779549 ] },
-  { name: "flabebe-orange", xRGB: 91279.33997252748, xLUV: 7561.316956616318, yRGB: [ 182.00274725274724, 173.58447802197801, 132.00686813186815 ], yLUV: [ 70.6788440123728, 9.155987055390886, 27.58788434548456 ] },
-  { name: "delibird", xRGB: 101260.48787446505, xLUV: 9558.00724187922, yRGB: [ 198.8264384213029, 151.16500237755588, 144.52020922491678 ], yLUV: [ 68.16249996783553, 36.37047611601042, 9.631693624896656 ] },
-  { name: "tapu-bulu", xRGB: 57888.86372360845, xLUV: 7418.809886556744, yRGB: [ 163.4065898912348, 113.65642994241843, 87.43218170185541 ], yLUV: [ 52.65461693793468, 37.582696424732376, 22.263085754669486 ] },
-  { name: "phione", xRGB: 93515.23328488372, xLUV: 7558.310917986305, yRGB: [ 109.89462209302326, 182.14462209302326, 203.8393895348837 ], yLUV: [ 70.45602706910576, -29.305002924724224, -25.03402199937695 ] },
-  { name: "raichu-alola", xRGB: 104824.4728480647, xLUV: 9557.667183641279, yRGB: [ 215.2322357019064, 189.90179087232812, 124.36943963027151 ], yLUV: [ 77.52387181456129, 20.77426533185576, 44.99026897225377 ] },
-  { name: "pikipek", xRGB: 64072.16285452882, xLUV: 5797.588694613165, yRGB: [ 147.06495882891124, 120.46569075937786, 115.90576395242452 ], yLUV: [ 52.823361485601104, 20.909428540786525, 6.55072296681083 ] },
-  { name: "ariados", xRGB: 79155.5677466863, xLUV: 8100.029091706416, yRGB: [ 181.1539027982327, 135.4742268041237, 129.7157584683358 ], yLUV: [ 61.14473115965529, 30.78288540752694, 7.4552238408812705 ] },
-  { name: "torterra", xRGB: 47193.03320202589, xLUV: 5207.972429540063, yRGB: [ 103.52748077283812, 134.3577190020634, 88.03901706996811 ], yLUV: [ 53.31905979392013, -9.535986065491006, 28.550897054615664 ] },
-  { name: "carnivine", xRGB: 82493.68923766816, xLUV: 9446.78093889084, yRGB: [ 170.4116591928251, 178.87354260089685, 111.50627802690583 ], yLUV: [ 71.42280123079323, 0.9529894876740612, 44.10562163675617 ] },
-  { name: "shinx", xRGB: 88203.99654974123, xLUV: 6690.7217924790775, yRGB: [ 137.57389304197815, 170.86026451983898, 167.6049453709028 ], yLUV: [ 67.38769680791647, -14.20058837481613, -7.167990618510785 ] },
-  { name: "ducklett", xRGB: 104155.81486988848, xLUV: 6868.520516311809, yRGB: [ 160.39405204460965, 191.22156133828997, 183.47360594795538 ], yLUV: [ 74.9384747194774, -14.109349637216326, 0.5406853632147365 ] },
-  { name: "dratini", xRGB: 130281.95064935065, xLUV: 7197.058103465554, yRGB: [ 194.28571428571428, 199.84935064935064, 212.63982683982684 ], yLUV: [ 80.10762123822377, -3.3611863560093327, -11.044349741909 ] },
-  { name: "zubat", xRGB: 53342.58339148639, xLUV: 4033.5205127940144, yRGB: [ 122.09630146545709, 106.92323796231682, 140.44870900209352 ], yLUV: [ 48.20537952650223, 9.990601313485106, -22.892570467808895 ] },
-  { name: "seaking", xRGB: 113604.622236671, xLUV: 8555.152576026481, yRGB: [ 207.84655396618984, 177.20676202860858, 164.55071521456438 ], yLUV: [ 74.83849906384887, 23.916535256729517, 11.399283057758906 ] },
-  { name: "excadrill", xRGB: 49170.0017088175, xLUV: 3017.231288311771, yRGB: [ 122.41626794258373, 107.67634996582365, 107.85645933014354 ], yLUV: [ 46.059787638696065, 9.266074996720075, 1.586886762162658 ] },
-  { name: "mesprit", xRGB: 100834.35008282716, xLUV: 6513.3739823778715, yRGB: [ 188.9055770292656, 160.16234124792933, 179.74378796245168 ], yLUV: [ 69.21956894479558, 17.609522199833076, -10.905939285010527 ] },
-  { name: "sandygast", xRGB: 108949.63559322034, xLUV: 6848.667603789549, yRGB: [ 195.61175847457628, 189.80773305084745, 164.2531779661017 ], yLUV: [ 76.34834305021116, 5.292330849317902, 19.7005326244969 ] },
-  { name: "mothim", xRGB: 84562.33970336567, xLUV: 10625.366761480285, yRGB: [ 205.52253280091273, 159.89503707929265, 85.78066172276098 ], yLUV: [ 68.91912071054901, 37.63735978676197, 46.501105246969125 ] },
-  { name: "drifblim", xRGB: 84775.45947030498, xLUV: 7083.452085786434, yRGB: [ 177.97471910112358, 152.63162118780096, 142.87640449438203 ], yLUV: [ 65.21972721713591, 15.53983341359727, 2.5518288280042443 ] },
-  { name: "buzzwole", xRGB: 37959.59712957348, xLUV: 5579.423722345186, yRGB: [ 134.21689913078635, 74.48857893672933, 65.6367495451789 ], yLUV: [ 38.835972287058624, 42.46357622492882, 13.831013451196531 ] },
-  { name: "abomasnow", xRGB: 131842.09848764294, xLUV: 7259.555711832686, yRGB: [ 190.26392475101437, 206.43305053485798, 205.18830689782368 ], yLUV: [ 81.28597377049593, -7.862482883700072, -0.656668093526756 ] },
-  { name: "ninetales-alola", xRGB: 135059.3367672308, xLUV: 7351.307220042636, yRGB: [ 193.7064017660044, 209.57125337257787, 215.54059357370616 ], yLUV: [ 82.64685962844322, -8.609899657642151, -6.606668780166392 ] },
-  { name: "meowstic-female", xRGB: 115570.23457350272, xLUV: 6554.797321591442, yRGB: [ 170.68647912885663, 184.73230490018148, 193.20145190562613 ], yLUV: [ 73.69400867355884, -4.989803536263323, -8.245433056893985 ] },
-  { name: "chespin", xRGB: 73800.38318912237, xLUV: 7299.42472985168, yRGB: [ 165.7132262051916, 161.2688504326329, 104.721260815822 ], yLUV: [ 65.4179333372895, 6.064243792574315, 35.44111959447026 ] },
-  { name: "kartana", xRGB: 105427.01689774697, xLUV: 7312.0841715998085, yRGB: [ 193.6100519930676, 179.35225303292896, 149.74263431542462 ], yLUV: [ 73.44622120132608, 11.342361330266186, 16.166714964340155 ] },
-  { name: "hippopotas", xRGB: 78803.18686599038, xLUV: 8090.62489220911, yRGB: [ 181.835557928457, 162.0218900160171, 90.98131340096103 ], yLUV: [ 66.14633687002797, 17.03689845744145, 45.77963280783392 ] },
-  { name: "corvisquire", xRGB: 51399.33736187845, xLUV: 3250.7748835604825, yRGB: [ 83.59737569060773, 98.52417127071823, 108.09564917127072 ], yLUV: [ 39.27276235288932, -4.984476834737463, -10.50905184606535 ] },
-  { name: "giratina-origin", xRGB: 58334.5387803434, xLUV: 4757.624640898967, yRGB: [ 132.95362147227155, 119.9025064140517, 100.22182751134794 ], yLUV: [ 49.92767974308175, 9.903529936300115, 13.747891573989225 ] },
-  { name: "talonflame", xRGB: 66905.1304654443, xLUV: 5917.538709246987, yRGB: [ 154.40267983074753, 133.34449929478137, 125.13222849083216 ], yLUV: [ 57.68808206130588, 17.600411246935234, 8.067401704731601 ] },
-  { name: "hattrem", xRGB: 119696.533847981, xLUV: 6959.69771569064, yRGB: [ 178.5380047505938, 180.74346793349167, 202.70605700712588 ], yLUV: [ 73.16836763516342, -1.169382188344748, -17.631186899156578 ] },
-  { name: "golett", xRGB: 64164.047079337404, xLUV: 5354.08494654491, yRGB: [ 108.6176983435048, 149.86530078465563, 143.21795989537924 ], yLUV: [ 59.15673872727152, -14.831678109741478, -0.7587149853789402 ] },
-  { name: "koffing", xRGB: 86501.03461538462, xLUV: 5346.148601796141, yRGB: [ 163.93557692307692, 152.9346153846154, 175.3125 ], yLUV: [ 64.5771271084835, 4.842542291643196, -17.42234507417591 ] },
-  { name: "aegislash", xRGB: 78179.63139204546, xLUV: 5765.270245804735, yRGB: [ 161.8380681818182, 147.56676136363637, 138.3302556818182 ], yLUV: [ 61.55282617243581, 8.328670211862297, 6.181438593129627 ] },
-  { name: "empoleon", xRGB: 60725.39411923388, xLUV: 4440.314364230913, yRGB: [ 109.66765578635015, 117.9406528189911, 116.22551928783383 ], yLUV: [ 47.34341806967582, -1.539608123468336, -1.8683483840014599 ] },
-  { name: "manectric", xRGB: 108314.21358828315, xLUV: 7891.00322857264, yRGB: [ 180.9759967453214, 192.67127746135068, 172.76647681041499 ], yLUV: [ 76.52089318820121, -3.0058800012832947, 11.209545077248652 ] },
-  { name: "kricketune", xRGB: 55446.71428571428, xLUV: 7723.337635205356, yRGB: [ 160.56227758007117, 106.45094051855618, 87.56685307574988 ], yLUV: [ 50.895939471220636, 42.43397780372493, 17.71636431707514 ] },
-  { name: "vivillon-continental", xRGB: 82262.83209094297, xLUV: 9019.6692546115, yRGB: [ 187.30096906448006, 159.7322027581066, 96.45266492732016 ], yLUV: [ 66.17106351303028, 22.68528165702595, 42.67922405207228 ] },
-  { name: "raticate-alola", xRGB: 59336.83001864512, xLUV: 3602.054398572189, yRGB: [ 135.44157862026103, 129.65257924176507, 116.68738346799255 ], yLUV: [ 53.47914858169702, 4.2334080199195805, 10.20618826691716 ] },
-  { name: "shieldon", xRGB: 69789.36617927527, xLUV: 4788.106833803378, yRGB: [ 152.53528289891926, 144.46217418944693, 127.35410044500954 ], yLUV: [ 59.57368523908546, 6.181882844821813, 11.998715158670256 ] },
-  { name: "cosmog", xRGB: 63493.27303042934, xLUV: 6414.910331575882, yRGB: [ 85.83451438099208, 127.99082951229678, 174.90245935806587 ], yLUV: [ 52.45681726775631, -17.18054597110596, -41.71335046719532 ] },
-  { name: "sharpedo", xRGB: 70596.96668349318, xLUV: 5721.458061389765, yRGB: [ 90.35487127713276, 139.30388692579504, 168.8929833417466 ], yLUV: [ 56.327150059590345, -12.908970466366023, -27.9484921352191 ] },
-  { name: "milotic", xRGB: 118382.09186168356, xLUV: 7982.785011577684, yRGB: [ 205.5557107928746, 189.39294446384912, 175.5637443241355 ], yLUV: [ 77.76880188806813, 13.284922551317848, 12.655017311478844 ] },
-  { name: "wurmple", xRGB: 103448.22497616778, xLUV: 8619.372149165727, yRGB: [ 205.18303145853193, 160.71401334604386, 156.6787416587226 ], yLUV: [ 70.7854562072815, 32.41778875157234, 9.870475270030523 ] },
-  { name: "registeel", xRGB: 98147.95739084692, xLUV: 5399.345132411844, yRGB: [ 171.70357706470278, 170.01788532351395, 169.07443450815362 ], yLUV: [ 68.95267313546628, 1.2420884978455162, 0.9691906861651995 ] },
-  { name: "crawdaunt", xRGB: 60945.44931415189, xLUV: 6935.118065767444, yRGB: [ 159.52358648377384, 110.65071930411509, 103.20006691201071 ], yLUV: [ 52.10847915994653, 37.43227308339908, 12.195187437579571 ] },
-  { name: "maractus", xRGB: 60852.04046242774, xLUV: 6952.5380857743685, yRGB: [ 122.85857418111753, 155.83660886319845, 109.00308285163777 ], yLUV: [ 60.970079383799074, -13.693219921883838, 28.103263643346132 ] },
-  { name: "graveler", xRGB: 93418.44564505566, xLUV: 5386.628922169801, yRGB: [ 179.23477406679766, 174.45874263261297, 164.11624099541584 ], yLUV: [ 71.12133734935885, 3.400948491963174, 8.462250963113803 ] },
+  { name: "malamar", xRGB: 101863.6879278158, xJAB: 5842.812491626187, yRGB: [ 165.03329184816428, 176.5588052271313, 192.82887367766023 ], yJAB: [ 73.353355387684, -3.4397158743145266, -8.330644311616862 ] },
+  { name: "bounsweet", xRGB: 87208.17402269861, xJAB: 5587.604061163399, yRGB: [ 182.3013871374527, 156.5435056746532, 146.42118537200506 ], yJAB: [ 69.65668671765606, 5.407006177310472, 5.016603254023065 ] },
+  { name: "furfrou-diamond", xRGB: 104135.69536423842, xJAB: 5996.549275677926, yRGB: [ 189.04900662251654, 171.89889624724063, 156.87284768211921 ], yJAB: [ 72.65148606736193, 2.3539502812278776, 4.953015781282135 ] },
+  { name: "geodude", xRGB: 89388.87580299786, xJAB: 5375.507014362614, yRGB: [ 172.7119914346895, 169.38115631691647, 159.38865096359743 ], yJAB: [ 71.39650799131053, -0.7116363906671437, 3.0747083935953254 ] },
+  { name: "rotom-heat", xRGB: 68346.23915958873, xJAB: 4552.932844909729, yRGB: [ 190.16137684398748, 113.65757711220384, 95.69244523915958 ], yJAB: [ 60.280680845424875, 15.237070270028727, 10.562404471840589 ] },
+  { name: "dialga", xRGB: 81405.85063559322, xJAB: 4661.992888932691, yRGB: [ 126.74724576271187, 146.86631355932204, 168.8510593220339 ], yJAB: [ 60.67321816709229, -5.347676999602366, -10.635606880609528 ] },
+  { name: "gothorita", xRGB: 55372.4, xJAB: 3097.153067067845, yRGB: [ 107.99259259259259, 105.97777777777777, 109.06666666666666 ], yJAB: [ 45.22724149933098, 0.2527916563289881, -1.558743803428471 ] },
+  { name: "fennekin", xRGB: 96085.08739708677, xJAB: 6544.1153359463, yRGB: [ 214.7017099430019, 167.81443951868272, 109.4718176060798 ], yJAB: [ 75.33303422751294, 6.2099986890550305, 16.222940380402076 ] },
+  { name: "spoink", xRGB: 86309.03369672943, xJAB: 5045.775809608028, yRGB: [ 167.6412289395441, 160.07631318136768, 161.4410307234886 ], yJAB: [ 68.70483305120241, 0.62566053454401, -0.48114679055568815 ] },
+  { name: "panpour", xRGB: 95896.03005603667, xJAB: 6186.6868290076, yRGB: [ 130.206316861946, 186.3678043810494, 184.18543046357615 ], yJAB: [ 74.27227075020235, -10.890373913680053, -4.394838552346384 ] },
+  { name: "budew", xRGB: 68787.07574094401, xJAB: 5748.821718248944, yRGB: [ 144.37870472008782, 175.7848518111965, 86.2689352360044 ], yJAB: [ 68.96227092334298, -12.052764303636344, 19.116913924930014 ] },
+  { name: "blastoise", xRGB: 103860.97047884704, xJAB: 5985.010189757167, yRGB: [ 168.1229660622966, 176.89562993956298, 185.08344955834497 ], yJAB: [ 73.29148195431367, -2.790135122027663, -4.653928335302054 ] },
+  { name: "kirlia", xRGB: 93604.95595054096, xJAB: 5969.5064076079625, yRGB: [ 164.10123647604328, 181.5873261205564, 158.67542503863987 ], yJAB: [ 73.90838419122751, -6.045318440962146, 4.887261500715865 ] },
+  { name: "bruxish", xRGB: 86302.99790619765, xJAB: 5118.79031117848, yRGB: [ 174.83668341708542, 144.06448911222782, 165.33040201005025 ], yJAB: [ 66.57478739284392, 7.180898489347106, -4.573240435171848 ] },
+  { name: "scorbunny", xRGB: 123243.02529358627, xJAB: 7059.234664685304, yRGB: [ 212.21183378500453, 186.31255645889792, 170.42953929539294 ], yJAB: [ 80.3030401997059, 3.230636449135563, 4.498892458969519 ] },
+  { name: "magneton", xRGB: 85574.77914798206, xJAB: 5020.413330392276, yRGB: [ 150.73841554559044, 161.7350523168909, 163.71076233183857 ], yJAB: [ 67.1039049310437, -4.415028599930947, -2.6761930202588076 ] },
+  { name: "plusle", xRGB: 92428.85809682804, xJAB: 5943.847182771259, yRGB: [ 205.97245409015025, 149.79298831385643, 131.92737896494157 ], yJAB: [ 71.26261666915195, 10.60787923931668, 9.883959792254704 ] },
+  { name: "riolu", xRGB: 55431.15876777251, xJAB: 3421.733100015432, yRGB: [ 107.57266982622433, 125.25750394944708, 135.89257503949446 ], yJAB: [ 52.978613091660094, -4.7040873984408265, -5.955958235195484 ] },
+  { name: "umbreon", xRGB: 37337.41141141141, xJAB: 2570.0799864901564, yRGB: [ 94.94474474474474, 103.87867867867868, 91.67747747747748 ], yJAB: [ 44.05325428337121, -5.181567485802162, 0.5902537072228445 ] },
+  { name: "meowth-alola", xRGB: 102541.29894578313, xJAB: 5754.397065285451, yRGB: [ 170.45481927710844, 173.70406626506025, 184.23117469879517 ], yJAB: [ 72.50434823481145, -1.5476417236225137, -6.620337531634976 ] },
+  { name: "kabuto", xRGB: 68235.83665716999, xJAB: 4544.248160473907, yRGB: [ 171.8727445394112, 136.48433048433048, 104.51851851851852 ], yJAB: [ 62.022988903574046, 5.653533673086263, 10.79046021550453 ] },
+  { name: "wailmer", xRGB: 123156.21032132425, xJAB: 7116.302560206247, yRGB: [ 186.40408958130476, 200.4521259331386, 196.37455371632586 ], yJAB: [ 80.85447944598279, -4.268930175454701, -1.1548945342589203 ] },
+  { name: "dragonite", xRGB: 101591.96334890406, xJAB: 6717.549930079903, yRGB: [ 205.42328422565578, 185.1491196550485, 128.19942508084802 ], yJAB: [ 78.12373889358832, 0.5249072016746892, 14.236405414783672 ] },
+  { name: "vulpix-alola", xRGB: 139115.5102963335, xJAB: 7470.0573585385155, yRGB: [ 205.49422400803616, 208.07985936715218, 214.5399296835761 ], yJAB: [ 84.37518983023524, -1.7787310403614356, -4.049405001910741 ] },
+  { name: "vivillon-jungle", xRGB: 32475.92352173102, xJAB: 2374.2257597394173, yRGB: [ 91.91923148666294, 103.68065659391904, 88.27886588323074 ], yJAB: [ 44.29178636115461, -5.294656541616121, 4.075979892507831 ] },
+  { name: "bulbasaur", xRGB: 88655.03558967201, xJAB: 6189.977445379253, yRGB: [ 141.38590369853455, 192.1486392184229, 161.42288904396372 ], yJAB: [ 75.06961389423167, -14.072017856050579, 5.262424484435015 ] },
+  { name: "croconaw", xRGB: 97916.16619585687, xJAB: 6379.3905008208085, yRGB: [ 162.64453860640302, 186.55178907721282, 165.70998116760828 ], yJAB: [ 75.7445580551202, -7.692748016071541, 2.0671467067534843 ] },
+  { name: "teddiursa", xRGB: 84761.0138431114, xJAB: 5913.066028249616, yRGB: [ 210.41001977587342, 155.54383651944627, 92.49703361898484 ], yJAB: [ 71.49854159436939, 7.5488168781485685, 17.871485650672582 ] },
+  { name: "tangrowth", xRGB: 74448.56976016684, xJAB: 4486.295531626458, yRGB: [ 117.61376433785193, 147.91595411887383, 177.05881126173097 ], yJAB: [ 61.866360312393596, -6.878145854117052, -13.303838050336049 ] },
+  { name: "persian-alola", xRGB: 113578.22224704042, xJAB: 6230.115172558551, yRGB: [ 177.68595041322314, 183.76725485816394, 204.0909090909091 ], yJAB: [ 76.38343836846272, -1.5961681406571102, -9.785998322464966 ] },
+  { name: "meloetta-pirouette", xRGB: 80768.28339140535, xJAB: 4844.712266644129, yRGB: [ 174.23519163763066, 147.14576074332172, 138.56678281068525 ], yJAB: [ 65.66494551120591, 5.0424835088900135, 4.222410998571389 ] },
+  { name: "weavile", xRGB: 54558.01564885496, xJAB: 3718.119291833714, yRGB: [ 147.73129770992367, 90.71641221374045, 111.16183206106871 ], yJAB: [ 52.32373950674078, 11.77750451257711, -0.041265205956734184 ] },
+  { name: "gyarados", xRGB: 82701.14184397164, xJAB: 5036.642412069966, yRGB: [ 134.63356973995272, 160.77372509287403, 166.8193177980412 ], yJAB: [ 66.44720340143449, -5.843575655041998, -4.830239829541623 ] },
+  { name: "celesteela", xRGB: 62147.36750760422, xJAB: 4235.675706947382, yRGB: [ 117.52585435677223, 149.69261048488102, 132.5437466451959 ], yJAB: [ 60.53304097360963, -10.627680440443463, 2.6401602925776664 ] },
+  { name: "genesect", xRGB: 78083.33788150808, xJAB: 4330.470346227519, yRGB: [ 158.67073608617594, 132.2093357271095, 158.06642728904848 ], yJAB: [ 60.610027849458206, 8.162846622445125, -7.044274843131005 ] },
+  { name: "rolycoly", xRGB: 35410.40315934066, xJAB: 2045.1308726054529, yRGB: [ 84.98626373626374, 76.90934065934066, 71.3701923076923 ], yJAB: [ 34.27798906093007, 1.4490079836836374, 2.0798976799145215 ] },
+  { name: "furfrou-natural", xRGB: 133136.75031793132, xJAB: 7382.058751899477, yRGB: [ 209.6570580754557, 205.38363713437897, 195.8062738448495 ], yJAB: [ 83.59302990786387, -0.5835515955819796, 2.79889165794581 ] },
+  { name: "bidoof", xRGB: 56281.49503722084, xJAB: 4016.906935407657, yRGB: [ 158.46277915632754, 127.61600496277916, 80.03287841191067 ], yJAB: [ 57.8782432759499, 3.964199836547594, 14.437192841572136 ] },
+  { name: "volcanion", xRGB: 59236.79102206442, xJAB: 4178.762094321473, yRGB: [ 175.5617550088765, 104.66015724067968, 96.0071011919858 ], yJAB: [ 57.42972607410549, 15.958546709814593, 8.699742947780878 ] },
+  { name: "vivillon-elegant", xRGB: 56087.78283582089, xJAB: 3274.01015054019, yRGB: [ 131.06492537313432, 105.82182835820896, 130.39570895522388 ], yJAB: [ 50.17375092966032, 7.108339936049127, -7.388669144371715 ] },
+  { name: "simisear", xRGB: 89177.59779614325, xJAB: 5899.910253480483, yRGB: [ 211.1585989767808, 149.93585202676113, 114.86540731995278 ], yJAB: [ 71.21269556685095, 10.949908450531694, 12.85646173009928 ] },
+  { name: "granbull", xRGB: 118056.36259904913, xJAB: 6300.209317512486, yRGB: [ 205.08304278922344, 172.86656101426308, 195.86909667194928 ], yJAB: [ 76.34558864087789, 9.304445791222811, -5.00504733448503 ] },
+  { name: "electrike", xRGB: 87594.92069214131, xJAB: 6187.767440227854, yRGB: [ 162.7685652487383, 189.59841384282623, 142.64311463590482 ], yJAB: [ 75.45551516161545, -9.697950848899689, 10.629581759743276 ] },
+  { name: "exeggutor", xRGB: 86298.09287454325, xJAB: 5676.080165006935, yRGB: [ 161.35505481120586, 175.9531059683313, 143.03501827040196 ], yJAB: [ 71.59933137875237, -5.596462210592302, 7.9950275063644085 ] },
+  { name: "delphox", xRGB: 59469.08016510971, xJAB: 4195.170165400659, yRGB: [ 182.0362806865088, 108.15663697588529, 82.89854442754725 ], yJAB: [ 57.62769027263111, 15.558830522876576, 12.555331900702948 ] },
+  { name: "cloyster", xRGB: 75448.66869983949, xJAB: 4255.537571743838, yRGB: [ 144.9556982343499, 137.85553772070625, 166.23434991974318 ], yJAB: [ 60.81716889460361, 2.9492023288027656, -11.010626479475258 ] },
+  { name: "unown", xRGB: 66548.53260869565, xJAB: 3674.9869894262247, yRGB: [ 109.13722826086956, 118.60733695652173, 125.46739130434783 ], yJAB: [ 48.86249416980417, -4.004126457226041, -5.285384832437901 ] },
+  { name: "gallade", xRGB: 104090.55343283582, xJAB: 6225.64555438301, yRGB: [ 155.3444776119403, 186.12716417910448, 169.7158208955224 ], yJAB: [ 74.39437986121729, -7.740263335684793, 2.3570501949908635 ] },
+  { name: "froslass", xRGB: 120146.26363636364, xJAB: 6708.641099295967, yRGB: [ 189.47272727272727, 188.37272727272727, 191.14545454545456 ], yJAB: [ 77.90460605436844, -0.9039991133153797, -1.9082349548319517 ] },
+  { name: "pachirisu", xRGB: 131263.93116490167, xJAB: 7409.691149686583, yRGB: [ 187.63010590015128, 209.8252647503782, 212.55143721633888 ], yJAB: [ 83.89455220235587, -6.363243443526718, -4.245430713761266 ] },
+  { name: "zweilous", xRGB: 39214.08888888889, xJAB: 2473.027886755647, yRGB: [ 101.54910394265232, 102.76774193548387, 110.49390681003584 ], yJAB: [ 45.629994340504865, -0.3198793741772346, -3.0941843347233946 ] },
+  { name: "sandshrew-alola", xRGB: 129164.28123184195, xJAB: 7407.997919958849, yRGB: [ 195.2643811737362, 208.62347472399767, 198.4584543869843 ], yJAB: [ 83.51200748272683, -5.66332897036598, -0.09780445875956706 ] },
+  { name: "grimmsnarl", xRGB: 26852.146633876422, xJAB: 1916.291569220339, yRGB: [ 72.16723024900092, 68.67476175837689, 105.54380571779896 ], yJAB: [ 33.980366031102044, 2.4025265733316647, -12.53608106811974 ] },
+  { name: "charjabug", xRGB: 56693.72272272272, xJAB: 4410.058494441889, yRGB: [ 126.43843843843844, 151.86186186186185, 104.86086086086087 ], yJAB: [ 61.89936932034965, -9.360153306999774, 10.74278761002419 ] },
+  { name: "bronzor", xRGB: 49315.05714285714, xJAB: 3461.170287035735, yRGB: [ 59.24285714285714, 129.95714285714286, 144.45714285714286 ], yJAB: [ 51.99769930267547, -13.702416303436015, -10.583774879898929 ] },
+  { name: "scatterbug", xRGB: 62137.51304347826, xJAB: 3777.1773521116083, yRGB: [ 133.875, 134.1336956521739, 132.04565217391306 ], yJAB: [ 57.424845967711846, -1.3971355634064242, -0.6718262713917045 ] },
+  { name: "miltank", xRGB: 105804.92976588629, xJAB: 6091.765104741987, yRGB: [ 191.94648829431438, 168.64176885916015, 160.16387959866222 ], yJAB: [ 72.20818852392398, 4.436443072118841, 3.0661838141664273 ] },
+  { name: "feebas", xRGB: 94847.25534591195, xJAB: 5876.945796884852, yRGB: [ 186.0805031446541, 172.2238993710692, 150.75471698113208 ], yJAB: [ 73.24486204498528, 0.8622343858061577, 5.548720033153035 ] },
+  { name: "togetic", xRGB: 129702.460554371, xJAB: 7146.277263328322, yRGB: [ 207.38308457711443, 199.32409381663112, 196.90760483297797 ], yJAB: [ 82.44770972127868, 0.5609116923802899, 0.7720061440998098 ] },
+  { name: "venonat", xRGB: 71801.0572519084, xJAB: 4050.504665270989, yRGB: [ 145.64198473282443, 123.8793893129771, 166.23664122137404 ], yJAB: [ 57.841148792746495, 6.316673794928509, -12.277280386350432 ] },
+  { name: "oricorio", xRGB: 57083.161822466616, xJAB: 3748.287161002242, yRGB: [ 174.62843676355067, 89.4261586802828, 102.29261586802828 ], yJAB: [ 53.46945600227522, 19.074404363472997, 4.950535219109676 ] },
+  { name: "medicham", xRGB: 97674.04587155963, xJAB: 5817.635762673527, yRGB: [ 213.6697247706422, 144.8119266055046, 155.72935779816513 ], yJAB: [ 71.58698926233694, 14.913675657990149, 2.856786239934433 ] },
+  { name: "meowstic", xRGB: 71601.54524144398, xJAB: 4238.354290986462, yRGB: [ 107.7304266291608, 142.78246601031412, 161.79090482887952 ], yJAB: [ 58.48737207177199, -7.788470042067824, -10.326600934380368 ] },
+  { name: "steenee", xRGB: 97385.15816993464, xJAB: 6157.4933315153785, yRGB: [ 178.36666666666667, 181.08496732026143, 155.37712418300654 ], yJAB: [ 74.64452786020061, -2.325460084039133, 6.312241430058537 ] },
+  { name: "victreebel", xRGB: 99485.22813688213, xJAB: 7230.662260458048, yRGB: [ 187.56020278833967, 201.65145754119138, 122.2319391634981 ], yJAB: [ 79.84162035324643, -7.6641156589141115, 16.23602448274281 ] },
+  { name: "totodile", xRGB: 83414.8293897883, xJAB: 5529.522757230086, yRGB: [ 115.1892901618929, 177.07098381070983, 177.3038605230386 ], yJAB: [ 69.87071362092357, -13.940815565125213, -5.4078577665270915 ] },
+  { name: "cursola", xRGB: 140509.16031390135, xJAB: 7463.4848245406265, yRGB: [ 211.59118086696563, 204.84080717488789, 213.6109865470852 ], yJAB: [ 84.20337565083591, 1.7263551201260598, -4.046607265796468 ] },
+  { name: "seedot", xRGB: 77172.88531187123, xJAB: 4752.733091423848, yRGB: [ 161.67102615694165, 153.27364185110665, 140.0533199195171 ], yJAB: [ 65.60493370732361, 0.2980314391690029, 3.8159279673436233 ] },
+  { name: "vanillite", xRGB: 143282.12109061747, xJAB: 7675.888074327169, yRGB: [ 204.5316760224539, 211.08901363271852, 221.2317562149158 ], yJAB: [ 85.20018927068044, -2.5150538741761825, -5.0704276827547305 ] },
+  { name: "dusknoir", xRGB: 60173.6299580028, xJAB: 3857.8592672858495, yRGB: [ 136.43233784414372, 133.66378908072795, 116.0648623425105 ], yJAB: [ 57.10090139482857, -1.3978963007458756, 5.042192972703874 ] },
+  { name: "turtwig", xRGB: 81002.57142857143, xJAB: 6066.5219662776735, yRGB: [ 164.67324388318863, 181.43172849250197, 113.8208366219416 ], yJAB: [ 73.06970707250844, -7.431758683455695, 15.56207774403342 ] },
+  { name: "regirock", xRGB: 81839.71459227467, xJAB: 4922.188687473844, yRGB: [ 176.19442060085836, 150.16909871244636, 140.4725321888412 ], yJAB: [ 66.66675502683609, 5.51919152998779, 4.62712981422635 ] },
+  { name: "haxorus", xRGB: 42419.936888681885, xJAB: 3525.808390140206, yRGB: [ 133.3197484862599, 116.15742897065672, 58.23707498835584 ], yJAB: [ 52.055992292882244, 0.2273627580520076, 14.123891618664798 ] },
+  { name: "caterpie", xRGB: 75159.68856447689, xJAB: 5832.022427938681, yRGB: [ 156.8880778588808, 175.77007299270073, 108.51459854014598 ], yJAB: [ 70.99300157516478, -7.862092569404904, 15.348252880214819 ] },
+  { name: "lotad", xRGB: 65379.7724137931, xJAB: 4986.682927618441, yRGB: [ 124.84741379310344, 162.81896551724137, 122.47327586206896 ], yJAB: [ 65.12367273234763, -11.54881127012476, 5.481624266828255 ] },
+  { name: "kingler", xRGB: 95402.52761506276, xJAB: 5958.955244405189, yRGB: [ 207.52803347280334, 159.97071129707112, 129.13598326359832 ], yJAB: [ 72.72050093457234, 7.818291708360323, 10.187935924044785 ] },
+  { name: "cleffa", xRGB: 115598.36194331983, xJAB: 6548.537162583678, yRGB: [ 209.0931174089069, 182.76032388663967, 170.79838056680163 ], yJAB: [ 78.13493115225332, 5.029773026239608, 5.226950020141059 ] },
+  { name: "clefairy", xRGB: 128894.0, xJAB: 6992.286375861948, yRGB: [ 218.5456953642384, 190.08476821192053, 197.33509933774835 ], yJAB: [ 81.62045272530155, 7.175760487604302, -0.39236846758397914 ] },
+  { name: "croagunk", xRGB: 57419.406389776355, xJAB: 3444.5396332930195, yRGB: [ 107.12715654952076, 119.18466453674121, 146.78658146964855 ], yJAB: [ 51.884628461148665, -2.5685588005831734, -10.532018833664512 ] },
+  { name: "charmeleon", xRGB: 93841.09138230191, xJAB: 5967.541655445291, yRGB: [ 218.49277038750722, 151.46616541353384, 123.47368421052632 ], yJAB: [ 72.7186886886197, 12.542413691511651, 11.36911231727233 ] },
+  { name: "magcargo", xRGB: 64604.5703517588, xJAB: 4561.154613951562, yRGB: [ 193.06532663316582, 109.87760229720028, 88.99066762383346 ], yJAB: [ 60.35882216466498, 16.566928841396734, 11.032038947550816 ] },
+  { name: "oranguru", xRGB: 83343.50557402699, xJAB: 5220.836419257862, yRGB: [ 141.91022882847642, 158.55525132016427, 155.92176804224525 ], yJAB: [ 66.73360455824391, -2.653347487437734, -0.3664245406707115 ] },
+  { name: "hawlucha", xRGB: 80346.93013809911, xJAB: 5463.768766108381, yRGB: [ 147.17221770917953, 155.27173030056863, 137.38789601949634 ], yJAB: [ 67.50078646853734, -2.1136877906648164, 5.708205860418111 ] },
+  { name: "corphish", xRGB: 86396.26394721055, xJAB: 5552.550098086261, yRGB: [ 206.90641871625675, 142.9856028794241, 118.60227954409118 ], yJAB: [ 69.49949356810487, 11.992521215096128, 10.998918725605769 ] },
+  { name: "regidrago", xRGB: 31550.48727154047, xJAB: 2229.487126678587, yRGB: [ 99.11325065274151, 79.05156657963447, 94.18342036553524 ], yJAB: [ 40.634516773129086, 3.023416801458044, -3.5463191791963453 ] },
+  { name: "pidgeotto", xRGB: 99225.69830878341, xJAB: 6289.163097736825, yRGB: [ 199.0938352427714, 173.57992362247683, 135.66612111292963 ], yJAB: [ 74.71337107455471, 2.885074463286789, 11.282373898954255 ] },
+  { name: "buizel", xRGB: 83089.74031007753, xJAB: 5798.137488501738, yRGB: [ 206.21834625322998, 151.11111111111111, 91.28165374677003 ], yJAB: [ 70.41284122359227, 8.21540705038874, 16.99956189858074 ] },
+  { name: "eelektross", xRGB: 53199.75342465754, xJAB: 3468.0325341583653, yRGB: [ 119.09087871700635, 117.69361844303374, 116.62011359839626 ], yJAB: [ 51.548797156095, -1.2381606944668213, -2.297049148593381 ] },
+  { name: "vivillon-sun", xRGB: 84849.484249767, xJAB: 5638.206065843362, yRGB: [ 196.16067101584343, 147.1030754892824, 115.07716682199441 ], yJAB: [ 67.8734320425969, 8.333477974600997, 10.654868491460652 ] },
+  { name: "breloom", xRGB: 80114.83591022444, xJAB: 5240.579633320285, yRGB: [ 161.59750623441397, 161.6653366583541, 135.30473815461346 ], yJAB: [ 68.09973964578606, -2.537859424493349, 7.921253129841404 ] },
+  { name: "houndoom", xRGB: 55392.187387387385, xJAB: 3319.7932972998806, yRGB: [ 129.26891891891893, 115.01036036036037, 108.72342342342343 ], yJAB: [ 50.938974597689594, 2.912386334009905, 2.8466634650575204 ] },
+  { name: "heliolisk", xRGB: 73970.59914582063, xJAB: 5168.1024679536185, yRGB: [ 169.95851128737036, 152.95851128737036, 105.39170225747407 ], yJAB: [ 65.56526839510525, 0.43003301449181053, 10.441944887250695 ] },
+  { name: "virizion", xRGB: 76552.9914802982, xJAB: 5941.7712889197255, yRGB: [ 159.89172878949236, 179.34788782392616, 109.09087681931132 ], yJAB: [ 72.03127620466242, -8.215600784099317, 15.337906339265727 ] },
+  { name: "primeape", xRGB: 112213.11784841075, xJAB: 6479.634511797044, yRGB: [ 203.10220048899757, 182.760391198044, 165.50268948655255 ], yJAB: [ 77.2345972511511, 3.0381502393778197, 5.9932618016464145 ] },
+  { name: "solosis", xRGB: 113273.52665589661, xJAB: 7438.8402040142355, yRGB: [ 182.7156704361874, 215.5896607431341, 174.09208400646204 ], yJAB: [ 84.12744095716624, -10.733800180268927, 9.005880456093244 ] },
+  { name: "gloom", xRGB: 55067.905520774046, xJAB: 3618.249887623536, yRGB: [ 129.4689812179852, 119.31929425156517, 125.32783153101879 ], yJAB: [ 54.918890588723045, 1.8564938367939456, -2.9692171198345934 ] },
+  { name: "electrode", xRGB: 134939.9844006568, xJAB: 7280.421925236009, yRGB: [ 212.85591133004925, 195.76518883415434, 200.0291461412151 ], yJAB: [ 82.0194184358757, 3.1226075403885383, -1.4122741406578398 ] },
+  { name: "shelgon", xRGB: 122390.35365344468, xJAB: 6740.971901802999, yRGB: [ 194.60918580375784, 193.6580375782881, 192.9340292275574 ], yJAB: [ 79.37411724602725, -1.3034048474178086, -0.6473929861569712 ] },
+  { name: "magnemite", xRGB: 91802.79716312057, xJAB: 5317.091868754774, yRGB: [ 156.01418439716312, 167.0822695035461, 169.5418439716312 ], yJAB: [ 68.9536577361487, -4.406730178313044, -2.869105481672614 ] },
+  { name: "articuno", xRGB: 92431.93625356126, xJAB: 5416.402926551572, yRGB: [ 127.89351851851852, 169.91524216524218, 197.5462962962963 ], yJAB: [ 69.06228213268433, -8.793421624231563, -12.781503822126012 ] },
+  { name: "qwilfish", xRGB: 79101.56058282209, xJAB: 5235.230083964545, yRGB: [ 140.0935582822086, 167.52300613496934, 144.06978527607362 ], yJAB: [ 67.52700775217457, -8.751861789098143, 3.7559935273127065 ] },
+  { name: "kricketot", xRGB: 64386.065084745765, xJAB: 4277.702944625738, yRGB: [ 159.52338983050848, 125.12, 99.29152542372881 ], yJAB: [ 57.946712922807386, 6.011477565501593, 9.337455042207868 ] },
+  { name: "graveler-alola", xRGB: 64216.24022346369, xJAB: 3983.8037494699934, yRGB: [ 135.58804955064366, 142.2999757104688, 141.29511780422638 ], yJAB: [ 60.5030865650484, -3.9635284439230714, -1.4853499860522081 ] },
+  { name: "palossand", xRGB: 108225.59202453987, xJAB: 6844.7482679827235, yRGB: [ 221.32114204813593, 185.48867390278434, 139.14464369985842 ], yJAB: [ 79.70224777393464, 4.5478114755124945, 13.681252985250062 ] },
+  { name: "staryu", xRGB: 70593.25488454707, xJAB: 5144.065556059643, yRGB: [ 178.53019538188278, 151.73179396092362, 90.2841918294849 ], yJAB: [ 66.35845890393409, 2.0491737053124397, 16.46127841886963 ] },
+  { name: "magearna", xRGB: 109531.00190748689, xJAB: 6251.7566443896685, yRGB: [ 191.89079637577493, 182.58226037195993, 175.4969003338102 ], yJAB: [ 76.44975396797, 1.073650680319646, 2.0716582965650003 ] },
+  { name: "furfrou-kabuki", xRGB: 94663.87309435518, xJAB: 5662.248955009291, yRGB: [ 195.02719406674908, 157.56695508858672, 143.2707045735476 ], yJAB: [ 70.79819540344644, 6.854968987052016, 6.601639501772813 ] },
+  { name: "cofagrigus", xRGB: 42580.480158730155, xJAB: 2938.7144602478625, yRGB: [ 110.03487886382624, 107.82289055973267, 90.71637426900585 ], yJAB: [ 46.973443041405, -1.4834732155658343, 2.3568860017360835 ] },
+  { name: "trumbeak", xRGB: 58492.88980263158, xJAB: 3520.065207247683, yRGB: [ 128.45682565789474, 122.77055921052632, 121.2701480263158 ], yJAB: [ 53.50180363063781, 0.01446584450964776, 0.04834362746343646 ] },
+  { name: "swoobat", xRGB: 62214.936170212764, xJAB: 3627.4303428565245, yRGB: [ 108.36049779205139, 123.78402248093136, 140.31312725812927 ], yJAB: [ 52.09683068676728, -4.027222201451113, -7.622656313323463 ] },
+  { name: "golurk", xRGB: 71135.99856115108, xJAB: 4832.257194554285, yRGB: [ 118.73908872901679, 160.74308553157474, 151.85035971223022 ], yJAB: [ 65.08978413955008, -11.05564411795878, -1.6909994686065093 ] },
+  { name: "vivillon-marine", xRGB: 71196.72920552033, xJAB: 4391.355124568497, yRGB: [ 93.33513614323014, 145.71428571428572, 171.417195076464 ], yJAB: [ 58.66044513469907, -10.327557390565348, -12.461965362578729 ] },
+  { name: "staravia", xRGB: 41654.44757665678, xJAB: 2634.521880329062, yRGB: [ 110.48318496538081, 99.81404549950544, 87.45499505440158 ], yJAB: [ 44.54774127700804, 1.2704793056966577, 4.5158044225935505 ] },
+  { name: "nickit", xRGB: 52544.11072261072, xJAB: 3375.065875486586, yRGB: [ 140.2773892773893, 94.26184926184926, 74.21095571095572 ], yJAB: [ 47.376146859499435, 9.779300488248584, 9.207390845287101 ] },
+  { name: "makuhita", xRGB: 92353.17448487505, xJAB: 6047.928728091977, yRGB: [ 189.76501534414732, 174.91889522139414, 133.22007891275757 ], yJAB: [ 73.56215079976806, 0.25724720660726447, 9.765682554613479 ] },
+  { name: "ho-oh", xRGB: 73807.49940659862, xJAB: 5226.326852831815, yRGB: [ 192.47970567291716, 122.5145976738666, 79.82292902919535 ], yJAB: [ 63.71486533191006, 11.375210695180279, 14.602575251969602 ] },
+  { name: "drednaw", xRGB: 74697.52068876896, xJAB: 5394.287393210936, yRGB: [ 150.70675918786944, 161.39270110511436, 105.00796710357234 ], yJAB: [ 67.83491655530158, -5.528300078264351, 9.930339395927213 ] },
+  { name: "toxel", xRGB: 88931.55636070854, xJAB: 4740.356346036837, yRGB: [ 166.56441223832527, 124.53703703703704, 187.35668276972623 ], yJAB: [ 61.0711156904187, 10.696599196045398, -13.732191596148036 ] },
+  { name: "horsea", xRGB: 111426.9710327456, xJAB: 6636.479840526863, yRGB: [ 159.85138539042822, 195.02896725440806, 200.61712846347606 ], yJAB: [ 77.99081262770682, -9.020457775451506, -5.6380037621608405 ] },
+  { name: "brionne", xRGB: 122719.62424547283, xJAB: 7069.979630640471, yRGB: [ 164.16549295774647, 204.9969818913481, 214.03621730382295 ], yJAB: [ 81.04084523629194, -9.614885303083224, -6.565897047749724 ] },
+  { name: "kakuna", xRGB: 90474.5299073294, xJAB: 6585.83706527744, yRGB: [ 201.1356360572873, 181.54338668913226, 96.37152485256951 ], yJAB: [ 75.73850782381831, -1.2399480760991552, 20.21776050697 ] },
+  { name: "floette-red", xRGB: 89154.77614035088, xJAB: 5644.635388067706, yRGB: [ 165.80070175438595, 164.8701754385965, 146.04491228070177 ], yJAB: [ 69.86977880714505, -1.275512754024573, 5.085219843155546 ] },
+  { name: "skwovet", xRGB: 63675.425435765006, xJAB: 3824.266110183558, yRGB: [ 141.89025177533892, 133.58457069076823, 123.6536475145255 ], yJAB: [ 57.65957504604843, 0.8805926463339734, 3.7615725864706526 ] },
+  { name: "dunsparce", xRGB: 95604.4045174538, xJAB: 6504.350683083698, yRGB: [ 164.54277891854895, 188.69883641341548, 142.1088295687885 ], yJAB: [ 75.30617308523448, -8.362298055722862, 7.520688337172705 ] },
+  { name: "melmetal", xRGB: 54344.33560254925, xJAB: 3262.766931354772, yRGB: [ 118.22653534183083, 112.59762456546929, 102.62876593279259 ], yJAB: [ 48.350053801376056, 0.150678142593947, 2.610665654570181 ] },
+  { name: "hakamo-o", xRGB: 83166.87225274726, xJAB: 5425.744543154884, yRGB: [ 172.01785714285714, 165.41849816849816, 130.09432234432234 ], yJAB: [ 69.46826047933968, -1.6174482075896357, 8.068521285695082 ] },
+  { name: "ivysaur", xRGB: 82820.73613121081, xJAB: 5280.297815173576, yRGB: [ 144.9141341051616, 155.80463096960926, 162.35697057404727 ], yJAB: [ 67.31950152453345, -3.524862037531744, -2.6156279146736328 ] },
+  { name: "pawniard", xRGB: 61680.65376495426, xJAB: 3704.4687239044583, yRGB: [ 138.00985221674875, 119.43068261787474, 117.12174524982407 ], yJAB: [ 53.924623316689015, 3.7485102993610635, 1.98640254666946 ] },
+  { name: "fomantis", xRGB: 81265.81231671554, xJAB: 5426.594463879996, yRGB: [ 135.52590420332356, 172.7565982404692, 157.4672531769306 ], yJAB: [ 69.4938317644067, -10.039724155277042, 2.053456760005989 ] },
+  { name: "absol", xRGB: 125502.7468879668, xJAB: 6779.130880612064, yRGB: [ 190.32240663900416, 192.84066390041494, 204.58547717842325 ], yJAB: [ 79.00805674165647, -1.4037369420605461, -5.777394679308463 ] },
+  { name: "salazzle", xRGB: 37310.459394521866, xJAB: 2326.6728108711045, yRGB: [ 104.16722729456991, 99.13310908217203, 109.6309466602595 ], yJAB: [ 44.858299637875994, 1.2940749585113405, -4.601810218080935 ] },
+  { name: "incineroar", xRGB: 46823.55647751606, xJAB: 3304.121728431093, yRGB: [ 149.57976445396145, 92.42773019271948, 81.58806209850107 ], yJAB: [ 49.846165530562736, 11.847808960704645, 7.723227064633324 ] },
+  { name: "simisage", xRGB: 67857.73461401636, xJAB: 5360.992527096223, yRGB: [ 115.69797225186767, 174.21522589825685, 121.46140163642832 ], yJAB: [ 68.02624076434208, -14.009427174213865, 10.747409160049347 ] },
+  { name: "slowking-galar", xRGB: 49564.98573779484, xJAB: 2943.7606415182577, yRGB: [ 125.1716950082282, 86.2029621503017, 123.5233132199671 ], yJAB: [ 45.05223964633143, 10.530007064877656, -8.926667351413656 ] },
+  { name: "skiddo", xRGB: 67319.66, xJAB: 4267.492851961508, yRGB: [ 129.6563157894737, 142.91631578947369, 129.45052631578946 ], yJAB: [ 60.02031709585718, -3.335436715262659, 3.2533619112589265 ] },
+  { name: "prinplup", xRGB: 72587.96334376397, xJAB: 4573.611634815996, yRGB: [ 118.863209655789, 145.82610639248995, 152.14126061689763 ], yJAB: [ 60.23834358594611, -7.5651397892784304, -7.6890175585729965 ] },
+  { name: "spheal", xRGB: 121710.51381215469, xJAB: 6943.3111800173965, yRGB: [ 189.54932912391476, 196.4325177584846, 196.3251775848461 ], yJAB: [ 80.09942149303134, -2.763955372304843, -1.829191604911476 ] },
+  { name: "volbeat", xRGB: 80968.72479721901, xJAB: 5020.865170078715, yRGB: [ 174.93453070683663, 141.15121668597914, 130.59269988412515 ], yJAB: [ 64.83795872613237, 5.738991045175877, 3.951264955971666 ] },
+  { name: "regieleki", xRGB: 98710.4631043257, xJAB: 7678.484223736617, yRGB: [ 201.22973464194837, 198.08760450745183, 70.3206106870229 ], yJAB: [ 79.46222565461791, -5.528386906779253, 21.346125041555673 ] },
+  { name: "meltan", xRGB: 70750.4168618267, xJAB: 4605.950971111494, yRGB: [ 146.61943793911007, 131.38290398126463, 88.84309133489461 ], yJAB: [ 55.58937822308868, 0.274896547731957, 9.207497132518093 ] },
+  { name: "porygon-z", xRGB: 71813.17816091955, xJAB: 4687.972990641313, yRGB: [ 131.10098522167488, 136.9072249589491, 156.39162561576356 ], yJAB: [ 62.48084436116534, -0.20193448917331458, -5.818504760541397 ] },
+  { name: "nosepass", xRGB: 52437.55230326296, xJAB: 3131.369133971867, yRGB: [ 112.62907869481766, 108.76247600767755, 140.21737044145874 ], yJAB: [ 49.79944959555608, 1.5603770604915348, -11.71485378668065 ] },
+  { name: "sizzlipede", xRGB: 68467.57275902212, xJAB: 4756.28082591804, yRGB: [ 186.23748544819557, 83.57857974388824, 70.9697322467986 ], yJAB: [ 56.88225638810063, 18.718035811782453, 13.69663027167998 ] },
+  { name: "greedent", xRGB: 61826.54136493307, xJAB: 3913.4858147250684, yRGB: [ 164.48123765635287, 115.37766074171604, 97.98858898398069 ], yJAB: [ 55.930473544562375, 11.266307061465982, 9.513138443325325 ] },
+  { name: "ludicolo", xRGB: 87512.76833740831, xJAB: 6059.942324608048, yRGB: [ 172.32243276283617, 181.96026894865525, 132.53453545232273 ], yJAB: [ 73.92467027497631, -5.32692610144702, 12.137507465449062 ] },
+  { name: "torracat", xRGB: 42546.41516853932, xJAB: 3129.2938106327483, yRGB: [ 142.67162921348316, 92.64691011235955, 66.0252808988764 ], yJAB: [ 48.00529044829874, 9.03767388945815, 10.219379095477706 ] },
+  { name: "mewtwo", xRGB: 124444.34042553192, xJAB: 6732.236569531165, yRGB: [ 202.60283687943263, 189.34751773049646, 203.45390070921985 ], yJAB: [ 79.97989833165212, 3.4182309089038885, -4.582434111751987 ] },
+  { name: "wartortle", xRGB: 113190.65529308836, xJAB: 6466.518238397672, yRGB: [ 176.8416447944007, 189.12685914260717, 198.06561679790028 ], yJAB: [ 77.63772572992956, -3.95914556000004, -5.700025745037897 ] },
+  { name: "emolga", xRGB: 82675.29639737992, xJAB: 4811.876293795433, yRGB: [ 153.3711790393013, 147.96124454148472, 136.51965065502182 ], yJAB: [ 62.08457013947844, -0.28522286371129757, 1.944738154546813 ] },
+  { name: "throh", xRGB: 89053.12372482344, xJAB: 5153.715684259499, yRGB: [ 171.06277792309703, 149.62490190949515, 143.03923620193567 ], yJAB: [ 65.28304511193915, 3.8829690034955444, 3.5773617156911057 ] },
+  { name: "heracross", xRGB: 65074.73015252249, xJAB: 4037.661864176955, yRGB: [ 100.80993351583888, 141.3187328901056, 168.80328509972625 ], yJAB: [ 58.28039786725457, -9.17994857934268, -13.728824620226511 ] },
+  { name: "minun", xRGB: 106923.13595413596, xJAB: 6594.616445254161, yRGB: [ 164.04095004095004, 192.55528255528256, 184.8001638001638 ], yJAB: [ 77.47352592410807, -7.28522853891147, -1.307357296824596 ] },
+  { name: "cramorant", xRGB: 80337.21506949524, xJAB: 4597.019384983615, yRGB: [ 98.2713972201902, 139.8152889539137, 178.1437454279444 ], yJAB: [ 58.32085158412064, -5.949036009666416, -14.478119681865627 ] },
+  { name: "jumpluff", xRGB: 107909.48634294386, xJAB: 6387.90941609776, yRGB: [ 181.95030349013658, 181.4343702579666, 179.90591805766311 ], yJAB: [ 75.34736443385798, -1.209076988785396, -1.7901784003492551 ] },
+  { name: "pidgeot", xRGB: 117948.63520496039, xJAB: 7273.688527103024, yRGB: [ 212.33895969686532, 198.7530141233207, 157.43300034447122 ], yJAB: [ 82.00842785263264, -0.027763554072634682, 11.073235077014923 ] },
+  { name: "skiploom", xRGB: 62163.877955758966, xJAB: 6183.027375684298, yRGB: [ 138.68421052631578, 185.1586575133486, 63.61708619374523 ], yJAB: [ 71.73569173464115, -14.983622202151167, 22.885360768534575 ] },
+  { name: "alakazam", xRGB: 91811.63746537396, xJAB: 6605.9012290437195, yRGB: [ 191.89162049861497, 182.0024238227147, 99.3452216066482 ], yJAB: [ 74.63558604213563, -2.426746624960156, 16.3397387641396 ] },
+  { name: "sandshrew", xRGB: 109941.42092840283, xJAB: 7310.7413460077805, yRGB: [ 213.65696302124312, 197.94099134539732, 130.7970102281668 ], yJAB: [ 81.54942616839344, -1.2015829993796172, 15.682070428959168 ] },
+  { name: "azelf", xRGB: 99429.27157561362, xJAB: 5900.261219379799, yRGB: [ 145.35471100554236, 180.20269200316707, 194.21456848772763 ], yJAB: [ 73.19090531871223, -8.17706436459046, -8.480871442437865 ] },
+  { name: "flareon", xRGB: 105910.44113090627, xJAB: 7036.8325816981915, yRGB: [ 213.09914794732765, 182.41092176607282, 120.88303640588691 ], yJAB: [ 77.85734155286181, 2.521690922112345, 15.95907745932715 ] },
+  { name: "runerigus", xRGB: 49092.59901178259, xJAB: 2991.3249214503526, yRGB: [ 122.11098441657164, 101.44735841885215, 107.46332193082478 ], yJAB: [ 47.37796415993579, 5.038917388083012, -1.1372097404545707 ] },
+  { name: "tsareena", xRGB: 87255.74666666667, xJAB: 5760.96464851864, yRGB: [ 171.35315315315316, 169.35531531531532, 140.14162162162162 ], yJAB: [ 70.9493210067377, -1.2336731812586945, 7.953881014584246 ] },
+  { name: "hydreigon", xRGB: 44770.86943121323, xJAB: 2771.0582169954446, yRGB: [ 114.13196973942281, 100.09470439899131, 116.73746147380218 ], yJAB: [ 46.95938549912277, 4.201967226689593, -4.063657782806396 ] },
+  { name: "munchlax", xRGB: 65067.2699742268, xJAB: 4108.96005123972, yRGB: [ 112.37306701030928, 142.98840206185568, 151.72938144329896 ], yJAB: [ 58.99029407891795, -8.107437553042077, -7.005532763995596 ] },
+  { name: "vivillon-monsoon", xRGB: 72623.43365150664, xJAB: 4145.646143866598, yRGB: [ 131.76829496537525, 136.28635597978663, 142.61800486618006 ], yJAB: [ 57.43181832963982, -1.977650037767917, -3.3081571988898926 ] },
+  { name: "timburr", xRGB: 84967.10305343512, xJAB: 5311.00196675447, yRGB: [ 183.41275899672846, 156.93947655398037, 135.23064340239912 ], yJAB: [ 69.14118362822667, 4.26222972118574, 8.035528042436 ] },
+  { name: "archeops", xRGB: 76775.24287548139, xJAB: 5187.185016692218, yRGB: [ 143.9653401797176, 153.27060333761233, 133.26341463414633 ], yJAB: [ 65.8105205178943, -1.7448163329478268, 3.725549219857181 ] },
+  { name: "pichu", xRGB: 89810.82042253521, xJAB: 6044.752861314152, yRGB: [ 177.60211267605635, 170.25440140845072, 114.7649647887324 ], yJAB: [ 69.60333377061595, -2.3264839920172102, 12.763616212696054 ] },
+  { name: "samurott", xRGB: 77124.13475965546, xJAB: 4652.75752434691, yRGB: [ 128.62656293414838, 146.16504584606835, 160.73242567379828 ], yJAB: [ 61.35676600211598, -4.05749164214463, -6.911574492933316 ] },
+  { name: "murkrow", xRGB: 31603.645569620254, xJAB: 2088.7568219878754, yRGB: [ 65.20253164556962, 79.13924050632912, 94.29113924050633 ], yJAB: [ 34.350490150910346, -4.090853991019866, -9.483491804096438 ] },
+  { name: "thundurus-incarnate", xRGB: 94416.16351829989, xJAB: 5336.704250709022, yRGB: [ 155.37337662337663, 164.29486422668242, 172.76977567886658 ], yJAB: [ 68.00307212863353, -2.9518637002743118, -4.4809102270919094 ] },
+  { name: "coalossal", xRGB: 30237.961980990494, xJAB: 1764.0510718867583, yRGB: [ 79.7690511922628, 74.30281807570452, 72.61313990328497 ], yJAB: [ 33.21507051286514, 1.2470697937020385, 1.3388920133277264 ] },
+  { name: "bellsprout", xRGB: 84565.76860465117, xJAB: 6120.67341435202, yRGB: [ 164.64302325581394, 183.61976744186046, 127.4406976744186 ], yJAB: [ 73.64802513391673, -7.653130721708385, 11.998910494773751 ] },
+  { name: "ribombee", xRGB: 115518.23369036027, xJAB: 6614.4186525364885, yRGB: [ 194.77458617332036, 188.30769230769232, 175.41626095423564 ], yJAB: [ 77.77293307804149, -0.3817521567233484, 3.0881509976705463 ] },
+  { name: "seismitoad", xRGB: 67744.0732708089, xJAB: 4254.153044493545, yRGB: [ 94.99140289175459, 144.3737788198515, 170.83040250097693 ], yJAB: [ 59.02649879820272, -9.487211856904707, -11.60824027227183 ] },
+  { name: "dracozolt", xRGB: 61429.6763682379, xJAB: 4743.590838115217, yRGB: [ 139.99746915533058, 127.15691236950332, 74.07086365074343 ], yJAB: [ 57.91745611823283, 0.9805011386942561, 13.321965416638456 ] },
+  { name: "ursaring", xRGB: 54991.93373193822, xJAB: 3839.873873692863, yRGB: [ 162.84255107125063, 119.44469357249626, 87.42675635276532 ], yJAB: [ 56.79215711153443, 8.581037880867049, 12.143006990232703 ] },
+  { name: "tropius", xRGB: 62188.26883365201, xJAB: 4793.615561710561, yRGB: [ 126.24856596558317, 160.54110898661568, 116.82217973231357 ], yJAB: [ 65.06721842854334, -9.334199809670142, 10.074859645250775 ] },
+  { name: "braixen", xRGB: 85398.66680395388, xJAB: 5627.282292547819, yRGB: [ 188.8204283360791, 152.83896210873147, 111.85831960461284 ], yJAB: [ 68.33527094126097, 4.8900214546033665, 11.601917946991852 ] },
+  { name: "herdier", xRGB: 71299.79281381241, xJAB: 4537.89300317562, yRGB: [ 159.89360709286046, 135.8810079328045, 120.34857676154923 ], yJAB: [ 60.4911698625016, 3.630102482135644, 3.885344771673563 ] },
+  { name: "sunflora", xRGB: 88079.28882681564, xJAB: 6617.110920097065, yRGB: [ 177.54078212290503, 189.49776536312848, 105.7608938547486 ], yJAB: [ 76.18548621832764, -7.540420090305038, 17.83703795783486 ] },
+  { name: "mareep", xRGB: 104968.67580174927, xJAB: 6459.391095470964, yRGB: [ 183.22332361516035, 184.8192419825073, 162.64489795918368 ], yJAB: [ 75.95464448956318, -2.437304614461528, 4.391612573706717 ] },
+  { name: "froakie", xRGB: 102126.71819960861, xJAB: 6265.135128741937, yRGB: [ 144.84931506849315, 188.40834964122635, 189.06262230919765 ], yJAB: [ 74.88224525587614, -10.04136573131221, -4.472377120902519 ] },
+  { name: "simipour", xRGB: 99460.39339237058, xJAB: 6439.381991527277, yRGB: [ 136.20265667574932, 190.32356948228883, 182.00885558583107 ], yJAB: [ 75.5648612299454, -10.625508964536689, -2.651469819518564 ] },
+  { name: "roggenrola", xRGB: 31218.31821862348, xJAB: 2245.7326766890906, yRGB: [ 87.46396761133603, 83.58218623481781, 79.71417004048583 ], yJAB: [ 37.73704103175996, -0.7141502617783557, -2.362290773756801 ] },
+  { name: "pangoro", xRGB: 59299.55864726027, xJAB: 3638.03447218499, yRGB: [ 127.9730308219178, 129.0064212328767, 125.13484589041096 ], yJAB: [ 55.00103441854099, -1.5865473434773498, -0.48199134309015573 ] },
+  { name: "dottler", xRGB: 79567.74032459426, xJAB: 5822.629239571215, yRGB: [ 189.6046608406159, 154.70203911776946, 62.4173949230129 ], yJAB: [ 68.25464707571017, 2.297922078234499, 15.754942848802031 ] },
+  { name: "vivillon-modern", xRGB: 69340.05037313433, xJAB: 4389.152472458246, yRGB: [ 166.2828358208955, 116.1106343283582, 117.59496268656716 ], yJAB: [ 58.1720303414229, 10.348226809908315, 3.2889942546893978 ] },
+  { name: "chimchar", xRGB: 90522.11883116883, xJAB: 6101.523045195707, yRGB: [ 201.65974025974026, 164.80064935064934, 103.39090909090909 ], yJAB: [ 72.62379969702995, 4.376544971110464, 15.725676628290406 ] },
+  { name: "whirlipede", xRGB: 71862.54010301693, xJAB: 4144.970653889349, yRGB: [ 150.49190581309787, 135.05555555555554, 149.4223693892568 ], yJAB: [ 60.44890090692149, 4.250155170514426, -4.460806271553297 ] },
+  { name: "scyther", xRGB: 101706.73623322535, xJAB: 6617.719012651881, yRGB: [ 175.17630726515503, 196.37714021286442, 157.58630263766776 ], yJAB: [ 78.13244988685108, -7.806621305624794, 8.628975001451161 ] },
+  { name: "scolipede", xRGB: 40026.34386817936, xJAB: 2655.5820340509345, yRGB: [ 131.6237169097785, 79.98082117774176, 93.10507833603458 ], yJAB: [ 44.30137252735969, 12.889986913435328, 1.8637940127655357 ] },
+  { name: "yungoos", xRGB: 73936.81230769231, xJAB: 4861.164526203452, yRGB: [ 177.5403076923077, 147.38892307692308, 114.72492307692308 ], yJAB: [ 65.47257996862156, 4.9080852185791555, 10.866517966436037 ] },
+  { name: "munna", xRGB: 137843.11504975124, xJAB: 7428.88776594558, yRGB: [ 233.79228855721394, 194.5167910447761, 204.6766169154229 ], yJAB: [ 84.6499235032827, 9.635116474518208, -0.09378647772619696 ] },
+  { name: "golduck", xRGB: 94575.25, xJAB: 5564.213462819685, yRGB: [ 138.39271653543307, 172.85285433070865, 197.6166338582677 ], yJAB: [ 70.64844800238103, -7.932817920729942, -11.903993043898357 ] },
+  { name: "sandslash-alola", xRGB: 108675.93874172185, xJAB: 6367.189417473093, yRGB: [ 146.9751655629139, 191.90190397350995, 206.34975165562915 ], yJAB: [ 76.29403032776827, -10.53334457424375, -9.175140785585546 ] },
+  { name: "blipbug", xRGB: 84318.13674560733, xJAB: 4845.517653236207, yRGB: [ 150.84339190221544, 146.6577540106952, 150.34988540870893 ], yJAB: [ 61.909996718939276, 0.033672752876917386, -3.755992825708708 ] },
+  { name: "remoraid", xRGB: 103640.243575419, xJAB: 6306.446027567465, yRGB: [ 174.7296089385475, 191.59664804469273, 177.0659217877095 ], yJAB: [ 77.53940903647779, -6.595180776772416, 2.8201338960330617 ] },
+  { name: "magby", xRGB: 81094.06571815719, xJAB: 5309.515652447691, yRGB: [ 208.50338753387533, 129.8150406504065, 117.03048780487805 ], yJAB: [ 66.90247429794803, 16.138575087411965, 9.771265686600916 ] },
+  { name: "ampharos", xRGB: 116338.73927257866, xJAB: 7821.603206955769, yRGB: [ 220.63874131589702, 203.52758479771148, 119.28483857785042 ], yJAB: [ 83.42792306033787, -1.5811350870649394, 16.789243644863856 ] },
+  { name: "duraludon", xRGB: 94181.07494736843, xJAB: 5200.071415255125, yRGB: [ 162.7061052631579, 154.9818947368421, 171.65473684210525 ], yJAB: [ 66.27864680614078, 2.599771939389328, -6.463565717794172 ] },
+  { name: "darkrai", xRGB: 48191.93682082386, xJAB: 2871.4796123095384, yRGB: [ 112.27217589082639, 105.86656557998484, 102.68309325246399 ], yJAB: [ 46.504451827826955, 0.2007064205618354, 1.0801369335197988 ] },
+  { name: "trubbish", xRGB: 49913.973411154344, xJAB: 3439.9164244502435, yRGB: [ 112.99156939040208, 131.52399481193257, 113.42153047989623 ], yJAB: [ 54.756215799770274, -7.448843501101594, 4.566207902980264 ] },
+  { name: "marowak-alola", xRGB: 82119.03987624613, xJAB: 4879.6900782423145, yRGB: [ 151.63630113441045, 152.52973530422827, 147.59092471639738 ], yJAB: [ 63.64962980355947, -0.30352958571027555, 0.057001332846869424 ] },
+  { name: "sandslash", xRGB: 86989.48776371308, xJAB: 5831.2409170747305, yRGB: [ 188.26244725738397, 163.68059071729957, 104.83333333333333 ], yJAB: [ 70.04998173004482, 1.7084535863422297, 15.082200721223298 ] },
+  { name: "silvally", xRGB: 73867.30404217927, xJAB: 4235.979999818911, yRGB: [ 135.8927943760984, 138.993848857645, 143.08435852372583 ], yJAB: [ 58.55414910343137, -1.797247432237338, -3.002936173034081 ] },
+  { name: "aipom", xRGB: 95266.49422336329, xJAB: 5593.895826326625, yRGB: [ 186.41078305519898, 155.36777920410782, 168.0250320924262 ], yJAB: [ 69.80357743989609, 7.301221502305414, -2.0362277186714803 ] },
+  { name: "dedenne", xRGB: 76170.54263565892, xJAB: 5127.870165393208, yRGB: [ 171.03030303030303, 149.59760394644115, 101.86821705426357 ], yJAB: [ 64.42773378212058, 1.1123931909461593, 12.42361485256923 ] },
+  { name: "axew", xRGB: 51469.001459854015, xJAB: 3629.7008782568287, yRGB: [ 122.4992700729927, 133.36934306569344, 103.73722627737226 ], yJAB: [ 55.822532653701884, -5.749920279304754, 8.414442517763643 ] },
+  { name: "palkia", xRGB: 114260.69660641829, xJAB: 6245.198885694106, yRGB: [ 189.3672076724456, 177.84157137587607, 189.43618590925857 ], yJAB: [ 75.18767716721484, 2.4859197523211054, -3.474331758507412 ] },
+  { name: "hoppip", xRGB: 84558.67148362235, xJAB: 5164.153951440253, yRGB: [ 184.03564547206165, 141.47013487475914, 137.40847784200386 ], yJAB: [ 66.40932087742956, 8.901267473254757, 4.639075671204235 ] },
+  { name: "vulpix", xRGB: 69950.39859594384, xJAB: 4863.312108613112, yRGB: [ 197.4625585023401, 131.61076443057723, 88.67316692667707 ], yJAB: [ 64.64772038210651, 11.929832372877824, 15.309833739429758 ] },
+  { name: "togepi", xRGB: 116660.93127413128, xJAB: 6801.361240318701, yRGB: [ 196.9899613899614, 192.1196911196911, 177.180694980695 ], yJAB: [ 79.44911114911004, -0.4936137125469068, 3.8215695611614335 ] },
+  { name: "skrelp", xRGB: 64028.92415730337, xJAB: 3849.1156475791863, yRGB: [ 154.0187265917603, 124.04588014981273, 127.11797752808988 ], yJAB: [ 57.558441140214185, 7.545717819477381, 1.4400555345272668 ] },
+  { name: "ponyta-galar", xRGB: 113740.69033965594, xJAB: 6315.622264668831, yRGB: [ 166.08866343184826, 166.97309219232466, 210.59902955447728 ], yJAB: [ 72.62126040123128, 1.3834058502430358, -10.996150417527085 ] },
+  { name: "shuppet", xRGB: 66820.4125, xJAB: 3901.7040569974183, yRGB: [ 125.02083333333333, 132.47604166666667, 166.653125 ], yJAB: [ 57.739091775270865, -1.1512771436504263, -14.087727565782902 ] },
+  { name: "grumpig", xRGB: 64943.69866567828, xJAB: 3751.966833527173, yRGB: [ 138.05411415863603, 130.07079318013342, 138.38176426982952 ], yJAB: [ 57.070195698260726, 1.842450108210465, -2.8102160354289345 ] },
+  { name: "floette-orange", xRGB: 90533.71488764045, xJAB: 5764.246353035838, yRGB: [ 166.88412921348313, 173.23525280898878, 143.54494382022472 ], yJAB: [ 71.54928046410069, -3.7166835774059024, 6.718628608797749 ] },
+  { name: "squirtle", xRGB: 95565.63952724884, xJAB: 5926.54778128353, yRGB: [ 144.37163493105712, 182.52396585686145, 183.5397242284964 ], yJAB: [ 73.35108177219654, -9.427095316125616, -4.073374689523934 ] },
+  { name: "shellder", xRGB: 73725.43386689133, xJAB: 4079.84597047957, yRGB: [ 134.63942712721146, 126.84835720303286, 151.75400168491996 ], yJAB: [ 55.35255331373974, 2.795566231448354, -9.86342603046078 ] },
+  { name: "illumise", xRGB: 76283.65373805509, xJAB: 4517.570554110047, yRGB: [ 140.42439572793705, 142.57448004496908, 151.5283867341203 ], yJAB: [ 60.98437096370168, -0.5148045983317521, -4.811599288337802 ] },
+  { name: "seel", xRGB: 143167.890625, xJAB: 7698.494992356386, yRGB: [ 213.03125, 211.87088815789474, 216.88980263157896 ], yJAB: [ 86.1972382472503, -0.7505511409871769, -3.197983914212928 ] },
+  { name: "tentacruel", xRGB: 83598.57936507936, xJAB: 5012.3992460646505, yRGB: [ 151.20634920634922, 151.6031746031746, 163.9126984126984 ], yJAB: [ 65.7845827205003, -0.7647852557754025, -3.927076756911174 ] },
+  { name: "cherrim", xRGB: 41358.66512345679, xJAB: 3065.820736863952, yRGB: [ 107.81095679012346, 97.80246913580247, 110.82793209876543 ], yJAB: [ 46.970201620297715, 5.916486211217003, -4.585815434170647 ] },
+  { name: "necrozma-dawn-wings", xRGB: 53913.3495407032, xJAB: 3355.7075928906243, yRGB: [ 69.18435223313273, 118.69337979094077, 140.9535951853025 ], yJAB: [ 47.806174893696245, -10.005661000121256, -11.5031507702127 ] },
+  { name: "goomy", xRGB: 124980.47920277296, xJAB: 6821.5502185252135, yRGB: [ 199.3890814558059, 189.07712305025996, 211.08578856152513 ], yJAB: [ 80.35521979984888, 3.5778391531632603, -7.436375141717594 ] },
+  { name: "lunatone", xRGB: 100259.9748096075, xJAB: 6263.092947912152, yRGB: [ 191.18277680140596, 179.53075571177504, 144.49502050380784 ], yJAB: [ 74.6393159076885, -0.16861537988729267, 9.767106944681275 ] },
+  { name: "urshifu", xRGB: 44180.19668938656, xJAB: 2776.901193187524, yRGB: [ 107.8750405712431, 104.9227523531321, 96.6166828951639 ], yJAB: [ 45.699850829590936, -0.48093653381599305, 1.51328125019815 ] },
+  { name: "bayleef", xRGB: 99473.66431924883, xJAB: 6990.049933786984, yRGB: [ 194.7218309859155, 197.76467136150234, 127.41021126760563 ], yJAB: [ 79.75731520663192, -5.097270525751998, 16.379694344502884 ] },
+  { name: "applin", xRGB: 81722.66951124903, xJAB: 5598.669213505673, yRGB: [ 192.822342901474, 135.6733902249806, 116.16912335143522 ], yJAB: [ 67.30629929861381, 10.731214366939787, 10.635954196677488 ] },
+  { name: "vivillon-fancy", xRGB: 88918.23675373134, xJAB: 5658.811347465947, yRGB: [ 166.01641791044776, 165.31231343283582, 138.87033582089552 ], yJAB: [ 69.08410691422986, -1.380126047131906, 6.255995127674411 ] },
+  { name: "yanma", xRGB: 98307.21287128713, xJAB: 6082.618931344223, yRGB: [ 182.56364922206507, 170.04809052333806, 148.35926449787837 ], yJAB: [ 72.67957725918488, 0.9780099041883284, 5.0458559111645735 ] },
+  { name: "slurpuff", xRGB: 131444.2807219662, xJAB: 7166.654613230762, yRGB: [ 220.97388632872503, 191.56336405529953, 199.36482334869433 ], yJAB: [ 82.47013713267, 6.554254200589297, -0.27014119633935363 ] },
+  { name: "carracosta", xRGB: 56108.97534316218, xJAB: 3428.9296212305317, yRGB: [ 96.42119979664464, 125.7153024911032, 155.6187086934418 ], yJAB: [ 52.90318822142305, -6.6700020435113325, -14.250185444128764 ] },
+  { name: "swadloon", xRGB: 60086.84526112186, xJAB: 5676.065071952097, yRGB: [ 134.892972275951, 172.88265635074146, 61.894906511927786 ], yJAB: [ 67.44806238934858, -13.625169213150862, 21.47763248737882 ] },
+  { name: "landorus-therian", xRGB: 85316.85448613377, xJAB: 5344.965914857127, yRGB: [ 192.83491027732464, 147.58107667210442, 123.08776508972268 ], yJAB: [ 68.01317388509659, 8.138501987916081, 8.78105042180801 ] },
+  { name: "primarina", xRGB: 121502.04492512479, xJAB: 6731.928180282693, yRGB: [ 177.63727121464225, 194.66943982251803, 205.09262340543538 ], yJAB: [ 78.65082233296836, -5.061544020738994, -6.156488051691152 ] },
+  { name: "grovyle", xRGB: 65788.90465988216, xJAB: 4673.752905282199, yRGB: [ 137.12747723620782, 151.76593465452598, 121.41671130155329 ], yJAB: [ 63.273077048367384, -5.885300265319422, 7.975843668621891 ] },
+  { name: "comfey", xRGB: 81482.37134146341, xJAB: 5574.956866119684, yRGB: [ 186.7609756097561, 157.8048780487805, 116.93231707317074 ], yJAB: [ 70.03513186914853, 3.4839629616720864, 11.169238343958062 ] },
+  { name: "machamp", xRGB: 81681.88545727136, xJAB: 4775.248434112853, yRGB: [ 146.56191904047975, 155.823988005997, 170.19880059970015 ], yJAB: [ 65.7605505572037, -2.950223119980506, -7.987746241901715 ] },
+  { name: "vikavolt", xRGB: 71423.74780058651, xJAB: 4421.199895716781, yRGB: [ 112.83903551645487, 148.03095470837405, 146.94232649071358 ], yJAB: [ 59.74753610044781, -9.29768303486126, -4.037926180510429 ] },
+  { name: "golem-alola", xRGB: 41257.36991070077, xJAB: 2640.598626716385, yRGB: [ 103.67700923263206, 108.51672468593915, 108.16906311487816 ], yJAB: [ 46.95898245096237, -2.8902310172883925, -1.7203193882343402 ] },
+  { name: "escavalier", xRGB: 92572.86679292929, xJAB: 5675.462621749267, yRGB: [ 197.1205808080808, 152.7907196969697, 145.5464015151515 ], yJAB: [ 70.99363668282919, 8.632772533969467, 5.7925463997569455 ] },
+  { name: "celebi", xRGB: 116887.70249355116, xJAB: 7128.928727132983, yRGB: [ 191.03439380911436, 203.4737747205503, 173.05503009458297 ], yJAB: [ 81.20377976870739, -5.546654882751883, 6.929135058449147 ] },
+  { name: "beartic", xRGB: 151585.37357679915, xJAB: 8131.398728006838, yRGB: [ 211.15059076262085, 221.8655209452202, 228.11041890440387 ], yJAB: [ 88.43040981478605, -4.401150973834414, -4.547543360234019 ] },
+  { name: "poliwag", xRGB: 79381.65838509316, xJAB: 4525.674459122866, yRGB: [ 129.2724046140195, 145.50310559006212, 169.2910381543922 ], yJAB: [ 60.94359345571721, -3.774332960840309, -10.277892539161959 ] },
+  { name: "raikou", xRGB: 107972.92591328098, xJAB: 6901.955593080126, yRGB: [ 203.33253670194605, 188.6483441447593, 137.71799248890406 ], yJAB: [ 78.43981029191369, 0.1145000908085034, 9.721849408658354 ] },
+  { name: "combusken", xRGB: 94002.84657671164, xJAB: 6164.934048242863, yRGB: [ 202.7256371814093, 170.40779610194903, 123.12043978010995 ], yJAB: [ 74.02781928707998, 3.832165274225578, 13.359046580935255 ] },
+  { name: "drilbur", xRGB: 72880.98914354644, xJAB: 4177.378479303237, yRGB: [ 143.60796139927623, 137.71230398069963, 142.59288299155608 ], yJAB: [ 59.13528690794157, 1.070202697657744, -2.220213853270114 ] },
+  { name: "unfezant", xRGB: 56204.38779463997, xJAB: 3611.066742020651, yRGB: [ 126.45979980626413, 126.30061349693251, 122.84791733936068 ], yJAB: [ 55.49990367327185, -0.6329014103897878, 0.8732890668411474 ] },
+  { name: "zekrom", xRGB: 26296.767174775527, xJAB: 1753.7876463654036, yRGB: [ 74.60263102944248, 87.7723950720401, 88.26936730006264 ], yJAB: [ 37.6621164685899, -5.676966053213139, -2.361450601067374 ] },
+  { name: "minior", xRGB: 99062.58482758621, xJAB: 5621.102975872444, yRGB: [ 207.16275862068966, 146.7103448275862, 165.65241379310345 ], yJAB: [ 70.87842307412323, 14.616166137810199, 0.009064361608649178 ] },
+  { name: "nidoran-f", xRGB: 110389.52578361981, xJAB: 6112.925178072544, yRGB: [ 169.1577350859454, 180.69160768452983, 203.24368048533873 ], yJAB: [ 74.76121998644363, -3.213053317004612, -10.542170937537902 ] },
+  { name: "kangaskhan", xRGB: 78504.4776119403, xJAB: 5057.703813241126, yRGB: [ 177.90310741375092, 154.10643503792514, 123.40078297039393 ], yJAB: [ 67.15643997832366, 3.407454431391409, 9.845956572388397 ] },
+  { name: "krookodile", xRGB: 65026.99585635359, xJAB: 3954.6494402562907, yRGB: [ 158.40055248618785, 118.0889502762431, 126.41519337016575 ], yJAB: [ 57.104665923962735, 9.739673124955006, 0.7972950381647194 ] },
+  { name: "floette-yellow", xRGB: 92885.29002808989, xJAB: 5951.416329837441, yRGB: [ 166.9796348314607, 179.8370786516854, 147.72331460674158 ], yJAB: [ 73.18534159312568, -5.479189755452476, 6.7715439339553 ] },
+  { name: "patrat", xRGB: 81771.4204851752, xJAB: 5179.805338932786, yRGB: [ 181.73045822102426, 151.69407008086253, 119.366576819407 ], yJAB: [ 67.05068466796186, 4.384132625507339, 10.527103625552263 ] },
+  { name: "hoothoot", xRGB: 82653.6128600134, xJAB: 5141.887028219242, yRGB: [ 178.926992632284, 147.44340254521097, 122.8030810448761 ], yJAB: [ 65.44029438705479, 4.931340472964887, 8.27421696494023 ] },
+  { name: "litwick", xRGB: 136693.65326975478, xJAB: 7354.349042738843, yRGB: [ 199.49523160762942, 203.60626702997274, 218.6607629427793 ], yJAB: [ 83.04042432374871, -1.8988629321042834, -6.643298333863127 ] },
+  { name: "wormadam-sandy", xRGB: 74119.43031914893, xJAB: 4933.620838597986, yRGB: [ 172.7218085106383, 149.89840425531915, 111.8654255319149 ], yJAB: [ 65.42236246547243, 2.374170845594489, 11.458054538636926 ] },
+  { name: "klefki", xRGB: 89625.69494047618, xJAB: 5317.146955674665, yRGB: [ 169.63318452380952, 164.18154761904762, 157.06026785714286 ], yJAB: [ 69.54543509303853, -0.6119170659639968, 1.6108291989053816 ] },
+  { name: "hoopa-confined", xRGB: 92250.67591721543, xJAB: 5653.491274027799, yRGB: [ 192.42944496707432, 155.95860771401692, 144.22013170272814 ], yJAB: [ 70.87626507840561, 7.192990001610101, 3.409972053312464 ] },
+  { name: "blissey", xRGB: 144763.69469411424, xJAB: 7678.723069503961, yRGB: [ 224.0953899681067, 206.0060887213685, 216.44563641635256 ], yJAB: [ 86.04461141467286, 4.293452733681067, -2.7344842381333434 ] },
+  { name: "klink", xRGB: 90288.0271170314, xJAB: 5206.608516635769, yRGB: [ 156.04091341579448, 163.39248334919125, 164.72692673644147 ], yJAB: [ 68.02515664415475, -2.2490552732379667, -1.8268482318323962 ] },
+  { name: "kabutops", xRGB: 75022.68787712562, xJAB: 5010.8937000427795, yRGB: [ 181.07844212835985, 148.04827207899066, 107.1848601206802 ], yJAB: [ 66.09890597851792, 4.409503103214637, 12.13385915648541 ] },
+  { name: "zangoose", xRGB: 123450.00996828274, xJAB: 6831.075862647861, yRGB: [ 207.11961939284097, 184.73538740371546, 188.91798821930223 ], yJAB: [ 79.25538952372112, 3.8925925388817317, -0.017759802311023507 ] },
+  { name: "flabebe-white", xRGB: 104182.51237964237, xJAB: 6359.35208470638, yRGB: [ 181.39958734525447, 187.39752407152682, 159.94497936726273 ], yJAB: [ 76.38507087337528, -4.131399433656912, 6.074648031768708 ] },
+  { name: "glastrier", xRGB: 111225.31627701808, xJAB: 6034.5576585076, yRGB: [ 161.0414644905161, 171.4609616232907, 193.6669607410675 ], yJAB: [ 70.6155524606924, -2.0869556826343096, -9.318425174277223 ] },
+  { name: "snom", xRGB: 116036.01715265866, xJAB: 6492.070851200449, yRGB: [ 178.21783876500857, 186.87993138936534, 191.3310463121784 ], yJAB: [ 76.10130995802916, -3.684149155308566, -3.825202195839734 ] },
+  { name: "electivire", xRGB: 78843.46684894053, xJAB: 5405.661926180796, yRGB: [ 167.51332877648667, 156.15675552517658, 103.41763499658236 ], yJAB: [ 65.04198298898194, -1.3762497243743579, 12.328396065554266 ] },
+  { name: "tyranitar", xRGB: 85140.97134459956, xJAB: 5891.755106294462, yRGB: [ 166.27773695811902, 180.8087190791085, 137.31569924075436 ], yJAB: [ 73.08726132499184, -6.635426100210869, 9.985635931514278 ] },
+  { name: "golisopod", xRGB: 89458.7394349191, xJAB: 5226.108024437962, yRGB: [ 157.8481043226274, 165.3574015938179, 162.0222168558319 ], yJAB: [ 68.2806691017668, -3.821997682818669, -0.1719424299050809 ] },
+  { name: "jellicent", xRGB: 136462.0661498708, xJAB: 7587.583033737496, yRGB: [ 180.23514211886305, 213.25555555555556, 232.10051679586564 ], yJAB: [ 84.80161157928725, -8.041497856731775, -9.89142499843661 ] },
+  { name: "lucario", xRGB: 57925.663057600694, xJAB: 3608.770678109554, yRGB: [ 113.47812906019922, 129.30749242096147, 133.51147682979644 ], yJAB: [ 54.38487251588823, -4.545243562052933, -3.7885833597783525 ] },
+  { name: "floette-eternal", xRGB: 70287.10089224434, xJAB: 4098.79191613682, yRGB: [ 135.75497597803707, 120.03843514070007, 129.01098146877146 ], yJAB: [ 54.195062772103874, 3.0465009591115217, -1.161524589230838 ] },
+  { name: "ninjask", xRGB: 94495.72621240024, xJAB: 5517.370343650542, yRGB: [ 170.44874155923878, 161.59914057704114, 150.77716390423572 ], yJAB: [ 68.1558117923106, 0.28285775237572797, 2.491685145611702 ] },
+  { name: "dracovish", xRGB: 59351.66193280221, xJAB: 3968.1129478457146, yRGB: [ 112.28576376861794, 112.83477658468999, 124.85244198129546 ], yJAB: [ 53.73584405389396, 0.7346405837920106, -1.9297055233805533 ] },
+  { name: "chingling", xRGB: 97861.15990730011, xJAB: 7136.7709883319385, yRGB: [ 208.19582850521437, 182.70567786790266, 95.40092699884126 ], yJAB: [ 77.30413237382328, 0.5613923282682655, 17.90430833449714 ] },
+  { name: "nidorino", xRGB: 92280.04853273138, xJAB: 5033.27028687449, yRGB: [ 173.07957110609482, 143.7229119638826, 180.70654627539503 ], yJAB: [ 66.50915460594429, 9.6759865136624, -8.840524789028729 ] },
+  { name: "popplio", xRGB: 87435.53234115627, xJAB: 4976.275851427372, yRGB: [ 128.582140812822, 154.84716657126503, 196.1064682312536 ], yJAB: [ 64.79931440789925, -5.439738205939999, -15.878753042347583 ] },
+  { name: "claydol", xRGB: 61137.68144766873, xJAB: 3632.1772203122027, yRGB: [ 135.02445386371048, 115.81838930551027, 111.73328985979785 ], yJAB: [ 51.939719862568744, 3.018869635081097, 2.469586760857671 ] },
+  { name: "venipede", xRGB: 65542.41798606713, xJAB: 4156.564137273583, yRGB: [ 182.57504749841672, 95.13109563014567, 114.61811272957569 ], yJAB: [ 56.175895539726696, 19.2041595451175, 3.5660254949893235 ] },
+  { name: "pheromosa", xRGB: 121840.98574338085, xJAB: 6659.004790680305, yRGB: [ 192.82222868780914, 191.33954029677045, 189.1015420424789 ], yJAB: [ 78.18632384311238, -1.1558280124198932, 0.022558190067184285 ] },
+  { name: "carbink", xRGB: 80571.88636363637, xJAB: 4544.25474343486, yRGB: [ 143.44628099173553, 147.28650137741047, 165.65633608815426 ], yJAB: [ 62.482897565504686, -0.6593345980478832, -8.671283186162112 ] },
+  { name: "copperajah", xRGB: 29833.614043950492, xJAB: 2354.992366067214, yRGB: [ 74.20383935337206, 96.69461985349835, 76.99141197272039 ], yJAB: [ 41.2158100963375, -7.845155827865012, 3.92857725942256 ] },
+  { name: "nidorina", xRGB: 115369.76333333334, xJAB: 6586.791630794473, yRGB: [ 172.04, 193.086, 202.45866666666666 ], yJAB: [ 77.94075696175298, -6.8491838070210145, -6.129250840173959 ] },
+  { name: "magmortar", xRGB: 71006.93723849373, xJAB: 5291.150541711455, yRGB: [ 200.83117154811717, 126.93451882845189, 65.92301255230126 ], yJAB: [ 64.40303998629055, 12.026969670857751, 18.045417929699806 ] },
+  { name: "victini", xRGB: 88809.016689847, xJAB: 5860.017007879406, yRGB: [ 194.3059805285118, 160.9089012517385, 120.02851182197496 ], yJAB: [ 71.49984159590018, 4.263289399793757, 11.960322438455721 ] },
+  { name: "dewgong", xRGB: 152404.65734720416, xJAB: 8119.955941578418, yRGB: [ 220.41417425227567, 220.49154746423926, 224.78023407022107 ], yJAB: [ 88.97785748197144, -1.3344887715813962, -2.8759454697696794 ] },
+  { name: "darmanitan", xRGB: 61141.427085852476, xJAB: 4298.194019435643, yRGB: [ 185.51584038694074, 102.95792019347037, 80.08706166868198 ], yJAB: [ 57.25193698590301, 17.336909344472307, 12.77828659622645 ] },
+  { name: "meowth", xRGB: 109629.26, xJAB: 6392.637337612366, yRGB: [ 192.70066666666668, 183.94, 165.206 ], yJAB: [ 76.31241693350411, 0.04414424468340883, 5.424457955601997 ] },
+  { name: "kadabra", xRGB: 80731.86215139442, xJAB: 6113.254348966932, yRGB: [ 185.6792828685259, 171.36812749003985, 83.78764940239044 ], yJAB: [ 71.4460354885658, -1.7124126526118664, 17.982673667278437 ] },
+  { name: "spritzee", xRGB: 107222.83968113374, xJAB: 5955.57264361251, yRGB: [ 200.58193091231178, 161.9140832595217, 174.30646589902568 ], yJAB: [ 72.94933576726834, 9.188202468178815, -0.8435408706291992 ] },
+  { name: "yamask-galar", xRGB: 26611.43401360544, xJAB: 1660.9131754520165, yRGB: [ 83.5578231292517, 71.35510204081632, 78.65986394557824 ], yJAB: [ 34.1861402449397, 2.21737518719248, -1.1277910879386377 ] },
+  { name: "latios", xRGB: 70085.01571125265, xJAB: 4221.634668183719, yRGB: [ 104.70700636942675, 141.5583864118896, 172.6348195329087 ], yJAB: [ 59.19398868985252, -6.383065909404806, -13.073836414316146 ] },
+  { name: "oricorio-pom-pom", xRGB: 116710.264158918, xJAB: 8661.285840333689, yRGB: [ 224.25866441251057, 223.29543533389688, 103.57311918850381 ], yJAB: [ 87.8168800918133, -6.409265691717407, 23.781170610401034 ] },
+  { name: "moltres-galar", xRGB: 41077.84262796027, xJAB: 2756.9509372636553, yRGB: [ 125.66348357524828, 73.0546218487395, 91.3292589763178 ], yJAB: [ 43.272179555158836, 9.384213898486207, -0.4000671331136819 ] },
+  { name: "larvesta", xRGB: 120947.90838206628, xJAB: 6685.448967516896, yRGB: [ 201.76315789473685, 181.4327485380117, 175.9317738791423 ], yJAB: [ 76.84552778907232, 3.4660354732983754, 2.674032883083131 ] },
+  { name: "shellos-west", xRGB: 102041.92900763359, xJAB: 6031.756749740806, yRGB: [ 204.55801526717556, 162.48625954198474, 164.64045801526717 ], yJAB: [ 74.23295274465613, 8.721253722483453, 2.2886984342231673 ] },
+  { name: "parasect", xRGB: 104294.45517540061, xJAB: 6560.48171337355, yRGB: [ 220.14595062797747, 167.8354265915981, 128.59333044608056 ], yJAB: [ 75.90863464056962, 9.09085992136996, 10.60993084661472 ] },
+  { name: "vanillish", xRGB: 126154.90135853515, xJAB: 6907.750400542803, yRGB: [ 178.63555818074425, 196.78027170702893, 216.2203189604253 ], yJAB: [ 79.82910219944817, -4.3578604021561, -8.834624294329434 ] },
+  { name: "vivillon-river", xRGB: 58301.051798024964, xJAB: 4286.795283638597, yRGB: [ 135.39817402645798, 139.03763741382522, 102.02534004099124 ], yJAB: [ 59.478344991282086, -3.3002149394469655, 8.132201742045732 ] },
+  { name: "aurorus", xRGB: 118229.12195913072, xJAB: 6788.259563178765, yRGB: [ 174.7531625040545, 195.00648718780408, 206.38209536166073 ], yJAB: [ 79.0862114993929, -5.677862228294191, -7.151724097751426 ] },
+  { name: "geodude-alola", xRGB: 73415.94743816255, xJAB: 4320.187997682685, yRGB: [ 135.2089222614841, 146.71687279151942, 162.06934628975264 ], yJAB: [ 62.00363942131315, -3.8653626371009606, -8.860065002304468 ] },
+  { name: "combee", xRGB: 98449.07529239765, xJAB: 6702.075795006143, yRGB: [ 207.30555555555554, 178.2017543859649, 104.02558479532163 ], yJAB: [ 76.34051348306025, 1.4629925611242351, 16.129132704852335 ] },
+  { name: "happiny", xRGB: 113566.18886861314, xJAB: 6319.720662644399, yRGB: [ 206.4507299270073, 176.59215328467153, 179.8339416058394 ], yJAB: [ 76.9575989162027, 6.913922652260656, 1.1517273393641987 ] },
+  { name: "charmander", xRGB: 99689.07251631617, xJAB: 6483.286644964096, yRGB: [ 213.62799129804205, 176.38578680203045, 127.74039158810733 ], yJAB: [ 76.98865531196392, 4.698276094564386, 13.715615723409133 ] },
+  { name: "flabebe-yellow", xRGB: 96984.14649243467, xJAB: 6345.015250031376, yRGB: [ 182.08940852819808, 185.55020632737276, 139.33218707015132 ], yJAB: [ 75.6859609981639, -4.439219531170162, 10.57934944925127 ] },
+  { name: "snivy", xRGB: 80969.58333333333, xJAB: 6011.1454981103325, yRGB: [ 150.93055555555554, 181.08333333333334, 116.93055555555556 ], yJAB: [ 72.07593280131003, -9.228652028751371, 13.940102500528262 ] },
+  { name: "hariyama", xRGB: 83606.47354645729, xJAB: 5482.86711914427, yRGB: [ 184.56234810244905, 151.81136661058142, 121.2024677509815 ], yJAB: [ 67.39466836020158, 4.695504732160093, 7.680073758237851 ] },
+  { name: "weezing-galar", xRGB: 64501.57246579168, xJAB: 4174.00467706482, yRGB: [ 133.45573862049707, 141.2046914269757, 126.89639765428652 ], yJAB: [ 59.20689954338958, -3.340050065951309, 1.3127827692325917 ] },
+  { name: "diggersby", xRGB: 64878.26071103008, xJAB: 4257.369080813416, yRGB: [ 157.82338195077483, 138.65382862351868, 109.26025524156792 ], yJAB: [ 60.96665111066799, 2.3254469646244433, 9.210495695611728 ] },
+  { name: "cyndaquil", xRGB: 94091.39393939394, xJAB: 6013.027858261595, yRGB: [ 165.78512396694214, 176.32231404958677, 144.50780532598714 ], yJAB: [ 71.69947437882907, -4.762172742261409, 6.235434979258084 ] },
+  { name: "forretress", xRGB: 92813.18742293464, xJAB: 5460.703024988201, yRGB: [ 188.97564734895192, 141.87453760789148, 143.2632552404439 ], yJAB: [ 67.48006784420333, 10.49497375654222, 4.072847526921696 ] },
+  { name: "vivillon-ocean", xRGB: 80702.4418344519, xJAB: 5434.532021228749, yRGB: [ 162.05145413870247, 153.66554809843402, 126.44780014914244 ], yJAB: [ 66.51202971475573, -0.5948165967332119, 5.617045841664234 ] },
+  { name: "houndour", xRGB: 47145.83631165118, xJAB: 2903.6107330340133, yRGB: [ 116.13223731236597, 106.84846318799143, 97.88062902072909 ], yJAB: [ 47.17733322869161, 0.6851172193270773, 2.9915361958902578 ] },
+  { name: "lurantis", xRGB: 98301.90819672131, xJAB: 5674.073872323354, yRGB: [ 206.31598360655738, 149.84959016393444, 159.6655737704918 ], yJAB: [ 71.29571449357933, 13.066271400844157, 2.06311019556126 ] },
+  { name: "mismagius", xRGB: 54702.9032369146, xJAB: 3149.72898150569, yRGB: [ 139.30165289256198, 99.04373278236915, 143.58677685950414 ], yJAB: [ 50.59615846763031, 12.517576036877477, -11.048594640295862 ] },
+  { name: "passimian", xRGB: 95795.8300942285, xJAB: 5777.774356128153, yRGB: [ 167.6198468786808, 174.2005300353357, 152.60159010600708 ], yJAB: [ 70.88328757319228, -3.8343902391536098, 4.8944798937308125 ] },
+  { name: "corviknight", xRGB: 44374.68220140515, xJAB: 2473.488646198601, yRGB: [ 84.41241217798594, 79.61943793911007, 107.907962529274 ], yJAB: [ 35.5495393746915, 1.9592122635925486, -12.096567169010672 ] },
+  { name: "tranquill", xRGB: 90244.37072243346, xJAB: 5028.994138375168, yRGB: [ 157.64591254752852, 151.69106463878327, 153.02423954372622 ], yJAB: [ 63.81761872534686, 0.6600495151159856, -0.868867692840807 ] },
+  { name: "marshtomp", xRGB: 99968.38886198547, xJAB: 6150.705914254524, yRGB: [ 164.97820823244552, 183.45181598062953, 174.28910411622277 ], yJAB: [ 74.86721114029977, -6.712252503930819, -0.45864474034102043 ] },
+  { name: "steelix", xRGB: 105236.72527472528, xJAB: 5865.307126262483, yRGB: [ 168.9945054945055, 176.8186813186813, 196.0 ], yJAB: [ 73.61355475038712, -2.3880992027956216, -9.524093099771829 ] },
+  { name: "vivillon-pokeball", xRGB: 61003.39365079365, xJAB: 3730.0888391749595, yRGB: [ 146.4126984126984, 110.12698412698413, 107.76190476190476 ], yJAB: [ 52.758806347916924, 7.72302493044081, 4.015076027469234 ] },
+  { name: "vanilluxe", xRGB: 131142.4238126649, xJAB: 7130.734041920237, yRGB: [ 186.3552110817942, 201.028364116095, 219.00395778364117 ], yJAB: [ 81.54787393145658, -3.669672149930955, -8.315498354691806 ] },
+  { name: "dwebble", xRGB: 46913.526417525776, xJAB: 3303.3580943198554, yRGB: [ 144.12757731958763, 107.24677835051547, 78.73453608247422 ], yJAB: [ 51.241160532774586, 6.221631771006228, 9.773077395584572 ] },
+  { name: "muk", xRGB: 67070.71044219499, xJAB: 3883.542327924002, yRGB: [ 146.11667554608417, 131.30394246137453, 150.0293020777837 ], yJAB: [ 59.03536182560237, 5.398093929317204, -6.407842131367809 ] },
+  { name: "drowzee", xRGB: 78135.23455440131, xJAB: 6088.317283407499, yRGB: [ 178.52323674138873, 169.89775833788957, 72.2941498086386 ], yJAB: [ 69.46634463212727, -3.621671921984983, 19.06687454977907 ] },
+  { name: "bergmite", xRGB: 132739.17286501377, xJAB: 7512.212509225115, yRGB: [ 176.54476584022038, 213.05027548209367, 225.64807162534436 ], yJAB: [ 84.10617905081241, -9.316359064233339, -8.100848839721941 ] },
+  { name: "jigglypuff", xRGB: 130590.76306370794, xJAB: 7069.921570134076, yRGB: [ 208.87974230493916, 192.5733715103794, 199.57050823192554 ], yJAB: [ 81.09442085806822, 4.1619428386390815, -1.4220424140504428 ] },
+  { name: "eelektrik", xRGB: 69117.90168350168, xJAB: 4481.518824758364, yRGB: [ 147.4936026936027, 137.27070707070706, 126.23501683501684 ], yJAB: [ 60.07368663274069, 0.5305211464911525, 1.1661700399636197 ] },
+  { name: "cryogonal", xRGB: 81331.21503720811, xJAB: 4727.645675306287, yRGB: [ 121.75263022838081, 151.8178085706954, 179.9679240441365 ], yJAB: [ 62.415343807673544, -7.0802415866064745, -13.0436234411263 ] },
+  { name: "lileep", xRGB: 87080.14756174794, xJAB: 5032.509800279685, yRGB: [ 172.3793540215326, 149.68397720075998, 157.17732742241924 ], yJAB: [ 66.31773493673586, 5.222047801137102, -1.7470287044719566 ] },
+  { name: "deoxys-attack", xRGB: 73873.11057268722, xJAB: 4976.420972604403, yRGB: [ 171.32555066079294, 144.12555066079295, 118.54317180616741 ], yJAB: [ 65.9070931837345, 4.0968340573888264, 7.456528114312855 ] },
+  { name: "espeon", xRGB: 109047.38836104513, xJAB: 5925.57485125193, yRGB: [ 187.7268408551069, 169.52553444180523, 190.17992874109262 ], yJAB: [ 73.60553878754035, 5.548029506555471, -6.019945920582035 ] },
+  { name: "zorua", xRGB: 35820.64417910448, xJAB: 2298.175968047568, yRGB: [ 102.24358208955223, 83.42686567164179, 104.87223880597016 ], yJAB: [ 41.32789623745136, 5.312277827200277, -7.487877286033686 ] },
+  { name: "smoochum", xRGB: 98416.02341772152, xJAB: 6289.3383991649325, yRGB: [ 201.90189873417722, 171.12974683544303, 140.52974683544304 ], yJAB: [ 74.5926431125712, 4.90125775289436, 9.238902766497656 ] },
+  { name: "wooper", xRGB: 103971.69561324977, xJAB: 6002.778737534081, yRGB: [ 157.0787824529991, 180.86660698299016, 200.66696508504924 ], yJAB: [ 74.13170872531141, -6.136250455465346, -9.876350759666142 ] },
+  { name: "ferroseed", xRGB: 74296.69380925823, xJAB: 4710.413075723752, yRGB: [ 133.2883435582822, 151.81483547127718, 131.27830451756833 ], yJAB: [ 62.04128586440948, -5.680040682305635, 4.144923139345088 ] },
+  { name: "dragonair", xRGB: 122772.93819855359, xJAB: 6759.8621379417455, yRGB: [ 173.35305719921104, 193.79552925706773, 214.930966469428 ], yJAB: [ 78.68749358796678, -4.8637533546840315, -9.192190521201345 ] },
+  { name: "metagross", xRGB: 62119.85258790129, xJAB: 3971.341448466309, yRGB: [ 100.15483730072069, 141.91788600131034, 157.46625900851714 ], yJAB: [ 58.07318100349242, -10.200536229864584, -9.655038124179525 ] },
+  { name: "leafeon", xRGB: 95893.70408163265, xJAB: 6395.155078132806, yRGB: [ 177.26530612244898, 187.73469387755102, 143.8469387755102 ], yJAB: [ 76.34974014125191, -5.295922085924277, 10.724307126921824 ] },
+  { name: "grookey", xRGB: 79773.6513761468, xJAB: 5787.5854120026015, yRGB: [ 167.52339449541284, 165.7880733944954, 96.00963302752294 ], yJAB: [ 68.89083695727481, -3.4209161862510853, 15.995997664471764 ] },
+  { name: "skuntank", xRGB: 68174.69368830392, xJAB: 3974.6164883679453, yRGB: [ 141.76159138498355, 123.54113072090936, 135.59317977864194 ], yJAB: [ 54.82572085219578, 5.649755825875464, -4.082918280904208 ] },
+  { name: "jangmo-o", xRGB: 94589.62385814078, xJAB: 5981.0963097795075, yRGB: [ 180.91080064481463, 175.9065018807093, 139.93820526598603 ], yJAB: [ 72.62882448697961, -1.9498823179550957, 8.212441874463378 ] },
+  { name: "sawsbuck-summer", xRGB: 32334.976699648898, xJAB: 2589.904780055685, yRGB: [ 92.77018831790616, 99.0536227258219, 66.01404404723907 ], yJAB: [ 43.68800771743808, -2.1635388287482393, 10.412850307468217 ] },
+  { name: "dustox", xRGB: 66920.1091954023, xJAB: 4988.682310933119, yRGB: [ 154.20498084291188, 153.72298850574714, 105.54980842911877 ], yJAB: [ 65.33300036262904, -2.766749973906182, 11.751671727809923 ] },
+  { name: "sinistea", xRGB: 79948.84538653366, xJAB: 5088.531825902732, yRGB: [ 137.0847880299252, 150.01870324189525, 149.79177057356608 ], yJAB: [ 63.448321754815105, -3.2766360713287805, -1.8237012564172388 ] },
+  { name: "snover", xRGB: 102440.07602591792, xJAB: 5926.080630967184, yRGB: [ 171.10151187904967, 179.4950323974082, 171.0060475161987 ], yJAB: [ 73.50176905835956, -3.8222456172779116, 1.3146372506216313 ] },
+  { name: "durant", xRGB: 68394.04009623095, xJAB: 3991.6885248908493, yRGB: [ 137.59502806736168, 134.14595028067362, 134.54129911788291 ], yJAB: [ 57.445295419487046, 0.005689858978386326, -0.6405834215614996 ] },
+  { name: "inteleon", xRGB: 74484.09971625455, xJAB: 4454.072486064437, yRGB: [ 122.20753952168626, 142.45156059991893, 141.16578840697204 ], yJAB: [ 58.0706098540864, -6.331786996100149, -3.1471934640909605 ] },
+  { name: "sylveon", xRGB: 123179.8105459636, xJAB: 6776.083734222665, yRGB: [ 208.01399906672887, 185.46896873541763, 195.924405039664 ], yJAB: [ 79.79431109848879, 4.950651874823944, -1.827055961445672 ] },
+  { name: "necrozma-dusk-mane", xRGB: 42949.77673399092, xJAB: 2749.460652836571, yRGB: [ 99.89071551589166, 102.37388445279474, 91.12447158290277 ], yJAB: [ 43.864085032044514, -2.453004394923878, 1.088438180434942 ] },
+  { name: "crustle", xRGB: 41543.92948595452, xJAB: 2973.978354438346, yRGB: [ 132.9560481559335, 109.67972482323715, 82.67724058857252 ], yJAB: [ 50.46266722213915, 3.7308075402240313, 9.653041592891316 ] },
+  { name: "slakoth", xRGB: 113326.78873239437, xJAB: 6524.841538476579, yRGB: [ 199.90140845070422, 188.1267605633803, 177.74647887323943 ], yJAB: [ 78.76802241834783, 1.479976219950098, 3.687915839549366 ] },
+  { name: "kingdra", xRGB: 88723.3601246106, xJAB: 5523.122618847714, yRGB: [ 126.19190031152648, 171.5993769470405, 185.50654205607478 ], yJAB: [ 69.75325337748812, -9.795322760367787, -9.4240949837156 ] },
+  { name: "arcanine", xRGB: 110542.04416403786, xJAB: 6809.852511806409, yRGB: [ 213.9211356466877, 183.89934040722684, 144.5121881273301 ], yJAB: [ 78.44447461338197, 3.588040193414302, 11.585345919449974 ] },
+  { name: "dhelmise", xRGB: 51128.28842177808, xJAB: 3825.629597999432, yRGB: [ 94.66988283942109, 134.67057201929703, 112.86526533425224 ], yJAB: [ 55.85307226577196, -8.225981486793225, 2.0891708634436554 ] },
+  { name: "bagon", xRGB: 88337.5138778747, xJAB: 5261.846016093372, yRGB: [ 143.98096748612213, 167.72164948453607, 178.87073750991277 ], yJAB: [ 68.9826278002036, -6.637953196003102, -7.142376665020943 ] },
+  { name: "drifloon", xRGB: 88006.31773667029, xJAB: 5162.071522390404, yRGB: [ 172.4602829162133, 153.18498367791076, 158.01305767138194 ], yJAB: [ 67.30911303390128, 4.537465197150023, -2.4721369220137808 ] },
+  { name: "burmy-plant", xRGB: 32928.78988764045, xJAB: 2983.7410749874534, yRGB: [ 85.63033707865169, 118.15955056179776, 70.13932584269664 ], yJAB: [ 47.93721585347408, -10.405007053840507, 10.80217167937732 ] },
+  { name: "clobbopus", xRGB: 89636.25236294896, xJAB: 5320.062816715997, yRGB: [ 178.45841209829868, 139.07277882797732, 131.96124763705103 ], yJAB: [ 63.696703637223074, 7.380050986954931, 3.0792296614220085 ] },
+  { name: "cherubi", xRGB: 61946.20176297747, xJAB: 4565.114701158993, yRGB: [ 162.27424094025466, 111.25759059745347, 99.10284035259549 ], yJAB: [ 59.22652594605409, 10.722120614781826, 9.285589883913385 ] },
+  { name: "binacle", xRGB: 87705.15416285452, xJAB: 5381.60504350836, yRGB: [ 164.78179322964317, 163.31976212259835, 145.69762122598354 ], yJAB: [ 68.78263834215329, -2.2141419553319603, 3.2269318996471426 ] },
+  { name: "pyukumuku", xRGB: 37753.036758563074, xJAB: 2385.9235830534585, yRGB: [ 113.10693400167085, 86.48705096073517, 98.42355889724311 ], yJAB: [ 43.04136888800462, 5.114965219899291, -1.0767863329958336 ] },
+  { name: "florges-yellow", xRGB: 82797.58085035153, xJAB: 5647.021840911141, yRGB: [ 142.96618680950786, 176.45965852025444, 142.09541345831937 ], yJAB: [ 70.59744302592962, -9.432166192270648, 6.424150187411498 ] },
+  { name: "rotom-mow", xRGB: 72280.99469652328, xJAB: 5484.483181294161, yRGB: [ 171.19210371243372, 154.99351797289333, 91.29110194460813 ], yJAB: [ 67.17744056307248, 0.20175093073982797, 15.444043762360764 ] },
+  { name: "gligar", xRGB: 90374.59132720105, xJAB: 5014.766529341546, yRGB: [ 183.79807271134473, 135.58300481822164, 174.69864213753831 ], yJAB: [ 65.90784494454431, 13.32934451668981, -6.992243225364998 ] },
+  { name: "togedemaru", xRGB: 123288.41896361632, xJAB: 6992.077398433015, yRGB: [ 200.91345093715546, 199.21775082690186, 189.4983461962514 ], yJAB: [ 81.58379526827834, -1.5500756392958515, 1.479134823777425 ] },
+  { name: "shedinja", xRGB: 88575.83465085638, xJAB: 5718.648696971187, yRGB: [ 188.231884057971, 169.79841897233203, 135.13768115942028 ], yJAB: [ 72.60091475518564, 1.4381757097356382, 9.451870775942396 ] },
+  { name: "porygon", xRGB: 86442.29723502304, xJAB: 5726.970778847332, yRGB: [ 126.6774193548387, 165.573732718894, 173.48617511520737 ], yJAB: [ 69.98288049095706, -6.498952574318643, -3.882135010680436 ] },
+  { name: "fraxure", xRGB: 48372.61726272352, xJAB: 3445.8132895077265, yRGB: [ 117.76650618982119, 124.91609353507566, 107.07427785419533 ], yJAB: [ 53.68041206020174, -3.250706775910792, 3.907100207079025 ] },
+  { name: "zeraora", xRGB: 85420.90165546631, xJAB: 5916.45366764948, yRGB: [ 174.1150631044091, 172.84281265366334, 109.66153089657433 ], yJAB: [ 70.74384427347488, -4.337971964577626, 13.392963964500108 ] },
+  { name: "watchog", xRGB: 76281.78423700391, xJAB: 5150.4612917752, yRGB: [ 181.57406372275014, 136.16154276131917, 91.86081609837898 ], yJAB: [ 63.28904639968441, 8.446257980031445, 12.647836315497583 ] },
+  { name: "furret", xRGB: 102448.59868421052, xJAB: 6184.485178536223, yRGB: [ 202.09169407894737, 174.67639802631578, 146.75082236842104 ], yJAB: [ 74.98103979064918, 4.298223724934985, 9.562065946416277 ] },
+  { name: "gurdurr", xRGB: 73125.7773828756, xJAB: 4461.9613350931395, yRGB: [ 165.9903069466882, 125.95928917609046, 128.65621970920841 ], yJAB: [ 59.560502192730205, 10.074224077881768, 3.526066074571965 ] },
+  { name: "golem", xRGB: 59885.88771295818, xJAB: 3741.7714456039307, yRGB: [ 141.75735673722252, 134.56504904491482, 129.5844088797109 ], yJAB: [ 58.90288214503855, 0.760505390831787, 1.8862976607233124 ] },
+  { name: "morpeko", xRGB: 62548.420187793425, xJAB: 4420.1265154521125, yRGB: [ 154.89201877934272, 133.8462441314554, 92.60915492957747 ], yJAB: [ 58.70871936157552, 1.774575620688164, 10.692013633881464 ] },
+  { name: "conkeldurr", xRGB: 73131.39377431906, xJAB: 4516.191830043362, yRGB: [ 161.16264591439688, 146.903813229572, 143.63081712062257 ], yJAB: [ 64.7782348455142, 2.451329218422239, 0.9710110037379301 ] },
+  { name: "rayquaza", xRGB: 55041.803347280336, xJAB: 4163.959196189854, yRGB: [ 109.06276150627615, 145.47280334728035, 115.28451882845188 ], yJAB: [ 58.75825789117054, -10.371415775637407, 6.559613310885078 ] },
+  { name: "cottonee", xRGB: 111743.63254593176, xJAB: 7305.835035778562, yRGB: [ 175.08661417322836, 210.58880139982503, 168.49781277340333 ], yJAB: [ 82.19738874844776, -10.086274733796316, 8.589799416249921 ] },
+  { name: "basculin-bluestriped", xRGB: 78341.62940824866, xJAB: 5395.782293140145, yRGB: [ 132.39270771069934, 174.10520023909146, 142.7573221757322 ], yJAB: [ 69.04914796566455, -11.068886457454882, 5.856130295930936 ] },
+  { name: "zygarde-complete", xRGB: 27629.038839006054, xJAB: 1874.397166040727, yRGB: [ 83.77469200250574, 78.63833785759032, 70.91522238463145 ], yJAB: [ 35.49593900400519, 0.5197836995753742, 2.4772512084748866 ] },
+  { name: "cufant", xRGB: 55025.66156282999, xJAB: 4057.622011623906, yRGB: [ 151.64625131995777, 106.96990496304119, 79.53009503695881 ], yJAB: [ 54.62875251850669, 8.212552836764717, 10.342529849325738 ] },
+  { name: "swalot", xRGB: 86802.91261556814, xJAB: 4754.59142645064, yRGB: [ 160.01699970175963, 143.22994333432746, 185.1544885177453 ], yJAB: [ 64.74853830299855, 5.689529367359108, -13.260192438461047 ] },
+  { name: "weepinbell", xRGB: 101375.63511326861, xJAB: 7090.645707268874, yRGB: [ 185.9822006472492, 199.04854368932038, 133.89563106796118 ], yJAB: [ 79.21098516104966, -6.5235436431012905, 13.374366771397797 ] },
+  { name: "deoxys-speed", xRGB: 58953.804368471036, xJAB: 3906.3716018771825, yRGB: [ 133.96581196581195, 131.2454890788224, 120.86467236467236 ], yJAB: [ 57.92833857091926, -0.21287806900444503, 2.554647956005389 ] },
+  { name: "slaking", xRGB: 95570.375, xJAB: 5548.24264242962, yRGB: [ 182.63970588235293, 167.44117647058823, 157.59558823529412 ], yJAB: [ 71.43296489825099, 2.502012159080921, 3.8821622723951603 ] },
+  { name: "whismur", xRGB: 124856.16274377942, xJAB: 7275.631405095116, yRGB: [ 218.63349024882314, 196.93476798924007, 176.69939475453933 ], yJAB: [ 82.74776216781281, 3.737099117992779, 4.821897517795741 ] },
+  { name: "klinklang", xRGB: 107263.20425398811, xJAB: 6024.875900611079, yRGB: [ 170.07976227713482, 178.80043791054112, 180.571160462934 ], yJAB: [ 73.35283367775457, -2.7120657426183734, -2.1867426633549916 ] },
+  { name: "amoonguss", xRGB: 75041.88271604938, xJAB: 4610.8100777877, yRGB: [ 163.12404467960025, 136.38977072310405, 131.02792475014698 ], yJAB: [ 61.81678393678615, 4.805892772785866, 4.8468740138765405 ] },
+  { name: "inkay", xRGB: 111115.33928571429, xJAB: 6196.4822723759235, yRGB: [ 181.42532467532467, 179.70048701298703, 192.3125 ], yJAB: [ 75.5519083020675, 0.0453220612519606, -4.733785659799265 ] },
+  { name: "zapdos", xRGB: 94654.56226094348, xJAB: 6472.529119532379, yRGB: [ 197.23756906077347, 180.77220569485763, 118.21249468763281 ], yJAB: [ 75.44264450302681, -0.7388076333903887, 14.820715351476757 ] },
+  { name: "archen", xRGB: 75116.62645647704, xJAB: 4943.279667002009, yRGB: [ 177.84167237834134, 135.1261137765593, 120.7128169979438 ], yJAB: [ 64.61704173689928, 8.56248736449782, 6.7309387063201855 ] },
+  { name: "pignite", xRGB: 52323.04347826087, xJAB: 3785.644978114816, yRGB: [ 156.43478260869566, 108.40993788819875, 68.34782608695652 ], yJAB: [ 52.84114475854236, 8.530276533477533, 12.207534287676657 ] },
+  { name: "turtonator", xRGB: 59859.80587595212, xJAB: 4283.265882524614, yRGB: [ 169.32295973884658, 117.44787812840043, 83.53993471164308 ], yJAB: [ 57.536371731919644, 10.14597502697152, 11.820672132329063 ] },
+  { name: "emboar", xRGB: 53022.775371627824, xJAB: 3818.6942721653477, yRGB: [ 143.6061662690402, 109.70912093962195, 66.99541200220224 ], yJAB: [ 50.97021278211503, 4.718552896176539, 11.11331503626102 ] },
+  { name: "greninja", xRGB: 78156.33704115685, xJAB: 4629.2486412222115, yRGB: [ 123.33667037449017, 142.38524286243975, 167.18242491657398 ], yJAB: [ 60.435368643789744, -3.2377549719757894, -9.828815088303053 ] },
+  { name: "weezing", xRGB: 84298.23686635945, xJAB: 4928.706234484847, yRGB: [ 168.85622119815667, 152.87465437788018, 161.1004608294931 ], yJAB: [ 67.28408403133211, 4.354794670519308, -2.909602037867025 ] },
+  { name: "silicobra", xRGB: 84412.65638075313, xJAB: 5224.643739471619, yRGB: [ 165.68096234309624, 163.2112970711297, 134.41056485355648 ], yJAB: [ 67.96385138541574, -1.9594792131220002, 8.070570910986024 ] },
+  { name: "drakloak", xRGB: 50347.991407089154, xJAB: 3413.0062921458684, yRGB: [ 104.19495166487647, 120.25402792696026, 121.32760472610097 ], yJAB: [ 51.25849236847396, -5.797593457082704, -3.9407446548853353 ] },
+  { name: "hatenna", xRGB: 111273.23961661341, xJAB: 6095.034150182383, yRGB: [ 170.92492012779553, 172.1996805111821, 197.56549520766774 ], yJAB: [ 72.40417540036132, -0.2659199335472454, -9.591258792037964 ] },
+  { name: "sawsbuck-spring", xRGB: 54884.954260953295, xJAB: 3794.1495250891967, yRGB: [ 148.260953298026, 117.45305729417429, 82.06162734713529 ], yJAB: [ 53.58800454282593, 5.768767864788741, 12.162451731573256 ] },
+  { name: "poochyena", xRGB: 66521.77326801959, xJAB: 3937.8421552717805, yRGB: [ 136.71378586424072, 135.31000699790064, 134.81035689293213 ], yJAB: [ 57.84696825533373, -0.874831759930556, -0.5046837560515514 ] },
+  { name: "diancie", xRGB: 92765.90116550117, xJAB: 5117.538702524178, yRGB: [ 173.33659673659673, 148.7123543123543, 170.11888111888112 ], yJAB: [ 66.51225673082477, 6.257094891004436, -5.821004642111702 ] },
+  { name: "tentacool", xRGB: 91626.24840085288, xJAB: 5472.916050437604, yRGB: [ 154.79424307036248, 163.74733475479744, 179.9861407249467 ], yJAB: [ 69.92313581430707, -2.466182686570599, -6.06953218108066 ] },
+  { name: "swirlix", xRGB: 151943.6331849968, xJAB: 8119.957772273116, yRGB: [ 225.5174825174825, 218.40623013350287, 221.86458995549904 ], yJAB: [ 89.04903332076209, 0.6161580824845213, -1.4858886406088498 ] },
+  { name: "appletun", xRGB: 75516.6129471891, xJAB: 5395.4180079488715, yRGB: [ 158.0725724020443, 157.993867120954, 108.63100511073254 ], yJAB: [ 67.20790155580798, -3.4014872192168175, 13.125106446241494 ] },
+  { name: "magearna-original", xRGB: 73415.51691281563, xJAB: 4828.110729420976, yRGB: [ 182.4459266317294, 127.29680800381134, 112.50214387803716 ], yJAB: [ 62.90244707604647, 10.768275602528872, 8.727336017307874 ] },
+  { name: "mareanie", xRGB: 103941.72818086225, xJAB: 6084.986890561341, yRGB: [ 158.06098843322818, 183.5199789695058, 193.403785488959 ], yJAB: [ 74.30628080757745, -7.097773236311402, -6.470448613042056 ] },
+  { name: "araquanid", xRGB: 100081.61331704337, xJAB: 6037.120199518923, yRGB: [ 158.5442883323152, 182.0843005497862, 173.3787416004887 ], yJAB: [ 73.23513198296668, -8.158401140311305, -2.2077494306578473 ] },
+  { name: "burmy-trash", xRGB: 67783.02536997886, xJAB: 4142.939567658428, yRGB: [ 166.02854122621565, 127.42811839323467, 127.01479915433404 ], yJAB: [ 60.08196137051002, 8.364322835411418, 3.025164236407122 ] },
+  { name: "lycanroc", xRGB: 114843.06510626849, xJAB: 6383.725240281312, yRGB: [ 192.25746569814368, 184.697067527576, 180.48829701372074 ], yJAB: [ 76.63790943469802, 0.5817692553307182, 1.1182800982348344 ] },
+  { name: "roserade", xRGB: 92166.71828665568, xJAB: 5507.577362799415, yRGB: [ 156.37012630422845, 163.06370126304228, 166.87259747391542 ], yJAB: [ 68.78120116902981, -2.6656362217793466, -2.688836867907084 ] },
+  { name: "aerodactyl", xRGB: 98024.54632034632, xJAB: 5443.18153079702, yRGB: [ 175.62987012987014, 163.84761904761905, 181.54675324675324 ], yJAB: [ 70.75450299554682, 3.5715335507914796, -6.339304189920901 ] },
+  { name: "clefable", xRGB: 133793.1236294896, xJAB: 7357.112726880598, yRGB: [ 225.64045368620037, 198.38260869565218, 195.8181474480151 ], yJAB: [ 84.10820690354282, 5.825128139148609, 2.590038009461826 ] },
+  { name: "falinks", xRGB: 53959.88008752735, xJAB: 4049.1890197657417, yRGB: [ 154.71947483588622, 97.66739606126914, 51.094091903719914 ], yJAB: [ 50.57403122641392, 9.383731941609103, 14.782280822160223 ] },
+  { name: "morgrem", xRGB: 43906.61059907834, xJAB: 3059.6141989976227, yRGB: [ 127.56739631336406, 70.59907834101382, 99.78168202764977 ], yJAB: [ 43.515395813504696, 12.774231050512439, -2.6964460700389132 ] },
+  { name: "florges-red", xRGB: 69618.93007694882, xJAB: 4689.138935784235, yRGB: [ 139.94145199063232, 142.52927400468383, 136.9953161592506 ], yJAB: [ 63.28962005410242, -0.7802738403494027, 2.567624190232099 ] },
+  { name: "electabuzz", xRGB: 79101.17602548785, xJAB: 5627.478435577834, yRGB: [ 170.5551573078455, 160.85344484269214, 97.24731182795699 ], yJAB: [ 66.57259839838908, -2.2217061098039452, 14.296216199542743 ] },
+  { name: "guzzlord", xRGB: 34321.982289336316, xJAB: 2475.558133563037, yRGB: [ 82.82494407158836, 97.67300521998509, 87.1599552572707 ], yJAB: [ 41.30584731124571, -5.9676833330037695, -1.6810708881654888 ] },
+  { name: "gigalith", xRGB: 36042.5229819346, xJAB: 2528.3428891537997, yRGB: [ 118.80562542876744, 77.05008003658816, 85.17493711410931 ], yJAB: [ 41.69651481834148, 9.311850366272735, -1.3273934739081616 ] },
+  { name: "crabominable", xRGB: 90217.43685636856, xJAB: 5130.886846128886, yRGB: [ 150.60569105691056, 160.06666666666666, 175.93631436314362 ], yJAB: [ 66.90088427463846, -2.1993076047674505, -7.734748100033176 ] },
+  { name: "sentret", xRGB: 67564.58224163028, xJAB: 4245.276384179155, yRGB: [ 164.23435225618633, 132.32532751091702, 115.54803493449782 ], yJAB: [ 60.25505961964671, 6.351084809966826, 7.549838239791817 ] },
+  { name: "magikarp", xRGB: 90590.1530448718, xJAB: 5691.529890433443, yRGB: [ 202.9238782051282, 152.5096153846154, 127.47275641025641 ], yJAB: [ 70.91773274098816, 9.054426059455727, 9.77245525784413 ] },
+  { name: "kommo-o", xRGB: 69059.900875722, xJAB: 4448.507013347558, yRGB: [ 153.97596422582447, 147.04080491894914, 126.12539593814049 ], yJAB: [ 63.01469499377997, -0.5531541398626332, 5.66239982535562 ] },
+  { name: "raboot", xRGB: 97486.77402700557, xJAB: 5741.210157792291, yRGB: [ 182.47934868943605, 154.37609213661636, 143.48093725178714 ], yJAB: [ 69.18962559396272, 3.8198624980299245, 4.0704711451010605 ] },
+  { name: "stunfisk-galar", xRGB: 43752.26501766784, xJAB: 3177.4197432568867, yRGB: [ 113.02915194346289, 113.61042402826855, 87.68551236749117 ], yJAB: [ 48.78059938190706, -1.3135839670201948, 7.027398670242505 ] },
+  { name: "krabby", xRGB: 95648.54051927615, xJAB: 5839.876379424761, yRGB: [ 196.05507474429584, 164.9441384736428, 142.78127458693942 ], yJAB: [ 72.6859996048929, 5.050197770558066, 6.698722373762987 ] },
+  { name: "spearow", xRGB: 87780.88792270531, xJAB: 5382.483236330549, yRGB: [ 191.43478260869566, 153.62415458937198, 135.06376811594203 ], yJAB: [ 69.31986894032323, 7.199805491382909, 7.866858809667892 ] },
+  { name: "accelgor", xRGB: 69293.06068376069, xJAB: 4333.51094757286, yRGB: [ 153.57393162393163, 127.22393162393162, 142.69102564102565 ], yJAB: [ 60.11364066650006, 5.408130193153006, -3.8690339132168097 ] },
+  { name: "deoxys", xRGB: 77878.54746423927, xJAB: 5295.505069552928, yRGB: [ 183.23450368443866, 146.6111833550065, 115.07975726051149 ], yJAB: [ 68.00191578875003, 5.7340041580142165, 9.399004748505126 ] },
+  { name: "smeargle", xRGB: 107100.17455357143, xJAB: 6379.029447506953, yRGB: [ 192.3580357142857, 182.24151785714287, 157.75089285714284 ], yJAB: [ 76.06163803056796, 0.4353584723293252, 7.300693057442677 ] },
+  { name: "seviper", xRGB: 46179.52874818049, xJAB: 3048.9867346097544, yRGB: [ 107.07896652110625, 115.21397379912663, 114.31077147016012 ], yJAB: [ 49.476392706419645, -3.9208723349011723, -3.3831305284692657 ] },
+  { name: "oddish", xRGB: 47183.754056362086, xJAB: 4368.880262923671, yRGB: [ 85.05807002561913, 150.67719897523483, 95.03159692570452 ], yJAB: [ 58.81710963012438, -15.573445103344465, 7.734824412195539 ] },
+  { name: "snorunt", xRGB: 82818.88642413488, xJAB: 5341.115161737485, yRGB: [ 171.206743566992, 154.99112688553683, 117.20496894409938 ], yJAB: [ 65.6711466484511, 0.48405086554802573, 9.875740387026369 ] },
+  { name: "scrafty", xRGB: 82738.5272914521, xJAB: 5683.770596751517, yRGB: [ 204.88414006179195, 152.27342945417095, 103.173017507724 ], yJAB: [ 70.46526948156172, 7.945854168464734, 14.893232654287353 ] },
+  { name: "garbodor", xRGB: 64581.74511041009, xJAB: 4283.958424566083, yRGB: [ 145.5135646687697, 145.67802313354363, 125.41030494216614 ], yJAB: [ 62.29166040183459, -2.143475430075365, 6.135314316033142 ] },
+  { name: "nincada", xRGB: 98518.33988212181, xJAB: 5664.868960760213, yRGB: [ 173.7239685658153, 174.14145383104125, 174.12475442043223 ], yJAB: [ 72.73951418488976, -1.380714739980689, -1.1975439368036171 ] },
+  { name: "sirfetchd", xRGB: 71988.98205473306, xJAB: 4652.054865465764, yRGB: [ 131.349932705249, 145.85598923283985, 116.12427097353073 ], yJAB: [ 59.48254027857635, -5.688667831004992, 6.433537232368558 ] },
+  { name: "pikachu", xRGB: 109588.86575654152, xJAB: 7719.202126350189, yRGB: [ 220.54550625711036, 204.57053469852104, 116.69852104664392 ], yJAB: [ 83.5836193061789, -2.177509262363146, 19.836454136028365 ] },
+  { name: "nidoking", xRGB: 91691.84044055351, xJAB: 5108.147940811009, yRGB: [ 175.29539678057046, 147.44535441965547, 176.59644168314037 ], yJAB: [ 67.29777221954242, 7.980758724492329, -6.6397728580336475 ] },
+  { name: "vaporeon", xRGB: 108950.86453201971, xJAB: 6418.561338481821, yRGB: [ 151.6935960591133, 191.35467980295567, 201.32857142857142 ], yJAB: [ 76.29496964323985, -9.43385746911978, -7.130498678011915 ] },
+  { name: "cascoon", xRGB: 141323.04529370135, xJAB: 7543.401159267529, yRGB: [ 219.5322009907997, 203.35031847133757, 214.8761500353857 ], yJAB: [ 85.08697394069323, 3.9272494432149214, -3.3938512701266603 ] },
+  { name: "altaria", xRGB: 158022.49523175872, xJAB: 8416.65168718986, yRGB: [ 214.688622754491, 226.70813927700155, 234.45220669771567 ], yJAB: [ 90.20985369998732, -3.9341539115548563, -4.774800418598696 ] },
+  { name: "hitmonchan", xRGB: 88403.71501597443, xJAB: 5246.779786516576, yRGB: [ 180.16741214057507, 154.9444089456869, 149.73035143769968 ], yJAB: [ 68.58865936390177, 5.047857943475922, 2.4346632712930547 ] },
+  { name: "igglybuff", xRGB: 129351.24549098196, xJAB: 7069.603333306529, yRGB: [ 219.05811623246493, 192.0420841683367, 195.15931863727454 ], yJAB: [ 82.08919707947324, 6.380446996537574, 0.9145113543325747 ] },
+  { name: "rhyperior", xRGB: 59717.02121157649, xJAB: 3954.043254209455, yRGB: [ 164.95470070106057, 119.03361495595901, 97.67895020672299 ], yJAB: [ 58.03939196779157, 9.473920403846542, 7.053116756048394 ] },
+  { name: "gliscor", xRGB: 71454.2335396736, xJAB: 4120.906350702916, yRGB: [ 136.9518851997749, 134.22537985368598, 153.94710185706248 ], yJAB: [ 58.87235050417139, 0.6781997383426058, -8.184821057999667 ] },
+  { name: "aggron", xRGB: 67878.0057057802, xJAB: 3906.879116075002, yRGB: [ 136.1096502108658, 135.55296452493178, 136.3331679483999 ], yJAB: [ 57.60611901728899, -0.9534230308888273, -1.016746967935288 ] },
+  { name: "arbok", xRGB: 77224.21088746568, xJAB: 4392.891752898376, yRGB: [ 152.75892040256176, 140.1683440073193, 159.7657822506862 ], yJAB: [ 62.13732324845029, 4.056463469743295, -7.130959110061671 ] },
+  { name: "banette", xRGB: 60073.10831509847, xJAB: 3788.9073878358636, yRGB: [ 137.61816192560175, 136.9206783369803, 134.09354485776805 ], yJAB: [ 59.29236882622464, -1.275091205789284, -0.2571549080936764 ] },
+  { name: "rotom-fan", xRGB: 94765.88212180746, xJAB: 6505.435348331747, yRGB: [ 211.28762278978388, 172.39803536345775, 108.25225933202357 ], yJAB: [ 75.13326726479318, 4.119700315342373, 16.954094016983227 ] },
+  { name: "taillow", xRGB: 68034.74708520179, xJAB: 4005.1038295256008, yRGB: [ 142.1291479820628, 116.85022421524664, 128.48340807174887 ], yJAB: [ 53.76146978810949, 5.3459702966704326, -3.291671397106273 ] },
+  { name: "omanyte", xRGB: 114354.78489326766, xJAB: 6975.983300395111, yRGB: [ 186.58128078817734, 198.55665024630542, 174.77339901477833 ], yJAB: [ 80.05468840093882, -4.720580522393346, 4.544442065717019 ] },
+  { name: "tyrogue", xRGB: 98095.42442748092, xJAB: 5529.257446502816, yRGB: [ 184.91068702290076, 162.00610687022902, 163.00534351145038 ], yJAB: [ 70.70768662370092, 5.634306146568883, 0.6139490124463614 ] },
+  { name: "vullaby", xRGB: 58507.79392405063, xJAB: 3609.2907556131677, yRGB: [ 138.79746835443038, 122.8820253164557, 113.01772151898734 ], yJAB: [ 54.27589787557272, 3.4340790196288733, 4.313874581510177 ] },
+  { name: "stantler", xRGB: 83771.63228271251, xJAB: 5453.940427463657, yRGB: [ 186.43982808022923, 159.9574976122254, 125.10506208213944 ], yJAB: [ 69.73841413692362, 3.634807264542624, 10.223634808976325 ] },
+  { name: "muk-alola", xRGB: 70130.18378617185, xJAB: 4950.7131687617475, yRGB: [ 152.631764965761, 145.59796774906118, 115.9946984758118 ], yJAB: [ 63.04803256505958, -1.0052272067065509, 4.89965850171412 ] },
+  { name: "noibat", xRGB: 84646.74302030457, xJAB: 4700.7000117317575, yRGB: [ 167.27093908629442, 139.03109137055839, 164.78997461928935 ], yJAB: [ 63.50402173171512, 8.265161515209446, -6.047911040857 ] },
+  { name: "golbat", xRGB: 49083.3870967742, xJAB: 2990.6111903682, yRGB: [ 109.40322580645162, 100.31265508684864, 130.9379652605459 ], yJAB: [ 47.51228651970447, 4.541132109783705, -8.547570670594967 ] },
+  { name: "hoopa-unbound", xRGB: 73244.38901395768, xJAB: 4473.162192596162, yRGB: [ 158.85164340387212, 123.49302116163891, 139.5400720396218 ], yJAB: [ 59.56714279300791, 7.729741255722546, -2.197134331767991 ] },
+  { name: "gossifleur", xRGB: 81690.33271787297, xJAB: 6192.690866590827, yRGB: [ 194.03397341211226, 149.352658788774, 61.16100443131462 ], yJAB: [ 69.45875863624558, 5.195002566234142, 19.36352622725575 ] },
+  { name: "kyurem-white", xRGB: 97190.00631654936, xJAB: 5678.11216242323, yRGB: [ 179.6305720988991, 163.87312759429705, 165.83667208085183 ], yJAB: [ 71.49934633383312, 2.2282797565322143, -0.12348546881285284 ] },
+  { name: "spiritomb", xRGB: 79806.67590319186, xJAB: 5057.816053555713, yRGB: [ 178.3598737285163, 139.27955103472465, 145.8923184847422 ], yJAB: [ 66.32588861071301, 10.280234062894786, 1.0206182248452647 ] },
+  { name: "furfrou-heart", xRGB: 106937.87631027254, xJAB: 5917.028030599683, yRGB: [ 187.7769392033543, 167.50524109014674, 168.55303983228512 ], yJAB: [ 71.65252765597018, 4.3503129830488865, 1.3495963653498253 ] },
+  { name: "marowak", xRGB: 114584.58613217768, xJAB: 6693.016974270688, yRGB: [ 202.52654387865655, 190.04821235102926, 169.82502708559048 ], yJAB: [ 79.33559245896477, 0.5267058558964406, 5.294224448932585 ] },
+  { name: "gardevoir", xRGB: 136398.42576687117, xJAB: 7713.13944155084, yRGB: [ 202.5329243353783, 214.57546012269938, 200.8642126789366 ], yJAB: [ 85.51406686931288, -4.792382377744349, 2.2516901229371293 ] },
+  { name: "litleo", xRGB: 65670.03526170799, xJAB: 4219.491051299068, yRGB: [ 157.95482093663912, 137.06776859504131, 115.63746556473829 ], yJAB: [ 60.56093228279894, 3.4058459188360963, 7.24991007013198 ] },
+  { name: "flaaffy", xRGB: 126953.86013986015, xJAB: 6920.454337458335, yRGB: [ 210.4378698224852, 186.75309306078537, 200.54330285099516 ], yJAB: [ 80.3803020881604, 5.191260339583532, -2.6007038635620985 ] },
+  { name: "starly", xRGB: 69914.22943722944, xJAB: 4144.139281147426, yRGB: [ 148.95238095238096, 134.1417748917749, 124.86904761904762 ], yJAB: [ 58.69101292537957, 2.530007080357849, 3.361254622630845 ] },
+  { name: "bellossom", xRGB: 69706.08441193022, xJAB: 5331.044893815445, yRGB: [ 159.19921215531795, 156.30050647158131, 99.00562746201463 ], yJAB: [ 66.93479990924696, -3.2414290354703317, 14.950194592897693 ] },
+  { name: "starmie", xRGB: 90035.881826742, xJAB: 5391.177455633773, yRGB: [ 173.8978342749529, 157.93832391713747, 156.84981167608285 ], yJAB: [ 69.03132750606775, 2.8723423326434965, -1.7516422658051454 ] },
+  { name: "chimecho", xRGB: 109578.70574162679, xJAB: 6393.852699769181, yRGB: [ 188.13875598086125, 180.96052631578948, 183.92942583732057 ], yJAB: [ 76.9743541814056, 0.23145610580529333, -1.6869167104313336 ] },
+  { name: "lycanroc-midnight", xRGB: 82864.003996004, xJAB: 4841.9331299747655, yRGB: [ 169.08241758241758, 137.52397602397602, 139.74025974025975 ], yJAB: [ 62.95519794274619, 7.056729453611291, 2.6413421123091734 ] },
+  { name: "probopass", xRGB: 60477.186698717946, xJAB: 3788.6129024601264, yRGB: [ 136.88995726495727, 113.4332264957265, 123.67227564102564 ], yJAB: [ 53.7629472547913, 4.66883020585365, -2.3094071479090914 ] },
+  { name: "garchomp", xRGB: 49781.72826086957, xJAB: 3120.405829467252, yRGB: [ 115.04347826086956, 108.01449275362319, 125.85144927536231 ], yJAB: [ 49.19189600113966, 1.360484516484016, -8.670979349923485 ] },
+  { name: "gogoat", xRGB: 66007.45425072046, xJAB: 4369.353905128782, yRGB: [ 129.42903458213257, 144.7265850144092, 126.56304034582132 ], yJAB: [ 60.829292551021446, -4.096315686096084, 4.224158718623668 ] },
+  { name: "sudowoodo", xRGB: 53446.250982961996, xJAB: 4003.1478856776416, yRGB: [ 137.14744429882043, 132.3348623853211, 99.02555701179554 ], yJAB: [ 58.45589498918506, 0.5317303238560696, 10.1349298632916 ] },
+  { name: "lickilicky", xRGB: 100002.57985719654, xJAB: 5968.0198291827355, yRGB: [ 221.35137166478768, 149.14768883878241, 150.91732431416762 ], yJAB: [ 72.8994240302285, 16.030771615418622, 4.893767656711897 ] },
+  { name: "woobat", xRGB: 101051.29538461538, xJAB: 5707.731464501997, yRGB: [ 155.23615384615385, 168.9146153846154, 176.72153846153847 ], yJAB: [ 68.95537507316352, -4.581448278106375, -4.8340974064164834 ] },
+  { name: "ambipom", xRGB: 86453.31640953716, xJAB: 5279.103701574123, yRGB: [ 183.30911640953715, 147.0726507713885, 149.8765778401122 ], yJAB: [ 67.24665005646011, 7.991844737290119, 0.36019350043726334 ] },
+  { name: "wingull", xRGB: 117612.66538952746, xJAB: 6550.133500033765, yRGB: [ 186.89144316730523, 190.60408684546616, 195.4457215836526 ], yJAB: [ 78.44334383812144, -1.9887541122155081, -3.3083551587492863 ] },
+  { name: "gulpin", xRGB: 78618.28063241107, xJAB: 5771.046889257863, yRGB: [ 148.60553359683794, 182.13517786561266, 132.15652173913043 ], yJAB: [ 71.9831299092683, -11.364165959312952, 11.025311281116768 ] },
+  { name: "deino", xRGB: 43087.40516698173, xJAB: 2691.4081350925367, yRGB: [ 104.52804032766225, 108.44864524259609, 119.73913043478261 ], yJAB: [ 47.9021442651922, -0.8666354345416238, -4.432441563107057 ] },
+  { name: "deerling-winter", xRGB: 88264.64195804196, xJAB: 5624.975522300008, yRGB: [ 184.43216783216783, 165.9223776223776, 130.82867132867133 ], yJAB: [ 71.10613995821011, 1.9896816629544296, 8.728389316354855 ] },
+  { name: "poipole", xRGB: 51969.63527467989, xJAB: 2848.098956179975, yRGB: [ 112.37381247418422, 81.39116067740603, 155.7926476662536 ], yJAB: [ 43.99205594868911, 8.273272706316142, -18.680446439064433 ] },
+  { name: "nihilego", xRGB: 105122.72114972115, xJAB: 5980.222216358941, yRGB: [ 169.65980265980266, 182.15486915486915, 192.34620334620334 ], yJAB: [ 75.01377959814565, -4.519181727315526, -6.401186361312256 ] },
+  { name: "blaziken", xRGB: 92681.32807137955, xJAB: 6047.414138448529, yRGB: [ 207.9787234042553, 155.7652711050103, 119.4200411805079 ], yJAB: [ 72.22022063284383, 8.622924905207684, 12.57736051001542 ] },
+  { name: "florges-blue", xRGB: 68512.73092369478, xJAB: 4695.735189911013, yRGB: [ 93.4032797858099, 160.14022757697455, 158.80321285140562 ], yJAB: [ 63.35270380347396, -13.897209893648402, -4.03048868948081 ] },
+  { name: "mime-jr", xRGB: 79482.64550264551, xJAB: 4503.312273221731, yRGB: [ 130.12345679012347, 139.35802469135803, 154.43915343915344 ], yJAB: [ 58.94726476278818, -1.646296638561672, -6.818171706067812 ] },
+  { name: "regigigas", xRGB: 102956.22616298251, xJAB: 6473.233273355036, yRGB: [ 176.13873309138899, 183.46931705707686, 142.9183437809304 ], yJAB: [ 74.25598758515892, -4.593628542171285, 8.162026626639433 ] },
+  { name: "fletchling", xRGB: 79711.57674418605, xJAB: 4970.334326124148, yRGB: [ 171.99651162790698, 134.853488372093, 122.53837209302326 ], yJAB: [ 62.90626959870189, 5.715772985090352, 3.7408467152996985 ] },
+  { name: "azurill", xRGB: 64408.005741626795, xJAB: 4115.587155926553, yRGB: [ 65.00669856459331, 140.68516746411484, 183.43732057416267 ], yJAB: [ 57.52322902330676, -11.664726999910378, -17.740480619769304 ] },
+  { name: "yamask", xRGB: 39293.961608775135, xJAB: 2666.5043734367637, yRGB: [ 111.12157221206581, 99.73126142595979, 85.91681901279708 ], yJAB: [ 44.85565881705217, 0.8446852166111075, 2.7529964604030224 ] },
+  { name: "cubchoo", xRGB: 127862.13553607553, xJAB: 7108.577264351949, yRGB: [ 178.11598111935265, 203.40391099123397, 220.17464598786245 ], yJAB: [ 81.56924981652426, -6.867230558092374, -9.112414861056683 ] },
+  { name: "cacnea", xRGB: 65825.67213114754, xJAB: 4855.322936981339, yRGB: [ 131.78870673952642, 160.08075288403157, 114.70613236187006 ], yJAB: [ 63.92009810028972, -9.951804492616729, 10.526919721765237 ] },
+  { name: "rotom-frost", xRGB: 75902.01171875, xJAB: 4832.537801740886, yRGB: [ 190.486328125, 130.242578125, 122.57265625 ], yJAB: [ 64.48104082405443, 12.59581479869065, 4.176584149128675 ] },
+  { name: "linoone", xRGB: 97445.07976366322, xJAB: 5614.31570966275, yRGB: [ 183.84441161989167, 169.46430329886755, 164.45051698670605 ], yJAB: [ 72.40967818139373, 2.7725144918256897, 2.3979190826787415 ] },
+  { name: "lampent", xRGB: 49136.266581632655, xJAB: 2925.8156381069707, yRGB: [ 103.64795918367346, 107.24744897959184, 114.85841836734694 ], yJAB: [ 46.39051548878948, -1.3137419595839597, -3.7438734748485167 ] },
+  { name: "litten", xRGB: 41939.13694915254, xJAB: 2918.7970462944277, yRGB: [ 125.59118644067797, 93.5335593220339, 85.1064406779661 ], yJAB: [ 46.35583023475904, 5.778377191561212, 3.596366647070733 ] },
+  { name: "darmanitan-galar", xRGB: 113657.94510936855, xJAB: 6385.286345205742, yRGB: [ 169.9694593479158, 182.18860916219563, 184.35575732562938 ], yJAB: [ 73.80430771485662, -3.789588289871098, -2.10896370869726 ] },
+  { name: "chansey", xRGB: 130389.60497925311, xJAB: 7025.052280849275, yRGB: [ 223.3771784232365, 187.91701244813277, 200.0286307053942 ], yJAB: [ 81.85913630896447, 9.150848905051358, -1.1703866019176614 ] },
+  { name: "corsola", xRGB: 95553.14795654423, xJAB: 5608.376401439532, yRGB: [ 211.82721158820488, 145.97309881013967, 157.92498706673564 ], yJAB: [ 71.43600161406216, 14.82253204339984, 2.0957605766427125 ] },
+  { name: "rhydon", xRGB: 95580.18966547192, xJAB: 5541.857689724155, yRGB: [ 168.71027479091995, 170.8073476702509, 176.01194743130227 ], yJAB: [ 71.65436971513489, -1.6802570932625027, -4.23288066830922 ] },
+  { name: "flabebe-red", xRGB: 87486.70013755158, xJAB: 5637.421336681488, yRGB: [ 180.3707015130674, 157.37276478679505, 135.56740027510315 ], yJAB: [ 69.84703782149988, 2.8088688655854375, 7.635563998953992 ] },
+  { name: "chinchou", xRGB: 94445.94758339007, xJAB: 6140.414417915596, yRGB: [ 171.93260721579307, 175.7631041524847, 148.28999319264807 ], yJAB: [ 72.22085340310346, -3.559026264592457, 2.334365211192664 ] },
+  { name: "monferno", xRGB: 78712.1510945008, xJAB: 5386.157515430326, yRGB: [ 185.55686065136146, 148.56166577682862, 99.35878270154832 ], yJAB: [ 67.71486776480542, 4.879052509507924, 12.974720910194405 ] },
+  { name: "basculin-redstriped", xRGB: 80173.19571865443, xJAB: 5445.082238198852, yRGB: [ 141.51070336391436, 172.82813455657492, 141.00122324159022 ], yJAB: [ 69.5032761575652, -9.07716313991584, 6.829737760703208 ] },
+  { name: "xatu", xRGB: 85443.275, xJAB: 5966.911685329274, yRGB: [ 168.04166666666666, 163.95, 112.43333333333334 ], yJAB: [ 69.42293392750864, -2.0485756083802844, 11.10494733728752 ] },
+  { name: "arctozolt", xRGB: 74998.46866295264, xJAB: 4826.473337469069, yRGB: [ 118.73363509749304, 149.74477715877438, 141.4199164345404 ], yJAB: [ 61.25510799826904, -7.739394731435681, -3.799096582340314 ] },
+  { name: "glameow", xRGB: 77739.22203579418, xJAB: 4565.422022966335, yRGB: [ 148.64541387024607, 150.2807606263982, 158.65715883668904 ], yJAB: [ 64.15672403580044, -1.5032969315711422, -4.691122590538254 ] },
+  { name: "regice", xRGB: 120130.07686355429, xJAB: 7014.1205655284375, yRGB: [ 138.15295331441837, 203.63167397472273, 234.14573123549135 ], yJAB: [ 79.53591150475232, -13.630736890823993, -14.553590384698515 ] },
+  { name: "sawsbuck-autumn", xRGB: 54188.750907567715, xJAB: 3806.8053991345155, yRGB: [ 164.54537838592572, 105.54146886344597, 80.8461323652611 ], yJAB: [ 54.01471087848826, 12.502088396280504, 11.977434313332928 ] },
+  { name: "lunala", xRGB: 63871.787237793054, xJAB: 3980.5574178652537, yRGB: [ 133.33298078618014, 110.7740172748105, 147.7489864269346 ], yJAB: [ 52.8176006614957, 3.552755981983242, -9.632168288245694 ] },
+  { name: "pansear", xRGB: 85750.90148911798, xJAB: 5822.031219991326, yRGB: [ 214.21363115693012, 144.72394043528064, 107.36483390607101 ], yJAB: [ 70.61515328911426, 12.446892194111301, 13.866454293671385 ] },
+  { name: "feraligatr", xRGB: 105017.76991643454, xJAB: 6503.944321653848, yRGB: [ 138.30139275766015, 191.83481894150418, 202.58412256267408 ], yJAB: [ 76.5101368329788, -10.909166300074814, -7.6572957986419405 ] },
+  { name: "honchkrow", xRGB: 56162.804666917575, xJAB: 3364.5969906079818, yRGB: [ 96.63831388784344, 114.10538200978547, 132.59616108392925 ], yJAB: [ 48.52122036955866, -4.395216529270447, -9.163061263291675 ] },
+  { name: "beheeyem", xRGB: 74689.42529296875, xJAB: 4639.234030460699, yRGB: [ 170.90478515625, 141.7109375, 126.90234375 ], yJAB: [ 63.715674223632085, 5.781367587901043, 6.5346035759516266 ] },
+  { name: "clauncher", xRGB: 100886.27473498233, xJAB: 6217.480715045485, yRGB: [ 138.89840989399292, 187.46554770318022, 190.8595406360424 ], yJAB: [ 74.13057687834524, -11.118573678134325, -5.8090407377063755 ] },
+  { name: "noivern", xRGB: 50718.38996836873, xJAB: 3326.8372133083535, yRGB: [ 103.29055580659738, 117.4098508811568, 123.00994125621328 ], yJAB: [ 50.6560410369002, -2.6688908563517453, -2.5075939948914248 ] },
+  { name: "wimpod", xRGB: 85239.88506876228, xJAB: 4964.565922528044, yRGB: [ 161.38015717092338, 157.2033398821218, 159.77504911591356 ], yJAB: [ 66.88224245997637, 0.49655937272938067, -1.252490193638329 ] },
+  { name: "tangela", xRGB: 68083.93692224035, xJAB: 4162.059942859981, yRGB: [ 110.00543773790103, 138.44045676998368, 156.20772158781946 ], yJAB: [ 57.54733108237827, -6.842023462903569, -9.426838314980229 ] },
+  { name: "rampardos", xRGB: 54672.36278759586, xJAB: 3302.252348819751, yRGB: [ 115.91630543514505, 123.4214738246082, 133.57385795265088 ], yJAB: [ 53.32812117584293, -1.903018562781682, -4.2514168094945495 ] },
+  { name: "aromatisse", xRGB: 94513.70737564322, xJAB: 5358.072502521486, yRGB: [ 202.89777015437392, 139.77324185248713, 162.61097770154373 ], yJAB: [ 68.54381668819173, 15.652561838038569, -0.8204713093092088 ] },
+  { name: "centiskorch", xRGB: 74981.17548298067, xJAB: 5317.573735062202, yRGB: [ 193.4533118675253, 113.88339466421343, 61.77115915363385 ], yJAB: [ 61.974851378165916, 13.430706230557337, 16.316868822757524 ] },
+  { name: "rapidash", xRGB: 104745.53948590894, xJAB: 7118.827907337208, yRGB: [ 227.50201300712294, 176.09662434190153, 95.51904614431713 ], yJAB: [ 78.80269140271523, 5.970213020451304, 18.904571773433926 ] },
+  { name: "blacephalon", xRGB: 98027.05720250522, xJAB: 5606.2310365475605, yRGB: [ 151.73277661795407, 162.25344467640917, 166.9624217118998 ], yJAB: [ 67.38242990419603, -2.744290287979987, -3.118915643135132 ] },
+  { name: "espurr", xRGB: 92804.47157622738, xJAB: 5258.061011809352, yRGB: [ 164.88242894056847, 163.94896640826875, 186.04457364341084 ], yJAB: [ 70.30846728091682, 0.6707888581232762, -9.602747611707143 ] },
+  { name: "voltorb", xRGB: 103794.29820788531, xJAB: 6169.9954347966495, yRGB: [ 218.12401433691755, 161.56702508960572, 156.41218637992833 ], yJAB: [ 75.37122930081502, 11.301040225139579, 4.52883476160443 ] },
+  { name: "volcarona", xRGB: 87548.215, xJAB: 5224.834530307792, yRGB: [ 182.60833333333332, 145.03833333333333, 133.705 ], yJAB: [ 66.05939422913228, 6.917875091354694, 5.521176777881405 ] },
+  { name: "type-null", xRGB: 41440.41627218935, xJAB: 2699.1449536742625, yRGB: [ 112.16656804733728, 107.01153846153846, 102.048224852071 ], yJAB: [ 47.60069079466056, -0.010126753177709115, 1.2306662420246992 ] },
+  { name: "mightyena", xRGB: 52653.020719311964, xJAB: 3130.7593685742577, yRGB: [ 114.54065676309617, 113.88272087568413, 113.97576231430806 ], yJAB: [ 49.057110540534175, -0.8966884878967473, -0.6533729082903984 ] },
+  { name: "finneon", xRGB: 75363.42857142857, xJAB: 4528.631128700479, yRGB: [ 138.46428571428572, 143.39285714285714, 152.0 ], yJAB: [ 61.22725284711437, -2.8655905601570657, -4.008103269220184 ] },
+  { name: "armaldo", xRGB: 73973.12138896994, xJAB: 4496.125247061349, yRGB: [ 142.98453457834842, 143.361540706157, 150.40064196089875 ], yJAB: [ 61.86402873730969, -1.0272292038343762, -4.447456686845897 ] },
+  { name: "gengar", xRGB: 72089.57655010285, xJAB: 4036.6903329209945, yRGB: [ 141.41522186306202, 130.12018806935058, 171.32882750514253 ], yJAB: [ 58.90191985410284, 4.42186710814596, -14.339809154823117 ] },
+  { name: "sobble", xRGB: 104255.72450052576, xJAB: 6367.391257629107, yRGB: [ 156.06992639327024, 186.76813880126184, 180.96635120925342 ], yJAB: [ 74.83660796697791, -8.756971271997111, -4.631140237701678 ] },
+  { name: "sawsbuck-winter", xRGB: 98349.81510621558, xJAB: 5539.622807129211, yRGB: [ 177.1290322580645, 160.985051140834, 150.79307631785994 ], yJAB: [ 68.41682748278508, 2.821623721955111, 4.102589477504668 ] },
+  { name: "arceus", xRGB: 115840.35115911486, xJAB: 6678.265923884638, yRGB: [ 191.72471022128556, 190.6095890410959, 173.89620653319284 ], yJAB: [ 78.08698586664238, -2.0679407779100005, 2.326105611251024 ] },
+  { name: "tornadus-therian", xRGB: 53550.18496538081, xJAB: 4202.35578806022, yRGB: [ 117.37314540059347, 138.48442136498517, 111.23986152324431 ], yJAB: [ 58.0036811875658, -5.928290987879309, 5.05470403094555 ] },
+  { name: "pelipper", xRGB: 120964.64651162791, xJAB: 7594.4243368015705, yRGB: [ 211.09471458773785, 206.86088794926005, 163.58816067653277 ], yJAB: [ 84.12264819193176, -2.93732887201191, 8.88914336996356 ] },
+  { name: "grotle", xRGB: 55041.57316227462, xJAB: 4789.745700456669, yRGB: [ 127.10506241331484, 153.79576976421637, 73.42891816920942 ], yJAB: [ 62.40226958306162, -9.822074980807853, 17.74073020102764 ] },
+  { name: "wynaut", xRGB: 89726.97395833333, xJAB: 5679.12440929807, yRGB: [ 122.99913194444444, 178.02777777777777, 183.50260416666666 ], yJAB: [ 70.26089842825792, -12.430738847096803, -6.201999815608398 ] },
+  { name: "scizor", xRGB: 69506.11152416357, xJAB: 4530.8957651649, yRGB: [ 186.00289136720363, 110.65799256505576, 109.44320528707146 ], yJAB: [ 60.024334865682604, 16.175603259008682, 7.035023369998154 ] },
+  { name: "beldum", xRGB: 46221.73363431151, xJAB: 3084.7390599433434, yRGB: [ 76.13544018058691, 120.38148984198645, 137.803611738149 ], yJAB: [ 49.4357955202817, -10.757568049412448, -10.64297647797884 ] },
+  { name: "cacturne", xRGB: 88258.79886685552, xJAB: 6010.088922836687, yRGB: [ 159.40509915014164, 185.56728045325778, 144.36756373937678 ], yJAB: [ 73.8070990804796, -9.244966948050996, 9.71280025273706 ] },
+  { name: "salandit", xRGB: 30650.331259720064, xJAB: 1920.9325472352505, yRGB: [ 89.39657853810264, 89.27916018662519, 91.47356143079315 ], yJAB: [ 39.57755574302685, -0.740782179047457, -1.843139165629012 ] },
+  { name: "magnezone", xRGB: 84629.32989690722, xJAB: 4957.019514833951, yRGB: [ 154.48295003965106, 157.5297383029342, 156.53211736716892 ], yJAB: [ 66.1375664687839, -2.407234958723522, -1.4967911843891366 ] },
+  { name: "wobbuffet", xRGB: 96151.24801192843, xJAB: 5846.845427665083, yRGB: [ 109.97614314115309, 181.97266401590457, 217.13021868787277 ], yJAB: [ 71.93748301966815, -14.130396028504958, -16.557631140387006 ] },
+  { name: "torkoal", xRGB: 90502.73669661369, xJAB: 5616.190203814791, yRGB: [ 194.85970974429856, 161.6644782308224, 139.213199723566 ], yJAB: [ 71.81715053746444, 5.375620063121718, 7.974550981286601 ] },
+  { name: "metapod", xRGB: 69513.54740608229, xJAB: 5994.431579034556, yRGB: [ 142.64490161001788, 182.49910554561717, 91.7361359570662 ], yJAB: [ 70.80941432374408, -13.401629116401814, 18.87044007240397 ] },
+  { name: "sceptile", xRGB: 69773.035988004, xJAB: 5177.592696591482, yRGB: [ 131.33222259246918, 169.81306231256247, 128.85104965011664 ], yJAB: [ 67.31700624729599, -11.579553673604835, 8.999043988469744 ] },
+  { name: "gabite", xRGB: 58984.487333026256, xJAB: 3632.2135151315388, yRGB: [ 130.158452326117, 117.10502072777521, 139.53155228005528 ], yJAB: [ 54.3925460791447, 2.992861123125272, -8.570104182078286 ] },
+  { name: "lapras", xRGB: 113280.3001776199, xJAB: 6640.889064091579, yRGB: [ 157.348134991119, 194.51261101243338, 206.14387211367674 ], yJAB: [ 78.19910550566999, -7.513312719650721, -6.774804921827994 ] },
+  { name: "slowbro-galar", xRGB: 73928.749661705, xJAB: 4399.409235399833, yRGB: [ 168.92873252142536, 117.9873703202526, 137.05683355886333 ], yJAB: [ 58.76539439443181, 11.68866471228555, -1.2179467706940668 ] },
+  { name: "hitmontop", xRGB: 76918.48563685636, xJAB: 4869.025249383729, yRGB: [ 166.15772357723577, 150.06070460704606, 138.68130081300814 ], yJAB: [ 66.06890246616068, 2.4421491873257795, 3.5049011368561147 ] },
+  { name: "kecleon", xRGB: 84131.03991130821, xJAB: 6034.295397250142, yRGB: [ 174.9190687361419, 180.99722838137473, 123.26884700665188 ], yJAB: [ 73.8839304343102, -5.343375384447599, 14.23809924768608 ] },
+  { name: "dugtrio-alola", xRGB: 78569.38597411683, xJAB: 5121.561422356522, yRGB: [ 169.65075201119274, 154.5416229450857, 120.27019937040923 ], yJAB: [ 65.83537246261088, 0.5259561618244727, 9.083465558550039 ] },
+  { name: "rowlet", xRGB: 102020.25134973005, xJAB: 6090.671088184124, yRGB: [ 188.0365926814637, 176.123575284943, 157.15776844631074 ], yJAB: [ 74.54054550105782, 1.1651044578467058, 5.854062421529792 ] },
+  { name: "flabebe-blue", xRGB: 86225.42739160357, xJAB: 5488.47230483284, yRGB: [ 143.46455609084651, 169.25120440467998, 155.16448726772197 ], yJAB: [ 68.99197068227357, -6.783446097458172, 0.8807093729372596 ] },
+  { name: "cubone", xRGB: 112876.62379702537, xJAB: 6548.852168576906, yRGB: [ 198.8390201224847, 186.80664916885388, 170.59492563429572 ], yJAB: [ 78.13852800347834, 0.7471307452121791, 4.1678279854333375 ] },
+  { name: "barraskewda", xRGB: 68598.20420223243, xJAB: 4103.009086577067, yRGB: [ 150.48456992777412, 124.96782665791201, 108.24753775443205 ], yJAB: [ 56.32538807261481, 4.716571037577349, 6.905481631053162 ] },
+  { name: "marill", xRGB: 90260.56227758007, xJAB: 5398.070624110861, yRGB: [ 122.52099644128114, 163.68398576512456, 190.6661921708185 ], yJAB: [ 68.15889326518636, -6.134412674162363, -10.578352199221039 ] },
+  { name: "pumpkaboo", xRGB: 47863.28515007899, xJAB: 3216.4510707727877, yRGB: [ 142.57977883096368, 108.70063191153238, 90.80094786729858 ], yJAB: [ 51.57020097030993, 6.7750689339801, 7.6910141521773046 ] },
+  { name: "oricorio-sensu", xRGB: 93121.72313865359, xJAB: 5176.933174006018, yRGB: [ 156.19661168078466, 158.2666072224699, 193.9786000891663 ], yJAB: [ 68.12002453889842, 0.15640179756876524, -13.34723893711194 ] },
+  { name: "lombre", xRGB: 68650.75824742268, xJAB: 5313.714281585879, yRGB: [ 137.2180412371134, 169.6319587628866, 112.98865979381443 ], yJAB: [ 67.74278956009007, -11.259789276099452, 11.951963162541652 ] },
+  { name: "rookidee", xRGB: 66472.55667276052, xJAB: 4047.15169202136, yRGB: [ 121.41864716636198, 124.12614259597807, 111.73948811700183 ], yJAB: [ 52.355670829552615, -2.1958899381993353, 1.6739377943237008 ] },
+  { name: "oshawott", xRGB: 115519.0016934801, xJAB: 6522.2848479540535, yRGB: [ 172.36071126164268, 188.22353937341236, 190.80016934801017 ], yJAB: [ 76.23143192050419, -4.7701936360925625, -3.5311198948503852 ] },
+  { name: "tapu-koko", xRGB: 64443.508985507244, xJAB: 4830.835052115017, yRGB: [ 166.62028985507246, 141.22086956521738, 74.94434782608695 ], yJAB: [ 62.01865418137067, 1.2412029463828693, 16.644311009863188 ] },
+  { name: "perrserker", xRGB: 46436.41257995736, xJAB: 2873.5412841591997, yRGB: [ 104.41684434968018, 104.50373134328358, 101.51972281449893 ], yJAB: [ 45.25018348673458, -1.8394504134930907, 0.011390117243352831 ] },
+  { name: "yveltal", xRGB: 33138.52282423208, xJAB: 2154.213169925406, yRGB: [ 104.13225255972696, 72.97162969283276, 79.33575085324232 ], yJAB: [ 37.723866771753045, 7.721288636976428, 1.3606531159327968 ] },
+  { name: "moltres", xRGB: 87870.88787878788, xJAB: 6473.823920129723, yRGB: [ 219.58619528619528, 163.0053872053872, 69.94612794612794 ], yJAB: [ 74.63998880921967, 6.467222283817199, 21.448204861018105 ] },
+  { name: "scraggy", xRGB: 105293.33605947955, xJAB: 6979.621209033856, yRGB: [ 214.51598513011152, 187.15167286245352, 127.02602230483271 ], yJAB: [ 79.40993050726631, 1.7915803722679478, 15.306738382016274 ] },
+  { name: "slugma", xRGB: 78515.73958333333, xJAB: 5463.193771254447, yRGB: [ 217.14583333333334, 130.875, 91.84375 ], yJAB: [ 67.90292493285126, 16.11646877982207, 15.83912726320432 ] },
+  { name: "mienshao", xRGB: 105560.97971976401, xJAB: 5918.65791713293, yRGB: [ 185.57706489675516, 174.21238938053096, 181.82227138643069 ], yJAB: [ 74.03859130158237, 2.766778371663749, -2.466872077407648 ] },
+  { name: "eiscue", xRGB: 113727.78102481985, xJAB: 6504.439697193227, yRGB: [ 163.20656525220176, 187.14011208967173, 189.86909527622097 ], yJAB: [ 74.51492037156294, -7.198412809038878, -4.4141854473298086 ] },
+  { name: "spewpa", xRGB: 115010.67139282735, xJAB: 6379.753897805306, yRGB: [ 187.66638865721436, 182.94495412844037, 177.0041701417848 ], yJAB: [ 75.24307674319537, -0.3791294347123466, 1.3652561330784152 ] },
+  { name: "frillish", xRGB: 117699.44324601952, xJAB: 6896.487688938058, yRGB: [ 162.26399589111455, 203.3276836158192, 212.0241397021058 ], yJAB: [ 80.3475812749266, -11.003371855336335, -7.282882850896826 ] },
+  { name: "yanmega", xRGB: 63666.99578567128, xJAB: 4108.744932689816, yRGB: [ 139.14208308248044, 132.5201685731487, 114.33293196869356 ], yJAB: [ 57.534959029776914, -0.4933636133490902, 5.245937725825034 ] },
+  { name: "doublade", xRGB: 89425.21317695756, xJAB: 5313.648259990103, yRGB: [ 179.97481890307003, 154.5422559503277, 154.70645050017248 ], yJAB: [ 68.6698990511871, 5.023423434750263, 1.6973540715071447 ] },
+  { name: "staraptor", xRGB: 42722.23463687151, xJAB: 2693.202875994461, yRGB: [ 112.03351955307262, 101.19553072625699, 88.91620111731844 ], yJAB: [ 45.01133087100978, 1.2894956096422645, 4.596929190084132 ] },
+  { name: "tirtouga", xRGB: 57266.41341991342, xJAB: 3478.9687552124674, yRGB: [ 101.3989898989899, 126.34704184704185, 151.78571428571428 ], yJAB: [ 53.14140107084784, -6.0194346512067956, -12.780909937173414 ] },
+  { name: "sliggoo", xRGB: 121500.95584577114, xJAB: 6554.5678009338535, yRGB: [ 197.33955223880596, 183.88121890547265, 207.55223880597015 ], yJAB: [ 78.51837977214286, 4.255132696180976, -7.690663334871797 ] },
+  { name: "luxio", xRGB: 55129.517982799065, xJAB: 3587.738876308949, yRGB: [ 109.94839718530102, 123.02071931196247, 113.52384675527756 ], yJAB: [ 51.77099965418771, -4.46977918728513, -0.9491546609279382 ] },
+  { name: "lanturn", xRGB: 97631.8640883978, xJAB: 6034.404503067768, yRGB: [ 168.85414364640883, 175.51325966850828, 169.12651933701656 ], yJAB: [ 72.80683715650532, -3.259203084811449, -3.094376786394449 ] },
+  { name: "amaura", xRGB: 115599.08428390368, xJAB: 6733.518278053839, yRGB: [ 164.5595690747782, 197.00823827629912, 208.72940430925223 ], yJAB: [ 79.12695050952894, -8.202512824519365, -7.793434726317863 ] },
+  { name: "huntail", xRGB: 98045.37202797203, xJAB: 5982.867566895084, yRGB: [ 173.73286713286714, 174.0776223776224, 166.63566433566433 ], yJAB: [ 73.60027706777767, -1.6118313177853123, 0.6387466389330609 ] },
+  { name: "wooloo", xRGB: 111104.32837445573, xJAB: 6168.027235601286, yRGB: [ 183.13679245283018, 180.8653846153846, 180.13534107402032 ], yJAB: [ 74.67860000545, -0.7117494319933506, -0.371011290970525 ] },
+  { name: "meditite", xRGB: 109095.81322957198, xJAB: 6135.872368821837, yRGB: [ 172.0373540856031, 182.31673151750974, 189.40778210116733 ], yJAB: [ 74.97087001453447, -2.9480142710879242, -3.974673198769013 ] },
+  { name: "gible", xRGB: 57312.666666666664, xJAB: 3784.7840351771515, yRGB: [ 121.43137254901961, 128.54901960784315, 132.7843137254902 ], yJAB: [ 56.5738433434572, -2.9610656401088913, -3.2733566026927963 ] },
+  { name: "serperior", xRGB: 61627.613589567605, xJAB: 4683.542999775641, yRGB: [ 100.45401509951957, 156.33699382292383, 108.32978723404256 ], yJAB: [ 61.64101424995504, -13.041021062650147, 9.930451257222941 ] },
+  { name: "wormadam-plant", xRGB: 38729.53465346534, xJAB: 3224.937967148052, yRGB: [ 82.76237623762377, 123.63366336633663, 78.98019801980197 ], yJAB: [ 49.335577338927926, -12.030097609707628, 9.826223560746635 ] },
+  { name: "sandaconda", xRGB: 39192.096956031564, xJAB: 2741.2083729564797, yRGB: [ 102.64740698985344, 98.7652198421646, 57.267756482525364 ], yJAB: [ 42.47636731759598, -2.80998369128375, 11.613342528420235 ] },
+  { name: "florges-white", xRGB: 90340.45214190094, xJAB: 5614.751111737352, yRGB: [ 141.00100401606426, 177.16298527443107, 164.99899598393574 ], yJAB: [ 70.9942869509892, -8.934675628470542, 1.1008178918460112 ] },
+  { name: "barboach", xRGB: 95173.21212121213, xJAB: 5588.56111234867, yRGB: [ 141.9090909090909, 174.07575757575756, 187.6818181818182 ], yJAB: [ 70.62119502559483, -7.686803829357556, -7.982691827195813 ] },
+  { name: "komala", xRGB: 93477.36549295775, xJAB: 5457.036823694701, yRGB: [ 159.86830985915492, 169.16197183098592, 175.93802816901407 ], yJAB: [ 70.47431251331382, -3.7445572246912735, -5.135156688348734 ] },
+  { name: "vivillon-garden", xRGB: 37760.0096906448, xJAB: 3197.8605899524355, yRGB: [ 73.44278792396571, 125.7322027581066, 99.24692508386136 ], yJAB: [ 50.12846512777334, -13.041388715106384, 4.7476137182385765 ] },
+  { name: "orbeetle", xRGB: 59524.36858685868, xJAB: 3835.3410145936923, yRGB: [ 144.33708370837084, 83.64491449144914, 87.19036903690369 ], yJAB: [ 48.900664118732806, 11.06877896317747, 4.139863512731084 ] },
+  { name: "mr-mime-galar", xRGB: 75246.45447761194, xJAB: 4209.510971192741, yRGB: [ 127.83880597014925, 128.51044776119403, 148.16194029850746 ], yJAB: [ 55.044723524047484, 0.028677617719095466, -7.875041232722665 ] },
+  { name: "fearow", xRGB: 70263.93984962406, xJAB: 4808.730021872144, yRGB: [ 183.56554429552142, 142.05753514220333, 99.93821510297482 ], yJAB: [ 65.36116214199446, 6.465156660054775, 13.321103959571538 ] },
+  { name: "keldeo-ordinary", xRGB: 94050.65217391304, xJAB: 5927.108861424273, yRGB: [ 171.73258532024312, 166.2964001870033, 154.1921458625526 ], yJAB: [ 71.62688164958615, -0.25329404517062803, 2.508047736404222 ] },
+  { name: "grimer-alola", xRGB: 48536.96738479952, xJAB: 3579.8068687504187, yRGB: [ 100.50329144225014, 137.86026331538002, 120.8294434470377 ], yJAB: [ 55.939145198141865, -12.173379773308874, 1.5912548971588771 ] },
+  { name: "nuzleaf", xRGB: 70920.0739476678, xJAB: 4392.521791737413, yRGB: [ 160.5136518771331, 143.4943117178612, 131.95790671217293 ], yJAB: [ 63.13399071997972, 3.0934055337774056, 4.775471601742682 ] },
+  { name: "minccino", xRGB: 122021.48566387295, xJAB: 6792.070746828818, yRGB: [ 202.17026907807676, 193.38906043228937, 193.10410233789148 ], yJAB: [ 80.59138128977314, 1.0237953371128208, 0.16160294067030448 ] },
+  { name: "sandile", xRGB: 55315.65090909091, xJAB: 3775.5965068060905, yRGB: [ 147.9061818181818, 122.75854545454546, 94.45818181818181 ], yJAB: [ 55.391199529343695, 3.768367892570781, 9.246286958337572 ] },
+  { name: "swampert", xRGB: 87077.0187744459, xJAB: 5268.819900285077, yRGB: [ 135.6498044328553, 167.64172099087352, 178.74159061277706 ], yJAB: [ 68.15960243616388, -8.46736704549146, -7.733911128456005 ] },
+  { name: "slowpoke", xRGB: 119828.82836879433, xJAB: 6632.5449706363515, yRGB: [ 218.39574468085107, 179.2595744680851, 187.69929078014184 ], yJAB: [ 79.34296864888, 9.411217940141174, 0.5705362484382814 ] },
+  { name: "bewear", xRGB: 68026.65820683113, xJAB: 3844.295317090455, yRGB: [ 136.58064516129033, 127.47604364326375, 126.06404174573055 ], yJAB: [ 54.945359835953525, 0.6594214866940153, 1.2903766874056595 ] },
+  { name: "ledian", xRGB: 81391.93795379538, xJAB: 5110.814917734555, yRGB: [ 177.61914191419143, 130.45676567656767, 126.8996699669967 ], yJAB: [ 63.419705395786934, 8.653362365880827, 5.173630299837278 ] },
+  { name: "marshadow", xRGB: 35934.43182795699, xJAB: 2355.5063751445027, yRGB: [ 104.88645161290323, 103.02150537634408, 100.34494623655914 ], yJAB: [ 45.84008759191632, -1.119997498966896, 0.1260255271977732 ] },
+  { name: "klang", xRGB: 96096.55596888739, xJAB: 5495.920875516347, yRGB: [ 158.78356442340208, 168.2005410889415, 168.30977341900575 ], yJAB: [ 69.42393698336531, -2.575333847448872, -1.3410375313681582 ] },
+  { name: "liepard", xRGB: 60742.416666666664, xJAB: 4021.707142231309, yRGB: [ 149.49166666666667, 121.88333333333334, 118.75833333333334 ], yJAB: [ 56.21835379659129, 6.177322153955135, -0.49690076237260067 ] },
+  { name: "piloswine", xRGB: 60021.358639642734, xJAB: 4029.7477529051775, yRGB: [ 170.54895225008588, 126.85468911027138, 100.94297492270698 ], yJAB: [ 60.01779463600895, 8.602542964606307, 10.686752748834522 ] },
+  { name: "giratina-altered", xRGB: 69759.2812703583, xJAB: 4425.86886494959, yRGB: [ 150.76009771986972, 136.59250814332248, 115.4671009771987 ], yJAB: [ 59.21017828273735, 1.2968570764279062, 5.2473996304944475 ] },
+  { name: "vivillon-highplains", xRGB: 61522.55679702049, xJAB: 4435.202572600114, yRGB: [ 173.20372439478584, 125.15735567970205, 80.00763500931099 ], yJAB: [ 59.669952561405296, 7.3187112567141615, 13.90727349032209 ] },
+  { name: "snubbull", xRGB: 88780.83239910314, xJAB: 5235.501538034202, yRGB: [ 194.09921524663676, 141.42208520179372, 148.4164798206278 ], yJAB: [ 67.55785516477351, 11.657792421710166, 2.3029204528914473 ] },
+  { name: "hypno", xRGB: 110547.486852917, xJAB: 8012.601365997224, yRGB: [ 220.37140509449466, 207.94617912900574, 96.41248972884141 ], yJAB: [ 84.24615232186221, -3.8855986397184252, 20.91269193633693 ] },
+  { name: "drampa", xRGB: 105876.98803939963, xJAB: 6329.548514975141, yRGB: [ 172.98217636022514, 189.91791744840526, 175.26665103189492 ], yJAB: [ 76.67153221601473, -6.014649023391896, 2.824761113446847 ] },
+  { name: "raichu", xRGB: 100624.47395023328, xJAB: 6823.174419160497, yRGB: [ 206.10186625194402, 185.05015552099533, 113.50077760497668 ], yJAB: [ 77.17122138415422, -0.1636565373593107, 16.67444310641356 ] },
+  { name: "deerling-spring", xRGB: 98933.9965034965, xJAB: 6127.238509120805, yRGB: [ 200.6118881118881, 170.13076923076923, 142.0986013986014 ], yJAB: [ 74.40066017053937, 4.955934995927107, 7.801059438808133 ] },
+  { name: "girafarig", xRGB: 73956.8413488115, xJAB: 5286.727385673978, yRGB: [ 177.32061912658926, 141.4129353233831, 67.50193477059149 ], yJAB: [ 62.86565890438555, 3.867660684202894, 15.812609769372346 ] },
+  { name: "ledyba", xRGB: 93161.1277932961, xJAB: 5907.061163427359, yRGB: [ 191.9504189944134, 165.2395251396648, 130.0286312849162 ], yJAB: [ 71.65972306716796, 2.8127451953106832, 9.452236196884 ] },
+  { name: "fletchinder", xRGB: 64663.85365853659, xJAB: 4322.072435631783, yRGB: [ 157.390243902439, 127.02439024390245, 107.36585365853658 ], yJAB: [ 58.70499166179057, 4.490953174118096, 5.241793415799404 ] },
+  { name: "latias", xRGB: 84908.54610778444, xJAB: 5009.494352931173, yRGB: [ 180.5053892215569, 140.64191616766468, 150.59760479041915 ], yJAB: [ 66.06173193981363, 9.54408778179321, -0.261944797597324 ] },
+  { name: "gastrodon-east", xRGB: 61929.72897196261, xJAB: 4876.912178827209, yRGB: [ 87.42650807136789, 164.31648258283772, 132.7574341546304 ], yJAB: [ 63.93809844670915, -16.5336910401809, 2.974689333505407 ] },
+  { name: "quilladin", xRGB: 60847.41716328963, xJAB: 4771.91581780269, yRGB: [ 147.90742947953913, 147.2860548271752, 84.93245927691696 ], yJAB: [ 61.83585232796754, -2.6983427470115386, 14.96835907239442 ] },
+  { name: "loudred", xRGB: 82814.40279099271, xJAB: 4837.255282453348, yRGB: [ 156.94671741198857, 148.43862987630828, 162.7427846495401 ], yJAB: [ 64.68626976469322, 1.9541347684859993, -6.415404086830094 ] },
+  { name: "frogadier", xRGB: 87058.48444976077, xJAB: 5312.41072530837, yRGB: [ 117.16985645933015, 168.24102870813397, 181.9671052631579 ], yJAB: [ 67.39880620411925, -10.11234871213747, -8.463032152491278 ] },
+  { name: "joltik", xRGB: 101322.08163265306, xJAB: 7393.64447406952, yRGB: [ 204.85714285714286, 196.59183673469389, 107.48979591836735 ], yJAB: [ 79.88233152739622, -3.9304339793933805, 17.892138981934007 ] },
+  { name: "farfetchd", xRGB: 95578.16410670978, xJAB: 6032.050630659515, yRGB: [ 188.97898140662895, 176.5828617623282, 140.71382376717867 ], yJAB: [ 74.50209321008415, 0.396152038067137, 8.871372711476875 ] },
+  { name: "grapploct", xRGB: 33076.44334085779, xJAB: 2203.8117848376464, yRGB: [ 56.116930022573364, 74.02979683972912, 110.63431151241535 ], yJAB: [ 34.448959386308516, -1.8941852971227646, -14.03456264662224 ] },
+  { name: "mankey", xRGB: 109619.11570945945, xJAB: 6326.233685710274, yRGB: [ 199.95101351351352, 181.9028716216216, 169.05236486486487 ], yJAB: [ 77.08112054576624, 2.8274945051333455, 4.710564353123979 ] },
+  { name: "zigzagoon-galar", xRGB: 57224.6875, xJAB: 3266.6565863568626, yRGB: [ 110.54885057471265, 110.48635057471265, 112.39942528735632 ], yJAB: [ 47.052100018870014, -1.3071394403456333, -1.6496253487272718 ] },
+  { name: "reshiram", xRGB: 133446.79184952978, xJAB: 7214.141467854269, yRGB: [ 201.7901776384535, 202.35506792058516, 213.57115987460816 ], yJAB: [ 82.97898434109992, -0.8762916833804092, -5.4165611186941875 ] },
+  { name: "hitmonlee", xRGB: 87625.18791946309, xJAB: 5261.148932138429, yRGB: [ 179.6253813300793, 162.01342281879195, 151.0085417937767 ], yJAB: [ 70.10648457369187, 3.0518628795899447, 4.414503952212829 ] },
+  { name: "bisharp", xRGB: 70406.8328506413, xJAB: 4350.437773028906, yRGB: [ 162.77658254033926, 127.05337194869674, 120.73727761688043 ], yJAB: [ 59.54017299139249, 7.654293187895179, 4.239009796945231 ] },
+  { name: "gastrodon-west", xRGB: 75517.58191621734, xJAB: 4811.373592064668, yRGB: [ 185.836582330983, 137.03649937785153, 120.38199917046869 ], yJAB: [ 64.81095169295106, 10.126345262556415, 7.832271192511732 ] },
+  { name: "gorebyss", xRGB: 125495.36, xJAB: 6778.703708984331, yRGB: [ 218.57333333333332, 181.18666666666667, 198.42666666666668 ], yJAB: [ 80.0166466563719, 9.300219261462445, -2.4111252829502376 ] },
+  { name: "entei", xRGB: 60235.66174832962, xJAB: 4022.535703463709, yRGB: [ 152.87694877505567, 122.92817371937639, 96.28758351893096 ], yJAB: [ 56.84667357110339, 5.008478719208064, 8.940627954866445 ] },
+  { name: "bonsly", xRGB: 53373.56912637829, xJAB: 4151.479868946688, yRGB: [ 127.9253604749788, 140.00848176420695, 97.27056827820186 ], yJAB: [ 59.1630942585516, -4.22254732199821, 10.930501777370251 ] },
+  { name: "clawitzer", xRGB: 69784.59134615384, xJAB: 4325.3576602681005, yRGB: [ 101.26442307692308, 140.6875, 171.15865384615384 ], yJAB: [ 58.79708322205773, -7.155207224310861, -12.483950570520705 ] },
+  { name: "machop", xRGB: 102965.4055032585, xJAB: 6087.459784957362, yRGB: [ 165.2237509051412, 186.77842143374366, 188.78493845039827 ], yJAB: [ 75.86262904408665, -7.5985740889908975, -3.7732116245328013 ] },
+  { name: "rhyhorn", xRGB: 82274.8470478847, xJAB: 4827.48699309507, yRGB: [ 150.07577870757788, 158.50860065086007, 171.46211064621107 ], yJAB: [ 66.97270461393333, -2.982332433168014, -7.458794479952322 ] },
+  { name: "thievul", xRGB: 69625.95913043479, xJAB: 4131.711256756952, yRGB: [ 150.98478260869564, 116.60782608695652, 102.26739130434783 ], yJAB: [ 54.17388613402061, 7.360368108445786, 6.518766366997148 ] },
+  { name: "groudon", xRGB: 62405.21223709369, xJAB: 4255.397978608154, yRGB: [ 173.2721478648821, 94.93201614616528, 87.54981941788826 ], yJAB: [ 55.9092414129157, 15.17611079480055, 9.620430966506417 ] },
+  { name: "polteageist", xRGB: 89654.34518828453, xJAB: 5442.040223333373, yRGB: [ 145.96600418410043, 158.98953974895397, 164.38755230125523 ], yJAB: [ 66.60473273995636, -3.2011366792180844, -3.958709854899587 ] },
+  { name: "thwackey", xRGB: 83112.27579852579, xJAB: 5771.566168439014, yRGB: [ 163.26105651105652, 165.78961916461915, 107.64649877149877 ], yJAB: [ 68.98336058513092, -3.2144277915430566, 13.515910060894507 ] },
+  { name: "zapdos-galar", xRGB: 31121.142355889726, xJAB: 2573.899356606857, yRGB: [ 131.23408521303259, 63.69273182957394, 27.813533834586465 ], yJAB: [ 38.9162840974384, 13.159905223955116, 13.598034260429788 ] },
+  { name: "shiftry", xRGB: 76966.83160237389, xJAB: 4928.814290179344, yRGB: [ 149.56973293768547, 155.08506429277944, 131.54821958456972 ], yJAB: [ 65.29437039652571, -1.9319364117223818, 6.047853484399109 ] },
+  { name: "cranidos", xRGB: 70491.20955670696, xJAB: 4280.364993157771, yRGB: [ 129.4329303396661, 148.03799654576858, 164.08865860679333 ], yJAB: [ 62.53976739316113, -4.801618429616758, -8.112517951635057 ] },
+  { name: "rotom", xRGB: 123098.36429215509, xJAB: 7338.4889937302405, yRGB: [ 191.59873760144274, 200.87285843101893, 189.6366095581605 ], yJAB: [ 82.50107292649797, -4.596462694052202, 1.1010663102828109 ] },
+  { name: "palpitoad", xRGB: 79130.04673342871, xJAB: 4887.326015952355, yRGB: [ 126.0205054840248, 155.24558893657607, 160.7176919408679 ], yJAB: [ 63.461256539461544, -6.415064965484249, -4.346477508321366 ] },
+  { name: "meganium", xRGB: 102111.04621715733, xJAB: 6985.7328025826055, yRGB: [ 197.2355175688509, 191.19214941437164, 140.5096549540994 ], yJAB: [ 79.53903908440326, -2.112658319677393, 12.593549036834112 ] },
+  { name: "kubfu", xRGB: 85431.56525285481, xJAB: 4937.143558822251, yRGB: [ 154.9061990212072, 151.22512234910278, 146.90864600326265 ], yJAB: [ 63.576035806478934, -0.2481553773733488, 0.7208558318950246 ] },
+  { name: "furfrou-debutante", xRGB: 107532.13336103033, xJAB: 6523.463002186027, yRGB: [ 195.91316992106357, 187.33194848358954, 159.1657665143332 ], yJAB: [ 77.51461094852483, -0.4504226006176841, 7.491327620188869 ] },
+  { name: "reuniclus", xRGB: 111918.5391960915, xJAB: 7335.821209441231, yRGB: [ 181.38241172551633, 212.5018876304686, 173.56007106373528 ], yJAB: [ 83.33337240720991, -10.015118123927099, 8.5340087930667 ] },
+  { name: "luvdisc", xRGB: 125666.38, xJAB: 7024.987596106244, yRGB: [ 231.44, 183.74, 183.48 ], yJAB: [ 81.65226499110896, 10.390718304487939, 3.625246772164738 ] },
+  { name: "heatran", xRGB: 73496.95871903928, xJAB: 4438.828839815965, yRGB: [ 157.31273455091318, 131.94671003252438, 121.69226920190142 ], yJAB: [ 59.55663951859194, 5.2427403095877345, 5.0816394229485295 ] },
+  { name: "avalugg", xRGB: 104644.9828009828, xJAB: 6123.462573138823, yRGB: [ 140.93292383292382, 185.85135135135135, 212.11990171990172 ], yJAB: [ 74.45979723091435, -10.44604954490592, -13.24715233263899 ] },
+  { name: "rotom-wash", xRGB: 70364.327908869, xJAB: 4812.979831898475, yRGB: [ 137.27949552481692, 140.35028478437755, 130.35638730675345 ], yJAB: [ 63.14883504483902, 0.09306720448622359, 1.9365670669094621 ] },
+  { name: "exeggutor-alola", xRGB: 78085.75944811037, xJAB: 5041.0181644576605, yRGB: [ 152.50509898020397, 163.80743851229755, 139.31493701259748 ], yJAB: [ 67.46308331285908, -5.0729361413562835, 6.487588517319065 ] },
+  { name: "omastar", xRGB: 107336.1768579492, xJAB: 6571.460605437143, yRGB: [ 167.7290686735654, 192.3254938852305, 178.89181561618062 ], yJAB: [ 77.21153484134902, -6.9187859762925505, 0.8221457433156428 ] },
+  { name: "toucannon", xRGB: 67375.67721518988, xJAB: 4169.236889780257, yRGB: [ 147.6937682570594, 128.71518987341773, 115.88753651411879 ], yJAB: [ 57.21821535304752, 2.545658471948399, 3.9606296487626826 ] },
+  { name: "doduo", xRGB: 84391.16423357664, xJAB: 5376.008902879721, yRGB: [ 190.35036496350364, 156.2728102189781, 127.4844890510949 ], yJAB: [ 69.5769339023285, 5.213062180953752, 9.416178266217528 ] },
+  { name: "diglett", xRGB: 75907.06867469879, xJAB: 4782.042957819334, yRGB: [ 172.9289156626506, 151.48433734939758, 135.7132530120482 ], yJAB: [ 66.8772980197744, 3.2879525477651086, 5.3634967408666165 ] },
+  { name: "gothita", xRGB: 97652.82432432432, xJAB: 5366.4663854953205, yRGB: [ 170.55405405405406, 156.6891891891892, 171.85135135135135 ], yJAB: [ 67.75310671514876, 4.028675383900527, -4.243264271589103 ] },
+  { name: "surskit", xRGB: 89599.13505747127, xJAB: 5523.50465577863, yRGB: [ 142.10632183908046, 172.66235632183907, 181.79741379310346 ], yJAB: [ 70.7094168385652, -7.635587369692596, -7.0255952023956105 ] },
+  { name: "azumarill", xRGB: 75170.21743849493, xJAB: 4676.182056052677, yRGB: [ 93.38929088277858, 150.33068017366136, 184.0416063675832 ], yJAB: [ 62.43335431018394, -8.25703548683661, -13.451705832072511 ] },
+  { name: "alomomola", xRGB: 106632.37313432836, xJAB: 5945.82997422063, yRGB: [ 210.32153518123667, 160.23496801705758, 173.76972281449895 ], yJAB: [ 73.94919033956853, 12.636576158794623, 0.08296510021846555 ] },
+  { name: "barbaracle", xRGB: 79899.50648779415, xJAB: 4794.022749950415, yRGB: [ 153.1308555091269, 149.0631185396965, 136.60567407081592 ], yJAB: [ 63.287740778333294, -1.1585301104376535, 3.2143854058031955 ] },
+  { name: "carkol", xRGB: 26237.94223933649, xJAB: 1500.7578898146974, yRGB: [ 69.03939573459715, 65.31161137440758, 63.54443127962085 ], yJAB: [ 29.060765458692362, 0.7279743256814166, 1.1378686903639859 ] },
+  { name: "cradily", xRGB: 93156.63057075841, xJAB: 5926.873284530489, yRGB: [ 181.49061767005472, 172.57857701329164, 149.46442533229086 ], yJAB: [ 73.2717065744278, 0.09309012585302041, 7.085567332400603 ] },
+  { name: "necrozma", xRGB: 23583.640781827788, xJAB: 1452.1530226018199, yRGB: [ 66.73058637083993, 68.01558372952985, 71.77205493924987 ], yJAB: [ 30.22547180467677, -0.9559455981552855, -3.1414413940088295 ] },
+  { name: "suicune", xRGB: 86047.18833396873, xJAB: 5147.246568663823, yRGB: [ 143.7708730461304, 162.68928707586733, 175.23675181090354 ], yJAB: [ 67.84069802024447, -4.698874800384389, -6.257015214664118 ] },
+  { name: "haunter", xRGB: 78740.40984340044, xJAB: 4370.137066388379, yRGB: [ 149.6456375838926, 137.5440715883669, 180.4586129753915 ], yJAB: [ 62.08541666928368, 4.702088379796048, -14.42947368359744 ] },
+  { name: "slowbro", xRGB: 118164.23243895086, xJAB: 6596.369236372071, yRGB: [ 204.9378956888755, 182.97678625263794, 188.20440156768163 ], yJAB: [ 78.57357924865802, 4.515894833357294, -0.4631009622898025 ] },
+  { name: "solrock", xRGB: 87129.36283185841, xJAB: 6057.681514712754, yRGB: [ 204.10619469026548, 161.75221238938053, 100.67256637168141 ], yJAB: [ 72.21231599542111, 5.334802197656701, 17.157958168160295 ] },
+  { name: "infernape", xRGB: 81955.12646793135, xJAB: 5417.387995565448, yRGB: [ 184.80909364649202, 144.69707919301416, 108.96687744655225 ], yJAB: [ 66.84303542394133, 5.898121125935093, 9.856932947517743 ] },
+  { name: "slowpoke-galar", xRGB: 85371.50163934426, xJAB: 5399.869420716644, yRGB: [ 202.4967213114754, 131.07950819672132, 125.26803278688524 ], yJAB: [ 65.8746943229156, 15.436633272666464, 6.101873472340784 ] },
+  { name: "rattata-alola", xRGB: 49395.08529411765, xJAB: 3180.3819013676775, yRGB: [ 121.25514705882352, 121.07867647058823, 109.25882352941177 ], yJAB: [ 52.07775750799461, -1.6547173556695345, 3.5634894479275934 ] },
+  { name: "swinub", xRGB: 62205.84435797665, xJAB: 4132.076166768308, yRGB: [ 167.8501945525292, 126.30933852140078, 101.80155642023347 ], yJAB: [ 59.33070414807731, 8.456756955307133, 10.50022647611863 ] },
+  { name: "shroomish", xRGB: 114415.18910585817, xJAB: 6668.189878813849, yRGB: [ 196.31243576567317, 191.5950668036999, 174.28057553956833 ], yJAB: [ 78.91470334737707, -0.9984441090405898, 5.040196660328448 ] },
+  { name: "dragapult", xRGB: 58679.33718892394, xJAB: 4030.958929650686, yRGB: [ 97.36347704171048, 132.27795303189626, 137.90816684192077 ], yJAB: [ 55.30196759094396, -8.217771240321882, -5.118173158028072 ] },
+  { name: "stoutland", xRGB: 91347.21057786484, xJAB: 5447.2924495304105, yRGB: [ 167.68560235063663, 160.97967678746326, 144.75391772771792 ], yJAB: [ 66.99714948020376, -0.366624455185606, 3.0267198054591384 ] },
+  { name: "shiinotic", xRGB: 93482.39025119618, xJAB: 5514.3732719174, yRGB: [ 185.38666267942583, 163.88815789473685, 160.57296650717703 ], yJAB: [ 71.6694284581509, 4.748543007337247, 2.2739539375421858 ] },
+  { name: "deerling-summer", xRGB: 79037.76380153738, xJAB: 5885.8178484653245, yRGB: [ 148.06988120195666, 176.89028651292801, 107.34591194968553 ], yJAB: [ 70.9413652858026, -8.505692009475279, 13.889209929742927 ] },
+  { name: "ekans", xRGB: 88002.4414587332, xJAB: 4882.665410631028, yRGB: [ 180.4088291746641, 140.16026871401152, 174.22552783109404 ], yJAB: [ 66.08977452221325, 11.9170375642768, -7.516514401784075 ] },
+  { name: "lickitung", xRGB: 121070.04904051173, xJAB: 6766.603868558457, yRGB: [ 222.2505330490405, 181.91631130063965, 183.69243070362472 ], yJAB: [ 80.20093728279188, 9.307754600542564, 2.4269577390998918 ] },
+  { name: "anorith", xRGB: 71449.00135135135, xJAB: 4413.443786008968, yRGB: [ 144.27027027027026, 146.82027027027027, 139.44594594594594 ], yJAB: [ 62.15385352171204, -2.3724087601530575, 1.8450650094459946 ] },
+  { name: "spinda", xRGB: 111441.86677282378, xJAB: 6392.787156216307, yRGB: [ 205.34447983014863, 168.95329087048833, 161.06687898089172 ], yJAB: [ 74.55577674789349, 7.096327933977826, 5.239637093738548 ] },
+  { name: "shelmet", xRGB: 85842.3802163833, xJAB: 5099.28390518158, yRGB: [ 178.06646058732613, 147.15378670788255, 144.8678516228748 ], yJAB: [ 66.41408293206518, 6.316079471321435, 3.3933572644788863 ] },
+  { name: "dewpider", xRGB: 79301.37113402062, xJAB: 5052.524000436351, yRGB: [ 137.10767468499427, 160.7033218785796, 141.12256586483392 ], yJAB: [ 65.03886019042903, -8.228100498362604, 1.388435734237795 ] },
+  { name: "porygon2", xRGB: 83858.54474097332, xJAB: 5244.619787091153, yRGB: [ 164.4756671899529, 138.0949764521193, 161.9536891679749 ], yJAB: [ 66.3363657123642, 6.079125856659499, -4.383045759130236 ] },
+  { name: "chatot", xRGB: 67244.87336244542, xJAB: 4353.627919658623, yRGB: [ 127.73013100436681, 137.32139737991267, 120.88558951965065 ], yJAB: [ 58.064550033229615, -3.388013264204322, 2.238070414251771 ] },
+  { name: "sealeo", xRGB: 118122.61160949868, xJAB: 6838.554987410611, yRGB: [ 164.734036939314, 197.1282321899736, 206.09920844327178 ], yJAB: [ 79.25964539483307, -6.655504191396891, -5.606146771959945 ] },
+  { name: "zamazenta", xRGB: 43486.33514596451, xJAB: 2973.9324933067255, yRGB: [ 117.84487693188323, 68.8073840870063, 103.74298797939325 ], yJAB: [ 42.65487631249498, 11.264655904932805, -4.865304902596247 ] },
+  { name: "rillaboom", xRGB: 53139.66151560178, xJAB: 3696.418727805706, yRGB: [ 117.60178306092125, 123.77607726597326, 88.58023774145617 ], yJAB: [ 52.780354899424026, -1.892838681090423, 9.873739046784308 ] },
+  { name: "walrein", xRGB: 93419.86125211506, xJAB: 5511.332558961314, yRGB: [ 132.85984207557811, 172.66074450084602, 187.69994359842076 ], yJAB: [ 69.63914810428905, -8.870771847595847, -8.839989105696475 ] },
+  { name: "ninetales", xRGB: 114249.69023383768, xJAB: 7891.236069889677, yRGB: [ 220.47620357634113, 210.55680880330124, 125.58486932599725 ], yJAB: [ 84.87707487196909, -3.226439396811034, 19.474057967125063 ] },
+  { name: "darumaka-galar", xRGB: 92706.78553299492, xJAB: 5383.330850465992, yRGB: [ 137.64720812182742, 161.01776649746193, 164.30837563451777 ], yJAB: [ 65.2075746345354, -5.552783574109639, -3.1810312025940517 ] },
+  { name: "shuckle", xRGB: 94110.2897897898, xJAB: 6764.937164907968, yRGB: [ 215.94594594594594, 168.9024024024024, 91.61111111111111 ], yJAB: [ 75.88438525595873, 5.157588076181047, 19.037827437795052 ] },
+  { name: "aron", xRGB: 108895.14489990467, xJAB: 5960.48439958674, yRGB: [ 169.07626310772164, 173.40324118207818, 176.87130600571973 ], yJAB: [ 70.9610381482109, -1.963220092457865, -2.3751757208635063 ] },
+  { name: "slowking", xRGB: 120391.95180722892, xJAB: 6757.8730489296995, yRGB: [ 212.37951807228916, 185.25903614457832, 183.84337349397592 ], yJAB: [ 79.78287614979949, 5.43024589365181, 2.0939046575156364 ] },
+  { name: "hippowdon", xRGB: 50283.048438867816, xJAB: 3670.6089775778682, yRGB: [ 135.67259994163993, 125.89028304639626, 89.39509775313685 ], yJAB: [ 54.74525688462567, -0.6873722549043286, 8.518294220316239 ] },
+  { name: "typhlosion", xRGB: 119290.36652332121, xJAB: 7843.576767229027, yRGB: [ 218.01389348329474, 208.90936156136289, 143.02381739993385 ], yJAB: [ 84.20627548313395, -2.5128621187629823, 14.8147842610532 ] },
+  { name: "deerling-autumn", xRGB: 91438.91334730957, xJAB: 6083.3880411410255, yRGB: [ 200.74493361285815, 167.3508036338225, 112.71558350803633 ], yJAB: [ 73.37849505746455, 3.5986978195697783, 13.885412399625878 ] },
+  { name: "zacian", xRGB: 52875.0811550152, xJAB: 3445.3134447992875, yRGB: [ 110.96960486322189, 96.20790273556231, 120.85379939209726 ], yJAB: [ 47.950529167181564, 4.617809251353838, -5.510666592981472 ] },
+  { name: "indeedee", xRGB: 56339.342366757, xJAB: 3139.118892631792, yRGB: [ 112.42095754290877, 104.07407407407408, 135.85546522131887 ], yJAB: [ 46.88319988767038, 3.419992706804088, -11.544534688301074 ] },
+  { name: "articuno-galar", xRGB: 70647.50751173709, xJAB: 3726.8903713826217, yRGB: [ 121.36760563380281, 106.92018779342723, 153.46666666666667 ], yJAB: [ 49.49746365302899, 4.384040147228259, -13.447936433787422 ] },
+  { name: "chesnaught", xRGB: 88069.1086, xJAB: 5515.993888914002, yRGB: [ 170.3774, 166.3552, 140.2228 ], yJAB: [ 69.69114914563634, -1.0536655780798154, 7.644964008257115 ] },
+  { name: "sneasel", xRGB: 58606.69533333334, xJAB: 3688.3056878657967, yRGB: [ 118.388, 123.692, 137.19 ], yJAB: [ 54.626332770937445, -2.036234119380434, -6.4981204118996025 ] },
+  { name: "vivillon-archipelago", xRGB: 46494.21445872927, xJAB: 3382.7676544040323, yRGB: [ 148.07452953232718, 102.11086267933669, 84.09726103968697 ], yJAB: [ 52.012266433386515, 9.75533912675034, 9.29839474349525 ] },
+  { name: "carvanha", xRGB: 71282.29193697868, xJAB: 4790.979471225199, yRGB: [ 159.38090824837812, 139.37164040778498, 126.05838739573679 ], yJAB: [ 63.64991943467428, 3.9126295238075812, 4.915177268007419 ] },
+  { name: "kyogre", xRGB: 78415.90760059613, xJAB: 4539.745085784236, yRGB: [ 102.22168405365127, 137.98248882265275, 185.56855439642325 ], yJAB: [ 58.91873577972941, -5.170215299768919, -16.56775086939285 ] },
+  { name: "trapinch", xRGB: 89981.6932038835, xJAB: 5852.344408968634, yRGB: [ 221.15404530744337, 151.06343042071197, 117.29449838187702 ], yJAB: [ 72.54715775069137, 12.71403674181382, 13.018564343173495 ] },
+  { name: "deoxys-defense", xRGB: 82368.4870512066, xJAB: 5656.130837642041, yRGB: [ 201.22336668628606, 149.08269570335491, 108.47881106533255 ], yJAB: [ 70.53004627536627, 8.311591108676582, 12.467285718494198 ] },
+  { name: "krokorok", xRGB: 59962.553975776726, xJAB: 3981.1695116681904, yRGB: [ 153.3312269615587, 125.92890995260663, 102.15218536071616 ], yJAB: [ 56.971441874191235, 4.425894006785847, 7.93242158211769 ] },
+  { name: "florges-orange", xRGB: 74642.27777777778, xJAB: 5141.742742575544, yRGB: [ 142.44042838018743, 162.00066934404285, 132.25635876840695 ], yJAB: [ 67.24765268086202, -6.15046913961224, 6.415153995943079 ] },
+  { name: "thundurus-therian", xRGB: 90408.69117252482, xJAB: 5120.97523951587, yRGB: [ 144.98577944727663, 156.15186477059297, 177.3072176012879 ], yJAB: [ 65.18968080698122, -2.7063590523754626, -8.73331978457091 ] },
+  { name: "tapu-lele", xRGB: 67791.64689378758, xJAB: 4027.174525825558, yRGB: [ 165.30581162324648, 115.64889779559118, 125.37034068136272 ], yJAB: [ 57.10845615542005, 12.353582791708305, 1.8478326774330331 ] },
+  { name: "pineco", xRGB: 34106.34707520891, xJAB: 2406.8375868936646, yRGB: [ 73.28467966573817, 103.94150417827298, 99.63231197771587 ], yJAB: [ 42.74072991429094, -10.04536724334579, -1.5848892712185942 ] },
+  { name: "vivillon-tundra", xRGB: 105079.75298507462, xJAB: 5984.954551547971, yRGB: [ 145.69253731343284, 178.7125, 198.11026119402985 ], yJAB: [ 71.76890302495231, -8.12940375164331, -9.971140964819563 ] },
+  { name: "ditto", xRGB: 126722.62946428571, xJAB: 6675.160265797401, yRGB: [ 203.77232142857142, 183.5544642857143, 219.40625 ], yJAB: [ 79.6468587109623, 6.8155534621797385, -11.216269593294403 ] },
+  { name: "vivillon-sandstorm", xRGB: 80510.92898415658, xJAB: 5204.67176283774, yRGB: [ 174.44883504193848, 155.5951537744641, 121.24026095060577 ], yJAB: [ 66.62289141918822, 1.4877650622751168, 9.839186676146436 ] },
+  { name: "misdreavus", xRGB: 58592.43625377643, xJAB: 3858.1142341674135, yRGB: [ 104.16737160120846, 137.33534743202418, 153.7190332326284 ], yJAB: [ 57.89710554388727, -8.17617927645801, -9.209491783255576 ] },
+  { name: "arctovish", xRGB: 86183.89650949174, xJAB: 4903.446772870227, yRGB: [ 119.45805266380894, 151.54255970606246, 189.5817513778322 ], yJAB: [ 62.62850946548139, -6.305397162575908, -15.48207588560788 ] },
+  { name: "rapidash-galar", xRGB: 98990.36262295082, xJAB: 5647.829271926232, yRGB: [ 169.54590163934427, 147.92885245901638, 182.89573770491802 ], yJAB: [ 67.62513886025087, 5.0768088713583, -6.355175348935575 ] },
+  { name: "weedle", xRGB: 94874.2790368272, xJAB: 5997.556354015162, yRGB: [ 200.8456090651558, 167.39943342776203, 134.12181303116148 ], yJAB: [ 73.31575496116685, 5.001769820180483, 10.083565378132333 ] },
+  { name: "pansage", xRGB: 70061.58861788618, xJAB: 5623.69674749814, yRGB: [ 117.40596205962059, 179.53658536585365, 122.51056910569106 ], yJAB: [ 69.90613447911821, -14.309620894613607, 11.433692616194715 ] },
+  { name: "diglett-alola", xRGB: 55043.091688089116, xJAB: 3538.251460471812, yRGB: [ 138.5304198800343, 122.6203941730934, 109.67523564695801 ], yJAB: [ 54.66215202572432, 1.9724427617618818, 4.302476903362651 ] },
+  { name: "venusaur", xRGB: 90849.48157370518, xJAB: 5853.952841817981, yRGB: [ 145.2026892430279, 175.56225099601593, 169.6613545816733 ], yJAB: [ 71.75229385069987, -7.6193597635804595, -1.3858283516474714 ] },
+  { name: "zigzagoon", xRGB: 74056.01618122977, xJAB: 4529.359374810416, yRGB: [ 158.1495145631068, 149.02783171521037, 135.5598705501618 ], yJAB: [ 63.984805215461634, 0.725968417952346, 4.628838054562921 ] },
+  { name: "kyurem", xRGB: 100554.2665388303, xJAB: 5817.8033340743, yRGB: [ 162.76861617130072, 178.74177053371685, 181.7027804410355 ], yJAB: [ 72.9578582725777, -5.315339928328347, -3.3546453468695288 ] },
+  { name: "stunky", xRGB: 59123.19432120674, xJAB: 3413.370260560043, yRGB: [ 127.04747116237799, 110.122892635315, 127.0248447204969 ], yJAB: [ 49.49206811484752, 5.896602209758382, -5.8367215613134125 ] },
+  { name: "whiscash", xRGB: 60337.56540880503, xJAB: 3848.934777652174, yRGB: [ 107.70943396226416, 126.85849056603773, 141.66666666666666 ], yJAB: [ 53.62386469577418, -4.902035592373029, -8.128673744552072 ] },
+  { name: "noctowl", xRGB: 68004.78979099679, xJAB: 4467.596909841225, yRGB: [ 170.45779742765274, 138.45297427652733, 110.99879421221866 ], yJAB: [ 62.523284722990205, 5.6628644531946755, 9.949413890055162 ] },
+  { name: "decidueye", xRGB: 74488.98596491228, xJAB: 5099.372435763911, yRGB: [ 153.25454545454545, 157.81690590111643, 122.88421052631578 ], yJAB: [ 66.70905394155959, -2.5371614347031097, 9.575599573977273 ] },
+  { name: "mawile", xRGB: 55177.99242806663, xJAB: 3545.703805576406, yRGB: [ 125.79656739020696, 123.18778394750126, 106.57395254921757 ], yJAB: [ 52.50831419208761, -1.4079632041141457, 3.8043378170109934 ] },
+  { name: "lugia", xRGB: 133326.2956263499, xJAB: 7156.66279427832, yRGB: [ 196.74838012958963, 199.5939524838013, 213.19303455723542 ], yJAB: [ 81.53242790519961, -1.3231680031824666, -6.125708429958071 ] },
+  { name: "farfetchd-galar", xRGB: 45836.86490156144, xJAB: 2955.8521382639588, yRGB: [ 105.95179904955873, 102.46707399864222, 85.58384249830279 ], yJAB: [ 44.59930492663349, -0.4314877131120538, 4.610069166597398 ] },
+  { name: "furfrou-matron", xRGB: 96549.24125874125, xJAB: 5501.253784296066, yRGB: [ 185.833479020979, 161.02447552447552, 165.0590034965035 ], yJAB: [ 70.68628494872794, 5.992583224982144, 0.7214245912409463 ] },
+  { name: "lycanroc-dusk", xRGB: 95364.73120886734, xJAB: 5576.160957618199, yRGB: [ 174.27641149982682, 160.53706269483894, 142.09092483546934 ], yJAB: [ 68.22933431557198, 0.7109575739227123, 4.470684512426794 ] },
+  { name: "wormadam-trash", xRGB: 72228.25651658767, xJAB: 4356.144399740148, yRGB: [ 179.14454976303318, 123.64277251184834, 133.80450236966826 ], yJAB: [ 61.29527817920392, 13.199830164228132, 2.0686860996855 ] },
+  { name: "pidgey", xRGB: 98485.12475442044, xJAB: 6188.534098683711, yRGB: [ 193.4459724950884, 177.04715127701374, 138.12082514734774 ], yJAB: [ 74.25614591432674, 0.9356841314183877, 10.830775328530175 ] },
+  { name: "dodrio", xRGB: 72338.10411105178, xJAB: 4581.980107845822, yRGB: [ 166.5056059797117, 140.3021890016017, 118.17405232247731 ], yJAB: [ 62.336925471651185, 4.014662865247637, 7.41379499903463 ] },
+  { name: "chikorita", xRGB: 108510.91341256366, xJAB: 7135.4418452565915, yRGB: [ 186.1629881154499, 203.7546689303905, 152.55263157894737 ], yJAB: [ 80.67412528192715, -7.226881074331481, 12.072449240902289 ] },
+  { name: "lopunny", xRGB: 93345.4323905463, xJAB: 6060.807415036599, yRGB: [ 199.71212708252617, 170.45447500968618, 126.02130956993413 ], yJAB: [ 73.53609405298195, 3.6972319319164195, 13.3011264128933 ] },
+  { name: "tympole", xRGB: 84534.58028792913, xJAB: 5175.700674285825, yRGB: [ 158.23366555924696, 155.65448504983388, 135.34108527131784 ], yJAB: [ 64.62405143354995, -1.3549217956725563, 4.744447088896761 ] },
+  { name: "purugly", xRGB: 93207.86239737274, xJAB: 5270.741331835947, yRGB: [ 165.0144499178982, 162.51888341543514, 173.1264367816092 ], yJAB: [ 68.89202529863714, -0.16086793828306273, -4.76829190729339 ] },
+  { name: "tapu-fini", xRGB: 57685.1517101253, xJAB: 3289.2872819692107, yRGB: [ 113.45445309854385, 112.98611581442601, 139.45750084659667 ], yJAB: [ 49.86206476624142, 0.08516855937071811, -9.772042824075275 ] },
+  { name: "vibrava", xRGB: 63813.80316930776, xJAB: 4480.107934526255, yRGB: [ 124.14678899082568, 146.50625521267722, 114.23603002502085 ], yJAB: [ 59.55041753126352, -6.253266564334093, 6.696969636103616 ] },
+  { name: "druddigon", xRGB: 50781.10313115831, xJAB: 3445.4089511649477, yRGB: [ 79.24523757389971, 111.39522662579374, 132.07291438581126 ], yJAB: [ 50.56802085554355, -2.9546464316349623, -7.677263821940417 ] },
+  { name: "stakataka", xRGB: 41830.82613851992, xJAB: 2726.364573320636, yRGB: [ 105.11681688804553, 113.53154648956357, 113.71050759013282 ], yJAB: [ 49.195262661697015, -3.311489371126138, -1.5068089009025867 ] },
+  { name: "delcatty", xRGB: 86499.3707596751, xJAB: 5220.203784745788, yRGB: [ 182.54897276636407, 152.0984233158146, 150.75011944577162 ], yJAB: [ 68.10330402842334, 7.275694653816914, 1.593824644323859 ] },
+  { name: "zoroark", xRGB: 30526.007950530035, xJAB: 2083.937266582696, yRGB: [ 105.31890459363957, 68.23527679623086, 80.80005889281507 ], yJAB: [ 37.555249005287244, 9.434024509884868, -1.2228040390968646 ] },
+  { name: "hatterene", xRGB: 112356.82392667631, xJAB: 6166.252307981577, yRGB: [ 181.79787747226243, 170.11384466956102, 192.2590448625181 ], yJAB: [ 73.05893069269459, 2.761806194444764, -7.294201464828506 ] },
+  { name: "togekiss", xRGB: 141887.57406431207, xJAB: 7784.708047746722, yRGB: [ 205.10226673695308, 216.14285714285714, 215.847127042699 ], yJAB: [ 86.50474532218794, -4.952953093109818, -1.8513982921554566 ] },
+  { name: "musharna", xRGB: 121518.94815789473, xJAB: 6631.893296386089, yRGB: [ 217.33157894736843, 176.36157894736843, 195.6834210526316 ], yJAB: [ 78.86443964451475, 10.043515595050595, -2.9046767804730904 ] },
+  { name: "frosmoth", xRGB: 137409.40740740742, xJAB: 7385.780272252778, yRGB: [ 205.3466972126766, 204.03589156166476, 210.0225276823215 ], yJAB: [ 83.14993757404471, -0.3405341890201177, -3.4415300537534823 ] },
+  { name: "elekid", xRGB: 87845.20176630435, xJAB: 6272.843073375675, yRGB: [ 186.5149456521739, 174.1460597826087, 101.0991847826087 ], yJAB: [ 71.89101055586039, -2.1733041993192814, 16.467318443271637 ] },
+  { name: "poliwhirl", xRGB: 85209.565351418, xJAB: 4822.204313524972, yRGB: [ 138.0123304562269, 151.64796547472255, 171.2577065351418 ], yJAB: [ 63.226868415986324, -3.4889790351262064, -8.636812974491454 ] },
+  { name: "meowth-galar", xRGB: 47737.74565972222, xJAB: 2994.6190899544254, yRGB: [ 116.18836805555556, 107.35243055555556, 101.07638888888889 ], yJAB: [ 47.49157311848663, 1.452833243851368, 1.8221880722774284 ] },
+  { name: "quilava", xRGB: 77228.71178707224, xJAB: 5045.141461154716, yRGB: [ 138.67604562737642, 155.0296577946768, 133.6342205323194 ], yJAB: [ 64.0209081755157, -5.350766253312744, 3.0677146301075418 ] },
+  { name: "dugtrio", xRGB: 79153.35011185682, xJAB: 5014.482032659766, yRGB: [ 180.37304250559285, 154.4927293064877, 134.19351230425056 ], yJAB: [ 68.38382243403437, 4.091892682115448, 6.906876065646832 ] },
+  { name: "roselia", xRGB: 72368.26234979973, xJAB: 4981.7108058442445, yRGB: [ 143.8871829105474, 152.73898531375167, 136.76034712950602 ], yJAB: [ 65.15764423822867, -3.6218357915083277, 3.2790416715293973 ] },
+  { name: "phantump", xRGB: 42562.294375, xJAB: 2915.7608129886216, yRGB: [ 115.185625, 109.448125, 96.528125 ], yJAB: [ 48.755033597815256, 0.039057365254684014, 3.3164270098693316 ] },
+  { name: "butterfree", xRGB: 97886.31288343559, xJAB: 5410.4815253052375, yRGB: [ 160.83435582822085, 161.17177914110428, 166.57668711656441 ], yJAB: [ 66.98324122792155, -1.0845140388176815, -2.962654062220127 ] },
+  { name: "metang", xRGB: 61486.15963107485, xJAB: 3867.729964909556, yRGB: [ 97.53139411138702, 136.93472862717275, 152.487406881873 ], yJAB: [ 56.03320838585421, -9.707158086317774, -9.550541268574179 ] },
+  { name: "seadra", xRGB: 108756.7813095995, xJAB: 6506.349688658152, yRGB: [ 155.74507310870948, 194.25174825174824, 200.17418944691673 ], yJAB: [ 77.35818790295575, -10.001069620385646, -6.219520126039121 ] },
+  { name: "servine", xRGB: 89462.38711819389, xJAB: 6428.794041060261, yRGB: [ 165.93625498007967, 188.83997343957503, 123.47011952191235 ], yJAB: [ 75.35750157725144, -8.114718319495978, 14.088161932031278 ] },
+  { name: "dartrix", xRGB: 92927.85066570708, xJAB: 5698.120369673029, yRGB: [ 174.99424253328536, 168.85606333213386, 143.724721122706 ], yJAB: [ 70.58592352690057, -0.357322496334557, 7.105339217162099 ] },
+  { name: "paras", xRGB: 89177.06604651162, xJAB: 5956.249997506702, yRGB: [ 202.60837209302326, 159.48372093023255, 107.42418604651162 ], yJAB: [ 71.46770885726117, 5.952976897709637, 13.32708120576779 ] },
+  { name: "ralts", xRGB: 113274.73442622951, xJAB: 6851.698747175544, yRGB: [ 185.1792349726776, 196.64262295081969, 178.67650273224044 ], yJAB: [ 79.80991633617298, -4.45424863488981, 3.672139569786401 ] },
+  { name: "kyurem-black", xRGB: 86911.32618379805, xJAB: 5071.627450137265, yRGB: [ 135.5764725292856, 161.5603035802673, 172.2719023263488 ], yJAB: [ 65.78140172100684, -7.099829668933111, -6.552350968266567 ] },
+  { name: "octillery", xRGB: 65938.67445403758, xJAB: 4803.752759068835, yRGB: [ 212.06399187404773, 96.52615540883697, 76.30573895378365 ], yJAB: [ 60.964882094844434, 23.012697990435996, 14.8670179993075 ] },
+  { name: "poliwrath", xRGB: 84374.61049610496, xJAB: 4783.117180705867, yRGB: [ 135.03116031160312, 151.25748257482576, 175.90364903649038 ], yJAB: [ 63.189248767753746, -3.8083138303588897, -10.727953202999718 ] },
+  { name: "terrakion", xRGB: 69050.0217972445, xJAB: 4272.500297868445, yRGB: [ 154.24799506477484, 139.54122969360478, 127.96319144560971 ], yJAB: [ 61.13285656266184, 2.143205945356464, 3.712200993035242 ] },
+  { name: "swablu", xRGB: 139010.93605359318, xJAB: 7579.260010894226, yRGB: [ 192.2076735688185, 211.39220462850182, 221.64190012180268 ], yJAB: [ 84.55636500763914, -5.192302405468421, -5.996978090156383 ] },
+  { name: "spectrier", xRGB: 38436.53723616089, xJAB: 2126.2912410927847, yRGB: [ 82.25686977299881, 75.07287933094385, 119.56113102349661 ], yJAB: [ 36.431539729379686, 2.069758210330884, -12.70777646206875 ] },
+  { name: "magmar", xRGB: 80049.09769658459, xJAB: 5768.485567499664, yRGB: [ 203.59491660047658, 141.68467037331214, 81.73232724384432 ], yJAB: [ 68.2556072879996, 9.418389575626875, 17.335844522466658 ] },
+  { name: "cinccino", xRGB: 131809.4246186591, xJAB: 7250.817305931885, yRGB: [ 209.26463284852784, 202.64916637105355, 201.6903157147925 ], yJAB: [ 83.50564389240031, 0.25580561543586056, 0.10941101210125061 ] },
+  { name: "boldore", xRGB: 25473.54375, xJAB: 1831.8607586712228, yRGB: [ 79.025, 65.93125, 78.3 ], yJAB: [ 32.885370201504664, 2.4862740803545935, -6.216737834517368 ] },
+  { name: "drizzile", xRGB: 87686.60878405855, xJAB: 5508.947818416558, yRGB: [ 116.7547783651891, 170.35095567303782, 172.2464416429443 ], yJAB: [ 67.6824189875199, -10.543751692780509, -5.965658949011108 ] },
+  { name: "mantine", xRGB: 85108.19785105594, xJAB: 4836.233070282652, yRGB: [ 146.7139681363468, 152.76065209336792, 168.9544275657651 ], yJAB: [ 64.4129665576359, -1.5110445863659223, -7.662242322759202 ] },
+  { name: "boltund", xRGB: 92817.20845070423, xJAB: 5733.776865682701, yRGB: [ 170.3718309859155, 170.72032193158952, 134.8221327967807 ], yJAB: [ 70.05438442814634, -3.8308015118518504, 7.378279662151873 ] },
+  { name: "milcery", xRGB: 120060.89887640449, xJAB: 7615.0489218282655, yRGB: [ 213.0308988764045, 203.72331460674158, 145.86657303370785 ], yJAB: [ 82.10920624478484, -1.9600106980049092, 14.429985393779146 ] },
+  { name: "tornadus-incarnate", xRGB: 92192.58929088278, xJAB: 5450.3965904659135, yRGB: [ 166.74761215629522, 158.83068017366136, 166.1178002894356 ], yJAB: [ 68.51298491619357, 1.4248782130772908, -2.554816497986863 ] },
+  { name: "zarude", xRGB: 19787.34736842105, xJAB: 1530.1064023233123, yRGB: [ 63.66896551724138, 73.36987295825772, 64.67150635208712 ], yJAB: [ 31.8872225273591, -3.00804510782993, 0.5431385660393732 ] },
+  { name: "glaceon", xRGB: 92617.67137425313, xJAB: 5559.965939390713, yRGB: [ 128.41879413362304, 175.6235741444867, 180.6469310157523 ], yJAB: [ 69.71267638201107, -11.556316410651352, -5.868903072372323 ] },
+  { name: "pidove", xRGB: 79963.51543498597, xJAB: 4694.634562883961, yRGB: [ 153.6997193638915, 148.16557530402244, 143.09260991580916 ], yJAB: [ 63.09403635681236, -0.09187608225033343, 1.5350598538413227 ] },
+  { name: "skarmory", xRGB: 89199.74135338346, xJAB: 5104.6265229088385, yRGB: [ 164.95538847117794, 153.10225563909773, 164.52080200501254 ], yJAB: [ 66.75121820681754, 2.744183805341094, -4.145961861831411 ] },
+  { name: "salamence", xRGB: 63706.95161290323, xJAB: 4125.196463261964, yRGB: [ 125.48790322580645, 127.98790322580645, 144.24193548387098 ], yJAB: [ 57.98891411696805, 1.509252695404829, -4.27164078634446 ] },
+  { name: "jolteon", xRGB: 102238.0098265896, xJAB: 6852.9551356259, yRGB: [ 197.61271676300578, 186.25317919075144, 123.31387283236994 ], yJAB: [ 76.801057190289, -2.020301946116265, 12.74811970402497 ] },
+  { name: "tyrunt", xRGB: 52388.974043114824, xJAB: 3235.2310198010646, yRGB: [ 133.6066871975363, 116.15046194456666, 109.52397712274526 ], yJAB: [ 52.30384804887952, 3.8988928322073915, 3.3508900566752753 ] },
+  { name: "eevee", xRGB: 72653.20512820513, xJAB: 4883.310169945362, yRGB: [ 179.17948717948718, 138.53846153846155, 93.12820512820512 ], yJAB: [ 63.063815879368036, 6.38682929423123, 14.498556794400429 ] },
+  { name: "nidoqueen", xRGB: 93178.84107657801, xJAB: 5548.409914051134, yRGB: [ 149.04005126561998, 171.29637936558794, 183.54661967318168 ], yJAB: [ 70.49240775849307, -5.961102571498733, -7.516633957909868 ] },
+  { name: "petilil", xRGB: 104212.56116102281, xJAB: 7222.228022943004, yRGB: [ 182.65307532826537, 203.89426399447132, 135.90601243953006 ], yJAB: [ 80.20295256965706, -8.451542998465078, 14.573106338863852 ] },
+  { name: "pyroar", xRGB: 70976.62012211309, xJAB: 5011.684932643068, yRGB: [ 198.95009291213168, 123.35041146801169, 90.60047783382002 ], yJAB: [ 64.09320775102715, 13.874231010648801, 14.082518901736515 ] },
+  { name: "linoone-galar", xRGB: 60836.75411836486, xJAB: 3407.1290161175075, yRGB: [ 114.72300183038438, 110.71201952410006, 111.48139109212934 ], yJAB: [ 47.26515114129565, 0.056426335299653366, -0.3258085773049726 ] },
+  { name: "drapion", xRGB: 70843.44983748646, xJAB: 3996.4326252025794, yRGB: [ 156.790465872156, 112.07107258938245, 152.2632719393283 ], yJAB: [ 56.08096015318068, 13.258536171656042, -7.702712637662202 ] },
+  { name: "alcremie", xRGB: 109817.8596112311, xJAB: 6266.815571437425, yRGB: [ 207.89992800575953, 163.12598992080635, 158.90856731461483 ], yJAB: [ 73.18347463921127, 9.60868799127836, 4.8057833141908 ] },
+  { name: "gastly", xRGB: 51051.531627576405, xJAB: 2888.5433001936317, yRGB: [ 116.14854299928926, 101.91542288557214, 126.39445628997868 ], yJAB: [ 46.72219355868907, 5.506282403244307, -8.679530853954875 ] },
+  { name: "toxtricity", xRGB: 79419.18045334118, xJAB: 4871.966094264278, yRGB: [ 157.41095083897557, 135.899028554607, 141.62731822196056 ], yJAB: [ 60.390964583463614, 4.393687370783614, -3.6514069389710135 ] },
+  { name: "lumineon", xRGB: 65174.98003992016, xJAB: 3967.2702040178856, yRGB: [ 105.38473053892216, 135.38922155688624, 139.02844311377245 ], yJAB: [ 54.45396061865181, -9.228603920028997, -5.206408022064129 ] },
+  { name: "toxicroak", xRGB: 66324.32137030995, xJAB: 4101.8447205708335, yRGB: [ 125.89151712887438, 129.739396411093, 156.14070146818923 ], yJAB: [ 58.223264347837095, -0.7142585364198788, -9.61438525404403 ] },
+  { name: "machoke", xRGB: 96139.85859796286, xJAB: 5402.942230744086, yRGB: [ 167.71839424805273, 164.23996405032955, 181.08717795086878 ], yJAB: [ 70.09792134530564, 1.0476967382980975, -7.668137527749792 ] },
+  { name: "darumaka", xRGB: 62664.692700729924, xJAB: 4386.418168338883, yRGB: [ 185.77153284671533, 109.43284671532847, 88.41240875912409 ], yJAB: [ 58.73387428376008, 16.11499383564331, 12.063075671335694 ] },
+  { name: "swellow", xRGB: 48915.61806020067, xJAB: 2954.6119659714645, yRGB: [ 110.6989966555184, 97.05351170568562, 120.79665551839464 ], yJAB: [ 45.27847978809233, 3.449891375488828, -8.617407427238275 ] },
+  { name: "mr-mime", xRGB: 91809.21578947369, xJAB: 5217.447896818422, yRGB: [ 162.29780701754385, 150.66622807017544, 165.49649122807017 ], yJAB: [ 65.97037578516661, 2.832839384196668, -4.289423075465177 ] },
+  { name: "exploud", xRGB: 85998.26911314984, xJAB: 4983.242931373997, yRGB: [ 156.62181447502547, 154.06141692150865, 173.66946992864425 ], yJAB: [ 66.50734606394461, 0.7897338962631524, -8.978867992596808 ] },
+  { name: "floette-blue", xRGB: 88270.21980337078, xJAB: 5549.505984370754, yRGB: [ 146.20716292134833, 171.3251404494382, 155.35182584269663 ], yJAB: [ 69.2880298298468, -6.998520938772934, 1.3411407100824901 ] },
+  { name: "pancham", xRGB: 83750.34147909968, xJAB: 4915.248998381598, yRGB: [ 150.57299035369775, 151.63344051446944, 139.01736334405146 ], yJAB: [ 62.38313681466977, -1.9983615034043978, 2.3284262309705714 ] },
+  { name: "growlithe", xRGB: 101524.0326923077, xJAB: 6315.330042716968, yRGB: [ 206.29935897435897, 173.6179487179487, 137.04615384615386 ], yJAB: [ 75.20657820318489, 4.4422821190390955, 11.154134618555835 ] },
+  { name: "mantyke", xRGB: 71034.77868852459, xJAB: 4253.775062140516, yRGB: [ 89.48688524590163, 140.57049180327868, 181.3704918032787 ], yJAB: [ 57.99488233125052, -8.988681598645512, -16.397513900798188 ] },
+  { name: "pinsir", xRGB: 96692.4012526096, xJAB: 5526.7171425079005, yRGB: [ 178.4893528183716, 168.09060542797494, 166.91941544885177 ], yJAB: [ 71.47029139453429, 1.862638009540607, 0.4763726403009214 ] },
+  { name: "spinarak", xRGB: 83058.93604651163, xJAB: 5977.427320342123, yRGB: [ 164.7122093023256, 173.90406976744185, 119.44476744186046 ], yJAB: [ 70.89647929619281, -5.49007241709944, 12.091398454978124 ] },
+  { name: "duskull", xRGB: 80392.55453257791, xJAB: 4684.914034357123, yRGB: [ 150.43555240793202, 150.50779036827194, 145.98087818696885 ], yJAB: [ 63.17036495018882, -1.6960562801081447, 0.898645500435314 ] },
+  { name: "mudbray", xRGB: 66779.46343130554, xJAB: 4114.967049136493, yRGB: [ 159.892002734108, 133.1701982228298, 120.5393028024607 ], yJAB: [ 59.97359120427022, 5.318620549919153, 5.680297183123999 ] },
+  { name: "vespiquen", xRGB: 72943.33701657459, xJAB: 5357.133082286906, yRGB: [ 174.69060773480663, 151.22099447513813, 77.4475138121547 ], yJAB: [ 65.0107121764294, 0.49782346562735785, 15.58784374390059 ] },
+  { name: "ferrothorn", xRGB: 77660.6912696227, xJAB: 5236.248011254329, yRGB: [ 133.52795373175434, 166.7367116496833, 137.47480033048748 ], yJAB: [ 66.55862704072422, -8.476639044752972, 5.659743645540891 ] },
+  { name: "dewott", xRGB: 81238.57450628366, xJAB: 4992.187874948077, yRGB: [ 122.21484141232794, 159.24655894673847, 171.15978456014363 ], yJAB: [ 64.29072089209977, -9.200718516981814, -7.795952330357263 ] },
+  { name: "crobat", xRGB: 68919.67278406872, xJAB: 4173.553475875628, yRGB: [ 128.1936743459586, 135.2963686060133, 168.60601327606403 ], yJAB: [ 59.734810607406196, 0.05673975846198744, -11.613308764482582 ] },
+  { name: "cosmoem", xRGB: 81228.25299684543, xJAB: 5667.54202029295, yRGB: [ 172.2094637223975, 158.49905362776025, 109.87381703470031 ], yJAB: [ 66.55752720663853, 0.008901796589803116, 10.515810591501339 ] },
+  { name: "tynamo", xRGB: 128639.95570698466, xJAB: 7240.778307905852, yRGB: [ 199.8006814310051, 205.30323679727428, 200.23509369676322 ], yJAB: [ 83.21209098868167, -3.582180763992139, 0.0410211180994212 ] },
+  { name: "rufflet", xRGB: 116185.8390596745, xJAB: 6538.552244247237, yRGB: [ 191.85714285714286, 185.667872212176, 180.60578661844485 ], yJAB: [ 76.77214459486454, 0.03819749488108666, 0.6148414370761204 ] },
+  { name: "calyrex", xRGB: 43803.73396381579, xJAB: 2986.612962794724, yRGB: [ 64.92598684210526, 115.62993421052632, 110.40666118421052 ], yJAB: [ 47.15154023923651, -9.69157674628107, -1.2265193278612312 ] },
+  { name: "exeggcute", xRGB: 134976.03479381444, xJAB: 7319.272454624433, yRGB: [ 219.42268041237114, 200.3305412371134, 202.95940721649484 ], yJAB: [ 84.01803343030606, 4.296469495480267, 0.19996113074662694 ] },
+  { name: "clamperl", xRGB: 42177.33558441558, xJAB: 2510.368922824202, yRGB: [ 79.66597402597402, 91.10233766233766, 106.16831168831169 ], yJAB: [ 39.20339256897154, -3.1067115031700467, -7.245910694427961 ] },
+  { name: "bronzong", xRGB: 68048.64161849712, xJAB: 4589.129518535139, yRGB: [ 106.51477199743096, 157.91329479768785, 157.94059087989723 ], yJAB: [ 63.296005996215, -13.406935166048743, -4.690031921460074 ] },
+  { name: "jynx", xRGB: 92849.0337723742, xJAB: 5736.558344345822, yRGB: [ 209.3968253968254, 143.58426207362376, 137.98649105032084 ], yJAB: [ 70.48382320057603, 13.15004263177287, 6.298862658468652 ] },
+  { name: "uxie", xRGB: 103538.80444126074, xJAB: 6527.35207532966, yRGB: [ 188.13252148997134, 185.95272206303724, 154.36389684813753 ], yJAB: [ 76.73320253415352, -2.7312534893515066, 5.211747350826635 ] },
+  { name: "foongus", xRGB: 124950.96254355401, xJAB: 6824.558507988415, yRGB: [ 199.21689895470382, 190.0801393728223, 184.83797909407664 ], yJAB: [ 78.26598966433473, 0.9359891466011971, 1.9669029797249604 ] },
+  { name: "yamper", xRGB: 109715.1924904943, xJAB: 7030.322318134536, yRGB: [ 203.66777566539923, 195.4843155893536, 145.56131178707224 ], yJAB: [ 80.3207925661116, -1.8136235359856225, 11.140140523810622 ] },
+  { name: "nidoran-m", xRGB: 87452.8020344288, xJAB: 4891.358670007553, yRGB: [ 162.71048513302034, 143.88810641627543, 176.17214397496087 ], yJAB: [ 65.7975798080446, 7.514420685995161, -8.162433565141747 ] },
+  { name: "morelull", xRGB: 106219.42, xJAB: 5942.084831484409, yRGB: [ 187.6288888888889, 173.14333333333335, 178.01666666666668 ], yJAB: [ 73.93362443289669, 2.9522303413777267, -0.8138516784893856 ] },
+  { name: "luxray", xRGB: 31563.596343178622, xJAB: 2084.547778382149, yRGB: [ 89.75330520393811, 89.74374120956399, 83.33586497890295 ], yJAB: [ 39.56085331761414, -0.8600186190876066, 0.6310869861965863 ] },
+  { name: "mienfoo", xRGB: 97589.03272323904, xJAB: 6440.541209981769, yRGB: [ 209.32723239046035, 166.78480310593454, 131.56849694952857 ], yJAB: [ 74.6494139042752, 7.271672802744634, 11.540070855583016 ] },
+  { name: "stonjourner", xRGB: 47921.76815920398, xJAB: 3165.263302774927, yRGB: [ 121.69253731343284, 118.36119402985075, 103.38673300165837 ], yJAB: [ 51.448670837939204, -0.9339392555064724, 5.178557758018069 ] },
+  { name: "blitzle", xRGB: 64253.84089456869, xJAB: 3720.629492386859, yRGB: [ 129.27603833865814, 128.13546325878593, 126.4408945686901 ], yJAB: [ 54.44328314955529, -0.6480218408827371, -0.09858308429259426 ] },
+  { name: "chewtle", xRGB: 96474.40066592675, xJAB: 6140.74942716376, yRGB: [ 161.90455049944507, 183.37125416204216, 157.9095449500555 ], yJAB: [ 74.45448249787725, -8.14615933746496, 3.105125018614277 ] },
+  { name: "toxtricity-low-key", xRGB: 80274.29202556265, xJAB: 4481.933047319118, yRGB: [ 136.6999166435121, 132.12031119755488, 175.66796332314533 ], yJAB: [ 58.51185964665958, 2.377855742923985, -13.83509039516862 ] },
+  { name: "flygon", xRGB: 85066.29537729436, xJAB: 5756.248976896795, yRGB: [ 167.79843643779742, 170.98232494901427, 137.27124405166555 ], yJAB: [ 71.21713510404017, -2.7975302928659005, 9.278347285852496 ] },
+  { name: "manaphy", xRGB: 105452.78778337532, xJAB: 6587.2876476540505, yRGB: [ 124.04219143576826, 197.72670025188916, 210.85138539042822 ], yJAB: [ 76.88186019030383, -15.024429496245602, -9.653560560892608 ] },
+  { name: "beedrill", xRGB: 131661.60796786073, xJAB: 7331.52857875175, yRGB: [ 205.07566119852694, 201.6039504519585, 191.7693337797121 ], yJAB: [ 82.19934694974123, -1.3807896488850877, 0.7848537911353141 ] },
+  { name: "treecko", xRGB: 88245.74795417348, xJAB: 6331.140517159702, yRGB: [ 177.91571194762685, 183.75859247135844, 122.36661211129297 ], yJAB: [ 74.7777932727341, -5.30348482926818, 14.387922023248363 ] },
+  { name: "mudkip", xRGB: 108636.15474452554, xJAB: 6492.212724685529, yRGB: [ 163.5970802919708, 188.4021897810219, 193.71313868613137 ], yJAB: [ 76.98774966167967, -6.891574544157875, -6.3525722569689105 ] },
+  { name: "tyrantrum", xRGB: 70838.78574532812, xJAB: 4287.778787827347, yRGB: [ 161.8250760538896, 129.84941329856585, 124.98435462842242 ], yJAB: [ 59.46452074031398, 7.51801779213276, 3.8523751544476093 ] },
+  { name: "gumshoos", xRGB: 75112.69951923077, xJAB: 5081.121179704084, yRGB: [ 171.03645833333334, 156.08293269230768, 112.77003205128206 ], yJAB: [ 66.3255281661714, 0.6151988600524765, 12.06749476435538 ] },
+  { name: "impidimp", xRGB: 78123.61476725522, xJAB: 4469.9644887424365, yRGB: [ 181.86677367576243, 99.26565008025682, 142.79373996789727 ], yJAB: [ 57.07925265818001, 19.227448769596833, -3.993121280391907 ] },
+  { name: "corsola-galar", xRGB: 121134.16386554622, xJAB: 6517.58004077618, yRGB: [ 194.9485294117647, 184.68172268907563, 196.4810924369748 ], yJAB: [ 77.50915167580149, 3.1463261917793455, -4.628501340875621 ] },
+  { name: "natu", xRGB: 73341.71284125379, xJAB: 6328.280922378037, yRGB: [ 164.24165824064713, 173.74721941354903, 76.68048533872599 ], yJAB: [ 71.40797042468361, -6.346282416949965, 19.347696586835294 ] },
+  { name: "vivillon-meadow", xRGB: 70638.31065970928, xJAB: 4171.82550953163, yRGB: [ 171.62206485277673, 109.63827804696236, 137.98956392098398 ], yJAB: [ 57.721821709318796, 15.415526199105013, -1.767845587487256 ] },
+  { name: "rattata", xRGB: 88487.14612326043, xJAB: 5048.846262882734, yRGB: [ 173.54870775347914, 151.14115308151094, 169.40854870775348 ], yJAB: [ 67.40791901665762, 6.1781207607627895, -4.792597029628863 ] },
+  { name: "pupitar", xRGB: 112360.26811594203, xJAB: 6104.378149600106, yRGB: [ 169.1552795031056, 177.63768115942028, 209.03312629399585 ], yJAB: [ 74.19193746513648, -1.72878941787965, -12.929787875148698 ] },
+  { name: "phanpy", xRGB: 109417.65645645646, xJAB: 6702.615195798509, yRGB: [ 157.63543543543543, 194.74954954954956, 196.41381381381382 ], yJAB: [ 78.31734833331056, -10.198844794355603, -4.611090507030915 ] },
+  { name: "keldeo-resolute", xRGB: 84650.93235039029, xJAB: 5384.3045445010775, yRGB: [ 159.43581960104078, 154.67346053772766, 149.72679965307893 ], yJAB: [ 67.73357286250105, 0.041881851908829225, 0.5495143446197377 ] },
+  { name: "beautifly", xRGB: 71741.80288728484, xJAB: 4552.243717387679, yRGB: [ 151.90505274847308, 140.97445863409217, 119.66074403109384 ], yJAB: [ 60.87616848161615, 0.6862535166413832, 4.671438286724983 ] },
+  { name: "dusclops", xRGB: 78567.02577805721, xJAB: 4716.960496612742, yRGB: [ 159.9635334800377, 155.95535994970135, 153.72681546683432 ], yJAB: [ 66.80245979416152, -0.18113090211035515, 0.378907270697619 ] },
+  { name: "galvantula", xRGB: 92308.32617825478, xJAB: 6289.069000377283, yRGB: [ 187.90433971068595, 176.56836210919272, 123.32337844143724 ], yJAB: [ 73.38684418534874, -1.1476378682015598, 11.108554246037892 ] },
+  { name: "masquerain", xRGB: 119235.25323149236, xJAB: 6859.773153382757, yRGB: [ 212.59988249118683, 187.46944770857814, 177.98061104582843 ], yJAB: [ 80.43098454390999, 3.6984625250807257, 3.1034551005415327 ] },
+  { name: "oricorio-pau", xRGB: 128472.18981481482, xJAB: 7045.073968750298, yRGB: [ 216.43101851851853, 190.09583333333333, 191.8175925925926 ], yJAB: [ 81.08673331540673, 5.68075465725881, 1.5249958445010796 ] },
+  { name: "relicanth", xRGB: 53950.213184931505, xJAB: 3457.191653534602, yRGB: [ 137.11344178082192, 124.62542808219177, 111.85359589041096 ], yJAB: [ 55.01396274567805, 1.93324134424984, 4.875513657584587 ] },
+  { name: "zygarde-10", xRGB: 29338.643823657792, xJAB: 2156.7998218982702, yRGB: [ 86.93190746398952, 90.12439982540376, 70.90484504583152 ], yJAB: [ 38.880857251513866, -2.140838956648437, 4.920926258030456 ] },
+  { name: "whimsicott", xRGB: 115692.91749062394, xJAB: 7279.554597176266, yRGB: [ 204.2434367541766, 202.71905898397546, 155.52130923968633 ], yJAB: [ 81.97961747424146, -2.715868452964343, 12.227185707631987 ] },
+  { name: "silcoon", xRGB: 144762.51875901877, xJAB: 7718.421259299213, yRGB: [ 214.00865800865802, 210.6969696969697, 223.41630591630593 ], yJAB: [ 86.41344825453604, 0.40574329487382316, -5.81633985871617 ] },
+  { name: "obstagoon", xRGB: 41286.548012003004, xJAB: 2480.6228271717678, yRGB: [ 98.67516879219805, 97.2993248312078, 98.95311327831958 ], yJAB: [ 42.59484137948397, -0.5945217456503017, -1.4013693322274354 ] },
+  { name: "vivillon-icysnow", xRGB: 133696.93048028406, xJAB: 7140.430149622485, yRGB: [ 197.83348906746403, 197.68099420669034, 197.3632965800785 ], yJAB: [ 79.77964550523076, -1.546106384479089, -0.8636376060236906 ] },
+  { name: "eldegoss", xRGB: 128984.654522293, xJAB: 7527.143384889613, yRGB: [ 209.19210191082803, 206.88713375796178, 170.88305732484076 ], yJAB: [ 83.87465299292485, -2.7193784091541024, 6.2492438740188 ] },
+  { name: "sewaddle", xRGB: 81704.20398912058, xJAB: 6277.493761445626, yRGB: [ 175.6563916591115, 178.16863100634632, 85.29283771532185 ], yJAB: [ 72.59839457563292, -6.102332086709625, 19.50759376682984 ] },
+  { name: "bastiodon", xRGB: 66878.23979848866, xJAB: 4089.3195801826323, yRGB: [ 144.5770780856423, 141.37405541561714, 135.5375314861461 ], yJAB: [ 60.68741301217922, -0.5866288343950358, 1.0002018755665454 ] },
+  { name: "cutiefly", xRGB: 115366.97630662021, xJAB: 6874.771047738583, yRGB: [ 200.28571428571428, 193.53101045296168, 166.97142857142856 ], yJAB: [ 79.53304331637428, -1.0774002098047224, 6.1128977043136645 ] },
+  { name: "wailord", xRGB: 109672.6731453252, xJAB: 6415.286720915306, yRGB: [ 121.72319613821138, 190.4142530487805, 222.77299288617886 ], yJAB: [ 75.18516064232573, -11.902640040681883, -14.23032379809333 ] },
+  { name: "baltoy", xRGB: 97053.87611496531, xJAB: 6187.060455548382, yRGB: [ 197.49653121902875, 176.97522299306243, 141.2398414271556 ], yJAB: [ 75.3571761032819, 1.8574877632498359, 10.537339342114969 ] },
+  { name: "onix", xRGB: 62677.17903596022, xJAB: 3813.3290944533865, yRGB: [ 137.4892884468248, 136.51377199693957, 137.79495026778883 ], yJAB: [ 58.97626918831024, -0.7601596680035682, -1.2015711404897984 ] },
+  { name: "abra", xRGB: 92396.55633802817, xJAB: 7184.739391053932, yRGB: [ 201.43270735524257, 191.70892018779344, 76.91236306729265 ], yJAB: [ 77.89056729560127, -4.144533961057171, 22.222552837318958 ] },
+  { name: "xerneas", xRGB: 78643.24858757062, xJAB: 4881.614744677184, yRGB: [ 155.57062146892656, 150.5819209039548, 142.75706214689265 ], yJAB: [ 64.42023753373705, -0.30555535831650366, 1.1942707880683436 ] },
+  { name: "psyduck", xRGB: 114511.52959262107, xJAB: 7394.474676339082, yRGB: [ 220.59492697924674, 199.42659492697925, 140.52113758647195 ], yJAB: [ 82.84388152382851, 0.4682158042298449, 14.495751892028201 ] },
+  { name: "rockruff", xRGB: 88438.39201373981, xJAB: 5201.135441942313, yRGB: [ 179.31129240017174, 157.6268784886217, 149.05538857878918 ], yJAB: [ 68.6597473849038, 4.244394461354957, 3.938851169181127 ] },
+  { name: "dubwool", xRGB: 71337.65893741557, xJAB: 4086.570031047845, yRGB: [ 136.70261143628997, 135.30751913552453, 138.4533993696533 ], yJAB: [ 57.510676351939146, -0.3728666136677225, -2.042804786733662 ] },
+  { name: "stunfisk", xRGB: 77294.89506953224, xJAB: 5213.212870253703, yRGB: [ 185.35050568900127, 149.58817951959546, 105.27749683944374 ], yJAB: [ 66.54800466776305, 5.026094290121304, 13.077498779342529 ] },
+  { name: "sableye", xRGB: 63467.25112107623, xJAB: 3618.7219038561943, yRGB: [ 133.1031390134529, 115.83632286995515, 161.88116591928252 ], yJAB: [ 54.27461156292254, 6.012227505739034, -14.125068611905835 ] },
+  { name: "eternatus", xRGB: 29297.625800548947, xJAB: 1917.5403499247602, yRGB: [ 84.27233912778286, 32.09759072888075, 91.5870692284233 ], yJAB: [ 27.716036212062587, 9.936019441767096, -11.17703583034273 ] },
+  { name: "larvitar", xRGB: 79146.10593900482, xJAB: 5625.867108548222, yRGB: [ 167.3940609951846, 167.46227929373995, 122.75200642054574 ], yJAB: [ 70.17356233608511, -3.0576258517890915, 12.264575377382329 ] },
+  { name: "meloetta-aria", xRGB: 84192.57166947723, xJAB: 5209.520681088049, yRGB: [ 158.71922428330524, 164.6964586846543, 147.8254637436762 ], yJAB: [ 68.09111795344961, -3.0930448868561, 3.8600554213161855 ] },
+  { name: "venomoth", xRGB: 122199.963554668, xJAB: 6619.032016339657, yRGB: [ 196.95556665002496, 188.32401397903146, 203.45681477783324 ], yJAB: [ 79.14890727681671, 2.5039412720371184, -5.665021821256055 ] },
+  { name: "shaymin-sky", xRGB: 101135.94875164257, xJAB: 6289.756033904345, yRGB: [ 183.85764345159876, 180.4323258869908, 157.40823477879982 ], yJAB: [ 75.76709972112226, -1.3640353340580353, 4.436509954645013 ] },
+  { name: "wigglytuff", xRGB: 132059.36149126946, xJAB: 7089.867886191896, yRGB: [ 206.75979235488438, 193.38603114676735, 201.46484190655968 ], yJAB: [ 80.82088108771617, 3.2620157018878326, -2.3467278205716835 ] },
+  { name: "dragalge", xRGB: 63115.12219551282, xJAB: 3919.7338222171497, yRGB: [ 162.5625, 120.96834935897436, 119.74919871794872 ], yJAB: [ 58.061797635747865, 9.687598503407896, 3.998211369771717 ] },
+  { name: "toxapex", xRGB: 83153.80668380462, xJAB: 4971.914242891218, yRGB: [ 140.87043701799485, 156.84164524421593, 165.8740359897172 ], yJAB: [ 64.78758588100163, -4.8764313163472375, -6.107727053127819 ] },
+  { name: "cresselia", xRGB: 126098.5923694779, xJAB: 7119.883423322541, yRGB: [ 219.23855421686747, 186.90441767068273, 187.1024096385542 ], yJAB: [ 81.16840966442528, 6.455682123483067, 0.8247815105226486 ] },
+  { name: "raticate", xRGB: 95991.2451144612, xJAB: 6254.933518254414, yRGB: [ 204.9396984924623, 174.14796203238413, 122.71133445002792 ], yJAB: [ 75.24532134103312, 3.1271115987685243, 13.873552994116586 ] },
+  { name: "bibarel", xRGB: 61756.98562628337, xJAB: 4345.1204979702015, yRGB: [ 164.83367556468173, 135.2459958932238, 88.00903490759754 ], yJAB: [ 60.580046201824274, 3.6288999101997543, 14.068073041998405 ] },
+  { name: "furfrou-pharaoh", xRGB: 89808.51814345992, xJAB: 5149.288667750203, yRGB: [ 147.9717299578059, 159.29789029535866, 175.7886075949367 ], yJAB: [ 66.52673873384464, -2.9369705750234685, -7.019620848514026 ] },
+  { name: "sunkern", xRGB: 71881.77850877192, xJAB: 5361.922948443569, yRGB: [ 160.51206140350877, 154.547149122807, 82.3530701754386 ], yJAB: [ 63.80309191715837, -2.9459717642165795, 15.552099575446256 ] },
+  { name: "purrloin", xRGB: 60393.45540246555, xJAB: 3604.695195362682, yRGB: [ 137.5039883973894, 114.0442349528644, 138.0710659898477 ], yJAB: [ 53.195548044864275, 7.046650211375008, -6.7235550332339376 ] },
+  { name: "charizard", xRGB: 85115.83353703251, xJAB: 5723.5551662693715, yRGB: [ 165.40821315081888, 165.31679296015645, 130.294549010022 ], yJAB: [ 70.92841554429097, -1.2865860572003884, 7.68679187867318 ] },
+  { name: "wishiwashi-school", xRGB: 62821.107320540155, xJAB: 3755.6670650871906, yRGB: [ 82.07510068704099, 127.53304904051173, 172.3800047382137 ], yJAB: [ 52.90005371120951, -8.66236811245868, -18.580831062738902 ] },
+  { name: "elgyem", xRGB: 98331.54538634658, xJAB: 6096.127794863757, yRGB: [ 143.62640660165042, 187.72693173293322, 181.80945236309077 ], yJAB: [ 73.74714735463206, -12.39665336295006, -2.2480569998964497 ] },
+  { name: "grimer", xRGB: 71586.32951653944, xJAB: 4031.0730878087634, yRGB: [ 152.3295165394402, 129.5114503816794, 158.73155216284988 ], yJAB: [ 59.5185419756681, 7.918353607616154, -8.771815305980923 ] },
+  { name: "duosion", xRGB: 116990.26163723916, xJAB: 7678.024084679533, yRGB: [ 183.2525414660246, 220.72712680577848, 178.12252541466026 ], yJAB: [ 85.53243146102403, -11.591059504544248, 9.01846609358921 ] },
+  { name: "buneary", xRGB: 84117.76384468492, xJAB: 5554.20797331616, yRGB: [ 194.13112667091025, 158.29153405474221, 117.33354551241247 ], yJAB: [ 70.224992818874, 5.446692212040022, 13.060230573455751 ] },
+  { name: "honedge", xRGB: 72232.54759467758, xJAB: 4572.478821135888, yRGB: [ 128.0220061412487, 150.60747185261002, 149.20675537359264 ], yJAB: [ 62.562868761061615, -5.476993666213181, -2.2895233288344476 ] },
+  { name: "ponyta", xRGB: 108796.10871033085, xJAB: 7144.538543291111, yRGB: [ 217.5793382849426, 185.8750844024308, 120.99729912221471 ], yJAB: [ 79.6022071229679, 2.5485985715764015, 15.615453822257118 ] },
+  { name: "burmy-sandy", xRGB: 82069.19618834081, xJAB: 5252.193616054211, yRGB: [ 169.847533632287, 160.26121076233184, 128.60538116591928 ], yJAB: [ 67.39690179356629, -0.6332837260044644, 8.001228207028307 ] },
+  { name: "tepig", xRGB: 59291.03539823009, xJAB: 4231.198127907582, yRGB: [ 173.14771953710007, 111.36215112321307, 71.42545949625595 ], yJAB: [ 56.39716265867283, 10.792827949511553, 13.282414247160016 ] },
+  { name: "donphan", xRGB: 84780.06067544362, xJAB: 4906.145236510034, yRGB: [ 146.1542644533486, 158.7169433314253, 170.8563251287922 ], yJAB: [ 66.10620399315714, -4.361691846669515, -7.439946998247253 ] },
+  { name: "mimikyu", xRGB: 106349.77137767221, xJAB: 6574.6236273641225, yRGB: [ 193.42399049881234, 187.81947743467933, 150.58016627078385 ], yJAB: [ 76.70341751819001, -1.7284607757766328, 9.996085067188098 ] },
+  { name: "landorus-incarnate", xRGB: 92876.81434846266, xJAB: 5450.466116629455, yRGB: [ 183.27144948755492, 159.68550512445094, 149.31625183016106 ], yJAB: [ 69.81852635940304, 4.1392050837929215, 3.7033153086785373 ] },
+  { name: "zygarde", xRGB: 41962.89945919371, xJAB: 3379.697972013785, yRGB: [ 106.98131760078662, 117.9385447394297, 74.81588003933136 ], yJAB: [ 48.69077917808593, -4.493806698852854, 9.445560731734762 ] },
+  { name: "naganadel", xRGB: 39203.32994432341, xJAB: 2252.681089581592, yRGB: [ 92.4158799322198, 77.81481481481481, 127.48123940934398 ], yJAB: [ 39.094851944971694, 5.385352765628734, -15.071185180942715 ] },
+  { name: "goodra", xRGB: 121143.46112696148, xJAB: 6519.699241051029, yRGB: [ 197.45827389443653, 182.7863766048502, 208.00748930099857 ], yJAB: [ 78.33974354678232, 4.663373692679949, -7.994728087246256 ] },
+  { name: "chandelure", xRGB: 60769.662933526015, xJAB: 3447.6278745707236, yRGB: [ 110.21134393063583, 114.10513005780346, 136.5097543352601 ], yJAB: [ 49.48100590504119, -0.919325903879476, -7.614008185944942 ] },
+  { name: "lillipup", xRGB: 101019.4212098581, xJAB: 6483.553957871334, yRGB: [ 210.9193427931292, 176.88125466766243, 132.36893203883494 ], yJAB: [ 76.49773763186364, 4.450026052755715, 13.225544815811734 ] },
+  { name: "floette-white", xRGB: 95831.30407303371, xJAB: 5975.128780279348, yRGB: [ 166.57373595505618, 181.5203651685393, 158.26474719101122 ], yJAB: [ 73.74725053788488, -5.492881910053206, 4.5511408117529975 ] },
+  { name: "arrokuda", xRGB: 91843.87969924812, xJAB: 5519.0490039477645, yRGB: [ 172.04761904761904, 166.88345864661653, 142.093984962406 ], yJAB: [ 69.26418009031612, -1.0557968072182995, 6.844105167325719 ] },
+  { name: "pincurchin", xRGB: 29221.73918918919, xJAB: 1977.8311540274733, yRGB: [ 95.31891891891892, 78.90810810810811, 81.29594594594595 ], yJAB: [ 37.440638960504316, 4.931957567541198, -2.826856240741675 ] },
+  { name: "numel", xRGB: 121514.27947096032, xJAB: 7675.367349638142, yRGB: [ 220.21794134560093, 207.59746981023576, 155.65899942495687 ], yJAB: [ 84.9467458017935, -0.9998852316029453, 13.124142298432048 ] },
+  { name: "cinderace", xRGB: 96505.00578536303, xJAB: 5811.150144598674, yRGB: [ 180.6771767428406, 151.81486838299102, 133.44055539485103 ], yJAB: [ 67.85152086050381, 4.269467998585009, 4.729447435232863 ] },
+  { name: "crabrawler", xRGB: 74951.4740200547, xJAB: 4675.664285895691, yRGB: [ 109.82497721057429, 150.179580674567, 175.91248860528714 ], yJAB: [ 62.53575040600366, -6.082329788675629, -10.804730518666204 ] },
+  { name: "xurkitree", xRGB: 57702.22947615325, xJAB: 3394.0189606667545, yRGB: [ 118.89327599687256, 118.5879593432369, 116.01563721657546 ], yJAB: [ 50.61969557217246, -1.3810351601996378, -0.11136879769858869 ] },
+  { name: "vivillon-polar", xRGB: 54347.47444029851, xJAB: 3108.54891926317, yRGB: [ 101.25149253731344, 105.59347014925373, 138.93694029850747 ], yJAB: [ 46.20558690895048, -0.9116021699995008, -12.761843688546012 ] },
+  { name: "bunnelby", xRGB: 79555.8952991453, xJAB: 4763.712329635269, yRGB: [ 168.4017094017094, 150.99487179487178, 144.97222222222223 ], yJAB: [ 66.13040329043247, 3.2868816620364245, 2.8836780930411843 ] },
+  { name: "vivillon-savanna", xRGB: 72087.82811334825, xJAB: 5042.566223163738, yRGB: [ 126.28299776286353, 159.3797539149888, 137.4610365398956 ], yJAB: [ 63.981311049299165, -9.450962846757854, 1.6865587105412498 ] },
+  { name: "grubbin", xRGB: 102654.69958419958, xJAB: 6451.980541873882, yRGB: [ 207.31185031185032, 178.71413721413722, 140.83367983367984 ], yJAB: [ 76.81344768423665, 3.12537255278292, 10.592099508475016 ] },
+  { name: "mudsdale", xRGB: 43944.86930641822, xJAB: 3009.13650113324, yRGB: [ 139.39518633540374, 97.25103519668737, 85.24844720496894 ], yJAB: [ 48.6043763432291, 8.421017897682137, 6.052232114940505 ] },
+  { name: "glalie", xRGB: 90886.94951194884, xJAB: 5024.743361000229, yRGB: [ 147.53550992931673, 154.79097946819252, 167.06462470548638 ], yJAB: [ 64.23869854905038, -2.4666713964715137, -6.279056363686267 ] },
+  { name: "dreepy", xRGB: 45178.45494994438, xJAB: 3577.907927225257, yRGB: [ 106.146829810901, 123.95661846496107, 89.55283648498332 ], yJAB: [ 51.903040204478565, -7.712645450750048, 8.763909036758582 ] },
+  { name: "persian", xRGB: 121154.8568041726, xJAB: 7269.3721224513965, yRGB: [ 213.8421052631579, 201.34803224276908, 168.3475580844002 ], yJAB: [ 82.77288768623926, 0.14926679357465072, 9.267676729480852 ] },
+  { name: "trevenant", xRGB: 47633.227860948995, xJAB: 3369.506363735762, yRGB: [ 121.34229890890637, 122.99441766049226, 102.35371733062675 ], yJAB: [ 53.73532744923829, -1.1324720773023356, 6.322792640052885 ] },
+  { name: "audino", xRGB: 122022.60817307692, xJAB: 7028.709485616929, yRGB: [ 224.9435096153846, 187.96714743589743, 177.703125 ], yJAB: [ 81.78462269742305, 7.369478083836329, 5.401697746131883 ] },
+  { name: "mr-rime", xRGB: 52175.0831815422, xJAB: 3057.791239999033, yRGB: [ 95.84699453551913, 99.93746205221615, 130.80570734669095 ], yJAB: [ 44.66399732453638, 0.22007227353270734, -11.896686150654542 ] },
+  { name: "furfrou-lareine", xRGB: 109301.6669576604, xJAB: 6255.752452723533, yRGB: [ 171.70667830641642, 185.2191182889568, 186.94805761676125 ], yJAB: [ 75.49662541742715, -4.306357019369507, -2.456763833244113 ] },
+  { name: "cobalion", xRGB: 80344.41084462982, xJAB: 5030.35736641498, yRGB: [ 113.6405978449774, 160.90615224191868, 162.46611053180396 ], yJAB: [ 65.2025572560916, -8.681040056043862, -4.274556052596567 ] },
+  { name: "mew", xRGB: 121496.5138339921, xJAB: 6582.816650199838, yRGB: [ 210.92094861660078, 181.7140974967062, 197.23583662714097 ], yJAB: [ 79.20128598689222, 7.94039305643626, -2.925204935163632 ] },
+  { name: "tauros", xRGB: 69110.80169628432, xJAB: 4566.122225510052, yRGB: [ 165.20072697899838, 144.5686591276252, 118.8626817447496 ], yJAB: [ 63.870422902125966, 2.439976521512994, 6.776549812302873 ] },
+  { name: "skorupi", xRGB: 84772.11811926606, xJAB: 4784.104861950044, yRGB: [ 141.6244266055046, 149.08142201834863, 177.76892201834863 ], yJAB: [ 63.49829525016206, -0.9249734452513376, -11.70625662526719 ] },
+  { name: "camerupt", xRGB: 86187.73517465475, xJAB: 5327.225510845878, yRGB: [ 196.7682101272678, 145.68995396696454, 130.31031681559708 ], yJAB: [ 68.36454959564522, 10.030992854400138, 7.6387098854663895 ] },
+  { name: "karrablast", xRGB: 58368.20664451827, xJAB: 4042.7118690762213, yRGB: [ 104.62059800664451, 132.04651162790697, 125.12225913621262 ], yJAB: [ 56.01813950780737, -5.41010750632401, -2.139790344116094 ] },
+  { name: "jirachi", xRGB: 119763.40625, xJAB: 7548.788111287945, yRGB: [ 207.74939903846155, 207.37139423076923, 160.73377403846155 ], yJAB: [ 83.72691624316282, -3.441766975081335, 9.803985195738035 ] },
+  { name: "vigoroth", xRGB: 128505.57725947522, xJAB: 6999.79719370699, yRGB: [ 201.93252811328614, 196.268221574344, 196.03456892961267 ], yJAB: [ 80.72998305822736, -0.18691752753365443, -0.2977933898744363 ] },
+  { name: "politoed", xRGB: 80711.37850271852, xJAB: 6812.8714416439425, yRGB: [ 165.31451275616897, 195.2689251359264, 90.31827687160184 ], yJAB: [ 76.4281258697479, -11.603592677244546, 20.698942497758402 ] },
+  { name: "heatmor", xRGB: 54083.061312895705, xJAB: 3875.190490863806, yRGB: [ 165.63812062645783, 112.56481172942352, 83.53282239253582 ], yJAB: [ 56.20615515872801, 10.53667872231701, 11.693473913032722 ] },
+  { name: "braviary", xRGB: 38746.011128284386, xJAB: 2461.9527524281707, yRGB: [ 103.48191653786708, 91.03802163833076, 96.34559505409582 ], yJAB: [ 42.0054476704853, 2.9825910696162268, -3.199861737383081 ] },
+  { name: "helioptile", xRGB: 79060.04495114007, xJAB: 5421.323208321822, yRGB: [ 165.27100977198697, 162.73485342019544, 117.9257328990228 ], yJAB: [ 67.51575063931486, -2.7954925251858946, 8.27489253447664 ] },
+  { name: "zebstrika", xRGB: 66201.36950021358, xJAB: 3785.704142685757, yRGB: [ 130.3720632208458, 127.00256300726186, 123.69841947885519 ], yJAB: [ 53.920044986211394, -0.013855680041154533, 1.1626644846824457 ] },
+  { name: "stufful", xRGB: 93534.75516423976, xJAB: 5245.614939146167, yRGB: [ 182.0335252285811, 151.9972908906197, 151.7571960717914 ], yJAB: [ 67.1875119432919, 6.9924056143830455, 2.5480972731223233 ] },
+  { name: "quagsire", xRGB: 118528.80489614244, xJAB: 6898.208991189253, yRGB: [ 161.72069732937686, 203.96216617210683, 218.96327893175075 ], yJAB: [ 80.84701649995655, -11.436313694354144, -9.90585730453564 ] },
+  { name: "gourgeist", xRGB: 75040.66477809254, xJAB: 4813.968256165374, yRGB: [ 178.18696883852692, 138.7851746931067, 110.01841359773371 ], yJAB: [ 63.04902455630137, 6.98919279582818, 10.118006680800821 ] },
+  { name: "shellos-east", xRGB: 67530.35231316726, xJAB: 4955.061702295083, yRGB: [ 116.2896797153025, 162.72811387900356, 131.17224199288256 ], yJAB: [ 65.5039110936811, -10.951381074442136, 4.713551572272042 ] },
+  { name: "sigilyph", xRGB: 71164.49771528998, xJAB: 4760.680466478191, yRGB: [ 149.72548330404217, 141.47943760984182, 118.83866432337435 ], yJAB: [ 61.90010415767597, -0.26717130022073426, 4.693470676867303 ] },
+  { name: "flapple", xRGB: 80796.94981640147, xJAB: 5332.268018047154, yRGB: [ 175.66829865361078, 158.3798449612403, 117.6344349245206 ], yJAB: [ 68.2396763963081, 0.8254160825777109, 11.992711113597311 ] },
+  { name: "skitty", xRGB: 110197.21851542953, xJAB: 6478.469859317357, yRGB: [ 212.03919933277732, 175.47289407839867, 166.0300250208507 ], yJAB: [ 77.1066004198246, 7.403148843286947, 4.983909400908466 ] },
+  { name: "vileplume", xRGB: 60370.03571428572, xJAB: 3896.0237323594342, yRGB: [ 148.4811224489796, 115.92091836734694, 133.4326530612245 ], yJAB: [ 57.19195940153839, 7.44762972629896, -3.393027462447684 ] },
+  { name: "gothitelle", xRGB: 44719.505429997065, xJAB: 2532.31069330996, yRGB: [ 95.72292339301438, 92.01555620780745, 94.77487525682419 ], yJAB: [ 39.91893153375389, 0.7653391085838158, -1.2782669533378 ] },
+  { name: "castform", xRGB: 124821.9158974359, xJAB: 6869.840479171827, yRGB: [ 198.6123076923077, 196.79897435897436, 199.2225641025641 ], yJAB: [ 80.9860519011066, -0.7861874473770376, -1.7546039831378786 ] },
+  { name: "solgaleo", xRGB: 102524.47961675747, xJAB: 6067.141567456455, yRGB: [ 180.26470035694157, 176.80048844636482, 164.12229945519445 ], yJAB: [ 73.80387741450288, -1.5065646287173444, 1.510961596754408 ] },
+  { name: "furfrou-dandy", xRGB: 98356.45542881284, xJAB: 6131.359108978273, yRGB: [ 176.00422475707646, 182.63329108576258, 154.47950992817914 ], yJAB: [ 74.58836359720162, -3.582482389724597, 6.761904298147119 ] },
+  { name: "mamoswine", xRGB: 91985.69061962134, xJAB: 5585.459238091329, yRGB: [ 183.64242685025818, 161.92061101549052, 133.04840791738383 ], yJAB: [ 69.7657410786567, 2.9118082793305966, 8.980763795351033 ] },
+  { name: "shaymin-land", xRGB: 94766.21484653819, xJAB: 6439.600841821133, yRGB: [ 174.82940756602426, 184.86438258386866, 134.76231263383298 ], yJAB: [ 75.34444553733388, -4.630718664898786, 10.847977542616452 ] },
+  { name: "leavanny", xRGB: 59556.89890710382, xJAB: 5208.931013464763, yRGB: [ 134.64371584699452, 162.99562841530056, 72.20819672131148 ], yJAB: [ 65.0977957396234, -10.968087932636184, 18.673225664193918 ] },
+  { name: "lairon", xRGB: 96531.0376146789, xJAB: 5317.072783436393, yRGB: [ 162.97385321100919, 162.47477064220183, 162.9348623853211 ], yJAB: [ 67.27053103870789, -1.1091846638836944, -0.9288856851784567 ] },
+  { name: "goldeen", xRGB: 121011.26426076834, xJAB: 6806.495793786178, yRGB: [ 201.011641443539, 193.19441210710127, 188.2270081490105 ], yJAB: [ 80.36892567835531, 0.11953161251975633, 1.1296911296950651 ] },
+  { name: "bouffalant", xRGB: 45491.2183908046, xJAB: 3012.218799339686, yRGB: [ 127.39080459770115, 111.35249042145594, 88.6896551724138 ], yJAB: [ 49.62307675985217, 2.4561488455927614, 7.9852423194498 ] },
+  { name: "piplup", xRGB: 98770.9592476489, xJAB: 5783.372260463863, yRGB: [ 139.15485893416928, 172.9843260188088, 188.6733542319749 ], yJAB: [ 70.1971381219441, -7.769330136810603, -9.14180999149744 ] },
+  { name: "torchic", xRGB: 91522.20416253716, xJAB: 6625.197239384054, yRGB: [ 219.65213082259663, 172.17343904856293, 87.0386521308226 ], yJAB: [ 76.46591215984535, 4.476893081192864, 20.64674438593937 ] },
+  { name: "sawk", xRGB: 66862.1795626577, xJAB: 4069.1451929250234, yRGB: [ 107.25441547518923, 136.6433978132885, 150.18334735071488 ], yJAB: [ 55.9935299580585, -7.38584977126746, -7.476472336255958 ] },
+  { name: "mandibuzz", xRGB: 64879.062880975296, xJAB: 4019.6292674798883, yRGB: [ 152.62367661212704, 131.75136349053577, 120.54347128649343 ], yJAB: [ 58.55340949652051, 4.2551233695247666, 4.809485193478426 ] },
+  { name: "snorlax", xRGB: 107365.80565001308, xJAB: 6046.156928771918, yRGB: [ 149.00680094166884, 176.35443369081872, 181.9484697881245 ], yJAB: [ 71.22942223522976, -4.96289604442509, -4.255069764563374 ] },
+  { name: "swanna", xRGB: 129643.28195033313, xJAB: 7161.468419820429, yRGB: [ 191.7159297395518, 203.1968503937008, 211.72774076317384 ], yJAB: [ 82.34368023619925, -4.071214623865956, -5.6209989272854 ] },
+  { name: "floatzel", xRGB: 92358.68639053254, xJAB: 6558.834359681452, yRGB: [ 211.0887573964497, 170.55029585798817, 90.45562130177515 ], yJAB: [ 75.07099002881775, 4.129037178786808, 18.99544098293908 ] },
+  { name: "lilligant", xRGB: 78053.95136986302, xJAB: 5863.987098552876, yRGB: [ 164.79520547945205, 173.53390410958903, 106.79143835616438 ], yJAB: [ 71.09712140916064, -5.738653897143392, 15.879569207572567 ] },
+  { name: "furfrou-star", xRGB: 107420.15198618307, xJAB: 6119.465155009275, yRGB: [ 170.38903281519862, 180.4304835924007, 177.97150259067357 ], yJAB: [ 73.42247727165545, -3.5874825173486613, -0.630361644696126 ] },
+  { name: "flabebe-orange", xRGB: 91279.33997252748, xJAB: 5948.329045842621, yRGB: [ 182.00274725274724, 173.58447802197801, 132.00686813186815 ], yJAB: [ 72.955113330622, -1.5301625828216314, 10.383927941534415 ] },
+  { name: "delibird", xRGB: 101260.48787446505, xJAB: 5979.877911574685, yRGB: [ 198.8264384213029, 151.16500237755588, 144.52020922491678 ], yJAB: [ 70.93540978373005, 9.272532940122387, 5.370864375951563 ] },
+  { name: "tapu-bulu", xRGB: 57888.86372360845, xJAB: 4046.99425866664, yRGB: [ 163.4065898912348, 113.65642994241843, 87.43218170185541 ], yJAB: [ 56.07996528691383, 8.778867360025217, 10.293379898585288 ] },
+  { name: "phione", xRGB: 93515.23328488372, xJAB: 5854.455831590449, yRGB: [ 109.89462209302326, 182.14462209302326, 203.8393895348837 ], yJAB: [ 71.7235422778178, -14.062718015501853, -11.873906884301258 ] },
+  { name: "raichu-alola", xRGB: 104824.4728480647, xJAB: 7016.53481387394, yRGB: [ 215.2322357019064, 189.90179087232812, 124.36943963027151 ], yJAB: [ 79.81354722739485, 1.2489061706947644, 16.67698588458718 ] },
+  { name: "pikipek", xRGB: 64072.16285452882, xJAB: 3924.6912401824675, yRGB: [ 147.06495882891124, 120.46569075937786, 115.90576395242452 ], yJAB: [ 55.633907679210026, 4.318225365617131, 2.7051364053499056 ] },
+  { name: "ariados", xRGB: 79155.5677466863, xJAB: 5042.377078021535, yRGB: [ 181.1539027982327, 135.4742268041237, 129.7157584683358 ], yJAB: [ 64.34387673556394, 8.972871742070607, 3.6406539906866304 ] },
+  { name: "torterra", xRGB: 47193.03320202589, xJAB: 3766.501300594783, yRGB: [ 103.52748077283812, 134.3577190020634, 88.03901706996811 ], yJAB: [ 55.222409127835526, -8.760497858331238, 11.431923154894642 ] },
+  { name: "carnivine", xRGB: 82493.68923766816, xJAB: 6221.689187302737, yRGB: [ 170.4116591928251, 178.87354260089685, 111.50627802690583 ], yJAB: [ 73.43053867692228, -5.745923433830344, 15.990034980392364 ] },
+  { name: "shinx", xRGB: 88203.99654974123, xJAB: 5537.487645303257, yRGB: [ 137.57389304197815, 170.86026451983898, 167.6049453709028 ], yJAB: [ 69.23267570656616, -9.25967913206435, -4.921137422255988 ] },
+  { name: "ducklett", xRGB: 104155.81486988848, xJAB: 6333.290496883309, yRGB: [ 160.39405204460965, 191.22156133828997, 183.47360594795538 ], yJAB: [ 76.4648419204728, -9.593192557729694, -1.8997926089960249 ] },
+  { name: "dratini", xRGB: 130281.95064935065, xJAB: 7075.850286832019, yRGB: [ 194.28571428571428, 199.84935064935064, 212.63982683982684 ], yJAB: [ 81.64278588886856, -2.1475006785886186, -6.094786844993764 ] },
+  { name: "zubat", xRGB: 53342.58339148639, xJAB: 3217.655136718503, yRGB: [ 122.09630146545709, 106.92323796231682, 140.44870900209352 ], yJAB: [ 50.979997732388796, 5.584915210751554, -9.38979145131746 ] },
+  { name: "seaking", xRGB: 113604.622236671, xJAB: 6574.219086687315, yRGB: [ 207.84655396618984, 177.20676202860858, 164.55071521456438 ], yJAB: [ 77.3266321926397, 4.715480068960693, 4.677184018924907 ] },
+  { name: "excadrill", xRGB: 49170.0017088175, xJAB: 2949.468008121981, yRGB: [ 122.41626794258373, 107.67634996582365, 107.85645933014354 ], yJAB: [ 48.55965314986732, 3.8026130863963084, 0.9822863531983046 ] },
+  { name: "mesprit", xRGB: 100834.35008282716, xJAB: 5699.9531686931505, yRGB: [ 188.9055770292656, 160.16234124792933, 179.74378796245168 ], yJAB: [ 72.10548531489249, 6.443613693985121, -4.392057314369538 ] },
+  { name: "sandygast", xRGB: 108949.63559322034, xJAB: 6567.466185997158, yRGB: [ 195.61175847457628, 189.80773305084745, 164.2531779661017 ], yJAB: [ 78.30333687770134, -1.0089511092891195, 7.667714001408891 ] },
+  { name: "mothim", xRGB: 84562.33970336567, xJAB: 6106.41562229455, yRGB: [ 205.52253280091273, 159.89503707929265, 85.78066172276098 ], yJAB: [ 71.97131500656455, 5.110918645454056, 18.715865850290136 ] },
+  { name: "drifblim", xRGB: 84775.45947030498, xJAB: 5290.169709061966, yRGB: [ 177.97471910112358, 152.63162118780096, 142.87640449438203 ], yJAB: [ 67.94914020643499, 5.169995013033048, 0.4809943199350799 ] },
+  { name: "buzzwole", xRGB: 37959.59712957348, xJAB: 2741.746874073267, yRGB: [ 134.21689913078635, 74.48857893672933, 65.6367495451789 ], yJAB: [ 42.58028177185209, 14.22324474827333, 8.63460545248182 ] },
+  { name: "abomasnow", xRGB: 131842.09848764294, xJAB: 7260.946343906662, yRGB: [ 190.26392475101437, 206.43305053485798, 205.18830689782368 ], yJAB: [ 82.33675369079862, -5.903063718771207, -1.9479260346543155 ] },
+  { name: "ninetales-alola", xRGB: 135059.3367672308, xJAB: 7403.678544940859, yRGB: [ 193.7064017660044, 209.57125337257787, 215.54059357370616 ], yJAB: [ 83.82946124338623, -5.923037756250569, -5.024251479292445 ] },
+  { name: "meowstic-female", xRGB: 115570.23457350272, xJAB: 6362.464559582486, yRGB: [ 170.68647912885663, 184.73230490018148, 193.20145190562613 ], yJAB: [ 74.98443610640253, -4.006363748313677, -5.17506294440163 ] },
+  { name: "chespin", xRGB: 73800.38318912237, xJAB: 5380.059938493861, yRGB: [ 165.7132262051916, 161.2688504326329, 104.721260815822 ], yJAB: [ 67.85247004486835, -1.8911673403984826, 13.602126840854773 ] },
+  { name: "kartana", xRGB: 105427.01689774697, xJAB: 6307.250074985735, yRGB: [ 193.6100519930676, 179.35225303292896, 149.74263431542462 ], yJAB: [ 75.61337639564648, 0.6271655538131395, 6.446901047284544 ] },
+  { name: "hippopotas", xRGB: 78803.18686599038, xJAB: 5706.9354956825155, yRGB: [ 181.835557928457, 162.0218900160171, 90.98131340096103 ], yJAB: [ 68.55718288327031, 0.08974261886378425, 18.034494817099155 ] },
+  { name: "corvisquire", xRGB: 51399.33736187845, xJAB: 2925.7030950042385, yRGB: [ 83.59737569060773, 98.52417127071823, 108.09564917127072 ], yJAB: [ 41.24616960994453, -3.729763504756327, -4.325473411546699 ] },
+  { name: "giratina-origin", xRGB: 58334.5387803434, xJAB: 3773.1702599669875, yRGB: [ 132.95362147227155, 119.9025064140517, 100.22182751134794 ], yJAB: [ 52.32657081285812, 1.639455985231978, 4.7755816319318924 ] },
+  { name: "talonflame", xRGB: 66905.1304654443, xJAB: 4300.896593781101, yRGB: [ 154.40267983074753, 133.34449929478137, 125.13222849083216 ], yJAB: [ 60.72750087190879, 2.56014661243481, 3.2694147302019876 ] },
+  { name: "hattrem", xRGB: 119696.533847981, xJAB: 6501.727207287285, yRGB: [ 178.5380047505938, 180.74346793349167, 202.70605700712588 ], yJAB: [ 75.1242458639839, -0.7556928470651508, -8.580098516401483 ] },
+  { name: "golett", xRGB: 64164.047079337404, xJAB: 4392.381354879947, yRGB: [ 108.6176983435048, 149.86530078465563, 143.21795989537924 ], yJAB: [ 60.943890707312924, -10.494199966768207, -2.3656387874749174 ] },
+  { name: "koffing", xRGB: 86501.03461538462, xJAB: 4935.586945992901, yRGB: [ 163.93557692307692, 152.9346153846154, 175.3125 ], yJAB: [ 67.25030411836038, 3.4692218153382326, -8.337769454128967 ] },
+  { name: "aegislash", xRGB: 78179.63139204546, xJAB: 4825.947698064751, yRGB: [ 161.8380681818182, 147.56676136363637, 138.3302556818182 ], yJAB: [ 64.08641175400356, 2.2059831163778933, 2.2482015236493003 ] },
+  { name: "empoleon", xRGB: 60725.39411923388, xJAB: 3643.056999742098, yRGB: [ 109.66765578635015, 117.9406528189911, 116.22551928783383 ], yJAB: [ 49.403616419680475, -3.9575669529935205, -2.708758401141612 ] },
+  { name: "manectric", xRGB: 108314.21358828315, xJAB: 6696.891955435555, yRGB: [ 180.9759967453214, 192.67127746135068, 172.76647681041499 ], yJAB: [ 78.18142191386076, -5.029521804408951, 2.2632463003703847 ] },
+  { name: "kricketune", xRGB: 55446.71428571428, xJAB: 3804.6034416724274, yRGB: [ 160.56227758007117, 106.45094051855618, 87.56685307574988 ], yJAB: [ 54.4170060616461, 10.244125143570256, 8.608010291925137 ] },
+  { name: "vivillon-continental", xRGB: 82262.83209094297, xJAB: 5849.05378578245, yRGB: [ 187.30096906448006, 159.7322027581066, 96.45266492732016 ], yJAB: [ 68.66463525215205, 2.0398538756176476, 15.413873703189266 ] },
+  { name: "raticate-alola", xRGB: 59336.83001864512, xJAB: 3656.7925389340526, yRGB: [ 135.44157862026103, 129.65257924176507, 116.68738346799255 ], yJAB: [ 55.694311343101255, -0.06305537718429284, 4.480535624439768 ] },
+  { name: "shieldon", xRGB: 69789.36617927527, xJAB: 4388.390096846173, yRGB: [ 152.53528289891926, 144.46217418944693, 127.35410044500954 ], yJAB: [ 61.96302033240607, -0.12974601194150892, 4.0671901680769045 ] },
+  { name: "cosmog", xRGB: 63493.27303042934, xJAB: 3910.1150643249052, yRGB: [ 85.83451438099208, 127.99082951229678, 174.90245935806587 ], yJAB: [ 54.136308777807315, -6.882639926471146, -17.436825357693454 ] },
+  { name: "sharpedo", xRGB: 70596.96668349318, xJAB: 4243.262432257217, yRGB: [ 90.35487127713276, 139.30388692579504, 168.8929833417466 ], yJAB: [ 57.77099861021533, -6.993705232380133, -12.613253699545078 ] },
+  { name: "milotic", xRGB: 118382.09186168356, xJAB: 6935.488809055347, yRGB: [ 205.5557107928746, 189.39294446384912, 175.5637443241355 ], yJAB: [ 79.8194965652376, 1.881297429638025, 4.530409403913642 ] },
+  { name: "wurmple", xRGB: 103448.22497616778, xJAB: 6107.04566552282, yRGB: [ 205.18303145853193, 160.71401334604386, 156.6787416587226 ], yJAB: [ 73.69300908644927, 8.551661951907459, 4.525126431071225 ] },
+  { name: "registeel", xRGB: 98147.95739084692, xJAB: 5560.295409932604, yRGB: [ 171.70357706470278, 170.01788532351395, 169.07443450815362 ], yJAB: [ 70.94419468655038, -1.0011142350588023, -0.36532040971725066 ] },
+  { name: "crawdaunt", xRGB: 60945.44931415189, xJAB: 4029.8905656793645, yRGB: [ 159.52358648377384, 110.65071930411509, 103.20006691201071 ], yJAB: [ 55.56264775087709, 10.594489277815471, 6.554092585651535 ] },
+  { name: "maractus", xRGB: 60852.04046242774, xJAB: 4850.988772172087, yRGB: [ 122.85857418111753, 155.83660886319845, 109.00308285163777 ], yJAB: [ 62.76202573825891, -9.767289875107402, 9.084879225700966 ] },
+  { name: "graveler", xRGB: 93418.44564505566, xJAB: 5627.872116253349, yRGB: [ 179.23477406679766, 174.45874263261297, 164.11624099541584 ], yJAB: [ 73.61421327822748, -0.2718661780791008, 3.3734065419450223 ] },
 ];

+ 21 - 29
ingest.py

@@ -1,9 +1,9 @@
 #!/usr/bin/env python3
 from collections import namedtuple
 
+import numpy as np
 from PIL import Image
-
-from convert import rgb_to_cieluv
+from colorspacious import cspace_convert
 
 
 def is_outline(r: int, g: int, b: int, a: int) -> bool:
@@ -11,20 +11,20 @@ def is_outline(r: int, g: int, b: int, a: int) -> bool:
     return a == 0 or (r, g, b) == (0, 0, 0)
 
 
-def x_metric(pixels: list[tuple[float, float, float]]) -> float:
+def x_metric(pixels: np.array) -> float:
     # X metric - the mean squared Euclidean norm
     # computed as the sum of the squares of the components of the pixels,
     # normalized by the number of pixels
-    return sum(comp * comp for pix in pixels for comp in pix) / len(pixels)
+    return sum(sum(pixels ** 2)) / len(pixels)
 
 
-def y_metric(pixels: list[tuple[float, float, float]]) -> tuple[float, float, float]:
+def y_metric(pixels: np.array) -> np.array:
     # Y metric - the mean pixel of the image
-    return tuple(sum(p[i] for p in pixels) / len(pixels) for i in range(3))
+    return sum(pixels) / len(pixels)
 
 
 ImageInfo = namedtuple(
-    "ImageInfo", ["name", "xrgb", "xluv", "yr", "yg", "yb", "yl", "yu", "yv"]
+    "ImageInfo", ["name", "xrgb", "xjab", "yrgb", "yjab"]
 )
 
 
@@ -35,30 +35,22 @@ def ingest_png(file_name: str) -> ImageInfo:
     name = file_name.rsplit("/", maxsplit=1)[1].split(".", maxsplit=1)[0]
 
     # read non-outline pixels of image
-    rgb_pixels = [
+    rgb_pixels = np.array([
         (r, g, b)
         for r, g, b, a in Image.open(file_name).convert("RGBA").getdata()
         if not is_outline(r, g, b, a)
-    ]
+    ])
 
-    # convert RGB pixels to CIELUV values
-    luv_pixels = [rgb_to_cieluv(*p) for p in rgb_pixels]
+    # convert RGB pixels to CAM02 values
+    jab_pixels = cspace_convert(rgb_pixels, "sRGB255", "CAM02-UCS")
 
     # compute and return metrics
-    xrgb = x_metric(rgb_pixels)
-    xluv = x_metric(luv_pixels)
-    yr, yg, yb = y_metric(rgb_pixels)
-    yl, yu, yv = y_metric(luv_pixels)
     return ImageInfo(
         name=name,
-        xrgb=xrgb,
-        xluv=xluv,
-        yr=yr,
-        yg=yg,
-        yb=yb,
-        yl=yl,
-        yu=yu,
-        yv=yv,
+        xrgb=x_metric(rgb_pixels),
+        xjab=x_metric(jab_pixels),
+        yrgb=y_metric(rgb_pixels),
+        yjab=y_metric(jab_pixels),
     )
 
 
@@ -77,11 +69,11 @@ if __name__ == "__main__":
 
     with open("database.csv", "w") as outfile:
         writer = csv.writer(outfile, delimiter=",", quotechar="'")
-        writer.writerows([d.name, d.xrgb, d.yr, d.yg, d.yb] for d in data)
+        writer.writerows([d.name, d.xrgb, *d.yrgb] for d in data)
 
-    with open("database-luv.csv", "w") as outfile:
+    with open("database-cam02.csv", "w") as outfile:
         writer = csv.writer(outfile, delimiter=",", quotechar="'")
-        writer.writerows([d.name, d.xluv, d.yl, d.yu, d.yv] for d in data)
+        writer.writerows([d.name, d.xjab, *d.yjab] for d in data)
 
     with open("database.js", "w") as outfile:
         outfile.write("const database = [\n")
@@ -90,9 +82,9 @@ if __name__ == "__main__":
                 (
                     f'name: "{info.name}"',
                     f"xRGB: {info.xrgb}",
-                    f"xLUV: {info.xluv}",
-                    f"yRGB: [ {info.yr}, {info.yg}, {info.yb} ]",
-                    f"yLUV: [ {info.yl}, {info.yu}, {info.yv} ]",
+                    f"xJAB: {info.xjab}",
+                    f"yRGB: [ {', '.join(str(c) for c in info.yrgb)} ]",
+                    f"yJAB: [ {', '.join(str(c) for c in info.yjab)} ]",
                 )
             )
             outfile.write(f"  {{ {fields} }},\n")

+ 4 - 6
math.md

@@ -164,13 +164,11 @@ $$ -->
 The above difference metric is independent of color space, provided Euclidean
 distances align to color differences. The default behavior uses sRGB, which works
 well enough but does produce some strange results. The application also uses the
-[CIELUV](https://en.wikipedia.org/wiki/CIELUV) color space, a (more) perceptually
-uniform color space than standard RGB. Because the L, u, and v components of the
-LUV pixels can be compared with the same Euclidean distance, all that is needed
+[CIECAM02](https://en.wikipedia.org/wiki/CIECAM02) color space, a more perceptually
+uniform color space than standard RGB. Because the J, a, and b components of the
+CAM02 colors can be compared with the same Euclidean distance, all that is needed
 is to calculate new `X(P)` and `Y(P)` values from the converted RGB pixels,
 and then to also convert `q` to this space before calculation. The `ingest.py`
-script generates `database-luv.csv`, which has these modified `X` and `Y` values,
+script generates `database-cam02.csv`, which has these modified `X` and `Y` values,
 and the nearness implementations allow the use of these values instead of the
 RGB-based database.
-
-Future work can be done to use even more uniform color spaces, such as CAM02.

+ 3 - 3
nearest.html

@@ -3,8 +3,8 @@
     <head>
         <meta charset="utf-8" />
         <title>Pokemon By Color</title>
-        <script src="https://unpkg.com/jquery@3.6.0/dist/jquery.min.js"></script>
-        <script src="https://unpkg.com/colorspaces@0.1.5/colorspaces.js"></script>
+        <script src="https://unpkg.com/d3-color@3.0.1/dist/d3-color.min.js"></script>
+        <script src="https://unpkg.com/d3-cam02@0.1.5/build/d3-cam02.min.js"></script>
         <script src="https://unpkg.com/fuse.js@6.5.3/dist/fuse.js"></script>
         <script src="database.js"></script>
         <script src="nearest.js"></script>
@@ -137,7 +137,7 @@
                     </div>
 
                     <div class="container control">
-                        <div>Color Space: <span id="color-space">CIELUV</span></div>
+                        <div>Color Space: <span id="color-space">CAM02-UCS</span></div>
                         <button id="space-toggle" type="button" onclick="onToggleSpace()">Swap to RGB</button>
                     </div>
                 </form>

+ 20 - 14
nearest.js

@@ -20,11 +20,17 @@ const vectorMag = v => Math.sqrt(vectorDot(v, v));
 const pokemonLookup = new Fuse(database, { keys: [ "name" ] });
 
 // hex codes already include leading # in these functions
-// rgb values are [0, 1] in these functions
-const luv2hex = $.colorspaces.converter("CIELUV", "hex");
-const rgb2luv = $.colorspaces.converter("sRGB", "CIELUV");
-const rgb2hex = $.colorspaces.converter("sRGB", "hex");
-const hex2rgb = $.colorspaces.converter("hex", "sRGB");
+// rgb values are [0, 255] in these functions
+const jab2hex = jab => d3.jab(...jab).formatHex();
+const rgb2hex = rgb => d3.rgb(...rgb).formatHex();
+const rgb2jab = rgb => {
+  const { J, a, b } = d3.jab(d3.rgb(...rgb));
+  return [ J, a, b ];
+}
+const hex2rgb = hex => {
+  const { r, g, b } = d3.rgb(hex);
+  return [ r, g, b ];
+};
 
 // scoring functions
 const getNormedScorer = (c, q) => {
@@ -42,7 +48,7 @@ const createTile = hexColor => {
   return tile;      
 }
 
-const createPokemon = ({ name, score, yRGB, yLUV }) => {
+const createPokemon = ({ name, score, yRGB, yJAB }) => {
   const img = document.createElement("img");
   img.setAttribute("src", getSprite(name));
 
@@ -56,8 +62,8 @@ const createPokemon = ({ name, score, yRGB, yLUV }) => {
   textSpan.textContent = text;
   textSpan.setAttribute("class", "pokemon_text");
   pkmn.appendChild(textSpan);
-  pkmn.appendChild(createTile(rgb2hex(yRGB.map(x => x / 255))));
-  pkmn.appendChild(createTile(luv2hex(yLUV)));
+  pkmn.appendChild(createTile(rgb2hex(yRGB)));
+  pkmn.appendChild(createTile(jab2hex(yJAB)));
   return pkmn;
 }
 
@@ -83,7 +89,7 @@ const onUpdate = (event) => {
   const numPoke = document.getElementById("num-poke")?.value ?? 20;
   const pokemonName = document.getElementById("pokemon-name")?.value?.toLowerCase() ?? "";
   const targetColor = "#" + (document.getElementById("color-input")?.value?.replace("#", "") ?? "FFFFFF");
-  const targetRGB = hex2rgb(targetColor).map(x => x * 255);
+  const targetRGB = hex2rgb(targetColor);
 
   // Update display values
   document.getElementById("x-term").textContent = includeX ? "X(P)" : "";
@@ -94,9 +100,9 @@ const onUpdate = (event) => {
   document.getElementById("num-poke-display").textContent = numPoke;
   
   // determine metrics from configuration
-  const targetInSpace = useRGB ? targetRGB : rgb2luv(targetRGB.map(x => x / 255));
-  const xSelector = includeX ? (useRGB ? ({ xRGB }) => xRGB : ({ xLUV }) => xLUV) : () => 0;
-  const ySelector = useRGB ? ({ yRGB }) => yRGB : ({ yLUV }) => yLUV;
+  const targetInSpace = useRGB ? targetRGB : rgb2jab(targetRGB);
+  const xSelector = includeX ? (useRGB ? ({ xRGB }) => xRGB : ({ xJAB }) => xJAB) : () => 0;
+  const ySelector = useRGB ? ({ yRGB }) => yRGB : ({ yJAB }) => yJAB;
   const yScorer = (normQY ? getNormedScorer : getUnnormedScorer)(closeCoeff, targetInSpace);
   const totalScorer = info => xSelector(info) - yScorer(ySelector(info));
 
@@ -139,14 +145,14 @@ const onUpdate = (event) => {
 };
 
 const onRandomColor = () => {
-  document.getElementById("color-input").value = rgb2hex([Math.random(), Math.random(), Math.random()]);
+  document.getElementById("color-input").value = rgb2hex([Math.random(), Math.random(), Math.random()].map(c => c * 255));
   onUpdate();
 };
 
 const onToggleSpace = () => {
   const element = document.getElementById("color-space");
   const current = element?.textContent;
-  element.textContent = current === "RGB" ? "CIELUV" : "RGB";
+  element.textContent = current === "RGB" ? "CAM02-UCS" : "RGB";
   document.getElementById("space-toggle").textContent = `Swap to ${current}`
   onUpdate();
 };

+ 8 - 9
nearest.py

@@ -4,8 +4,6 @@ import math
 import random
 from argparse import ArgumentParser
 
-from convert import rgb_to_cieluv
-
 
 def norm(r, g, b):
     return math.sqrt(r * r + g * g + b * b)
@@ -25,10 +23,10 @@ parser.add_argument("-d", "--database", default="database.csv", help="Database f
 parser.add_argument("-x", "--exclude-x", action="store_true", help="Exclude X")
 parser.add_argument("-z", "--normalize", action="store_true", help="Normalize q and Y")
 parser.add_argument(
-    "-l",
-    "--convert-luv",
+    "-j",
+    "--convert-cam02",
     action="store_true",
-    help="Convert input color to CIELUV before calculation",
+    help="Convert input color to CIECAM02-UCS before calculation",
 )
 parser.add_argument("-v", "--verbose", action="store_true", help="Print raw scores")
 args = parser.parse_args()
@@ -49,8 +47,9 @@ else:
     color = tuple(int(random.random() * 255) for _ in range(3))
     print(f"Generated random color: #{''.join(hex(c)[2:] for c in color)} / {color}")
 
-if args.convert_luv:
-    color = rgb_to_cieluv(*color)
+if args.convert_cam02:
+    from colorspacious import cspace_convert
+    color = list(cspace_convert(color, "sRGB255", "CAM02-UCS"))
 
 yfactor = args.closeness
 if args.normalize:
@@ -68,7 +67,7 @@ with open(args.database) as infile:
         results.append((score, name))
 
 if args.number > 1:
-    for i, (score, name) in enumerate(sorted(results)[: args.number]):
+    for i, (score, name) in enumerate(sorted(results)[:args.number]):
         print(f"{i+1}:\t{name}")
         if args.verbose:
             print(f"\t\t\t{score=}")
@@ -76,4 +75,4 @@ else:
     best_score, best_name = min(results)
     print(f"Best match: {best_name}")
     if args.verbose:
-        print(f"{score=}")
+        print(f"{best_score=}")

+ 2 - 0
requirements.txt

@@ -1 +1,3 @@
+colorspacious==1.1.2
+numpy==1.22.2
 Pillow==9.0.0