| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289 |
- fileFormatVersion: 2
- guid: 215687feeab0b7445b4a1cd86c82c2e1
- labels:
- - IgnoreTest_CheckPlatformTextureSettings
- TextureImporter:
- internalIDToNameTable:
- - first:
- 213: 21300000
- second: premium
- - first:
- 213: 21300002
- second: coins
- - first:
- 213: 21300004
- second: food
- - first:
- 213: 21300006
- second: goods
- - first:
- 213: 21300008
- second: glass
- - first:
- 213: 21300010
- second: workers_big_city_capital
- - first:
- 213: 21300012
- second: research_points
- - first:
- 213: 21300014
- second: boost
- - first:
- 213: 21300016
- second: bb_checkmark
- - first:
- 213: -6279640769779937744
- second: clock_embossed_pos
- - first:
- 213: 2102306210881839429
- second: culture_bonus
- - first:
- 213: 4513387777306473356
- second: workers_small_city_capital
- - first:
- 213: -6479823341794910233
- second: expansion
- - first:
- 213: 7780953735995972703
- second: happiness_3
- - first:
- 213: 7459902675860876989
- second: culture_range
- - first:
- 213: -399840562033327265
- second: map
- - first:
- 213: 1357911645972831016
- second: scout
- - first:
- 213: 1260782343283211980
- second: swords
- - first:
- 213: 7096138885364736195
- second: upgrade
- - first:
- 213: 2441754920960949527
- second: coin_food_boost
- - first:
- 213: -3338912914735402841
- second: range_blue
- - first:
- 213: 8323598589155270872
- second: map_blue
- - first:
- 213: -8863619430189855094
- second: swords_blue
- - first:
- 213: 6644182187024332451
- second: scout_blue
- - first:
- 213: -3518875668666682211
- second: culture_bonus
- - first:
- 213: -1869673367297931309
- second: coins_small
- - first:
- 213: 7245690677989368111
- second: bb_lock
- - first:
- 213: 2267314249368087281
- second: happiness_0
- - first:
- 213: -9053465508694820594
- second: happiness_1
- - first:
- 213: -1134528729738406305
- second: happiness_2
- - first:
- 213: 4721570850333449918
- second: tutorial_icon_build
- - first:
- 213: 1954612522021269676
- second: tutorial_icon_produce
- - first:
- 213: -2043815690625100865
- second: tutorial_icon_incident
- - first:
- 213: 7245690677989368111
- second: dead
- - first:
- 213: 7245690677989368111
- second: clock_blue
- - first:
- 213: 3121471347900928983
- second: workers_city_capital
- - first:
- 213: 255080986811049931
- second: food_small
- - first:
- 213: -8988441530965576436
- second: upgrade_small
- - first:
- 213: 6547572931748238266
- second: research_points_small
- - first:
- 213: -1571012651542167539
- second: warning
- - first:
- 213: 7237261532831544450
- second: icon_bronze_bracelet
- - first:
- 213: 8373675954752092734
- second: icon_alabaster_idol
- - first:
- 213: 358799654582701605
- second: icon_wool
- - first:
- 213: 1438499179017281121
- second: icon_flint
- - first:
- 213: 5908195551155024309
- second: icon_hide
- - first:
- 213: -7191163486456543192
- second: wonder_active_checkmark
- - first:
- 213: 6905562749588875414
- second: cta_recruit
- - first:
- 213: 8706619048834826526
- second: icon_food_black
- - first:
- 213: -8078951251822203351
- second: irrigation_bonus
- - first:
- 213: 8170858238558910055
- second: InlineIcons_1
- - first:
- 213: 8806383704849223010
- second: InlineIcons_2
- - first:
- 213: -4770960272869957185
- second: cta_linen_shirt
- - first:
- 213: -9021633436630479557
- second: cta_marble_bust
- - first:
- 213: -2269303870351376580
- second: cta_golden_sphinx
- - first:
- 213: 541087786881136906
- second: cta_papyrus
- - first:
- 213: -7343220986905845580
- second: cta_ankh
- - first:
- 213: -2518806979871309895
- second: cta_ceremonial_dress
- - first:
- 213: 6619405697063382928
- second: irrigation_0
- - first:
- 213: -5368687836300328278
- second: irrigation_1
- - first:
- 213: 1461871564780703198
- second: irrigation_2
- - first:
- 213: -2457531169152919533
- second: irrigation
- - first:
- 213: -8318277596760801014
- second: cta_iron_pendant
- - first:
- 213: 2117336584302238645
- second: cta_gold_ore
- - first:
- 213: -7215298494019262123
- second: cta_papyrus_scroll
- - first:
- 213: 8674190453677158122
- second: cta_research_points
- - first:
- 213: 1494432333228735887
- second: workers_trading_big
- - first:
- 213: -6162265055754030298
- second: cta_silver_ring
- - first:
- 213: -7230867332484785407
- second: cta_toga
- - first:
- 213: 8640258737205591229
- second: cta_column
- - first:
- 213: -7927273033115742964
- second: deben
- - first:
- 213: -7357144505842695810
- second: cta_gold_laurel
- - first:
- 213: 210297501773229927
- second: cta_tunic
- - first:
- 213: 3537169958838929854
- second: cta_stone_tablet
- - first:
- 213: 4104117333016806175
- second: ebc_cryptofthecount
- - first:
- 213: 3495086814825567685
- second: blueprint
- - first:
- 213: 921062424029211809
- second: workers_big_city_egypt
- - first:
- 213: -3402344481944718353
- second: trade
- - first:
- 213: 7972151216418658502
- second: InlineIcons_32
- - first:
- 213: 5078477160627523986
- second: wonders
- - first:
- 213: -497568770147540219
- second: unit_cavalry
- - first:
- 213: 5390246818323809478
- second: unit_range
- - first:
- 213: 2437483765381717123
- second: unit_melee
- - first:
- 213: -5437674158304577141
- second: commander
- - first:
- 213: -5645743825326872590
- second: icon_trade token
- - first:
- 213: -701876230672350822
- second: cta_building_vikings_sailorport
- - first:
- 213: -7851600766591116406
- second: cta_silk_threads
- - first:
- 213: -2829443050583330228
- second: cta_rice
- - first:
- 213: 4524241383834298874
- second: cta_silk
- - first:
- 213: 6396128496709196802
- second: cta_porcelain
- - first:
- 213: -7411174152488024004
- second: cta_clay
- - first:
- 213: -44565893461480510
- second: cta_moth_cocoons
- - first:
- 213: 4936506583271141030
- second: cta_kaolin
- - first:
- 213: -8264326421717354311
- second: cta_wu_zhu
- - first:
- 213: -5167353112666354359
- second: cta_coins
- - first:
- 213: -1321098932929957079
- second: cta_mosaic
- - first:
- 213: 7462434613906369459
- second: cta_goblet
- - first:
- 213: 8287165777748813492
- second: cta_cape
- - first:
- 213: -7907368816393526887
- second: wu_zhu
- - first:
- 213: 5803713721798503446
- second: cta_cocoa
- - first:
- 213: 6409830552331150148
- second: cta_jade
- - first:
- 213: 4956319499149316874
- second: cta_obsidian
- - first:
- 213: 8757602080057577540
- second: cta_feather
- - first:
- 213: 9112743452827066768
- second: cta_priest
- - first:
- 213: -5159087384432534610
- second: cta_ancestor_mask
- - first:
- 213: 8678780475385641507
- second: cta_calendar_stone
- - first:
- 213: -5049782452158657568
- second: cta_ritual_dagger
- - first:
- 213: 7513239266779225853
- second: cta_headdress
- - first:
- 213: -6316392241553622110
- second: cta_suns_blessing
- - first:
- 213: 6195470969790340212
- second: ranking
- - first:
- 213: -4834095905783300709
- second: ebc_hydra
- - first:
- 213: 6107784321054212483
- second: cocoa
- - first:
- 213: 7681201850867341242
- second: ath_attempt
- - first:
- 213: -7043394559850540028
- second: cta_obsidianjade
- - first:
- 213: -4501791974573854292
- second: cta_obsidiancalendarancestormask
- - first:
- 213: 5488086946749717670
- second: cta_pepper
- - first:
- 213: -1670260634343250872
- second: cta_planks
- - first:
- 213: -8210193684748564459
- second: cta_salt
- - first:
- 213: -2217656884674354197
- second: cta_ink
- - first:
- 213: -8037489388941252367
- second: cta_wooden_wheel
- - first:
- 213: 1023881543254830229
- second: cta_happiness_maya_2
- - first:
- 213: -8141631665637155745
- second: workers_big_priestmaya
- - first:
- 213: -8943414918624194942
- second: workers_big_priestmaya
- - first:
- 213: -4198053654051914648
- second: workers_small_priestmaya
- - first:
- 213: -2136406889496393637
- second: workers_big_city_mayas
- - first:
- 213: 6228371465862800648
- second: workers_city_mayas
- - first:
- 213: 2108014542765709681
- second: workers_small_city_mayas
- - first:
- 213: -6707575059094875716
- second: workers_big_city_china
- - first:
- 213: 5706957933644387078
- second: workers_city_china
- - first:
- 213: -3297204628491984772
- second: workers_small_city_china
- - first:
- 213: -6346629593138849361
- second: workers_city_egypt
- - first:
- 213: -3389039848645536794
- second: workers_small_city_egypt
- - first:
- 213: 37763770702065993
- second: ebc_madscientistslab
- - first:
- 213: -1999946806344817058
- second: ebc_piratefortress
- - first:
- 213: 7812820661483254461
- second: wonder_inactive_checkmark
- - first:
- 213: 3969048961352433308
- second: cta_maya_luxurious_workshop_level2
- - first:
- 213: 1037585894331930479
- second: ebc_wintermarket
- - first:
- 213: 1853125249586873685
- second: info
- - first:
- 213: 9124709818946717747
- second: ebc_trojanhorse
- - first:
- 213: -8267115305123039760
- second: icon_chest_good2
- - first:
- 213: 8996665824694350818
- second: ebc_broch
- - first:
- 213: 4624541004163449478
- second: cta_manuscript
- - first:
- 213: 2289998852469363648
- second: cta_barrel
- - first:
- 213: -7333887034695731682
- second: cta_herbs
- - first:
- 213: 1088730770723027953
- second: cta_icon_chest_blueprint
- - first:
- 213: -1953511547368589529
- second: cta_icon_chest_rp
- - first:
- 213: 4939863863825205819
- second: ebc_persianpalace
- - first:
- 213: -1104962026362419977
- second: shoreline
- - first:
- 213: -2794259043635821732
- second: cta_mead
- - first:
- 213: 8617892559191809022
- second: cta_stockfish
- - first:
- 213: 5701253759128972283
- second: cta_spice_treasure
- - first:
- 213: 8814212362280375727
- second: cta_gold_treasure
- - first:
- 213: -4951088303895349411
- second: icon_gem_treasure
- - first:
- 213: -1856732651501631057
- second: cta_pennies
- - first:
- 213: -3386218922703161388
- second: cta_honey
- - first:
- 213: -8478562381375844705
- second: cta_fish
- - first:
- 213: 4751259173209894178
- second: cta_ceramic_treasure
- - first:
- 213: 7700661865242328817
- second: pennies
- - first:
- 213: 8289822419994577490
- second: workers_big_city_vikings
- - first:
- 213: 3017109405843695886
- second: workers_city_vikings
- - first:
- 213: 429688389500101892
- second: workers_small_city_vikings
- - first:
- 213: 7673711170268496860
- second: workers_big_sailorvikings
- - first:
- 213: 7291930161081552924
- second: workers_sailorvikings
- - first:
- 213: -983479635111419447
- second: workers_small_sailorvikings
- - first:
- 213: -5617448299673312401
- second: cta_mixedchest
- - first:
- 213: -2904807348406626498
- second: wonder_orb
- - first:
- 213: -1487877384612313618
- second: cta_icon_mystery_chest_gold
- - first:
- 213: -1659708932042841261
- second: blueprint_rare
- - first:
- 213: 4281911320752687849
- second: InlineIcons_122
- - first:
- 213: 7674156195484195045
- second: gears
- - first:
- 213: -7006899675943808146
- second: ebc_madrasa
- - first:
- 213: 5534174253454217892
- second: ebc_shrineofreflection
- - first:
- 213: 4642325231336661812
- second: cta_gears
- - first:
- 213: 3375157875343467442
- second: cta_wax_seal
- - first:
- 213: -838908008875007501
- second: cta_door
- - first:
- 213: -2578651400172810937
- second: cta_saffron
- - first:
- 213: -4178829386858457095
- second: InlineIcons_130
- - first:
- 213: 2586379074099917112
- second: cta_building_vikings_sailorport_premium_1
- - first:
- 213: -12563651127225671
- second: cta_building_vikings_sailorport_premium_2
- - first:
- 213: 3112621357950915070
- second: InlineIcons_133
- - first:
- 213: -329868462160931304
- second: InlineIcons_134
- - first:
- 213: -8463493406355435034
- second: InlineIcons_135
- - first:
- 213: 2084413756825693856
- second: InlineIcons_136
- - first:
- 213: 3643772185187624922
- second: flat_cancel
- - first:
- 213: -922888878065087515
- second: flat_check
- - first:
- 213: 2061223666325461347
- second: bb_lock_grey
- - first:
- 213: -2965744954758517795
- second: icon_crate
- - first:
- 213: 3436914362765528371
- second: icon_star
- - first:
- 213: 7134325258175837443
- second: icon_tome
- - first:
- 213: -728244194544253039
- second: icon_wardrobe
- - first:
- 213: -5750983614340588109
- second: icon_chili
- - first:
- 213: -4020335626915314013
- second: icon_arabia_worker
- - first:
- 213: 3814798381351036019
- second: icon_dirham
- - first:
- 213: 1302763225339234619
- second: icon_gold_dinar
- - first:
- 213: 1896382066041297041
- second: icon_incense
- - first:
- 213: -6463064620358863643
- second: icon_coffee_beans
- - first:
- 213: -7081792888699921481
- second: icon_myrrh
- - first:
- 213: 8475544577015182143
- second: icon_brass
- - first:
- 213: 6694968190869980855
- second: icon_coffee
- - first:
- 213: 4932850884273308405
- second: icon_camel
- - first:
- 213: -5536544251107829900
- second: InlineIcons_154
- - first:
- 213: 8954016801280762372
- second: cta_icon_mystery_chest
- - first:
- 213: -7335904089167868400
- second: cta_icon_loot_container
- - first:
- 213: -3662145209645026858
- second: cta_icon_loot_container_bronze
- - first:
- 213: 2101787439100353768
- second: InlineIcons_158
- - first:
- 213: 6718763151315418932
- second: icon_event_pegasus_tokens
- - first:
- 213: 8158563787144471110
- second: icon_event_greek_2023_grand_prize_progress
- externalObjects: {}
- serializedVersion: 12
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- ignoreMasterTextureLimit: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 0
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 2
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 0
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 1
- cookieLightType: 1
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 2
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 2
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: WebGL
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 29
- textureCompression: 2
- compressionQuality: 100
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 48
- textureCompression: 2
- compressionQuality: 100
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 2
- compressionQuality: 100
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Server
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 2
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites:
- - serializedVersion: 2
- name: premium
- rect:
- serializedVersion: 2
- x: 49
- y: 866
- width: 76
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 83f85091368767e4188587d328b8c84f
- internalID: 21300000
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: coins
- rect:
- serializedVersion: 2
- x: 158
- y: 864
- width: 85
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 49e741622c3aefa4ca44ec32dad4ef71
- internalID: 21300002
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: food
- rect:
- serializedVersion: 2
- x: 278
- y: 867
- width: 87
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 7d7bc22a6fb83004d8764e921be63edd
- internalID: 21300004
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: goods
- rect:
- serializedVersion: 2
- x: 398
- y: 862
- width: 107
- height: 88
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: d89852f581cf9354e8fb5aa021cc68e3
- internalID: 21300006
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: glass
- rect:
- serializedVersion: 2
- x: 505
- y: 848
- width: 103
- height: 105
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 53f810b2f7a935246a387957ace8ad2f
- internalID: 21300008
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_city_capital
- rect:
- serializedVersion: 2
- x: 53
- y: 729
- width: 98
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4cd4703620da72440a97a394f2eac0e0
- internalID: 21300010
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: research_points
- rect:
- serializedVersion: 2
- x: 234
- y: 734
- width: 78
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: aa8f66d69aacd5a44b855a1defaa1136
- internalID: 21300012
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: boost
- rect:
- serializedVersion: 2
- x: 333
- y: 742
- width: 79
- height: 79
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2b0d033be79806440bcba6231f98aba1
- internalID: 21300014
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: bb_checkmark
- rect:
- serializedVersion: 2
- x: 427
- y: 760
- width: 40
- height: 38
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c563e19d8f40c7d4088db86f37a4c600
- internalID: 21300016
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: clock_embossed_pos
- rect:
- serializedVersion: 2
- x: 478
- y: 759
- width: 40
- height: 42
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ced74530b2ea39a4ab157a71997e2f8b
- internalID: -6279640769779937744
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_city_capital
- rect:
- serializedVersion: 2
- x: 152
- y: 730
- width: 56
- height: 50
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9d726b4690cc3c046a3d3625cc4b2d45
- internalID: 4513387777306473356
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: expansion
- rect:
- serializedVersion: 2
- x: 609
- y: 864
- width: 84
- height: 77
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a53c7f54d885517428d30f4f28fce080
- internalID: -6479823341794910233
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: happiness_3
- rect:
- serializedVersion: 2
- x: 712
- y: 865
- width: 81
- height: 86
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 68cb8f35ec89aae49b141f263f832673
- internalID: 7780953735995972703
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: culture_range
- rect:
- serializedVersion: 2
- x: 808
- y: 862
- width: 86
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3bcc40f1032b13945baef86763ef6aed
- internalID: 7459902675860876989
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: map
- rect:
- serializedVersion: 2
- x: 906
- y: 870
- width: 84
- height: 74
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: dabd4aac492f3a944bff918910a2b10c
- internalID: -399840562033327265
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: scout
- rect:
- serializedVersion: 2
- x: 905
- y: 784
- width: 83
- height: 56
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2b4f5de59fe9d214cb8e9f2b2ea74681
- internalID: 1357911645972831016
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: swords
- rect:
- serializedVersion: 2
- x: 819
- y: 778
- width: 65
- height: 67
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5a9b475af385adc40b094c5de24f73b0
- internalID: 1260782343283211980
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: upgrade
- rect:
- serializedVersion: 2
- x: 720
- y: 774
- width: 66
- height: 80
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2e9e84f41137bc9459155c51b48a78cf
- internalID: 7096138885364736195
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: coin_food_boost
- rect:
- serializedVersion: 2
- x: 642
- y: 625
- width: 154
- height: 106
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b5e1b5d0bc69e9b4e84a618d58c0184f
- internalID: 2441754920960949527
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: culture_bonus
- rect:
- serializedVersion: 2
- x: 623
- y: 741
- width: 76
- height: 74
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 436398409ee116b4f8cf892406ccb78b
- internalID: 2102306210881839429
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: coins_small
- rect:
- serializedVersion: 2
- x: 169
- y: 957
- width: 60
- height: 66
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 8ca9c23c24295e645bf4cc9cc4d0bd57
- internalID: -1869673367297931309
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: bb_lock
- rect:
- serializedVersion: 2
- x: 430
- y: 800
- width: 34
- height: 47
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 37d6aeaf2a1d1f24eaba5154ac8b0e13
- internalID: 7245690677989368111
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: happiness_0
- rect:
- serializedVersion: 2
- x: 58
- y: 636
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4ad54f0f6dbfb7143bad98c648e809ca
- internalID: 2267314249368087281
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: happiness_1
- rect:
- serializedVersion: 2
- x: 137
- y: 636
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6ec6fcaba52d4494faf75bc1c3af336c
- internalID: -9053465508694820594
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: happiness_2
- rect:
- serializedVersion: 2
- x: 216
- y: 636
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ec13a36d203f80941870232804ccef92
- internalID: -1134528729738406305
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: tutorial_icon_build
- rect:
- serializedVersion: 2
- x: 0
- y: 507
- width: 94
- height: 110
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fd561678281081f438b6638ea4235756
- internalID: 4721570850333449918
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: tutorial_icon_produce
- rect:
- serializedVersion: 2
- x: 95
- y: 507
- width: 105
- height: 110
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2afac35630599f147977221b5b90f941
- internalID: 1954612522021269676
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: tutorial_icon_incident
- rect:
- serializedVersion: 2
- x: 200
- y: 507
- width: 133
- height: 110
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9a374c56294889d49863ffcd54fada26
- internalID: -2043815690625100865
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: dead
- rect:
- serializedVersion: 2
- x: 310
- y: 628
- width: 111
- height: 80
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a0158a702588ee3459817f1e7556e159
- internalID: -9160987577138628238
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: clock_blue
- rect:
- serializedVersion: 2
- x: 429
- y: 661
- width: 90
- height: 91
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: cb6c77a2aa025d843be0f74568128068
- internalID: -8246627260571945669
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_city_capital
- rect:
- serializedVersion: 2
- x: 0
- y: 960
- width: 69
- height: 65
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b32f1b9cf20a22842a506a3deca6ce00
- internalID: 3121471347900928983
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: food_small
- rect:
- serializedVersion: 2
- x: 357
- y: 952
- width: 61
- height: 68
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 77228c1a149c01c47bd9c44a2fbce206
- internalID: 255080986811049931
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: upgrade_small
- rect:
- serializedVersion: 2
- x: 483
- y: 959
- width: 55
- height: 65
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f55aebf2655497f4fae10f5f71b0f3a1
- internalID: -8988441530965576436
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: research_points_small
- rect:
- serializedVersion: 2
- x: 162
- y: 786
- width: 56
- height: 67
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: bcf88ff28388b57408808d682fe07859
- internalID: 6547572931748238266
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: warning
- rect:
- serializedVersion: 2
- x: 607
- y: 969
- width: 56
- height: 49
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: d004f272154a23ae0800000000000000
- internalID: -1571012651542167539
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_bronze_bracelet
- rect:
- serializedVersion: 2
- x: 342
- y: 530
- width: 75
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 284f50bf40bef6460800000000000000
- internalID: 7237261532831544450
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_alabaster_idol
- rect:
- serializedVersion: 2
- x: 417
- y: 530
- width: 75
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e3a7a3b4ae5453470800000000000000
- internalID: 8373675954752092734
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_wool
- rect:
- serializedVersion: 2
- x: 492
- y: 531
- width: 92
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 52e4fe48266baf400800000000000000
- internalID: 358799654582701605
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_flint
- rect:
- serializedVersion: 2
- x: 584
- y: 530
- width: 82
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 16e140fb16396f310800000000000000
- internalID: 1438499179017281121
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_hide
- rect:
- serializedVersion: 2
- x: 668
- y: 531
- width: 93
- height: 90
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5b173220d802ef150800000000000000
- internalID: 5908195551155024309
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_recruit
- rect:
- serializedVersion: 2
- x: 529
- y: 638
- width: 83
- height: 100
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6982a67cbbc75df50800000000000000
- internalID: 6905562749588875414
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_food_black
- rect:
- serializedVersion: 2
- x: 841
- y: 533
- width: 81
- height: 90
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e11037035ef14d870800000000000000
- internalID: 8706619048834826526
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: irrigation_bonus
- rect:
- serializedVersion: 2
- x: 546
- y: 748
- width: 60
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 92ea07df3acc1ef80800000000000000
- internalID: -8078951251822203351
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_linen_shirt
- rect:
- serializedVersion: 2
- x: 60
- y: 412
- width: 75
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fb1e512d8e42acdb0800000000000000
- internalID: -4770960272869957185
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_marble_bust
- rect:
- serializedVersion: 2
- x: 461
- y: 415
- width: 71
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b3d8ad32038bcc280800000000000000
- internalID: -9021633436630479557
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_golden_sphinx
- rect:
- serializedVersion: 2
- x: 137
- y: 413
- width: 91
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c3f79483720d180e0800000000000000
- internalID: -2269303870351376580
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_papyrus
- rect:
- serializedVersion: 2
- x: 231
- y: 413
- width: 92
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a093a51b974528700800000000000000
- internalID: 541087786881136906
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_ankh
- rect:
- serializedVersion: 2
- x: 327
- y: 417
- width: 68
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4b0a8402b63a71a90800000000000000
- internalID: -7343220986905845580
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_ceremonial_dress
- rect:
- serializedVersion: 2
- x: 396
- y: 417
- width: 60
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9bffef2a5666b0dd0800000000000000
- internalID: -2518806979871309895
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: irrigation_0
- rect:
- serializedVersion: 2
- x: 0
- y: 325
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 09fe8ad096adcdb50800000000000000
- internalID: 6619405697063382928
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: irrigation_1
- rect:
- serializedVersion: 2
- x: 79
- y: 325
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: aa2cb5f7bd69e75b0800000000000000
- internalID: -5368687836300328278
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: irrigation_2
- rect:
- serializedVersion: 2
- x: 159
- y: 325
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: edd8ffd517c994410800000000000000
- internalID: 1461871564780703198
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: irrigation
- rect:
- serializedVersion: 2
- x: 237
- y: 325
- width: 78
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 31890361c6815edd0800000000000000
- internalID: -2457531169152919533
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_iron_pendant
- rect:
- serializedVersion: 2
- x: 721
- y: 417
- width: 85
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a018bfd099a8f8c80800000000000000
- internalID: -8318277596760801014
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_gold_ore
- rect:
- serializedVersion: 2
- x: 537
- y: 417
- width: 79
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5bb1641c76a426d10800000000000000
- internalID: 2117336584302238645
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_papyrus_scroll
- rect:
- serializedVersion: 2
- x: 616
- y: 417
- width: 104
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 559229b7f3c1edb90800000000000000
- internalID: -7215298494019262123
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_research_points
- rect:
- serializedVersion: 2
- x: 808
- y: 417
- width: 80
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: aeee281824ae06870800000000000000
- internalID: 8674190453677158122
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_trading_big
- rect:
- serializedVersion: 2
- x: 810
- y: 670
- width: 98
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f8df4fa0a4a4db410800000000000000
- internalID: 1494432333228735887
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_silver_ring
- rect:
- serializedVersion: 2
- x: 889
- y: 419
- width: 69
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6237af3b49c3b7aa0800000000000000
- internalID: -6162265055754030298
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_toga
- rect:
- serializedVersion: 2
- x: 824
- y: 318
- width: 65
- height: 95
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 10b944dc87cc6ab90800000000000000
- internalID: -7230867332484785407
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_column
- rect:
- serializedVersion: 2
- x: 892
- y: 320
- width: 68
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: dbcba9e1b8d58e770800000000000000
- internalID: 8640258737205591229
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: deben
- rect:
- serializedVersion: 2
- x: 752
- y: 318
- width: 71
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c0d4a974d2bacf190800000000000000
- internalID: -7927273033115742964
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_gold_laurel
- rect:
- serializedVersion: 2
- x: 648
- y: 323
- width: 100
- height: 89
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e7187004d0c26e990800000000000000
- internalID: -7357144505842695810
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_tunic
- rect:
- serializedVersion: 2
- x: 561
- y: 312
- width: 80
- height: 100
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 76f6852b6702be200800000000000000
- internalID: 210297501773229927
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_stone_tablet
- rect:
- serializedVersion: 2
- x: 482
- y: 317
- width: 76
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: eb907ca365d861130800000000000000
- internalID: 3537169958838929854
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: blueprint
- rect:
- serializedVersion: 2
- x: 1
- y: 241
- width: 70
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5c554d8b0fa018030800000000000000
- internalID: 3495086814825567685
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_city_egypt
- rect:
- serializedVersion: 2
- x: 914
- y: 670
- width: 94
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 1aca838056548cc00800000000000000
- internalID: 921062424029211809
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: trade
- rect:
- serializedVersion: 2
- x: 907
- y: 947
- width: 86
- height: 71
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fe3bc2658b178c0d0800000000000000
- internalID: -3402344481944718353
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_32
- rect:
- serializedVersion: 2
- x: 671
- y: 953
- width: 65
- height: 71
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6c815560b45c2ae60800000000000000
- internalID: 7972151216418658502
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: wonders
- rect:
- serializedVersion: 2
- x: 77
- y: 240
- width: 101
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 291532712106a7640800000000000000
- internalID: 5078477160627523986
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: unit_cavalry
- rect:
- serializedVersion: 2
- x: 182
- y: 240
- width: 71
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 503270cf6d74819f0800000000000000
- internalID: -497568770147540219
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: unit_range
- rect:
- serializedVersion: 2
- x: 256
- y: 242
- width: 68
- height: 67
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6c4ced92ce00eca40800000000000000
- internalID: 5390246818323809478
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: unit_melee
- rect:
- serializedVersion: 2
- x: 330
- y: 244
- width: 57
- height: 65
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 38cdb5df19ea3d120800000000000000
- internalID: 2437483765381717123
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: commander
- rect:
- serializedVersion: 2
- x: 391
- y: 240
- width: 103
- height: 71
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b893fedb9208984b0800000000000000
- internalID: -5437674158304577141
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_trade token
- rect:
- serializedVersion: 2
- x: 928
- y: 536
- width: 87
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2f7698e37e946a1b0800000000000000
- internalID: -5645743825326872590
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_silk_threads
- rect:
- serializedVersion: 2
- x: 960
- y: 320
- width: 50
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a8bd62dc3b2890390800000000000000
- internalID: -7851600766591116406
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_rice
- rect:
- serializedVersion: 2
- x: 502
- y: 212
- width: 104
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c4278c9598ccbb8d0800000000000000
- internalID: -2829443050583330228
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_silk
- rect:
- serializedVersion: 2
- x: 606
- y: 212
- width: 70
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: af9a091719559ce30800000000000000
- internalID: 4524241383834298874
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_porcelain
- rect:
- serializedVersion: 2
- x: 676
- y: 215
- width: 59
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 20cda18cafc93c850800000000000000
- internalID: 6396128496709196802
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_clay
- rect:
- serializedVersion: 2
- x: 736
- y: 221
- width: 103
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c380568df58362990800000000000000
- internalID: -7411174152488024004
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_moth_cocoons
- rect:
- serializedVersion: 2
- x: 840
- y: 208
- width: 92
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2cb61275e8ba16ff0800000000000000
- internalID: -44565893461480510
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_kaolin
- rect:
- serializedVersion: 2
- x: 935
- y: 211
- width: 78
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6aee04f259ef18440800000000000000
- internalID: 4936506583271141030
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_wu_zhu
- rect:
- serializedVersion: 2
- x: 0
- y: 141
- width: 96
- height: 98
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9b879add7e63f4d80800000000000000
- internalID: -8264326421717354311
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_coins
- rect:
- serializedVersion: 2
- x: 101
- y: 146
- width: 82
- height: 90
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 94d438ac8bfd948b0800000000000000
- internalID: -5167353112666354359
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_mosaic
- rect:
- serializedVersion: 2
- x: 192
- y: 146
- width: 87
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 923ff8d15838aade0800000000000000
- internalID: -1321098932929957079
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_goblet
- rect:
- serializedVersion: 2
- x: 280
- y: 145
- width: 84
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3bbe7716eb4ef8760800000000000000
- internalID: 7462434613906369459
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_cape
- rect:
- serializedVersion: 2
- x: 367
- y: 146
- width: 71
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4b6ed791e5de10370800000000000000
- internalID: 8287165777748813492
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: wu_zhu
- rect:
- serializedVersion: 2
- x: 103
- y: 957
- width: 63
- height: 66
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 991ecded4f1634290800000000000000
- internalID: -7907368816393526887
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_cocoa
- rect:
- serializedVersion: 2
- x: 451
- y: 119
- width: 56
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 61c2cdd61eeea8050800000000000000
- internalID: 5803713721798503446
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_jade
- rect:
- serializedVersion: 2
- x: 510
- y: 119
- width: 64
- height: 91
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 443e4263dea44f850800000000000000
- internalID: 6409830552331150148
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_obsidian
- rect:
- serializedVersion: 2
- x: 578
- y: 119
- width: 65
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a031324235268c440800000000000000
- internalID: 4956319499149316874
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_feather
- rect:
- serializedVersion: 2
- x: 646
- y: 119
- width: 42
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 440dd0a21b0498970800000000000000
- internalID: 8757602080057577540
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_priest
- rect:
- serializedVersion: 2
- x: 696
- y: 126
- width: 76
- height: 85
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 091260393e7f67e70800000000000000
- internalID: 9112743452827066768
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_ancestor_mask
- rect:
- serializedVersion: 2
- x: 844
- y: 114
- width: 87
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: eab13bd9b5d3768b0800000000000000
- internalID: -5159087384432534610
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_calendar_stone
- rect:
- serializedVersion: 2
- x: 933
- y: 114
- width: 91
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 32af4f63cd8317870800000000000000
- internalID: 8678780475385641507
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_ritual_dagger
- rect:
- serializedVersion: 2
- x: 1
- y: 48
- width: 66
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 0eb051a5d919be9b0800000000000000
- internalID: -5049782452158657568
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_headdress
- rect:
- serializedVersion: 2
- x: 72
- y: 48
- width: 100
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: dfe54e86e43644860800000000000000
- internalID: 7513239266779225853
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_suns_blessing
- rect:
- serializedVersion: 2
- x: 173
- y: 48
- width: 90
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2abb924d8baa758a0800000000000000
- internalID: -6316392241553622110
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ranking
- rect:
- serializedVersion: 2
- x: 922
- y: 38
- width: 102
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 47c1992a50cbaf550800000000000000
- internalID: 6195470969790340212
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_hydra
- rect:
- serializedVersion: 2
- x: 267
- y: 42
- width: 108
- height: 98
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b9dbd95c267d9ecb0800000000000000
- internalID: -4834095905783300709
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ath_attempt
- rect:
- serializedVersion: 2
- x: 324
- y: 330
- width: 62
- height: 76
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ab75509f26c199a60800000000000000
- internalID: 7681201850867341242
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_obsidianjade
- rect:
- serializedVersion: 2
- x: 529
- y: 16
- width: 105
- height: 101
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 404903f17f5d04e90800000000000000
- internalID: -7043394559850540028
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_obsidiancalendarancestormask
- rect:
- serializedVersion: 2
- x: 637
- y: 14
- width: 141
- height: 100
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ca132d6fc0c6681c0800000000000000
- internalID: -4501791974573854292
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cocoa
- rect:
- serializedVersion: 2
- x: 232
- y: 958
- width: 38
- height: 64
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3810325ca7533c450800000000000000
- internalID: 6107784321054212483
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_pepper
- rect:
- serializedVersion: 2
- x: 375
- y: 35
- width: 86
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6ac997d300a992c40800000000000000
- internalID: 5488086946749717670
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_planks
- rect:
- serializedVersion: 2
- x: 779
- y: 24
- width: 90
- height: 83
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 844e6af6dca02d8e0800000000000000
- internalID: -1670260634343250872
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_salt
- rect:
- serializedVersion: 2
- x: 3
- y: 1024
- width: 89
- height: 104
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 518086bd7588f0e80800000000000000
- internalID: -8210193684748564459
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_ink
- rect:
- serializedVersion: 2
- x: 97
- y: 1026
- width: 86
- height: 96
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: be3294320dc4931e0800000000000000
- internalID: -2217656884674354197
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_wooden_wheel
- rect:
- serializedVersion: 2
- x: 186
- y: 1027
- width: 95
- height: 98
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 1f86f263cf9157090800000000000000
- internalID: -8037489388941252367
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_happiness_maya_2
- rect:
- serializedVersion: 2
- x: 284
- y: 1027
- width: 98
- height: 98
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 59c68cdb6de853e00800000000000000
- internalID: 1023881543254830229
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_priestmaya
- rect:
- serializedVersion: 2
- x: 388
- y: 1029
- width: 98
- height: 110
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f5c10a5e22d130f80800000000000000
- internalID: -8141631665637155745
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_priestmaya
- rect:
- serializedVersion: 2
- x: 491
- y: 1028
- width: 72
- height: 80
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 28ec978048b92e380800000000000000
- internalID: -7713781604464504857
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_priestmaya
- rect:
- serializedVersion: 2
- x: 565
- y: 1028
- width: 61
- height: 66
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 86c7432a1748db5c0800000000000000
- internalID: -4198053654051914648
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_city_mayas
- rect:
- serializedVersion: 2
- x: 628
- y: 1028
- width: 104
- height: 101
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b58cedfc045f952e0800000000000000
- internalID: -2136406889496393637
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_city_mayas
- rect:
- serializedVersion: 2
- x: 736
- y: 1028
- width: 70
- height: 70
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 8056eef49de9f6650800000000000000
- internalID: 6228371465862800648
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_city_mayas
- rect:
- serializedVersion: 2
- x: 807
- y: 1028
- width: 54
- height: 53
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 17958e2de0c214d10800000000000000
- internalID: 2108014542765709681
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_city_china
- rect:
- serializedVersion: 2
- x: 6
- y: 1131
- width: 109
- height: 107
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: cb15162a508e9e2a0800000000000000
- internalID: -6707575059094875716
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_city_china
- rect:
- serializedVersion: 2
- x: 122
- y: 1130
- width: 74
- height: 73
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 60398fef000333f40800000000000000
- internalID: 5706957933644387078
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_city_china
- rect:
- serializedVersion: 2
- x: 200
- y: 1131
- width: 61
- height: 58
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c7026f61cd9fd32d0800000000000000
- internalID: -3297204628491984772
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_city_egypt
- rect:
- serializedVersion: 2
- x: 865
- y: 1026
- width: 74
- height: 71
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fa91afbc20e3ce7a0800000000000000
- internalID: -6346629593138849361
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_city_egypt
- rect:
- serializedVersion: 2
- x: 942
- y: 1026
- width: 58
- height: 55
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6e3d6dba636b7f0d0800000000000000
- internalID: -3389039848645536794
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_madscientistslab
- rect:
- serializedVersion: 2
- x: 780
- y: 118
- width: 64
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 941731a03f9268000800000000000000
- internalID: 37763770702065993
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_piratefortress
- rect:
- serializedVersion: 2
- x: 263
- y: 1125
- width: 107
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e56e32ec9f2ce34e0800000000000000
- internalID: -1999946806344817058
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_maya_luxurious_workshop_level2
- rect:
- serializedVersion: 2
- x: 370
- y: 1138
- width: 233
- height: 107
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c9e7b8d5005e41730800000000000000
- internalID: 3969048961352433308
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_wintermarket
- rect:
- serializedVersion: 2
- x: 603
- y: 1136
- width: 112
- height: 103
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f675c9f9fde366e00800000000000000
- internalID: 1037585894331930479
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: info
- rect:
- serializedVersion: 2
- x: 740
- y: 1103
- width: 52
- height: 52
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 555cee1a89f97b910800000000000000
- internalID: 1853125249586873685
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_trojanhorse
- rect:
- serializedVersion: 2
- x: 811
- y: 1113
- width: 101
- height: 95
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 33886dc4c3b71ae70800000000000000
- internalID: 9124709818946717747
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_chest_good2
- rect:
- serializedVersion: 2
- x: 912
- y: 1109
- width: 90
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 0f532f85e6e454d80800000000000000
- internalID: -8267115305123039760
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_broch
- rect:
- serializedVersion: 2
- x: 935
- y: 1202
- width: 89
- height: 95
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2e3bdc3b6e39adc70800000000000000
- internalID: 8996665824694350818
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_manuscript
- rect:
- serializedVersion: 2
- x: 443
- y: 1458
- width: 100
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 682046a9a8bad2040800000000000000
- internalID: 4624541004163449478
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_barrel
- rect:
- serializedVersion: 2
- x: 105
- y: 1203
- width: 82
- height: 103
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 0c31d79c2d5b7cf10800000000000000
- internalID: 2289998852469363648
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_herbs
- rect:
- serializedVersion: 2
- x: 188
- y: 1189
- width: 74
- height: 115
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e163e1a399cc83a90800000000000000
- internalID: -7333887034695731682
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_icon_chest_blueprint
- rect:
- serializedVersion: 2
- x: 263
- y: 1219
- width: 102
- height: 92
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 1fbbbfc1ed2fb1f00800000000000000
- internalID: 1088730770723027953
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_icon_chest_rp
- rect:
- serializedVersion: 2
- x: 367
- y: 1246
- width: 102
- height: 81
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 727b87a099bb3e4e0800000000000000
- internalID: -1953511547368589529
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_persianpalace
- rect:
- serializedVersion: 2
- x: 825
- y: 1216
- width: 99
- height: 120
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b3a071af20ced8440800000000000000
- internalID: 4939863863825205819
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: shoreline
- rect:
- serializedVersion: 2
- x: 3
- y: 1343
- width: 83
- height: 78
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 7f44f5034e26aa0f0800000000000000
- internalID: -1104962026362419977
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_mead
- rect:
- serializedVersion: 2
- x: 90
- y: 1307
- width: 147
- height: 98
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c530aa5543cc839d0800000000000000
- internalID: -2794259043635821732
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_stockfish
- rect:
- serializedVersion: 2
- x: 238
- y: 1317
- width: 94
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: efb1c1f7f97e89770800000000000000
- internalID: 8617892559191809022
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_spice_treasure
- rect:
- serializedVersion: 2
- x: 333
- y: 1328
- width: 106
- height: 83
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: bfb2e3f561cee1f40800000000000000
- internalID: 5701253759128972283
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_gold_treasure
- rect:
- serializedVersion: 2
- x: 440
- y: 1353
- width: 106
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fa5149c917f525a70800000000000000
- internalID: 8814212362280375727
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_gem_treasure
- rect:
- serializedVersion: 2
- x: 547
- y: 1354
- width: 101
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: d57f9ba6b633a4bb0800000000000000
- internalID: -4951088303895349411
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_pennies
- rect:
- serializedVersion: 2
- x: 491
- y: 1252
- width: 95
- height: 101
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fa94068ad7f8b36e0800000000000000
- internalID: -1856732651501631057
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_honey
- rect:
- serializedVersion: 2
- x: 595
- y: 1252
- width: 102
- height: 101
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4d7729ca4dbb101d0800000000000000
- internalID: -3386218922703161388
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_fish
- rect:
- serializedVersion: 2
- x: 702
- y: 1251
- width: 88
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f9e4a1c7f68165a80800000000000000
- internalID: -8478562381375844705
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_ceramic_treasure
- rect:
- serializedVersion: 2
- x: 924
- y: 1299
- width: 100
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 22dedf67b0ddfe140800000000000000
- internalID: 4751259173209894178
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: pennies
- rect:
- serializedVersion: 2
- x: 543
- y: 958
- width: 61
- height: 65
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 1fe7a25aa2f3eda60800000000000000
- internalID: 7700661865242328817
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_city_vikings
- rect:
- serializedVersion: 2
- x: 8
- y: 1423
- width: 104
- height: 115
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 25a88d2d19d5b0370800000000000000
- internalID: 8289822419994577490
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_city_vikings
- rect:
- serializedVersion: 2
- x: 115
- y: 1422
- width: 71
- height: 80
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e09adcfe40deed920800000000000000
- internalID: 3017109405843695886
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_city_vikings
- rect:
- serializedVersion: 2
- x: 190
- y: 1423
- width: 56
- height: 63
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 405634c405f86f500800000000000000
- internalID: 429688389500101892
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_big_sailorvikings
- rect:
- serializedVersion: 2
- x: 4
- y: 1541
- width: 112
- height: 105
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: cd30dccf6af7e7a60800000000000000
- internalID: 7673711170268496860
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_sailorvikings
- rect:
- serializedVersion: 2
- x: 122
- y: 1505
- width: 74
- height: 72
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: c101932e8d3223560800000000000000
- internalID: 7291930161081552924
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: workers_small_sailorvikings
- rect:
- serializedVersion: 2
- x: 201
- y: 1490
- width: 60
- height: 59
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9c16a598b7af952f0800000000000000
- internalID: -983479635111419447
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_mixedchest
- rect:
- serializedVersion: 2
- x: 653
- y: 1354
- width: 108
- height: 103
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f63a9d1b880da02b0800000000000000
- internalID: -5617448299673312401
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_icon_mystery_chest_gold
- rect:
- serializedVersion: 2
- x: 715
- y: 1162
- width: 82
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ee588dcd66ff95be0800000000000000
- internalID: -1487877384612313618
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: blueprint_rare
- rect:
- serializedVersion: 2
- x: 783
- y: 1354
- width: 125
- height: 114
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3532b03158787f8e0800000000000000
- internalID: -1659708932042841261
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_122
- rect:
- serializedVersion: 2
- x: 913
- y: 1402
- width: 98
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9ea0031e8a76c6b30800000000000000
- internalID: 4281911320752687849
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: wonder_active_checkmark
- rect:
- serializedVersion: 2
- x: 1
- y: 1650
- width: 67
- height: 66
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 8288ff3d8ead33c90800000000000000
- internalID: -7191163486456543192
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: wonder_inactive_checkmark
- rect:
- serializedVersion: 2
- x: 70
- y: 1650
- width: 68
- height: 66
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: db2ba8d5ff6bc6c60800000000000000
- internalID: 7812820661483254461
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: wonder_orb
- rect:
- serializedVersion: 2
- x: 926
- y: 1501
- width: 95
- height: 88
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e3757416b1d00b7d0800000000000000
- internalID: -2904807348406626498
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: gears
- rect:
- serializedVersion: 2
- x: 804
- y: 1470
- width: 96
- height: 93
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5e8d2be7664108a60800000000000000
- internalID: 7674156195484195045
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_madrasa
- rect:
- serializedVersion: 2
- x: 925
- y: 1588
- width: 98
- height: 94
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: e63d19e6edd72ce90800000000000000
- internalID: -7006899675943808146
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_shrineofreflection
- rect:
- serializedVersion: 2
- x: 1
- y: 1248
- width: 89
- height: 85
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4a2504689265dcc40800000000000000
- internalID: 5534174253454217892
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_gears
- rect:
- serializedVersion: 2
- x: 727
- y: 1469
- width: 72
- height: 69
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 433a7a9a33adc6040800000000000000
- internalID: 4642325231336661812
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_wax_seal
- rect:
- serializedVersion: 2
- x: 825
- y: 1566
- width: 101
- height: 103
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 3, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 2b3a5bc8438f6de20800000000000000
- internalID: 3375157875343467442
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_door
- rect:
- serializedVersion: 2
- x: 726
- y: 1537
- width: 81
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3f166c35c999b54f0800000000000000
- internalID: -838908008875007501
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_saffron
- rect:
- serializedVersion: 2
- x: 623
- y: 1458
- width: 103
- height: 96
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 74dc22db63ac63cd0800000000000000
- internalID: -2578651400172810937
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: ebc_cryptofthecount
- rect:
- serializedVersion: 2
- x: 942
- y: 1685
- width: 80
- height: 116
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f138df648f0c4f830800000000000000
- internalID: 4104117333016806175
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_130
- rect:
- serializedVersion: 2
- x: 261
- y: 1419
- width: 101
- height: 95
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9f7965320d0d106c0800000000000000
- internalID: -4178829386858457095
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_building_vikings_sailorport_premium_1
- rect:
- serializedVersion: 2
- x: 822
- y: 1670
- width: 119
- height: 104
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 831ba3e801aa4e320800000000000000
- internalID: 2586379074099917112
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_building_vikings_sailorport_premium_2
- rect:
- serializedVersion: 2
- x: 674
- y: 1657
- width: 147
- height: 103
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 9b2da750d6d53dff0800000000000000
- internalID: -12563651127225671
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_building_vikings_sailorport
- rect:
- serializedVersion: 2
- x: 653
- y: 1554
- width: 72
- height: 103
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: a910c72794f6246f0800000000000000
- internalID: -701876230672350822
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_133
- rect:
- serializedVersion: 2
- x: 903
- y: 1801
- width: 121
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ef155f832a0423b20800000000000000
- internalID: 3112621357950915070
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_134
- rect:
- serializedVersion: 2
- x: 903
- y: 1918
- width: 116
- height: 130
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 8161b42a1621c6bf0800000000000000
- internalID: -329868462160931304
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_135
- rect:
- serializedVersion: 2
- x: 0
- y: 1717
- width: 138
- height: 139
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6e1d253a691ab8a80800000000000000
- internalID: -8463493406355435034
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_136
- rect:
- serializedVersion: 2
- x: 148
- y: 1599
- width: 104
- height: 112
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 0ae6884a4435dec10800000000000000
- internalID: 2084413756825693856
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: flat_cancel
- rect:
- serializedVersion: 2
- x: 4
- y: 1856
- width: 87
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ad7ae843f77419230800000000000000
- internalID: 3643772185187624922
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: flat_check
- rect:
- serializedVersion: 2
- x: 101
- y: 1856
- width: 114
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5eb85cf747d3133f0800000000000000
- internalID: -922888878065087515
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: bb_lock_grey
- rect:
- serializedVersion: 2
- x: 466
- y: 807
- width: 38
- height: 50
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 36915f1f000fa9c10800000000000000
- internalID: 2061223666325461347
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_crate
- rect:
- serializedVersion: 2
- x: 138
- y: 1715
- width: 54
- height: 50
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: ddb26354dae87d6d0800000000000000
- internalID: -2965744954758517795
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_star
- rect:
- serializedVersion: 2
- x: 202
- y: 1718
- width: 56
- height: 56
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 33dc314476f52bf20800000000000000
- internalID: 3436914362765528371
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_tome
- rect:
- serializedVersion: 2
- x: 796
- y: 1774
- width: 104
- height: 104
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 305faa5e507320360800000000000000
- internalID: 7134325258175837443
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_wardrobe
- rect:
- serializedVersion: 2
- x: 706
- y: 1774
- width: 86
- height: 104
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 197037273c1c4e5f0800000000000000
- internalID: -728244194544253039
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_chili
- rect:
- serializedVersion: 2
- x: 618
- y: 1774
- width: 84
- height: 104
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3bd132e6fd66030b0800000000000000
- internalID: -5750983614340588109
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_arabia_worker
- rect:
- serializedVersion: 2
- x: 271
- y: 1571
- width: 81
- height: 79
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 3a68dd74c06e438c0800000000000000
- internalID: -4020335626915314013
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_dirham
- rect:
- serializedVersion: 2
- x: 352
- y: 1572
- width: 60
- height: 71
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 374e92a8ae2e0f430800000000000000
- internalID: 3814798381351036019
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_gold_dinar
- rect:
- serializedVersion: 2
- x: 412
- y: 1572
- width: 64
- height: 71
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: b3989c84048541210800000000000000
- internalID: 1302763225339234619
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_incense
- rect:
- serializedVersion: 2
- x: 476
- y: 1565
- width: 58
- height: 84
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 19810dc017d415a10800000000000000
- internalID: 1896382066041297041
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_coffee_beans
- rect:
- serializedVersion: 2
- x: 277
- y: 1650
- width: 74
- height: 50
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5e47d1778f49e46a0800000000000000
- internalID: -6463064620358863643
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_myrrh
- rect:
- serializedVersion: 2
- x: 352
- y: 1650
- width: 76
- height: 63
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 7bb572083ea68bd90800000000000000
- internalID: -7081792888699921481
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_brass
- rect:
- serializedVersion: 2
- x: 429
- y: 1650
- width: 74
- height: 66
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: f337afe23ee2f9570800000000000000
- internalID: 8475544577015182143
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_coffee
- rect:
- serializedVersion: 2
- x: 269
- y: 1700
- width: 80
- height: 81
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 1, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 7b6485f191e49ec50800000000000000
- internalID: 6694968190869980855
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_camel
- rect:
- serializedVersion: 2
- x: 349
- y: 1713
- width: 67
- height: 89
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 5f2051f6eb1057440800000000000000
- internalID: 4932850884273308405
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_154
- rect:
- serializedVersion: 2
- x: 538
- y: 1564
- width: 107
- height: 102
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 4779c75665e3a23b0800000000000000
- internalID: -5536544251107829900
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_icon_mystery_chest
- rect:
- serializedVersion: 2
- x: 532
- y: 1676
- width: 113
- height: 90
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 402283127de034c70800000000000000
- internalID: 8954016801280762372
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_icon_loot_container
- rect:
- serializedVersion: 2
- x: 497
- y: 1771
- width: 120
- height: 98
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 01e40d22912a13a90800000000000000
- internalID: -7335904089167868400
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: cta_icon_loot_container_bronze
- rect:
- serializedVersion: 2
- x: 500
- y: 1869
- width: 116
- height: 95
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 6d1b53fa5527d2dc0800000000000000
- internalID: -3662145209645026858
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_158
- rect:
- serializedVersion: 2
- x: 761
- y: 1919
- width: 141
- height: 116
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 8ec54f44a8c0b2d10800000000000000
- internalID: 2101787439100353768
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_event_pegasus_tokens
- rect:
- serializedVersion: 2
- x: 651
- y: 1886
- width: 97
- height: 106
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 43fb3241d77dd3d50800000000000000
- internalID: 6718763151315418932
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_event_greek_2023_grand_prize_progress
- rect:
- serializedVersion: 2
- x: 3
- y: 1947
- width: 96
- height: 101
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 642ac1ad98a093170800000000000000
- internalID: 8158563787144471110
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_alliance_point_rare
- rect:
- serializedVersion: 2
- x: 575
- y: 1961
- width: 74
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 573717ceb7fbae349bdebf8d08b3d181
- internalID: -1619160577
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_alliance_point_epic
- rect:
- serializedVersion: 2
- x: 501
- y: 1961
- width: 74
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: da5adb701da504246ae9f7a485068ceb
- internalID: -724805922
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_alliance_point
- rect:
- serializedVersion: 2
- x: 427
- y: 1961
- width: 73
- height: 87
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 7ffcc435ba857794eb9b402c043c281c
- internalID: 2144358214
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_0
- rect:
- serializedVersion: 2
- x: 101
- y: 1947
- width: 119
- height: 101
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 85509f06080011c46a059d23e4fcd470
- internalID: 370364008
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: InlineIcons_1
- rect:
- serializedVersion: 2
- x: 228
- y: 1789
- width: 95
- height: 123
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: 788fc962772e8fa4c83bbec04b8d6218
- internalID: -702928828
- vertices: []
- indices:
- edges: []
- weights: []
- - serializedVersion: 2
- name: icon_checkmark_brown
- rect:
- serializedVersion: 2
- x: 850
- y: 957
- width: 54
- height: 44
- alignment: 0
- pivot: {x: 0.5, y: 0.5}
- border: {x: 0, y: 0, z: 0, w: 0}
- outline: []
- physicsShape: []
- tessellationDetail: 0
- bones: []
- spriteID: fa55e09056a017a4aac91a8b3f4e28b4
- internalID: -1670182809
- vertices: []
- indices:
- edges: []
- weights: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: e3ca2b924617e4dd89f48a6ee355034e
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- nameFileIdTable:
- InlineIcons_0: 370364008
- InlineIcons_1: -702928828
- InlineIcons_122: 4281911320752687849
- InlineIcons_130: -4178829386858457095
- InlineIcons_133: 3112621357950915070
- InlineIcons_134: -329868462160931304
- InlineIcons_135: -8463493406355435034
- InlineIcons_136: 2084413756825693856
- InlineIcons_154: -5536544251107829900
- InlineIcons_158: 2101787439100353768
- InlineIcons_32: 7972151216418658502
- ath_attempt: 7681201850867341242
- bb_checkmark: 21300016
- bb_lock: 7245690677989368111
- bb_lock_grey: 2061223666325461347
- blueprint: 3495086814825567685
- blueprint_rare: -1659708932042841261
- boost: 21300014
- clock_blue: -8246627260571945669
- clock_embossed_pos: -6279640769779937744
- cocoa: 6107784321054212483
- coin_food_boost: 2441754920960949527
- coins: 21300002
- coins_small: -1869673367297931309
- commander: -5437674158304577141
- cta_ancestor_mask: -5159087384432534610
- cta_ankh: -7343220986905845580
- cta_barrel: 2289998852469363648
- cta_building_vikings_sailorport: -701876230672350822
- cta_building_vikings_sailorport_premium_1: 2586379074099917112
- cta_building_vikings_sailorport_premium_2: -12563651127225671
- cta_calendar_stone: 8678780475385641507
- cta_cape: 8287165777748813492
- cta_ceramic_treasure: 4751259173209894178
- cta_ceremonial_dress: -2518806979871309895
- cta_clay: -7411174152488024004
- cta_cocoa: 5803713721798503446
- cta_coins: -5167353112666354359
- cta_column: 8640258737205591229
- cta_door: -838908008875007501
- cta_feather: 8757602080057577540
- cta_fish: -8478562381375844705
- cta_gears: 4642325231336661812
- cta_goblet: 7462434613906369459
- cta_gold_laurel: -7357144505842695810
- cta_gold_ore: 2117336584302238645
- cta_gold_treasure: 8814212362280375727
- cta_golden_sphinx: -2269303870351376580
- cta_happiness_maya_2: 1023881543254830229
- cta_headdress: 7513239266779225853
- cta_herbs: -7333887034695731682
- cta_honey: -3386218922703161388
- cta_icon_chest_blueprint: 1088730770723027953
- cta_icon_chest_rp: -1953511547368589529
- cta_icon_loot_container: -7335904089167868400
- cta_icon_loot_container_bronze: -3662145209645026858
- cta_icon_mystery_chest: 8954016801280762372
- cta_icon_mystery_chest_gold: -1487877384612313618
- cta_ink: -2217656884674354197
- cta_iron_pendant: -8318277596760801014
- cta_jade: 6409830552331150148
- cta_kaolin: 4936506583271141030
- cta_linen_shirt: -4770960272869957185
- cta_manuscript: 4624541004163449478
- cta_marble_bust: -9021633436630479557
- cta_maya_luxurious_workshop_level2: 3969048961352433308
- cta_mead: -2794259043635821732
- cta_mixedchest: -5617448299673312401
- cta_mosaic: -1321098932929957079
- cta_moth_cocoons: -44565893461480510
- cta_obsidian: 4956319499149316874
- cta_obsidiancalendarancestormask: -4501791974573854292
- cta_obsidianjade: -7043394559850540028
- cta_papyrus: 541087786881136906
- cta_papyrus_scroll: -7215298494019262123
- cta_pennies: -1856732651501631057
- cta_pepper: 5488086946749717670
- cta_planks: -1670260634343250872
- cta_porcelain: 6396128496709196802
- cta_priest: 9112743452827066768
- cta_recruit: 6905562749588875414
- cta_research_points: 8674190453677158122
- cta_rice: -2829443050583330228
- cta_ritual_dagger: -5049782452158657568
- cta_saffron: -2578651400172810937
- cta_salt: -8210193684748564459
- cta_silk: 4524241383834298874
- cta_silk_threads: -7851600766591116406
- cta_silver_ring: -6162265055754030298
- cta_spice_treasure: 5701253759128972283
- cta_stockfish: 8617892559191809022
- cta_stone_tablet: 3537169958838929854
- cta_suns_blessing: -6316392241553622110
- cta_toga: -7230867332484785407
- cta_tunic: 210297501773229927
- cta_wax_seal: 3375157875343467442
- cta_wooden_wheel: -8037489388941252367
- cta_wu_zhu: -8264326421717354311
- culture_bonus: 2102306210881839429
- culture_range: 7459902675860876989
- dead: -9160987577138628238
- deben: -7927273033115742964
- ebc_broch: 8996665824694350818
- ebc_cryptofthecount: 4104117333016806175
- ebc_hydra: -4834095905783300709
- ebc_madrasa: -7006899675943808146
- ebc_madscientistslab: 37763770702065993
- ebc_persianpalace: 4939863863825205819
- ebc_piratefortress: -1999946806344817058
- ebc_shrineofreflection: 5534174253454217892
- ebc_trojanhorse: 9124709818946717747
- ebc_wintermarket: 1037585894331930479
- expansion: -6479823341794910233
- flat_cancel: 3643772185187624922
- flat_check: -922888878065087515
- food: 21300004
- food_small: 255080986811049931
- gears: 7674156195484195045
- glass: 21300008
- goods: 21300006
- happiness_0: 2267314249368087281
- happiness_1: -9053465508694820594
- happiness_2: -1134528729738406305
- happiness_3: 7780953735995972703
- icon_alabaster_idol: 8373675954752092734
- icon_alliance_point: 2144358214
- icon_alliance_point_epic: -724805922
- icon_alliance_point_rare: -1619160577
- icon_arabia_worker: -4020335626915314013
- icon_brass: 8475544577015182143
- icon_bronze_bracelet: 7237261532831544450
- icon_camel: 4932850884273308405
- icon_checkmark_brown: -1670182809
- icon_chest_good2: -8267115305123039760
- icon_chili: -5750983614340588109
- icon_coffee: 6694968190869980855
- icon_coffee_beans: -6463064620358863643
- icon_crate: -2965744954758517795
- icon_dirham: 3814798381351036019
- icon_event_greek_2023_grand_prize_progress: 8158563787144471110
- icon_event_pegasus_tokens: 6718763151315418932
- icon_flint: 1438499179017281121
- icon_food_black: 8706619048834826526
- icon_gem_treasure: -4951088303895349411
- icon_gold_dinar: 1302763225339234619
- icon_hide: 5908195551155024309
- icon_incense: 1896382066041297041
- icon_myrrh: -7081792888699921481
- icon_star: 3436914362765528371
- icon_tome: 7134325258175837443
- icon_trade token: -5645743825326872590
- icon_wardrobe: -728244194544253039
- icon_wool: 358799654582701605
- info: 1853125249586873685
- irrigation: -2457531169152919533
- irrigation_0: 6619405697063382928
- irrigation_1: -5368687836300328278
- irrigation_2: 1461871564780703198
- irrigation_bonus: -8078951251822203351
- map: -399840562033327265
- pennies: 7700661865242328817
- premium: 21300000
- ranking: 6195470969790340212
- research_points: 21300012
- research_points_small: 6547572931748238266
- scout: 1357911645972831016
- shoreline: -1104962026362419977
- swords: 1260782343283211980
- trade: -3402344481944718353
- tutorial_icon_build: 4721570850333449918
- tutorial_icon_incident: -2043815690625100865
- tutorial_icon_produce: 1954612522021269676
- unit_cavalry: -497568770147540219
- unit_melee: 2437483765381717123
- unit_range: 5390246818323809478
- upgrade: 7096138885364736195
- upgrade_small: -8988441530965576436
- warning: -1571012651542167539
- wonder_active_checkmark: -7191163486456543192
- wonder_inactive_checkmark: 7812820661483254461
- wonder_orb: -2904807348406626498
- wonders: 5078477160627523986
- workers_big_city_capital: 21300010
- workers_big_city_china: -6707575059094875716
- workers_big_city_egypt: 921062424029211809
- workers_big_city_mayas: -2136406889496393637
- workers_big_city_vikings: 8289822419994577490
- workers_big_priestmaya: -8141631665637155745
- workers_big_sailorvikings: 7673711170268496860
- workers_city_capital: 3121471347900928983
- workers_city_china: 5706957933644387078
- workers_city_egypt: -6346629593138849361
- workers_city_mayas: 6228371465862800648
- workers_city_vikings: 3017109405843695886
- workers_priestmaya: -7713781604464504857
- workers_sailorvikings: 7291930161081552924
- workers_small_city_capital: 4513387777306473356
- workers_small_city_china: -3297204628491984772
- workers_small_city_egypt: -3389039848645536794
- workers_small_city_mayas: 2108014542765709681
- workers_small_city_vikings: 429688389500101892
- workers_small_priestmaya: -4198053654051914648
- workers_small_sailorvikings: -983479635111419447
- workers_trading_big: 1494432333228735887
- wu_zhu: -7907368816393526887
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName:
- assetBundleVariant:
|