CodeResources 167 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>files</key>
  6. <dict>
  7. <key>Resources/AppIcon.icns</key>
  8. <data>
  9. YyN5I4J/NvzuUYDjMzQK2op47T8=
  10. </data>
  11. <key>Resources/Assets.car</key>
  12. <data>
  13. d51yB70W9G8mB2rgNfHlvGAPQN4=
  14. </data>
  15. <key>Resources/Icon.icns</key>
  16. <data>
  17. DJ+gdMrV3yoXw80tHjOFlve0cdk=
  18. </data>
  19. <key>Resources/README.md</key>
  20. <data>
  21. a44Pf4w2jjfdw3vYNuO+oh7zR8U=
  22. </data>
  23. <key>Resources/res/AUTHORS.txt</key>
  24. <data>
  25. 8fSEO5n8W01mVhV/Ad7zx0eij7g=
  26. </data>
  27. <key>Resources/res/ConvertAllLevelConfigs.py</key>
  28. <data>
  29. yd5NpeBsXKzTDvzzpf59x9UEbPA=
  30. </data>
  31. <key>Resources/res/ConvertOneLevelConfig.py</key>
  32. <data>
  33. pAjCr9GgCaDFu4EfuXS1/9tcuYE=
  34. </data>
  35. <key>Resources/res/FileUtils.cpython-312.pyc</key>
  36. <data>
  37. ubTW2MP7zLvfSvHc8dbwOx9QXXw=
  38. </data>
  39. <key>Resources/res/FileUtils.py</key>
  40. <data>
  41. 21WVEjyAHhxW0wZZzoQUeG5B8cU=
  42. </data>
  43. <key>Resources/res/INSTALLER</key>
  44. <data>
  45. 16AxQdXWseiLa1nvCLZoHfISxZk=
  46. </data>
  47. <key>Resources/res/LICENSE.txt</key>
  48. <data>
  49. 0YFnNtVclD4e1EoAP3LLfRr+B4k=
  50. </data>
  51. <key>Resources/res/METADATA</key>
  52. <data>
  53. 0XusU9yo6MrbByjsf733FsPNazY=
  54. </data>
  55. <key>Resources/res/README.md</key>
  56. <data>
  57. YKyHSY93WusNWuHCM1CPOd81iHc=
  58. </data>
  59. <key>Resources/res/RECORD</key>
  60. <data>
  61. Y3mV6DXI3y0ZWKPY8R/eYIMUVhc=
  62. </data>
  63. <key>Resources/res/RedHelper.cpython-312.pyc</key>
  64. <data>
  65. JVRGqWfSFGQQvBHmJ3is+aEpIEw=
  66. </data>
  67. <key>Resources/res/RedHelper.py</key>
  68. <data>
  69. qwki0TBQAaS1u0Ic//Nouoo6WNo=
  70. </data>
  71. <key>Resources/res/SG-盘子1.red</key>
  72. <data>
  73. Mp/78okzzdCpjonc8Tit7zNMuJ0=
  74. </data>
  75. <key>Resources/res/SG-盘子1.redream</key>
  76. <data>
  77. 77dwIR77Ipbfyty5f87cqV45d/s=
  78. </data>
  79. <key>Resources/res/SG-盘子10.red</key>
  80. <data>
  81. ymAXlwUkrr1FcrHKN2qCzzI6N8A=
  82. </data>
  83. <key>Resources/res/SG-盘子10.redream</key>
  84. <data>
  85. XPIwcLwzMAM7vrGJqQDMHK7/k2s=
  86. </data>
  87. <key>Resources/res/SG-盘子10情况.redream</key>
  88. <data>
  89. BJtwdNPqWhLAeDC+qnUqhY5rWaM=
  90. </data>
  91. <key>Resources/res/SG-盘子11.red</key>
  92. <data>
  93. mZARcKEjM1dbTnYZO7uxF/655Vk=
  94. </data>
  95. <key>Resources/res/SG-盘子11.redream</key>
  96. <data>
  97. X0DPHYnIWWcf6UE3HJNzoUT/Crs=
  98. </data>
  99. <key>Resources/res/SG-盘子11情况.redream</key>
  100. <data>
  101. Cx1x3ndOosS9p7xPh5rkHJoM+c4=
  102. </data>
  103. <key>Resources/res/SG-盘子12.red</key>
  104. <data>
  105. cqb5diqxtVmjM0Da01BSph60wzc=
  106. </data>
  107. <key>Resources/res/SG-盘子12.redream</key>
  108. <data>
  109. edriYLpoQkvuWSt14e0VwlbmapI=
  110. </data>
  111. <key>Resources/res/SG-盘子12情况.redream</key>
  112. <data>
  113. ViVGzdrLeqDj+vzHN41b7u13W5o=
  114. </data>
  115. <key>Resources/res/SG-盘子13.red</key>
  116. <data>
  117. LNWIRYTWizcli919knIK60qnSQw=
  118. </data>
  119. <key>Resources/res/SG-盘子13.redream</key>
  120. <data>
  121. JBSPJ+FWYAHl49ppGpz46SIeEI0=
  122. </data>
  123. <key>Resources/res/SG-盘子13情况.redream</key>
  124. <data>
  125. RIgw5/mA8OH/j+fBQ65cNjoa8QY=
  126. </data>
  127. <key>Resources/res/SG-盘子14.red</key>
  128. <data>
  129. iPC/bKiKUdCmo+6uWTiF1FQaSPM=
  130. </data>
  131. <key>Resources/res/SG-盘子14.redream</key>
  132. <data>
  133. gYkElpcKr2KnwmhkHLUjtqsqtQE=
  134. </data>
  135. <key>Resources/res/SG-盘子14情况.redream</key>
  136. <data>
  137. HxqLcn25GNYnKAymUPdBB4UAFiI=
  138. </data>
  139. <key>Resources/res/SG-盘子15.red</key>
  140. <data>
  141. lt7i5RIHiTC+S8yq4oyzX9Hl/HM=
  142. </data>
  143. <key>Resources/res/SG-盘子15.redream</key>
  144. <data>
  145. /y8V8vvm7/FhnwtfYXRTgbNFe/I=
  146. </data>
  147. <key>Resources/res/SG-盘子15情况.redream</key>
  148. <data>
  149. W6LFSVM4rOyyEFpeXc0W5JkfaMg=
  150. </data>
  151. <key>Resources/res/SG-盘子16.red</key>
  152. <data>
  153. sbhcL/qMVquShf4gQ7myc8K3TBM=
  154. </data>
  155. <key>Resources/res/SG-盘子16.redream</key>
  156. <data>
  157. XPFgvnEkp+xjG+QQvmvwgjXGy70=
  158. </data>
  159. <key>Resources/res/SG-盘子16情况.redream</key>
  160. <data>
  161. 6m5pc2vD+kT8+4E27K5C4tgq0AQ=
  162. </data>
  163. <key>Resources/res/SG-盘子17.red</key>
  164. <data>
  165. OYgjifOXaVxLG+zQFPIlaDLfxQA=
  166. </data>
  167. <key>Resources/res/SG-盘子17.redream</key>
  168. <data>
  169. GgMgXLxcZw8bDeYEHgbzNKczWrA=
  170. </data>
  171. <key>Resources/res/SG-盘子17情况.redream</key>
  172. <data>
  173. wjg5EQOzhdua9xDXw0MKqC44EX0=
  174. </data>
  175. <key>Resources/res/SG-盘子18.red</key>
  176. <data>
  177. QbT/Q8h5HtrABBUXq9X4KBovKRk=
  178. </data>
  179. <key>Resources/res/SG-盘子18.redream</key>
  180. <data>
  181. 4aYhHUjo+KZuFhb7J2+nCJ/j2ag=
  182. </data>
  183. <key>Resources/res/SG-盘子18情况.redream</key>
  184. <data>
  185. NIwNYO3qQeIy2vL8Dsl+DHC8NyU=
  186. </data>
  187. <key>Resources/res/SG-盘子19.red</key>
  188. <data>
  189. V1lzi7ean5HbmM27zxEx5uYqxyg=
  190. </data>
  191. <key>Resources/res/SG-盘子19.redream</key>
  192. <data>
  193. DcTrFekoIWs+fXdxGmbK7j5JWbE=
  194. </data>
  195. <key>Resources/res/SG-盘子19情况.redream</key>
  196. <data>
  197. Uxzbi1MrysebaM3Nfcw2jnm4wgM=
  198. </data>
  199. <key>Resources/res/SG-盘子1情况.redream</key>
  200. <data>
  201. WuZl+Ful91jYYBtW1qZWohzGCHY=
  202. </data>
  203. <key>Resources/res/SG-盘子2.red</key>
  204. <data>
  205. LkIBHTQasEU6T7iHEwR1qRBijHg=
  206. </data>
  207. <key>Resources/res/SG-盘子2.redream</key>
  208. <data>
  209. aOZKyDz1s7qIDq3W2ezQdK87NDQ=
  210. </data>
  211. <key>Resources/res/SG-盘子20.red</key>
  212. <data>
  213. 5aIGNNK62fCITHmvb15nNv4hIak=
  214. </data>
  215. <key>Resources/res/SG-盘子20.redream</key>
  216. <data>
  217. +4zIlHX3YKayA7SH9yJBwJeJduE=
  218. </data>
  219. <key>Resources/res/SG-盘子20情况.redream</key>
  220. <data>
  221. w7bSryCs4qF/wy9jaiXMpSx42Lw=
  222. </data>
  223. <key>Resources/res/SG-盘子21.red</key>
  224. <data>
  225. Ja8QnMhL9n/bWHPZBec0r+uJrNA=
  226. </data>
  227. <key>Resources/res/SG-盘子21.redream</key>
  228. <data>
  229. M+eVHlsfZ1Kj4XMaAiZsHlL+0QI=
  230. </data>
  231. <key>Resources/res/SG-盘子21情况.redream</key>
  232. <data>
  233. lVzwUtzZGZZdFjHLTnVh3GPgDUs=
  234. </data>
  235. <key>Resources/res/SG-盘子22.red</key>
  236. <data>
  237. 9btsHrogXqH6/QuZ/ob1dDie9rI=
  238. </data>
  239. <key>Resources/res/SG-盘子22.redream</key>
  240. <data>
  241. 1Df7XPcmnQIx9/JzZxm0n6vavfI=
  242. </data>
  243. <key>Resources/res/SG-盘子22情况.redream</key>
  244. <data>
  245. vyTD8sx5gCPJhZEKCs0EiPDWEg8=
  246. </data>
  247. <key>Resources/res/SG-盘子23.red</key>
  248. <data>
  249. +85m4G/qYLbcVZGrg+SNMV5R5gI=
  250. </data>
  251. <key>Resources/res/SG-盘子23.redream</key>
  252. <data>
  253. SQCbw99VhWUgyuCVIa8wbU5aW6o=
  254. </data>
  255. <key>Resources/res/SG-盘子23情况.redream</key>
  256. <data>
  257. /p2KsnuxBuocbEPiUo15ToOoRWQ=
  258. </data>
  259. <key>Resources/res/SG-盘子24.red</key>
  260. <data>
  261. JKVh/eavg4B4/XAynhsKnXm3MYg=
  262. </data>
  263. <key>Resources/res/SG-盘子24.redream</key>
  264. <data>
  265. CrLeJNPOWequLURcqadk7aQLGxI=
  266. </data>
  267. <key>Resources/res/SG-盘子24情况.redream</key>
  268. <data>
  269. WPySN3kcQQrXrb7onPo0kHfyBxk=
  270. </data>
  271. <key>Resources/res/SG-盘子25.red</key>
  272. <data>
  273. C7BPzdN/bNvoWkVOf7u0lRWJLA0=
  274. </data>
  275. <key>Resources/res/SG-盘子25.redream</key>
  276. <data>
  277. lFxpQUuFSBlRWPuCaC2zq1nQFC4=
  278. </data>
  279. <key>Resources/res/SG-盘子25情况.redream</key>
  280. <data>
  281. 32YawzLb/QAq7VKAteqxtIm+uLY=
  282. </data>
  283. <key>Resources/res/SG-盘子26.red</key>
  284. <data>
  285. OleO3fV2lKp43B2522TyET0SDAE=
  286. </data>
  287. <key>Resources/res/SG-盘子26.redream</key>
  288. <data>
  289. 19HF1lMFUZY2G0ibjY6PPdRoVuw=
  290. </data>
  291. <key>Resources/res/SG-盘子26情况.redream</key>
  292. <data>
  293. P86PjUP26EpMmtsb2MNLkvkBHFM=
  294. </data>
  295. <key>Resources/res/SG-盘子27.red</key>
  296. <data>
  297. RTZ3RAZUQRxgZLz2EbJAzdcRg0k=
  298. </data>
  299. <key>Resources/res/SG-盘子27.redream</key>
  300. <data>
  301. DFzuofHf0mYz3m6OMd/2ZRiSBRo=
  302. </data>
  303. <key>Resources/res/SG-盘子27情况.redream</key>
  304. <data>
  305. cFKkgLHQSY8GjeAm3Iz5+yab5hg=
  306. </data>
  307. <key>Resources/res/SG-盘子28.red</key>
  308. <data>
  309. wAVLswzplC/KoZg9C3Tt738NUHo=
  310. </data>
  311. <key>Resources/res/SG-盘子28.redream</key>
  312. <data>
  313. GhZZnmqbIiDory9F1/HBZznc3I4=
  314. </data>
  315. <key>Resources/res/SG-盘子28情况.redream</key>
  316. <data>
  317. 9PjzC4xv2/cPv53PVcUPCubd4eU=
  318. </data>
  319. <key>Resources/res/SG-盘子29.red</key>
  320. <data>
  321. UFgRTPF8ghJjCm2HkGhWq7yj7+w=
  322. </data>
  323. <key>Resources/res/SG-盘子29.redream</key>
  324. <data>
  325. 4Xc2n42y9doLDe34YYQb08INLNA=
  326. </data>
  327. <key>Resources/res/SG-盘子29情况.redream</key>
  328. <data>
  329. EC58dnrSbBomqtxRuPOMc+GNhdE=
  330. </data>
  331. <key>Resources/res/SG-盘子2情况.redream</key>
  332. <data>
  333. B+HUx4WsJrwEV2t374dJObP21n4=
  334. </data>
  335. <key>Resources/res/SG-盘子3.red</key>
  336. <data>
  337. P/WdLD+aDOm41QoMhMpxUARGHoY=
  338. </data>
  339. <key>Resources/res/SG-盘子3.redream</key>
  340. <data>
  341. ifMB1CWlMlF11HIJmzt7oiQYGgs=
  342. </data>
  343. <key>Resources/res/SG-盘子30.red</key>
  344. <data>
  345. kmsRM2/1dKgjSsC5QGovzzyaNsQ=
  346. </data>
  347. <key>Resources/res/SG-盘子30.redream</key>
  348. <data>
  349. ISeUcQjC4ghU86I96d50T+0+Rkg=
  350. </data>
  351. <key>Resources/res/SG-盘子30情况.redream</key>
  352. <data>
  353. idM3OFGYbD1lqaYZ5iNqaX+dW+E=
  354. </data>
  355. <key>Resources/res/SG-盘子3情况.redream</key>
  356. <data>
  357. AQ8DB4Wndsp/v3p5Tc0YN7b1lAY=
  358. </data>
  359. <key>Resources/res/SG-盘子4.red</key>
  360. <data>
  361. HpVDOr54MZbOmSYfI620aC+qLYE=
  362. </data>
  363. <key>Resources/res/SG-盘子4.redream</key>
  364. <data>
  365. OktUJvCK/i/5efjvpO25k7ObY8g=
  366. </data>
  367. <key>Resources/res/SG-盘子4情况.redream</key>
  368. <data>
  369. RfpSbyi7YyMAaE4ggXPrNLWEzpQ=
  370. </data>
  371. <key>Resources/res/SG-盘子5.red</key>
  372. <data>
  373. 9KJa1yxy7b3C9FLH3wELZuFjtuE=
  374. </data>
  375. <key>Resources/res/SG-盘子5.redream</key>
  376. <data>
  377. 0lyh24oKo7YqcKJ52LY14bwFEig=
  378. </data>
  379. <key>Resources/res/SG-盘子5情况.redream</key>
  380. <data>
  381. GeCKlzKG92f1eZ0Pz8jB1OFD5FM=
  382. </data>
  383. <key>Resources/res/SG-盘子6.red</key>
  384. <data>
  385. wHAvEuXPUnlWiSEEqeuDhhOfPPw=
  386. </data>
  387. <key>Resources/res/SG-盘子6.redream</key>
  388. <data>
  389. oc2x7ZQfbdcQ9dCIxjwYIfsGFds=
  390. </data>
  391. <key>Resources/res/SG-盘子6情况.redream</key>
  392. <data>
  393. SbXOKkKFNMvkPzqJ8xB8Hr5QEDs=
  394. </data>
  395. <key>Resources/res/SG-盘子7.red</key>
  396. <data>
  397. 4S+IolIXZ0nLqHFaE8ZxsfjBxZE=
  398. </data>
  399. <key>Resources/res/SG-盘子7.redream</key>
  400. <data>
  401. ODsZYUXZBXM3vBheBczgeGH5R78=
  402. </data>
  403. <key>Resources/res/SG-盘子7情况.redream</key>
  404. <data>
  405. 0CN+Zf2lEKTR9jGSPRV2uDu61MU=
  406. </data>
  407. <key>Resources/res/SG-盘子8.red</key>
  408. <data>
  409. x8YCVGYMoxkxA6zhU/uXFFt91uM=
  410. </data>
  411. <key>Resources/res/SG-盘子8.redream</key>
  412. <data>
  413. bPvtF9AR7k5fGVAbrzHdXEhtnNo=
  414. </data>
  415. <key>Resources/res/SG-盘子8情况.redream</key>
  416. <data>
  417. 2W9ztEfI+B9NNvYy57//1ooFOiQ=
  418. </data>
  419. <key>Resources/res/SG-盘子9.red</key>
  420. <data>
  421. VunTN8tb/GtMKW6EM66BgsbrdpA=
  422. </data>
  423. <key>Resources/res/SG-盘子9.redream</key>
  424. <data>
  425. PuedZlEWDF5+PLbCKNJTm5bVP3w=
  426. </data>
  427. <key>Resources/res/SG-盘子9情况.redream</key>
  428. <data>
  429. ylVCk/iM/kYAFJzNc430jeCTh9Q=
  430. </data>
  431. <key>Resources/res/SG-目标1.red</key>
  432. <data>
  433. tnDBoEWc+tF7uQrZI9QKA+r1y7o=
  434. </data>
  435. <key>Resources/res/SG-目标1.redream</key>
  436. <data>
  437. MGUYMpjLUmGkdDzr2goAmPWuJQw=
  438. </data>
  439. <key>Resources/res/SG-目标1盖子.red</key>
  440. <data>
  441. gbdM8ofnBFff9hJvKmuqe91/pDA=
  442. </data>
  443. <key>Resources/res/SG-目标1盖子.redream</key>
  444. <data>
  445. 4rcHU7UHtmxqTU3O4No3bAYKa48=
  446. </data>
  447. <key>Resources/res/SG-目标2.red</key>
  448. <data>
  449. HDAbyg5bgHG5yjXZj9NO7JTkvgE=
  450. </data>
  451. <key>Resources/res/SG-目标2.redream</key>
  452. <data>
  453. DChwDHQX3gklDE+giZYWiAsnhUA=
  454. </data>
  455. <key>Resources/res/SG-目标2盖子.red</key>
  456. <data>
  457. cc6W/nYpQTfP+3fRm5x89ygSLh0=
  458. </data>
  459. <key>Resources/res/SG-目标2盖子.redream</key>
  460. <data>
  461. 63S7KQimnON8VT/kroUxNlBAqT0=
  462. </data>
  463. <key>Resources/res/SG-钉子1.red</key>
  464. <data>
  465. QaWS9uuNkbpeLdqlNs1OFUV2Zlk=
  466. </data>
  467. <key>Resources/res/SG-钉子1.redream</key>
  468. <data>
  469. h+Ce/Y0BKzoTeTrQdgXbbkZxJY8=
  470. </data>
  471. <key>Resources/res/SG-钉子10.red</key>
  472. <data>
  473. aXJ/lbtgQuP4zjTkSQ2PodQliCk=
  474. </data>
  475. <key>Resources/res/SG-钉子10.redream</key>
  476. <data>
  477. 904Tu9+ebgYPmBDpKsCLQ+jI+mw=
  478. </data>
  479. <key>Resources/res/SG-钉子2.red</key>
  480. <data>
  481. aXJ/lbtgQuP4zjTkSQ2PodQliCk=
  482. </data>
  483. <key>Resources/res/SG-钉子2.redream</key>
  484. <data>
  485. 904Tu9+ebgYPmBDpKsCLQ+jI+mw=
  486. </data>
  487. <key>Resources/res/SG-钉子3.red</key>
  488. <data>
  489. rvdb1R7aTZyqzlmdctlOw94ERA8=
  490. </data>
  491. <key>Resources/res/SG-钉子3.redream</key>
  492. <data>
  493. wGdCejYzJWGJh5Gub7JSukVXohU=
  494. </data>
  495. <key>Resources/res/SG-钉子4.red</key>
  496. <data>
  497. QaWS9uuNkbpeLdqlNs1OFUV2Zlk=
  498. </data>
  499. <key>Resources/res/SG-钉子4.redream</key>
  500. <data>
  501. h+Ce/Y0BKzoTeTrQdgXbbkZxJY8=
  502. </data>
  503. <key>Resources/res/SG-钉子5.red</key>
  504. <data>
  505. QaWS9uuNkbpeLdqlNs1OFUV2Zlk=
  506. </data>
  507. <key>Resources/res/SG-钉子5.redream</key>
  508. <data>
  509. h+Ce/Y0BKzoTeTrQdgXbbkZxJY8=
  510. </data>
  511. <key>Resources/res/SG-钉子6.red</key>
  512. <data>
  513. aXJ/lbtgQuP4zjTkSQ2PodQliCk=
  514. </data>
  515. <key>Resources/res/SG-钉子6.redream</key>
  516. <data>
  517. 904Tu9+ebgYPmBDpKsCLQ+jI+mw=
  518. </data>
  519. <key>Resources/res/SG-钉子7.red</key>
  520. <data>
  521. rvdb1R7aTZyqzlmdctlOw94ERA8=
  522. </data>
  523. <key>Resources/res/SG-钉子7.redream</key>
  524. <data>
  525. wGdCejYzJWGJh5Gub7JSukVXohU=
  526. </data>
  527. <key>Resources/res/SG-钉子8.red</key>
  528. <data>
  529. rvdb1R7aTZyqzlmdctlOw94ERA8=
  530. </data>
  531. <key>Resources/res/SG-钉子8.redream</key>
  532. <data>
  533. wGdCejYzJWGJh5Gub7JSukVXohU=
  534. </data>
  535. <key>Resources/res/SG-钉子9.red</key>
  536. <data>
  537. rvdb1R7aTZyqzlmdctlOw94ERA8=
  538. </data>
  539. <key>Resources/res/SG-钉子9.redream</key>
  540. <data>
  541. wGdCejYzJWGJh5Gub7JSukVXohU=
  542. </data>
  543. <key>Resources/res/SG_Game.redream</key>
  544. <data>
  545. O5QMs4LwEvdTdUrMaGP0rQy0fpA=
  546. </data>
  547. <key>Resources/res/SG_HealthAndGolds.redream</key>
  548. <data>
  549. ttUvN355zbbVUe5HWtyIlHw+pkY=
  550. </data>
  551. <key>Resources/res/SG_Jewelry.redream</key>
  552. <data>
  553. 51eYvOoZP1gogzT2tT/hTCDA3VI=
  554. </data>
  555. <key>Resources/res/SG_Mode.redream</key>
  556. <data>
  557. OnPdpwEQSculFrCgRWDw7bQ6CuE=
  558. </data>
  559. <key>Resources/res/SG_NavigationBar.redream</key>
  560. <data>
  561. 3Bkc7YhZrZM8j0CbX+t/wovARFo=
  562. </data>
  563. <key>Resources/res/SG_Settings.redream</key>
  564. <data>
  565. CjsbpBOZjF8b/YMY09tOEtUPGUs=
  566. </data>
  567. <key>Resources/res/SG_Shop.redream</key>
  568. <data>
  569. 5RKGlZQ0SocDFapY+Fj8gMH4o8w=
  570. </data>
  571. <key>Resources/res/SG_SideBar.redream</key>
  572. <data>
  573. WEbfcKzfSUP8aM3dMoqkmI6eO9Y=
  574. </data>
  575. <key>Resources/res/SG_Start.redream</key>
  576. <data>
  577. 399KHu4zWogE0FThZFL4iFfX24k=
  578. </data>
  579. <key>Resources/res/SG_TargetLayer.redream</key>
  580. <data>
  581. Pwz9VhodesHtRcYaRbo8sKasr3A=
  582. </data>
  583. <key>Resources/res/SG_Union.redream</key>
  584. <data>
  585. myDj7gdHQbPb142vrHYKweb0wP4=
  586. </data>
  587. <key>Resources/res/SG_gameover.redream</key>
  588. <data>
  589. +PrqCxpKaOGByFryVk982qUizj4=
  590. </data>
  591. <key>Resources/res/SG_gamewin.redream</key>
  592. <data>
  593. zNTNIfFxm+f8yQtMViHJuAMy3sY=
  594. </data>
  595. <key>Resources/res/WHEEL</key>
  596. <data>
  597. ZYy7G/WlYR+EvA11EsKpM4Yoig8=
  598. </data>
  599. <key>Resources/res/__about__.py</key>
  600. <data>
  601. ZTafAU6jBAZEdNR8cZQBgDyZntg=
  602. </data>
  603. <key>Resources/res/__init__.cpython-312.pyc</key>
  604. <data>
  605. UmIMkvTg4OLeytachYvlSD0J0cE=
  606. </data>
  607. <key>Resources/res/__init__.py</key>
  608. <data>
  609. OxxC45e26btcku/91V3eD1C3+v8=
  610. </data>
  611. <key>Resources/res/__main__.py</key>
  612. <data>
  613. lP8aNgw0gc2s12WC/HvZqjbEpMU=
  614. </data>
  615. <key>Resources/res/__pip-runner__.py</key>
  616. <data>
  617. TxZDysMybxJGTqtoyrQVpXJtV6I=
  618. </data>
  619. <key>Resources/res/__version__.py</key>
  620. <data>
  621. mFUbe1Q35yXtTtYx3JxEiwQy/80=
  622. </data>
  623. <key>Resources/res/_appengine_environ.py</key>
  624. <data>
  625. xMzOw9SWgroUiu6268jJ3EUMajw=
  626. </data>
  627. <key>Resources/res/_asyncio.py</key>
  628. <data>
  629. In0pVmZfWe31aBnfYV+rVDccP6Q=
  630. </data>
  631. <key>Resources/res/_cell_widths.py</key>
  632. <data>
  633. 2vfg930QqAb0FtbfJrcbMZGX7lQ=
  634. </data>
  635. <key>Resources/res/_cmd.py</key>
  636. <data>
  637. VvjVmNoHmvzp31890g1LsAKGsgg=
  638. </data>
  639. <key>Resources/res/_collections.py</key>
  640. <data>
  641. SKqbP0Yhy1S5AfeJ2OWWEiq5iJg=
  642. </data>
  643. <key>Resources/res/_compat.py</key>
  644. <data>
  645. kUEZLTubt4nQAihajL/XiGQqrO4=
  646. </data>
  647. <key>Resources/res/_dists.py</key>
  648. <data>
  649. uGlMZxylVeMMc8LYrkWJHIDCigE=
  650. </data>
  651. <key>Resources/res/_distutils.py</key>
  652. <data>
  653. cPtbYmH/JgEjn4zJCmirrJGGuXw=
  654. </data>
  655. <key>Resources/res/_emoji_codes.py</key>
  656. <data>
  657. Zo6v8TY1pqQ2jhRF0uHc5/3Ka3s=
  658. </data>
  659. <key>Resources/res/_emoji_replace.py</key>
  660. <data>
  661. JLY7X8gCpDOQZojCHOkQba2QwdM=
  662. </data>
  663. <key>Resources/res/_envs.py</key>
  664. <data>
  665. qao045Yp33MNQLHybec5pYrZKss=
  666. </data>
  667. <key>Resources/res/_export_format.py</key>
  668. <data>
  669. fgop5OMzpkFcLQpWJ0GUJMP6Au0=
  670. </data>
  671. <key>Resources/res/_extension.py</key>
  672. <data>
  673. W1ITbfGV3aSghlnhoDdsONh8LIA=
  674. </data>
  675. <key>Resources/res/_fileno.py</key>
  676. <data>
  677. VRmGDUgX0obbd/18zlw4draprfo=
  678. </data>
  679. <key>Resources/res/_impl.py</key>
  680. <data>
  681. Hlqdjchq8HjwwkQDLbmAsP0Rw0w=
  682. </data>
  683. <key>Resources/res/_in_process.py</key>
  684. <data>
  685. sYiq5BM0q33tWqHJyZJ3n+oBJ+s=
  686. </data>
  687. <key>Resources/res/_inspect.py</key>
  688. <data>
  689. 7A/APgUOA6cp3+81suALk+t21uI=
  690. </data>
  691. <key>Resources/res/_internal_utils.py</key>
  692. <data>
  693. g6hhKn/mdHe11hqMQ1jSLVsJn34=
  694. </data>
  695. <key>Resources/res/_jaraco_text.py</key>
  696. <data>
  697. sHMTgcWu0KEX6BI1CBUAiwrHYj8=
  698. </data>
  699. <key>Resources/res/_json.py</key>
  700. <data>
  701. wP0WP9htga4F+A6YS9rI8ZatHwc=
  702. </data>
  703. <key>Resources/res/_log.py</key>
  704. <data>
  705. LCC31zmjBPNxWuprkO7WNMIhfF8=
  706. </data>
  707. <key>Resources/res/_log_render.py</key>
  708. <data>
  709. 4owfYcVU9N00whDqifi1Axr/h00=
  710. </data>
  711. <key>Resources/res/_loop.py</key>
  712. <data>
  713. ZMGnbrJBPe2AlrmKQZCI/0ATbak=
  714. </data>
  715. <key>Resources/res/_manylinux.py</key>
  716. <data>
  717. D/bJzrCBmu+daM7lnXlC+gVEZh8=
  718. </data>
  719. <key>Resources/res/_mapping.py</key>
  720. <data>
  721. cMIkFCPxThUZCNHkHtD3AVTxhYs=
  722. </data>
  723. <key>Resources/res/_musllinux.py</key>
  724. <data>
  725. 1EbZTisP4Oxihikod8OSYmjsq0o=
  726. </data>
  727. <key>Resources/res/_null_file.py</key>
  728. <data>
  729. aWW7NA8dQRxxnbcvzMSO2/6/0DE=
  730. </data>
  731. <key>Resources/res/_palettes.py</key>
  732. <data>
  733. 7hmLV5B+dm2pPACWSB9jn4S4/gQ=
  734. </data>
  735. <key>Resources/res/_parser.py</key>
  736. <data>
  737. whaC2AZbTGMZZUEHxNFpEABVGpY=
  738. </data>
  739. <key>Resources/res/_pick.py</key>
  740. <data>
  741. cqKXhE/bP8ZVaUTOLpeZqTQjtSI=
  742. </data>
  743. <key>Resources/res/_ratio.py</key>
  744. <data>
  745. HQL06Rb4YlWX1FIHQDUV69I7R6A=
  746. </data>
  747. <key>Resources/res/_re.py</key>
  748. <data>
  749. QdjQIFrhHaUwhYHmLfbaEjvkFe0=
  750. </data>
  751. <key>Resources/res/_spinners.py</key>
  752. <data>
  753. fcOS/2ZqSSyDSDOPvQj0EvgdbzQ=
  754. </data>
  755. <key>Resources/res/_stack.py</key>
  756. <data>
  757. OnekzQza6nj61tAIjzW8ADX7YvY=
  758. </data>
  759. <key>Resources/res/_structures.py</key>
  760. <data>
  761. /gw3R88U5pYnbLaAbGd1UD3gArg=
  762. </data>
  763. <key>Resources/res/_sysconfig.py</key>
  764. <data>
  765. mrQ5vV9bD2R40NwX2i+odzPwHzI=
  766. </data>
  767. <key>Resources/res/_timer.py</key>
  768. <data>
  769. uT+N3XvE6pGKm0ChpbmT17fpOxk=
  770. </data>
  771. <key>Resources/res/_types.py</key>
  772. <data>
  773. bcYzfYiO3qUTiglOUXvmwOS9CfQ=
  774. </data>
  775. <key>Resources/res/_utils.py</key>
  776. <data>
  777. SLAUxkO1ewICntJZTrQIneI8p7k=
  778. </data>
  779. <key>Resources/res/_version.py</key>
  780. <data>
  781. B9Dlh7lLulneHP2v3OvaJIAHooQ=
  782. </data>
  783. <key>Resources/res/_virtualenv.cpython-312.pyc</key>
  784. <data>
  785. QUXBwPvIQjzamSYW3q5ZmxD4ZBo=
  786. </data>
  787. <key>Resources/res/_virtualenv.pth</key>
  788. <data>
  789. bOvyL8Hb2PfZSSoShmpIDLhljCE=
  790. </data>
  791. <key>Resources/res/_virtualenv.py</key>
  792. <data>
  793. Sn+XSW+WVlT6NmKhaSIQYJqy/4s=
  794. </data>
  795. <key>Resources/res/_win32_console.py</key>
  796. <data>
  797. g2zpKUXNkIOvOKVPtk/ZQIBYZ54=
  798. </data>
  799. <key>Resources/res/_windows.py</key>
  800. <data>
  801. vnI5SgpZlUDLrgaB3ffeqNW7qjA=
  802. </data>
  803. <key>Resources/res/_windows_renderer.py</key>
  804. <data>
  805. 9zavQOYlxNqMOU3avMK5ow1rAJ4=
  806. </data>
  807. <key>Resources/res/_wrap.py</key>
  808. <data>
  809. ujGq0Mqh8RQQta4kuCBRs5WndXY=
  810. </data>
  811. <key>Resources/res/abc.py</key>
  812. <data>
  813. nldC9sXidrZWpXW9kd6+W2k16+E=
  814. </data>
  815. <key>Resources/res/actions.py</key>
  816. <data>
  817. nEF2U1craVa+Sa+zG/7TPyXlHg0=
  818. </data>
  819. <key>Resources/res/activate</key>
  820. <data>
  821. yUI80F2xCKo3pH4q2SB/N17l/pI=
  822. </data>
  823. <key>Resources/res/activate.csh</key>
  824. <data>
  825. yBK/vpIeaieUzFDxTuORQhfgqNk=
  826. </data>
  827. <key>Resources/res/activate.fish</key>
  828. <data>
  829. nWyC/8RV7mm8QGwIxkssJd9N7Eo=
  830. </data>
  831. <key>Resources/res/activate.nu</key>
  832. <data>
  833. HDs0qycVScPKchO2SGnCpxoDC+U=
  834. </data>
  835. <key>Resources/res/activate.ps1</key>
  836. <data>
  837. dv5y/+AcjvdR6sZDdc2kiHiN3aw=
  838. </data>
  839. <key>Resources/res/activate_this.py</key>
  840. <data>
  841. kx+sMdJkHjmHyA5D2Lk8ddZhN3I=
  842. </data>
  843. <key>Resources/res/adapter.py</key>
  844. <data>
  845. cxz2VLlaPTri8y5zmDey6e4ZkAg=
  846. </data>
  847. <key>Resources/res/adapters.py</key>
  848. <data>
  849. qARFFUk8DjQgPrn4IKY0GzO96Jo=
  850. </data>
  851. <key>Resources/res/after.py</key>
  852. <data>
  853. 81fDAe4r+ToC9LQYj2b8HDuZ8C8=
  854. </data>
  855. <key>Resources/res/align.py</key>
  856. <data>
  857. Y3fDNYNqaoXwk6hlN43cdEnwM2Q=
  858. </data>
  859. <key>Resources/res/android.py</key>
  860. <data>
  861. r/1xMXmCCqTlogKXLc8QS+LJeMI=
  862. </data>
  863. <key>Resources/res/ansi.py</key>
  864. <data>
  865. 47n6nJOOY3M6kiFwhkZa6Q6fPQc=
  866. </data>
  867. <key>Resources/res/ansi_test.py</key>
  868. <data>
  869. W3flaZRwMtaMYZrmg0UuGBt2MSQ=
  870. </data>
  871. <key>Resources/res/ansitowin32.py</key>
  872. <data>
  873. jTTOA9dQiJecIAPDOxfG4IklMIQ=
  874. </data>
  875. <key>Resources/res/ansitowin32_test.py</key>
  876. <data>
  877. 8SU2Nm3z8msVaFiEzkoHHI7HC6s=
  878. </data>
  879. <key>Resources/res/api.py</key>
  880. <data>
  881. KfpuuZ32Up5zHvuEXy2WiFjrs5I=
  882. </data>
  883. <key>Resources/res/appdirs.py</key>
  884. <data>
  885. L31GEI8IGNCD7A/e9L72WsWXdYM=
  886. </data>
  887. <key>Resources/res/appengine.py</key>
  888. <data>
  889. etUeonQqXctVcKNmylVLYObyCT4=
  890. </data>
  891. <key>Resources/res/auth.py</key>
  892. <data>
  893. TiqEvGCmVe9HjHitvGtD+udir58=
  894. </data>
  895. <key>Resources/res/autocompletion.py</key>
  896. <data>
  897. eLSMmzNYKcIIJV+8Y4W5wmOlF24=
  898. </data>
  899. <key>Resources/res/b_back.png</key>
  900. <data>
  901. lnMXMABppmYH/LwcoX9rZHxMqAY=
  902. </data>
  903. <key>Resources/res/bar.py</key>
  904. <data>
  905. 1Czm+PCVg47N7a6tkQ9qsQaGrVM=
  906. </data>
  907. <key>Resources/res/base.py</key>
  908. <data>
  909. jlieEX6En2g4zyXoFd0ZeB1+o1k=
  910. </data>
  911. <key>Resources/res/base_command.py</key>
  912. <data>
  913. 8TJ0sVLoVuFY6c2mka9YSzDbrcY=
  914. </data>
  915. <key>Resources/res/bazaar.py</key>
  916. <data>
  917. RKd5Cj9WJHXB7ABsu/yhDFJD3Lo=
  918. </data>
  919. <key>Resources/res/bbcode.py</key>
  920. <data>
  921. o9Of4DWxH+Gme9+5NagQYVDSkmc=
  922. </data>
  923. <key>Resources/res/before.py</key>
  924. <data>
  925. nvgCrReu2TIEHMjnDe60+hJo3Iw=
  926. </data>
  927. <key>Resources/res/before_sleep.py</key>
  928. <data>
  929. SphxbB+34VD2ukOHT9BP7T1XA64=
  930. </data>
  931. <key>Resources/res/big5freq.py</key>
  932. <data>
  933. 7uremzWelZmnnFp3L53AtXfyTf0=
  934. </data>
  935. <key>Resources/res/big5prober.py</key>
  936. <data>
  937. jmpOPMgl/4C9OK5eff1TBgj1dLI=
  938. </data>
  939. <key>Resources/res/bindings.py</key>
  940. <data>
  941. XcAPR0gUSiwEnR9nwewWwYpm+aY=
  942. </data>
  943. <key>Resources/res/box.py</key>
  944. <data>
  945. 4k+V3s0PBIsyjLQO3SxCTzYwhYs=
  946. </data>
  947. <key>Resources/res/build_env.py</key>
  948. <data>
  949. fvKXeo0yEuWLpmrAiCk/1lnWG0I=
  950. </data>
  951. <key>Resources/res/build_tracker.py</key>
  952. <data>
  953. qBO0rPFfOsa+s6a8DfRUWtgpy8I=
  954. </data>
  955. <key>Resources/res/cacert.pem</key>
  956. <data>
  957. 56vWWozK/v9sr2ov+Y0n0k2Hya0=
  958. </data>
  959. <key>Resources/res/cache.py</key>
  960. <data>
  961. tvguEpI7aj4W0SLs7+3KyFg1Qso=
  962. </data>
  963. <key>Resources/res/candidate.py</key>
  964. <data>
  965. OxSfzqeD9eQkSTUUROo1FsfbHsU=
  966. </data>
  967. <key>Resources/res/candidates.py</key>
  968. <data>
  969. HplFXk6jVWd4Xb+1P2t0cV9FYUA=
  970. </data>
  971. <key>Resources/res/cells.py</key>
  972. <data>
  973. 0YyAcylhyJhKEVcs65Dw6I5oVCQ=
  974. </data>
  975. <key>Resources/res/certs.py</key>
  976. <data>
  977. dUBkaDiZAqbZBublFqAEhdFx0zs=
  978. </data>
  979. <key>Resources/res/chardetect.py</key>
  980. <data>
  981. 9RPK4eBoWFzZBveGJmOKBCIXPCY=
  982. </data>
  983. <key>Resources/res/chardistribution.py</key>
  984. <data>
  985. dLl8XXreCMnS7A3S7/8Wh+0WSXY=
  986. </data>
  987. <key>Resources/res/charsetgroupprober.py</key>
  988. <data>
  989. eRhyFQdbsLp4RvMawnwcLfEr56M=
  990. </data>
  991. <key>Resources/res/charsetprober.py</key>
  992. <data>
  993. LKsjmmkI5FzukW8Kqbl2n98zGr0=
  994. </data>
  995. <key>Resources/res/check.py</key>
  996. <data>
  997. rdu5McJ7+GeOBIjltynX6W5JOFs=
  998. </data>
  999. <key>Resources/res/cmdline.py</key>
  1000. <data>
  1001. N18sZ+ERVeQ808hH36D0fhD59Ek=
  1002. </data>
  1003. <key>Resources/res/cmdoptions.py</key>
  1004. <data>
  1005. HGSGKtStvJ0W2gXABRJQoGsjgYA=
  1006. </data>
  1007. <key>Resources/res/codec.py</key>
  1008. <data>
  1009. 6J9xoV4gqBp5B62dccw+sGmymLM=
  1010. </data>
  1011. <key>Resources/res/codingstatemachine.py</key>
  1012. <data>
  1013. OF+/kxE/VHKmLlxZ8v2tzxRk8w4=
  1014. </data>
  1015. <key>Resources/res/codingstatemachinedict.py</key>
  1016. <data>
  1017. D8mhF1mw6NznrSdJ8cD95nkpi9I=
  1018. </data>
  1019. <key>Resources/res/collections_abc.py</key>
  1020. <data>
  1021. cH3GPJsJYbNswRJyFq843msbMec=
  1022. </data>
  1023. <key>Resources/res/collector.py</key>
  1024. <data>
  1025. awLQfVTdXYmRiYJwXMh5nmnMjdg=
  1026. </data>
  1027. <key>Resources/res/color.py</key>
  1028. <data>
  1029. grYPU073xXI1wzvtFd+yai9OWhg=
  1030. </data>
  1031. <key>Resources/res/color_triplet.py</key>
  1032. <data>
  1033. +kT2URx7E22L+fPZyFh0Hzi8d28=
  1034. </data>
  1035. <key>Resources/res/columns.py</key>
  1036. <data>
  1037. VW8r3RxzgvqUGCfI8q/LqwCMH8Y=
  1038. </data>
  1039. <key>Resources/res/command_context.py</key>
  1040. <data>
  1041. B8/XMtxlQCyeaH3XhxrT2znuaxU=
  1042. </data>
  1043. <key>Resources/res/common.py</key>
  1044. <data>
  1045. aTlC7cwBT5l8uL9FEnDAGgJbTQw=
  1046. </data>
  1047. <key>Resources/res/compat.py</key>
  1048. <data>
  1049. 3i3I9RMFHE9tmpPWvk0zxNZbPkA=
  1050. </data>
  1051. <key>Resources/res/compatibility_tags.py</key>
  1052. <data>
  1053. 37raE+uo72PUvDOmUq2kgOPga0I=
  1054. </data>
  1055. <key>Resources/res/completion.py</key>
  1056. <data>
  1057. o3IgAxjKGh1ZIvj4xfUfc3xRTvY=
  1058. </data>
  1059. <key>Resources/res/configs.json</key>
  1060. <data>
  1061. UNA005QWfFHYrBg680KeJB+EFEM=
  1062. </data>
  1063. <key>Resources/res/configuration.py</key>
  1064. <data>
  1065. jTtWYLm2b8RKszf5DPFJB0ewE5s=
  1066. </data>
  1067. <key>Resources/res/connection.py</key>
  1068. <data>
  1069. QhHOxFh2zWy2Y79guxzkFYLV0Jg=
  1070. </data>
  1071. <key>Resources/res/connectionpool.py</key>
  1072. <data>
  1073. RNhpG792XMtY9acX4oShAj8c0cU=
  1074. </data>
  1075. <key>Resources/res/console.py</key>
  1076. <data>
  1077. +D1vJITJam0lZShNPwOEZ6yTdN0=
  1078. </data>
  1079. <key>Resources/res/constrain.py</key>
  1080. <data>
  1081. l9i5CrX40e77X3W3KlZYORylgiM=
  1082. </data>
  1083. <key>Resources/res/constructors.py</key>
  1084. <data>
  1085. 7Nx6GUUr5sW1Wf5ZlnvTctisMq4=
  1086. </data>
  1087. <key>Resources/res/containers.py</key>
  1088. <data>
  1089. w5NIBdaUPXesgvpv2YfVoimibXA=
  1090. </data>
  1091. <key>Resources/res/control.py</key>
  1092. <data>
  1093. WdfB+xx9dZVfoxnC0n80GAK44vU=
  1094. </data>
  1095. <key>Resources/res/controller.py</key>
  1096. <data>
  1097. gPzUG33GSI9zo+teJxxy02Tg4jE=
  1098. </data>
  1099. <key>Resources/res/cookies.py</key>
  1100. <data>
  1101. CviYd+dlPOFHTkkDLmFb0eLbw/o=
  1102. </data>
  1103. <key>Resources/res/core.py</key>
  1104. <data>
  1105. RiWYuG81KFaCChjFtNZsnZbkvgY=
  1106. </data>
  1107. <key>Resources/res/cp949prober.py</key>
  1108. <data>
  1109. livAcNgfVfQ+SeSMamCef/u1zYg=
  1110. </data>
  1111. <key>Resources/res/database.py</key>
  1112. <data>
  1113. KdR7HfJuAhxd8IKA8E/zykInRl0=
  1114. </data>
  1115. <key>Resources/res/datetime.py</key>
  1116. <data>
  1117. RC3Fhmpg2sfKJXjNdzwUfp4cBjo=
  1118. </data>
  1119. <key>Resources/res/debug.py</key>
  1120. <data>
  1121. G++qDsX57eRBI1wociznFK7hvE0=
  1122. </data>
  1123. <key>Resources/res/default_styles.py</key>
  1124. <data>
  1125. GFObKf7cBXlPoTOQOlbQ9P6EMxs=
  1126. </data>
  1127. <key>Resources/res/deprecation.py</key>
  1128. <data>
  1129. jHkPYtsSuzYmKNsz5JkhiKHYk90=
  1130. </data>
  1131. <key>Resources/res/diagnose.py</key>
  1132. <data>
  1133. qNkbmmSowf+SmQzUQDWBLaghfJI=
  1134. </data>
  1135. <key>Resources/res/direct_url.py</key>
  1136. <data>
  1137. /bwyMsTRkNHMXIldLz6OfvkQW+U=
  1138. </data>
  1139. <key>Resources/res/direct_url_helpers.py</key>
  1140. <data>
  1141. 3ZLohN+VGVIXMY2zhbHb05nVDQw=
  1142. </data>
  1143. <key>Resources/res/distro.py</key>
  1144. <data>
  1145. tk1jpFwUAOsIaUDCzqwe8ejDVrM=
  1146. </data>
  1147. <key>Resources/res/download.py</key>
  1148. <data>
  1149. CyzclmplaTgEtC68p080ahvAtHA=
  1150. </data>
  1151. <key>Resources/res/editable_legacy.py</key>
  1152. <data>
  1153. YaUkvaJ8SrDyvYmJA+6H5R009Zo=
  1154. </data>
  1155. <key>Resources/res/egg_link.py</key>
  1156. <data>
  1157. qFs1X+dyBHD+TpO2h+j7qQLUZlE=
  1158. </data>
  1159. <key>Resources/res/emoji.py</key>
  1160. <data>
  1161. I6ZbPcmdJlZI7MBReql8j+dnAg4=
  1162. </data>
  1163. <key>Resources/res/encoding.py</key>
  1164. <data>
  1165. McIDi2TdXT3TxM9WDjVORHGxRKA=
  1166. </data>
  1167. <key>Resources/res/entry_points.txt</key>
  1168. <data>
  1169. 4kiWpDlv6Lm829vKBguINOOovKE=
  1170. </data>
  1171. <key>Resources/res/entrypoints.py</key>
  1172. <data>
  1173. 3xAR34mono4YSzjPQjLMGxVEbMA=
  1174. </data>
  1175. <key>Resources/res/enums.py</key>
  1176. <data>
  1177. 0y/lkDp+a6gM+LlI5qBYcafVfi8=
  1178. </data>
  1179. <key>Resources/res/errors.py</key>
  1180. <data>
  1181. z9eSattKAstt+HlJmSEsbwJq8fE=
  1182. </data>
  1183. <key>Resources/res/escprober.py</key>
  1184. <data>
  1185. hX7p9fC0v24e4swAdDPgccdek5Y=
  1186. </data>
  1187. <key>Resources/res/escsm.py</key>
  1188. <data>
  1189. 6VNWyqFN/ne4i9oySiEr2InAk2U=
  1190. </data>
  1191. <key>Resources/res/eucjpprober.py</key>
  1192. <data>
  1193. wUDuMLrwv4uz5mguJS1g3tGTFWw=
  1194. </data>
  1195. <key>Resources/res/euckrfreq.py</key>
  1196. <data>
  1197. TksmZuJ3cB0dXzxKe13j5jq+QyU=
  1198. </data>
  1199. <key>Resources/res/euckrprober.py</key>
  1200. <data>
  1201. baa+Z7cQFxcaWXlDXnT04ZsrYa0=
  1202. </data>
  1203. <key>Resources/res/euctwfreq.py</key>
  1204. <data>
  1205. HPU6OnwniSEaXtxPbZqqtXZwf40=
  1206. </data>
  1207. <key>Resources/res/euctwprober.py</key>
  1208. <data>
  1209. fVFiPuAmJADkUVUkoUW1GkEziDM=
  1210. </data>
  1211. <key>Resources/res/exceptions.py</key>
  1212. <data>
  1213. rgpHeSuW6PkYycp56YNPmSg9nPQ=
  1214. </data>
  1215. <key>Resources/res/ext.py</key>
  1216. <data>
  1217. Vt0Rk81MpE1hfv7YLhx+DnmMNQ8=
  1218. </data>
  1219. <key>Resources/res/factory.py</key>
  1220. <data>
  1221. eW8m5w8q6mnQ56024guXBRcmINs=
  1222. </data>
  1223. <key>Resources/res/fallback.py</key>
  1224. <data>
  1225. VK7p+8H9bynDrKpXFrCF4MBUDTI=
  1226. </data>
  1227. <key>Resources/res/fields.py</key>
  1228. <data>
  1229. 36ZaSZA5pND8Yvgc4rQamBxeCz4=
  1230. </data>
  1231. <key>Resources/res/file_cache.py</key>
  1232. <data>
  1233. r9YZm+ABYYDpHEsWk1qkOIk4kpA=
  1234. </data>
  1235. <key>Resources/res/file_proxy.py</key>
  1236. <data>
  1237. X33uPMxbULkjra7AFQjfslmErNY=
  1238. </data>
  1239. <key>Resources/res/filepost.py</key>
  1240. <data>
  1241. XQ8ZnNdtwMJWwvbAONymfmssg3Q=
  1242. </data>
  1243. <key>Resources/res/filesize.py</key>
  1244. <data>
  1245. 6bgqxEvVFem65kL/A2EWPV+dtJc=
  1246. </data>
  1247. <key>Resources/res/filesystem.py</key>
  1248. <data>
  1249. fkRS7ioo4OPhDQLRuhFYcOlUDk8=
  1250. </data>
  1251. <key>Resources/res/filetypes.py</key>
  1252. <data>
  1253. t14T711EaZ8K9K4SiCMh5jBFuTY=
  1254. </data>
  1255. <key>Resources/res/filewrapper.py</key>
  1256. <data>
  1257. dEcRq7Zvdfv/4UifDgE1sYK3R1o=
  1258. </data>
  1259. <key>Resources/res/filter.py</key>
  1260. <data>
  1261. h/7er2V92dx8GRscPJRhtZUUI50=
  1262. </data>
  1263. <key>Resources/res/format_control.py</key>
  1264. <data>
  1265. pHWqhGxVtHOUIOUZVcqiVUZUf2A=
  1266. </data>
  1267. <key>Resources/res/formatter.py</key>
  1268. <data>
  1269. L/J/K1oDrRAYiC5jA7+L85zvtrY=
  1270. </data>
  1271. <key>Resources/res/found_candidates.py</key>
  1272. <data>
  1273. bocq2GT1ZCY54uLGJcAAUmnUcr0=
  1274. </data>
  1275. <key>Resources/res/freeze.py</key>
  1276. <data>
  1277. /uc7vRDL9dOVV2xJ0gFSf7vaHWU=
  1278. </data>
  1279. <key>Resources/res/gb2312freq.py</key>
  1280. <data>
  1281. a/sLWDmRjZwkSXcC57+FjDugAmE=
  1282. </data>
  1283. <key>Resources/res/gb2312prober.py</key>
  1284. <data>
  1285. MOJB+7hkrr+Tf/Yzqqb4ZvF7QP4=
  1286. </data>
  1287. <key>Resources/res/git.py</key>
  1288. <data>
  1289. pW9exLDDusceXZ3vwl2MJKKs6HI=
  1290. </data>
  1291. <key>Resources/res/glibc.py</key>
  1292. <data>
  1293. mTvgl5AWCPMWD34/r+zNfR0hyic=
  1294. </data>
  1295. <key>Resources/res/groff.py</key>
  1296. <data>
  1297. un6/9r7xt4K7rINYJVIhOxyBXkg=
  1298. </data>
  1299. <key>Resources/res/hash.py</key>
  1300. <data>
  1301. P/hfjYvuWXVJ+hrZlv1oTTNRjCc=
  1302. </data>
  1303. <key>Resources/res/hashes.py</key>
  1304. <data>
  1305. +IvepGaZq7IgwfVyC0ZSYpyxayg=
  1306. </data>
  1307. <key>Resources/res/hebrewprober.py</key>
  1308. <data>
  1309. DjcWHOZh5IObfrmm33csLE1psHM=
  1310. </data>
  1311. <key>Resources/res/help.py</key>
  1312. <data>
  1313. zascp4sVDUy5HEU5AOTLsrAFFq0=
  1314. </data>
  1315. <key>Resources/res/helpers.py</key>
  1316. <data>
  1317. nFwVRjCdJF5zT0nC+gr2BQ6ZLGY=
  1318. </data>
  1319. <key>Resources/res/heuristics.py</key>
  1320. <data>
  1321. K/hgEmUJ5+tKr87SjRJs8ukRdMY=
  1322. </data>
  1323. <key>Resources/res/highlighter.py</key>
  1324. <data>
  1325. CObcwDzY9KNGPK324qJhryrjg3Y=
  1326. </data>
  1327. <key>Resources/res/hooks.py</key>
  1328. <data>
  1329. bCrr5kLWRx5wU0xF4DnfcJsjQ10=
  1330. </data>
  1331. <key>Resources/res/html.py</key>
  1332. <data>
  1333. ykSW0d9BuKonFYxm5j9kCrUR1lQ=
  1334. </data>
  1335. <key>Resources/res/idnadata.py</key>
  1336. <data>
  1337. vNHOVHF9bGaJXK1/1+CdUU0OpAQ=
  1338. </data>
  1339. <key>Resources/res/img.py</key>
  1340. <data>
  1341. 1fuhoVY9CCaOC2tgMvnq8jG/U0s=
  1342. </data>
  1343. <key>Resources/res/index.py</key>
  1344. <data>
  1345. l986HklU8XMIb+8J4btLmuVx9Rc=
  1346. </data>
  1347. <key>Resources/res/initialise.py</key>
  1348. <data>
  1349. DPoS37+emrt3Lw/HgcoPdcrlcag=
  1350. </data>
  1351. <key>Resources/res/initialise_test.py</key>
  1352. <data>
  1353. Fq+oo0UGuSX5ues0VAly0jKI5so=
  1354. </data>
  1355. <key>Resources/res/inject_securetransport.py</key>
  1356. <data>
  1357. aG9En+92ihZGzKsTHoMz7VOgkAE=
  1358. </data>
  1359. <key>Resources/res/inspect.py</key>
  1360. <data>
  1361. 15eFrgo3B4ZZvT63xrMV+UHLUX4=
  1362. </data>
  1363. <key>Resources/res/install.py</key>
  1364. <data>
  1365. ZmOpdR7Gn93x5QIvEK2mh5lHvgo=
  1366. </data>
  1367. <key>Resources/res/installation_report.py</key>
  1368. <data>
  1369. Yrqr1J61MX494dvxLG0IbBlR1qo=
  1370. </data>
  1371. <key>Resources/res/installed.py</key>
  1372. <data>
  1373. o77eFUbmy+ZMlSf1yv1U1u15EEk=
  1374. </data>
  1375. <key>Resources/res/intranges.py</key>
  1376. <data>
  1377. CicbH3UZ6tjTEeozOkV8+HyxO3Q=
  1378. </data>
  1379. <key>Resources/res/irc.py</key>
  1380. <data>
  1381. W4MY4R2nbKN8LLOJRgJMIGoGN9o=
  1382. </data>
  1383. <key>Resources/res/isatty_test.py</key>
  1384. <data>
  1385. 89nm4kVaJQ2fA/CFAjjGMR1t9qE=
  1386. </data>
  1387. <key>Resources/res/jisfreq.py</key>
  1388. <data>
  1389. NLR2maJ/Sr/A9R1tbHOB19uVi/A=
  1390. </data>
  1391. <key>Resources/res/johabfreq.py</key>
  1392. <data>
  1393. +G4Vz+Ub/hEEJZWAqcSTD4N+RdU=
  1394. </data>
  1395. <key>Resources/res/johabprober.py</key>
  1396. <data>
  1397. mXki/Z0vfCWtl6SRJzYMx4Yaqe4=
  1398. </data>
  1399. <key>Resources/res/jpcntx.py</key>
  1400. <data>
  1401. CcTM4PNzBE9gIYnAmPwYsg0scvk=
  1402. </data>
  1403. <key>Resources/res/json.py</key>
  1404. <data>
  1405. wpXmjx4ASt4VToOJeF/WyxsfbwY=
  1406. </data>
  1407. <key>Resources/res/jupyter.py</key>
  1408. <data>
  1409. TM2rGSVzkXCmNLXjUHxiSaP/xkk=
  1410. </data>
  1411. <key>Resources/res/labels.py</key>
  1412. <data>
  1413. DVccgKCSN4X9IBALnbjHSZPQNec=
  1414. </data>
  1415. <key>Resources/res/langbulgarianmodel.py</key>
  1416. <data>
  1417. 7u8b++MW+gHbiELAoBh1qOMLA6k=
  1418. </data>
  1419. <key>Resources/res/langgreekmodel.py</key>
  1420. <data>
  1421. TMlS7aRA0aS6Wdxi+BSRAXWBlWU=
  1422. </data>
  1423. <key>Resources/res/langhebrewmodel.py</key>
  1424. <data>
  1425. IFSaHeE9oy0Nxy3PMwPB6Us3Yhk=
  1426. </data>
  1427. <key>Resources/res/langhungarianmodel.py</key>
  1428. <data>
  1429. kAaC+HJqLMHzYoxB61VG5W77nGI=
  1430. </data>
  1431. <key>Resources/res/langrussianmodel.py</key>
  1432. <data>
  1433. ZAe5f9JHOD1IxSD7ElnK23W/IgQ=
  1434. </data>
  1435. <key>Resources/res/langthaimodel.py</key>
  1436. <data>
  1437. xV/Iod+b9OsD62ZKsokW7hOWKqc=
  1438. </data>
  1439. <key>Resources/res/langturkishmodel.py</key>
  1440. <data>
  1441. 2SaIiYJwid05nv5fekLpzWpUAgk=
  1442. </data>
  1443. <key>Resources/res/languages.py</key>
  1444. <data>
  1445. oug67XxVNsuqDQH6e1rin9P1e0k=
  1446. </data>
  1447. <key>Resources/res/latex.py</key>
  1448. <data>
  1449. nFPGs1AiJR3G7dpdAM+QWVP3icA=
  1450. </data>
  1451. <key>Resources/res/latin1prober.py</key>
  1452. <data>
  1453. MDBUY5HhjZV3XreVZbEPp7AK6uA=
  1454. </data>
  1455. <key>Resources/res/layout.py</key>
  1456. <data>
  1457. 37BgP8gmHu02pcxZi/fArLz4qQc=
  1458. </data>
  1459. <key>Resources/res/lazy_wheel.py</key>
  1460. <data>
  1461. kPkLZh77SuVcnA5RdMXz82Eo80Q=
  1462. </data>
  1463. <key>Resources/res/lexer.py</key>
  1464. <data>
  1465. p2MOrFyrQEcWoKu+vHzLoZha91Y=
  1466. </data>
  1467. <key>Resources/res/link.py</key>
  1468. <data>
  1469. GL+1pzCVJMjLvRntwD/ReUGPpM0=
  1470. </data>
  1471. <key>Resources/res/list.py</key>
  1472. <data>
  1473. Vm4sOa8pwcU+rIqnoRCQSKqwVso=
  1474. </data>
  1475. <key>Resources/res/live.py</key>
  1476. <data>
  1477. yVuzZC1HBBS8aE2KHPMHzOk8FeA=
  1478. </data>
  1479. <key>Resources/res/live_render.py</key>
  1480. <data>
  1481. UaXx2cPJM0R6+4y0M8vgqNng0P4=
  1482. </data>
  1483. <key>Resources/res/locators.py</key>
  1484. <data>
  1485. qehDtRb01g+YXisI9hgy6p7f1bY=
  1486. </data>
  1487. <key>Resources/res/logging.py</key>
  1488. <data>
  1489. ZE/aDxgUfXKNNgELpeMJrJV6HPM=
  1490. </data>
  1491. <key>Resources/res/low_level.py</key>
  1492. <data>
  1493. PgpKhcJjoSafj9m/KQ5938GAb/A=
  1494. </data>
  1495. <key>Resources/res/macos.py</key>
  1496. <data>
  1497. iColH7PDs0oZzD/WwsCJDIoW9o4=
  1498. </data>
  1499. <key>Resources/res/macromanprober.py</key>
  1500. <data>
  1501. bbMuUCGU5LmDYIt3jgluxZp+cQM=
  1502. </data>
  1503. <key>Resources/res/main.py</key>
  1504. <data>
  1505. KcmE4sBOcVVZRiX9OP7RH/JfL5c=
  1506. </data>
  1507. <key>Resources/res/main_parser.py</key>
  1508. <data>
  1509. ijTvWWrhghIVzFgLP1pEH2aMB80=
  1510. </data>
  1511. <key>Resources/res/makefile.py</key>
  1512. <data>
  1513. 3wTN/EEGI95kea+fywBziM+5qp4=
  1514. </data>
  1515. <key>Resources/res/manifest.py</key>
  1516. <data>
  1517. EjvwnQ3Gtj0OuZZnkmrW/qCMoGA=
  1518. </data>
  1519. <key>Resources/res/markers.py</key>
  1520. <data>
  1521. 9VBKkbnBZVbJL0TUqGCdGUdkFUI=
  1522. </data>
  1523. <key>Resources/res/markup.py</key>
  1524. <data>
  1525. MqOSKlMVDC/nVNZ198P7wmQoibk=
  1526. </data>
  1527. <key>Resources/res/mbcharsetprober.py</key>
  1528. <data>
  1529. PZdrguEv71Amm9FCl8vnW99Ihe8=
  1530. </data>
  1531. <key>Resources/res/mbcsgroupprober.py</key>
  1532. <data>
  1533. ypCYKKCQwa4azH6/R9NXBSztcxI=
  1534. </data>
  1535. <key>Resources/res/mbcssm.py</key>
  1536. <data>
  1537. kmnFWTrhz+spYm2ZDFpjOE3mcWM=
  1538. </data>
  1539. <key>Resources/res/measure.py</key>
  1540. <data>
  1541. zs++8OEMt/l0vY9JTmOevRxpkKY=
  1542. </data>
  1543. <key>Resources/res/mercurial.py</key>
  1544. <data>
  1545. MNPKAnv7WqC3n9qYKBkv6dfenQQ=
  1546. </data>
  1547. <key>Resources/res/metadata.py</key>
  1548. <data>
  1549. nfZcFg+hQajzvl87ra/g4rtKPd4=
  1550. </data>
  1551. <key>Resources/res/metadata_editable.py</key>
  1552. <data>
  1553. 35+TMxbB2/5ma/sWnG3g0ohMdOY=
  1554. </data>
  1555. <key>Resources/res/metadata_legacy.py</key>
  1556. <data>
  1557. AbZjKwLx/KmIDaz5YUJVbTPxWbs=
  1558. </data>
  1559. <key>Resources/res/misc.py</key>
  1560. <data>
  1561. XQOEPdmnAXVSmLoQgbZ3XdrbPH4=
  1562. </data>
  1563. <key>Resources/res/misc.xml</key>
  1564. <data>
  1565. TPR1oazwN7QtZ1RMBUIvu9YwfxY=
  1566. </data>
  1567. <key>Resources/res/mklabels.py</key>
  1568. <data>
  1569. H6wui1MuuQYgJMmeiufQQX8SUg0=
  1570. </data>
  1571. <key>Resources/res/modeline.py</key>
  1572. <data>
  1573. XdmKFkcg8KnpAJxPZJbkxxLCXvw=
  1574. </data>
  1575. <key>Resources/res/models.py</key>
  1576. <data>
  1577. dldlVQpjT3o0Hrhp/j27kslEBCE=
  1578. </data>
  1579. <key>Resources/res/modules.xml</key>
  1580. <data>
  1581. Bbp3r3lBizZuLMsTV71hgNWK8nI=
  1582. </data>
  1583. <key>Resources/res/nap.py</key>
  1584. <data>
  1585. tYbo6RqQs3cJBqfXOACkdHFLs/M=
  1586. </data>
  1587. <key>Resources/res/ntlmpool.py</key>
  1588. <data>
  1589. QGSGYttpSKI05WfV8WKvpc11zbk=
  1590. </data>
  1591. <key>Resources/res/other.py</key>
  1592. <data>
  1593. BMdJlT8HBma9Ci8iyTuKlVItkRE=
  1594. </data>
  1595. <key>Resources/res/package_data.py</key>
  1596. <data>
  1597. +EsNCOr08MN9SeLTg0BpbAaaCeA=
  1598. </data>
  1599. <key>Resources/res/package_finder.py</key>
  1600. <data>
  1601. Vh3teOQZ4Opj8Rfh4LR6aQ59aFs=
  1602. </data>
  1603. <key>Resources/res/packages.py</key>
  1604. <data>
  1605. 8CwA4PV7gabqZS8i5JNCWPXvAMc=
  1606. </data>
  1607. <key>Resources/res/packaging.py</key>
  1608. <data>
  1609. +Wc6FtL+agPkUO4eDSyMZ+qBK4c=
  1610. </data>
  1611. <key>Resources/res/padding.py</key>
  1612. <data>
  1613. QOOXeGpN8lYkbC6eFsE1sqXPjdY=
  1614. </data>
  1615. <key>Resources/res/pager.py</key>
  1616. <data>
  1617. ZqAaqi+CxPAOjd48Kn6wTodmE+c=
  1618. </data>
  1619. <key>Resources/res/palette.py</key>
  1620. <data>
  1621. MPgFmXGIWVqSx+OjLv/a311/fmo=
  1622. </data>
  1623. <key>Resources/res/panel.py</key>
  1624. <data>
  1625. 3QDZr+3K0z9Xtfi/KbnpVUZans0=
  1626. </data>
  1627. <key>Resources/res/pangomarkup.py</key>
  1628. <data>
  1629. mVbyd4qLLJNISfAF5+dS4itST8w=
  1630. </data>
  1631. <key>Resources/res/parser.py</key>
  1632. <data>
  1633. GpensTdRhFjbWrPQQgl9BquRmbI=
  1634. </data>
  1635. <key>Resources/res/pip</key>
  1636. <data>
  1637. YQvau3LCZYsC0UApsSrw395kB4c=
  1638. </data>
  1639. <key>Resources/res/pip-23.2.1.virtualenv</key>
  1640. <data>
  1641. 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
  1642. </data>
  1643. <key>Resources/res/pip-3.12</key>
  1644. <data>
  1645. YQvau3LCZYsC0UApsSrw395kB4c=
  1646. </data>
  1647. <key>Resources/res/pip3</key>
  1648. <data>
  1649. YQvau3LCZYsC0UApsSrw395kB4c=
  1650. </data>
  1651. <key>Resources/res/pip3.12</key>
  1652. <data>
  1653. YQvau3LCZYsC0UApsSrw395kB4c=
  1654. </data>
  1655. <key>Resources/res/pkg_resources.py</key>
  1656. <data>
  1657. x18P+f9NcatjuMpu+d06SIfwVgQ=
  1658. </data>
  1659. <key>Resources/res/plugin.py</key>
  1660. <data>
  1661. oijhMkeBbiFnX7EyoPx5+YNWX5w=
  1662. </data>
  1663. <key>Resources/res/poolmanager.py</key>
  1664. <data>
  1665. 5Vex2XeWeGYdo7QrNJyguvwim5c=
  1666. </data>
  1667. <key>Resources/res/prepare.py</key>
  1668. <data>
  1669. O1ILOakQCC9+cxHrra6igY5aFEw=
  1670. </data>
  1671. <key>Resources/res/pretty.py</key>
  1672. <data>
  1673. RoaKxY3aajuJeHuCAZBzFwLv5rw=
  1674. </data>
  1675. <key>Resources/res/profiles_settings.xml</key>
  1676. <data>
  1677. EjCX/g0cqBHRo1VyXXBmOG7UkOw=
  1678. </data>
  1679. <key>Resources/res/progress.py</key>
  1680. <data>
  1681. pH1lGcg++rOSErFrGpPLPo+xrQU=
  1682. </data>
  1683. <key>Resources/res/progress_bar.py</key>
  1684. <data>
  1685. QpsKqz8HY42WsUd6/vRGPmA7znQ=
  1686. </data>
  1687. <key>Resources/res/progress_bars.py</key>
  1688. <data>
  1689. MOTdOtQbw+nNkVKGNN+3y3jcYGw=
  1690. </data>
  1691. <key>Resources/res/prompt.py</key>
  1692. <data>
  1693. JE598k1XfIMKYibzLeuKo3hF07Q=
  1694. </data>
  1695. <key>Resources/res/protocol.py</key>
  1696. <data>
  1697. otyp1GNl8ZhjXeW7/WwmKFZqso8=
  1698. </data>
  1699. <key>Resources/res/provider.py</key>
  1700. <data>
  1701. dsD0Gsp+n2Zka1jsAVwWDvIeSjY=
  1702. </data>
  1703. <key>Resources/res/providers.py</key>
  1704. <data>
  1705. 1HU/LOD4S47OZwmGLKnFhZ05GnA=
  1706. </data>
  1707. <key>Resources/res/proxy.py</key>
  1708. <data>
  1709. hvgWhzkEJ8htqXuILdetK5OCddM=
  1710. </data>
  1711. <key>Resources/res/py.typed</key>
  1712. <data>
  1713. z3FzPFjoNKI35uCFCe/yn9zJc7c=
  1714. </data>
  1715. <key>Resources/res/pyopenssl.py</key>
  1716. <data>
  1717. 8zxnVPOv6q2x8eOowctKDRxJEao=
  1718. </data>
  1719. <key>Resources/res/pyproject.py</key>
  1720. <data>
  1721. 0VwYd/WFwFIQs8NWRGPRg2XPdkY=
  1722. </data>
  1723. <key>Resources/res/python</key>
  1724. <data>
  1725. mH6/J8H6rYNdTb/JUDN+3z+lNX0=
  1726. </data>
  1727. <key>Resources/res/python.py</key>
  1728. <data>
  1729. jKx+XUk+1hhe7GyLFigQn4iPKME=
  1730. </data>
  1731. <key>Resources/res/python3</key>
  1732. <data>
  1733. mH6/J8H6rYNdTb/JUDN+3z+lNX0=
  1734. </data>
  1735. <key>Resources/res/python3.12</key>
  1736. <data>
  1737. mH6/J8H6rYNdTb/JUDN+3z+lNX0=
  1738. </data>
  1739. <key>Resources/res/pyvenv.cfg</key>
  1740. <data>
  1741. 2Elpb147SqAsYoHHZ1R6RT3l1c0=
  1742. </data>
  1743. <key>Resources/res/queue.py</key>
  1744. <data>
  1745. 92gwcyXAJAtcWVu3nmGNh/5AFss=
  1746. </data>
  1747. <key>Resources/res/redToJson.py</key>
  1748. <data>
  1749. 5PpPiaWdZx1SHg3LbkHC3rC9LSw=
  1750. </data>
  1751. <key>Resources/res/redis_cache.py</key>
  1752. <data>
  1753. S8IuFVEEvT5x3OVXzKWgSH9GQsA=
  1754. </data>
  1755. <key>Resources/res/regexopt.py</key>
  1756. <data>
  1757. SVAi+pUzhxOfvTn6Flhtb93nyi0=
  1758. </data>
  1759. <key>Resources/res/region.py</key>
  1760. <data>
  1761. 84/A21TR+j5mggYEFTIIwxbcTfM=
  1762. </data>
  1763. <key>Resources/res/reporter.py</key>
  1764. <data>
  1765. 4peysf5i4YGUYYDyXXG+yNfy75A=
  1766. </data>
  1767. <key>Resources/res/reporters.py</key>
  1768. <data>
  1769. Evtdsl1FIYrx7fejdyUbLF5JO+U=
  1770. </data>
  1771. <key>Resources/res/repr.py</key>
  1772. <data>
  1773. nwYodDVmbIMH3Rj2K0G956tupeo=
  1774. </data>
  1775. <key>Resources/res/req_command.py</key>
  1776. <data>
  1777. POBjwz+Fd8fgpajRUDXyXdKqfiE=
  1778. </data>
  1779. <key>Resources/res/req_file.py</key>
  1780. <data>
  1781. VZh1urp4yPPiO8MP1hmlbBeADbE=
  1782. </data>
  1783. <key>Resources/res/req_install.py</key>
  1784. <data>
  1785. uzhxbGqBWlZsAmhxwDLtn65t0yo=
  1786. </data>
  1787. <key>Resources/res/req_set.py</key>
  1788. <data>
  1789. uCiffTUl2/pGler+H1MGq58NeCI=
  1790. </data>
  1791. <key>Resources/res/req_uninstall.py</key>
  1792. <data>
  1793. sVsx1BoV0WW46LTeQCCVISMwikk=
  1794. </data>
  1795. <key>Resources/res/request.py</key>
  1796. <data>
  1797. 23NeXIbKhZsq12C1oG5z223NYzA=
  1798. </data>
  1799. <key>Resources/res/requirements.py</key>
  1800. <data>
  1801. dq+JUVcROKbfzdgMeUSDZ5VyelI=
  1802. </data>
  1803. <key>Resources/res/resolver.py</key>
  1804. <data>
  1805. NzY28ah6jWIKWivw5QDMqGyDAyg=
  1806. </data>
  1807. <key>Resources/res/resolvers.py</key>
  1808. <data>
  1809. gcWLD0LnlaQagy5u3LDvOoZnrz4=
  1810. </data>
  1811. <key>Resources/res/resources.py</key>
  1812. <data>
  1813. y1mJKzJTlmUv8pmL/hLPEklZ9so=
  1814. </data>
  1815. <key>Resources/res/response.py</key>
  1816. <data>
  1817. o7bdIpqjsr4aQUhnOnpo1R6lMCQ=
  1818. </data>
  1819. <key>Resources/res/resultdict.py</key>
  1820. <data>
  1821. e4Os15+XaH6clbwjiuj/jco0ydc=
  1822. </data>
  1823. <key>Resources/res/results.py</key>
  1824. <data>
  1825. voSxtJ44KOw31/Sy/+Uve/yZeBU=
  1826. </data>
  1827. <key>Resources/res/retry.py</key>
  1828. <data>
  1829. vLuikegPy8KHKpZ7jWAxgZ1oIgA=
  1830. </data>
  1831. <key>Resources/res/rtf.py</key>
  1832. <data>
  1833. 5jpQy8zPRc4umv/adswA9nDRVfg=
  1834. </data>
  1835. <key>Resources/res/rule.py</key>
  1836. <data>
  1837. d0mu8JnLQPcJmgCe3wde45NtR1c=
  1838. </data>
  1839. <key>Resources/res/sbcharsetprober.py</key>
  1840. <data>
  1841. dnFxsGGlAESzwH9MUeG60irupdU=
  1842. </data>
  1843. <key>Resources/res/sbcsgroupprober.py</key>
  1844. <data>
  1845. 9+zf3wkezGu2TP78ilhOFqRZntw=
  1846. </data>
  1847. <key>Resources/res/scanner.py</key>
  1848. <data>
  1849. we3IRwdkBneZ1KyX4TvAwIhFZSY=
  1850. </data>
  1851. <key>Resources/res/scheme.py</key>
  1852. <data>
  1853. /GOYGMmKuCGIe9Wulf1J3tLYY0o=
  1854. </data>
  1855. <key>Resources/res/scope.py</key>
  1856. <data>
  1857. WuwFge0cZNSRRtlDAcDgHS7MUAA=
  1858. </data>
  1859. <key>Resources/res/screen.py</key>
  1860. <data>
  1861. TwgC2DkdjB4Dl3aNs4u55Wy6xhM=
  1862. </data>
  1863. <key>Resources/res/scripts.py</key>
  1864. <data>
  1865. wUUik7KxMbMXbYQ46s0yMihnO/Q=
  1866. </data>
  1867. <key>Resources/res/sdist.py</key>
  1868. <data>
  1869. KzfQfKwdjfO7pNchX9Y8TMvJXcI=
  1870. </data>
  1871. <key>Resources/res/search.py</key>
  1872. <data>
  1873. loc3TACl+Fnu0Xc3LIgwEunk+v8=
  1874. </data>
  1875. <key>Resources/res/search_scope.py</key>
  1876. <data>
  1877. bsadcJCyB+WyApiazVgdC4agEY0=
  1878. </data>
  1879. <key>Resources/res/securetransport.py</key>
  1880. <data>
  1881. A99wDCsY5MoHgzWvrbZG8Rd8feg=
  1882. </data>
  1883. <key>Resources/res/segment.py</key>
  1884. <data>
  1885. uSUWnEHwc/aDPPkIgWcYOLbUplM=
  1886. </data>
  1887. <key>Resources/res/selection_prefs.py</key>
  1888. <data>
  1889. ZGJ7n39grdh8/i0rEH0mJICqtE4=
  1890. </data>
  1891. <key>Resources/res/self_outdated_check.py</key>
  1892. <data>
  1893. hVDSxm5aKHTyCQTr6+OZ55EnfzI=
  1894. </data>
  1895. <key>Resources/res/serialize.py</key>
  1896. <data>
  1897. fWY87cxSep3pr0qo7mJJI7W8RwM=
  1898. </data>
  1899. <key>Resources/res/session.py</key>
  1900. <data>
  1901. Easf2w/zoCjxs8g7CDi9qsuhEEM=
  1902. </data>
  1903. <key>Resources/res/sessions.py</key>
  1904. <data>
  1905. RPvjX+lueR207JIErJn8Rh8XgVU=
  1906. </data>
  1907. <key>Resources/res/setuptools_build.py</key>
  1908. <data>
  1909. s7zLSJYAT/eY2hKj2Hl497Yu/EU=
  1910. </data>
  1911. <key>Resources/res/sg-plateConfig.json</key>
  1912. <data>
  1913. NLtqCevNYmZ2d8FzDqEHQqg5qHA=
  1914. </data>
  1915. <key>Resources/res/sg-screwConfig.json</key>
  1916. <data>
  1917. 8ivAKsUhyB/N7qu89Wz0xLwVD9M=
  1918. </data>
  1919. <key>Resources/res/sg-targetConfig.json</key>
  1920. <data>
  1921. f4hedP1TfFjXUf10kAMfb9LIjc4=
  1922. </data>
  1923. <key>Resources/res/sg-目标占位1.png</key>
  1924. <data>
  1925. /gNNb8yvSPn5MZIyqQJ4WNLJDf4=
  1926. </data>
  1927. <key>Resources/res/sg-目标占位2.png</key>
  1928. <data>
  1929. gErbTxevBU9DArNtTafemH4pbrc=
  1930. </data>
  1931. <key>Resources/res/sg-目标容器-1.png</key>
  1932. <data>
  1933. wPoJIc9bjr3ZxU1rteJy8PDswl8=
  1934. </data>
  1935. <key>Resources/res/sg-目标容器-2.png</key>
  1936. <data>
  1937. /BR10kwYKtyn30rX0fxLyCVJ7R4=
  1938. </data>
  1939. <key>Resources/res/sg-目标容器盖子-1.png</key>
  1940. <data>
  1941. F/2ktoMstyXmrTMhThQddRWhnAY=
  1942. </data>
  1943. <key>Resources/res/sg-目标容器盖子-2.png</key>
  1944. <data>
  1945. P4V5q5kDfAwj4IlHkyqpVFJjAS4=
  1946. </data>
  1947. <key>Resources/res/sg_gameui.plist</key>
  1948. <data>
  1949. 4c7UrgPontt214sRdVt+SXTWx4g=
  1950. </data>
  1951. <key>Resources/res/sg_gameui.tps</key>
  1952. <data>
  1953. PYERzEESVnXluQLnd2kU6mSyL+k=
  1954. </data>
  1955. <key>Resources/res/sg_gameui.webp</key>
  1956. <data>
  1957. 1TGjYEjuAANqwk4X9qM13RTuZ0Q=
  1958. </data>
  1959. <key>Resources/res/sg_items.plist</key>
  1960. <data>
  1961. aBAJ2pRkIACGe6r+adZhQQcd3HE=
  1962. </data>
  1963. <key>Resources/res/sg_items.tps</key>
  1964. <data>
  1965. PmKDR6WVVTgQmwCS3jHMAZSMoV4=
  1966. </data>
  1967. <key>Resources/res/sg_items.webp</key>
  1968. <data>
  1969. mVDS2rl6Wpd0mGpQEczi7AKb26Q=
  1970. </data>
  1971. <key>Resources/res/sg_plant0.png</key>
  1972. <data>
  1973. kuuvEdOJljD2ZFhO3ydPwFu4MZQ=
  1974. </data>
  1975. <key>Resources/res/sg_plant1.png</key>
  1976. <data>
  1977. e+kF//fUYwgrDcHRnSBoc8j26Cc=
  1978. </data>
  1979. <key>Resources/res/sg_plant2.png</key>
  1980. <data>
  1981. 5YY+P3uugeMQOf4BbpX5cDAUVaw=
  1982. </data>
  1983. <key>Resources/res/sg_plant3.png</key>
  1984. <data>
  1985. kQAqHMlEiF/G4QK5D7nGl+4BKok=
  1986. </data>
  1987. <key>Resources/res/sg_plant4.png</key>
  1988. <data>
  1989. AoCjsnuOrHn7nx0BleSLb4vBAgw=
  1990. </data>
  1991. <key>Resources/res/sg_plant5.png</key>
  1992. <data>
  1993. Ft6OY4Q4FPFZhOPqElnO/6CRFBw=
  1994. </data>
  1995. <key>Resources/res/sg_screw1.png</key>
  1996. <data>
  1997. 79YQRESc6Q7kxsCqJVyFKvbKqT8=
  1998. </data>
  1999. <key>Resources/res/sg_screw1_1.png</key>
  2000. <data>
  2001. YfnEwlSp2/qz47Ya8CvqZfJr8jc=
  2002. </data>
  2003. <key>Resources/res/sg_screw2.png</key>
  2004. <data>
  2005. +ctGD/RL0tTkywFAh71bScnhAww=
  2006. </data>
  2007. <key>Resources/res/sg_screw2_1.png</key>
  2008. <data>
  2009. ZRWaRcnKYo2rd08kQa3lfFbHfys=
  2010. </data>
  2011. <key>Resources/res/sg_screw3.png</key>
  2012. <data>
  2013. iB1QtKLYq6ghj2gGThy6fZ0aXgA=
  2014. </data>
  2015. <key>Resources/res/sg_screw4.png</key>
  2016. <data>
  2017. 2aYw550r7NzpV7DOXmLGQ+J/ONE=
  2018. </data>
  2019. <key>Resources/res/sg_screw5.png</key>
  2020. <data>
  2021. y+QkKFVsbysJdwMIjH98TvvY89c=
  2022. </data>
  2023. <key>Resources/res/sg_screw6.png</key>
  2024. <data>
  2025. cTZdIrN0lgKtpVp1hjzKg0xs9Y4=
  2026. </data>
  2027. <key>Resources/res/sg_screw7.png</key>
  2028. <data>
  2029. E1FyCF49htndgR5t82XPZ4Y3zvk=
  2030. </data>
  2031. <key>Resources/res/sg_screw8.png</key>
  2032. <data>
  2033. /3xtNbuqbZdeligUr0x9Eja5i0k=
  2034. </data>
  2035. <key>Resources/res/show.py</key>
  2036. <data>
  2037. McjoCnQ4oVKi6s/WSdibaKgH+50=
  2038. </data>
  2039. <key>Resources/res/six.py</key>
  2040. <data>
  2041. zHhbRh2To4EWszV1iTAbog6chFI=
  2042. </data>
  2043. <key>Resources/res/sjisprober.py</key>
  2044. <data>
  2045. N6KQko1YVmAjmzWRCNcOMzD22vQ=
  2046. </data>
  2047. <key>Resources/res/socks.py</key>
  2048. <data>
  2049. O94/0dxIR5tCgzyPfGi59XsSC0Y=
  2050. </data>
  2051. <key>Resources/res/sources.py</key>
  2052. <data>
  2053. o+NsMFbkqbm4WEOMloqzzjavuiY=
  2054. </data>
  2055. <key>Resources/res/specifiers.py</key>
  2056. <data>
  2057. BP/k8cLm2Hlq5kuNPM0bl5HzFEU=
  2058. </data>
  2059. <key>Resources/res/sphinxext.py</key>
  2060. <data>
  2061. M90os+mtEyvdcGH+VOSXTQgiuj4=
  2062. </data>
  2063. <key>Resources/res/spinner.py</key>
  2064. <data>
  2065. WpbgblyuYEvxOj4lnOFTjv+eRkQ=
  2066. </data>
  2067. <key>Resources/res/spinners.py</key>
  2068. <data>
  2069. 7P4lu3/eMUnchfrHH26S+SPFHBc=
  2070. </data>
  2071. <key>Resources/res/ssl_.py</key>
  2072. <data>
  2073. k9BkGWGwHDA8+E5U2LZmM+1BBJI=
  2074. </data>
  2075. <key>Resources/res/ssl_match_hostname.py</key>
  2076. <data>
  2077. 4farFAqlIhGhNtJfeEpHX0dDQmM=
  2078. </data>
  2079. <key>Resources/res/ssltransport.py</key>
  2080. <data>
  2081. eNWekD/s0hGql1rkyNwBsXyPrUQ=
  2082. </data>
  2083. <key>Resources/res/status.py</key>
  2084. <data>
  2085. qL7f+rr2w1Au8pQCM+tQ+EVCBcY=
  2086. </data>
  2087. <key>Resources/res/status_codes.py</key>
  2088. <data>
  2089. Uw0r0o+P5OQM1AM36GY1NH4Vplw=
  2090. </data>
  2091. <key>Resources/res/stop.py</key>
  2092. <data>
  2093. jn3rdPDMM+TMRLWndrL+hEeE1EA=
  2094. </data>
  2095. <key>Resources/res/structs.py</key>
  2096. <data>
  2097. Ntv91HWROFzNEDFIvQJPeh6BxpA=
  2098. </data>
  2099. <key>Resources/res/structures.py</key>
  2100. <data>
  2101. tcLHQLn/fSeoOsTIDjrnQaoztb4=
  2102. </data>
  2103. <key>Resources/res/style.py</key>
  2104. <data>
  2105. FXrw0FSPL0wf3gu6URwT3irrfWE=
  2106. </data>
  2107. <key>Resources/res/styled.py</key>
  2108. <data>
  2109. b9Fwujf4JGsPZLohNXQQRZBEFgw=
  2110. </data>
  2111. <key>Resources/res/subprocess.py</key>
  2112. <data>
  2113. QoZmqd2iOcvD+ynaDjLiw8LeKAs=
  2114. </data>
  2115. <key>Resources/res/subversion.py</key>
  2116. <data>
  2117. PtpLhT7YWyQNQevb0cwkKgECstU=
  2118. </data>
  2119. <key>Resources/res/svg.py</key>
  2120. <data>
  2121. D7OsbvJfg9uYd7W7KWwWFJ8BvF8=
  2122. </data>
  2123. <key>Resources/res/syntax.py</key>
  2124. <data>
  2125. BKSMOdtZjbPQtd3RHpERk/u4ZsY=
  2126. </data>
  2127. <key>Resources/res/t32.exe</key>
  2128. <data>
  2129. xvgDTi6Bg9NdPysDVAUpTuAfonM=
  2130. </data>
  2131. <key>Resources/res/t64-arm.exe</key>
  2132. <data>
  2133. yI+Zu4LLv5aZLDa2H2xhShWrydY=
  2134. </data>
  2135. <key>Resources/res/t64.exe</key>
  2136. <data>
  2137. DQxeOwb1atEqd9pGqz/auBrNpig=
  2138. </data>
  2139. <key>Resources/res/table.py</key>
  2140. <data>
  2141. wjka6yL6/MzJ8+dWruSEdYHofak=
  2142. </data>
  2143. <key>Resources/res/tags.py</key>
  2144. <data>
  2145. Gizs7fJoa13iO+tDWVfZKJS8mQ4=
  2146. </data>
  2147. <key>Resources/res/target_python.py</key>
  2148. <data>
  2149. WTUzkMPaejFqTuIsF8kJjmCKu/g=
  2150. </data>
  2151. <key>Resources/res/temp_dir.py</key>
  2152. <data>
  2153. o3Vo0MkzFgXLTtVNEJPS2iB/COY=
  2154. </data>
  2155. <key>Resources/res/terminal.py</key>
  2156. <data>
  2157. q3oblGet8So02EV3YmegSNN1q6s=
  2158. </data>
  2159. <key>Resources/res/terminal256.py</key>
  2160. <data>
  2161. l1jKDSV5DReP4LnPw/jKAS1GhB4=
  2162. </data>
  2163. <key>Resources/res/terminal_theme.py</key>
  2164. <data>
  2165. AGtVl4GkH395xwrAve2tn2A8TRM=
  2166. </data>
  2167. <key>Resources/res/testing.py</key>
  2168. <data>
  2169. Dyp7qgcCf2jYpQC0GE/lk8Ipm90=
  2170. </data>
  2171. <key>Resources/res/tests.py</key>
  2172. <data>
  2173. dFypvSbMDAmCi+5fIdRh0677lIQ=
  2174. </data>
  2175. <key>Resources/res/text.py</key>
  2176. <data>
  2177. mAYnvK0yyXp2nksQCuJRB4LIHi8=
  2178. </data>
  2179. <key>Resources/res/theme.py</key>
  2180. <data>
  2181. Mol/FAbp4OnY0xBUzES4cSo8YG0=
  2182. </data>
  2183. <key>Resources/res/themes.py</key>
  2184. <data>
  2185. WWKURzjzoIw15RGfV2yF7f+MWMA=
  2186. </data>
  2187. <key>Resources/res/timeout.py</key>
  2188. <data>
  2189. 1/FCfBsxKwkHlzvW9MEuHkBsaCU=
  2190. </data>
  2191. <key>Resources/res/token.py</key>
  2192. <data>
  2193. b0AgFqdNCQuIzJu+4EBfQkQ7/AU=
  2194. </data>
  2195. <key>Resources/res/top_level.txt</key>
  2196. <data>
  2197. 16AxQdXWseiLa1nvCLZoHfISxZk=
  2198. </data>
  2199. <key>Resources/res/tornadoweb.py</key>
  2200. <data>
  2201. sVXzGYHSDfUkbmgtRgVc5MRLJYk=
  2202. </data>
  2203. <key>Resources/res/tp_1_1_1.png</key>
  2204. <data>
  2205. 9wbnq17uWK1k+hEJ8W9HSgt7KWA=
  2206. </data>
  2207. <key>Resources/res/tp_1_1_2.png</key>
  2208. <data>
  2209. 5pqozmW3ZlNqu7vZkAyjgzil/3E=
  2210. </data>
  2211. <key>Resources/res/tp_1_1_3.png</key>
  2212. <data>
  2213. 4HW6Fsujldk4t0pD1nUMFb9WBCo=
  2214. </data>
  2215. <key>Resources/res/tp_1_1_4.png</key>
  2216. <data>
  2217. 7y3WK+ikDHuxk5cN5KOpXDys4b0=
  2218. </data>
  2219. <key>Resources/res/tp_1_2_1.png</key>
  2220. <data>
  2221. X+WIQCUSJAR6cLaF4dvBl1g1Ay0=
  2222. </data>
  2223. <key>Resources/res/tp_1_2_2.png</key>
  2224. <data>
  2225. zD4tVvWx7+Ws6xFFknb9jSaLnMY=
  2226. </data>
  2227. <key>Resources/res/tp_1_2_3.png</key>
  2228. <data>
  2229. yq6X/wpaYV/h1EvM2jen3xbk+VA=
  2230. </data>
  2231. <key>Resources/res/tp_1_3_1.png</key>
  2232. <data>
  2233. a9me29t0kkVBB3gQ/Y2NUL1s4bE=
  2234. </data>
  2235. <key>Resources/res/tp_1_3_10.png</key>
  2236. <data>
  2237. S1wxMptQsk5RLFnSnlWFOP2qxkQ=
  2238. </data>
  2239. <key>Resources/res/tp_1_3_11.png</key>
  2240. <data>
  2241. YpLDac/aGgv3tnq3WX2M3DfRNpg=
  2242. </data>
  2243. <key>Resources/res/tp_1_3_2.png</key>
  2244. <data>
  2245. /w/MafY84ETHKMPIU0uYH/xDM0s=
  2246. </data>
  2247. <key>Resources/res/tp_1_3_3.png</key>
  2248. <data>
  2249. 0w8h0qB8m5KetJOQ48k+FcHLe8s=
  2250. </data>
  2251. <key>Resources/res/tp_1_3_4.png</key>
  2252. <data>
  2253. OPQt4/YpCIK5mYU+tfiLsGoLJ9M=
  2254. </data>
  2255. <key>Resources/res/tp_1_3_5.png</key>
  2256. <data>
  2257. 4iX/HatDb1gNDG/E0H7sVsESRd4=
  2258. </data>
  2259. <key>Resources/res/tp_1_3_6.png</key>
  2260. <data>
  2261. EeE3B6yYYfLWUbKhr1oWoTeSsdY=
  2262. </data>
  2263. <key>Resources/res/tp_1_3_7.png</key>
  2264. <data>
  2265. TafozZJDmrvM5VXmPfU/GSdSvkw=
  2266. </data>
  2267. <key>Resources/res/tp_1_3_8.png</key>
  2268. <data>
  2269. U++FfbR0o6G/6jnNzPKA2jmJz+g=
  2270. </data>
  2271. <key>Resources/res/tp_1_3_9.png</key>
  2272. <data>
  2273. QYqr+RAmVEWjyfjLL1BDXmRtnBQ=
  2274. </data>
  2275. <key>Resources/res/tp_1_4_1.png</key>
  2276. <data>
  2277. bBohVLYPB73BwLXoKg5ZhFahhRg=
  2278. </data>
  2279. <key>Resources/res/tp_1_4_2.png</key>
  2280. <data>
  2281. wfzVrYp8NWVIN3+k3HGORCs7MMY=
  2282. </data>
  2283. <key>Resources/res/tp_1_4_3.png</key>
  2284. <data>
  2285. WrXadTGQBVlQ8FM2Q9MXQCgD4c8=
  2286. </data>
  2287. <key>Resources/res/tp_1_4_4.png</key>
  2288. <data>
  2289. Hnj7dp52U3amJCXrS69LqI9WKXk=
  2290. </data>
  2291. <key>Resources/res/tp_1_5_1.png</key>
  2292. <data>
  2293. lneawsmJ3CQk90lVkdHaIyk/99o=
  2294. </data>
  2295. <key>Resources/res/tp_1_6_1.png</key>
  2296. <data>
  2297. ONjMHZMzz5Do5b5Xu/PEXoKzGAg=
  2298. </data>
  2299. <key>Resources/res/tp_1_6_2.png</key>
  2300. <data>
  2301. 87H5kIRWM1A9s/t9jDyeQne/I0s=
  2302. </data>
  2303. <key>Resources/res/tp_1_6_3.png</key>
  2304. <data>
  2305. JlbZEtFYP0ZWNV5W1gh8fXD5wYo=
  2306. </data>
  2307. <key>Resources/res/tp_1_6_4.png</key>
  2308. <data>
  2309. Rz4x5RYcxBsKoYky8sDrRDCPk1s=
  2310. </data>
  2311. <key>Resources/res/tp_1_6_5.png</key>
  2312. <data>
  2313. xxrEwi7kAaWlrzA7+EzXN8dbou8=
  2314. </data>
  2315. <key>Resources/res/tp_1_6_6.png</key>
  2316. <data>
  2317. ZVGj7jDtt29btk9HquocuQJl3DE=
  2318. </data>
  2319. <key>Resources/res/tp_1_6_7.png</key>
  2320. <data>
  2321. LswV6Y3USsRbbq4YYqdODp2kKf4=
  2322. </data>
  2323. <key>Resources/res/traceback.py</key>
  2324. <data>
  2325. hVsl+6bj1AUd5yYb5YSsGl96IuM=
  2326. </data>
  2327. <key>Resources/res/tree.py</key>
  2328. <data>
  2329. WZotHiPyb4B70C1UZDcEi07FUzk=
  2330. </data>
  2331. <key>Resources/res/typing_extensions.py</key>
  2332. <data>
  2333. ax2ctbDBHLWS3WT2VS/oB75uSr8=
  2334. </data>
  2335. <key>Resources/res/unicode.py</key>
  2336. <data>
  2337. 74l+OmKx2XLh3TUl2t8Ept/nt5E=
  2338. </data>
  2339. <key>Resources/res/uninstall.py</key>
  2340. <data>
  2341. boP9dL1tHWwbZggoqjnEJXtBlQc=
  2342. </data>
  2343. <key>Resources/res/unistring.py</key>
  2344. <data>
  2345. SkqKhRebJ6dLFdcVBzDBDdeJsbc=
  2346. </data>
  2347. <key>Resources/res/universaldetector.py</key>
  2348. <data>
  2349. FP2rZYZ2FRIOvYj6IssNcSoTrvc=
  2350. </data>
  2351. <key>Resources/res/unix.py</key>
  2352. <data>
  2353. End2DluORR9k6/Bv+Xx0OY7i4II=
  2354. </data>
  2355. <key>Resources/res/unpacking.py</key>
  2356. <data>
  2357. l2H2FkFnr2ue9fS9toKZtsSNsnc=
  2358. </data>
  2359. <key>Resources/res/url.py</key>
  2360. <data>
  2361. I9Q2O/dmkTAtyeIWo+Stbe6DnNs=
  2362. </data>
  2363. <key>Resources/res/urls.py</key>
  2364. <data>
  2365. /7Bvznj12j36G/P4tCjdqIKJNoQ=
  2366. </data>
  2367. <key>Resources/res/utf1632prober.py</key>
  2368. <data>
  2369. XrKXIhZ006/j0kdbJrfTa9i/IT8=
  2370. </data>
  2371. <key>Resources/res/utf8prober.py</key>
  2372. <data>
  2373. tutzygx3kn3rKs6c38LrLTqv3Mc=
  2374. </data>
  2375. <key>Resources/res/util.py</key>
  2376. <data>
  2377. 06G16KxmH3QRU7B1fOUJUw9Z3eU=
  2378. </data>
  2379. <key>Resources/res/utils.py</key>
  2380. <data>
  2381. qzK79/fFPDaDnPE035MXlM2ARk0=
  2382. </data>
  2383. <key>Resources/res/uts46data.py</key>
  2384. <data>
  2385. snxLYKJbG0Q86XU+nDvVcv8jz6U=
  2386. </data>
  2387. <key>Resources/res/vendor.txt</key>
  2388. <data>
  2389. 6mWvBIRTo9euETVhJqDwtTiXYiw=
  2390. </data>
  2391. <key>Resources/res/version.py</key>
  2392. <data>
  2393. dYzwGnQZRCmlOseXcyqm6nQeywA=
  2394. </data>
  2395. <key>Resources/res/versioncontrol.py</key>
  2396. <data>
  2397. SzqXUCD5n/sSyzTnTyOBeXR92p8=
  2398. </data>
  2399. <key>Resources/res/virtualenv.py</key>
  2400. <data>
  2401. FMtmqm6nlFtkN2koBGbaD9EP66w=
  2402. </data>
  2403. <key>Resources/res/w32.exe</key>
  2404. <data>
  2405. Oh5OZ0ItndVPfou6K7AUR00vbqA=
  2406. </data>
  2407. <key>Resources/res/w64-arm.exe</key>
  2408. <data>
  2409. 4Nsh4C7qIvDaW0R0XR3QGE3cbr4=
  2410. </data>
  2411. <key>Resources/res/w64.exe</key>
  2412. <data>
  2413. NNPjC8v4dYGQJAm/X2IfSMX8KxA=
  2414. </data>
  2415. <key>Resources/res/wait.py</key>
  2416. <data>
  2417. eUTZvaLoOJxc66WKetcEUypPbdI=
  2418. </data>
  2419. <key>Resources/res/weakref_finalize.py</key>
  2420. <data>
  2421. 0v+23nLxjr5wjSuA8slOXV479Ik=
  2422. </data>
  2423. <key>Resources/res/wheel.py</key>
  2424. <data>
  2425. yLl3NrLnqXlHzEUAbXXLp6phPi0=
  2426. </data>
  2427. <key>Resources/res/wheel_builder.py</key>
  2428. <data>
  2429. ZlzIpkMvV9nC6KReZ6u1WSi1m9c=
  2430. </data>
  2431. <key>Resources/res/wheel_editable.py</key>
  2432. <data>
  2433. HY4lYTSlf5xfp4uziLMbYdLQw84=
  2434. </data>
  2435. <key>Resources/res/wheel_legacy.py</key>
  2436. <data>
  2437. MMNRHr1Z3AU5HVI5RVwS105pe8A=
  2438. </data>
  2439. <key>Resources/res/win32.py</key>
  2440. <data>
  2441. 5io3vVJj7riTcMiWEdrQ7ISQg40=
  2442. </data>
  2443. <key>Resources/res/windows.py</key>
  2444. <data>
  2445. TKOjgCezdYj7GxbDgzs9XlWBz+U=
  2446. </data>
  2447. <key>Resources/res/winterm.py</key>
  2448. <data>
  2449. pI2k+cz5ISiGdvRGJs9r8xPvOkA=
  2450. </data>
  2451. <key>Resources/res/winterm_test.py</key>
  2452. <data>
  2453. k/bxmqFeJL6JZF533JsN+famr04=
  2454. </data>
  2455. <key>Resources/res/workspace.xml</key>
  2456. <data>
  2457. jC5Jiv1sGe6nfAvTOUqCzWsJJUU=
  2458. </data>
  2459. <key>Resources/res/wrapper.py</key>
  2460. <data>
  2461. LrTRfXIqv8l4aComF5wCPdaAQL0=
  2462. </data>
  2463. <key>Resources/res/x_user_defined.py</key>
  2464. <data>
  2465. 57gLJJuKGUsprKo7Nwn2VddaemI=
  2466. </data>
  2467. <key>Resources/res/xmlrpc.py</key>
  2468. <data>
  2469. S4QA98HUzyPgW7rDbO0GH9k71gE=
  2470. </data>
  2471. <key>Resources/res/关卡1 old.json</key>
  2472. <data>
  2473. YIHJAf/7TEwBkCtDCfXIqxGjhrI=
  2474. </data>
  2475. <key>Resources/res/关卡1-old.red</key>
  2476. <data>
  2477. T5NqUVm1zYaFhCIh0gJoqy8op6Y=
  2478. </data>
  2479. <key>Resources/res/关卡1-old.redream</key>
  2480. <data>
  2481. iO7cjj9TK76v9CkwaI1oKJaw0hI=
  2482. </data>
  2483. <key>Resources/res/关卡1.json</key>
  2484. <data>
  2485. LUex9Kj+FHhMvQiKd0Q7y+Rk4FA=
  2486. </data>
  2487. <key>Resources/res/关卡1.red</key>
  2488. <data>
  2489. RQ5nyl0lrhznF8Hb0bxJw4MMRrs=
  2490. </data>
  2491. <key>Resources/res/关卡1.redream</key>
  2492. <data>
  2493. 7EcNl73+Dm2OjRYheab58LHuFI4=
  2494. </data>
  2495. <key>Resources/res/关卡10.json</key>
  2496. <data>
  2497. Pu0mnxXjPEwErI4nmIXheML0j20=
  2498. </data>
  2499. <key>Resources/res/关卡10.red</key>
  2500. <data>
  2501. NweSbPbp59x7Xdnda+G4OvQgyrI=
  2502. </data>
  2503. <key>Resources/res/关卡10.redream</key>
  2504. <data>
  2505. j+vdKIG3tB1ZKJ0KUEYRp6cCDy0=
  2506. </data>
  2507. <key>Resources/res/关卡1_1.json</key>
  2508. <data>
  2509. CLcXqMa3zYbKwwlAhUrRHaEv3cs=
  2510. </data>
  2511. <key>Resources/res/关卡1_2.json</key>
  2512. <data>
  2513. f5AdOutwvR+QB/1jALzDB4kgEKs=
  2514. </data>
  2515. <key>Resources/res/关卡1test.redream</key>
  2516. <data>
  2517. Q/gxv3HbDAbs/pz/gA7RG9+/24w=
  2518. </data>
  2519. <key>Resources/res/关卡1testConfig.json</key>
  2520. <data>
  2521. 4N9oEJNEmQhYO/Xxr+9wRfLQXoo=
  2522. </data>
  2523. <key>Resources/res/关卡2 old.json</key>
  2524. <data>
  2525. yWWqq/D1sme27Do2bQ4uU/P+biw=
  2526. </data>
  2527. <key>Resources/res/关卡2.json</key>
  2528. <data>
  2529. o3Xn2YE3A3y1NpE0ZN+C+7zsaqA=
  2530. </data>
  2531. <key>Resources/res/关卡2.red</key>
  2532. <data>
  2533. EFatAqBP/8le2OTL7PK8iufhX54=
  2534. </data>
  2535. <key>Resources/res/关卡2.redream</key>
  2536. <data>
  2537. Xgu9YrgKg2pZVEws+lBbnFpS45Y=
  2538. </data>
  2539. <key>Resources/res/关卡3.json</key>
  2540. <data>
  2541. qm0ftDDnbhg6Av+eOTgRQFrBs3s=
  2542. </data>
  2543. <key>Resources/res/关卡3.red</key>
  2544. <data>
  2545. gz2i9xMKKdRt+QOsolDhG/S/8ds=
  2546. </data>
  2547. <key>Resources/res/关卡3.redream</key>
  2548. <data>
  2549. N4BK8p0FC0Ew7IDjChpB/cwCDBQ=
  2550. </data>
  2551. <key>Resources/res/关卡4.json</key>
  2552. <data>
  2553. wv3OvwUDBWEpGqATBt+8qyU96y8=
  2554. </data>
  2555. <key>Resources/res/关卡4.red</key>
  2556. <data>
  2557. ds7JSctODnqJo4GMFPu6EvcMlgM=
  2558. </data>
  2559. <key>Resources/res/关卡4.redream</key>
  2560. <data>
  2561. x1iFqZg1KIcOyc9m4Xn3HyZz20E=
  2562. </data>
  2563. <key>Resources/res/关卡5.json</key>
  2564. <data>
  2565. +q/YvWUiCypc7DRTpuAQ7DTpddU=
  2566. </data>
  2567. <key>Resources/res/关卡5.red</key>
  2568. <data>
  2569. EWDllILhJasQHAgasBHwxw55Ci0=
  2570. </data>
  2571. <key>Resources/res/关卡5.redream</key>
  2572. <data>
  2573. 3kTwetVUqpE4I0VIHwTg9b/AYsA=
  2574. </data>
  2575. <key>Resources/res/关卡6.json</key>
  2576. <data>
  2577. aMMZyyrDSYOLoVKnGnMhbsiyj7U=
  2578. </data>
  2579. <key>Resources/res/关卡6.red</key>
  2580. <data>
  2581. yCpaS0IoSgzi0niWYDlMZ4ikxJc=
  2582. </data>
  2583. <key>Resources/res/关卡6.redream</key>
  2584. <data>
  2585. G5a+jsqTVqftnisa3bqswU8d2Tw=
  2586. </data>
  2587. <key>Resources/res/关卡7.json</key>
  2588. <data>
  2589. AKfmFP2lt0K33tqcQ/IDNZHyerg=
  2590. </data>
  2591. <key>Resources/res/关卡7.red</key>
  2592. <data>
  2593. GAfLBvK9M8zlLnPFx0UK7BU0uqA=
  2594. </data>
  2595. <key>Resources/res/关卡7.redream</key>
  2596. <data>
  2597. uuO7Mbj6OF1B/ORiCv4/Cz0+Rms=
  2598. </data>
  2599. <key>Resources/res/关卡8.json</key>
  2600. <data>
  2601. +NfeVvvAoH69TCK2OjoB9Tr1iG0=
  2602. </data>
  2603. <key>Resources/res/关卡8.red</key>
  2604. <data>
  2605. CUDXpX5VJYrfDNPJXx3ULH1VjBo=
  2606. </data>
  2607. <key>Resources/res/关卡8.redream</key>
  2608. <data>
  2609. 4Ayz+MuN9T0p8K+g60pYzW1OGWA=
  2610. </data>
  2611. <key>Resources/res/关卡9.json</key>
  2612. <data>
  2613. GrF5q97A+pxfnygkNBKiwEEuW2o=
  2614. </data>
  2615. <key>Resources/res/关卡9.red</key>
  2616. <data>
  2617. pRXxMedWOCN4fWHdtc0x0HG4V/w=
  2618. </data>
  2619. <key>Resources/res/关卡9.redream</key>
  2620. <data>
  2621. XqMDhNBwAF5ManODJ7YUHMjbRSA=
  2622. </data>
  2623. <key>Resources/res/新版关卡.red转化为json.iml</key>
  2624. <data>
  2625. JfVCxSsSFRzVswns3V//eI/UlC0=
  2626. </data>
  2627. <key>Resources/res/星星1.png</key>
  2628. <data>
  2629. EzHg9x397nj7dxVhKBsknxyWh1M=
  2630. </data>
  2631. <key>Resources/res/星星2.png</key>
  2632. <data>
  2633. BUOaur2VmkeSRxId043bB1kp0TQ=
  2634. </data>
  2635. <key>Resources/res/星星3.png</key>
  2636. <data>
  2637. Dmk6MeJJarFkXFUbz/ell2vg/cI=
  2638. </data>
  2639. <key>Resources/res/星星4.png</key>
  2640. <data>
  2641. lIGOoB6FGhNpZT2DvOZgZGGNCKQ=
  2642. </data>
  2643. <key>Resources/res/星星5.png</key>
  2644. <data>
  2645. ON2HWnjD3ghTBkiLIJdf/IHMx8Y=
  2646. </data>
  2647. <key>Resources/res/模板1.red</key>
  2648. <data>
  2649. QXgM10r6AwxgQt/t9AihwCNpHM0=
  2650. </data>
  2651. <key>Resources/res/模板1.redream</key>
  2652. <data>
  2653. SSRa17M7KUPReMcsumisKksPVMY=
  2654. </data>
  2655. <key>Resources/res/模板10.red</key>
  2656. <data>
  2657. gESXqDSQMWDdS4hnwcsO5lNp804=
  2658. </data>
  2659. <key>Resources/res/模板10.redream</key>
  2660. <data>
  2661. QJQXprkSOSppIXzdkyH71m4rSb8=
  2662. </data>
  2663. <key>Resources/res/模板11.red</key>
  2664. <data>
  2665. QXgM10r6AwxgQt/t9AihwCNpHM0=
  2666. </data>
  2667. <key>Resources/res/模板11.redream</key>
  2668. <data>
  2669. SSRa17M7KUPReMcsumisKksPVMY=
  2670. </data>
  2671. <key>Resources/res/模板2.red</key>
  2672. <data>
  2673. D3LoGFiEIypAOl7C5e2vNnn5T2E=
  2674. </data>
  2675. <key>Resources/res/模板2.redream</key>
  2676. <data>
  2677. 0eVqLNxldjR2EwKdz0MVPDJnp+s=
  2678. </data>
  2679. <key>Resources/res/模板3.red</key>
  2680. <data>
  2681. JJ67bwl+wz8mfV4CUzLlj4xYdS4=
  2682. </data>
  2683. <key>Resources/res/模板3.redream</key>
  2684. <data>
  2685. RSXovVFpFVoApS8fr+NBWG88T5o=
  2686. </data>
  2687. <key>Resources/res/模板4.red</key>
  2688. <data>
  2689. 8OPyxJTF6FXeU+uzOBT4Qy1pyNw=
  2690. </data>
  2691. <key>Resources/res/模板4.redream</key>
  2692. <data>
  2693. mWV3B63jcIfSYYqiq5l6NoN4IVs=
  2694. </data>
  2695. <key>Resources/res/模板5.red</key>
  2696. <data>
  2697. gjxrBKF3PhxMIdAaIK33n83Tw+g=
  2698. </data>
  2699. <key>Resources/res/模板5.redream</key>
  2700. <data>
  2701. JgD77HxidkH8/V78IWkuu7PrOgo=
  2702. </data>
  2703. <key>Resources/res/模板6.red</key>
  2704. <data>
  2705. F7BgEupOCK3prazLYPm4AeMkVX4=
  2706. </data>
  2707. <key>Resources/res/模板6.redream</key>
  2708. <data>
  2709. LDAByuFa8d45kr0AOsIRkaY8C+A=
  2710. </data>
  2711. <key>Resources/res/模板7.red</key>
  2712. <data>
  2713. nJEuJvhlXcIn+n60y4XPhqHq8rE=
  2714. </data>
  2715. <key>Resources/res/模板7.redream</key>
  2716. <data>
  2717. th/an0jO9YPt2PKaH80o+dKFBjM=
  2718. </data>
  2719. <key>Resources/res/模板8.red</key>
  2720. <data>
  2721. xOUUV9WINDl5BJqutR8nJ1CQk/s=
  2722. </data>
  2723. <key>Resources/res/模板8.redream</key>
  2724. <data>
  2725. n+2slmWmOybYsVK+cctx0nJRWic=
  2726. </data>
  2727. <key>Resources/res/模板9.red</key>
  2728. <data>
  2729. fesAiH9LNMndK8H+Wrc7aJhqHSk=
  2730. </data>
  2731. <key>Resources/res/模板9.redream</key>
  2732. <data>
  2733. RQNKLpYNgeLk8Y/MHJM2D+Ih3rQ=
  2734. </data>
  2735. <key>Resources/scripts/ccb_redirect.py</key>
  2736. <data>
  2737. f1AJX4CPn55JfDDARR6m7g1fx78=
  2738. </data>
  2739. <key>Resources/scripts/copy_2_android.py</key>
  2740. <data>
  2741. 5eXy2VGSJae4NovB53W1/dFnB3k=
  2742. </data>
  2743. <key>Resources/scripts/copy_2_ios.py</key>
  2744. <data>
  2745. TuoGMp3fIiRK0aFrnG9n3Q71Hpg=
  2746. </data>
  2747. <key>Resources/scripts/copy_2_mac.py</key>
  2748. <data>
  2749. yQ3QIRiZ4Q1cMG8Mix37KQ8vbXs=
  2750. </data>
  2751. <key>Resources/scripts/export_small_texture.py</key>
  2752. <data>
  2753. 3iaKdtu1eOvz9PdlGMshYCzp6Yo=
  2754. </data>
  2755. <key>Resources/scripts/libs/__init__.py</key>
  2756. <data>
  2757. 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
  2758. </data>
  2759. <key>Resources/scripts/libs/__init__.pyc</key>
  2760. <data>
  2761. gZH8gIBLRjnsu3Q+X1Fn6LQVbh0=
  2762. </data>
  2763. <key>Resources/scripts/libs/__pycache__/__init__.cpython-312.pyc</key>
  2764. <data>
  2765. X7p/z/fqx8yqWW4y6iQIobOyrSM=
  2766. </data>
  2767. <key>Resources/scripts/libs/__pycache__/__init__.cpython-37.pyc</key>
  2768. <data>
  2769. pz7DwEysqC0xR9FOqFj55cgKAOo=
  2770. </data>
  2771. <key>Resources/scripts/libs/__pycache__/file_utils.cpython-312.pyc</key>
  2772. <data>
  2773. YG5QeJJmLDmnczCDHIjJMjlitWo=
  2774. </data>
  2775. <key>Resources/scripts/libs/__pycache__/file_utils.cpython-37.pyc</key>
  2776. <data>
  2777. QgXr5DyJr7jqddk5qTN2PhrkA7I=
  2778. </data>
  2779. <key>Resources/scripts/libs/biplist/__init__.py</key>
  2780. <data>
  2781. FEJNJ8F/n6LPZbhoj4Qau7mWpMQ=
  2782. </data>
  2783. <key>Resources/scripts/libs/file_utils.py</key>
  2784. <data>
  2785. uJGPOvGR0AdwXnec4yIKRa0y8A4=
  2786. </data>
  2787. <key>Resources/scripts/libs/file_utils.pyc</key>
  2788. <data>
  2789. qQqWmZC7fEh8MFh9xhAuMxMnn8o=
  2790. </data>
  2791. <key>Resources/scripts/重定位CCB资源.command</key>
  2792. <data>
  2793. 9MxKF611HgIqMCNY44GQLmWsmKY=
  2794. </data>
  2795. </dict>
  2796. <key>files2</key>
  2797. <dict>
  2798. <key>Resources/AppIcon.icns</key>
  2799. <dict>
  2800. <key>hash2</key>
  2801. <data>
  2802. F+QmFiRTCNMGp3PyISYqq0cZar1Vki81No9V9Otij3o=
  2803. </data>
  2804. </dict>
  2805. <key>Resources/Assets.car</key>
  2806. <dict>
  2807. <key>hash2</key>
  2808. <data>
  2809. 08TMYqI3Xt4OH1zWsU6sbgQthpZPG5ta0XzbtH668BI=
  2810. </data>
  2811. </dict>
  2812. <key>Resources/Icon.icns</key>
  2813. <dict>
  2814. <key>hash2</key>
  2815. <data>
  2816. 3g07OdrwFJQetSWUWT2JsbqQqAiLaT3ndddnAj0cpHI=
  2817. </data>
  2818. </dict>
  2819. <key>Resources/README.md</key>
  2820. <dict>
  2821. <key>hash2</key>
  2822. <data>
  2823. xlFzBmZ2c8ayy68R2mPrThq0/aXbGBKMu6yKcsT4/WI=
  2824. </data>
  2825. </dict>
  2826. <key>Resources/res/AUTHORS.txt</key>
  2827. <dict>
  2828. <key>hash2</key>
  2829. <data>
  2830. Pd/qYtjluu4WDft2A179dPtIvwYVBNtDfccCitVRMQM=
  2831. </data>
  2832. </dict>
  2833. <key>Resources/res/ConvertAllLevelConfigs.py</key>
  2834. <dict>
  2835. <key>hash2</key>
  2836. <data>
  2837. Fv0Dm1zjQt7/iaIU1kqWkC+lyavPOiv7hz3kzGocl3M=
  2838. </data>
  2839. </dict>
  2840. <key>Resources/res/ConvertOneLevelConfig.py</key>
  2841. <dict>
  2842. <key>hash2</key>
  2843. <data>
  2844. HKVgHGnmppPbXHuGFDC2Z7kgvlAQ5qVXl+oRDiC3K70=
  2845. </data>
  2846. </dict>
  2847. <key>Resources/res/FileUtils.cpython-312.pyc</key>
  2848. <dict>
  2849. <key>hash2</key>
  2850. <data>
  2851. F8LhXqffASWRcaDI6ckiyXT+h4oT57JyIiYCd/O0lFA=
  2852. </data>
  2853. </dict>
  2854. <key>Resources/res/FileUtils.py</key>
  2855. <dict>
  2856. <key>hash2</key>
  2857. <data>
  2858. TQiTbtD/WmLKOUx1ahZH93HRvtw6SaYQpSytl/Mj5Ko=
  2859. </data>
  2860. </dict>
  2861. <key>Resources/res/INSTALLER</key>
  2862. <dict>
  2863. <key>hash2</key>
  2864. <data>
  2865. zuuue4knoyJ+UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg=
  2866. </data>
  2867. </dict>
  2868. <key>Resources/res/LICENSE.txt</key>
  2869. <dict>
  2870. <key>hash2</key>
  2871. <data>
  2872. Y0MApmnUmurmWxLGxIySTFGkzfPR/whtw0VtyLyqIQQ=
  2873. </data>
  2874. </dict>
  2875. <key>Resources/res/METADATA</key>
  2876. <dict>
  2877. <key>hash2</key>
  2878. <data>
  2879. yHPLQvsD1b6f+zdCQWMibZXbsAjs886JMSh3C0oxRhQ=
  2880. </data>
  2881. </dict>
  2882. <key>Resources/res/README.md</key>
  2883. <dict>
  2884. <key>hash2</key>
  2885. <data>
  2886. jFIhkjaxsWLqAmE04bNIhB7c6g7CM+ZT+Cp8J9o3j1Q=
  2887. </data>
  2888. </dict>
  2889. <key>Resources/res/RECORD</key>
  2890. <dict>
  2891. <key>hash2</key>
  2892. <data>
  2893. jJThkSqbg8ta3kw0CamvFQBYHDbKuljTKHM4H0mCx5k=
  2894. </data>
  2895. </dict>
  2896. <key>Resources/res/RedHelper.cpython-312.pyc</key>
  2897. <dict>
  2898. <key>hash2</key>
  2899. <data>
  2900. zWEwE83vy9UCksHkffJFP3CV1qWvgoZTrYJ8xVcYRN4=
  2901. </data>
  2902. </dict>
  2903. <key>Resources/res/RedHelper.py</key>
  2904. <dict>
  2905. <key>hash2</key>
  2906. <data>
  2907. BHI9TNm3a8+jL5LXWINpmFWNmQyPLjdQK2SeiL6WSus=
  2908. </data>
  2909. </dict>
  2910. <key>Resources/res/SG-盘子1.red</key>
  2911. <dict>
  2912. <key>hash2</key>
  2913. <data>
  2914. f2YBhIR3LcAhZty4eyfyeleBUPXYRAAd+CfhpeObtz8=
  2915. </data>
  2916. </dict>
  2917. <key>Resources/res/SG-盘子1.redream</key>
  2918. <dict>
  2919. <key>hash2</key>
  2920. <data>
  2921. UjZg1qsirBjFvI9+pGhyO5HBDH9qrIPKj//vaz+i3oM=
  2922. </data>
  2923. </dict>
  2924. <key>Resources/res/SG-盘子10.red</key>
  2925. <dict>
  2926. <key>hash2</key>
  2927. <data>
  2928. Izs5vbiGX3cXG9IZBEVIbBImUDxegqlJ/7cKokgK7FQ=
  2929. </data>
  2930. </dict>
  2931. <key>Resources/res/SG-盘子10.redream</key>
  2932. <dict>
  2933. <key>hash2</key>
  2934. <data>
  2935. HS3GFmUcGs5kijISTDvH74RVn7a8jQWfYAMcfyK0uL8=
  2936. </data>
  2937. </dict>
  2938. <key>Resources/res/SG-盘子10情况.redream</key>
  2939. <dict>
  2940. <key>hash2</key>
  2941. <data>
  2942. N7hl+giGtMw+URzqevlyVr1j+FnO8RxZxD+A9b1CNlQ=
  2943. </data>
  2944. </dict>
  2945. <key>Resources/res/SG-盘子11.red</key>
  2946. <dict>
  2947. <key>hash2</key>
  2948. <data>
  2949. jnLahST6AsQqWgI8x9uYe2Qvv7SR7nxl3mwI6hG6I2Q=
  2950. </data>
  2951. </dict>
  2952. <key>Resources/res/SG-盘子11.redream</key>
  2953. <dict>
  2954. <key>hash2</key>
  2955. <data>
  2956. IngAdND9rhrG4wZPfdnE9pHJrCrXPNWtRJTJNj+dYhc=
  2957. </data>
  2958. </dict>
  2959. <key>Resources/res/SG-盘子11情况.redream</key>
  2960. <dict>
  2961. <key>hash2</key>
  2962. <data>
  2963. tdc9BtaocaVPPMj8XdGnaJeJJ+CDTSquU4Wf6dgb33s=
  2964. </data>
  2965. </dict>
  2966. <key>Resources/res/SG-盘子12.red</key>
  2967. <dict>
  2968. <key>hash2</key>
  2969. <data>
  2970. 3mCZjkKv3RktFlH31eQm78Q1BDFPSxDMDed5x1PLYLM=
  2971. </data>
  2972. </dict>
  2973. <key>Resources/res/SG-盘子12.redream</key>
  2974. <dict>
  2975. <key>hash2</key>
  2976. <data>
  2977. Basz6dIKC2zPnB9VS0LAUPXt4WNrtDgbeReTZKlrQS0=
  2978. </data>
  2979. </dict>
  2980. <key>Resources/res/SG-盘子12情况.redream</key>
  2981. <dict>
  2982. <key>hash2</key>
  2983. <data>
  2984. zkRqFqBZo0HnJ4Am2AjAv4tTK1q/5kCxWcyn5xdFuDk=
  2985. </data>
  2986. </dict>
  2987. <key>Resources/res/SG-盘子13.red</key>
  2988. <dict>
  2989. <key>hash2</key>
  2990. <data>
  2991. xNFzAIuiZp/hPKZu5/ZazfbtkzrQdvTCLuFwdqeGIkg=
  2992. </data>
  2993. </dict>
  2994. <key>Resources/res/SG-盘子13.redream</key>
  2995. <dict>
  2996. <key>hash2</key>
  2997. <data>
  2998. L6WG/bwk3hY7lCk1ODjb1AMKlGaoq7Z6Jg7Kysuv2Do=
  2999. </data>
  3000. </dict>
  3001. <key>Resources/res/SG-盘子13情况.redream</key>
  3002. <dict>
  3003. <key>hash2</key>
  3004. <data>
  3005. eA/GISa91jFybneP8rJ0u/EXqQ2mEXH3RinVz8sUpjs=
  3006. </data>
  3007. </dict>
  3008. <key>Resources/res/SG-盘子14.red</key>
  3009. <dict>
  3010. <key>hash2</key>
  3011. <data>
  3012. 9BatxfH4t+oK/NBM/0nE9NxgyBVtzIjVtUxDtguvZ74=
  3013. </data>
  3014. </dict>
  3015. <key>Resources/res/SG-盘子14.redream</key>
  3016. <dict>
  3017. <key>hash2</key>
  3018. <data>
  3019. 4Yf5dr2PUsjTbFTaEYXj4cNu08tUnjFXltvEbPxxrp0=
  3020. </data>
  3021. </dict>
  3022. <key>Resources/res/SG-盘子14情况.redream</key>
  3023. <dict>
  3024. <key>hash2</key>
  3025. <data>
  3026. zoYKOOI4CfRGCHD3Lyr8XtPpSDKI98VL5x1oQw1Nv/c=
  3027. </data>
  3028. </dict>
  3029. <key>Resources/res/SG-盘子15.red</key>
  3030. <dict>
  3031. <key>hash2</key>
  3032. <data>
  3033. N+ccVqpLscWvnCX2n6n64vj89nDrZW0zvG4FsPQH7MM=
  3034. </data>
  3035. </dict>
  3036. <key>Resources/res/SG-盘子15.redream</key>
  3037. <dict>
  3038. <key>hash2</key>
  3039. <data>
  3040. EvLNNJEdxvscMvLl/vgcx7jpdVOlFSHeosRy08bvt5g=
  3041. </data>
  3042. </dict>
  3043. <key>Resources/res/SG-盘子15情况.redream</key>
  3044. <dict>
  3045. <key>hash2</key>
  3046. <data>
  3047. P1qyvOWP/RNDo2a+R2RXBz6qBF2F8e0qeMrYzf9EMxQ=
  3048. </data>
  3049. </dict>
  3050. <key>Resources/res/SG-盘子16.red</key>
  3051. <dict>
  3052. <key>hash2</key>
  3053. <data>
  3054. iPhq6bibueAmo92HbxU9aD/SsOY7ZGpr3Pe/85eVj9w=
  3055. </data>
  3056. </dict>
  3057. <key>Resources/res/SG-盘子16.redream</key>
  3058. <dict>
  3059. <key>hash2</key>
  3060. <data>
  3061. tsuDn0/g+GQcxq2UPLGX5Bek2Sdhj9SKqudNNUDE42w=
  3062. </data>
  3063. </dict>
  3064. <key>Resources/res/SG-盘子16情况.redream</key>
  3065. <dict>
  3066. <key>hash2</key>
  3067. <data>
  3068. yJMDt2JYGbAoPjvXqlkpYVXd6m7HBYye3Lp5Wmsk96A=
  3069. </data>
  3070. </dict>
  3071. <key>Resources/res/SG-盘子17.red</key>
  3072. <dict>
  3073. <key>hash2</key>
  3074. <data>
  3075. m5Uw2O45CxAKe2ENZzLEObxSznWdNhPWuZrld61jRHU=
  3076. </data>
  3077. </dict>
  3078. <key>Resources/res/SG-盘子17.redream</key>
  3079. <dict>
  3080. <key>hash2</key>
  3081. <data>
  3082. CmJG2wpCDleB71V+ITfE0eVPPgoGp6Y+8wPPLvbkIlg=
  3083. </data>
  3084. </dict>
  3085. <key>Resources/res/SG-盘子17情况.redream</key>
  3086. <dict>
  3087. <key>hash2</key>
  3088. <data>
  3089. Sh0/aw9cd/DUcXMeaTK3qQyM+0E+x+Xb0jbM9rwCcHc=
  3090. </data>
  3091. </dict>
  3092. <key>Resources/res/SG-盘子18.red</key>
  3093. <dict>
  3094. <key>hash2</key>
  3095. <data>
  3096. 7M/fDiVPvx8VEBhRMAQ7fRDb3xLiqO+jqxieyBPYU/4=
  3097. </data>
  3098. </dict>
  3099. <key>Resources/res/SG-盘子18.redream</key>
  3100. <dict>
  3101. <key>hash2</key>
  3102. <data>
  3103. VAgeNfWoJVJVbMP/uXfg5Wkqv/RWSxlSQBKZjOn4ut0=
  3104. </data>
  3105. </dict>
  3106. <key>Resources/res/SG-盘子18情况.redream</key>
  3107. <dict>
  3108. <key>hash2</key>
  3109. <data>
  3110. XKIfBNfy3o90ObPY9EhpulEhM0M5sJOZ032U1Vaa7ZM=
  3111. </data>
  3112. </dict>
  3113. <key>Resources/res/SG-盘子19.red</key>
  3114. <dict>
  3115. <key>hash2</key>
  3116. <data>
  3117. 9X6yql/reUvxZTffwbl/AL80ZsC4FPkH9MDhA1ei350=
  3118. </data>
  3119. </dict>
  3120. <key>Resources/res/SG-盘子19.redream</key>
  3121. <dict>
  3122. <key>hash2</key>
  3123. <data>
  3124. Tz1XkdhdzGjcPI8Gcv83h57jCdav5EK3yqKIf9rIXzw=
  3125. </data>
  3126. </dict>
  3127. <key>Resources/res/SG-盘子19情况.redream</key>
  3128. <dict>
  3129. <key>hash2</key>
  3130. <data>
  3131. lQAqV93QveDHB7DaxU3H+NQl6zVrglL4+ht2Swxfwwg=
  3132. </data>
  3133. </dict>
  3134. <key>Resources/res/SG-盘子1情况.redream</key>
  3135. <dict>
  3136. <key>hash2</key>
  3137. <data>
  3138. 9PuSt+uOE9DpHBXjND3hMN/5zNawP7kOoCCTrjAo6+0=
  3139. </data>
  3140. </dict>
  3141. <key>Resources/res/SG-盘子2.red</key>
  3142. <dict>
  3143. <key>hash2</key>
  3144. <data>
  3145. dclAGEz3VNgdxa6WrFL34NmHjcoRRRJxsoqQ3TVwYco=
  3146. </data>
  3147. </dict>
  3148. <key>Resources/res/SG-盘子2.redream</key>
  3149. <dict>
  3150. <key>hash2</key>
  3151. <data>
  3152. Z9IGl057BoLvCIH6yQYZ7zEX5JMp3qDtykWeEnj3EFA=
  3153. </data>
  3154. </dict>
  3155. <key>Resources/res/SG-盘子20.red</key>
  3156. <dict>
  3157. <key>hash2</key>
  3158. <data>
  3159. eHurYSYKYwnAboeB1hWQVAsllqS4ukX10+7uRLX7BJE=
  3160. </data>
  3161. </dict>
  3162. <key>Resources/res/SG-盘子20.redream</key>
  3163. <dict>
  3164. <key>hash2</key>
  3165. <data>
  3166. dgRWDhFXKt9TmNA5RhWQ7G+CEMx8YSuHQ2mTt7VvGeM=
  3167. </data>
  3168. </dict>
  3169. <key>Resources/res/SG-盘子20情况.redream</key>
  3170. <dict>
  3171. <key>hash2</key>
  3172. <data>
  3173. 6P2vFDh4PlVTJSY5idckSTBW2U8qI6IsrMqxk11qa04=
  3174. </data>
  3175. </dict>
  3176. <key>Resources/res/SG-盘子21.red</key>
  3177. <dict>
  3178. <key>hash2</key>
  3179. <data>
  3180. LaCUtxkp2x2bevRhBANFjpxWUs3DDeSW5mqfuM35UR0=
  3181. </data>
  3182. </dict>
  3183. <key>Resources/res/SG-盘子21.redream</key>
  3184. <dict>
  3185. <key>hash2</key>
  3186. <data>
  3187. K33cqzL5Kq5NEXHrttl0xkPy1gYXsCunK+zJ1TsEed0=
  3188. </data>
  3189. </dict>
  3190. <key>Resources/res/SG-盘子21情况.redream</key>
  3191. <dict>
  3192. <key>hash2</key>
  3193. <data>
  3194. wnUvSK+77x9ema8aBh3XRvl/U9s4KjY2ZaE74/UJVDk=
  3195. </data>
  3196. </dict>
  3197. <key>Resources/res/SG-盘子22.red</key>
  3198. <dict>
  3199. <key>hash2</key>
  3200. <data>
  3201. zWDKwrd36HjgthDIz3P/WbeNdCN4KgsBtPBze5YKfTI=
  3202. </data>
  3203. </dict>
  3204. <key>Resources/res/SG-盘子22.redream</key>
  3205. <dict>
  3206. <key>hash2</key>
  3207. <data>
  3208. UNFDwnUhM1z1RasBJjm2Fji7pedw3Rye0ntds3HMaus=
  3209. </data>
  3210. </dict>
  3211. <key>Resources/res/SG-盘子22情况.redream</key>
  3212. <dict>
  3213. <key>hash2</key>
  3214. <data>
  3215. iYGi5lQLHd96pA4tE9LzBg6FLoqdCh9l6Uz6pwcAzSk=
  3216. </data>
  3217. </dict>
  3218. <key>Resources/res/SG-盘子23.red</key>
  3219. <dict>
  3220. <key>hash2</key>
  3221. <data>
  3222. D0kTNv/8UOzciP8111YD3KHcrIyRspTwwCdxT0ghotU=
  3223. </data>
  3224. </dict>
  3225. <key>Resources/res/SG-盘子23.redream</key>
  3226. <dict>
  3227. <key>hash2</key>
  3228. <data>
  3229. Z5rhYyyYtdg5H64ud3ns6CvtOYeEJn986MnCyGAuknE=
  3230. </data>
  3231. </dict>
  3232. <key>Resources/res/SG-盘子23情况.redream</key>
  3233. <dict>
  3234. <key>hash2</key>
  3235. <data>
  3236. BpGxEM5yq+hGxxk1bgchyi5ZM7NN0qYfUDx5wYW09ME=
  3237. </data>
  3238. </dict>
  3239. <key>Resources/res/SG-盘子24.red</key>
  3240. <dict>
  3241. <key>hash2</key>
  3242. <data>
  3243. JlcO/e4rCTo8qD7kQEg/dc3LXqK6zmSEKr7bGCknx1c=
  3244. </data>
  3245. </dict>
  3246. <key>Resources/res/SG-盘子24.redream</key>
  3247. <dict>
  3248. <key>hash2</key>
  3249. <data>
  3250. H/jkVxS0nY8BLbLuRhKF1vJjdhbPkVCeQr80CW5Zggw=
  3251. </data>
  3252. </dict>
  3253. <key>Resources/res/SG-盘子24情况.redream</key>
  3254. <dict>
  3255. <key>hash2</key>
  3256. <data>
  3257. ULGo4lhNcT/woPwHTtDvxhWjEwW3zvR8kqiLyLO2O7U=
  3258. </data>
  3259. </dict>
  3260. <key>Resources/res/SG-盘子25.red</key>
  3261. <dict>
  3262. <key>hash2</key>
  3263. <data>
  3264. ZJ67NBMIT8ror+mz4vUTdldNdcg/UbK8mgSqQ97WfmQ=
  3265. </data>
  3266. </dict>
  3267. <key>Resources/res/SG-盘子25.redream</key>
  3268. <dict>
  3269. <key>hash2</key>
  3270. <data>
  3271. KAAJ2T4uacqEuHjS7tsQrbEe5lOyRxdV63x7ubmPdzw=
  3272. </data>
  3273. </dict>
  3274. <key>Resources/res/SG-盘子25情况.redream</key>
  3275. <dict>
  3276. <key>hash2</key>
  3277. <data>
  3278. OOTNcIUOMcl9li9hOxwoCwY3L6clL1vlU7sz+XbA3iI=
  3279. </data>
  3280. </dict>
  3281. <key>Resources/res/SG-盘子26.red</key>
  3282. <dict>
  3283. <key>hash2</key>
  3284. <data>
  3285. cqyYGwkYbq1rik9Er+ZEX7NNrV924Kzn4YQrftkO0F4=
  3286. </data>
  3287. </dict>
  3288. <key>Resources/res/SG-盘子26.redream</key>
  3289. <dict>
  3290. <key>hash2</key>
  3291. <data>
  3292. yQkLy4iXMOJ+0DzdG26fmpcezHfcgpROKw8/kB6ihF4=
  3293. </data>
  3294. </dict>
  3295. <key>Resources/res/SG-盘子26情况.redream</key>
  3296. <dict>
  3297. <key>hash2</key>
  3298. <data>
  3299. 8i8C2mVisp79wgH6shW+gW8aomrl3bp64Z2K6A5NLAc=
  3300. </data>
  3301. </dict>
  3302. <key>Resources/res/SG-盘子27.red</key>
  3303. <dict>
  3304. <key>hash2</key>
  3305. <data>
  3306. Lb7xjwtg5x8XRee6g4IeTt9+eisBscXD0WRD/p4pkWQ=
  3307. </data>
  3308. </dict>
  3309. <key>Resources/res/SG-盘子27.redream</key>
  3310. <dict>
  3311. <key>hash2</key>
  3312. <data>
  3313. HLG9LzOO0DYV9XD79HhTqwZ0f3xZbquGF549jvHmW1M=
  3314. </data>
  3315. </dict>
  3316. <key>Resources/res/SG-盘子27情况.redream</key>
  3317. <dict>
  3318. <key>hash2</key>
  3319. <data>
  3320. C2pD1D0/M3jtWVTEvWYDEuF73U0bwX+/fM8C55KSIus=
  3321. </data>
  3322. </dict>
  3323. <key>Resources/res/SG-盘子28.red</key>
  3324. <dict>
  3325. <key>hash2</key>
  3326. <data>
  3327. 4sVJGTC7FKYyEa83oIIE/Mgsn+701CD9ae8T2Mayj4A=
  3328. </data>
  3329. </dict>
  3330. <key>Resources/res/SG-盘子28.redream</key>
  3331. <dict>
  3332. <key>hash2</key>
  3333. <data>
  3334. 9AS2FqMq3ucHCvhH+7rRFS+guQdtieJcwkOfPn9GzGk=
  3335. </data>
  3336. </dict>
  3337. <key>Resources/res/SG-盘子28情况.redream</key>
  3338. <dict>
  3339. <key>hash2</key>
  3340. <data>
  3341. h56+uj/INmKPjX5yoKIiUmiSg99LDerjq0QdtHzqa74=
  3342. </data>
  3343. </dict>
  3344. <key>Resources/res/SG-盘子29.red</key>
  3345. <dict>
  3346. <key>hash2</key>
  3347. <data>
  3348. rGAnhjVD8FPWQs0RuzKVeyyZ0reOhmyrkVygCgX2VP8=
  3349. </data>
  3350. </dict>
  3351. <key>Resources/res/SG-盘子29.redream</key>
  3352. <dict>
  3353. <key>hash2</key>
  3354. <data>
  3355. dqVZNtA2u7AanJAaVfdj/aS4Or/vj+hoL1CaFuOvbVo=
  3356. </data>
  3357. </dict>
  3358. <key>Resources/res/SG-盘子29情况.redream</key>
  3359. <dict>
  3360. <key>hash2</key>
  3361. <data>
  3362. Tr2wZyAcvVwPXi3wEjbwXMIV1Af9lzR2rVMpSLzA2KQ=
  3363. </data>
  3364. </dict>
  3365. <key>Resources/res/SG-盘子2情况.redream</key>
  3366. <dict>
  3367. <key>hash2</key>
  3368. <data>
  3369. f3e2I5HkDo21twL6ruMTYWeBKB9yQWJLApAjwHCl7NA=
  3370. </data>
  3371. </dict>
  3372. <key>Resources/res/SG-盘子3.red</key>
  3373. <dict>
  3374. <key>hash2</key>
  3375. <data>
  3376. wZmHCW7iMRGnlneE+hi56Q6xfTi5Ba3111+ELCOZe20=
  3377. </data>
  3378. </dict>
  3379. <key>Resources/res/SG-盘子3.redream</key>
  3380. <dict>
  3381. <key>hash2</key>
  3382. <data>
  3383. Si/jTHe0+RZWoEr08jgY2KUra87z3ktq9QygeffP420=
  3384. </data>
  3385. </dict>
  3386. <key>Resources/res/SG-盘子30.red</key>
  3387. <dict>
  3388. <key>hash2</key>
  3389. <data>
  3390. Qv24WOmWz2Zizdm76Aoewr9ryTKX95YJctTpqrjUuV0=
  3391. </data>
  3392. </dict>
  3393. <key>Resources/res/SG-盘子30.redream</key>
  3394. <dict>
  3395. <key>hash2</key>
  3396. <data>
  3397. uyLKAJKuPUIDAEG2LADhsRUiPaoXZ4Rx7veW22qTupc=
  3398. </data>
  3399. </dict>
  3400. <key>Resources/res/SG-盘子30情况.redream</key>
  3401. <dict>
  3402. <key>hash2</key>
  3403. <data>
  3404. GqQgdqVeH3FquWyA2NhSgI05dFfZy5McPUl+ANdV6rk=
  3405. </data>
  3406. </dict>
  3407. <key>Resources/res/SG-盘子3情况.redream</key>
  3408. <dict>
  3409. <key>hash2</key>
  3410. <data>
  3411. 9MKPiNXkq83ufXewD0sHryqNOxz/L4CFXLqeMMmYEF8=
  3412. </data>
  3413. </dict>
  3414. <key>Resources/res/SG-盘子4.red</key>
  3415. <dict>
  3416. <key>hash2</key>
  3417. <data>
  3418. idBenaQtU526RHImm5vmg2et1yn5znVA0MeY0E+2jME=
  3419. </data>
  3420. </dict>
  3421. <key>Resources/res/SG-盘子4.redream</key>
  3422. <dict>
  3423. <key>hash2</key>
  3424. <data>
  3425. 2zJpkgMJ95CtGG2Vm1AbeL2+kSrJbxWRI8LsY+B406Q=
  3426. </data>
  3427. </dict>
  3428. <key>Resources/res/SG-盘子4情况.redream</key>
  3429. <dict>
  3430. <key>hash2</key>
  3431. <data>
  3432. aoqvVdlyApHNKctJw7CbMj2Q6rYqcMj8nQoqGtQ0WKs=
  3433. </data>
  3434. </dict>
  3435. <key>Resources/res/SG-盘子5.red</key>
  3436. <dict>
  3437. <key>hash2</key>
  3438. <data>
  3439. 0vqeh97qQ9cGSQEMhGRPHLoPehoX1zrYNHRpKDqI8hw=
  3440. </data>
  3441. </dict>
  3442. <key>Resources/res/SG-盘子5.redream</key>
  3443. <dict>
  3444. <key>hash2</key>
  3445. <data>
  3446. 4hfq6ntF5rvQRmPsg1o5udgOJplLJnIoaCKy58uz7HI=
  3447. </data>
  3448. </dict>
  3449. <key>Resources/res/SG-盘子5情况.redream</key>
  3450. <dict>
  3451. <key>hash2</key>
  3452. <data>
  3453. 5ZVTDgG8aHnsr+S/4ffdfwgyJLhd36SSl8TkeGs0Mak=
  3454. </data>
  3455. </dict>
  3456. <key>Resources/res/SG-盘子6.red</key>
  3457. <dict>
  3458. <key>hash2</key>
  3459. <data>
  3460. Tze0Rjbu4NRxc9N4KC0P+h1TGH6HyrXYdiBfG6DO+/Q=
  3461. </data>
  3462. </dict>
  3463. <key>Resources/res/SG-盘子6.redream</key>
  3464. <dict>
  3465. <key>hash2</key>
  3466. <data>
  3467. LeaRi9hj8OKtmDDuZLYAjZzwjSKFcNeZpZrciFr/m4M=
  3468. </data>
  3469. </dict>
  3470. <key>Resources/res/SG-盘子6情况.redream</key>
  3471. <dict>
  3472. <key>hash2</key>
  3473. <data>
  3474. 95PfWhiofRd0kZTFuUENtDiiVqHfv903Q284WLloObc=
  3475. </data>
  3476. </dict>
  3477. <key>Resources/res/SG-盘子7.red</key>
  3478. <dict>
  3479. <key>hash2</key>
  3480. <data>
  3481. X5AzB4zA6C+82sbIEYf2aWbvkN9QbepF+OZMeL+Zdqw=
  3482. </data>
  3483. </dict>
  3484. <key>Resources/res/SG-盘子7.redream</key>
  3485. <dict>
  3486. <key>hash2</key>
  3487. <data>
  3488. 1ovGitIyShcYfrYS17jBa5YnOCz0lwpI3eTavzNAPiw=
  3489. </data>
  3490. </dict>
  3491. <key>Resources/res/SG-盘子7情况.redream</key>
  3492. <dict>
  3493. <key>hash2</key>
  3494. <data>
  3495. zQ/1sCYgMhr8sE1ucFy/z7ymI3zexcEL7vxIAhYerwE=
  3496. </data>
  3497. </dict>
  3498. <key>Resources/res/SG-盘子8.red</key>
  3499. <dict>
  3500. <key>hash2</key>
  3501. <data>
  3502. Vm35O/AiEIrmnoPx9LoyDGgkXR/vBgATQy72oYIoGS4=
  3503. </data>
  3504. </dict>
  3505. <key>Resources/res/SG-盘子8.redream</key>
  3506. <dict>
  3507. <key>hash2</key>
  3508. <data>
  3509. kPIB098E5GXbYcLkiK5EDLLa/c9JYg8c/FoHbvxF5f8=
  3510. </data>
  3511. </dict>
  3512. <key>Resources/res/SG-盘子8情况.redream</key>
  3513. <dict>
  3514. <key>hash2</key>
  3515. <data>
  3516. kZnJiokmNt6BKmhn4qNP/1OISMtBHvD76jVMtxdq15c=
  3517. </data>
  3518. </dict>
  3519. <key>Resources/res/SG-盘子9.red</key>
  3520. <dict>
  3521. <key>hash2</key>
  3522. <data>
  3523. 9WJXTAmnfgHpxUmODLAty/LWA3lI4hMaV2xmDIaD7Ww=
  3524. </data>
  3525. </dict>
  3526. <key>Resources/res/SG-盘子9.redream</key>
  3527. <dict>
  3528. <key>hash2</key>
  3529. <data>
  3530. OAO5VL9r2INWVwmnJux2gt88/IqpFKRqy+kNKMzRIqM=
  3531. </data>
  3532. </dict>
  3533. <key>Resources/res/SG-盘子9情况.redream</key>
  3534. <dict>
  3535. <key>hash2</key>
  3536. <data>
  3537. cNJMKyDia5zCS24WR4Pwl1WcI+DeKXlyvqR6iq+BPcE=
  3538. </data>
  3539. </dict>
  3540. <key>Resources/res/SG-目标1.red</key>
  3541. <dict>
  3542. <key>hash2</key>
  3543. <data>
  3544. dERA1nhjthjEhmxamJujftjd6tjKN2PIwBk4Q5PCxEg=
  3545. </data>
  3546. </dict>
  3547. <key>Resources/res/SG-目标1.redream</key>
  3548. <dict>
  3549. <key>hash2</key>
  3550. <data>
  3551. R1fCBRIZ2GWJ76Mrtg/S4gKEuX2XxNsHXNAzfWAg0/o=
  3552. </data>
  3553. </dict>
  3554. <key>Resources/res/SG-目标1盖子.red</key>
  3555. <dict>
  3556. <key>hash2</key>
  3557. <data>
  3558. /2YU/J9xvSdrS7QfJ3Lc3e7vGqUcCm5S//q3iQ75ecY=
  3559. </data>
  3560. </dict>
  3561. <key>Resources/res/SG-目标1盖子.redream</key>
  3562. <dict>
  3563. <key>hash2</key>
  3564. <data>
  3565. 2xtor69oP0/dBY+qf6cj4GoAkt1G+KPURm0C0p+r388=
  3566. </data>
  3567. </dict>
  3568. <key>Resources/res/SG-目标2.red</key>
  3569. <dict>
  3570. <key>hash2</key>
  3571. <data>
  3572. 32uBXbCbbYDSJEaH4tw45Z2hVRCtYoh8RqZT1NB53eU=
  3573. </data>
  3574. </dict>
  3575. <key>Resources/res/SG-目标2.redream</key>
  3576. <dict>
  3577. <key>hash2</key>
  3578. <data>
  3579. o24urrGiH6yAn2ThWKFqStcQ+7cTzFPuWwbhNv7PEaw=
  3580. </data>
  3581. </dict>
  3582. <key>Resources/res/SG-目标2盖子.red</key>
  3583. <dict>
  3584. <key>hash2</key>
  3585. <data>
  3586. 955IGADmAnS3+6CZ9wd1zW7SL1Zg11uetrl7sX3vgjo=
  3587. </data>
  3588. </dict>
  3589. <key>Resources/res/SG-目标2盖子.redream</key>
  3590. <dict>
  3591. <key>hash2</key>
  3592. <data>
  3593. IDMHwMVBtyVro/V52BPZ5sqWOOTMZ+E13bLpTNqzyo8=
  3594. </data>
  3595. </dict>
  3596. <key>Resources/res/SG-钉子1.red</key>
  3597. <dict>
  3598. <key>hash2</key>
  3599. <data>
  3600. uzKjrYhSA4A9nQbiAsUo61RccxhFX9nIwk+zlbkTuEM=
  3601. </data>
  3602. </dict>
  3603. <key>Resources/res/SG-钉子1.redream</key>
  3604. <dict>
  3605. <key>hash2</key>
  3606. <data>
  3607. POvWgcyIPf9MJOJSfviWJee5U4uheGC8DiVdtkit+7A=
  3608. </data>
  3609. </dict>
  3610. <key>Resources/res/SG-钉子10.red</key>
  3611. <dict>
  3612. <key>hash2</key>
  3613. <data>
  3614. bvst3nlTVkkdE6b8K5ji0nd9VZAHjZYYF80mbBof5Zc=
  3615. </data>
  3616. </dict>
  3617. <key>Resources/res/SG-钉子10.redream</key>
  3618. <dict>
  3619. <key>hash2</key>
  3620. <data>
  3621. KpX4S8lVcwizqEAnvcE3ZdzSAd1+3jKSFSZwLjOeGr0=
  3622. </data>
  3623. </dict>
  3624. <key>Resources/res/SG-钉子2.red</key>
  3625. <dict>
  3626. <key>hash2</key>
  3627. <data>
  3628. bvst3nlTVkkdE6b8K5ji0nd9VZAHjZYYF80mbBof5Zc=
  3629. </data>
  3630. </dict>
  3631. <key>Resources/res/SG-钉子2.redream</key>
  3632. <dict>
  3633. <key>hash2</key>
  3634. <data>
  3635. KpX4S8lVcwizqEAnvcE3ZdzSAd1+3jKSFSZwLjOeGr0=
  3636. </data>
  3637. </dict>
  3638. <key>Resources/res/SG-钉子3.red</key>
  3639. <dict>
  3640. <key>hash2</key>
  3641. <data>
  3642. LK64QjmLrcSRwtl+b4leckot018kuzaXIpNQDduFbjI=
  3643. </data>
  3644. </dict>
  3645. <key>Resources/res/SG-钉子3.redream</key>
  3646. <dict>
  3647. <key>hash2</key>
  3648. <data>
  3649. pSHmHF5Xqn5okeYlEZkf8zHjz8lgaaTvFb0iGipsej8=
  3650. </data>
  3651. </dict>
  3652. <key>Resources/res/SG-钉子4.red</key>
  3653. <dict>
  3654. <key>hash2</key>
  3655. <data>
  3656. uzKjrYhSA4A9nQbiAsUo61RccxhFX9nIwk+zlbkTuEM=
  3657. </data>
  3658. </dict>
  3659. <key>Resources/res/SG-钉子4.redream</key>
  3660. <dict>
  3661. <key>hash2</key>
  3662. <data>
  3663. POvWgcyIPf9MJOJSfviWJee5U4uheGC8DiVdtkit+7A=
  3664. </data>
  3665. </dict>
  3666. <key>Resources/res/SG-钉子5.red</key>
  3667. <dict>
  3668. <key>hash2</key>
  3669. <data>
  3670. uzKjrYhSA4A9nQbiAsUo61RccxhFX9nIwk+zlbkTuEM=
  3671. </data>
  3672. </dict>
  3673. <key>Resources/res/SG-钉子5.redream</key>
  3674. <dict>
  3675. <key>hash2</key>
  3676. <data>
  3677. POvWgcyIPf9MJOJSfviWJee5U4uheGC8DiVdtkit+7A=
  3678. </data>
  3679. </dict>
  3680. <key>Resources/res/SG-钉子6.red</key>
  3681. <dict>
  3682. <key>hash2</key>
  3683. <data>
  3684. bvst3nlTVkkdE6b8K5ji0nd9VZAHjZYYF80mbBof5Zc=
  3685. </data>
  3686. </dict>
  3687. <key>Resources/res/SG-钉子6.redream</key>
  3688. <dict>
  3689. <key>hash2</key>
  3690. <data>
  3691. KpX4S8lVcwizqEAnvcE3ZdzSAd1+3jKSFSZwLjOeGr0=
  3692. </data>
  3693. </dict>
  3694. <key>Resources/res/SG-钉子7.red</key>
  3695. <dict>
  3696. <key>hash2</key>
  3697. <data>
  3698. LK64QjmLrcSRwtl+b4leckot018kuzaXIpNQDduFbjI=
  3699. </data>
  3700. </dict>
  3701. <key>Resources/res/SG-钉子7.redream</key>
  3702. <dict>
  3703. <key>hash2</key>
  3704. <data>
  3705. pSHmHF5Xqn5okeYlEZkf8zHjz8lgaaTvFb0iGipsej8=
  3706. </data>
  3707. </dict>
  3708. <key>Resources/res/SG-钉子8.red</key>
  3709. <dict>
  3710. <key>hash2</key>
  3711. <data>
  3712. LK64QjmLrcSRwtl+b4leckot018kuzaXIpNQDduFbjI=
  3713. </data>
  3714. </dict>
  3715. <key>Resources/res/SG-钉子8.redream</key>
  3716. <dict>
  3717. <key>hash2</key>
  3718. <data>
  3719. pSHmHF5Xqn5okeYlEZkf8zHjz8lgaaTvFb0iGipsej8=
  3720. </data>
  3721. </dict>
  3722. <key>Resources/res/SG-钉子9.red</key>
  3723. <dict>
  3724. <key>hash2</key>
  3725. <data>
  3726. LK64QjmLrcSRwtl+b4leckot018kuzaXIpNQDduFbjI=
  3727. </data>
  3728. </dict>
  3729. <key>Resources/res/SG-钉子9.redream</key>
  3730. <dict>
  3731. <key>hash2</key>
  3732. <data>
  3733. pSHmHF5Xqn5okeYlEZkf8zHjz8lgaaTvFb0iGipsej8=
  3734. </data>
  3735. </dict>
  3736. <key>Resources/res/SG_Game.redream</key>
  3737. <dict>
  3738. <key>hash2</key>
  3739. <data>
  3740. Q141ZciMRnLtS9AoTMXVn2S/ARlHBbe4QkpKxTIokhk=
  3741. </data>
  3742. </dict>
  3743. <key>Resources/res/SG_HealthAndGolds.redream</key>
  3744. <dict>
  3745. <key>hash2</key>
  3746. <data>
  3747. 3MoxK1ef0gXpCLtqnpWwj9p3KGzbRXDzk8UPsmNXvG8=
  3748. </data>
  3749. </dict>
  3750. <key>Resources/res/SG_Jewelry.redream</key>
  3751. <dict>
  3752. <key>hash2</key>
  3753. <data>
  3754. 3/8QMsfz5bYbTjhgvAJ2tJwZo/3AeTstJfpQ7hAcAHM=
  3755. </data>
  3756. </dict>
  3757. <key>Resources/res/SG_Mode.redream</key>
  3758. <dict>
  3759. <key>hash2</key>
  3760. <data>
  3761. RS3nhXxTU17fAzNeXjPAKgcK1Mauj/SKk35mzMaliWU=
  3762. </data>
  3763. </dict>
  3764. <key>Resources/res/SG_NavigationBar.redream</key>
  3765. <dict>
  3766. <key>hash2</key>
  3767. <data>
  3768. j5iK4NjKCIi8L7Ub7zQMuJfuLv3qZmmhuNBnF/gurgU=
  3769. </data>
  3770. </dict>
  3771. <key>Resources/res/SG_Settings.redream</key>
  3772. <dict>
  3773. <key>hash2</key>
  3774. <data>
  3775. ZTklBW/oXa5iTEaiehY8b6mwkugqnkua7iHTrppfIcI=
  3776. </data>
  3777. </dict>
  3778. <key>Resources/res/SG_Shop.redream</key>
  3779. <dict>
  3780. <key>hash2</key>
  3781. <data>
  3782. z7wduKUnJoKfXBtIJ3N1Y/iuVSKIa2ZUtUKwjX7lnMg=
  3783. </data>
  3784. </dict>
  3785. <key>Resources/res/SG_SideBar.redream</key>
  3786. <dict>
  3787. <key>hash2</key>
  3788. <data>
  3789. JyGoo/J2HS+MxNEEjd9TeC4+bb1jFJtuDNxzdP7GgqY=
  3790. </data>
  3791. </dict>
  3792. <key>Resources/res/SG_Start.redream</key>
  3793. <dict>
  3794. <key>hash2</key>
  3795. <data>
  3796. FyO1yjf0oin+b+6SA6alPobbt5Cun5pfz4wCg8LdqnM=
  3797. </data>
  3798. </dict>
  3799. <key>Resources/res/SG_TargetLayer.redream</key>
  3800. <dict>
  3801. <key>hash2</key>
  3802. <data>
  3803. a8USeLzB+X/mVhIROBmLy4KPK75/yC+XDAeuAKjaizI=
  3804. </data>
  3805. </dict>
  3806. <key>Resources/res/SG_Union.redream</key>
  3807. <dict>
  3808. <key>hash2</key>
  3809. <data>
  3810. fcxeZRlh+Vxk0nd70BMO0Ce6NMloKzV5D5Jkjl3FfpE=
  3811. </data>
  3812. </dict>
  3813. <key>Resources/res/SG_gameover.redream</key>
  3814. <dict>
  3815. <key>hash2</key>
  3816. <data>
  3817. yet1XTmpTu4mIx9iRqqWoWns1fmhWTJToUZ5hkJXbpw=
  3818. </data>
  3819. </dict>
  3820. <key>Resources/res/SG_gamewin.redream</key>
  3821. <dict>
  3822. <key>hash2</key>
  3823. <data>
  3824. AlncRa3tGufx9/jXgjNIWUTWLcKL4E8Z9naWwKtjy4g=
  3825. </data>
  3826. </dict>
  3827. <key>Resources/res/WHEEL</key>
  3828. <dict>
  3829. <key>hash2</key>
  3830. <data>
  3831. pkctZYzUS4AYVn6dJ+7367OJZivF2e8RA9b/ZBjif18=
  3832. </data>
  3833. </dict>
  3834. <key>Resources/res/__about__.py</key>
  3835. <dict>
  3836. <key>hash2</key>
  3837. <data>
  3838. ugASIO2w1oUyH8/COqQ2X/s0rDhjbhQC3yJocD03h2c=
  3839. </data>
  3840. </dict>
  3841. <key>Resources/res/__init__.cpython-312.pyc</key>
  3842. <dict>
  3843. <key>hash2</key>
  3844. <data>
  3845. HXJQ1qdx6hxnmcloL8bz+VxEPOjijJPCr/Q5B6/xlgI=
  3846. </data>
  3847. </dict>
  3848. <key>Resources/res/__init__.py</key>
  3849. <dict>
  3850. <key>hash2</key>
  3851. <data>
  3852. 1tcWpQAkLJN6KcewovjYyu6ETr1RqDCq84+mApE5ZK4=
  3853. </data>
  3854. </dict>
  3855. <key>Resources/res/__main__.py</key>
  3856. <dict>
  3857. <key>hash2</key>
  3858. <data>
  3859. fVvSiTzr2+RM6IsjWjj4fkaOtDOgDhUWv6sA99do4CQ=
  3860. </data>
  3861. </dict>
  3862. <key>Resources/res/__pip-runner__.py</key>
  3863. <dict>
  3864. <key>hash2</key>
  3865. <data>
  3866. EnrfKmKMzWAdqg/JicLCOP9Y95Ux7zHh4ObvqLtQcjo=
  3867. </data>
  3868. </dict>
  3869. <key>Resources/res/__version__.py</key>
  3870. <dict>
  3871. <key>hash2</key>
  3872. <data>
  3873. ssI3Ezt7PaxgkOW45GhtwPUclo/SO/ygtIm4A74IOfw=
  3874. </data>
  3875. </dict>
  3876. <key>Resources/res/_appengine_environ.py</key>
  3877. <dict>
  3878. <key>hash2</key>
  3879. <data>
  3880. bDbyOEhW2CKLJcQqAKAyrEHN+aklsyHFKq6vF8ZFsmk=
  3881. </data>
  3882. </dict>
  3883. <key>Resources/res/_asyncio.py</key>
  3884. <dict>
  3885. <key>hash2</key>
  3886. <data>
  3887. Qi6wgQsGa9MQibYRy3OXqcDQswIZZ00dLOoSUGN+6o8=
  3888. </data>
  3889. </dict>
  3890. <key>Resources/res/_cell_widths.py</key>
  3891. <dict>
  3892. <key>hash2</key>
  3893. <data>
  3894. 2n4EiJi3X9sqIq0O16kUZ/zy6UYMd3xFfChlKfnW1Hc=
  3895. </data>
  3896. </dict>
  3897. <key>Resources/res/_cmd.py</key>
  3898. <dict>
  3899. <key>hash2</key>
  3900. <data>
  3901. lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY=
  3902. </data>
  3903. </dict>
  3904. <key>Resources/res/_collections.py</key>
  3905. <dict>
  3906. <key>hash2</key>
  3907. <data>
  3908. Rp1mVyBgc/UlAcp6M3at1skJBXR5J43NawRTvW2g/XY=
  3909. </data>
  3910. </dict>
  3911. <key>Resources/res/_compat.py</key>
  3912. <dict>
  3913. <key>hash2</key>
  3914. <data>
  3915. by6evrYnqkisiM+MQcvOKs5bgDMzlOSgZqRHNqf04zE=
  3916. </data>
  3917. </dict>
  3918. <key>Resources/res/_dists.py</key>
  3919. <dict>
  3920. <key>hash2</key>
  3921. <data>
  3922. BUV8y6D0PePZrEN3vfJL+m1FDqZ6YPRgAiBeBinHhNg=
  3923. </data>
  3924. </dict>
  3925. <key>Resources/res/_distutils.py</key>
  3926. <dict>
  3927. <key>hash2</key>
  3928. <data>
  3929. cmi6h63xYNXhQe7KEWEMaANjHFy5yQOPt/1/RCWyXMY=
  3930. </data>
  3931. </dict>
  3932. <key>Resources/res/_emoji_codes.py</key>
  3933. <dict>
  3934. <key>hash2</key>
  3935. <data>
  3936. hu1VL9nbVdppJrVoijVshRlcRRe/v3dju3Mmd2sKZdY=
  3937. </data>
  3938. </dict>
  3939. <key>Resources/res/_emoji_replace.py</key>
  3940. <dict>
  3941. <key>hash2</key>
  3942. <data>
  3943. n+kcetsEUx2ZUmhQrfeMNc+teeGhpuSQ5F8VPBsyvDo=
  3944. </data>
  3945. </dict>
  3946. <key>Resources/res/_envs.py</key>
  3947. <dict>
  3948. <key>hash2</key>
  3949. <data>
  3950. I1DHMyAgZb8jT8CYndWl2aw2dN675p+BKPCuJhvdhrY=
  3951. </data>
  3952. </dict>
  3953. <key>Resources/res/_export_format.py</key>
  3954. <dict>
  3955. <key>hash2</key>
  3956. <data>
  3957. qxgV3nKnXQu1hfbnRVswPYy+AwIg1X0LSC47cK5s8jk=
  3958. </data>
  3959. </dict>
  3960. <key>Resources/res/_extension.py</key>
  3961. <dict>
  3962. <key>hash2</key>
  3963. <data>
  3964. Xt47QacCKwYruzjDi+gOBq724JReDj9Cm9xUi5fr+34=
  3965. </data>
  3966. </dict>
  3967. <key>Resources/res/_fileno.py</key>
  3968. <dict>
  3969. <key>hash2</key>
  3970. <data>
  3971. HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ=
  3972. </data>
  3973. </dict>
  3974. <key>Resources/res/_impl.py</key>
  3975. <dict>
  3976. <key>hash2</key>
  3977. <data>
  3978. 61GJxzQip0IInhuO69ZI5GbNQ82XEDUB/1Gg5/KtUoc=
  3979. </data>
  3980. </dict>
  3981. <key>Resources/res/_in_process.py</key>
  3982. <dict>
  3983. <key>hash2</key>
  3984. <data>
  3985. m2b34c917IW5o+Q/6TYIHlsK9lSUlNiyrITTUH/zwew=
  3986. </data>
  3987. </dict>
  3988. <key>Resources/res/_inspect.py</key>
  3989. <dict>
  3990. <key>hash2</key>
  3991. <data>
  3992. oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk=
  3993. </data>
  3994. </dict>
  3995. <key>Resources/res/_internal_utils.py</key>
  3996. <dict>
  3997. <key>hash2</key>
  3998. <data>
  3999. nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ=
  4000. </data>
  4001. </dict>
  4002. <key>Resources/res/_jaraco_text.py</key>
  4003. <dict>
  4004. <key>hash2</key>
  4005. <data>
  4006. yvDGelTVugRayPaOF2k4ab0Ky4d3uOkAfuOQjASjImY=
  4007. </data>
  4008. </dict>
  4009. <key>Resources/res/_json.py</key>
  4010. <dict>
  4011. <key>hash2</key>
  4012. <data>
  4013. BTkWfFDrWFwuSodImjtbAh8wCL3isecbnjTb5E6UUDI=
  4014. </data>
  4015. </dict>
  4016. <key>Resources/res/_log.py</key>
  4017. <dict>
  4018. <key>hash2</key>
  4019. <data>
  4020. +jHLOE/THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw=
  4021. </data>
  4022. </dict>
  4023. <key>Resources/res/_log_render.py</key>
  4024. <dict>
  4025. <key>hash2</key>
  4026. <data>
  4027. 1ByI0PA1ZpxZY3CGJOK54hjlq4X+Bz/boIjIqCd8Kns=
  4028. </data>
  4029. </dict>
  4030. <key>Resources/res/_loop.py</key>
  4031. <dict>
  4032. <key>hash2</key>
  4033. <data>
  4034. hV/6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS+9eDQ=
  4035. </data>
  4036. </dict>
  4037. <key>Resources/res/_manylinux.py</key>
  4038. <dict>
  4039. <key>hash2</key>
  4040. <data>
  4041. XcbiXB+qcjv3bcohp6N98TMpOP4/j3m+iOA8ptK2GWY=
  4042. </data>
  4043. </dict>
  4044. <key>Resources/res/_mapping.py</key>
  4045. <dict>
  4046. <key>hash2</key>
  4047. <data>
  4048. 1Cw37FuQlNacnxRKmtlPX4nyLoX9/ttko5ZwscNUZZ4=
  4049. </data>
  4050. </dict>
  4051. <key>Resources/res/_musllinux.py</key>
  4052. <dict>
  4053. <key>hash2</key>
  4054. <data>
  4055. /KGgY/qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc=
  4056. </data>
  4057. </dict>
  4058. <key>Resources/res/_null_file.py</key>
  4059. <dict>
  4060. <key>hash2</key>
  4061. <data>
  4062. tGSXk/v+IZmbj1GAzHit8A3kYIQMiCpVsCFfsC+/KJ4=
  4063. </data>
  4064. </dict>
  4065. <key>Resources/res/_palettes.py</key>
  4066. <dict>
  4067. <key>hash2</key>
  4068. <data>
  4069. cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI=
  4070. </data>
  4071. </dict>
  4072. <key>Resources/res/_parser.py</key>
  4073. <dict>
  4074. <key>hash2</key>
  4075. <data>
  4076. g9+ENaALS+B8dokYpCuzUFalWlog7T+SIYMjLZSWrtM=
  4077. </data>
  4078. </dict>
  4079. <key>Resources/res/_pick.py</key>
  4080. <dict>
  4081. <key>hash2</key>
  4082. <data>
  4083. evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU=
  4084. </data>
  4085. </dict>
  4086. <key>Resources/res/_ratio.py</key>
  4087. <dict>
  4088. <key>hash2</key>
  4089. <data>
  4090. 2lLSliL025Y+YMfdfGbutkQDevhcyDqc+DtUYW9mU70=
  4091. </data>
  4092. </dict>
  4093. <key>Resources/res/_re.py</key>
  4094. <dict>
  4095. <key>hash2</key>
  4096. <data>
  4097. dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly+w=
  4098. </data>
  4099. </dict>
  4100. <key>Resources/res/_spinners.py</key>
  4101. <dict>
  4102. <key>hash2</key>
  4103. <data>
  4104. U2r1/g/1zSjsjiUdAESc2iAMc3i4ri/S8PYP6kQ5z1I=
  4105. </data>
  4106. </dict>
  4107. <key>Resources/res/_stack.py</key>
  4108. <dict>
  4109. <key>hash2</key>
  4110. <data>
  4111. +C8OK7rxn3sIUdVwxZBBpeHhIzX0eI+VM3MemYfaXm0=
  4112. </data>
  4113. </dict>
  4114. <key>Resources/res/_structures.py</key>
  4115. <dict>
  4116. <key>hash2</key>
  4117. <data>
  4118. q3eVNmbWJGG/S0Dit/S3Ao8qQqz/5PYTXFAKBZe5yr4=
  4119. </data>
  4120. </dict>
  4121. <key>Resources/res/_sysconfig.py</key>
  4122. <dict>
  4123. <key>hash2</key>
  4124. <data>
  4125. jyNVtUfMIf0mtyY+Xp1m9yQ8iwECozSVVFmjkN9a2yw=
  4126. </data>
  4127. </dict>
  4128. <key>Resources/res/_timer.py</key>
  4129. <dict>
  4130. <key>hash2</key>
  4131. <data>
  4132. zelxbT6oPFZnNrwWPpc1ktUeAT+Vc4fuFcRZLQGLtMI=
  4133. </data>
  4134. </dict>
  4135. <key>Resources/res/_types.py</key>
  4136. <dict>
  4137. <key>hash2</key>
  4138. <data>
  4139. +GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q=
  4140. </data>
  4141. </dict>
  4142. <key>Resources/res/_utils.py</key>
  4143. <dict>
  4144. <key>hash2</key>
  4145. <data>
  4146. ubs6a7sxj3JDNRKWCyCU2j5r1CB7rgyONgZzYZq6D/4=
  4147. </data>
  4148. </dict>
  4149. <key>Resources/res/_version.py</key>
  4150. <dict>
  4151. <key>hash2</key>
  4152. <data>
  4153. 6zoYnDykPLfe92fHqXalH8SxhWVl31yYLCP0lDri/SA=
  4154. </data>
  4155. </dict>
  4156. <key>Resources/res/_virtualenv.cpython-312.pyc</key>
  4157. <dict>
  4158. <key>hash2</key>
  4159. <data>
  4160. Q0zSbNbjolgGzkCYNMgfZ9ZGSBF9sMCsVcD8fnJ+0uk=
  4161. </data>
  4162. </dict>
  4163. <key>Resources/res/_virtualenv.pth</key>
  4164. <dict>
  4165. <key>hash2</key>
  4166. <data>
  4167. aaw9jyfmecgblKsws7VunNE4IZsbqUofo2BtWnahQz0=
  4168. </data>
  4169. </dict>
  4170. <key>Resources/res/_virtualenv.py</key>
  4171. <dict>
  4172. <key>hash2</key>
  4173. <data>
  4174. CuuGVGNFwdD62gl1NuNVJXFNXNvMLY6z+ZEqlVBE/P8=
  4175. </data>
  4176. </dict>
  4177. <key>Resources/res/_win32_console.py</key>
  4178. <dict>
  4179. <key>hash2</key>
  4180. <data>
  4181. P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24/gug=
  4182. </data>
  4183. </dict>
  4184. <key>Resources/res/_windows.py</key>
  4185. <dict>
  4186. <key>hash2</key>
  4187. <data>
  4188. dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9+KGGyfXmk=
  4189. </data>
  4190. </dict>
  4191. <key>Resources/res/_windows_renderer.py</key>
  4192. <dict>
  4193. <key>hash2</key>
  4194. <data>
  4195. t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk=
  4196. </data>
  4197. </dict>
  4198. <key>Resources/res/_wrap.py</key>
  4199. <dict>
  4200. <key>hash2</key>
  4201. <data>
  4202. xfV/9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ=
  4203. </data>
  4204. </dict>
  4205. <key>Resources/res/abc.py</key>
  4206. <dict>
  4207. <key>hash2</key>
  4208. <data>
  4209. ON+E+ZqSSheZ88VrKX2M3PXpFbGEUUZPMa/Af0l+4f0=
  4210. </data>
  4211. </dict>
  4212. <key>Resources/res/actions.py</key>
  4213. <dict>
  4214. <key>hash2</key>
  4215. <data>
  4216. 05uaIPOznJPQ7VgRdmGCmG4sDnUPtwgv5qOYIqbL2UY=
  4217. </data>
  4218. </dict>
  4219. <key>Resources/res/activate</key>
  4220. <dict>
  4221. <key>hash2</key>
  4222. <data>
  4223. bYlpQS7K/wm4/FUenNR2wW4cnPog1SUEshRMu8qMZSE=
  4224. </data>
  4225. </dict>
  4226. <key>Resources/res/activate.csh</key>
  4227. <dict>
  4228. <key>hash2</key>
  4229. <data>
  4230. wAANWixpkHC6xKGeXxk7CrTPeEFrpMLWINtanMCiugs=
  4231. </data>
  4232. </dict>
  4233. <key>Resources/res/activate.fish</key>
  4234. <dict>
  4235. <key>hash2</key>
  4236. <data>
  4237. JQF4rWx4jumFEiuh/B/oZmVCPqqRgw6B6gDblEhnIxs=
  4238. </data>
  4239. </dict>
  4240. <key>Resources/res/activate.nu</key>
  4241. <dict>
  4242. <key>hash2</key>
  4243. <data>
  4244. tnPTBvc1Y1P0H7o8snX4u3VEUv8fK4P9PX15zaTnkEg=
  4245. </data>
  4246. </dict>
  4247. <key>Resources/res/activate.ps1</key>
  4248. <dict>
  4249. <key>hash2</key>
  4250. <data>
  4251. 5Un2IFmiEhadX3feMQdEpDVuvErpA0RtR/6BZXZ+eCY=
  4252. </data>
  4253. </dict>
  4254. <key>Resources/res/activate_this.py</key>
  4255. <dict>
  4256. <key>hash2</key>
  4257. <data>
  4258. fvPzMbbVJWNOv7QziL9ekbJ118JbxvK4JxXtdylsMzI=
  4259. </data>
  4260. </dict>
  4261. <key>Resources/res/adapter.py</key>
  4262. <dict>
  4263. <key>hash2</key>
  4264. <data>
  4265. ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8=
  4266. </data>
  4267. </dict>
  4268. <key>Resources/res/adapters.py</key>
  4269. <dict>
  4270. <key>hash2</key>
  4271. <data>
  4272. idj6cZcId3L5xNNeJ7ieOLtw3awJk5A64xUfetHwq3M=
  4273. </data>
  4274. </dict>
  4275. <key>Resources/res/after.py</key>
  4276. <dict>
  4277. <key>hash2</key>
  4278. <data>
  4279. S5NCISScPeIrKwIeXRwdJl3kV9Q4nqZfnNPDx6Hf//g=
  4280. </data>
  4281. </dict>
  4282. <key>Resources/res/align.py</key>
  4283. <dict>
  4284. <key>hash2</key>
  4285. <data>
  4286. Ji+Yokfkhnfe/xMmr4ISjZB07TJXggBCOYoYa+HDAr8=
  4287. </data>
  4288. </dict>
  4289. <key>Resources/res/android.py</key>
  4290. <dict>
  4291. <key>hash2</key>
  4292. <data>
  4293. y/EEMKwYl2+bzYBDovksSn8m76on0Lda8eyJksVQE9U=
  4294. </data>
  4295. </dict>
  4296. <key>Resources/res/ansi.py</key>
  4297. <dict>
  4298. <key>hash2</key>
  4299. <data>
  4300. iD6532QYqnBm6hADulKjrV8l8kFJ+9fEVooHJHH3hMg=
  4301. </data>
  4302. </dict>
  4303. <key>Resources/res/ansi_test.py</key>
  4304. <dict>
  4305. <key>hash2</key>
  4306. <data>
  4307. FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE=
  4308. </data>
  4309. </dict>
  4310. <key>Resources/res/ansitowin32.py</key>
  4311. <dict>
  4312. <key>hash2</key>
  4313. <data>
  4314. vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk=
  4315. </data>
  4316. </dict>
  4317. <key>Resources/res/ansitowin32_test.py</key>
  4318. <dict>
  4319. <key>hash2</key>
  4320. <data>
  4321. RN7AIhMJ5EqDsYaCjVo+o4u8JzDD4ukJbmevWKS70rY=
  4322. </data>
  4323. </dict>
  4324. <key>Resources/res/api.py</key>
  4325. <dict>
  4326. <key>hash2</key>
  4327. <data>
  4328. jWtX06jAJytYrkJDOqEls97mCkyHRSZkoqUlbMK5Qew=
  4329. </data>
  4330. </dict>
  4331. <key>Resources/res/appdirs.py</key>
  4332. <dict>
  4333. <key>hash2</key>
  4334. <data>
  4335. swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH/yDXklAo=
  4336. </data>
  4337. </dict>
  4338. <key>Resources/res/appengine.py</key>
  4339. <dict>
  4340. <key>hash2</key>
  4341. <data>
  4342. VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj/+5BaCz4=
  4343. </data>
  4344. </dict>
  4345. <key>Resources/res/auth.py</key>
  4346. <dict>
  4347. <key>hash2</key>
  4348. <data>
  4349. h+HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE=
  4350. </data>
  4351. </dict>
  4352. <key>Resources/res/autocompletion.py</key>
  4353. <dict>
  4354. <key>hash2</key>
  4355. <data>
  4356. wY2JPZY2Eji1vhR7bVo+yCBPJ9LCy6P80iOAhZD1Vi8=
  4357. </data>
  4358. </dict>
  4359. <key>Resources/res/b_back.png</key>
  4360. <dict>
  4361. <key>hash2</key>
  4362. <data>
  4363. ZjSm0v3o2NCN6taAPkSBcKxLIliof9lz79HDXS6nmGM=
  4364. </data>
  4365. </dict>
  4366. <key>Resources/res/bar.py</key>
  4367. <dict>
  4368. <key>hash2</key>
  4369. <data>
  4370. a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw=
  4371. </data>
  4372. </dict>
  4373. <key>Resources/res/base.py</key>
  4374. <dict>
  4375. <key>hash2</key>
  4376. <data>
  4377. jrF1Vi7eGyqFqMHrieh1PIOrGU7KeCxhYPZnbvtmvGY=
  4378. </data>
  4379. </dict>
  4380. <key>Resources/res/base_command.py</key>
  4381. <dict>
  4382. <key>hash2</key>
  4383. <data>
  4384. ACUUqWkZMU2O1pmUSpfBV3fwb36JzzTHGrbKXyb5f74=
  4385. </data>
  4386. </dict>
  4387. <key>Resources/res/bazaar.py</key>
  4388. <dict>
  4389. <key>hash2</key>
  4390. <data>
  4391. j0oin0fpGRHcCFCxEcpPCQoFEvA+DMLULKdGP8Nv76o=
  4392. </data>
  4393. </dict>
  4394. <key>Resources/res/bbcode.py</key>
  4395. <dict>
  4396. <key>hash2</key>
  4397. <data>
  4398. r1b7wzWTJouADDLh+Z11iRi4iQxD0JKJ1qHl6mOYxsA=
  4399. </data>
  4400. </dict>
  4401. <key>Resources/res/before.py</key>
  4402. <dict>
  4403. <key>hash2</key>
  4404. <data>
  4405. dIZE9gmBTffisfwNkK0F1xFwGPV41u5GK70UY4Pi5Kc=
  4406. </data>
  4407. </dict>
  4408. <key>Resources/res/before_sleep.py</key>
  4409. <dict>
  4410. <key>hash2</key>
  4411. <data>
  4412. YmpgN9Y7HGlH97U24vvq/YWb5deaK4/DbiD8ZuFmy+E=
  4413. </data>
  4414. </dict>
  4415. <key>Resources/res/big5freq.py</key>
  4416. <dict>
  4417. <key>hash2</key>
  4418. <data>
  4419. ltcfP+3PjlNHCoo5e4a7C4z+2DhBTXRfY6jbMbB7P30=
  4420. </data>
  4421. </dict>
  4422. <key>Resources/res/big5prober.py</key>
  4423. <dict>
  4424. <key>hash2</key>
  4425. <data>
  4426. lPMfwCX6v2AaPgvFh/cSWZcgLDbWiFCHLZ/p9RQ9uxE=
  4427. </data>
  4428. </dict>
  4429. <key>Resources/res/bindings.py</key>
  4430. <dict>
  4431. <key>hash2</key>
  4432. <data>
  4433. 4Xk64qIkPBt09A5q+RIFUuDhNc9mXilVapm7WnYnzRw=
  4434. </data>
  4435. </dict>
  4436. <key>Resources/res/box.py</key>
  4437. <dict>
  4438. <key>hash2</key>
  4439. <data>
  4440. FJ6nI3jD7h2XNFU138bJUt2HYmWOlRbltoCEuIAZhew=
  4441. </data>
  4442. </dict>
  4443. <key>Resources/res/build_env.py</key>
  4444. <dict>
  4445. <key>hash2</key>
  4446. <data>
  4447. 1ESpqw0iupS/K7phZK5zshVE5Czy9BtGLFU4W6Enva8=
  4448. </data>
  4449. </dict>
  4450. <key>Resources/res/build_tracker.py</key>
  4451. <dict>
  4452. <key>hash2</key>
  4453. <data>
  4454. vf81EwomN3xe9G8qRJED0VGqNikmRQRQoobNsxi5Xrs=
  4455. </data>
  4456. </dict>
  4457. <key>Resources/res/cacert.pem</key>
  4458. <dict>
  4459. <key>hash2</key>
  4460. <data>
  4461. swFTXcpJHZgU6ij6oyCsehnQ9dlCN5lvoKO1qTZDJRQ=
  4462. </data>
  4463. </dict>
  4464. <key>Resources/res/cache.py</key>
  4465. <dict>
  4466. <key>hash2</key>
  4467. <data>
  4468. Tty45fOjH40fColTGkqKQvQQmbYsMpk+nCyfLcv2vG4=
  4469. </data>
  4470. </dict>
  4471. <key>Resources/res/candidate.py</key>
  4472. <dict>
  4473. <key>hash2</key>
  4474. <data>
  4475. 6pcABsaR7CfIHlbJbr2/kMkVJFL/yrYjTx6SVWUnCPQ=
  4476. </data>
  4477. </dict>
  4478. <key>Resources/res/candidates.py</key>
  4479. <dict>
  4480. <key>hash2</key>
  4481. <data>
  4482. u5mU96o2lnUy+ODRJv7Wevee0xCYI6IKIXNamSBQnso=
  4483. </data>
  4484. </dict>
  4485. <key>Resources/res/cells.py</key>
  4486. <dict>
  4487. <key>hash2</key>
  4488. <data>
  4489. 627ztJs9zOL+38HJ7kXBerR+gT8KBfYC8UzEwMJDYYo=
  4490. </data>
  4491. </dict>
  4492. <key>Resources/res/certs.py</key>
  4493. <dict>
  4494. <key>hash2</key>
  4495. <data>
  4496. PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs=
  4497. </data>
  4498. </dict>
  4499. <key>Resources/res/chardetect.py</key>
  4500. <dict>
  4501. <key>hash2</key>
  4502. <data>
  4503. zibMVg5RpKb+ME9/7EYG4ZM2Sf07NHcQzZ12U+rYJho=
  4504. </data>
  4505. </dict>
  4506. <key>Resources/res/chardistribution.py</key>
  4507. <dict>
  4508. <key>hash2</key>
  4509. <data>
  4510. 13B8XUG4oXDuLdXvfbIWwLFeR+ZU21AqTS1zcdON8bU=
  4511. </data>
  4512. </dict>
  4513. <key>Resources/res/charsetgroupprober.py</key>
  4514. <dict>
  4515. <key>hash2</key>
  4516. <data>
  4517. UKK3SaIZB2PCdKSIS0gnvMtLR9JJX62M+fZJu3OlWyg=
  4518. </data>
  4519. </dict>
  4520. <key>Resources/res/charsetprober.py</key>
  4521. <dict>
  4522. <key>hash2</key>
  4523. <data>
  4524. L3t8/wIOov8em+vZWOcbkdsrwe43N6/gqNh5pH7WPd4=
  4525. </data>
  4526. </dict>
  4527. <key>Resources/res/check.py</key>
  4528. <dict>
  4529. <key>hash2</key>
  4530. <data>
  4531. Rb13Q28yoLh0j1gpx5SU0jlResNct21eQCRsnaO9xKA=
  4532. </data>
  4533. </dict>
  4534. <key>Resources/res/cmdline.py</key>
  4535. <dict>
  4536. <key>hash2</key>
  4537. <data>
  4538. byxYJp9gnjVeyhRlZ3UTMgo/LhkXh1afvN8wJBtAcc8=
  4539. </data>
  4540. </dict>
  4541. <key>Resources/res/cmdoptions.py</key>
  4542. <dict>
  4543. <key>hash2</key>
  4544. <data>
  4545. 0bXhKutppZLBgAL54iK3tTrj+JRVbUB5M/2pHv/wnKk=
  4546. </data>
  4547. </dict>
  4548. <key>Resources/res/codec.py</key>
  4549. <dict>
  4550. <key>hash2</key>
  4551. <data>
  4552. 6ly5odKfqrytKT9/7UrlGklHnf1DSK2r9C6cSM4sa28=
  4553. </data>
  4554. </dict>
  4555. <key>Resources/res/codingstatemachine.py</key>
  4556. <dict>
  4557. <key>hash2</key>
  4558. <data>
  4559. K7k69sw3jY5DmTXoSJQVsUtFIQKYPQVOSJJhBuGv/yE=
  4560. </data>
  4561. </dict>
  4562. <key>Resources/res/codingstatemachinedict.py</key>
  4563. <dict>
  4564. <key>hash2</key>
  4565. <data>
  4566. 0GY3Hi2qIZvDrOOJ3AtqppM1RsYxr/66ER4EHjuMiMc=
  4567. </data>
  4568. </dict>
  4569. <key>Resources/res/collections_abc.py</key>
  4570. <dict>
  4571. <key>hash2</key>
  4572. <data>
  4573. uy8xUZ+NDEw916tugUXm8HgwCGiMO0f+RcdnpkfXfOs=
  4574. </data>
  4575. </dict>
  4576. <key>Resources/res/collector.py</key>
  4577. <dict>
  4578. <key>hash2</key>
  4579. <data>
  4580. 3OmYZ3tCoRPGOrELSgQWG+03M+bQHa2+VCA3R/nJAaU=
  4581. </data>
  4582. </dict>
  4583. <key>Resources/res/color.py</key>
  4584. <dict>
  4585. <key>hash2</key>
  4586. <data>
  4587. 9Gh958U3f75WVdLTeC0U9nkGTn2n0wnojKpJ6jQEkIE=
  4588. </data>
  4589. </dict>
  4590. <key>Resources/res/color_triplet.py</key>
  4591. <dict>
  4592. <key>hash2</key>
  4593. <data>
  4594. 3lhQkdJbvWPoLDO+AnYImAWmJvV5dlgYNCVZ97ORaN4=
  4595. </data>
  4596. </dict>
  4597. <key>Resources/res/columns.py</key>
  4598. <dict>
  4599. <key>hash2</key>
  4600. <data>
  4601. HUX0KcMm9dsKNi11fTbiM/h2iDtl8ySCaVcxlalEzq8=
  4602. </data>
  4603. </dict>
  4604. <key>Resources/res/command_context.py</key>
  4605. <dict>
  4606. <key>hash2</key>
  4607. <data>
  4608. RHgIPwtObh5KhMrd3YZTkl8zbVG+6Okml7YbFX4Ehg0=
  4609. </data>
  4610. </dict>
  4611. <key>Resources/res/common.py</key>
  4612. <dict>
  4613. <key>hash2</key>
  4614. <data>
  4615. p+3c83E5+DjlkF35G0O9+kjQRpoejP+2/z0hxZ+eol4=
  4616. </data>
  4617. </dict>
  4618. <key>Resources/res/compat.py</key>
  4619. <dict>
  4620. <key>hash2</key>
  4621. <data>
  4622. IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p/2XjLTwf4=
  4623. </data>
  4624. </dict>
  4625. <key>Resources/res/compatibility_tags.py</key>
  4626. <dict>
  4627. <key>hash2</key>
  4628. <data>
  4629. ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk=
  4630. </data>
  4631. </dict>
  4632. <key>Resources/res/completion.py</key>
  4633. <dict>
  4634. <key>hash2</key>
  4635. <data>
  4636. 2frgchce+GE5Gh9SjEJV+MTcpxy3G9+Es8mpe66nHts=
  4637. </data>
  4638. </dict>
  4639. <key>Resources/res/configs.json</key>
  4640. <dict>
  4641. <key>hash2</key>
  4642. <data>
  4643. X4jiAdHGidP4bRh7nudLRn/sT5hXg8RYlMp1WEe5aAg=
  4644. </data>
  4645. </dict>
  4646. <key>Resources/res/configuration.py</key>
  4647. <dict>
  4648. <key>hash2</key>
  4649. <data>
  4650. NB5uf8HIX8+li95YLoZO09nALIWlLCHDF5aifSKcBn8=
  4651. </data>
  4652. </dict>
  4653. <key>Resources/res/connection.py</key>
  4654. <dict>
  4655. <key>hash2</key>
  4656. <data>
  4657. 5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk=
  4658. </data>
  4659. </dict>
  4660. <key>Resources/res/connectionpool.py</key>
  4661. <dict>
  4662. <key>hash2</key>
  4663. <data>
  4664. ItVDasDnPRPP9R8bNxY7tPBlC724nJ9nlxVgXG/SLbI=
  4665. </data>
  4666. </dict>
  4667. <key>Resources/res/console.py</key>
  4668. <dict>
  4669. <key>hash2</key>
  4670. <data>
  4671. pDvkbLkvtZIMIwQx/jkZ+seyNl4zGBLviXoWXte9fwg=
  4672. </data>
  4673. </dict>
  4674. <key>Resources/res/constrain.py</key>
  4675. <dict>
  4676. <key>hash2</key>
  4677. <data>
  4678. 1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q=
  4679. </data>
  4680. </dict>
  4681. <key>Resources/res/constructors.py</key>
  4682. <dict>
  4683. <key>hash2</key>
  4684. <data>
  4685. 8YE+eNXMSZ1lgsJZg+HnIo8EdaGfiOM2t3EaLlLD5Og=
  4686. </data>
  4687. </dict>
  4688. <key>Resources/res/containers.py</key>
  4689. <dict>
  4690. <key>hash2</key>
  4691. <data>
  4692. aKgm5UDHn5Nmui6IJaKdsZhbHClh/X7D+/Wg8Ehrr7s=
  4693. </data>
  4694. </dict>
  4695. <key>Resources/res/control.py</key>
  4696. <dict>
  4697. <key>hash2</key>
  4698. <data>
  4699. DSkHTUQLorfSERAKE/oTAEUFefZnZp4bQb4q8rHbKws=
  4700. </data>
  4701. </dict>
  4702. <key>Resources/res/controller.py</key>
  4703. <dict>
  4704. <key>hash2</key>
  4705. <data>
  4706. bAYrt7x/VH4toNpI066LQxbHpYGpY1MxxmZAhspplvw=
  4707. </data>
  4708. </dict>
  4709. <key>Resources/res/cookies.py</key>
  4710. <dict>
  4711. <key>hash2</key>
  4712. <data>
  4713. kD3kNEcCj+mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM=
  4714. </data>
  4715. </dict>
  4716. <key>Resources/res/core.py</key>
  4717. <dict>
  4718. <key>hash2</key>
  4719. <data>
  4720. ZwiOsv+sD/ouU1ft8wy/xZ3LQ7UbcVzyqj2XNyrsZis=
  4721. </data>
  4722. </dict>
  4723. <key>Resources/res/cp949prober.py</key>
  4724. <dict>
  4725. <key>hash2</key>
  4726. <data>
  4727. 0jKRV7fECuWI16rNnks0ZECKA1iZYCIEaP8A1ZvjUSI=
  4728. </data>
  4729. </dict>
  4730. <key>Resources/res/database.py</key>
  4731. <dict>
  4732. <key>hash2</key>
  4733. <data>
  4734. o/mw0fAr93NDAHHHfqG54Y1Hi9Rkfrp2BX15XWZYK50=
  4735. </data>
  4736. </dict>
  4737. <key>Resources/res/datetime.py</key>
  4738. <dict>
  4739. <key>hash2</key>
  4740. <data>
  4741. m21Y3wAtQc+ji6Veb6k/M5g6A0ZyFI4egchTdnwh+pQ=
  4742. </data>
  4743. </dict>
  4744. <key>Resources/res/debug.py</key>
  4745. <dict>
  4746. <key>hash2</key>
  4747. <data>
  4748. AesEID+4gPFDWTwPiPaGZuD4twdT+imaGuMR5ZfSn8s=
  4749. </data>
  4750. </dict>
  4751. <key>Resources/res/default_styles.py</key>
  4752. <dict>
  4753. <key>hash2</key>
  4754. <data>
  4755. +Fe318kMVI/IwciK5POpThcO0+9DYJ67TZAN6DlmlmM=
  4756. </data>
  4757. </dict>
  4758. <key>Resources/res/deprecation.py</key>
  4759. <dict>
  4760. <key>hash2</key>
  4761. <data>
  4762. NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8=
  4763. </data>
  4764. </dict>
  4765. <key>Resources/res/diagnose.py</key>
  4766. <dict>
  4767. <key>hash2</key>
  4768. <data>
  4769. an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24=
  4770. </data>
  4771. </dict>
  4772. <key>Resources/res/direct_url.py</key>
  4773. <dict>
  4774. <key>hash2</key>
  4775. <data>
  4776. EepBxI97j7wSZ3AmRETYyVTmR9NoTas15vc8popxVTg=
  4777. </data>
  4778. </dict>
  4779. <key>Resources/res/direct_url_helpers.py</key>
  4780. <dict>
  4781. <key>hash2</key>
  4782. <data>
  4783. 6F1tc2rcKaCZmgfVwsE6ObIe/Pux23mUVYA+2D9wCFc=
  4784. </data>
  4785. </dict>
  4786. <key>Resources/res/distro.py</key>
  4787. <dict>
  4788. <key>hash2</key>
  4789. <data>
  4790. UZO1LjIhtFCMdlbiz39gj3raV+Amf3SBwzGzfApiMHw=
  4791. </data>
  4792. </dict>
  4793. <key>Resources/res/download.py</key>
  4794. <dict>
  4795. <key>hash2</key>
  4796. <data>
  4797. e4hw088zGo26WmJaMIRvCniLlLmoOjqolGyfHjsCkCQ=
  4798. </data>
  4799. </dict>
  4800. <key>Resources/res/editable_legacy.py</key>
  4801. <dict>
  4802. <key>hash2</key>
  4803. <data>
  4804. YeR0KadWXw/ZheC1NtAG1qVIEkOgRGHc23x+YtGW7NU=
  4805. </data>
  4806. </dict>
  4807. <key>Resources/res/egg_link.py</key>
  4808. <dict>
  4809. <key>hash2</key>
  4810. <data>
  4811. ZryCchR/yQSCsdsMkCpxQjjLbQxObA5GDtLG0RR5mGc=
  4812. </data>
  4813. </dict>
  4814. <key>Resources/res/emoji.py</key>
  4815. <dict>
  4816. <key>hash2</key>
  4817. <data>
  4818. omTF9asaAnsM4yLY94eR/9dgRRSm1lHUszX20D1yYCQ=
  4819. </data>
  4820. </dict>
  4821. <key>Resources/res/encoding.py</key>
  4822. <dict>
  4823. <key>hash2</key>
  4824. <data>
  4825. qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK+dIzb6+XJsL0=
  4826. </data>
  4827. </dict>
  4828. <key>Resources/res/entry_points.txt</key>
  4829. <dict>
  4830. <key>hash2</key>
  4831. <data>
  4832. xg35gOct0aY8S3ftLtweJ0uw3KBAIVyW4k+0Jx1rkNE=
  4833. </data>
  4834. </dict>
  4835. <key>Resources/res/entrypoints.py</key>
  4836. <dict>
  4837. <key>hash2</key>
  4838. <data>
  4839. YlhLTRl2oHBAuqhc+zmL7USS67TPWVHImjeAQHreZTQ=
  4840. </data>
  4841. </dict>
  4842. <key>Resources/res/enums.py</key>
  4843. <dict>
  4844. <key>hash2</key>
  4845. <data>
  4846. TzECiZoCKNMqgwU76cPCeKWFBqaWvAdLMev5/bCkhY8=
  4847. </data>
  4848. </dict>
  4849. <key>Resources/res/errors.py</key>
  4850. <dict>
  4851. <key>hash2</key>
  4852. <data>
  4853. 5pP3Kc5d4QJ/c0KFsxrfyhjiPVe7J1zOqSFbFAzcV+Y=
  4854. </data>
  4855. </dict>
  4856. <key>Resources/res/escprober.py</key>
  4857. <dict>
  4858. <key>hash2</key>
  4859. <data>
  4860. Kho48X65xE0scFylIdeJjM2bcbvRvv0h0WUbMWrJD3A=
  4861. </data>
  4862. </dict>
  4863. <key>Resources/res/escsm.py</key>
  4864. <dict>
  4865. <key>hash2</key>
  4866. <data>
  4867. AqyXpA2FQFD7k+buBty/7itGEYkhmVa8X09NLRul3QM=
  4868. </data>
  4869. </dict>
  4870. <key>Resources/res/eucjpprober.py</key>
  4871. <dict>
  4872. <key>hash2</key>
  4873. <data>
  4874. 5KYaM9fsxkRYzw1b5k0fL+j/+ezIw+ij9r97a9MHxLY=
  4875. </data>
  4876. </dict>
  4877. <key>Resources/res/euckrfreq.py</key>
  4878. <dict>
  4879. <key>hash2</key>
  4880. <data>
  4881. 3mHuRvXfsq/QcQysDQFb8qSudvTiol71C6Ic2w57tKM=
  4882. </data>
  4883. </dict>
  4884. <key>Resources/res/euckrprober.py</key>
  4885. <dict>
  4886. <key>hash2</key>
  4887. <data>
  4888. hiFT6wM174GIwRvqDsIcuOc+dDsq2uPKMKbyV8+1Xnc=
  4889. </data>
  4890. </dict>
  4891. <key>Resources/res/euctwfreq.py</key>
  4892. <dict>
  4893. <key>hash2</key>
  4894. <data>
  4895. 2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd+vmZYFFM=
  4896. </data>
  4897. </dict>
  4898. <key>Resources/res/euctwprober.py</key>
  4899. <dict>
  4900. <key>hash2</key>
  4901. <data>
  4902. NxbpNdBtU0VFI0bKfGfDkpP7S2/8/6FlO87dVH0ogws=
  4903. </data>
  4904. </dict>
  4905. <key>Resources/res/exceptions.py</key>
  4906. <dict>
  4907. <key>hash2</key>
  4908. <data>
  4909. 0Mnno3KHTNfXRfY7638NufOPkUb6mXOm+Lqj+4x2w8A=
  4910. </data>
  4911. </dict>
  4912. <key>Resources/res/ext.py</key>
  4913. <dict>
  4914. <key>hash2</key>
  4915. <data>
  4916. C5MK8JhVYGYFWPvxsORsqZAnvOXefYQ57m1Ym0luW5M=
  4917. </data>
  4918. </dict>
  4919. <key>Resources/res/factory.py</key>
  4920. <dict>
  4921. <key>hash2</key>
  4922. <data>
  4923. y1Q2fsV1GKDKPitoapOLLEs75WNzEpd4l/RezCt927c=
  4924. </data>
  4925. </dict>
  4926. <key>Resources/res/fallback.py</key>
  4927. <dict>
  4928. <key>hash2</key>
  4929. <data>
  4930. tvNBHyxxFbuVlC8GZShETClJxjLiDMOja4XwwyvNm2g=
  4931. </data>
  4932. </dict>
  4933. <key>Resources/res/fields.py</key>
  4934. <dict>
  4935. <key>hash2</key>
  4936. <data>
  4937. kvLDCg/JmH1lLjUUEY/FLS8UhY7hBvDPuVETbY8mdrM=
  4938. </data>
  4939. </dict>
  4940. <key>Resources/res/file_cache.py</key>
  4941. <dict>
  4942. <key>hash2</key>
  4943. <data>
  4944. GpexcE29LoY4MaZwPUTcUBZaDdcsjqyLxZFznk8Hbr4=
  4945. </data>
  4946. </dict>
  4947. <key>Resources/res/file_proxy.py</key>
  4948. <dict>
  4949. <key>hash2</key>
  4950. <data>
  4951. Tl9THMDZ+Pk5Wm8sI1gGg/U5DhusmxD+FZ0fUbcU0W0=
  4952. </data>
  4953. </dict>
  4954. <key>Resources/res/filepost.py</key>
  4955. <dict>
  4956. <key>hash2</key>
  4957. <data>
  4958. 5b/qqgRHVlL7uLtdAYBzBh+GHmU5AfJVt/2N0XS3PeY=
  4959. </data>
  4960. </dict>
  4961. <key>Resources/res/filesize.py</key>
  4962. <dict>
  4963. <key>hash2</key>
  4964. <data>
  4965. 9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY=
  4966. </data>
  4967. </dict>
  4968. <key>Resources/res/filesystem.py</key>
  4969. <dict>
  4970. <key>hash2</key>
  4971. <data>
  4972. RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq+F6fpw8=
  4973. </data>
  4974. </dict>
  4975. <key>Resources/res/filetypes.py</key>
  4976. <dict>
  4977. <key>hash2</key>
  4978. <data>
  4979. i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU=
  4980. </data>
  4981. </dict>
  4982. <key>Resources/res/filewrapper.py</key>
  4983. <dict>
  4984. <key>hash2</key>
  4985. <data>
  4986. X4BAQOO26GNOR7nH/fhTzAfeuct2rBQcx/15MyFBpcs=
  4987. </data>
  4988. </dict>
  4989. <key>Resources/res/filter.py</key>
  4990. <dict>
  4991. <key>hash2</key>
  4992. <data>
  4993. j5aLM9a9wSx6eH1oy473oSkJ02hGWNptBlVo4s1g/30=
  4994. </data>
  4995. </dict>
  4996. <key>Resources/res/format_control.py</key>
  4997. <dict>
  4998. <key>hash2</key>
  4999. <data>
  5000. DJpMYjxeYKKQdwNcML2/F0vtAh+qnKTYe+CpTxQe+4g=
  5001. </data>
  5002. </dict>
  5003. <key>Resources/res/formatter.py</key>
  5004. <dict>
  5005. <key>hash2</key>
  5006. <data>
  5007. J9OL9hXLJKZk7moUgKwpjW9HNf4WlJFg/o/+Z/S/tTY=
  5008. </data>
  5009. </dict>
  5010. <key>Resources/res/found_candidates.py</key>
  5011. <dict>
  5012. <key>hash2</key>
  5013. <data>
  5014. hvL3Hoa9VaYo+qEOZkBi2Iqw251UDxPz+uMHVaWmLpE=
  5015. </data>
  5016. </dict>
  5017. <key>Resources/res/freeze.py</key>
  5018. <dict>
  5019. <key>hash2</key>
  5020. <data>
  5021. 2qjQrH9KWi5Roav0CuR7vc7hWm4uOi/0l6tp3ESKDHM=
  5022. </data>
  5023. </dict>
  5024. <key>Resources/res/gb2312freq.py</key>
  5025. <dict>
  5026. <key>hash2</key>
  5027. <data>
  5028. 49OrdXzD+HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY=
  5029. </data>
  5030. </dict>
  5031. <key>Resources/res/gb2312prober.py</key>
  5032. <dict>
  5033. <key>hash2</key>
  5034. <data>
  5035. KPEBueaSLSvBpFeINMu0D6TgHcR90e5PaQawifzF4o0=
  5036. </data>
  5037. </dict>
  5038. <key>Resources/res/git.py</key>
  5039. <dict>
  5040. <key>hash2</key>
  5041. <data>
  5042. mjhwudCx9WlLNkxZ6/kOKmueF0rLoU2i1xeASKF6yiQ=
  5043. </data>
  5044. </dict>
  5045. <key>Resources/res/glibc.py</key>
  5046. <dict>
  5047. <key>hash2</key>
  5048. <data>
  5049. Mesxxgg3BLxheLZx+dSf30b6gKpOgdVXw6W++uHSszQ=
  5050. </data>
  5051. </dict>
  5052. <key>Resources/res/groff.py</key>
  5053. <dict>
  5054. <key>hash2</key>
  5055. <data>
  5056. xy8Zf3tXOo6MWrXh7yPGWx3lVEkg/DhY4CxmsDb0IVo=
  5057. </data>
  5058. </dict>
  5059. <key>Resources/res/hash.py</key>
  5060. <dict>
  5061. <key>hash2</key>
  5062. <data>
  5063. EVVOuvGtoPEdFi8SNnmdqlCQrhCxV+kJsdwtdcCnXGQ=
  5064. </data>
  5065. </dict>
  5066. <key>Resources/res/hashes.py</key>
  5067. <dict>
  5068. <key>hash2</key>
  5069. <data>
  5070. MjOigC75z6qoRMkgHiHqot7eqxfwDZSrEflJMPm+bHE=
  5071. </data>
  5072. </dict>
  5073. <key>Resources/res/hebrewprober.py</key>
  5074. <dict>
  5075. <key>hash2</key>
  5076. <data>
  5077. 96T/Lj/OmW+fK7JrSHojYjyG3fsGgbzkoTNleZ3kfYE=
  5078. </data>
  5079. </dict>
  5080. <key>Resources/res/help.py</key>
  5081. <dict>
  5082. <key>hash2</key>
  5083. <data>
  5084. FnAAklv8MGm/qb2UilDQgS6l0cUttiCFKUjx0zn2XNA=
  5085. </data>
  5086. </dict>
  5087. <key>Resources/res/helpers.py</key>
  5088. <dict>
  5089. <key>hash2</key>
  5090. <data>
  5091. BZJHCA8SS0pYio30KGQTc9w2qMOaK4YpZ7hcvHbnTgk=
  5092. </data>
  5093. </dict>
  5094. <key>Resources/res/heuristics.py</key>
  5095. <dict>
  5096. <key>hash2</key>
  5097. <data>
  5098. 8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI=
  5099. </data>
  5100. </dict>
  5101. <key>Resources/res/highlighter.py</key>
  5102. <dict>
  5103. <key>hash2</key>
  5104. <data>
  5105. p3C1g4QYzezFKdR7NF9EhPbzQDvdPUhGRgSyGGEmPko=
  5106. </data>
  5107. </dict>
  5108. <key>Resources/res/hooks.py</key>
  5109. <dict>
  5110. <key>hash2</key>
  5111. <data>
  5112. CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ=
  5113. </data>
  5114. </dict>
  5115. <key>Resources/res/html.py</key>
  5116. <dict>
  5117. <key>hash2</key>
  5118. <data>
  5119. PIzAyilNqaTzSSP2slDG2VDLE3qNioWy2rgtSSoviuI=
  5120. </data>
  5121. </dict>
  5122. <key>Resources/res/idnadata.py</key>
  5123. <dict>
  5124. <key>hash2</key>
  5125. <data>
  5126. xUjqKqiJV8Ho/XzBpAtv5JFoVPSupK+SUXvtjygUHqw=
  5127. </data>
  5128. </dict>
  5129. <key>Resources/res/img.py</key>
  5130. <dict>
  5131. <key>hash2</key>
  5132. <data>
  5133. XKXmg2/XONrR4mtq2jfEU8XCsoln3VSGTw+UYiEokys=
  5134. </data>
  5135. </dict>
  5136. <key>Resources/res/index.py</key>
  5137. <dict>
  5138. <key>hash2</key>
  5139. <data>
  5140. HFiDG7LMoaBs829WuotrfIwcErOOExUOR/AeBtw/TCU=
  5141. </data>
  5142. </dict>
  5143. <key>Resources/res/initialise.py</key>
  5144. <dict>
  5145. <key>hash2</key>
  5146. <data>
  5147. +hIny86ClXo39ixh5iSCfUIa2f/h/bgKRDW7gqs+KLU=
  5148. </data>
  5149. </dict>
  5150. <key>Resources/res/initialise_test.py</key>
  5151. <dict>
  5152. <key>hash2</key>
  5153. <data>
  5154. BbPy+XfyHwJ6zKozuQOvNvQZzsx9vdb/0bYXn7hsBTc=
  5155. </data>
  5156. </dict>
  5157. <key>Resources/res/inject_securetransport.py</key>
  5158. <dict>
  5159. <key>hash2</key>
  5160. <data>
  5161. o+QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg=
  5162. </data>
  5163. </dict>
  5164. <key>Resources/res/inspect.py</key>
  5165. <dict>
  5166. <key>hash2</key>
  5167. <data>
  5168. 2wSPt9yfr3r6g+s2S5L6PvRtaHNVyb4TuodMStJ39cw=
  5169. </data>
  5170. </dict>
  5171. <key>Resources/res/install.py</key>
  5172. <dict>
  5173. <key>hash2</key>
  5174. <data>
  5175. sdi44xeJlENfU+ziPl1TbUC3no2+ZGDpwBigmX1JuM0=
  5176. </data>
  5177. </dict>
  5178. <key>Resources/res/installation_report.py</key>
  5179. <dict>
  5180. <key>hash2</key>
  5181. <data>
  5182. ueXv1RiMLAucaTuEvXACXX5R64/Wcm8b1Ztqx4Rd5xI=
  5183. </data>
  5184. </dict>
  5185. <key>Resources/res/installed.py</key>
  5186. <dict>
  5187. <key>hash2</key>
  5188. <data>
  5189. NI2OgsgH9iBq9l5vB+56vOg5YsybOy+AU4VE5CSCO2I=
  5190. </data>
  5191. </dict>
  5192. <key>Resources/res/intranges.py</key>
  5193. <dict>
  5194. <key>hash2</key>
  5195. <data>
  5196. YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir+aywniInqg=
  5197. </data>
  5198. </dict>
  5199. <key>Resources/res/irc.py</key>
  5200. <dict>
  5201. <key>hash2</key>
  5202. <data>
  5203. Ep+m8jd3voFO6Fv57cUGFmz6JVA67IEgyiBOwv0N4a0=
  5204. </data>
  5205. </dict>
  5206. <key>Resources/res/isatty_test.py</key>
  5207. <dict>
  5208. <key>hash2</key>
  5209. <data>
  5210. Pg26LRpv0yQDB5Ac+sxgVXG7hsA1NYvapFgApZfYzZg=
  5211. </data>
  5212. </dict>
  5213. <key>Resources/res/jisfreq.py</key>
  5214. <dict>
  5215. <key>hash2</key>
  5216. <data>
  5217. mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E=
  5218. </data>
  5219. </dict>
  5220. <key>Resources/res/johabfreq.py</key>
  5221. <dict>
  5222. <key>hash2</key>
  5223. <data>
  5224. dBpOYG34GRX6SL8k/LbS9rxZPMjLjoMlgZ03Pz5Hmqc=
  5225. </data>
  5226. </dict>
  5227. <key>Resources/res/johabprober.py</key>
  5228. <dict>
  5229. <key>hash2</key>
  5230. <data>
  5231. O1Qw9nVzRnun7vZp4UZM7wvJSv9W941mEU9uDMnY3DU=
  5232. </data>
  5233. </dict>
  5234. <key>Resources/res/jpcntx.py</key>
  5235. <dict>
  5236. <key>hash2</key>
  5237. <data>
  5238. uhHrYWkLxE/rF5OkHKInm0HUsrjgKHHVQvtt3UcvotA=
  5239. </data>
  5240. </dict>
  5241. <key>Resources/res/json.py</key>
  5242. <dict>
  5243. <key>hash2</key>
  5244. <data>
  5245. EYp9ucj+nDjYDkHCV6Mk1ve8nUOpuFLaW76X50Mis2M=
  5246. </data>
  5247. </dict>
  5248. <key>Resources/res/jupyter.py</key>
  5249. <dict>
  5250. <key>hash2</key>
  5251. <data>
  5252. QyoKoE/8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE=
  5253. </data>
  5254. </dict>
  5255. <key>Resources/res/labels.py</key>
  5256. <dict>
  5257. <key>hash2</key>
  5258. <data>
  5259. 4AO/KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E=
  5260. </data>
  5261. </dict>
  5262. <key>Resources/res/langbulgarianmodel.py</key>
  5263. <dict>
  5264. <key>hash2</key>
  5265. <data>
  5266. vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4=
  5267. </data>
  5268. </dict>
  5269. <key>Resources/res/langgreekmodel.py</key>
  5270. <dict>
  5271. <key>hash2</key>
  5272. <data>
  5273. JfB7bupjjJH2w3X/mYnQr9cJA/7EuITC2cRW13fUjeI=
  5274. </data>
  5275. </dict>
  5276. <key>Resources/res/langhebrewmodel.py</key>
  5277. <dict>
  5278. <key>hash2</key>
  5279. <data>
  5280. 3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc=
  5281. </data>
  5282. </dict>
  5283. <key>Resources/res/langhungarianmodel.py</key>
  5284. <dict>
  5285. <key>hash2</key>
  5286. <data>
  5287. WxbeQIxkv8YtApiNqxQcvj+tMycsoI4Xy+fwkDHpP/Y=
  5288. </data>
  5289. </dict>
  5290. <key>Resources/res/langrussianmodel.py</key>
  5291. <dict>
  5292. <key>hash2</key>
  5293. <data>
  5294. s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl/8xSsac/DLY=
  5295. </data>
  5296. </dict>
  5297. <key>Resources/res/langthaimodel.py</key>
  5298. <dict>
  5299. <key>hash2</key>
  5300. <data>
  5301. 7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI=
  5302. </data>
  5303. </dict>
  5304. <key>Resources/res/langturkishmodel.py</key>
  5305. <dict>
  5306. <key>hash2</key>
  5307. <data>
  5308. XY0eGdTIy4eQ9Xg1LVPZacb+UBhHBR+cq0IpPVHowKc=
  5309. </data>
  5310. </dict>
  5311. <key>Resources/res/languages.py</key>
  5312. <dict>
  5313. <key>hash2</key>
  5314. <data>
  5315. FhvBIdZFxRQ+dTwkb/0madRKgVBCaUMQz9I5xqjE5iQ=
  5316. </data>
  5317. </dict>
  5318. <key>Resources/res/latex.py</key>
  5319. <dict>
  5320. <key>hash2</key>
  5321. <data>
  5322. FGzJ+YqSTE8z/voWPdzvLY5Tq8jE/ygjGjM6dXZJ8+k=
  5323. </data>
  5324. </dict>
  5325. <key>Resources/res/latin1prober.py</key>
  5326. <dict>
  5327. <key>hash2</key>
  5328. <data>
  5329. p15EEmFbmQUwbKLC7lOJVGHEZwcG45ubEZYTGu01J5g=
  5330. </data>
  5331. </dict>
  5332. <key>Resources/res/layout.py</key>
  5333. <dict>
  5334. <key>hash2</key>
  5335. <data>
  5336. RFYL6HdCFsHf9WRpcvi3w+fpj+8O5dMZ8W96VdKNdbI=
  5337. </data>
  5338. </dict>
  5339. <key>Resources/res/lazy_wheel.py</key>
  5340. <dict>
  5341. <key>hash2</key>
  5342. <data>
  5343. 2PXVduYZPCPZkkQFe1J1GbfHJWeCU++FXonGyIfw9eU=
  5344. </data>
  5345. </dict>
  5346. <key>Resources/res/lexer.py</key>
  5347. <dict>
  5348. <key>hash2</key>
  5349. <data>
  5350. 2BpqLlT2ExvOOi7vnjK5nB4Fp+m52ldiPaXMox5uwug=
  5351. </data>
  5352. </dict>
  5353. <key>Resources/res/link.py</key>
  5354. <dict>
  5355. <key>hash2</key>
  5356. <data>
  5357. 6OEk3bt41WU7QZoiyuoVPGsKOU+J/BbDDhouKbIXm0Y=
  5358. </data>
  5359. </dict>
  5360. <key>Resources/res/list.py</key>
  5361. <dict>
  5362. <key>hash2</key>
  5363. <data>
  5364. LNL6016BPvFpAZVzNoo/DWDzvRFpfw//m9Rp5kw+yUM=
  5365. </data>
  5366. </dict>
  5367. <key>Resources/res/live.py</key>
  5368. <dict>
  5369. <key>hash2</key>
  5370. <data>
  5371. vZzYvu7fqwlv3Gthl2xiw1Dc/O80VlGcCV0DOHwCyDM=
  5372. </data>
  5373. </dict>
  5374. <key>Resources/res/live_render.py</key>
  5375. <dict>
  5376. <key>hash2</key>
  5377. <data>
  5378. zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64=
  5379. </data>
  5380. </dict>
  5381. <key>Resources/res/locators.py</key>
  5382. <dict>
  5383. <key>hash2</key>
  5384. <data>
  5385. wNzG+zERzS/XGls+nBPVVyLRHa2skUlkn0+5n0trMWA=
  5386. </data>
  5387. </dict>
  5388. <key>Resources/res/logging.py</key>
  5389. <dict>
  5390. <key>hash2</key>
  5391. <data>
  5392. uB+cB+3Q4bmXDLLpbOWkmFviw+Fde39zyMV6tKJ2WHQ=
  5393. </data>
  5394. </dict>
  5395. <key>Resources/res/low_level.py</key>
  5396. <dict>
  5397. <key>hash2</key>
  5398. <data>
  5399. B2JBB2/NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M=
  5400. </data>
  5401. </dict>
  5402. <key>Resources/res/macos.py</key>
  5403. <dict>
  5404. <key>hash2</key>
  5405. <data>
  5406. LueVOoVgGWDBwQb8OFwXkVKfVn33CM1Lkwf1+A86tRQ=
  5407. </data>
  5408. </dict>
  5409. <key>Resources/res/macromanprober.py</key>
  5410. <dict>
  5411. <key>hash2</key>
  5412. <data>
  5413. 9anfzmY6TBfUPDyBDOdY07kqmTHpZ1tK0jL+p1JWcOY=
  5414. </data>
  5415. </dict>
  5416. <key>Resources/res/main.py</key>
  5417. <dict>
  5418. <key>hash2</key>
  5419. <data>
  5420. Uzxt/YD1hIvB1AW5mxt6IVcht5G712AtMqdo51UMhmQ=
  5421. </data>
  5422. </dict>
  5423. <key>Resources/res/main_parser.py</key>
  5424. <dict>
  5425. <key>hash2</key>
  5426. <data>
  5427. laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn+vmL0GG90w=
  5428. </data>
  5429. </dict>
  5430. <key>Resources/res/makefile.py</key>
  5431. <dict>
  5432. <key>hash2</key>
  5433. <data>
  5434. nbzt3i0agPVP07jqqgjhaYjMmuAi/W5E0EywZivVO8E=
  5435. </data>
  5436. </dict>
  5437. <key>Resources/res/manifest.py</key>
  5438. <dict>
  5439. <key>hash2</key>
  5440. <data>
  5441. nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE=
  5442. </data>
  5443. </dict>
  5444. <key>Resources/res/markers.py</key>
  5445. <dict>
  5446. <key>hash2</key>
  5447. <data>
  5448. TpHHHLgkzyT7YHbwj+2i6weRaq+Ivy2+MUnrDkjau+U=
  5449. </data>
  5450. </dict>
  5451. <key>Resources/res/markup.py</key>
  5452. <dict>
  5453. <key>hash2</key>
  5454. <data>
  5455. xzF4uAafiEeEYDJYt/vUnJOGoTU8RrH+PH7WcWYXjCg=
  5456. </data>
  5457. </dict>
  5458. <key>Resources/res/mbcharsetprober.py</key>
  5459. <dict>
  5460. <key>hash2</key>
  5461. <data>
  5462. Wr04WNI4F3X/VxEverNG+H25g7u+MDDKlNt+JGj+/uU=
  5463. </data>
  5464. </dict>
  5465. <key>Resources/res/mbcsgroupprober.py</key>
  5466. <dict>
  5467. <key>hash2</key>
  5468. <data>
  5469. iRpaNBjV0DNwYPu/z6TiHgRpwYahiM7ztI/4kZ4Uz9A=
  5470. </data>
  5471. </dict>
  5472. <key>Resources/res/mbcssm.py</key>
  5473. <dict>
  5474. <key>hash2</key>
  5475. <data>
  5476. hUtPvDYgWDaA2dWdgLsshbwRfm3Q5YRlRogdmeRUNQw=
  5477. </data>
  5478. </dict>
  5479. <key>Resources/res/measure.py</key>
  5480. <dict>
  5481. <key>hash2</key>
  5482. <data>
  5483. HmrIJX8sWRTHbgh8MxEay/83VkqNW/70s8aKP5ZcYI8=
  5484. </data>
  5485. </dict>
  5486. <key>Resources/res/mercurial.py</key>
  5487. <dict>
  5488. <key>hash2</key>
  5489. <data>
  5490. 1FG5Zh2ltJZKryO40d2l2Q91FYNazuS16kkpoAVOh0Y=
  5491. </data>
  5492. </dict>
  5493. <key>Resources/res/metadata.py</key>
  5494. <dict>
  5495. <key>hash2</key>
  5496. <data>
  5497. g/DIiu8nBXRzA+mWPRpatHGbmFZqaFoss7z9TG7QSUU=
  5498. </data>
  5499. </dict>
  5500. <key>Resources/res/metadata_editable.py</key>
  5501. <dict>
  5502. <key>hash2</key>
  5503. <data>
  5504. VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew=
  5505. </data>
  5506. </dict>
  5507. <key>Resources/res/metadata_legacy.py</key>
  5508. <dict>
  5509. <key>hash2</key>
  5510. <data>
  5511. o+eU21As175hDC7dluM1fJJ/FqokTIShyWpjKaIpHZw=
  5512. </data>
  5513. </dict>
  5514. <key>Resources/res/misc.py</key>
  5515. <dict>
  5516. <key>hash2</key>
  5517. <data>
  5518. Ds3rSQU7HbdAywwmEBcPnVoLB1Tp/2gL6IbaWcpe8i0=
  5519. </data>
  5520. </dict>
  5521. <key>Resources/res/misc.xml</key>
  5522. <dict>
  5523. <key>hash2</key>
  5524. <data>
  5525. m758gjo5zVeiATLhX+N65ymt52goLyVnNVLXo58wDMs=
  5526. </data>
  5527. </dict>
  5528. <key>Resources/res/mklabels.py</key>
  5529. <dict>
  5530. <key>hash2</key>
  5531. <data>
  5532. GYIeywnpaLnP0GSic8LFWgd0UVvO/l1Nc6YoF+87R/4=
  5533. </data>
  5534. </dict>
  5535. <key>Resources/res/modeline.py</key>
  5536. <dict>
  5537. <key>hash2</key>
  5538. <data>
  5539. eF2vO4LpOGoPvIKKkbPfnyut8hT4UiebZPpb+BYGQdI=
  5540. </data>
  5541. </dict>
  5542. <key>Resources/res/models.py</key>
  5543. <dict>
  5544. <key>hash2</key>
  5545. <data>
  5546. dDZ+iThotky+Noq9yy97cUEJhr3wnY6mv+xR/ePg/lk=
  5547. </data>
  5548. </dict>
  5549. <key>Resources/res/modules.xml</key>
  5550. <dict>
  5551. <key>hash2</key>
  5552. <data>
  5553. KhqPZyEF8g0L4NX0NKbGACrvilY73wzQoPmq69aqFew=
  5554. </data>
  5555. </dict>
  5556. <key>Resources/res/nap.py</key>
  5557. <dict>
  5558. <key>hash2</key>
  5559. <data>
  5560. fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I=
  5561. </data>
  5562. </dict>
  5563. <key>Resources/res/ntlmpool.py</key>
  5564. <dict>
  5565. <key>hash2</key>
  5566. <data>
  5567. NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk=
  5568. </data>
  5569. </dict>
  5570. <key>Resources/res/other.py</key>
  5571. <dict>
  5572. <key>hash2</key>
  5573. <data>
  5574. gPxkk5BdAzWTCgbEHg1lpLi+1F6ZPh5A/aotgLXHnzg=
  5575. </data>
  5576. </dict>
  5577. <key>Resources/res/package_data.py</key>
  5578. <dict>
  5579. <key>hash2</key>
  5580. <data>
  5581. C/jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE=
  5582. </data>
  5583. </dict>
  5584. <key>Resources/res/package_finder.py</key>
  5585. <dict>
  5586. <key>hash2</key>
  5587. <data>
  5588. rrUw4vj7QE/eMt022jw++wQiKznMaUgVBkJ1UCrVUxo=
  5589. </data>
  5590. </dict>
  5591. <key>Resources/res/packages.py</key>
  5592. <dict>
  5593. <key>hash2</key>
  5594. <data>
  5595. njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J/feG2dKWsI=
  5596. </data>
  5597. </dict>
  5598. <key>Resources/res/packaging.py</key>
  5599. <dict>
  5600. <key>hash2</key>
  5601. <data>
  5602. 5Wm6/x7lKrlqVjPI5MBN/RurcRHwVYoQ7Ksrs84de7s=
  5603. </data>
  5604. </dict>
  5605. <key>Resources/res/padding.py</key>
  5606. <dict>
  5607. <key>hash2</key>
  5608. <data>
  5609. kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw=
  5610. </data>
  5611. </dict>
  5612. <key>Resources/res/pager.py</key>
  5613. <dict>
  5614. <key>hash2</key>
  5615. <data>
  5616. SO/ETBFKbg3n/AgOzXm41Sv36YxXAyI3/R+KOY2/uSc=
  5617. </data>
  5618. </dict>
  5619. <key>Resources/res/palette.py</key>
  5620. <dict>
  5621. <key>hash2</key>
  5622. <data>
  5623. lInvR1ODDT2f3UZMfL1grq7dY/pDdKHw4bdUgOGaM4Y=
  5624. </data>
  5625. </dict>
  5626. <key>Resources/res/panel.py</key>
  5627. <dict>
  5628. <key>hash2</key>
  5629. <data>
  5630. wGMe40J8KCGgQoM0LyjRErmGIkv2bsYA71RCXThD0xE=
  5631. </data>
  5632. </dict>
  5633. <key>Resources/res/pangomarkup.py</key>
  5634. <dict>
  5635. <key>hash2</key>
  5636. <data>
  5637. 6LKnQc8yh49f802bF0sPvbzck4QivMYqqoXAPaYP8uU=
  5638. </data>
  5639. </dict>
  5640. <key>Resources/res/parser.py</key>
  5641. <dict>
  5642. <key>hash2</key>
  5643. <data>
  5644. tWP+K1uSxnJyXu3WE0kkH3niAYRBeuUaxeydhzOdhL4=
  5645. </data>
  5646. </dict>
  5647. <key>Resources/res/pip</key>
  5648. <dict>
  5649. <key>hash2</key>
  5650. <data>
  5651. ysyQtMZjKUSqPNKJji6Sl7eFTJCsqBVHJ4jZnT3NP6E=
  5652. </data>
  5653. </dict>
  5654. <key>Resources/res/pip-23.2.1.virtualenv</key>
  5655. <dict>
  5656. <key>hash2</key>
  5657. <data>
  5658. 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
  5659. </data>
  5660. </dict>
  5661. <key>Resources/res/pip-3.12</key>
  5662. <dict>
  5663. <key>hash2</key>
  5664. <data>
  5665. ysyQtMZjKUSqPNKJji6Sl7eFTJCsqBVHJ4jZnT3NP6E=
  5666. </data>
  5667. </dict>
  5668. <key>Resources/res/pip3</key>
  5669. <dict>
  5670. <key>hash2</key>
  5671. <data>
  5672. ysyQtMZjKUSqPNKJji6Sl7eFTJCsqBVHJ4jZnT3NP6E=
  5673. </data>
  5674. </dict>
  5675. <key>Resources/res/pip3.12</key>
  5676. <dict>
  5677. <key>hash2</key>
  5678. <data>
  5679. ysyQtMZjKUSqPNKJji6Sl7eFTJCsqBVHJ4jZnT3NP6E=
  5680. </data>
  5681. </dict>
  5682. <key>Resources/res/pkg_resources.py</key>
  5683. <dict>
  5684. <key>hash2</key>
  5685. <data>
  5686. WjwiNdRsvxqxL4MA5Tb5a/q3Q3sUhdpbZF8wGLtPMI0=
  5687. </data>
  5688. </dict>
  5689. <key>Resources/res/plugin.py</key>
  5690. <dict>
  5691. <key>hash2</key>
  5692. <data>
  5693. j1Fh310RbV2DQ9nvkmkqvlj38gdyuYKllLnGxbc8sJM=
  5694. </data>
  5695. </dict>
  5696. <key>Resources/res/poolmanager.py</key>
  5697. <dict>
  5698. <key>hash2</key>
  5699. <data>
  5700. 0i8cJgrqupza67IBPZ/u9jXvnSxr5UBlVEiUqdkPtYI=
  5701. </data>
  5702. </dict>
  5703. <key>Resources/res/prepare.py</key>
  5704. <dict>
  5705. <key>hash2</key>
  5706. <data>
  5707. nxjIiGRSiUUSRFpwN+Qro7N6BE9jqV4mudJ7CIv9qwY=
  5708. </data>
  5709. </dict>
  5710. <key>Resources/res/pretty.py</key>
  5711. <dict>
  5712. <key>hash2</key>
  5713. <data>
  5714. eLEYN9xVaMNuA6EJVYm4li7HdOHxCqmVKvnOqJpyFt0=
  5715. </data>
  5716. </dict>
  5717. <key>Resources/res/profiles_settings.xml</key>
  5718. <dict>
  5719. <key>hash2</key>
  5720. <data>
  5721. YXLFmX7rPNGcnKK1uX1uKYPN0fpgskYNe7t0BV7cqkY=
  5722. </data>
  5723. </dict>
  5724. <key>Resources/res/progress.py</key>
  5725. <dict>
  5726. <key>hash2</key>
  5727. <data>
  5728. n4KF9vky8/5iYeXcyZPEvzyLplWlDvFLkM5JI0Bs08A=
  5729. </data>
  5730. </dict>
  5731. <key>Resources/res/progress_bar.py</key>
  5732. <dict>
  5733. <key>hash2</key>
  5734. <data>
  5735. cEoBfkc3lLwqba4XKsUpy4vSQKDh2QQ5J2J94+ACFoo=
  5736. </data>
  5737. </dict>
  5738. <key>Resources/res/progress_bars.py</key>
  5739. <dict>
  5740. <key>hash2</key>
  5741. <data>
  5742. So4mPoSjXkXiSHiTzzquH3VVyVD/njXlHJSExYPXAow=
  5743. </data>
  5744. </dict>
  5745. <key>Resources/res/prompt.py</key>
  5746. <dict>
  5747. <key>hash2</key>
  5748. <data>
  5749. x0mW+pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA=
  5750. </data>
  5751. </dict>
  5752. <key>Resources/res/protocol.py</key>
  5753. <dict>
  5754. <key>hash2</key>
  5755. <data>
  5756. 5hHHDDNHckdk8iWH5zEbi+zuIVSF5hbU2jIo47R7lTE=
  5757. </data>
  5758. </dict>
  5759. <key>Resources/res/provider.py</key>
  5760. <dict>
  5761. <key>hash2</key>
  5762. <data>
  5763. 4t23ivjruqM6hKBX1KpGiTt+M4HGhRcZnGLV0c01K7U=
  5764. </data>
  5765. </dict>
  5766. <key>Resources/res/providers.py</key>
  5767. <dict>
  5768. <key>hash2</key>
  5769. <data>
  5770. fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4=
  5771. </data>
  5772. </dict>
  5773. <key>Resources/res/proxy.py</key>
  5774. <dict>
  5775. <key>hash2</key>
  5776. <data>
  5777. zUvPPCJrp6dOF0N4GAVbOcl6o+4uXKSrGiTkkr5vUS4=
  5778. </data>
  5779. </dict>
  5780. <key>Resources/res/py.typed</key>
  5781. <dict>
  5782. <key>hash2</key>
  5783. <data>
  5784. EBVvvPRTn/eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I=
  5785. </data>
  5786. </dict>
  5787. <key>Resources/res/pyopenssl.py</key>
  5788. <dict>
  5789. <key>hash2</key>
  5790. <data>
  5791. hDJh4MhyY/p+oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM=
  5792. </data>
  5793. </dict>
  5794. <key>Resources/res/pyproject.py</key>
  5795. <dict>
  5796. <key>hash2</key>
  5797. <data>
  5798. ltmrXWaMXjiJHbYyzWplTdBvPYPdKk99GjKuQVypGZU=
  5799. </data>
  5800. </dict>
  5801. <key>Resources/res/python</key>
  5802. <dict>
  5803. <key>hash2</key>
  5804. <data>
  5805. 3CkjiXTCOyvOJ+esl+CwfZno3LL1PPK2aBwaiEqBM0Q=
  5806. </data>
  5807. </dict>
  5808. <key>Resources/res/python.py</key>
  5809. <dict>
  5810. <key>hash2</key>
  5811. <data>
  5812. c7jnmKFU9DLxTJW0UbwXt6Z9FJqbBlVsWA1Qr9xSA/w=
  5813. </data>
  5814. </dict>
  5815. <key>Resources/res/python3</key>
  5816. <dict>
  5817. <key>hash2</key>
  5818. <data>
  5819. 3CkjiXTCOyvOJ+esl+CwfZno3LL1PPK2aBwaiEqBM0Q=
  5820. </data>
  5821. </dict>
  5822. <key>Resources/res/python3.12</key>
  5823. <dict>
  5824. <key>hash2</key>
  5825. <data>
  5826. 3CkjiXTCOyvOJ+esl+CwfZno3LL1PPK2aBwaiEqBM0Q=
  5827. </data>
  5828. </dict>
  5829. <key>Resources/res/pyvenv.cfg</key>
  5830. <dict>
  5831. <key>hash2</key>
  5832. <data>
  5833. 35CeGULo+mJqYwHqZeCbZ13rgpMi8CXMViD8FDIfv1c=
  5834. </data>
  5835. </dict>
  5836. <key>Resources/res/queue.py</key>
  5837. <dict>
  5838. <key>hash2</key>
  5839. <data>
  5840. nRgX8/eX+/VkvxoX096QWoz8Ps0QHUAExILCY/7PncM=
  5841. </data>
  5842. </dict>
  5843. <key>Resources/res/redToJson.py</key>
  5844. <dict>
  5845. <key>hash2</key>
  5846. <data>
  5847. cUzkYLKxVK64PJOLSPZCMp/Nxd992qIxWcgRpbvOr7w=
  5848. </data>
  5849. </dict>
  5850. <key>Resources/res/redis_cache.py</key>
  5851. <dict>
  5852. <key>hash2</key>
  5853. <data>
  5854. mp+QWonP40I3xJGK3XVO+Gs9a3UjzlqqEmp9iLJH9F4=
  5855. </data>
  5856. </dict>
  5857. <key>Resources/res/regexopt.py</key>
  5858. <dict>
  5859. <key>hash2</key>
  5860. <data>
  5861. jg1ALogcYGU96TQS9isBl6dCrvw5y5++BP/K+uFk/8s=
  5862. </data>
  5863. </dict>
  5864. <key>Resources/res/region.py</key>
  5865. <dict>
  5866. <key>hash2</key>
  5867. <data>
  5868. rNT9xZrVZTYIXZC0NYn41CJQwYNbR+KecPOxTgQvB8Y=
  5869. </data>
  5870. </dict>
  5871. <key>Resources/res/reporter.py</key>
  5872. <dict>
  5873. <key>hash2</key>
  5874. <data>
  5875. YFm9hQvz4DFCbjZeFTQ56hTz3Ac+mDBnHkeNRVvMHLY=
  5876. </data>
  5877. </dict>
  5878. <key>Resources/res/reporters.py</key>
  5879. <dict>
  5880. <key>hash2</key>
  5881. <data>
  5882. TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE=
  5883. </data>
  5884. </dict>
  5885. <key>Resources/res/repr.py</key>
  5886. <dict>
  5887. <key>hash2</key>
  5888. <data>
  5889. 9Z8otOmM+tyxnyTodvXlectP60lwahjGiDTrbrxPSTg=
  5890. </data>
  5891. </dict>
  5892. <key>Resources/res/req_command.py</key>
  5893. <dict>
  5894. <key>hash2</key>
  5895. <data>
  5896. GqS9jkeHktOy6zRzC6uhcRY7SelnAV1LZ6OfS/gNcEk=
  5897. </data>
  5898. </dict>
  5899. <key>Resources/res/req_file.py</key>
  5900. <dict>
  5901. <key>hash2</key>
  5902. <data>
  5903. 5PCO4GnDEnUENiFj4vD/1QmAMjHNtvN6HXbETZ9UGok=
  5904. </data>
  5905. </dict>
  5906. <key>Resources/res/req_install.py</key>
  5907. <dict>
  5908. <key>hash2</key>
  5909. <data>
  5910. hpG29Bm2PAq7G+ogTatZcNUgjwt0zpdTXtxGw4M/MtU=
  5911. </data>
  5912. </dict>
  5913. <key>Resources/res/req_set.py</key>
  5914. <dict>
  5915. <key>hash2</key>
  5916. <data>
  5917. pSCcIKURDkGb6JAKsc+cdvnvnAJlYPk+p3vvON9M3DY=
  5918. </data>
  5919. </dict>
  5920. <key>Resources/res/req_uninstall.py</key>
  5921. <dict>
  5922. <key>hash2</key>
  5923. <data>
  5924. sGwa/yZ6X2NcRSUJWzUlYkf8bDEjRySAE3aQ5OewIWA=
  5925. </data>
  5926. </dict>
  5927. <key>Resources/res/request.py</key>
  5928. <dict>
  5929. <key>hash2</key>
  5930. <data>
  5931. C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ+5nlBZk=
  5932. </data>
  5933. </dict>
  5934. <key>Resources/res/requirements.py</key>
  5935. <dict>
  5936. <key>hash2</key>
  5937. <data>
  5938. NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA+Xb4m5NA=
  5939. </data>
  5940. </dict>
  5941. <key>Resources/res/resolver.py</key>
  5942. <dict>
  5943. <key>hash2</key>
  5944. <data>
  5945. n2Vn9EC5+7JmcRY5erIPQ4hUWnEUngG0oYS3JW3xXZo=
  5946. </data>
  5947. </dict>
  5948. <key>Resources/res/resolvers.py</key>
  5949. <dict>
  5950. <key>hash2</key>
  5951. <data>
  5952. G8rsLZSq64g5VmIq+lB7UcIJ1gjAxIQJmTF4REZleQ0=
  5953. </data>
  5954. </dict>
  5955. <key>Resources/res/resources.py</key>
  5956. <dict>
  5957. <key>hash2</key>
  5958. <data>
  5959. LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698=
  5960. </data>
  5961. </dict>
  5962. <key>Resources/res/response.py</key>
  5963. <dict>
  5964. <key>hash2</key>
  5965. <data>
  5966. GJpg3Egi9qaJXRwBh5wv+MNuRWan5BIu40oReoxWP28=
  5967. </data>
  5968. </dict>
  5969. <key>Resources/res/resultdict.py</key>
  5970. <dict>
  5971. <key>hash2</key>
  5972. <data>
  5973. ez4FRvN5KaSosJeJ2WzUyKdDdg35HDy/SSLPXKCdt5M=
  5974. </data>
  5975. </dict>
  5976. <key>Resources/res/results.py</key>
  5977. <dict>
  5978. <key>hash2</key>
  5979. <data>
  5980. 9dyqQ+w3MjfmxWbFt8KEPU6IfXeyRdoWp2Og802rUQY=
  5981. </data>
  5982. </dict>
  5983. <key>Resources/res/retry.py</key>
  5984. <dict>
  5985. <key>hash2</key>
  5986. <data>
  5987. 4laWh0HpwGijLiBmdBIYtbhYekQnNzzhx2W9uys0RHA=
  5988. </data>
  5989. </dict>
  5990. <key>Resources/res/rtf.py</key>
  5991. <dict>
  5992. <key>hash2</key>
  5993. <data>
  5994. aA0v/psW6KZI3N18TKDifxeL6mcF8EDXcPXDWI4vhVQ=
  5995. </data>
  5996. </dict>
  5997. <key>Resources/res/rule.py</key>
  5998. <dict>
  5999. <key>hash2</key>
  6000. <data>
  6001. 0fNaS/aERa3UMRc3T5WMpN/sumtDxfaor2y3of1ftBk=
  6002. </data>
  6003. </dict>
  6004. <key>Resources/res/sbcharsetprober.py</key>
  6005. <dict>
  6006. <key>hash2</key>
  6007. <data>
  6008. +nd3F90i7GpXLjehLVHqVBE0KlWzGvQUPETLBNn4o6U=
  6009. </data>
  6010. </dict>
  6011. <key>Resources/res/sbcsgroupprober.py</key>
  6012. <dict>
  6013. <key>hash2</key>
  6014. <data>
  6015. gcgI0fOfgw/3YTClpbra/MNxwyEyJ3eUXraoLHYb59E=
  6016. </data>
  6017. </dict>
  6018. <key>Resources/res/scanner.py</key>
  6019. <dict>
  6020. <key>hash2</key>
  6021. <data>
  6022. b/nu5/f3HCgSdp5S/aNRBQ1MSCm4ZjDwec2OmTRickw=
  6023. </data>
  6024. </dict>
  6025. <key>Resources/res/scheme.py</key>
  6026. <dict>
  6027. <key>hash2</key>
  6028. <data>
  6029. 3EFQp/ICu/shH1+TBqhl0QAusKCPDFOlgHFeN4XowWs=
  6030. </data>
  6031. </dict>
  6032. <key>Resources/res/scope.py</key>
  6033. <dict>
  6034. <key>hash2</key>
  6035. <data>
  6036. TMUU8qo17thyqQCPqjDLYpg/UU1k5qVd+WwiJvnJVas=
  6037. </data>
  6038. </dict>
  6039. <key>Resources/res/screen.py</key>
  6040. <dict>
  6041. <key>hash2</key>
  6042. <data>
  6043. YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8=
  6044. </data>
  6045. </dict>
  6046. <key>Resources/res/scripts.py</key>
  6047. <dict>
  6048. <key>hash2</key>
  6049. <data>
  6050. BmkTKmiTk4m2cj+iueliatwz3ut/9SsABBW51vnQnZU=
  6051. </data>
  6052. </dict>
  6053. <key>Resources/res/sdist.py</key>
  6054. <dict>
  6055. <key>hash2</key>
  6056. <data>
  6057. SQBdkatXSigKGG/SaD0U0p1Jwdfrg26UCNcHgkXZfdA=
  6058. </data>
  6059. </dict>
  6060. <key>Resources/res/search.py</key>
  6061. <dict>
  6062. <key>hash2</key>
  6063. <data>
  6064. sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi//iUI=
  6065. </data>
  6066. </dict>
  6067. <key>Resources/res/search_scope.py</key>
  6068. <dict>
  6069. <key>hash2</key>
  6070. <data>
  6071. ASVyyZxiJILw7bTIVVpJx8J293M3Hk5F33ilGn0e80c=
  6072. </data>
  6073. </dict>
  6074. <key>Resources/res/securetransport.py</key>
  6075. <dict>
  6076. <key>hash2</key>
  6077. <data>
  6078. yhZdmVjY6PI6EeFbp7qYOp6+vp1Rkv2NMuOGaEj7pmc=
  6079. </data>
  6080. </dict>
  6081. <key>Resources/res/segment.py</key>
  6082. <dict>
  6083. <key>hash2</key>
  6084. <data>
  6085. XLnJEFvcV3bjaVzMNUJiem3n8lvvI9TJ5PTu+IG2uTg=
  6086. </data>
  6087. </dict>
  6088. <key>Resources/res/selection_prefs.py</key>
  6089. <dict>
  6090. <key>hash2</key>
  6091. <data>
  6092. KZdi66gsR+/RUXUr9uejssk3rmTHrQVJWeNA2sV+VSY=
  6093. </data>
  6094. </dict>
  6095. <key>Resources/res/self_outdated_check.py</key>
  6096. <dict>
  6097. <key>hash2</key>
  6098. <data>
  6099. pnqBuKKZQ8OxKP0MaUUiDHl3AtyoMJHHG4rMQ7YcYXY=
  6100. </data>
  6101. </dict>
  6102. <key>Resources/res/serialize.py</key>
  6103. <dict>
  6104. <key>hash2</key>
  6105. <data>
  6106. /U1NU/C+SDgFzkbAxAsPDgMTHeTWZZaHCQnZN/jh0U8=
  6107. </data>
  6108. </dict>
  6109. <key>Resources/res/session.py</key>
  6110. <dict>
  6111. <key>hash2</key>
  6112. <data>
  6113. uhovd4J7abd0Yr2g426yC4aC6Uw1VKrQfpzalsEBEMw=
  6114. </data>
  6115. </dict>
  6116. <key>Resources/res/sessions.py</key>
  6117. <dict>
  6118. <key>hash2</key>
  6119. <data>
  6120. +LvTzrPtetSTrR3buxu4XhdgMrJFLB1q5D7P++L2Xhw=
  6121. </data>
  6122. </dict>
  6123. <key>Resources/res/setuptools_build.py</key>
  6124. <dict>
  6125. <key>hash2</key>
  6126. <data>
  6127. ouXpud+jeS8xPyTPsXJ+m34NPvK5os45otAzdSV/IJE=
  6128. </data>
  6129. </dict>
  6130. <key>Resources/res/sg-plateConfig.json</key>
  6131. <dict>
  6132. <key>hash2</key>
  6133. <data>
  6134. mJ5350SrPOGnjtH7EbDYfoVTFn4wPZonbZCiaK2G5Ns=
  6135. </data>
  6136. </dict>
  6137. <key>Resources/res/sg-screwConfig.json</key>
  6138. <dict>
  6139. <key>hash2</key>
  6140. <data>
  6141. E+cEw28dgCwGMQEtowqiIhw/xTG+gZjzIV9Z0qg9PrM=
  6142. </data>
  6143. </dict>
  6144. <key>Resources/res/sg-targetConfig.json</key>
  6145. <dict>
  6146. <key>hash2</key>
  6147. <data>
  6148. 0pZfeA6KI/miuP/PgZIYUemjy8zxtrdY7+nlhSOhbjM=
  6149. </data>
  6150. </dict>
  6151. <key>Resources/res/sg-目标占位1.png</key>
  6152. <dict>
  6153. <key>hash2</key>
  6154. <data>
  6155. 72PifYx1nVqgP2mf4dRZoDeUSlU1FZj16ylZxa/MAs8=
  6156. </data>
  6157. </dict>
  6158. <key>Resources/res/sg-目标占位2.png</key>
  6159. <dict>
  6160. <key>hash2</key>
  6161. <data>
  6162. i/GbQF/VPmwl/QWJvtN3URT92cNj2xdBuoyr3VnSeoU=
  6163. </data>
  6164. </dict>
  6165. <key>Resources/res/sg-目标容器-1.png</key>
  6166. <dict>
  6167. <key>hash2</key>
  6168. <data>
  6169. bvsaBBxUq5nHo6vSqaGKs7ealBd3jPW834V+kF0fKrg=
  6170. </data>
  6171. </dict>
  6172. <key>Resources/res/sg-目标容器-2.png</key>
  6173. <dict>
  6174. <key>hash2</key>
  6175. <data>
  6176. 32/mfjROODcoprCz66rKwwccKf0qAexpjs2x83IlSTg=
  6177. </data>
  6178. </dict>
  6179. <key>Resources/res/sg-目标容器盖子-1.png</key>
  6180. <dict>
  6181. <key>hash2</key>
  6182. <data>
  6183. P0j8bxxoIWdgZ0Ki1gpH+6vpg33Yd2f+xlqTiXZZRH4=
  6184. </data>
  6185. </dict>
  6186. <key>Resources/res/sg-目标容器盖子-2.png</key>
  6187. <dict>
  6188. <key>hash2</key>
  6189. <data>
  6190. rgC84dtbJNAmypgXq6aOMXU0YDYnD4n45p+8WPHm8GU=
  6191. </data>
  6192. </dict>
  6193. <key>Resources/res/sg_gameui.plist</key>
  6194. <dict>
  6195. <key>hash2</key>
  6196. <data>
  6197. 0PJ1L+vG7tR0HTB8/rT+iwNKEX7J2PwsFb5XFUwgZso=
  6198. </data>
  6199. </dict>
  6200. <key>Resources/res/sg_gameui.tps</key>
  6201. <dict>
  6202. <key>hash2</key>
  6203. <data>
  6204. ke+wnzQnX2Y8+Un+E85I1XV1vgK23icgpX+a1DRJm2I=
  6205. </data>
  6206. </dict>
  6207. <key>Resources/res/sg_gameui.webp</key>
  6208. <dict>
  6209. <key>hash2</key>
  6210. <data>
  6211. fGe+BALNLeyefwn8lQmTD/jiG3eSyr4YR82XHEMsRS4=
  6212. </data>
  6213. </dict>
  6214. <key>Resources/res/sg_items.plist</key>
  6215. <dict>
  6216. <key>hash2</key>
  6217. <data>
  6218. 8S+gcpUsaIvE22q9vEkfOtB1L++CB7PISnqcRvPgujY=
  6219. </data>
  6220. </dict>
  6221. <key>Resources/res/sg_items.tps</key>
  6222. <dict>
  6223. <key>hash2</key>
  6224. <data>
  6225. Z85+8+TW3u+2hh5ympCiOnl85PmTDLeNAbCZ+CWn7dU=
  6226. </data>
  6227. </dict>
  6228. <key>Resources/res/sg_items.webp</key>
  6229. <dict>
  6230. <key>hash2</key>
  6231. <data>
  6232. B97L2si8wL0HHbqIJtyHQ38YDsN5YzaH2goahDB9B/0=
  6233. </data>
  6234. </dict>
  6235. <key>Resources/res/sg_plant0.png</key>
  6236. <dict>
  6237. <key>hash2</key>
  6238. <data>
  6239. HnFcqne534Gu8hwvOAdrHToVzFicW1sAtnx2cESNo8g=
  6240. </data>
  6241. </dict>
  6242. <key>Resources/res/sg_plant1.png</key>
  6243. <dict>
  6244. <key>hash2</key>
  6245. <data>
  6246. 8JrqnOHM2yy9P5rGVnHCcSyfQXb+DuXJojsLhcM23ls=
  6247. </data>
  6248. </dict>
  6249. <key>Resources/res/sg_plant2.png</key>
  6250. <dict>
  6251. <key>hash2</key>
  6252. <data>
  6253. 6izc3AfrblO3hOBv3nvHAHO55LJP6l9SNJTg6oM6lvQ=
  6254. </data>
  6255. </dict>
  6256. <key>Resources/res/sg_plant3.png</key>
  6257. <dict>
  6258. <key>hash2</key>
  6259. <data>
  6260. IuZLBWbIZjt2d/q1Dj1ANaUZwxCv+Dt0ykqBwbVJGT0=
  6261. </data>
  6262. </dict>
  6263. <key>Resources/res/sg_plant4.png</key>
  6264. <dict>
  6265. <key>hash2</key>
  6266. <data>
  6267. taoO66WYOkUHYQyzmSPJkgMZ7YIowyxWdqmUUb8OEVs=
  6268. </data>
  6269. </dict>
  6270. <key>Resources/res/sg_plant5.png</key>
  6271. <dict>
  6272. <key>hash2</key>
  6273. <data>
  6274. wujQ6Nap0H15AR1FMw0obt1id+MDEZ6DWulZPKR7rMM=
  6275. </data>
  6276. </dict>
  6277. <key>Resources/res/sg_screw1.png</key>
  6278. <dict>
  6279. <key>hash2</key>
  6280. <data>
  6281. WAQkstYPxiJJYq2dDrFJAb73q0aOygUtJeAmdhWt9mQ=
  6282. </data>
  6283. </dict>
  6284. <key>Resources/res/sg_screw1_1.png</key>
  6285. <dict>
  6286. <key>hash2</key>
  6287. <data>
  6288. 9HgKP+/sYBTI93r0MjnYfps3LQXEqFs9j+A9y+5u5xE=
  6289. </data>
  6290. </dict>
  6291. <key>Resources/res/sg_screw2.png</key>
  6292. <dict>
  6293. <key>hash2</key>
  6294. <data>
  6295. lyK/aZ76dRisbKDMb2g8VGKKzSfl7z7Y6b+aKjK2JuA=
  6296. </data>
  6297. </dict>
  6298. <key>Resources/res/sg_screw2_1.png</key>
  6299. <dict>
  6300. <key>hash2</key>
  6301. <data>
  6302. Pp8m7QKoSDQiBzYW7CBfEdhqWLKFLDB0fQ2uVt1Adfg=
  6303. </data>
  6304. </dict>
  6305. <key>Resources/res/sg_screw3.png</key>
  6306. <dict>
  6307. <key>hash2</key>
  6308. <data>
  6309. NXigprWKX4rmXwRi/xMVrLXkg26qsCI7tQG7xUoH/CQ=
  6310. </data>
  6311. </dict>
  6312. <key>Resources/res/sg_screw4.png</key>
  6313. <dict>
  6314. <key>hash2</key>
  6315. <data>
  6316. 0NUKwbGt4znb8KVDNko8h1nEjp36HFd1wf3bT3SboF4=
  6317. </data>
  6318. </dict>
  6319. <key>Resources/res/sg_screw5.png</key>
  6320. <dict>
  6321. <key>hash2</key>
  6322. <data>
  6323. dmrtlaahu7FupuUTz+lLXfPMqtUSOvBgH+MSt8oEASo=
  6324. </data>
  6325. </dict>
  6326. <key>Resources/res/sg_screw6.png</key>
  6327. <dict>
  6328. <key>hash2</key>
  6329. <data>
  6330. SFQptarhaZZvfkj7bmJnOCQjXsVAz6703Wq6Ija0Q9I=
  6331. </data>
  6332. </dict>
  6333. <key>Resources/res/sg_screw7.png</key>
  6334. <dict>
  6335. <key>hash2</key>
  6336. <data>
  6337. cuBbmyrkr09AdvQcPiIaVnUjKGXlxwIhGUCZ1QecQXA=
  6338. </data>
  6339. </dict>
  6340. <key>Resources/res/sg_screw8.png</key>
  6341. <dict>
  6342. <key>hash2</key>
  6343. <data>
  6344. ZQouJo+Fi7szBGEYMbQUFmc/j36ogTPWlzKkXkErwO8=
  6345. </data>
  6346. </dict>
  6347. <key>Resources/res/show.py</key>
  6348. <dict>
  6349. <key>hash2</key>
  6350. <data>
  6351. t5jia4zcYJRJZy4U/Von7zMl03hJmmcofj6oDNTnj7Y=
  6352. </data>
  6353. </dict>
  6354. <key>Resources/res/six.py</key>
  6355. <dict>
  6356. <key>hash2</key>
  6357. <data>
  6358. b9LM0wBXv7E7SrbCjAm4wwN+hrH+iNxv18LgWNMMKPo=
  6359. </data>
  6360. </dict>
  6361. <key>Resources/res/sjisprober.py</key>
  6362. <dict>
  6363. <key>hash2</key>
  6364. <data>
  6365. aqQufMzRw46ZpFlzmYaYeT2+nzmKb+hmcrApppJ862k=
  6366. </data>
  6367. </dict>
  6368. <key>Resources/res/socks.py</key>
  6369. <dict>
  6370. <key>hash2</key>
  6371. <data>
  6372. aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4=
  6373. </data>
  6374. </dict>
  6375. <key>Resources/res/sources.py</key>
  6376. <dict>
  6377. <key>hash2</key>
  6378. <data>
  6379. 7jw9XSeeQA5K+H4I5a5034Ks2gkQqm4zPXjrhwnP1S4=
  6380. </data>
  6381. </dict>
  6382. <key>Resources/res/specifiers.py</key>
  6383. <dict>
  6384. <key>hash2</key>
  6385. <data>
  6386. LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE=
  6387. </data>
  6388. </dict>
  6389. <key>Resources/res/sphinxext.py</key>
  6390. <dict>
  6391. <key>hash2</key>
  6392. <data>
  6393. wBFYm180qea9JKt//UzhRlNRNhczPDFDaqGD21sbuso=
  6394. </data>
  6395. </dict>
  6396. <key>Resources/res/spinner.py</key>
  6397. <dict>
  6398. <key>hash2</key>
  6399. <data>
  6400. 15koCmF0DQeD8+k28Lpt6X/zJQUlzEhgo/6A6uy47lc=
  6401. </data>
  6402. </dict>
  6403. <key>Resources/res/spinners.py</key>
  6404. <dict>
  6405. <key>hash2</key>
  6406. <data>
  6407. hIJ83GerdFgFCdobIA23Jggetegl/uC4Sp586nzFbPE=
  6408. </data>
  6409. </dict>
  6410. <key>Resources/res/ssl_.py</key>
  6411. <dict>
  6412. <key>hash2</key>
  6413. <data>
  6414. X4+AqW91aYPhPx6+xbf66yHFQKbqqfC/5Zt4WkLX1Hc=
  6415. </data>
  6416. </dict>
  6417. <key>Resources/res/ssl_match_hostname.py</key>
  6418. <dict>
  6419. <key>hash2</key>
  6420. <data>
  6421. Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql/WA=
  6422. </data>
  6423. </dict>
  6424. <key>Resources/res/ssltransport.py</key>
  6425. <dict>
  6426. <key>hash2</key>
  6427. <data>
  6428. NA+u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E=
  6429. </data>
  6430. </dict>
  6431. <key>Resources/res/status.py</key>
  6432. <dict>
  6433. <key>hash2</key>
  6434. <data>
  6435. gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ+dxhCnwo=
  6436. </data>
  6437. </dict>
  6438. <key>Resources/res/status_codes.py</key>
  6439. <dict>
  6440. <key>hash2</key>
  6441. <data>
  6442. FvHmT5uH+/uimtRz5hH9VCbt7VV+Nei2J9upbej6j8g=
  6443. </data>
  6444. </dict>
  6445. <key>Resources/res/stop.py</key>
  6446. <dict>
  6447. <key>hash2</key>
  6448. <data>
  6449. YMJs7ZgZfND65PRLqlGB/agpfGXlemx/5Hm4PKnBqpQ=
  6450. </data>
  6451. </dict>
  6452. <key>Resources/res/structs.py</key>
  6453. <dict>
  6454. <key>hash2</key>
  6455. <data>
  6456. 0/1/XO8z/CLhegP3Vpf9VJ3zJcfLm0NOHRM+i0Ykz3o=
  6457. </data>
  6458. </dict>
  6459. <key>Resources/res/structures.py</key>
  6460. <dict>
  6461. <key>hash2</key>
  6462. <data>
  6463. +IbmhVz06S+5aPSZuUthZ6+6D9XOjRuTXHOabY041XM=
  6464. </data>
  6465. </dict>
  6466. <key>Resources/res/style.py</key>
  6467. <dict>
  6468. <key>hash2</key>
  6469. <data>
  6470. 3hiocH/4N8vwRm3+8yFWzM7tSwjjEven69XqWasSQwM=
  6471. </data>
  6472. </dict>
  6473. <key>Resources/res/styled.py</key>
  6474. <dict>
  6475. <key>hash2</key>
  6476. <data>
  6477. eZNnzGrI4ki/54pgY3Oj0T+x3lxdXTYh4/ryDB24wBU=
  6478. </data>
  6479. </dict>
  6480. <key>Resources/res/subprocess.py</key>
  6481. <dict>
  6482. <key>hash2</key>
  6483. <data>
  6484. 0EMhgfPGFk8FZn6Qq7Hp9PN6YHuQNWiVby4DXcTCON4=
  6485. </data>
  6486. </dict>
  6487. <key>Resources/res/subversion.py</key>
  6488. <dict>
  6489. <key>hash2</key>
  6490. <data>
  6491. vhZs8L+TNggXqM1bbhl+FpbxE3TrIB6Tgnx8fh3S2HE=
  6492. </data>
  6493. </dict>
  6494. <key>Resources/res/svg.py</key>
  6495. <dict>
  6496. <key>hash2</key>
  6497. <data>
  6498. dQONWypbzfvzGCDtdp3M/NJawScJvM2DiHbx1k+ww7g=
  6499. </data>
  6500. </dict>
  6501. <key>Resources/res/syntax.py</key>
  6502. <dict>
  6503. <key>hash2</key>
  6504. <data>
  6505. jgDiVCK6cpR0NmBOpZmIu+Ud4eaW7fHvjJZkDbjpcSA=
  6506. </data>
  6507. </dict>
  6508. <key>Resources/res/t32.exe</key>
  6509. <dict>
  6510. <key>hash2</key>
  6511. <data>
  6512. a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS+XrqvJQVs=
  6513. </data>
  6514. </dict>
  6515. <key>Resources/res/t64-arm.exe</key>
  6516. <dict>
  6517. <key>hash2</key>
  6518. <data>
  6519. 68TAa32V504xVBnufojh0PcenpR3U4wAqTqf+MZqbPw=
  6520. </data>
  6521. </dict>
  6522. <key>Resources/res/t64.exe</key>
  6523. <dict>
  6524. <key>hash2</key>
  6525. <data>
  6526. gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc=
  6527. </data>
  6528. </dict>
  6529. <key>Resources/res/table.py</key>
  6530. <dict>
  6531. <key>hash2</key>
  6532. <data>
  6533. +WzesL+VJKsaiDU3uyczpJMHy6VCaSewBYJwx8RudI8=
  6534. </data>
  6535. </dict>
  6536. <key>Resources/res/tags.py</key>
  6537. <dict>
  6538. <key>hash2</key>
  6539. <data>
  6540. lmsnGNiJ8C4D/Pf9PbM0qgbZvD9kmB9lpZBQUZa3R/Y=
  6541. </data>
  6542. </dict>
  6543. <key>Resources/res/target_python.py</key>
  6544. <dict>
  6545. <key>hash2</key>
  6546. <data>
  6547. qKpZox7J8NAaPmDs5C/aniwfPDxzvpkrCKqfwndG87k=
  6548. </data>
  6549. </dict>
  6550. <key>Resources/res/temp_dir.py</key>
  6551. <dict>
  6552. <key>hash2</key>
  6553. <data>
  6554. aCX489gRa4Nu0dMKRFyGhV6maJr60uEynu5uCbKR4Qg=
  6555. </data>
  6556. </dict>
  6557. <key>Resources/res/terminal.py</key>
  6558. <dict>
  6559. <key>hash2</key>
  6560. <data>
  6561. FG+rpjRpFmNpiGB4NzIucvxq6sQIXB3HOTo2meTKtrU=
  6562. </data>
  6563. </dict>
  6564. <key>Resources/res/terminal256.py</key>
  6565. <dict>
  6566. <key>hash2</key>
  6567. <data>
  6568. 13SJ3D5pFdqZ9zROE6HbWnBDwHvOGE8GlsmqGhprRp4=
  6569. </data>
  6570. </dict>
  6571. <key>Resources/res/terminal_theme.py</key>
  6572. <dict>
  6573. <key>hash2</key>
  6574. <data>
  6575. 1j5+ufJfnvlAo5Qsi/ACZiXDmwMXzqgmFByObT9+yJY=
  6576. </data>
  6577. </dict>
  6578. <key>Resources/res/testing.py</key>
  6579. <dict>
  6580. <key>hash2</key>
  6581. <data>
  6582. eJncg0p83zm1FTPvM9auNT6oavIvXaibmRFDf1qmwkY=
  6583. </data>
  6584. </dict>
  6585. <key>Resources/res/tests.py</key>
  6586. <dict>
  6587. <key>hash2</key>
  6588. <data>
  6589. OtGLyjhNY1fvkW1GvLJ/FV9ZoqC9Anyjr7q3kxTbzNs=
  6590. </data>
  6591. </dict>
  6592. <key>Resources/res/text.py</key>
  6593. <dict>
  6594. <key>hash2</key>
  6595. <data>
  6596. /8JBlSau0c2z8ENOZMi1hJ7M1ZGY408E4+hXjHyyg1A=
  6597. </data>
  6598. </dict>
  6599. <key>Resources/res/theme.py</key>
  6600. <dict>
  6601. <key>hash2</key>
  6602. <data>
  6603. belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN+AFdo=
  6604. </data>
  6605. </dict>
  6606. <key>Resources/res/themes.py</key>
  6607. <dict>
  6608. <key>hash2</key>
  6609. <data>
  6610. 0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk=
  6611. </data>
  6612. </dict>
  6613. <key>Resources/res/timeout.py</key>
  6614. <dict>
  6615. <key>hash2</key>
  6616. <data>
  6617. cwq4dMk87mJHSBktK1miYJ+85G+3T3RmT20v7SFCpno=
  6618. </data>
  6619. </dict>
  6620. <key>Resources/res/token.py</key>
  6621. <dict>
  6622. <key>hash2</key>
  6623. <data>
  6624. seNsmcch9OEHXYirh8Ool7w8xDhfNTbLj5rHAC+gc/o=
  6625. </data>
  6626. </dict>
  6627. <key>Resources/res/top_level.txt</key>
  6628. <dict>
  6629. <key>hash2</key>
  6630. <data>
  6631. zuuue4knoyJ+UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg=
  6632. </data>
  6633. </dict>
  6634. <key>Resources/res/tornadoweb.py</key>
  6635. <dict>
  6636. <key>hash2</key>
  6637. <data>
  6638. po29/F1Mt8qZpsFjX7EVwAT0ydC/NbVia9gVi7R/wXA=
  6639. </data>
  6640. </dict>
  6641. <key>Resources/res/tp_1_1_1.png</key>
  6642. <dict>
  6643. <key>hash2</key>
  6644. <data>
  6645. B594VwCgwpttrxU7HSpY7zUFzXTWPdGJKHopkJPNrs4=
  6646. </data>
  6647. </dict>
  6648. <key>Resources/res/tp_1_1_2.png</key>
  6649. <dict>
  6650. <key>hash2</key>
  6651. <data>
  6652. fjsC2z3KCFrFM4qHff7jo7J6BPAlHoG8yh+cMsU1zvQ=
  6653. </data>
  6654. </dict>
  6655. <key>Resources/res/tp_1_1_3.png</key>
  6656. <dict>
  6657. <key>hash2</key>
  6658. <data>
  6659. zoBAicoGHtPqGgj4xAsvV0YpcXJQhumLes0O1oPGcHU=
  6660. </data>
  6661. </dict>
  6662. <key>Resources/res/tp_1_1_4.png</key>
  6663. <dict>
  6664. <key>hash2</key>
  6665. <data>
  6666. Ay84eGqKLo4xWuIA0FhM67KLjTeNgpXUwTYBkLghXQQ=
  6667. </data>
  6668. </dict>
  6669. <key>Resources/res/tp_1_2_1.png</key>
  6670. <dict>
  6671. <key>hash2</key>
  6672. <data>
  6673. GZ/OEgVaBJnc+i14GVfOxIlFhPEOr+bY4oHL+AybwBM=
  6674. </data>
  6675. </dict>
  6676. <key>Resources/res/tp_1_2_2.png</key>
  6677. <dict>
  6678. <key>hash2</key>
  6679. <data>
  6680. rfuam6ajS1AEwTzaW0Y4LVaO15vX9pZhKsMQAf7+S/o=
  6681. </data>
  6682. </dict>
  6683. <key>Resources/res/tp_1_2_3.png</key>
  6684. <dict>
  6685. <key>hash2</key>
  6686. <data>
  6687. 1v/TR11IfUWx58jERYECEEtnfzR1ob/QMDg5eXByzDA=
  6688. </data>
  6689. </dict>
  6690. <key>Resources/res/tp_1_3_1.png</key>
  6691. <dict>
  6692. <key>hash2</key>
  6693. <data>
  6694. q6eV6sswqwxhq5qFyKBvD7R365/aAAwyUWuL5mrIOjc=
  6695. </data>
  6696. </dict>
  6697. <key>Resources/res/tp_1_3_10.png</key>
  6698. <dict>
  6699. <key>hash2</key>
  6700. <data>
  6701. kmDZ7PHtxgh7a2h9lZtrNEnZeNsVtSo3jlv6ANEF9QE=
  6702. </data>
  6703. </dict>
  6704. <key>Resources/res/tp_1_3_11.png</key>
  6705. <dict>
  6706. <key>hash2</key>
  6707. <data>
  6708. yztNh64qhAG4uLWOCn/hzRW2XJX/bQIZFjAfNlfxSvU=
  6709. </data>
  6710. </dict>
  6711. <key>Resources/res/tp_1_3_2.png</key>
  6712. <dict>
  6713. <key>hash2</key>
  6714. <data>
  6715. l8lMSkgnEPPxRK5D1nBs0OsAre4ofSVQCuDufpoxHdM=
  6716. </data>
  6717. </dict>
  6718. <key>Resources/res/tp_1_3_3.png</key>
  6719. <dict>
  6720. <key>hash2</key>
  6721. <data>
  6722. m1jdPcsWbwnmjcnoSklytn8cJvspX1dScLUeRnixLuM=
  6723. </data>
  6724. </dict>
  6725. <key>Resources/res/tp_1_3_4.png</key>
  6726. <dict>
  6727. <key>hash2</key>
  6728. <data>
  6729. 83QJTmfWKNEcVE/8YKUBiMkUwcC5lLIUGpi1crJZB9w=
  6730. </data>
  6731. </dict>
  6732. <key>Resources/res/tp_1_3_5.png</key>
  6733. <dict>
  6734. <key>hash2</key>
  6735. <data>
  6736. 4pfe1DaO5FGXp6w96Y5sYQ9Qo9W/uPL7KczItZSaV1o=
  6737. </data>
  6738. </dict>
  6739. <key>Resources/res/tp_1_3_6.png</key>
  6740. <dict>
  6741. <key>hash2</key>
  6742. <data>
  6743. OxNXl6pxbtedVg3Gnoyu3wxP0waWpS13Hjg98Myvz9k=
  6744. </data>
  6745. </dict>
  6746. <key>Resources/res/tp_1_3_7.png</key>
  6747. <dict>
  6748. <key>hash2</key>
  6749. <data>
  6750. W8NndrkaZqSDFAZK7ZlOCK5bIQaK3Tlp4kfNJ2NEIc8=
  6751. </data>
  6752. </dict>
  6753. <key>Resources/res/tp_1_3_8.png</key>
  6754. <dict>
  6755. <key>hash2</key>
  6756. <data>
  6757. gCD8gWPc/ynEqpxOC6PiffcfrifKab0TgTYJzDOvG+Q=
  6758. </data>
  6759. </dict>
  6760. <key>Resources/res/tp_1_3_9.png</key>
  6761. <dict>
  6762. <key>hash2</key>
  6763. <data>
  6764. 4ttXVe8053b/fmkrCE0zAGVNDVJsG1WLNm1apSIvsRQ=
  6765. </data>
  6766. </dict>
  6767. <key>Resources/res/tp_1_4_1.png</key>
  6768. <dict>
  6769. <key>hash2</key>
  6770. <data>
  6771. eN7dWcYtTgDqXaTiLgyOHqAX9VfnnuMi7mNW7i42Dfk=
  6772. </data>
  6773. </dict>
  6774. <key>Resources/res/tp_1_4_2.png</key>
  6775. <dict>
  6776. <key>hash2</key>
  6777. <data>
  6778. U8qLCVhN4XzeGurQpOkMA20Hc9hDVy8Kqz+aY7yz7OY=
  6779. </data>
  6780. </dict>
  6781. <key>Resources/res/tp_1_4_3.png</key>
  6782. <dict>
  6783. <key>hash2</key>
  6784. <data>
  6785. BMXJOZkaj9Rf3kfoPntlWo+phrHRLeDP443botK1IVs=
  6786. </data>
  6787. </dict>
  6788. <key>Resources/res/tp_1_4_4.png</key>
  6789. <dict>
  6790. <key>hash2</key>
  6791. <data>
  6792. I5XREnp0pSoqu4p0HDM4ViJTc6inUn+AnEpRmIkZMJY=
  6793. </data>
  6794. </dict>
  6795. <key>Resources/res/tp_1_5_1.png</key>
  6796. <dict>
  6797. <key>hash2</key>
  6798. <data>
  6799. 4wLXV6rs7uAtGE616UqXx2d4UqYxoLQXN3leB/ZUdk4=
  6800. </data>
  6801. </dict>
  6802. <key>Resources/res/tp_1_6_1.png</key>
  6803. <dict>
  6804. <key>hash2</key>
  6805. <data>
  6806. LLjkrC6sxd1VcotEaAfI9LYQofs1OBIRioTG3gBDcKM=
  6807. </data>
  6808. </dict>
  6809. <key>Resources/res/tp_1_6_2.png</key>
  6810. <dict>
  6811. <key>hash2</key>
  6812. <data>
  6813. wWU60clqAABR4prqcRESgqKC9y6tMctFKjnBiEh1K0I=
  6814. </data>
  6815. </dict>
  6816. <key>Resources/res/tp_1_6_3.png</key>
  6817. <dict>
  6818. <key>hash2</key>
  6819. <data>
  6820. bJJMEaRJrWNgHBSoV2NuTLMU1JWQ2JZKYpuHeISDjJg=
  6821. </data>
  6822. </dict>
  6823. <key>Resources/res/tp_1_6_4.png</key>
  6824. <dict>
  6825. <key>hash2</key>
  6826. <data>
  6827. xebN/ljjsCcU21AwWwMU3lq14Cdz5gw5ieu6m4UMZMM=
  6828. </data>
  6829. </dict>
  6830. <key>Resources/res/tp_1_6_5.png</key>
  6831. <dict>
  6832. <key>hash2</key>
  6833. <data>
  6834. H/JAmwZpJ6lvQ2m2Cw1kgLOQBCpJ4P6tL2NTpwOvOdk=
  6835. </data>
  6836. </dict>
  6837. <key>Resources/res/tp_1_6_6.png</key>
  6838. <dict>
  6839. <key>hash2</key>
  6840. <data>
  6841. uBJz4kpoJa5U6mQzG16tUNnQPQzqFHxl9vVgsQNPiSM=
  6842. </data>
  6843. </dict>
  6844. <key>Resources/res/tp_1_6_7.png</key>
  6845. <dict>
  6846. <key>hash2</key>
  6847. <data>
  6848. r9w5w7A674DpWolbVE+xdNBQ8NDtGh1N4w6Sw0lcoIc=
  6849. </data>
  6850. </dict>
  6851. <key>Resources/res/traceback.py</key>
  6852. <dict>
  6853. <key>hash2</key>
  6854. <data>
  6855. yCLVrCtyoFNENd9mkm2xeG3KmqkTwH9xpFOO7p2Bq0A=
  6856. </data>
  6857. </dict>
  6858. <key>Resources/res/tree.py</key>
  6859. <dict>
  6860. <key>hash2</key>
  6861. <data>
  6862. BMbUYNjS9uodNPfvtY/odmU09GA5QzcMbQ5cJZhllQI=
  6863. </data>
  6864. </dict>
  6865. <key>Resources/res/typing_extensions.py</key>
  6866. <dict>
  6867. <key>hash2</key>
  6868. <data>
  6869. EWpcpyQnVmc48E9fSyPGs+vXgHcAk9tQABQIxmMsCGk=
  6870. </data>
  6871. </dict>
  6872. <key>Resources/res/unicode.py</key>
  6873. <dict>
  6874. <key>hash2</key>
  6875. <data>
  6876. fAPdsJiARFbkPAih6NkYry0dpj4jPqelGVMlE4wWFW8=
  6877. </data>
  6878. </dict>
  6879. <key>Resources/res/uninstall.py</key>
  6880. <dict>
  6881. <key>hash2</key>
  6882. <data>
  6883. OIqO9tqadY8kM4HwhFf1Q62fUIp7v8KDrTRo8yWMz7Y=
  6884. </data>
  6885. </dict>
  6886. <key>Resources/res/unistring.py</key>
  6887. <dict>
  6888. <key>hash2</key>
  6889. <data>
  6890. FaUfG14NBJEKLQoY9qj6JYeXrpYcLmKulghdxOGFaOc=
  6891. </data>
  6892. </dict>
  6893. <key>Resources/res/universaldetector.py</key>
  6894. <dict>
  6895. <key>hash2</key>
  6896. <data>
  6897. xYBrg4x0dd9WnT8qclfADVD9ondrUNkqPmvte1pa520=
  6898. </data>
  6899. </dict>
  6900. <key>Resources/res/unix.py</key>
  6901. <dict>
  6902. <key>hash2</key>
  6903. <data>
  6904. 22JhR8ZY0aLxSVCFnKrc6f1iz6Gv42K24Daj7aTjfSg=
  6905. </data>
  6906. </dict>
  6907. <key>Resources/res/unpacking.py</key>
  6908. <dict>
  6909. <key>hash2</key>
  6910. <data>
  6911. SBb2iV1crb89MDRTEKY86R4A/UOWApTQn9VQVcMDOlE=
  6912. </data>
  6913. </dict>
  6914. <key>Resources/res/url.py</key>
  6915. <dict>
  6916. <key>hash2</key>
  6917. <data>
  6918. lCAE7M5myA8EDdW0sJuyyZhVB9K/j38ljWhHAnFaWoE=
  6919. </data>
  6920. </dict>
  6921. <key>Resources/res/urls.py</key>
  6922. <dict>
  6923. <key>hash2</key>
  6924. <data>
  6925. AhaesUGl+9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z/Q=
  6926. </data>
  6927. </dict>
  6928. <key>Resources/res/utf1632prober.py</key>
  6929. <dict>
  6930. <key>hash2</key>
  6931. <data>
  6932. pw1epGdMj1hDGiCu1AHqqzOEfjX8MVdiW7O1BlT8+eQ=
  6933. </data>
  6934. </dict>
  6935. <key>Resources/res/utf8prober.py</key>
  6936. <dict>
  6937. <key>hash2</key>
  6938. <data>
  6939. 8m08Ub5490H4jQ6LYXvFysGtgKoKsHUd2zH/i8/TnVw=
  6940. </data>
  6941. </dict>
  6942. <key>Resources/res/util.py</key>
  6943. <dict>
  6944. <key>hash2</key>
  6945. <data>
  6946. vTMzTdwSDyV8d/dSgquUTdWgBFoA/W30nfxEJDsshRQ=
  6947. </data>
  6948. </dict>
  6949. <key>Resources/res/utils.py</key>
  6950. <dict>
  6951. <key>hash2</key>
  6952. <data>
  6953. kOPn0qYD6xRTzaxbqTdYiSInBZHl6379AJsyIgzYGLY=
  6954. </data>
  6955. </dict>
  6956. <key>Resources/res/uts46data.py</key>
  6957. <dict>
  6958. <key>hash2</key>
  6959. <data>
  6960. zvjZU24s58/uAS850Mcd0NnD0X7/gCMAMjzWNIeUJdc=
  6961. </data>
  6962. </dict>
  6963. <key>Resources/res/vendor.txt</key>
  6964. <dict>
  6965. <key>hash2</key>
  6966. <data>
  6967. EyWEHCgXKFKiE8Mku6LONUDLF6UwDwjX1NP2ccKLrLo=
  6968. </data>
  6969. </dict>
  6970. <key>Resources/res/version.py</key>
  6971. <dict>
  6972. <key>hash2</key>
  6973. <data>
  6974. mavZTQIJIXfdewEaSTn7EWrNfPZWeRofb+74xqW5f2M=
  6975. </data>
  6976. </dict>
  6977. <key>Resources/res/versioncontrol.py</key>
  6978. <dict>
  6979. <key>hash2</key>
  6980. <data>
  6981. KUOc+hN51em9jrqxKwUR3JnkgSE+xSOqMiiJcSaL6B8=
  6982. </data>
  6983. </dict>
  6984. <key>Resources/res/virtualenv.py</key>
  6985. <dict>
  6986. <key>hash2</key>
  6987. <data>
  6988. S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU=
  6989. </data>
  6990. </dict>
  6991. <key>Resources/res/w32.exe</key>
  6992. <dict>
  6993. <key>hash2</key>
  6994. <data>
  6995. R4csx3+OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks=
  6996. </data>
  6997. </dict>
  6998. <key>Resources/res/w64-arm.exe</key>
  6999. <dict>
  7000. <key>hash2</key>
  7001. <data>
  7002. xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4=
  7003. </data>
  7004. </dict>
  7005. <key>Resources/res/w64.exe</key>
  7006. <dict>
  7007. <key>hash2</key>
  7008. <data>
  7009. ejGf+rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU+K0=
  7010. </data>
  7011. </dict>
  7012. <key>Resources/res/wait.py</key>
  7013. <dict>
  7014. <key>hash2</key>
  7015. <data>
  7016. fOX0/faozG2P7iVojQoE1mbydweNyTcm+hXEfFrTtLI=
  7017. </data>
  7018. </dict>
  7019. <key>Resources/res/weakref_finalize.py</key>
  7020. <dict>
  7021. <key>hash2</key>
  7022. <data>
  7023. tRCal5OAhNSRyb0DhHp+38AtIlCsRP8BxF3NX+6rqIA=
  7024. </data>
  7025. </dict>
  7026. <key>Resources/res/wheel.py</key>
  7027. <dict>
  7028. <key>hash2</key>
  7029. <data>
  7030. Rgqs658VsJ3R2845qwnZD8XQryV2CzWw2mghwLvxxsI=
  7031. </data>
  7032. </dict>
  7033. <key>Resources/res/wheel_builder.py</key>
  7034. <dict>
  7035. <key>hash2</key>
  7036. <data>
  7037. 3UlHfxQi7/AAXI7ur8aPpPbmqHhecCsubmkHEl+00KU=
  7038. </data>
  7039. </dict>
  7040. <key>Resources/res/wheel_editable.py</key>
  7041. <dict>
  7042. <key>hash2</key>
  7043. <data>
  7044. yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg=
  7045. </data>
  7046. </dict>
  7047. <key>Resources/res/wheel_legacy.py</key>
  7048. <dict>
  7049. <key>hash2</key>
  7050. <data>
  7051. C9j6rukgQI1n/JeQLoZGuDdfUwzCXShyIdPTp6edbMQ=
  7052. </data>
  7053. </dict>
  7054. <key>Resources/res/win32.py</key>
  7055. <dict>
  7056. <key>hash2</key>
  7057. <data>
  7058. YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs=
  7059. </data>
  7060. </dict>
  7061. <key>Resources/res/windows.py</key>
  7062. <dict>
  7063. <key>hash2</key>
  7064. <data>
  7065. 4TtbPGoWG2PRgI11uquDa7eRk8TcxvnUNuuMGZItnXc=
  7066. </data>
  7067. </dict>
  7068. <key>Resources/res/winterm.py</key>
  7069. <dict>
  7070. <key>hash2</key>
  7071. <data>
  7072. XCQFDHjPi6AHYNdZwy0tA02H+Jh48Jp+HvCjeLeLp3U=
  7073. </data>
  7074. </dict>
  7075. <key>Resources/res/winterm_test.py</key>
  7076. <dict>
  7077. <key>hash2</key>
  7078. <data>
  7079. qoWFPEjym5gm2RuMwpf3pOis3a5r/PJZFCzK254JL8A=
  7080. </data>
  7081. </dict>
  7082. <key>Resources/res/workspace.xml</key>
  7083. <dict>
  7084. <key>hash2</key>
  7085. <data>
  7086. uFcQZZ/L98Xu8FOLla6E5hhVsJBbqVjqG6e9debpG4s=
  7087. </data>
  7088. </dict>
  7089. <key>Resources/res/wrapper.py</key>
  7090. <dict>
  7091. <key>hash2</key>
  7092. <data>
  7093. X3+KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8=
  7094. </data>
  7095. </dict>
  7096. <key>Resources/res/x_user_defined.py</key>
  7097. <dict>
  7098. <key>hash2</key>
  7099. <data>
  7100. yOqWSdmpytGfUgh/Z6JYgDNhoc+BAHyyeeT15Fr42tM=
  7101. </data>
  7102. </dict>
  7103. <key>Resources/res/xmlrpc.py</key>
  7104. <dict>
  7105. <key>hash2</key>
  7106. <data>
  7107. AzQgG4GgS152/cqmGr/Oz2MIXsCal+xfsis7fA7nmU0=
  7108. </data>
  7109. </dict>
  7110. <key>Resources/res/关卡1 old.json</key>
  7111. <dict>
  7112. <key>hash2</key>
  7113. <data>
  7114. x7tJDqJ9rEFzTvC8BqNNY4mQqFszIEX91zDjHLATsRI=
  7115. </data>
  7116. </dict>
  7117. <key>Resources/res/关卡1-old.red</key>
  7118. <dict>
  7119. <key>hash2</key>
  7120. <data>
  7121. LMHQfJo/SlNTtJ1joINcmscaeGpQu/fP5ZbpNeyBORU=
  7122. </data>
  7123. </dict>
  7124. <key>Resources/res/关卡1-old.redream</key>
  7125. <dict>
  7126. <key>hash2</key>
  7127. <data>
  7128. qSHfvI6Qx15bxoE0Wgubxj3J46/MONR+f1zLynLHtqc=
  7129. </data>
  7130. </dict>
  7131. <key>Resources/res/关卡1.json</key>
  7132. <dict>
  7133. <key>hash2</key>
  7134. <data>
  7135. UDWKU25Xzo07Ud+ciKpBtEDwyC9sOz7MfDcQImAHKuE=
  7136. </data>
  7137. </dict>
  7138. <key>Resources/res/关卡1.red</key>
  7139. <dict>
  7140. <key>hash2</key>
  7141. <data>
  7142. jICWsECayxxEa89WW1iqHUdbPv6B9bVmGXJSe5uXJY8=
  7143. </data>
  7144. </dict>
  7145. <key>Resources/res/关卡1.redream</key>
  7146. <dict>
  7147. <key>hash2</key>
  7148. <data>
  7149. alur1qL7aeFanegIFMA3JFKiLbdpRpt688R8at2h2qw=
  7150. </data>
  7151. </dict>
  7152. <key>Resources/res/关卡10.json</key>
  7153. <dict>
  7154. <key>hash2</key>
  7155. <data>
  7156. U3fydWaH0PNPyYgPvEVVAuxxB6nGiHukmtwaJjr6t6M=
  7157. </data>
  7158. </dict>
  7159. <key>Resources/res/关卡10.red</key>
  7160. <dict>
  7161. <key>hash2</key>
  7162. <data>
  7163. B0tz6RtNjKdDE/uvcYa+mRq68BeJyUn5q/OlbUNKyTo=
  7164. </data>
  7165. </dict>
  7166. <key>Resources/res/关卡10.redream</key>
  7167. <dict>
  7168. <key>hash2</key>
  7169. <data>
  7170. VkHwDldWFSQc7ibyuJUYCREpQg1C6TRGJYWoa8FlrcM=
  7171. </data>
  7172. </dict>
  7173. <key>Resources/res/关卡1_1.json</key>
  7174. <dict>
  7175. <key>hash2</key>
  7176. <data>
  7177. JtdLHpG4kNb17sEjhK9G0sB2NYMisG+yxFBFfN+h+aY=
  7178. </data>
  7179. </dict>
  7180. <key>Resources/res/关卡1_2.json</key>
  7181. <dict>
  7182. <key>hash2</key>
  7183. <data>
  7184. 2Lahp2EVtgjsr6hteKjcG2KlJQbNbxwgc5rTENUOPEU=
  7185. </data>
  7186. </dict>
  7187. <key>Resources/res/关卡1test.redream</key>
  7188. <dict>
  7189. <key>hash2</key>
  7190. <data>
  7191. JHqhbQUlD2h1RHZ/OSuFa9DHqzhYyw2MStNyVhApWZM=
  7192. </data>
  7193. </dict>
  7194. <key>Resources/res/关卡1testConfig.json</key>
  7195. <dict>
  7196. <key>hash2</key>
  7197. <data>
  7198. HmbBtTsrxwfR/uzzBdpSqhCHelH67H84FjCG9bkbeRU=
  7199. </data>
  7200. </dict>
  7201. <key>Resources/res/关卡2 old.json</key>
  7202. <dict>
  7203. <key>hash2</key>
  7204. <data>
  7205. wyvCXgi3Om9rRIai0ubbNGs4T8ZCrLAOG1GcR2+9u40=
  7206. </data>
  7207. </dict>
  7208. <key>Resources/res/关卡2.json</key>
  7209. <dict>
  7210. <key>hash2</key>
  7211. <data>
  7212. ZbVaX/nOj9YT1F8mmyR55gKsiNyaocMsh6ctU0P9EZ0=
  7213. </data>
  7214. </dict>
  7215. <key>Resources/res/关卡2.red</key>
  7216. <dict>
  7217. <key>hash2</key>
  7218. <data>
  7219. UlXkCEzUNog0k9gOPtqj0q54fVR7B9pS/reK/t7Abvs=
  7220. </data>
  7221. </dict>
  7222. <key>Resources/res/关卡2.redream</key>
  7223. <dict>
  7224. <key>hash2</key>
  7225. <data>
  7226. 5xoEnZ09cJIGruMBzXvbMGAL6T5C5HvxRgl9Pupukrg=
  7227. </data>
  7228. </dict>
  7229. <key>Resources/res/关卡3.json</key>
  7230. <dict>
  7231. <key>hash2</key>
  7232. <data>
  7233. M268Ghn3ndPtMSLHiex17vTC9/uPZgHn2Ad3JyyX00w=
  7234. </data>
  7235. </dict>
  7236. <key>Resources/res/关卡3.red</key>
  7237. <dict>
  7238. <key>hash2</key>
  7239. <data>
  7240. 7f6Ih6OXXn+coVryyAKTvWhUunnW3wzgrXHTRujkMmw=
  7241. </data>
  7242. </dict>
  7243. <key>Resources/res/关卡3.redream</key>
  7244. <dict>
  7245. <key>hash2</key>
  7246. <data>
  7247. XwURqe2VqZeA40vj+rGlX1Uk9mwrzOUlPaXMsdWHYMk=
  7248. </data>
  7249. </dict>
  7250. <key>Resources/res/关卡4.json</key>
  7251. <dict>
  7252. <key>hash2</key>
  7253. <data>
  7254. 4j5Wo8BgCMaXfBwz1wIyAlyCdNW7jFMDyphqI3g5iw4=
  7255. </data>
  7256. </dict>
  7257. <key>Resources/res/关卡4.red</key>
  7258. <dict>
  7259. <key>hash2</key>
  7260. <data>
  7261. WqPLeN4h51sJFDrKh1t77Me5EYvZeDZqaOM7ABY/YA4=
  7262. </data>
  7263. </dict>
  7264. <key>Resources/res/关卡4.redream</key>
  7265. <dict>
  7266. <key>hash2</key>
  7267. <data>
  7268. 2Ed5WRFnFeNCLRM2IbdThAYF9hWvf4USzDWxC/Ongk0=
  7269. </data>
  7270. </dict>
  7271. <key>Resources/res/关卡5.json</key>
  7272. <dict>
  7273. <key>hash2</key>
  7274. <data>
  7275. OdHhNUCvt08S/nHqbRB7zpm9P+RYNIIIxNE/6UWFDRQ=
  7276. </data>
  7277. </dict>
  7278. <key>Resources/res/关卡5.red</key>
  7279. <dict>
  7280. <key>hash2</key>
  7281. <data>
  7282. ovDtjFvKkTbHJ+YEtpGsVSGnIuK6LpN845JNRo9PhLQ=
  7283. </data>
  7284. </dict>
  7285. <key>Resources/res/关卡5.redream</key>
  7286. <dict>
  7287. <key>hash2</key>
  7288. <data>
  7289. QIn5DcibL7ddAIVm5Oday4pnhgCI/RZcrqCUMn4+20U=
  7290. </data>
  7291. </dict>
  7292. <key>Resources/res/关卡6.json</key>
  7293. <dict>
  7294. <key>hash2</key>
  7295. <data>
  7296. LjDJDSoj/uIW1Sq8gTCaG3PRUEup23xV9rOi1Odj4Rw=
  7297. </data>
  7298. </dict>
  7299. <key>Resources/res/关卡6.red</key>
  7300. <dict>
  7301. <key>hash2</key>
  7302. <data>
  7303. Kx+JQpzza0asuG2KktzxCU2ykzFTwx4A1BFJpmVHuuM=
  7304. </data>
  7305. </dict>
  7306. <key>Resources/res/关卡6.redream</key>
  7307. <dict>
  7308. <key>hash2</key>
  7309. <data>
  7310. fMcYsXkzmtmCtNjbJXQkAjcFTMnh7nMpwBVKJ3Dq2fs=
  7311. </data>
  7312. </dict>
  7313. <key>Resources/res/关卡7.json</key>
  7314. <dict>
  7315. <key>hash2</key>
  7316. <data>
  7317. 1Hdep/16VR3XRzyUIdMkDsjUPonQ1TkybIS/PkuBFcQ=
  7318. </data>
  7319. </dict>
  7320. <key>Resources/res/关卡7.red</key>
  7321. <dict>
  7322. <key>hash2</key>
  7323. <data>
  7324. tHmU6oz3a30oV5gLprmJHiqE+NrDZdPneUo0cOa2BXM=
  7325. </data>
  7326. </dict>
  7327. <key>Resources/res/关卡7.redream</key>
  7328. <dict>
  7329. <key>hash2</key>
  7330. <data>
  7331. yG8ovq4+BoaUbl4rMNktpUFq9qJ054L9ZgRkowIknNk=
  7332. </data>
  7333. </dict>
  7334. <key>Resources/res/关卡8.json</key>
  7335. <dict>
  7336. <key>hash2</key>
  7337. <data>
  7338. xDddH/9WIx+dkvKnY2GkeX4AmZqbtdZkpSZEKgMPQUo=
  7339. </data>
  7340. </dict>
  7341. <key>Resources/res/关卡8.red</key>
  7342. <dict>
  7343. <key>hash2</key>
  7344. <data>
  7345. IADPuBokjimzWldyjL/GLZ3vIavxKbuLu6WLRMuqUDI=
  7346. </data>
  7347. </dict>
  7348. <key>Resources/res/关卡8.redream</key>
  7349. <dict>
  7350. <key>hash2</key>
  7351. <data>
  7352. JqBXpVNlgr61UsZkNkCt9gSDXzkhkUtrLutZ/LAz3C8=
  7353. </data>
  7354. </dict>
  7355. <key>Resources/res/关卡9.json</key>
  7356. <dict>
  7357. <key>hash2</key>
  7358. <data>
  7359. G7qlCcHu0BKlAhYoWNLVN8QoHtUVnmUjMFBvkafj4aM=
  7360. </data>
  7361. </dict>
  7362. <key>Resources/res/关卡9.red</key>
  7363. <dict>
  7364. <key>hash2</key>
  7365. <data>
  7366. CmRN7oIfPH5BzK0m1aiIn8o+nuYCDvniR0SWlaKBMBo=
  7367. </data>
  7368. </dict>
  7369. <key>Resources/res/关卡9.redream</key>
  7370. <dict>
  7371. <key>hash2</key>
  7372. <data>
  7373. oqPYLkxzx1xVulJvQdrhVXMMKMnMHCHgxiIUflfVYlg=
  7374. </data>
  7375. </dict>
  7376. <key>Resources/res/新版关卡.red转化为json.iml</key>
  7377. <dict>
  7378. <key>hash2</key>
  7379. <data>
  7380. 4m+1IblRtj02P+BJQtHCQGDxkujPbsdaKSnDdhyRp8I=
  7381. </data>
  7382. </dict>
  7383. <key>Resources/res/星星1.png</key>
  7384. <dict>
  7385. <key>hash2</key>
  7386. <data>
  7387. M53rQ/+ZMIgqM6kyoW+G6NCEthIoCh97I52tjkHTw1E=
  7388. </data>
  7389. </dict>
  7390. <key>Resources/res/星星2.png</key>
  7391. <dict>
  7392. <key>hash2</key>
  7393. <data>
  7394. hD47smb9YN9bRTVMC0KNNF35n/uWLfF0SBlVxdohPvI=
  7395. </data>
  7396. </dict>
  7397. <key>Resources/res/星星3.png</key>
  7398. <dict>
  7399. <key>hash2</key>
  7400. <data>
  7401. BJkRLtWZFAMS+r+qyncuaC5fjMudBYDe7S/iuvFvKk8=
  7402. </data>
  7403. </dict>
  7404. <key>Resources/res/星星4.png</key>
  7405. <dict>
  7406. <key>hash2</key>
  7407. <data>
  7408. iNLdrWlVpljs2d+OuYHHwbAM/BamBgXpFLV7Wr9LUHY=
  7409. </data>
  7410. </dict>
  7411. <key>Resources/res/星星5.png</key>
  7412. <dict>
  7413. <key>hash2</key>
  7414. <data>
  7415. T2+Wo+DcyGYrtIEAckC2ojS23rTnRYzaF4/DncJ9pr4=
  7416. </data>
  7417. </dict>
  7418. <key>Resources/res/模板1.red</key>
  7419. <dict>
  7420. <key>hash2</key>
  7421. <data>
  7422. KqaztBtiMWgtL+1DfoSQOsXuks3zncw8V1/tlAo1W0U=
  7423. </data>
  7424. </dict>
  7425. <key>Resources/res/模板1.redream</key>
  7426. <dict>
  7427. <key>hash2</key>
  7428. <data>
  7429. 3srGZocniotH5ZrqeuwstT9v+yLQaQL1y3o+jT6kuNY=
  7430. </data>
  7431. </dict>
  7432. <key>Resources/res/模板10.red</key>
  7433. <dict>
  7434. <key>hash2</key>
  7435. <data>
  7436. I42nzCgF7KA6o6T0uGlYf3oBfY5MAxzE+vnebGrMv18=
  7437. </data>
  7438. </dict>
  7439. <key>Resources/res/模板10.redream</key>
  7440. <dict>
  7441. <key>hash2</key>
  7442. <data>
  7443. EiMESI+NLr4U7fhD0zhTVbp0R54MuJK10NlA0dFnnEU=
  7444. </data>
  7445. </dict>
  7446. <key>Resources/res/模板11.red</key>
  7447. <dict>
  7448. <key>hash2</key>
  7449. <data>
  7450. KqaztBtiMWgtL+1DfoSQOsXuks3zncw8V1/tlAo1W0U=
  7451. </data>
  7452. </dict>
  7453. <key>Resources/res/模板11.redream</key>
  7454. <dict>
  7455. <key>hash2</key>
  7456. <data>
  7457. 3srGZocniotH5ZrqeuwstT9v+yLQaQL1y3o+jT6kuNY=
  7458. </data>
  7459. </dict>
  7460. <key>Resources/res/模板2.red</key>
  7461. <dict>
  7462. <key>hash2</key>
  7463. <data>
  7464. IVLGShfksXdu08lmX3OYXPrXMmH8VyAiTFKmPfAMZpU=
  7465. </data>
  7466. </dict>
  7467. <key>Resources/res/模板2.redream</key>
  7468. <dict>
  7469. <key>hash2</key>
  7470. <data>
  7471. f7eXuzUuLU3MJpzOBa5oCmdrILcdF/TqedaU+KTrJCA=
  7472. </data>
  7473. </dict>
  7474. <key>Resources/res/模板3.red</key>
  7475. <dict>
  7476. <key>hash2</key>
  7477. <data>
  7478. RUQAieoENR1/LCcuvulq3XQo7WR1NmL0RZm0d9Xhh2w=
  7479. </data>
  7480. </dict>
  7481. <key>Resources/res/模板3.redream</key>
  7482. <dict>
  7483. <key>hash2</key>
  7484. <data>
  7485. e1qeIw0nr53OxFxZ3TXE9qWjxsF3xl0wAMrXOoTlw6E=
  7486. </data>
  7487. </dict>
  7488. <key>Resources/res/模板4.red</key>
  7489. <dict>
  7490. <key>hash2</key>
  7491. <data>
  7492. ZGHz2EaQivtWDvt0YPD54l9b4hHqoFPlpZt9T8RI4ag=
  7493. </data>
  7494. </dict>
  7495. <key>Resources/res/模板4.redream</key>
  7496. <dict>
  7497. <key>hash2</key>
  7498. <data>
  7499. vSU64d9D36b9G+vWmtnCKp3konsJogqKvCmFw7hjMmM=
  7500. </data>
  7501. </dict>
  7502. <key>Resources/res/模板5.red</key>
  7503. <dict>
  7504. <key>hash2</key>
  7505. <data>
  7506. MAvajZI+J82d/4bsayIkvC2XTHzmQboGrAH5GKz2Vbw=
  7507. </data>
  7508. </dict>
  7509. <key>Resources/res/模板5.redream</key>
  7510. <dict>
  7511. <key>hash2</key>
  7512. <data>
  7513. tGdSYOZZpesKfJ/QvmSTF8pCNuIhYxauZeYNrKKxJCw=
  7514. </data>
  7515. </dict>
  7516. <key>Resources/res/模板6.red</key>
  7517. <dict>
  7518. <key>hash2</key>
  7519. <data>
  7520. xup3rPHe6IXMp64oqRgngGheLWvPO239MNr66e74ukk=
  7521. </data>
  7522. </dict>
  7523. <key>Resources/res/模板6.redream</key>
  7524. <dict>
  7525. <key>hash2</key>
  7526. <data>
  7527. aTMQgyL0HN7gOrHOPPhci4S58XvrY/wJ7tBqW9hnVUk=
  7528. </data>
  7529. </dict>
  7530. <key>Resources/res/模板7.red</key>
  7531. <dict>
  7532. <key>hash2</key>
  7533. <data>
  7534. WMqI6MBumy3EN0na1+FYgZ7zNe00Vta1Df5jZ5Rd83s=
  7535. </data>
  7536. </dict>
  7537. <key>Resources/res/模板7.redream</key>
  7538. <dict>
  7539. <key>hash2</key>
  7540. <data>
  7541. CQ70Hv835RRHsXkjnXtH5epg4eKYNQVj4CEZoKh8lso=
  7542. </data>
  7543. </dict>
  7544. <key>Resources/res/模板8.red</key>
  7545. <dict>
  7546. <key>hash2</key>
  7547. <data>
  7548. RlGqRf3rQurpKo0WEjPlaQDTuPkd7rhX/BsqcDH1W/M=
  7549. </data>
  7550. </dict>
  7551. <key>Resources/res/模板8.redream</key>
  7552. <dict>
  7553. <key>hash2</key>
  7554. <data>
  7555. LjGe4bLctz14WEEIAVhQ0QC7ayusEjoIgacNI6Lzsmc=
  7556. </data>
  7557. </dict>
  7558. <key>Resources/res/模板9.red</key>
  7559. <dict>
  7560. <key>hash2</key>
  7561. <data>
  7562. B1L/4Js/ZeQNj+YTdnn3pt3yQeZnb1n2tmqGGFjWT6s=
  7563. </data>
  7564. </dict>
  7565. <key>Resources/res/模板9.redream</key>
  7566. <dict>
  7567. <key>hash2</key>
  7568. <data>
  7569. 2VGME+GCYdQXLD2OeiI+fh9M3ipyb6g5kry2gG0EZ6Y=
  7570. </data>
  7571. </dict>
  7572. <key>Resources/scripts/ccb_redirect.py</key>
  7573. <dict>
  7574. <key>hash2</key>
  7575. <data>
  7576. PfhUGhWznhddpN9AOVTZ585b6ITjScxrSRpIjbFqcYw=
  7577. </data>
  7578. </dict>
  7579. <key>Resources/scripts/copy_2_android.py</key>
  7580. <dict>
  7581. <key>hash2</key>
  7582. <data>
  7583. YEwPgzj18AD/T6sARAS5GGw8Iwgsxn4NBpgz1TkZtXI=
  7584. </data>
  7585. </dict>
  7586. <key>Resources/scripts/copy_2_ios.py</key>
  7587. <dict>
  7588. <key>hash2</key>
  7589. <data>
  7590. 6M0ISGmDgO1GpAxbC2ZxB1MX7fXC1mQdO0cGki/oXxA=
  7591. </data>
  7592. </dict>
  7593. <key>Resources/scripts/copy_2_mac.py</key>
  7594. <dict>
  7595. <key>hash2</key>
  7596. <data>
  7597. Qjt837NDtmstVLzUv9uxQ8XzQEzfRowrTOOz/UaQeu0=
  7598. </data>
  7599. </dict>
  7600. <key>Resources/scripts/export_small_texture.py</key>
  7601. <dict>
  7602. <key>hash2</key>
  7603. <data>
  7604. HlucUfeCxsTQDBOt/4XLe5D0xKSYlKrVUBIMNeo4CPw=
  7605. </data>
  7606. </dict>
  7607. <key>Resources/scripts/libs/__init__.py</key>
  7608. <dict>
  7609. <key>hash2</key>
  7610. <data>
  7611. 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
  7612. </data>
  7613. </dict>
  7614. <key>Resources/scripts/libs/__init__.pyc</key>
  7615. <dict>
  7616. <key>hash2</key>
  7617. <data>
  7618. hvSKKdy6KzHAmy+MXWzTK/3rS/rd81+zmMa2rl0PYN8=
  7619. </data>
  7620. </dict>
  7621. <key>Resources/scripts/libs/__pycache__/__init__.cpython-312.pyc</key>
  7622. <dict>
  7623. <key>hash2</key>
  7624. <data>
  7625. UJV+trI8V3yzFRKAWaq9waYEkEV51ptznahHtD/drrs=
  7626. </data>
  7627. </dict>
  7628. <key>Resources/scripts/libs/__pycache__/__init__.cpython-37.pyc</key>
  7629. <dict>
  7630. <key>hash2</key>
  7631. <data>
  7632. ICOUp6PAM7Yrz2UIlmWRadyBW++mp9OxEfrDTMkbKsA=
  7633. </data>
  7634. </dict>
  7635. <key>Resources/scripts/libs/__pycache__/file_utils.cpython-312.pyc</key>
  7636. <dict>
  7637. <key>hash2</key>
  7638. <data>
  7639. StxKR32A/HEUcwcAL68r8BGXGcnlcZvgQh5IhMBJoHI=
  7640. </data>
  7641. </dict>
  7642. <key>Resources/scripts/libs/__pycache__/file_utils.cpython-37.pyc</key>
  7643. <dict>
  7644. <key>hash2</key>
  7645. <data>
  7646. WIDpGCuasjMkJ1JG+XQJmH2i5hZL1pmrAUnYq9GfX8E=
  7647. </data>
  7648. </dict>
  7649. <key>Resources/scripts/libs/biplist/__init__.py</key>
  7650. <dict>
  7651. <key>hash2</key>
  7652. <data>
  7653. GEagv9tNCJiD45H/t8Qp/dfqq+fKYLO122HdKzux2Tc=
  7654. </data>
  7655. </dict>
  7656. <key>Resources/scripts/libs/file_utils.py</key>
  7657. <dict>
  7658. <key>hash2</key>
  7659. <data>
  7660. 9Nmhx8qdSoexq9FBJNrhl6Pu4BP2IKI8BPml3ShyIYo=
  7661. </data>
  7662. </dict>
  7663. <key>Resources/scripts/libs/file_utils.pyc</key>
  7664. <dict>
  7665. <key>hash2</key>
  7666. <data>
  7667. mJGjtmuDdYMGq/HTP5ZXKhI446p9Cok0Sy8rgPn7V9I=
  7668. </data>
  7669. </dict>
  7670. <key>Resources/scripts/重定位CCB资源.command</key>
  7671. <dict>
  7672. <key>hash2</key>
  7673. <data>
  7674. MvQGXd723CjlUCwxsHuf7VYhdD2kZ6J3KfIcxdDb4ok=
  7675. </data>
  7676. </dict>
  7677. </dict>
  7678. <key>rules</key>
  7679. <dict>
  7680. <key>^Resources/</key>
  7681. <true/>
  7682. <key>^Resources/.*\.lproj/</key>
  7683. <dict>
  7684. <key>optional</key>
  7685. <true/>
  7686. <key>weight</key>
  7687. <real>1000</real>
  7688. </dict>
  7689. <key>^Resources/.*\.lproj/locversion.plist$</key>
  7690. <dict>
  7691. <key>omit</key>
  7692. <true/>
  7693. <key>weight</key>
  7694. <real>1100</real>
  7695. </dict>
  7696. <key>^Resources/Base\.lproj/</key>
  7697. <dict>
  7698. <key>weight</key>
  7699. <real>1010</real>
  7700. </dict>
  7701. <key>^version.plist$</key>
  7702. <true/>
  7703. </dict>
  7704. <key>rules2</key>
  7705. <dict>
  7706. <key>.*\.dSYM($|/)</key>
  7707. <dict>
  7708. <key>weight</key>
  7709. <real>11</real>
  7710. </dict>
  7711. <key>^(.*/)?\.DS_Store$</key>
  7712. <dict>
  7713. <key>omit</key>
  7714. <true/>
  7715. <key>weight</key>
  7716. <real>2000</real>
  7717. </dict>
  7718. <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
  7719. <dict>
  7720. <key>nested</key>
  7721. <true/>
  7722. <key>weight</key>
  7723. <real>10</real>
  7724. </dict>
  7725. <key>^.*</key>
  7726. <true/>
  7727. <key>^Info\.plist$</key>
  7728. <dict>
  7729. <key>omit</key>
  7730. <true/>
  7731. <key>weight</key>
  7732. <real>20</real>
  7733. </dict>
  7734. <key>^PkgInfo$</key>
  7735. <dict>
  7736. <key>omit</key>
  7737. <true/>
  7738. <key>weight</key>
  7739. <real>20</real>
  7740. </dict>
  7741. <key>^Resources/</key>
  7742. <dict>
  7743. <key>weight</key>
  7744. <real>20</real>
  7745. </dict>
  7746. <key>^Resources/.*\.lproj/</key>
  7747. <dict>
  7748. <key>optional</key>
  7749. <true/>
  7750. <key>weight</key>
  7751. <real>1000</real>
  7752. </dict>
  7753. <key>^Resources/.*\.lproj/locversion.plist$</key>
  7754. <dict>
  7755. <key>omit</key>
  7756. <true/>
  7757. <key>weight</key>
  7758. <real>1100</real>
  7759. </dict>
  7760. <key>^Resources/Base\.lproj/</key>
  7761. <dict>
  7762. <key>weight</key>
  7763. <real>1010</real>
  7764. </dict>
  7765. <key>^[^/]+$</key>
  7766. <dict>
  7767. <key>nested</key>
  7768. <true/>
  7769. <key>weight</key>
  7770. <real>10</real>
  7771. </dict>
  7772. <key>^embedded\.provisionprofile$</key>
  7773. <dict>
  7774. <key>weight</key>
  7775. <real>20</real>
  7776. </dict>
  7777. <key>^version\.plist$</key>
  7778. <dict>
  7779. <key>weight</key>
  7780. <real>20</real>
  7781. </dict>
  7782. </dict>
  7783. </dict>
  7784. </plist>