No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityEngine.UnityWebRequestModule.cpp 401KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct VirtualActionInvoker0
  9. {
  10. typedef void (*Action)(void*, const RuntimeMethod*);
  11. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  12. {
  13. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  14. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  15. }
  16. };
  17. template <typename T1>
  18. struct VirtualActionInvoker1
  19. {
  20. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  21. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  25. }
  26. };
  27. template <typename T1, typename T2, typename T3>
  28. struct VirtualActionInvoker3
  29. {
  30. typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
  31. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  32. {
  33. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  34. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  35. }
  36. };
  37. template <typename R>
  38. struct VirtualFuncInvoker0
  39. {
  40. typedef R (*Func)(void*, const RuntimeMethod*);
  41. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  42. {
  43. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  44. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  45. }
  46. };
  47. template <typename R, typename T1>
  48. struct VirtualFuncInvoker1
  49. {
  50. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  51. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  52. {
  53. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  54. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  55. }
  56. };
  57. template <typename R, typename T1, typename T2, typename T3>
  58. struct VirtualFuncInvoker3
  59. {
  60. typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
  61. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  62. {
  63. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  64. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  65. }
  66. };
  67. template <typename R, typename T1, typename T2, typename T3, typename T4>
  68. struct VirtualFuncInvoker4
  69. {
  70. typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
  71. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
  72. {
  73. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  74. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
  75. }
  76. };
  77. struct InterfaceActionInvoker0
  78. {
  79. typedef void (*Action)(void*, const RuntimeMethod*);
  80. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  81. {
  82. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  83. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  84. }
  85. };
  86. // System.Action`1<UnityEngine.AsyncOperation>
  87. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
  88. // System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding>
  89. struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
  90. // System.Collections.Generic.Dictionary`2<System.Object,System.Object>
  91. struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
  92. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  93. struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
  94. // System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
  95. struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
  96. // System.Collections.Generic.IEqualityComparer`1<System.String>
  97. struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
  98. // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
  99. struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342;
  100. // System.Collections.Generic.List`1<System.Byte[]>
  101. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4;
  102. // System.Collections.Generic.List`1<System.Object>
  103. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  104. // System.Collections.Generic.List`1<System.String>
  105. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
  106. // System.Threading.Tasks.Task`1<System.Int32>
  107. struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
  108. // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
  109. struct ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76;
  110. // System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
  111. struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
  112. // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
  113. struct EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7;
  114. // System.Byte[][]
  115. struct ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA;
  116. // System.Byte[]
  117. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  118. // System.Char[]
  119. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  120. // System.Delegate[]
  121. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  122. // System.Int32[]
  123. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  124. // System.IntPtr[]
  125. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  126. // System.Object[]
  127. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  128. // System.Diagnostics.StackTrace[]
  129. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  130. // System.String[]
  131. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  132. // System.ArgumentException
  133. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  134. // UnityEngine.AsyncOperation
  135. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C;
  136. // UnityEngine.Networking.CertificateHandler
  137. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;
  138. // System.Globalization.CodePageDataItem
  139. struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
  140. // System.Text.DecoderFallback
  141. struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
  142. // System.DelegateData
  143. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  144. // UnityEngine.Networking.DownloadHandler
  145. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;
  146. // UnityEngine.Networking.DownloadHandlerBuffer
  147. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974;
  148. // System.Text.EncoderFallback
  149. struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
  150. // System.Text.Encoding
  151. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
  152. // System.Text.RegularExpressions.ExclusiveReference
  153. struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
  154. // System.Collections.Hashtable
  155. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
  156. // System.Collections.IDictionary
  157. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  158. // System.InvalidOperationException
  159. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  160. // System.IO.MemoryStream
  161. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2;
  162. // System.Reflection.MethodInfo
  163. struct MethodInfo_t;
  164. // System.Text.RegularExpressions.Regex
  165. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
  166. // System.Text.RegularExpressions.RegexCode
  167. struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
  168. // System.Text.RegularExpressions.RegexRunnerFactory
  169. struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
  170. // System.Runtime.Serialization.SafeSerializationManager
  171. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  172. // System.Threading.SemaphoreSlim
  173. struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
  174. // System.String
  175. struct String_t;
  176. // System.Text.StringBuilder
  177. struct StringBuilder_t;
  178. // UnityEngine.Networking.UnityWebRequest
  179. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;
  180. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  181. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C;
  182. // UnityEngine.Networking.UploadHandler
  183. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;
  184. // UnityEngine.Networking.UploadHandlerRaw
  185. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A;
  186. // System.Uri
  187. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
  188. // System.UriParser
  189. struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
  190. // System.Void
  191. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  192. // UnityEngine.WWWForm
  193. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045;
  194. // System.Text.RegularExpressions.Regex/CachedCodeEntry
  195. struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
  196. // System.IO.Stream/ReadWriteTask
  197. struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
  198. // System.Uri/UriInfo
  199. struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
  200. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  201. IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
  202. IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
  203. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  204. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var;
  205. IL2CPP_EXTERN_C RuntimeClass* DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var;
  206. IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
  207. IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
  208. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
  209. IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
  210. IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
  211. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  212. IL2CPP_EXTERN_C RuntimeClass* List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var;
  213. IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
  214. IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
  215. IL2CPP_EXTERN_C RuntimeClass* MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var;
  216. IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
  217. IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
  218. IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  219. IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
  220. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var;
  221. IL2CPP_EXTERN_C RuntimeClass* UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var;
  222. IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
  223. IL2CPP_EXTERN_C RuntimeClass* WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var;
  224. IL2CPP_EXTERN_C RuntimeClass* WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var;
  225. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var;
  226. IL2CPP_EXTERN_C String_t* _stringLiteral0202811166757AF262261201E48B89F6244FAE6C;
  227. IL2CPP_EXTERN_C String_t* _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708;
  228. IL2CPP_EXTERN_C String_t* _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05;
  229. IL2CPP_EXTERN_C String_t* _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90;
  230. IL2CPP_EXTERN_C String_t* _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE;
  231. IL2CPP_EXTERN_C String_t* _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D;
  232. IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E;
  233. IL2CPP_EXTERN_C String_t* _stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952;
  234. IL2CPP_EXTERN_C String_t* _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA;
  235. IL2CPP_EXTERN_C String_t* _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D;
  236. IL2CPP_EXTERN_C String_t* _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317;
  237. IL2CPP_EXTERN_C String_t* _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86;
  238. IL2CPP_EXTERN_C String_t* _stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5;
  239. IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6;
  240. IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
  241. IL2CPP_EXTERN_C String_t* _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA;
  242. IL2CPP_EXTERN_C String_t* _stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02;
  243. IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84;
  244. IL2CPP_EXTERN_C String_t* _stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6;
  245. IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18;
  246. IL2CPP_EXTERN_C String_t* _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571;
  247. IL2CPP_EXTERN_C String_t* _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F;
  248. IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
  249. IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A;
  250. IL2CPP_EXTERN_C String_t* _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710;
  251. IL2CPP_EXTERN_C String_t* _stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E;
  252. IL2CPP_EXTERN_C String_t* _stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843;
  253. IL2CPP_EXTERN_C String_t* _stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E;
  254. IL2CPP_EXTERN_C String_t* _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15;
  255. IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
  256. IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E;
  257. IL2CPP_EXTERN_C String_t* _stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C;
  258. IL2CPP_EXTERN_C String_t* _stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2;
  259. IL2CPP_EXTERN_C String_t* _stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39;
  260. IL2CPP_EXTERN_C String_t* _stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C;
  261. IL2CPP_EXTERN_C String_t* _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E;
  262. IL2CPP_EXTERN_C String_t* _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D;
  263. IL2CPP_EXTERN_C String_t* _stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36;
  264. IL2CPP_EXTERN_C String_t* _stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69;
  265. IL2CPP_EXTERN_C String_t* _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536;
  266. IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
  267. IL2CPP_EXTERN_C String_t* _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50;
  268. IL2CPP_EXTERN_C String_t* _stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2;
  269. IL2CPP_EXTERN_C String_t* _stringLiteralCFD59FD74BD22E570703A8BC6B77F6081661FEEB;
  270. IL2CPP_EXTERN_C String_t* _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF;
  271. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  272. IL2CPP_EXTERN_C String_t* _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A;
  273. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var;
  274. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var;
  275. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var;
  276. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var;
  277. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var;
  278. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var;
  279. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var;
  280. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var;
  281. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var;
  282. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
  283. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var;
  284. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
  285. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var;
  286. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
  287. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var;
  288. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var;
  289. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var;
  290. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var;
  291. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var;
  292. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var;
  293. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var;
  294. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var;
  295. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var;
  296. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var;
  297. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var;
  298. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var;
  299. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var;
  300. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var;
  301. IL2CPP_EXTERN_C const RuntimeMethod* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var;
  302. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;;
  303. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;
  304. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;;
  305. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;
  306. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;;
  307. struct Delegate_t_marshaled_com;
  308. struct Delegate_t_marshaled_pinvoke;
  309. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;;
  310. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;
  311. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;;
  312. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;
  313. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;;
  314. struct Exception_t_marshaled_com;
  315. struct Exception_t_marshaled_pinvoke;
  316. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;;
  317. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;
  318. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;;
  319. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;
  320. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;;
  321. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;;
  322. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;
  323. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;;
  324. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;
  325. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;;
  326. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  327. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  328. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  329. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  330. IL2CPP_EXTERN_C_BEGIN
  331. IL2CPP_EXTERN_C_END
  332. #ifdef __clang__
  333. #pragma clang diagnostic push
  334. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  335. #pragma clang diagnostic ignored "-Wunused-variable"
  336. #endif
  337. // <Module>
  338. struct U3CModuleU3E_t42F165DEA2597BD5AB2C914FCF80349ECF878162
  339. {
  340. };
  341. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  342. struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83 : public RuntimeObject
  343. {
  344. // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
  345. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
  346. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
  347. EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7* ____entries_1;
  348. // System.Int32 System.Collections.Generic.Dictionary`2::_count
  349. int32_t ____count_2;
  350. // System.Int32 System.Collections.Generic.Dictionary`2::_freeList
  351. int32_t ____freeList_3;
  352. // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
  353. int32_t ____freeCount_4;
  354. // System.Int32 System.Collections.Generic.Dictionary`2::_version
  355. int32_t ____version_5;
  356. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
  357. RuntimeObject* ____comparer_6;
  358. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
  359. KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* ____keys_7;
  360. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
  361. ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76* ____values_8;
  362. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  363. RuntimeObject* ____syncRoot_9;
  364. };
  365. // System.Collections.Generic.List`1<System.Byte[]>
  366. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4 : public RuntimeObject
  367. {
  368. // T[] System.Collections.Generic.List`1::_items
  369. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ____items_1;
  370. // System.Int32 System.Collections.Generic.List`1::_size
  371. int32_t ____size_2;
  372. // System.Int32 System.Collections.Generic.List`1::_version
  373. int32_t ____version_3;
  374. // System.Object System.Collections.Generic.List`1::_syncRoot
  375. RuntimeObject* ____syncRoot_4;
  376. };
  377. // System.Collections.Generic.List`1<System.Object>
  378. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  379. {
  380. // T[] System.Collections.Generic.List`1::_items
  381. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
  382. // System.Int32 System.Collections.Generic.List`1::_size
  383. int32_t ____size_2;
  384. // System.Int32 System.Collections.Generic.List`1::_version
  385. int32_t ____version_3;
  386. // System.Object System.Collections.Generic.List`1::_syncRoot
  387. RuntimeObject* ____syncRoot_4;
  388. };
  389. // System.Collections.Generic.List`1<System.String>
  390. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
  391. {
  392. // T[] System.Collections.Generic.List`1::_items
  393. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
  394. // System.Int32 System.Collections.Generic.List`1::_size
  395. int32_t ____size_2;
  396. // System.Int32 System.Collections.Generic.List`1::_version
  397. int32_t ____version_3;
  398. // System.Object System.Collections.Generic.List`1::_syncRoot
  399. RuntimeObject* ____syncRoot_4;
  400. };
  401. // System.Text.Encoding
  402. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
  403. {
  404. // System.Int32 System.Text.Encoding::m_codePage
  405. int32_t ___m_codePage_9;
  406. // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
  407. CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10;
  408. // System.Boolean System.Text.Encoding::m_deserializedFromEverett
  409. bool ___m_deserializedFromEverett_11;
  410. // System.Boolean System.Text.Encoding::m_isReadOnly
  411. bool ___m_isReadOnly_12;
  412. // System.Text.EncoderFallback System.Text.Encoding::encoderFallback
  413. EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13;
  414. // System.Text.DecoderFallback System.Text.Encoding::decoderFallback
  415. DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14;
  416. };
  417. // System.MarshalByRefObject
  418. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
  419. {
  420. // System.Object System.MarshalByRefObject::_identity
  421. RuntimeObject* ____identity_0;
  422. };
  423. // Native definition for P/Invoke marshalling of System.MarshalByRefObject
  424. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
  425. {
  426. Il2CppIUnknown* ____identity_0;
  427. };
  428. // Native definition for COM marshalling of System.MarshalByRefObject
  429. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
  430. {
  431. Il2CppIUnknown* ____identity_0;
  432. };
  433. // System.String
  434. struct String_t : public RuntimeObject
  435. {
  436. // System.Int32 System.String::_stringLength
  437. int32_t ____stringLength_4;
  438. // System.Char System.String::_firstChar
  439. Il2CppChar ____firstChar_5;
  440. };
  441. // System.Text.StringBuilder
  442. struct StringBuilder_t : public RuntimeObject
  443. {
  444. // System.Char[] System.Text.StringBuilder::m_ChunkChars
  445. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
  446. // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
  447. StringBuilder_t* ___m_ChunkPrevious_1;
  448. // System.Int32 System.Text.StringBuilder::m_ChunkLength
  449. int32_t ___m_ChunkLength_2;
  450. // System.Int32 System.Text.StringBuilder::m_ChunkOffset
  451. int32_t ___m_ChunkOffset_3;
  452. // System.Int32 System.Text.StringBuilder::m_MaxCapacity
  453. int32_t ___m_MaxCapacity_4;
  454. };
  455. // System.Uri
  456. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
  457. {
  458. // System.String System.Uri::m_String
  459. String_t* ___m_String_13;
  460. // System.String System.Uri::m_originalUnicodeString
  461. String_t* ___m_originalUnicodeString_14;
  462. // System.UriParser System.Uri::m_Syntax
  463. UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_15;
  464. // System.String System.Uri::m_DnsSafeHost
  465. String_t* ___m_DnsSafeHost_16;
  466. // System.Uri/Flags System.Uri::m_Flags
  467. uint64_t ___m_Flags_17;
  468. // System.Uri/UriInfo System.Uri::m_Info
  469. UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18;
  470. // System.Boolean System.Uri::m_iriParsing
  471. bool ___m_iriParsing_19;
  472. };
  473. // System.ValueType
  474. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  475. {
  476. };
  477. // Native definition for P/Invoke marshalling of System.ValueType
  478. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  479. {
  480. };
  481. // Native definition for COM marshalling of System.ValueType
  482. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  483. {
  484. };
  485. // UnityEngine.WWWForm
  486. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045 : public RuntimeObject
  487. {
  488. // System.Collections.Generic.List`1<System.Byte[]> UnityEngine.WWWForm::formData
  489. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* ___formData_0;
  490. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fieldNames
  491. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___fieldNames_1;
  492. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fileNames
  493. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___fileNames_2;
  494. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::types
  495. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___types_3;
  496. // System.Byte[] UnityEngine.WWWForm::boundary
  497. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___boundary_4;
  498. // System.Boolean UnityEngine.WWWForm::containsFiles
  499. bool ___containsFiles_5;
  500. };
  501. // UnityEngine.WWWTranscoder
  502. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B : public RuntimeObject
  503. {
  504. };
  505. // UnityEngineInternal.WebRequestUtils
  506. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443 : public RuntimeObject
  507. {
  508. };
  509. // UnityEngine.YieldInstruction
  510. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
  511. {
  512. };
  513. // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
  514. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  515. {
  516. };
  517. // Native definition for COM marshalling of UnityEngine.YieldInstruction
  518. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  519. {
  520. };
  521. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  522. struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
  523. {
  524. // TKey System.Collections.Generic.KeyValuePair`2::key
  525. RuntimeObject* ___key_0;
  526. // TValue System.Collections.Generic.KeyValuePair`2::value
  527. RuntimeObject* ___value_1;
  528. };
  529. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  530. struct KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A
  531. {
  532. // TKey System.Collections.Generic.KeyValuePair`2::key
  533. String_t* ___key_0;
  534. // TValue System.Collections.Generic.KeyValuePair`2::value
  535. String_t* ___value_1;
  536. };
  537. // Unity.Collections.NativeArray`1<System.Byte>
  538. struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
  539. {
  540. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  541. void* ___m_Buffer_0;
  542. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  543. int32_t ___m_Length_1;
  544. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  545. int32_t ___m_AllocatorLabel_2;
  546. };
  547. // System.Boolean
  548. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  549. {
  550. // System.Boolean System.Boolean::m_value
  551. bool ___m_value_0;
  552. };
  553. // System.Byte
  554. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  555. {
  556. // System.Byte System.Byte::m_value
  557. uint8_t ___m_value_0;
  558. };
  559. // System.Char
  560. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  561. {
  562. // System.Char System.Char::m_value
  563. Il2CppChar ___m_value_0;
  564. };
  565. // System.Int32
  566. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  567. {
  568. // System.Int32 System.Int32::m_value
  569. int32_t ___m_value_0;
  570. };
  571. // System.Int64
  572. struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
  573. {
  574. // System.Int64 System.Int64::m_value
  575. int64_t ___m_value_0;
  576. };
  577. // System.IntPtr
  578. struct IntPtr_t
  579. {
  580. // System.Void* System.IntPtr::m_value
  581. void* ___m_value_0;
  582. };
  583. // System.SByte
  584. struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
  585. {
  586. // System.SByte System.SByte::m_value
  587. int8_t ___m_value_0;
  588. };
  589. // System.IO.Stream
  590. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
  591. {
  592. // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
  593. ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2;
  594. // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
  595. SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3;
  596. };
  597. // System.TimeSpan
  598. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
  599. {
  600. // System.Int64 System.TimeSpan::_ticks
  601. int64_t ____ticks_22;
  602. };
  603. // System.UInt64
  604. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  605. {
  606. // System.UInt64 System.UInt64::m_value
  607. uint64_t ___m_value_0;
  608. };
  609. // System.Void
  610. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  611. {
  612. union
  613. {
  614. struct
  615. {
  616. };
  617. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  618. };
  619. };
  620. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  621. struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9
  622. {
  623. // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
  624. Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
  625. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
  626. int32_t ____version_1;
  627. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
  628. int32_t ____index_2;
  629. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
  630. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3;
  631. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
  632. int32_t ____getEnumeratorRetType_4;
  633. };
  634. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  635. struct Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562
  636. {
  637. // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
  638. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ____dictionary_0;
  639. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
  640. int32_t ____version_1;
  641. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
  642. int32_t ____index_2;
  643. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
  644. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A ____current_3;
  645. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
  646. int32_t ____getEnumeratorRetType_4;
  647. };
  648. // UnityEngine.AsyncOperation
  649. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
  650. {
  651. // System.IntPtr UnityEngine.AsyncOperation::m_Ptr
  652. intptr_t ___m_Ptr_0;
  653. // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
  654. Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback_1;
  655. };
  656. // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
  657. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  658. {
  659. intptr_t ___m_Ptr_0;
  660. Il2CppMethodPointer ___m_completeCallback_1;
  661. };
  662. // Native definition for COM marshalling of UnityEngine.AsyncOperation
  663. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  664. {
  665. intptr_t ___m_Ptr_0;
  666. Il2CppMethodPointer ___m_completeCallback_1;
  667. };
  668. // UnityEngine.Networking.CertificateHandler
  669. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804 : public RuntimeObject
  670. {
  671. // System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
  672. intptr_t ___m_Ptr_0;
  673. };
  674. // Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler
  675. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke
  676. {
  677. intptr_t ___m_Ptr_0;
  678. };
  679. // Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
  680. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com
  681. {
  682. intptr_t ___m_Ptr_0;
  683. };
  684. // System.Delegate
  685. struct Delegate_t : public RuntimeObject
  686. {
  687. // System.IntPtr System.Delegate::method_ptr
  688. Il2CppMethodPointer ___method_ptr_0;
  689. // System.IntPtr System.Delegate::invoke_impl
  690. intptr_t ___invoke_impl_1;
  691. // System.Object System.Delegate::m_target
  692. RuntimeObject* ___m_target_2;
  693. // System.IntPtr System.Delegate::method
  694. intptr_t ___method_3;
  695. // System.IntPtr System.Delegate::delegate_trampoline
  696. intptr_t ___delegate_trampoline_4;
  697. // System.IntPtr System.Delegate::extra_arg
  698. intptr_t ___extra_arg_5;
  699. // System.IntPtr System.Delegate::method_code
  700. intptr_t ___method_code_6;
  701. // System.IntPtr System.Delegate::interp_method
  702. intptr_t ___interp_method_7;
  703. // System.IntPtr System.Delegate::interp_invoke_impl
  704. intptr_t ___interp_invoke_impl_8;
  705. // System.Reflection.MethodInfo System.Delegate::method_info
  706. MethodInfo_t* ___method_info_9;
  707. // System.Reflection.MethodInfo System.Delegate::original_method_info
  708. MethodInfo_t* ___original_method_info_10;
  709. // System.DelegateData System.Delegate::data
  710. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  711. // System.Boolean System.Delegate::method_is_virtual
  712. bool ___method_is_virtual_12;
  713. };
  714. // Native definition for P/Invoke marshalling of System.Delegate
  715. struct Delegate_t_marshaled_pinvoke
  716. {
  717. intptr_t ___method_ptr_0;
  718. intptr_t ___invoke_impl_1;
  719. Il2CppIUnknown* ___m_target_2;
  720. intptr_t ___method_3;
  721. intptr_t ___delegate_trampoline_4;
  722. intptr_t ___extra_arg_5;
  723. intptr_t ___method_code_6;
  724. intptr_t ___interp_method_7;
  725. intptr_t ___interp_invoke_impl_8;
  726. MethodInfo_t* ___method_info_9;
  727. MethodInfo_t* ___original_method_info_10;
  728. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  729. int32_t ___method_is_virtual_12;
  730. };
  731. // Native definition for COM marshalling of System.Delegate
  732. struct Delegate_t_marshaled_com
  733. {
  734. intptr_t ___method_ptr_0;
  735. intptr_t ___invoke_impl_1;
  736. Il2CppIUnknown* ___m_target_2;
  737. intptr_t ___method_3;
  738. intptr_t ___delegate_trampoline_4;
  739. intptr_t ___extra_arg_5;
  740. intptr_t ___method_code_6;
  741. intptr_t ___interp_method_7;
  742. intptr_t ___interp_invoke_impl_8;
  743. MethodInfo_t* ___method_info_9;
  744. MethodInfo_t* ___original_method_info_10;
  745. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  746. int32_t ___method_is_virtual_12;
  747. };
  748. // UnityEngine.Networking.DownloadHandler
  749. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB : public RuntimeObject
  750. {
  751. // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
  752. intptr_t ___m_Ptr_0;
  753. };
  754. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
  755. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  756. {
  757. intptr_t ___m_Ptr_0;
  758. };
  759. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
  760. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  761. {
  762. intptr_t ___m_Ptr_0;
  763. };
  764. // System.Exception
  765. struct Exception_t : public RuntimeObject
  766. {
  767. // System.String System.Exception::_className
  768. String_t* ____className_1;
  769. // System.String System.Exception::_message
  770. String_t* ____message_2;
  771. // System.Collections.IDictionary System.Exception::_data
  772. RuntimeObject* ____data_3;
  773. // System.Exception System.Exception::_innerException
  774. Exception_t* ____innerException_4;
  775. // System.String System.Exception::_helpURL
  776. String_t* ____helpURL_5;
  777. // System.Object System.Exception::_stackTrace
  778. RuntimeObject* ____stackTrace_6;
  779. // System.String System.Exception::_stackTraceString
  780. String_t* ____stackTraceString_7;
  781. // System.String System.Exception::_remoteStackTraceString
  782. String_t* ____remoteStackTraceString_8;
  783. // System.Int32 System.Exception::_remoteStackIndex
  784. int32_t ____remoteStackIndex_9;
  785. // System.Object System.Exception::_dynamicMethods
  786. RuntimeObject* ____dynamicMethods_10;
  787. // System.Int32 System.Exception::_HResult
  788. int32_t ____HResult_11;
  789. // System.String System.Exception::_source
  790. String_t* ____source_12;
  791. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  792. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  793. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  794. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  795. // System.IntPtr[] System.Exception::native_trace_ips
  796. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
  797. // System.Int32 System.Exception::caught_in_unmanaged
  798. int32_t ___caught_in_unmanaged_16;
  799. };
  800. // Native definition for P/Invoke marshalling of System.Exception
  801. struct Exception_t_marshaled_pinvoke
  802. {
  803. char* ____className_1;
  804. char* ____message_2;
  805. RuntimeObject* ____data_3;
  806. Exception_t_marshaled_pinvoke* ____innerException_4;
  807. char* ____helpURL_5;
  808. Il2CppIUnknown* ____stackTrace_6;
  809. char* ____stackTraceString_7;
  810. char* ____remoteStackTraceString_8;
  811. int32_t ____remoteStackIndex_9;
  812. Il2CppIUnknown* ____dynamicMethods_10;
  813. int32_t ____HResult_11;
  814. char* ____source_12;
  815. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  816. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  817. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  818. int32_t ___caught_in_unmanaged_16;
  819. };
  820. // Native definition for COM marshalling of System.Exception
  821. struct Exception_t_marshaled_com
  822. {
  823. Il2CppChar* ____className_1;
  824. Il2CppChar* ____message_2;
  825. RuntimeObject* ____data_3;
  826. Exception_t_marshaled_com* ____innerException_4;
  827. Il2CppChar* ____helpURL_5;
  828. Il2CppIUnknown* ____stackTrace_6;
  829. Il2CppChar* ____stackTraceString_7;
  830. Il2CppChar* ____remoteStackTraceString_8;
  831. int32_t ____remoteStackIndex_9;
  832. Il2CppIUnknown* ____dynamicMethods_10;
  833. int32_t ____HResult_11;
  834. Il2CppChar* ____source_12;
  835. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  836. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  837. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  838. int32_t ___caught_in_unmanaged_16;
  839. };
  840. // System.IO.MemoryStream
  841. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
  842. {
  843. // System.Byte[] System.IO.MemoryStream::_buffer
  844. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer_4;
  845. // System.Int32 System.IO.MemoryStream::_origin
  846. int32_t ____origin_5;
  847. // System.Int32 System.IO.MemoryStream::_position
  848. int32_t ____position_6;
  849. // System.Int32 System.IO.MemoryStream::_length
  850. int32_t ____length_7;
  851. // System.Int32 System.IO.MemoryStream::_capacity
  852. int32_t ____capacity_8;
  853. // System.Boolean System.IO.MemoryStream::_expandable
  854. bool ____expandable_9;
  855. // System.Boolean System.IO.MemoryStream::_writable
  856. bool ____writable_10;
  857. // System.Boolean System.IO.MemoryStream::_exposable
  858. bool ____exposable_11;
  859. // System.Boolean System.IO.MemoryStream::_isOpen
  860. bool ____isOpen_12;
  861. // System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
  862. Task_1_t4C228DE57804012969575431CFF12D57C875552D* ____lastReadTask_13;
  863. };
  864. // System.Text.RegularExpressions.Regex
  865. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
  866. {
  867. // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
  868. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout_10;
  869. // System.String System.Text.RegularExpressions.Regex::pattern
  870. String_t* ___pattern_12;
  871. // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
  872. int32_t ___roptions_13;
  873. // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
  874. RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory_14;
  875. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
  876. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps_15;
  877. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
  878. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames_16;
  879. // System.String[] System.Text.RegularExpressions.Regex::capslist
  880. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist_17;
  881. // System.Int32 System.Text.RegularExpressions.Regex::capsize
  882. int32_t ___capsize_18;
  883. // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::_runnerref
  884. ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref_19;
  885. // System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement> System.Text.RegularExpressions.Regex::_replref
  886. WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref_20;
  887. // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::_code
  888. RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code_21;
  889. // System.Boolean System.Text.RegularExpressions.Regex::_refsInitialized
  890. bool ____refsInitialized_22;
  891. };
  892. // UnityEngine.Networking.UploadHandler
  893. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6 : public RuntimeObject
  894. {
  895. // System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr
  896. intptr_t ___m_Ptr_0;
  897. };
  898. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler
  899. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  900. {
  901. intptr_t ___m_Ptr_0;
  902. };
  903. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandler
  904. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  905. {
  906. intptr_t ___m_Ptr_0;
  907. };
  908. // UnityEngine.Networking.DownloadHandlerBuffer
  909. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974 : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB
  910. {
  911. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandlerBuffer::m_NativeData
  912. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData_1;
  913. };
  914. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  915. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  916. {
  917. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData_1;
  918. };
  919. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  920. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  921. {
  922. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData_1;
  923. };
  924. // System.MulticastDelegate
  925. struct MulticastDelegate_t : public Delegate_t
  926. {
  927. // System.Delegate[] System.MulticastDelegate::delegates
  928. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
  929. };
  930. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  931. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  932. {
  933. Delegate_t_marshaled_pinvoke** ___delegates_13;
  934. };
  935. // Native definition for COM marshalling of System.MulticastDelegate
  936. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  937. {
  938. Delegate_t_marshaled_com** ___delegates_13;
  939. };
  940. // System.SystemException
  941. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  942. {
  943. };
  944. // UnityEngine.Networking.UnityWebRequest
  945. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F : public RuntimeObject
  946. {
  947. // System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr
  948. intptr_t ___m_Ptr_0;
  949. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler
  950. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___m_DownloadHandler_1;
  951. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler
  952. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___m_UploadHandler_2;
  953. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::m_CertificateHandler
  954. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___m_CertificateHandler_3;
  955. // System.Uri UnityEngine.Networking.UnityWebRequest::m_Uri
  956. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri_4;
  957. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeCertificateHandlerOnDispose>k__BackingField
  958. bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  959. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField
  960. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  961. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField
  962. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  963. };
  964. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest
  965. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke
  966. {
  967. intptr_t ___m_Ptr_0;
  968. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke ___m_DownloadHandler_1;
  969. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke ___m_UploadHandler_2;
  970. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke ___m_CertificateHandler_3;
  971. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri_4;
  972. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  973. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  974. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  975. };
  976. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest
  977. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com
  978. {
  979. intptr_t ___m_Ptr_0;
  980. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com* ___m_DownloadHandler_1;
  981. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com* ___m_UploadHandler_2;
  982. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com* ___m_CertificateHandler_3;
  983. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri_4;
  984. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  985. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  986. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  987. };
  988. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  989. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C
  990. {
  991. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequestAsyncOperation::<webRequest>k__BackingField
  992. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___U3CwebRequestU3Ek__BackingField_2;
  993. };
  994. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  995. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke
  996. {
  997. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField_2;
  998. };
  999. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  1000. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com
  1001. {
  1002. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com* ___U3CwebRequestU3Ek__BackingField_2;
  1003. };
  1004. // UnityEngine.Networking.UploadHandlerRaw
  1005. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6
  1006. {
  1007. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.UploadHandlerRaw::m_Payload
  1008. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload_1;
  1009. };
  1010. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandlerRaw
  1011. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  1012. {
  1013. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload_1;
  1014. };
  1015. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandlerRaw
  1016. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  1017. {
  1018. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload_1;
  1019. };
  1020. // System.Action`1<UnityEngine.AsyncOperation>
  1021. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB : public MulticastDelegate_t
  1022. {
  1023. };
  1024. // System.ArgumentException
  1025. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1026. {
  1027. // System.String System.ArgumentException::_paramName
  1028. String_t* ____paramName_18;
  1029. };
  1030. // System.FormatException
  1031. struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1032. {
  1033. };
  1034. // System.InvalidOperationException
  1035. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1036. {
  1037. };
  1038. // System.NotSupportedException
  1039. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1040. {
  1041. };
  1042. // <Module>
  1043. // <Module>
  1044. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  1045. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  1046. // System.Collections.Generic.List`1<System.Byte[]>
  1047. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_StaticFields
  1048. {
  1049. // T[] System.Collections.Generic.List`1::s_emptyArray
  1050. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ___s_emptyArray_5;
  1051. };
  1052. // System.Collections.Generic.List`1<System.Byte[]>
  1053. // System.Collections.Generic.List`1<System.Object>
  1054. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  1055. {
  1056. // T[] System.Collections.Generic.List`1::s_emptyArray
  1057. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
  1058. };
  1059. // System.Collections.Generic.List`1<System.Object>
  1060. // System.Collections.Generic.List`1<System.String>
  1061. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
  1062. {
  1063. // T[] System.Collections.Generic.List`1::s_emptyArray
  1064. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
  1065. };
  1066. // System.Collections.Generic.List`1<System.String>
  1067. // System.Text.Encoding
  1068. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
  1069. {
  1070. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
  1071. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0;
  1072. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
  1073. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1;
  1074. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
  1075. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2;
  1076. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
  1077. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3;
  1078. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
  1079. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4;
  1080. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
  1081. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5;
  1082. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
  1083. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6;
  1084. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
  1085. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7;
  1086. // System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding> modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
  1087. Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8;
  1088. // System.Object System.Text.Encoding::s_InternalSyncObject
  1089. RuntimeObject* ___s_InternalSyncObject_15;
  1090. };
  1091. // System.Text.Encoding
  1092. // System.String
  1093. struct String_t_StaticFields
  1094. {
  1095. // System.String System.String::Empty
  1096. String_t* ___Empty_6;
  1097. };
  1098. // System.String
  1099. // System.Text.StringBuilder
  1100. // System.Text.StringBuilder
  1101. // System.Uri
  1102. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
  1103. {
  1104. // System.String System.Uri::UriSchemeFile
  1105. String_t* ___UriSchemeFile_0;
  1106. // System.String System.Uri::UriSchemeFtp
  1107. String_t* ___UriSchemeFtp_1;
  1108. // System.String System.Uri::UriSchemeGopher
  1109. String_t* ___UriSchemeGopher_2;
  1110. // System.String System.Uri::UriSchemeHttp
  1111. String_t* ___UriSchemeHttp_3;
  1112. // System.String System.Uri::UriSchemeHttps
  1113. String_t* ___UriSchemeHttps_4;
  1114. // System.String System.Uri::UriSchemeWs
  1115. String_t* ___UriSchemeWs_5;
  1116. // System.String System.Uri::UriSchemeWss
  1117. String_t* ___UriSchemeWss_6;
  1118. // System.String System.Uri::UriSchemeMailto
  1119. String_t* ___UriSchemeMailto_7;
  1120. // System.String System.Uri::UriSchemeNews
  1121. String_t* ___UriSchemeNews_8;
  1122. // System.String System.Uri::UriSchemeNntp
  1123. String_t* ___UriSchemeNntp_9;
  1124. // System.String System.Uri::UriSchemeNetTcp
  1125. String_t* ___UriSchemeNetTcp_10;
  1126. // System.String System.Uri::UriSchemeNetPipe
  1127. String_t* ___UriSchemeNetPipe_11;
  1128. // System.String System.Uri::SchemeDelimiter
  1129. String_t* ___SchemeDelimiter_12;
  1130. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
  1131. bool ___s_ConfigInitialized_20;
  1132. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
  1133. bool ___s_ConfigInitializing_21;
  1134. // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
  1135. int32_t ___s_IdnScope_22;
  1136. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
  1137. bool ___s_IriParsing_23;
  1138. // System.Boolean System.Uri::useDotNetRelativeOrAbsolute
  1139. bool ___useDotNetRelativeOrAbsolute_24;
  1140. // System.Boolean System.Uri::IsWindowsFileSystem
  1141. bool ___IsWindowsFileSystem_25;
  1142. // System.Object System.Uri::s_initLock
  1143. RuntimeObject* ___s_initLock_26;
  1144. // System.Char[] System.Uri::HexLowerChars
  1145. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27;
  1146. // System.Char[] System.Uri::_WSchars
  1147. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28;
  1148. };
  1149. // System.Uri
  1150. // UnityEngine.WWWForm
  1151. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields
  1152. {
  1153. // System.Byte[] UnityEngine.WWWForm::dDash
  1154. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dDash_6;
  1155. // System.Byte[] UnityEngine.WWWForm::crlf
  1156. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___crlf_7;
  1157. // System.Byte[] UnityEngine.WWWForm::contentTypeHeader
  1158. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___contentTypeHeader_8;
  1159. // System.Byte[] UnityEngine.WWWForm::dispositionHeader
  1160. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dispositionHeader_9;
  1161. // System.Byte[] UnityEngine.WWWForm::endQuote
  1162. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___endQuote_10;
  1163. // System.Byte[] UnityEngine.WWWForm::fileNameField
  1164. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___fileNameField_11;
  1165. // System.Byte[] UnityEngine.WWWForm::ampersand
  1166. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ampersand_12;
  1167. // System.Byte[] UnityEngine.WWWForm::equal
  1168. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___equal_13;
  1169. };
  1170. // UnityEngine.WWWForm
  1171. // UnityEngine.WWWTranscoder
  1172. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields
  1173. {
  1174. // System.Byte[] UnityEngine.WWWTranscoder::ucHexChars
  1175. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ucHexChars_0;
  1176. // System.Byte[] UnityEngine.WWWTranscoder::lcHexChars
  1177. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lcHexChars_1;
  1178. // System.Byte UnityEngine.WWWTranscoder::urlEscapeChar
  1179. uint8_t ___urlEscapeChar_2;
  1180. // System.Byte[] UnityEngine.WWWTranscoder::urlSpace
  1181. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlSpace_3;
  1182. // System.Byte[] UnityEngine.WWWTranscoder::dataSpace
  1183. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dataSpace_4;
  1184. // System.Byte[] UnityEngine.WWWTranscoder::urlForbidden
  1185. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlForbidden_5;
  1186. // System.Byte UnityEngine.WWWTranscoder::qpEscapeChar
  1187. uint8_t ___qpEscapeChar_6;
  1188. // System.Byte[] UnityEngine.WWWTranscoder::qpSpace
  1189. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpSpace_7;
  1190. // System.Byte[] UnityEngine.WWWTranscoder::qpForbidden
  1191. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpForbidden_8;
  1192. };
  1193. // UnityEngine.WWWTranscoder
  1194. // UnityEngineInternal.WebRequestUtils
  1195. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields
  1196. {
  1197. // System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex
  1198. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___domainRegex_0;
  1199. };
  1200. // UnityEngineInternal.WebRequestUtils
  1201. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  1202. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  1203. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  1204. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  1205. // Unity.Collections.NativeArray`1<System.Byte>
  1206. // Unity.Collections.NativeArray`1<System.Byte>
  1207. // System.Boolean
  1208. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  1209. {
  1210. // System.String System.Boolean::TrueString
  1211. String_t* ___TrueString_5;
  1212. // System.String System.Boolean::FalseString
  1213. String_t* ___FalseString_6;
  1214. };
  1215. // System.Boolean
  1216. // System.Byte
  1217. // System.Byte
  1218. // System.Char
  1219. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  1220. {
  1221. // System.Byte[] System.Char::s_categoryForLatin1
  1222. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
  1223. };
  1224. // System.Char
  1225. // System.Int32
  1226. // System.Int32
  1227. // System.Int64
  1228. // System.Int64
  1229. // System.IntPtr
  1230. struct IntPtr_t_StaticFields
  1231. {
  1232. // System.IntPtr System.IntPtr::Zero
  1233. intptr_t ___Zero_1;
  1234. };
  1235. // System.IntPtr
  1236. // System.SByte
  1237. // System.SByte
  1238. // System.IO.Stream
  1239. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
  1240. {
  1241. // System.IO.Stream System.IO.Stream::Null
  1242. Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
  1243. };
  1244. // System.IO.Stream
  1245. // System.UInt64
  1246. // System.UInt64
  1247. // System.Void
  1248. // System.Void
  1249. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  1250. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  1251. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  1252. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  1253. // UnityEngine.AsyncOperation
  1254. // UnityEngine.AsyncOperation
  1255. // UnityEngine.Networking.CertificateHandler
  1256. // UnityEngine.Networking.CertificateHandler
  1257. // UnityEngine.Networking.DownloadHandler
  1258. // UnityEngine.Networking.DownloadHandler
  1259. // System.Exception
  1260. struct Exception_t_StaticFields
  1261. {
  1262. // System.Object System.Exception::s_EDILock
  1263. RuntimeObject* ___s_EDILock_0;
  1264. };
  1265. // System.Exception
  1266. // System.IO.MemoryStream
  1267. // System.IO.MemoryStream
  1268. // System.Text.RegularExpressions.Regex
  1269. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
  1270. {
  1271. // System.Int32 System.Text.RegularExpressions.Regex::s_cacheSize
  1272. int32_t ___s_cacheSize_1;
  1273. // System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry> System.Text.RegularExpressions.Regex::s_cache
  1274. Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache_2;
  1275. // System.Int32 System.Text.RegularExpressions.Regex::s_cacheCount
  1276. int32_t ___s_cacheCount_3;
  1277. // System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheFirst
  1278. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst_4;
  1279. // System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheLast
  1280. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast_5;
  1281. // System.TimeSpan System.Text.RegularExpressions.Regex::s_maximumMatchTimeout
  1282. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout_6;
  1283. // System.TimeSpan System.Text.RegularExpressions.Regex::s_defaultMatchTimeout
  1284. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout_8;
  1285. // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
  1286. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout_9;
  1287. };
  1288. // System.Text.RegularExpressions.Regex
  1289. // UnityEngine.Networking.UploadHandler
  1290. // UnityEngine.Networking.UploadHandler
  1291. // UnityEngine.Networking.DownloadHandlerBuffer
  1292. // UnityEngine.Networking.DownloadHandlerBuffer
  1293. // UnityEngine.Networking.UnityWebRequest
  1294. // UnityEngine.Networking.UnityWebRequest
  1295. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  1296. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  1297. // UnityEngine.Networking.UploadHandlerRaw
  1298. // UnityEngine.Networking.UploadHandlerRaw
  1299. // System.Action`1<UnityEngine.AsyncOperation>
  1300. // System.Action`1<UnityEngine.AsyncOperation>
  1301. // System.ArgumentException
  1302. // System.ArgumentException
  1303. // System.FormatException
  1304. // System.FormatException
  1305. // System.InvalidOperationException
  1306. // System.InvalidOperationException
  1307. // System.NotSupportedException
  1308. // System.NotSupportedException
  1309. #ifdef __clang__
  1310. #pragma clang diagnostic pop
  1311. #endif
  1312. // System.Byte[]
  1313. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  1314. {
  1315. ALIGN_FIELD (8) uint8_t m_Items[1];
  1316. inline uint8_t GetAt(il2cpp_array_size_t index) const
  1317. {
  1318. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1319. return m_Items[index];
  1320. }
  1321. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  1322. {
  1323. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1324. return m_Items + index;
  1325. }
  1326. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  1327. {
  1328. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1329. m_Items[index] = value;
  1330. }
  1331. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  1332. {
  1333. return m_Items[index];
  1334. }
  1335. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1336. {
  1337. return m_Items + index;
  1338. }
  1339. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  1340. {
  1341. m_Items[index] = value;
  1342. }
  1343. };
  1344. // System.String[]
  1345. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
  1346. {
  1347. ALIGN_FIELD (8) String_t* m_Items[1];
  1348. inline String_t* GetAt(il2cpp_array_size_t index) const
  1349. {
  1350. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1351. return m_Items[index];
  1352. }
  1353. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  1354. {
  1355. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1356. return m_Items + index;
  1357. }
  1358. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  1359. {
  1360. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1361. m_Items[index] = value;
  1362. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1363. }
  1364. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  1365. {
  1366. return m_Items[index];
  1367. }
  1368. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1369. {
  1370. return m_Items + index;
  1371. }
  1372. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  1373. {
  1374. m_Items[index] = value;
  1375. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1376. }
  1377. };
  1378. // System.Char[]
  1379. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
  1380. {
  1381. ALIGN_FIELD (8) Il2CppChar m_Items[1];
  1382. inline Il2CppChar GetAt(il2cpp_array_size_t index) const
  1383. {
  1384. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1385. return m_Items[index];
  1386. }
  1387. inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
  1388. {
  1389. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1390. return m_Items + index;
  1391. }
  1392. inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
  1393. {
  1394. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1395. m_Items[index] = value;
  1396. }
  1397. inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
  1398. {
  1399. return m_Items[index];
  1400. }
  1401. inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1402. {
  1403. return m_Items + index;
  1404. }
  1405. inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
  1406. {
  1407. m_Items[index] = value;
  1408. }
  1409. };
  1410. // System.Object[]
  1411. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  1412. {
  1413. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  1414. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  1415. {
  1416. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1417. return m_Items[index];
  1418. }
  1419. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  1420. {
  1421. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1422. return m_Items + index;
  1423. }
  1424. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  1425. {
  1426. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1427. m_Items[index] = value;
  1428. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1429. }
  1430. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  1431. {
  1432. return m_Items[index];
  1433. }
  1434. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1435. {
  1436. return m_Items + index;
  1437. }
  1438. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  1439. {
  1440. m_Items[index] = value;
  1441. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1442. }
  1443. };
  1444. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  1445. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  1446. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  1447. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  1448. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  1449. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  1450. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  1451. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  1452. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  1453. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  1454. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  1455. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  1456. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  1457. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  1458. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  1459. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  1460. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  1461. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  1462. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  1463. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  1464. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  1465. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  1466. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  1467. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  1468. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  1469. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1470. // System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
  1471. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
  1472. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
  1473. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  1474. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
  1475. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  1476. // T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
  1477. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1478. // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
  1479. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1480. // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
  1481. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  1482. // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
  1483. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1484. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
  1485. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1486. // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
  1487. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
  1488. // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
  1489. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
  1490. // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
  1491. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1492. // System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
  1493. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1494. // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr<System.Byte>(Unity.Collections.NativeArray`1<T>)
  1495. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method) ;
  1496. // Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
  1497. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
  1498. // System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(T[],Unity.Collections.Allocator)
  1499. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_allocator, const RuntimeMethod* method) ;
  1500. // System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
  1501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1502. // System.Char System.String::get_Chars(System.Int32)
  1503. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1504. // System.Void System.Uri::.ctor(System.String,System.UriKind)
  1505. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, int32_t ___1_uriKind, const RuntimeMethod* method) ;
  1506. // System.Boolean System.Uri::get_IsAbsoluteUri()
  1507. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1508. // System.String System.Uri::get_AbsoluteUri()
  1509. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1510. // System.Void System.Uri::.ctor(System.Uri,System.Uri)
  1511. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_relativeUri, const RuntimeMethod* method) ;
  1512. // System.Boolean System.String::IsNullOrEmpty(System.String)
  1513. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
  1514. // System.Void System.Uri::.ctor(System.String)
  1515. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, const RuntimeMethod* method) ;
  1516. // System.Void System.Uri::.ctor(System.Uri,System.String)
  1517. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, String_t* ___1_relativeUri, const RuntimeMethod* method) ;
  1518. // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
  1519. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_uri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_uri2, const RuntimeMethod* method) ;
  1520. // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
  1521. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_input, const RuntimeMethod* method) ;
  1522. // System.String System.Uri::get_Scheme()
  1523. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1524. // System.String System.String::Concat(System.String,System.String,System.String)
  1525. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
  1526. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  1527. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_targetUri, String_t* ___1_targetUrl, bool ___2_prependProtocol, const RuntimeMethod* method) ;
  1528. // System.Boolean System.Uri::get_IsFile()
  1529. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1530. // System.Boolean System.Uri::get_IsLoopback()
  1531. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1532. // System.String System.Uri::get_OriginalString()
  1533. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1534. // System.String System.Uri::get_AbsolutePath()
  1535. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1536. // System.Boolean System.String::Contains(System.String)
  1537. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1538. // System.Boolean System.String::StartsWith(System.String)
  1539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1540. // System.String System.String::Concat(System.String,System.String)
  1541. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
  1542. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  1543. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method) ;
  1544. // System.Int32 System.String::get_Length()
  1545. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
  1546. // System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32)
  1547. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619 (StringBuilder_t* __this, String_t* ___0_value, int32_t ___1_capacity, const RuntimeMethod* method) ;
  1548. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
  1549. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1550. // System.Boolean System.String::op_Equality(System.String,System.String)
  1551. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  1552. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
  1553. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1554. // System.String System.String::Substring(System.Int32)
  1555. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ;
  1556. // System.String System.Uri::get_PathAndQuery()
  1557. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1558. // System.String System.Uri::get_Fragment()
  1559. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1560. // System.Text.Encoding System.Text.Encoding::get_UTF8()
  1561. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9 (const RuntimeMethod* method) ;
  1562. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  1563. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1564. // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
  1565. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_pattern, const RuntimeMethod* method) ;
  1566. // System.Text.Encoding System.Text.Encoding::get_ASCII()
  1567. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65 (const RuntimeMethod* method) ;
  1568. // System.Void System.Object::.ctor()
  1569. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  1570. // System.Void System.Collections.Generic.List`1<System.Byte[]>::.ctor()
  1571. inline void List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4 (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, const RuntimeMethod* method)
  1572. {
  1573. (( void (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  1574. }
  1575. // System.Void System.Collections.Generic.List`1<System.String>::.ctor()
  1576. inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
  1577. {
  1578. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  1579. }
  1580. // System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32)
  1581. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Random_Range_m6763D9767F033357F88B6637F048F4ACA4123B68 (int32_t ___0_minInclusive, int32_t ___1_maxExclusive, const RuntimeMethod* method) ;
  1582. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String,System.Text.Encoding)
  1583. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_e, const RuntimeMethod* method) ;
  1584. // System.Void System.Collections.Generic.List`1<System.String>::Add(T)
  1585. inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method)
  1586. {
  1587. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  1588. }
  1589. // System.Void System.Collections.Generic.List`1<System.Byte[]>::Add(T)
  1590. inline void List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_inline (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_item, const RuntimeMethod* method)
  1591. {
  1592. (( void (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  1593. }
  1594. // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor()
  1595. inline void Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
  1596. {
  1597. (( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
  1598. }
  1599. // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(TKey,TValue)
  1600. inline void Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___0_key, String_t* ___1_value, const RuntimeMethod* method)
  1601. {
  1602. (( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___0_key, ___1_value, method);
  1603. }
  1604. // System.Void System.IO.MemoryStream::.ctor(System.Int32)
  1605. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8 (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  1606. // T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
  1607. inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method)
  1608. {
  1609. return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1610. }
  1611. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding)
  1612. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1613. // System.Int32 System.String::IndexOf(System.String)
  1614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1615. // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding)
  1616. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A (String_t* ___0_toEncode, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1617. // System.String System.String::Concat(System.String[])
  1618. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
  1619. // T System.Collections.Generic.List`1<System.Byte[]>::get_Item(System.Int32)
  1620. inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6 (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, int32_t ___0_index, const RuntimeMethod* method)
  1621. {
  1622. return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1623. }
  1624. // System.Int32 System.Collections.Generic.List`1<System.Byte[]>::get_Count()
  1625. inline int32_t List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, const RuntimeMethod* method)
  1626. {
  1627. return (( int32_t (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
  1628. }
  1629. // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[])
  1630. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1631. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  1632. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method) ;
  1633. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  1634. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_forbidden, bool ___4_uppercase, const RuntimeMethod* method) ;
  1635. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  1636. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method) ;
  1637. // System.Void UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[],System.Byte&,System.Byte&)
  1638. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651 (uint8_t ___0_b, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_hexChars, uint8_t* ___2_byte0, uint8_t* ___3_byte1, const RuntimeMethod* method) ;
  1639. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  1640. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, const RuntimeMethod* method) ;
  1641. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  1642. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_comperand, const RuntimeMethod* method) ;
  1643. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  1644. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method) ;
  1645. // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
  1646. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD (const RuntimeMethod* method) ;
  1647. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte*,System.Int32)
  1648. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F (uint8_t* ___0_input, int32_t ___1_inputLength, const RuntimeMethod* method) ;
  1649. // System.Void UnityEngine.AsyncOperation::.ctor()
  1650. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_m53CF89405A1E2DA6F517D05792826F5784B0D6EC (AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* __this, const RuntimeMethod* method) ;
  1651. // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
  1652. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  1653. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  1654. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1655. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  1656. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1657. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  1658. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1659. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  1660. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1661. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  1662. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1663. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  1664. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method) ;
  1665. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  1666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1667. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  1668. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1669. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  1670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1671. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  1672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method) ;
  1673. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  1674. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method) ;
  1675. // System.Void System.Object::Finalize()
  1676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  1677. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  1678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1679. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  1680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1681. // System.Void System.GC::SuppressFinalize(System.Object)
  1682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1683. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  1684. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1685. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  1686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1687. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  1688. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1689. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  1690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1691. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  1692. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1693. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  1694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1695. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  1696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1697. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  1698. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1699. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  1700. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method) ;
  1701. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  1702. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1703. // System.Void System.InvalidOperationException::.ctor(System.String)
  1704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1705. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  1706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1707. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  1708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method) ;
  1709. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  1710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1711. // System.Void System.ArgumentException::.ctor(System.String)
  1712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1713. // System.String System.String::ToUpper()
  1714. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49 (String_t* __this, const RuntimeMethod* method) ;
  1715. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  1716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1717. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  1718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1719. // UnityEngine.Networking.UnityWebRequest/Result UnityEngine.Networking.UnityWebRequest::get_result()
  1720. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1721. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  1722. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1723. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  1724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method) ;
  1725. // System.String System.String::Format(System.String,System.Object,System.Object)
  1726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
  1727. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  1728. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1729. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  1730. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method) ;
  1731. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  1732. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1733. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  1734. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1735. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  1736. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
  1737. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  1738. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method) ;
  1739. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  1740. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method) ;
  1741. // System.Int32 System.Math::Max(System.Int32,System.Int32)
  1742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
  1743. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)
  1744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_timeout, const RuntimeMethod* method) ;
  1745. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  1746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1747. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  1748. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___2_downloadHandler, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___3_uploadHandler, const RuntimeMethod* method) ;
  1749. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  1750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method) ;
  1751. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm)
  1752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_request, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method) ;
  1753. // System.Byte[] UnityEngine.WWWForm::get_data()
  1754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method) ;
  1755. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  1756. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method) ;
  1757. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
  1758. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method) ;
  1759. // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::GetEnumerator()
  1760. inline Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
  1761. {
  1762. return (( Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
  1763. }
  1764. // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::Dispose()
  1765. inline void Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1766. {
  1767. (( void (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared)(__this, method);
  1768. }
  1769. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::get_Current()
  1770. inline KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_inline (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1771. {
  1772. return (( KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline)(__this, method);
  1773. }
  1774. // TKey System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Key()
  1775. inline String_t* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
  1776. {
  1777. return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
  1778. }
  1779. // TValue System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value()
  1780. inline String_t* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
  1781. {
  1782. return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
  1783. }
  1784. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  1785. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
  1786. // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::MoveNext()
  1787. inline bool Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438 (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1788. {
  1789. return (( bool (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared)(__this, method);
  1790. }
  1791. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding)
  1792. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1793. // System.Byte[] UnityEngine.WWWTranscoder::URLEncode(System.Byte[])
  1794. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1795. // System.String UnityEngine.Networking.UnityWebRequest::UnEscapeURL(System.String,System.Text.Encoding)
  1796. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_UnEscapeURL_m7164BC27C48FD57AB777128DD271E56B9EF25DC4 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1797. // System.Int32 System.String::IndexOf(System.Char)
  1798. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1799. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  1800. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1801. // System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
  1802. inline bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1803. {
  1804. return (( bool (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared)(__this, method);
  1805. }
  1806. // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr<System.Byte>(Unity.Collections.NativeArray`1<T>)
  1807. inline void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method)
  1808. {
  1809. return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared)(___0_nativeArray, method);
  1810. }
  1811. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  1812. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1813. // System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
  1814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method) ;
  1815. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  1816. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1817. // System.Int32 System.String::IndexOf(System.String,System.StringComparison)
  1818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ;
  1819. // System.Int32 System.String::IndexOf(System.Char,System.Int32)
  1820. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ;
  1821. // System.String System.String::Trim()
  1822. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
  1823. // System.String System.String::Trim(System.Char[])
  1824. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method) ;
  1825. // System.String System.String::Substring(System.Int32,System.Int32)
  1826. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
  1827. // System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
  1828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187 (String_t* ___0_name, const RuntimeMethod* method) ;
  1829. // System.Void UnityEngine.Debug::LogWarning(System.Object)
  1830. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
  1831. // System.Byte* UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)
  1832. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method) ;
  1833. // System.Void UnityEngine.Networking.DownloadHandler::DisposeNativeArray(Unity.Collections.NativeArray`1<System.Byte>&)
  1834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method) ;
  1835. // System.Void UnityEngine.Networking.DownloadHandler::CreateNativeArrayForNativeData(Unity.Collections.NativeArray`1<System.Byte>&,System.Byte*,System.Int32)
  1836. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, uint8_t* ___1_bytes, int32_t ___2_length, const RuntimeMethod* method) ;
  1837. // Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
  1838. inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
  1839. {
  1840. return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
  1841. }
  1842. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  1843. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method) ;
  1844. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  1845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1846. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  1847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1848. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::InternalGetNativeArray(UnityEngine.Networking.DownloadHandler,Unity.Collections.NativeArray`1<System.Byte>&)
  1849. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method) ;
  1850. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  1851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1852. // System.Void UnityEngine.Networking.UploadHandler::Release()
  1853. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1854. // System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(T[],Unity.Collections.Allocator)
  1855. inline void NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_allocator, const RuntimeMethod* method)
  1856. {
  1857. (( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_gshared)(__this, ___0_array, ___1_allocator, method);
  1858. }
  1859. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(Unity.Collections.NativeArray`1<System.Byte>,System.Boolean)
  1860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_data, bool ___1_transferOwnership, const RuntimeMethod* method) ;
  1861. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  1862. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1863. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)
  1864. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* ___0_self, uint8_t* ___1_data, int32_t ___2_dataLength, const RuntimeMethod* method) ;
  1865. // System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
  1866. inline void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1867. {
  1868. (( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared)(__this, method);
  1869. }
  1870. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  1871. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1872. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  1873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1874. #ifdef __clang__
  1875. #pragma clang diagnostic push
  1876. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1877. #pragma clang diagnostic ignored "-Wunused-variable"
  1878. #endif
  1879. #ifdef __clang__
  1880. #pragma clang diagnostic pop
  1881. #endif
  1882. #ifdef __clang__
  1883. #pragma clang diagnostic push
  1884. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1885. #pragma clang diagnostic ignored "-Wunused-variable"
  1886. #endif
  1887. // System.String UnityEngineInternal.WebRequestUtils::RedirectTo(System.String,System.String)
  1888. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m63855E63B6B6EAFD4BCE65395BB744AAF5BD6AB4 (String_t* ___0_baseUri, String_t* ___1_redirectUri, const RuntimeMethod* method)
  1889. {
  1890. static bool s_Il2CppMethodInitialized;
  1891. if (!s_Il2CppMethodInitialized)
  1892. {
  1893. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1894. s_Il2CppMethodInitialized = true;
  1895. }
  1896. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL;
  1897. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1898. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1899. bool V_3 = false;
  1900. bool V_4 = false;
  1901. String_t* V_5 = NULL;
  1902. {
  1903. String_t* L_0 = ___1_redirectUri;
  1904. NullCheck(L_0);
  1905. Il2CppChar L_1;
  1906. L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL);
  1907. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  1908. bool L_2 = V_3;
  1909. if (!L_2)
  1910. {
  1911. goto IL_001a;
  1912. }
  1913. }
  1914. {
  1915. String_t* L_3 = ___1_redirectUri;
  1916. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1917. NullCheck(L_4);
  1918. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_4, L_3, 2, NULL);
  1919. V_0 = L_4;
  1920. goto IL_0022;
  1921. }
  1922. IL_001a:
  1923. {
  1924. String_t* L_5 = ___1_redirectUri;
  1925. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1926. NullCheck(L_6);
  1927. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_6, L_5, 0, NULL);
  1928. V_0 = L_6;
  1929. }
  1930. IL_0022:
  1931. {
  1932. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7 = V_0;
  1933. NullCheck(L_7);
  1934. bool L_8;
  1935. L_8 = Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF(L_7, NULL);
  1936. V_4 = L_8;
  1937. bool L_9 = V_4;
  1938. if (!L_9)
  1939. {
  1940. goto IL_0038;
  1941. }
  1942. }
  1943. {
  1944. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = V_0;
  1945. NullCheck(L_10);
  1946. String_t* L_11;
  1947. L_11 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_10, NULL);
  1948. V_5 = L_11;
  1949. goto IL_0052;
  1950. }
  1951. IL_0038:
  1952. {
  1953. String_t* L_12 = ___0_baseUri;
  1954. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1955. NullCheck(L_13);
  1956. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_13, L_12, 1, NULL);
  1957. V_1 = L_13;
  1958. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_14 = V_1;
  1959. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15 = V_0;
  1960. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1961. NullCheck(L_16);
  1962. Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F(L_16, L_14, L_15, NULL);
  1963. V_2 = L_16;
  1964. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_2;
  1965. NullCheck(L_17);
  1966. String_t* L_18;
  1967. L_18 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_17, NULL);
  1968. V_5 = L_18;
  1969. goto IL_0052;
  1970. }
  1971. IL_0052:
  1972. {
  1973. String_t* L_19 = V_5;
  1974. return L_19;
  1975. }
  1976. }
  1977. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  1978. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method)
  1979. {
  1980. static bool s_Il2CppMethodInitialized;
  1981. if (!s_Il2CppMethodInitialized)
  1982. {
  1983. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1984. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1985. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A);
  1986. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  1987. s_Il2CppMethodInitialized = true;
  1988. }
  1989. bool V_0 = false;
  1990. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1991. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1992. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_3 = NULL;
  1993. bool V_4 = false;
  1994. String_t* V_5 = NULL;
  1995. bool V_6 = false;
  1996. bool V_7 = false;
  1997. bool V_8 = false;
  1998. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_9 = NULL;
  1999. bool V_10 = false;
  2000. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  2001. int32_t G_B7_0 = 0;
  2002. int32_t G_B13_0 = 0;
  2003. {
  2004. String_t* L_0 = ___0_targetUrl;
  2005. bool L_1;
  2006. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  2007. V_4 = L_1;
  2008. bool L_2 = V_4;
  2009. if (!L_2)
  2010. {
  2011. goto IL_0019;
  2012. }
  2013. }
  2014. {
  2015. V_5 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  2016. goto IL_00d6;
  2017. }
  2018. IL_0019:
  2019. {
  2020. V_0 = (bool)0;
  2021. String_t* L_3 = ___1_localUrl;
  2022. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2023. NullCheck(L_4);
  2024. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_4, L_3, NULL);
  2025. V_1 = L_4;
  2026. V_2 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL;
  2027. String_t* L_5 = ___0_targetUrl;
  2028. NullCheck(L_5);
  2029. Il2CppChar L_6;
  2030. L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
  2031. V_6 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
  2032. bool L_7 = V_6;
  2033. if (!L_7)
  2034. {
  2035. goto IL_0041;
  2036. }
  2037. }
  2038. {
  2039. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_1;
  2040. String_t* L_9 = ___0_targetUrl;
  2041. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2042. NullCheck(L_10);
  2043. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_10, L_8, L_9, NULL);
  2044. V_2 = L_10;
  2045. V_0 = (bool)1;
  2046. }
  2047. IL_0041:
  2048. {
  2049. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11 = V_2;
  2050. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2051. bool L_12;
  2052. L_12 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_11, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  2053. if (!L_12)
  2054. {
  2055. goto IL_0057;
  2056. }
  2057. }
  2058. {
  2059. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2060. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_13 = ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex_0;
  2061. String_t* L_14 = ___0_targetUrl;
  2062. NullCheck(L_13);
  2063. bool L_15;
  2064. L_15 = Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49(L_13, L_14, NULL);
  2065. G_B7_0 = ((int32_t)(L_15));
  2066. goto IL_0058;
  2067. }
  2068. IL_0057:
  2069. {
  2070. G_B7_0 = 0;
  2071. }
  2072. IL_0058:
  2073. {
  2074. V_7 = (bool)G_B7_0;
  2075. bool L_16 = V_7;
  2076. if (!L_16)
  2077. {
  2078. goto IL_0075;
  2079. }
  2080. }
  2081. {
  2082. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_1;
  2083. NullCheck(L_17);
  2084. String_t* L_18;
  2085. L_18 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_17, NULL);
  2086. String_t* L_19 = ___0_targetUrl;
  2087. String_t* L_20;
  2088. L_20 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_18, _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A, L_19, NULL);
  2089. ___0_targetUrl = L_20;
  2090. V_0 = (bool)1;
  2091. }
  2092. IL_0075:
  2093. {
  2094. V_3 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)NULL;
  2095. }
  2096. try
  2097. {// begin try (depth: 1)
  2098. {
  2099. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = V_2;
  2100. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2101. bool L_22;
  2102. L_22 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_21, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  2103. if (!L_22)
  2104. {
  2105. goto IL_0091_1;
  2106. }
  2107. }
  2108. {
  2109. String_t* L_23 = ___0_targetUrl;
  2110. NullCheck(L_23);
  2111. Il2CppChar L_24;
  2112. L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, 0, NULL);
  2113. G_B13_0 = ((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)46)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2114. goto IL_0092_1;
  2115. }
  2116. IL_0091_1:
  2117. {
  2118. G_B13_0 = 0;
  2119. }
  2120. IL_0092_1:
  2121. {
  2122. V_8 = (bool)G_B13_0;
  2123. bool L_25 = V_8;
  2124. if (!L_25)
  2125. {
  2126. goto IL_009f_1;
  2127. }
  2128. }
  2129. {
  2130. String_t* L_26 = ___0_targetUrl;
  2131. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_27 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2132. NullCheck(L_27);
  2133. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_27, L_26, NULL);
  2134. V_2 = L_27;
  2135. }
  2136. IL_009f_1:
  2137. {
  2138. goto IL_00ab;
  2139. }
  2140. }// end try (depth: 1)
  2141. catch(Il2CppExceptionWrapper& e)
  2142. {
  2143. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  2144. {
  2145. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  2146. goto CATCH_00a2;
  2147. }
  2148. throw e;
  2149. }
  2150. CATCH_00a2:
  2151. {// begin catch(System.FormatException)
  2152. V_9 = ((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*));
  2153. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_28 = V_9;
  2154. V_3 = L_28;
  2155. IL2CPP_POP_ACTIVE_EXCEPTION();
  2156. goto IL_00ab;
  2157. }// end catch (depth: 1)
  2158. IL_00ab:
  2159. {
  2160. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_29 = V_2;
  2161. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2162. bool L_30;
  2163. L_30 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_29, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  2164. V_10 = L_30;
  2165. bool L_31 = V_10;
  2166. if (!L_31)
  2167. {
  2168. goto IL_00ca;
  2169. }
  2170. }
  2171. try
  2172. {// begin try (depth: 1)
  2173. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_32 = V_1;
  2174. String_t* L_33 = ___0_targetUrl;
  2175. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_34 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2176. NullCheck(L_34);
  2177. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_34, L_32, L_33, NULL);
  2178. V_2 = L_34;
  2179. V_0 = (bool)1;
  2180. goto IL_00ca;
  2181. }// end try (depth: 1)
  2182. catch(Il2CppExceptionWrapper& e)
  2183. {
  2184. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  2185. {
  2186. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  2187. goto CATCH_00c6;
  2188. }
  2189. throw e;
  2190. }
  2191. CATCH_00c6:
  2192. {// begin catch(System.FormatException)
  2193. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_35 = V_3;
  2194. IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var)));
  2195. }// end catch (depth: 1)
  2196. IL_00ca:
  2197. {
  2198. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_36 = V_2;
  2199. String_t* L_37 = ___0_targetUrl;
  2200. bool L_38 = V_0;
  2201. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2202. String_t* L_39;
  2203. L_39 = WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837(L_36, L_37, L_38, NULL);
  2204. V_5 = L_39;
  2205. goto IL_00d6;
  2206. }
  2207. IL_00d6:
  2208. {
  2209. String_t* L_40 = V_5;
  2210. return L_40;
  2211. }
  2212. }
  2213. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  2214. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_targetUri, String_t* ___1_targetUrl, bool ___2_prependProtocol, const RuntimeMethod* method)
  2215. {
  2216. static bool s_Il2CppMethodInitialized;
  2217. if (!s_Il2CppMethodInitialized)
  2218. {
  2219. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
  2220. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2221. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952);
  2222. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA);
  2223. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D);
  2224. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710);
  2225. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
  2226. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E);
  2227. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A);
  2228. s_Il2CppMethodInitialized = true;
  2229. }
  2230. String_t* V_0 = NULL;
  2231. bool V_1 = false;
  2232. String_t* V_2 = NULL;
  2233. bool V_3 = false;
  2234. String_t* V_4 = NULL;
  2235. bool V_5 = false;
  2236. bool V_6 = false;
  2237. String_t* V_7 = NULL;
  2238. bool V_8 = false;
  2239. bool V_9 = false;
  2240. bool V_10 = false;
  2241. StringBuilder_t* V_11 = NULL;
  2242. bool V_12 = false;
  2243. String_t* V_13 = NULL;
  2244. bool V_14 = false;
  2245. bool V_15 = false;
  2246. bool V_16 = false;
  2247. int32_t G_B12_0 = 0;
  2248. int32_t G_B19_0 = 0;
  2249. int32_t G_B27_0 = 0;
  2250. {
  2251. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___0_targetUri;
  2252. NullCheck(L_0);
  2253. bool L_1;
  2254. L_1 = Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F(L_0, NULL);
  2255. V_1 = L_1;
  2256. bool L_2 = V_1;
  2257. if (!L_2)
  2258. {
  2259. goto IL_00cc;
  2260. }
  2261. }
  2262. {
  2263. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___0_targetUri;
  2264. NullCheck(L_3);
  2265. bool L_4;
  2266. L_4 = Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A(L_3, NULL);
  2267. V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  2268. bool L_5 = V_3;
  2269. if (!L_5)
  2270. {
  2271. goto IL_0029;
  2272. }
  2273. }
  2274. {
  2275. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = ___0_targetUri;
  2276. NullCheck(L_6);
  2277. String_t* L_7;
  2278. L_7 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_6, NULL);
  2279. V_4 = L_7;
  2280. goto IL_020a;
  2281. }
  2282. IL_0029:
  2283. {
  2284. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = ___0_targetUri;
  2285. NullCheck(L_8);
  2286. String_t* L_9;
  2287. L_9 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_8, NULL);
  2288. V_2 = L_9;
  2289. String_t* L_10 = V_2;
  2290. NullCheck(L_10);
  2291. bool L_11;
  2292. L_11 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_10, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2293. V_5 = L_11;
  2294. bool L_12 = V_5;
  2295. if (!L_12)
  2296. {
  2297. goto IL_008e;
  2298. }
  2299. }
  2300. {
  2301. String_t* L_13 = V_2;
  2302. NullCheck(L_13);
  2303. bool L_14;
  2304. L_14 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_13, _stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952, NULL);
  2305. V_6 = L_14;
  2306. bool L_15 = V_6;
  2307. if (!L_15)
  2308. {
  2309. goto IL_0086;
  2310. }
  2311. }
  2312. {
  2313. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = ___0_targetUri;
  2314. NullCheck(L_16);
  2315. String_t* L_17;
  2316. L_17 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_16, NULL);
  2317. V_7 = L_17;
  2318. String_t* L_18 = V_7;
  2319. NullCheck(L_18);
  2320. bool L_19;
  2321. L_19 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_18, _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E, NULL);
  2322. V_8 = (bool)((((int32_t)L_19) == ((int32_t)0))? 1 : 0);
  2323. bool L_20 = V_8;
  2324. if (!L_20)
  2325. {
  2326. goto IL_0085;
  2327. }
  2328. }
  2329. {
  2330. String_t* L_21 = V_7;
  2331. String_t* L_22;
  2332. L_22 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_21, NULL);
  2333. V_4 = L_22;
  2334. goto IL_020a;
  2335. }
  2336. IL_0085:
  2337. {
  2338. }
  2339. IL_0086:
  2340. {
  2341. String_t* L_23 = V_2;
  2342. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2343. String_t* L_24;
  2344. L_24 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_23, NULL);
  2345. V_2 = L_24;
  2346. }
  2347. IL_008e:
  2348. {
  2349. String_t* L_25 = V_2;
  2350. NullCheck(L_25);
  2351. int32_t L_26;
  2352. L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
  2353. if ((((int32_t)L_26) <= ((int32_t)0)))
  2354. {
  2355. goto IL_00a7;
  2356. }
  2357. }
  2358. {
  2359. String_t* L_27 = V_2;
  2360. NullCheck(L_27);
  2361. Il2CppChar L_28;
  2362. L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, 0, NULL);
  2363. G_B12_0 = ((((int32_t)((((int32_t)L_28) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2364. goto IL_00a8;
  2365. }
  2366. IL_00a7:
  2367. {
  2368. G_B12_0 = 0;
  2369. }
  2370. IL_00a8:
  2371. {
  2372. V_9 = (bool)G_B12_0;
  2373. bool L_29 = V_9;
  2374. if (!L_29)
  2375. {
  2376. goto IL_00ba;
  2377. }
  2378. }
  2379. {
  2380. String_t* L_30 = V_2;
  2381. String_t* L_31;
  2382. L_31 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_30, NULL);
  2383. V_2 = L_31;
  2384. }
  2385. IL_00ba:
  2386. {
  2387. String_t* L_32 = V_2;
  2388. String_t* L_33;
  2389. L_33 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_32, NULL);
  2390. V_4 = L_33;
  2391. goto IL_020a;
  2392. }
  2393. IL_00cc:
  2394. {
  2395. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_34 = ___0_targetUri;
  2396. NullCheck(L_34);
  2397. String_t* L_35;
  2398. L_35 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_34, NULL);
  2399. V_0 = L_35;
  2400. bool L_36 = ___2_prependProtocol;
  2401. if (L_36)
  2402. {
  2403. goto IL_00fd;
  2404. }
  2405. }
  2406. {
  2407. String_t* L_37 = ___1_targetUrl;
  2408. NullCheck(L_37);
  2409. int32_t L_38;
  2410. L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
  2411. String_t* L_39 = V_0;
  2412. NullCheck(L_39);
  2413. int32_t L_40;
  2414. L_40 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_39, NULL);
  2415. if ((((int32_t)L_38) < ((int32_t)((int32_t)il2cpp_codegen_add(L_40, 2)))))
  2416. {
  2417. goto IL_00fd;
  2418. }
  2419. }
  2420. {
  2421. String_t* L_41 = ___1_targetUrl;
  2422. String_t* L_42 = V_0;
  2423. NullCheck(L_42);
  2424. int32_t L_43;
  2425. L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
  2426. NullCheck(L_41);
  2427. Il2CppChar L_44;
  2428. L_44 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_41, ((int32_t)il2cpp_codegen_add(L_43, 1)), NULL);
  2429. G_B19_0 = ((((int32_t)((((int32_t)L_44) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2430. goto IL_00fe;
  2431. }
  2432. IL_00fd:
  2433. {
  2434. G_B19_0 = 0;
  2435. }
  2436. IL_00fe:
  2437. {
  2438. V_10 = (bool)G_B19_0;
  2439. bool L_45 = V_10;
  2440. if (!L_45)
  2441. {
  2442. goto IL_01e5;
  2443. }
  2444. }
  2445. {
  2446. String_t* L_46 = V_0;
  2447. String_t* L_47 = ___1_targetUrl;
  2448. NullCheck(L_47);
  2449. int32_t L_48;
  2450. L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
  2451. StringBuilder_t* L_49 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  2452. NullCheck(L_49);
  2453. StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619(L_49, L_46, L_48, NULL);
  2454. V_11 = L_49;
  2455. StringBuilder_t* L_50 = V_11;
  2456. NullCheck(L_50);
  2457. StringBuilder_t* L_51;
  2458. L_51 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_50, ((int32_t)58), NULL);
  2459. String_t* L_52 = V_0;
  2460. bool L_53;
  2461. L_53 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_52, _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A, NULL);
  2462. V_12 = L_53;
  2463. bool L_54 = V_12;
  2464. if (!L_54)
  2465. {
  2466. goto IL_01be;
  2467. }
  2468. }
  2469. {
  2470. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_55 = ___0_targetUri;
  2471. NullCheck(L_55);
  2472. String_t* L_56;
  2473. L_56 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_55, NULL);
  2474. V_13 = L_56;
  2475. String_t* L_57 = V_13;
  2476. NullCheck(L_57);
  2477. bool L_58;
  2478. L_58 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_57, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2479. V_14 = L_58;
  2480. bool L_59 = V_14;
  2481. if (!L_59)
  2482. {
  2483. goto IL_0158;
  2484. }
  2485. }
  2486. {
  2487. String_t* L_60 = V_13;
  2488. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2489. String_t* L_61;
  2490. L_61 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_60, NULL);
  2491. V_13 = L_61;
  2492. }
  2493. IL_0158:
  2494. {
  2495. String_t* L_62 = V_13;
  2496. NullCheck(L_62);
  2497. bool L_63;
  2498. L_63 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_62, _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D, NULL);
  2499. if (!L_63)
  2500. {
  2501. goto IL_0181;
  2502. }
  2503. }
  2504. {
  2505. String_t* L_64 = V_13;
  2506. NullCheck(L_64);
  2507. int32_t L_65;
  2508. L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
  2509. if ((((int32_t)L_65) <= ((int32_t)6)))
  2510. {
  2511. goto IL_0181;
  2512. }
  2513. }
  2514. {
  2515. String_t* L_66 = V_13;
  2516. NullCheck(L_66);
  2517. Il2CppChar L_67;
  2518. L_67 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_66, 6, NULL);
  2519. G_B27_0 = ((((int32_t)((((int32_t)L_67) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2520. goto IL_0182;
  2521. }
  2522. IL_0181:
  2523. {
  2524. G_B27_0 = 0;
  2525. }
  2526. IL_0182:
  2527. {
  2528. V_15 = (bool)G_B27_0;
  2529. bool L_68 = V_15;
  2530. if (!L_68)
  2531. {
  2532. goto IL_01a9;
  2533. }
  2534. }
  2535. {
  2536. StringBuilder_t* L_69 = V_11;
  2537. NullCheck(L_69);
  2538. StringBuilder_t* L_70;
  2539. L_70 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_69, _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, NULL);
  2540. StringBuilder_t* L_71 = V_11;
  2541. String_t* L_72 = V_13;
  2542. NullCheck(L_72);
  2543. String_t* L_73;
  2544. L_73 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_72, 5, NULL);
  2545. NullCheck(L_71);
  2546. StringBuilder_t* L_74;
  2547. L_74 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_71, L_73, NULL);
  2548. goto IL_01b3;
  2549. }
  2550. IL_01a9:
  2551. {
  2552. StringBuilder_t* L_75 = V_11;
  2553. String_t* L_76 = V_13;
  2554. NullCheck(L_75);
  2555. StringBuilder_t* L_77;
  2556. L_77 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_75, L_76, NULL);
  2557. }
  2558. IL_01b3:
  2559. {
  2560. StringBuilder_t* L_78 = V_11;
  2561. NullCheck(L_78);
  2562. String_t* L_79;
  2563. L_79 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_78);
  2564. V_4 = L_79;
  2565. goto IL_020a;
  2566. }
  2567. IL_01be:
  2568. {
  2569. StringBuilder_t* L_80 = V_11;
  2570. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_81 = ___0_targetUri;
  2571. NullCheck(L_81);
  2572. String_t* L_82;
  2573. L_82 = Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C(L_81, NULL);
  2574. NullCheck(L_80);
  2575. StringBuilder_t* L_83;
  2576. L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_80, L_82, NULL);
  2577. StringBuilder_t* L_84 = V_11;
  2578. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_85 = ___0_targetUri;
  2579. NullCheck(L_85);
  2580. String_t* L_86;
  2581. L_86 = Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835(L_85, NULL);
  2582. NullCheck(L_84);
  2583. StringBuilder_t* L_87;
  2584. L_87 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_84, L_86, NULL);
  2585. StringBuilder_t* L_88 = V_11;
  2586. NullCheck(L_88);
  2587. String_t* L_89;
  2588. L_89 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_88);
  2589. V_4 = L_89;
  2590. goto IL_020a;
  2591. }
  2592. IL_01e5:
  2593. {
  2594. String_t* L_90 = ___1_targetUrl;
  2595. NullCheck(L_90);
  2596. bool L_91;
  2597. L_91 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_90, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2598. V_16 = L_91;
  2599. bool L_92 = V_16;
  2600. if (!L_92)
  2601. {
  2602. goto IL_0200;
  2603. }
  2604. }
  2605. {
  2606. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_93 = ___0_targetUri;
  2607. NullCheck(L_93);
  2608. String_t* L_94;
  2609. L_94 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_93, NULL);
  2610. V_4 = L_94;
  2611. goto IL_020a;
  2612. }
  2613. IL_0200:
  2614. {
  2615. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_95 = ___0_targetUri;
  2616. NullCheck(L_95);
  2617. String_t* L_96;
  2618. L_96 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_95, NULL);
  2619. V_4 = L_96;
  2620. goto IL_020a;
  2621. }
  2622. IL_020a:
  2623. {
  2624. String_t* L_97 = V_4;
  2625. return L_97;
  2626. }
  2627. }
  2628. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  2629. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method)
  2630. {
  2631. static bool s_Il2CppMethodInitialized;
  2632. if (!s_Il2CppMethodInitialized)
  2633. {
  2634. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2635. s_Il2CppMethodInitialized = true;
  2636. }
  2637. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  2638. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  2639. String_t* V_2 = NULL;
  2640. {
  2641. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2642. L_0 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2643. String_t* L_1 = ___0_encoded;
  2644. NullCheck(L_0);
  2645. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  2646. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  2647. V_0 = L_2;
  2648. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_0;
  2649. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2650. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  2651. L_4 = WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704(L_3, NULL);
  2652. V_1 = L_4;
  2653. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5;
  2654. L_5 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2655. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_1;
  2656. NullCheck(L_5);
  2657. String_t* L_7;
  2658. L_7 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(45 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_5, L_6);
  2659. V_2 = L_7;
  2660. goto IL_0022;
  2661. }
  2662. IL_0022:
  2663. {
  2664. String_t* L_8 = V_2;
  2665. return L_8;
  2666. }
  2667. }
  2668. // System.Void UnityEngineInternal.WebRequestUtils::.cctor()
  2669. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_m31ADEB75E00368144C8F223647D81A3B5ADD3D69 (const RuntimeMethod* method)
  2670. {
  2671. static bool s_Il2CppMethodInitialized;
  2672. if (!s_Il2CppMethodInitialized)
  2673. {
  2674. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  2675. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2676. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F);
  2677. s_Il2CppMethodInitialized = true;
  2678. }
  2679. {
  2680. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  2681. NullCheck(L_0);
  2682. Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD(L_0, _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F, NULL);
  2683. ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex_0 = L_0;
  2684. Il2CppCodeGenWriteBarrier((void**)(&((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex_0), (void*)L_0);
  2685. return;
  2686. }
  2687. }
  2688. #ifdef __clang__
  2689. #pragma clang diagnostic pop
  2690. #endif
  2691. #ifdef __clang__
  2692. #pragma clang diagnostic push
  2693. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2694. #pragma clang diagnostic ignored "-Wunused-variable"
  2695. #endif
  2696. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  2697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method)
  2698. {
  2699. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL;
  2700. {
  2701. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2702. L_0 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
  2703. V_0 = L_0;
  2704. goto IL_0009;
  2705. }
  2706. IL_0009:
  2707. {
  2708. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = V_0;
  2709. return L_1;
  2710. }
  2711. }
  2712. // System.Void UnityEngine.WWWForm::.ctor()
  2713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__ctor_mB1AA4D4BE7011A371B590332CC65794270F269F6 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2714. {
  2715. static bool s_Il2CppMethodInitialized;
  2716. if (!s_Il2CppMethodInitialized)
  2717. {
  2718. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  2719. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var);
  2720. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2721. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var);
  2722. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2723. s_Il2CppMethodInitialized = true;
  2724. }
  2725. int32_t V_0 = 0;
  2726. int32_t V_1 = 0;
  2727. bool V_2 = false;
  2728. bool V_3 = false;
  2729. bool V_4 = false;
  2730. {
  2731. __this->___containsFiles_5 = (bool)0;
  2732. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  2733. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_0 = (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*)il2cpp_codegen_object_new(List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var);
  2734. NullCheck(L_0);
  2735. List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4(L_0, List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var);
  2736. __this->___formData_0 = L_0;
  2737. Il2CppCodeGenWriteBarrier((void**)(&__this->___formData_0), (void*)L_0);
  2738. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2739. NullCheck(L_1);
  2740. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_1, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2741. __this->___fieldNames_1 = L_1;
  2742. Il2CppCodeGenWriteBarrier((void**)(&__this->___fieldNames_1), (void*)L_1);
  2743. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2744. NullCheck(L_2);
  2745. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_2, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2746. __this->___fileNames_2 = L_2;
  2747. Il2CppCodeGenWriteBarrier((void**)(&__this->___fileNames_2), (void*)L_2);
  2748. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_3 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2749. NullCheck(L_3);
  2750. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_3, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2751. __this->___types_3 = L_3;
  2752. Il2CppCodeGenWriteBarrier((void**)(&__this->___types_3), (void*)L_3);
  2753. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)40));
  2754. __this->___boundary_4 = L_4;
  2755. Il2CppCodeGenWriteBarrier((void**)(&__this->___boundary_4), (void*)L_4);
  2756. V_0 = 0;
  2757. goto IL_0080;
  2758. }
  2759. IL_004c:
  2760. {
  2761. int32_t L_5;
  2762. L_5 = Random_Range_m6763D9767F033357F88B6637F048F4ACA4123B68(((int32_t)48), ((int32_t)110), NULL);
  2763. V_1 = L_5;
  2764. int32_t L_6 = V_1;
  2765. V_2 = (bool)((((int32_t)L_6) > ((int32_t)((int32_t)57)))? 1 : 0);
  2766. bool L_7 = V_2;
  2767. if (!L_7)
  2768. {
  2769. goto IL_0064;
  2770. }
  2771. }
  2772. {
  2773. int32_t L_8 = V_1;
  2774. V_1 = ((int32_t)il2cpp_codegen_add(L_8, 7));
  2775. }
  2776. IL_0064:
  2777. {
  2778. int32_t L_9 = V_1;
  2779. V_3 = (bool)((((int32_t)L_9) > ((int32_t)((int32_t)90)))? 1 : 0);
  2780. bool L_10 = V_3;
  2781. if (!L_10)
  2782. {
  2783. goto IL_0071;
  2784. }
  2785. }
  2786. {
  2787. int32_t L_11 = V_1;
  2788. V_1 = ((int32_t)il2cpp_codegen_add(L_11, 6));
  2789. }
  2790. IL_0071:
  2791. {
  2792. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___boundary_4;
  2793. int32_t L_13 = V_0;
  2794. int32_t L_14 = V_1;
  2795. NullCheck(L_12);
  2796. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)((int32_t)(uint8_t)L_14));
  2797. int32_t L_15 = V_0;
  2798. V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
  2799. }
  2800. IL_0080:
  2801. {
  2802. int32_t L_16 = V_0;
  2803. V_4 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)40)))? 1 : 0);
  2804. bool L_17 = V_4;
  2805. if (L_17)
  2806. {
  2807. goto IL_004c;
  2808. }
  2809. }
  2810. {
  2811. return;
  2812. }
  2813. }
  2814. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String)
  2815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m6315BDFDEA6F0F57ABCBCF4B1AE482E1893BEB8D (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, const RuntimeMethod* method)
  2816. {
  2817. {
  2818. String_t* L_0 = ___0_fieldName;
  2819. String_t* L_1 = ___1_value;
  2820. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  2821. L_2 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2822. WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E(__this, L_0, L_1, L_2, NULL);
  2823. return;
  2824. }
  2825. }
  2826. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String,System.Text.Encoding)
  2827. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_e, const RuntimeMethod* method)
  2828. {
  2829. static bool s_Il2CppMethodInitialized;
  2830. if (!s_Il2CppMethodInitialized)
  2831. {
  2832. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var);
  2833. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2834. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843);
  2835. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2836. s_Il2CppMethodInitialized = true;
  2837. }
  2838. {
  2839. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___fieldNames_1;
  2840. String_t* L_1 = ___0_fieldName;
  2841. NullCheck(L_0);
  2842. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_0, L_1, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2843. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = __this->___fileNames_2;
  2844. NullCheck(L_2);
  2845. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_2, (String_t*)NULL, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2846. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_3 = __this->___formData_0;
  2847. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4 = ___2_e;
  2848. String_t* L_5 = ___1_value;
  2849. NullCheck(L_4);
  2850. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6;
  2851. L_6 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, L_5);
  2852. NullCheck(L_3);
  2853. List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_inline(L_3, L_6, List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var);
  2854. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_7 = __this->___types_3;
  2855. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = ___2_e;
  2856. NullCheck(L_8);
  2857. String_t* L_9;
  2858. L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Text.Encoding::get_WebName() */, L_8);
  2859. String_t* L_10;
  2860. L_10 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843, L_9, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
  2861. NullCheck(L_7);
  2862. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_7, L_10, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2863. return;
  2864. }
  2865. }
  2866. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
  2867. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2868. {
  2869. static bool s_Il2CppMethodInitialized;
  2870. if (!s_Il2CppMethodInitialized)
  2871. {
  2872. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
  2873. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2874. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
  2875. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE);
  2876. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02);
  2877. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
  2878. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2879. s_Il2CppMethodInitialized = true;
  2880. }
  2881. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_0 = NULL;
  2882. bool V_1 = false;
  2883. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_2 = NULL;
  2884. {
  2885. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_0 = (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*)il2cpp_codegen_object_new(Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
  2886. NullCheck(L_0);
  2887. Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052(L_0, Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
  2888. V_0 = L_0;
  2889. bool L_1 = __this->___containsFiles_5;
  2890. V_1 = L_1;
  2891. bool L_2 = V_1;
  2892. if (!L_2)
  2893. {
  2894. goto IL_0047;
  2895. }
  2896. }
  2897. {
  2898. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_3 = V_0;
  2899. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  2900. L_4 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2901. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___boundary_4;
  2902. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = __this->___boundary_4;
  2903. NullCheck(L_6);
  2904. NullCheck(L_4);
  2905. String_t* L_7;
  2906. L_7 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(46 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, ((int32_t)(((RuntimeArray*)L_6)->max_length)));
  2907. String_t* L_8;
  2908. L_8 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02, L_7, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
  2909. NullCheck(L_3);
  2910. Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2(L_3, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, L_8, Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2911. goto IL_0058;
  2912. }
  2913. IL_0047:
  2914. {
  2915. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_9 = V_0;
  2916. NullCheck(L_9);
  2917. Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2(L_9, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE, Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2918. }
  2919. IL_0058:
  2920. {
  2921. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_10 = V_0;
  2922. V_2 = L_10;
  2923. goto IL_005c;
  2924. }
  2925. IL_005c:
  2926. {
  2927. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_11 = V_2;
  2928. return L_11;
  2929. }
  2930. }
  2931. // System.Byte[] UnityEngine.WWWForm::get_data()
  2932. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2933. {
  2934. static bool s_Il2CppMethodInitialized;
  2935. if (!s_Il2CppMethodInitialized)
  2936. {
  2937. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  2938. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  2939. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2940. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  2941. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2942. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
  2943. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2944. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2945. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  2946. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  2947. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  2948. s_Il2CppMethodInitialized = true;
  2949. }
  2950. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  2951. bool V_1 = false;
  2952. int32_t V_2 = 0;
  2953. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
  2954. String_t* V_4 = NULL;
  2955. String_t* V_5 = NULL;
  2956. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_6 = NULL;
  2957. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  2958. bool V_8 = false;
  2959. bool V_9 = false;
  2960. String_t* V_10 = NULL;
  2961. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_11 = NULL;
  2962. bool V_12 = false;
  2963. bool V_13 = false;
  2964. int32_t V_14 = 0;
  2965. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_15 = NULL;
  2966. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_16 = NULL;
  2967. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_17 = NULL;
  2968. bool V_18 = false;
  2969. bool V_19 = false;
  2970. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_20 = NULL;
  2971. int32_t G_B6_0 = 0;
  2972. int32_t G_B12_0 = 0;
  2973. {
  2974. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_0 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2975. NullCheck(L_0);
  2976. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_0, ((int32_t)1024), NULL);
  2977. V_0 = L_0;
  2978. }
  2979. {
  2980. auto __finallyBlock = il2cpp::utils::Finally([&]
  2981. {
  2982. FINALLY_03d1:
  2983. {// begin finally (depth: 1)
  2984. {
  2985. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = V_0;
  2986. if (!L_1)
  2987. {
  2988. goto IL_03db;
  2989. }
  2990. }
  2991. {
  2992. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  2993. NullCheck(L_2);
  2994. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_2);
  2995. }
  2996. IL_03db:
  2997. {
  2998. return;
  2999. }
  3000. }// end finally (depth: 1)
  3001. });
  3002. try
  3003. {// begin try (depth: 1)
  3004. {
  3005. bool L_3 = __this->___containsFiles_5;
  3006. V_1 = L_3;
  3007. bool L_4 = V_1;
  3008. if (!L_4)
  3009. {
  3010. goto IL_0318_1;
  3011. }
  3012. }
  3013. {
  3014. V_2 = 0;
  3015. goto IL_0295_1;
  3016. }
  3017. IL_0022_1:
  3018. {
  3019. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_5 = V_0;
  3020. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3021. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3022. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3023. NullCheck(L_7);
  3024. NullCheck(L_5);
  3025. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_5, L_6, 0, ((int32_t)(((RuntimeArray*)L_7)->max_length)));
  3026. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_8 = V_0;
  3027. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3028. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3029. NullCheck(L_10);
  3030. NullCheck(L_8);
  3031. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, 0, ((int32_t)(((RuntimeArray*)L_10)->max_length)));
  3032. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  3033. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___boundary_4;
  3034. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->___boundary_4;
  3035. NullCheck(L_13);
  3036. NullCheck(L_11);
  3037. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_11, L_12, 0, ((int32_t)(((RuntimeArray*)L_13)->max_length)));
  3038. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_14 = V_0;
  3039. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3040. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3041. NullCheck(L_16);
  3042. NullCheck(L_14);
  3043. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_14, L_15, 0, ((int32_t)(((RuntimeArray*)L_16)->max_length)));
  3044. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_17 = V_0;
  3045. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8;
  3046. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8;
  3047. NullCheck(L_19);
  3048. NullCheck(L_17);
  3049. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_17, L_18, 0, ((int32_t)(((RuntimeArray*)L_19)->max_length)));
  3050. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_20;
  3051. L_20 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3052. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_21 = __this->___types_3;
  3053. int32_t L_22 = V_2;
  3054. NullCheck(L_21);
  3055. String_t* L_23;
  3056. L_23 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_21, L_22, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3057. NullCheck(L_20);
  3058. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24;
  3059. L_24 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_20, L_23);
  3060. V_3 = L_24;
  3061. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_25 = V_0;
  3062. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = V_3;
  3063. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = V_3;
  3064. NullCheck(L_27);
  3065. NullCheck(L_25);
  3066. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_25, L_26, 0, ((int32_t)(((RuntimeArray*)L_27)->max_length)));
  3067. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_28 = V_0;
  3068. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3069. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3070. NullCheck(L_30);
  3071. NullCheck(L_28);
  3072. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_28, L_29, 0, ((int32_t)(((RuntimeArray*)L_30)->max_length)));
  3073. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_31 = V_0;
  3074. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9;
  3075. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9;
  3076. NullCheck(L_33);
  3077. NullCheck(L_31);
  3078. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_31, L_32, 0, ((int32_t)(((RuntimeArray*)L_33)->max_length)));
  3079. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_34;
  3080. L_34 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3081. NullCheck(L_34);
  3082. String_t* L_35;
  3083. L_35 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Text.Encoding::get_HeaderName() */, L_34);
  3084. V_4 = L_35;
  3085. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_36 = __this->___fieldNames_1;
  3086. int32_t L_37 = V_2;
  3087. NullCheck(L_36);
  3088. String_t* L_38;
  3089. L_38 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_36, L_37, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3090. V_5 = L_38;
  3091. String_t* L_39 = V_5;
  3092. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40;
  3093. L_40 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3094. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3095. bool L_41;
  3096. L_41 = WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7(L_39, L_40, NULL);
  3097. if (!L_41)
  3098. {
  3099. goto IL_010d_1;
  3100. }
  3101. }
  3102. {
  3103. String_t* L_42 = V_5;
  3104. NullCheck(L_42);
  3105. int32_t L_43;
  3106. L_43 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_42, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, NULL);
  3107. G_B6_0 = ((((int32_t)L_43) > ((int32_t)(-1)))? 1 : 0);
  3108. goto IL_010e_1;
  3109. }
  3110. IL_010d_1:
  3111. {
  3112. G_B6_0 = 1;
  3113. }
  3114. IL_010e_1:
  3115. {
  3116. V_8 = (bool)G_B6_0;
  3117. bool L_44 = V_8;
  3118. if (!L_44)
  3119. {
  3120. goto IL_014f_1;
  3121. }
  3122. }
  3123. {
  3124. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
  3125. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = L_45;
  3126. NullCheck(L_46);
  3127. ArrayElementTypeCheck (L_46, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3128. (L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3129. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_47 = L_46;
  3130. String_t* L_48 = V_4;
  3131. NullCheck(L_47);
  3132. ArrayElementTypeCheck (L_47, L_48);
  3133. (L_47)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_48);
  3134. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_49 = L_47;
  3135. NullCheck(L_49);
  3136. ArrayElementTypeCheck (L_49, _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3137. (L_49)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3138. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = L_49;
  3139. String_t* L_51 = V_5;
  3140. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_52;
  3141. L_52 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3142. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3143. String_t* L_53;
  3144. L_53 = WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A(L_51, L_52, NULL);
  3145. NullCheck(L_50);
  3146. ArrayElementTypeCheck (L_50, L_53);
  3147. (L_50)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_53);
  3148. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_50;
  3149. NullCheck(L_54);
  3150. ArrayElementTypeCheck (L_54, _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3151. (L_54)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3152. String_t* L_55;
  3153. L_55 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_54, NULL);
  3154. V_5 = L_55;
  3155. }
  3156. IL_014f_1:
  3157. {
  3158. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_56;
  3159. L_56 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3160. String_t* L_57 = V_5;
  3161. NullCheck(L_56);
  3162. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_58;
  3163. L_58 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_56, L_57);
  3164. V_6 = L_58;
  3165. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_59 = V_0;
  3166. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_60 = V_6;
  3167. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_61 = V_6;
  3168. NullCheck(L_61);
  3169. NullCheck(L_59);
  3170. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_59, L_60, 0, ((int32_t)(((RuntimeArray*)L_61)->max_length)));
  3171. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_62 = V_0;
  3172. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3173. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_63 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3174. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_64 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3175. NullCheck(L_64);
  3176. NullCheck(L_62);
  3177. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_62, L_63, 0, ((int32_t)(((RuntimeArray*)L_64)->max_length)));
  3178. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_65 = __this->___fileNames_2;
  3179. int32_t L_66 = V_2;
  3180. NullCheck(L_65);
  3181. String_t* L_67;
  3182. L_67 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_65, L_66, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3183. V_9 = (bool)((!(((RuntimeObject*)(String_t*)L_67) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  3184. bool L_68 = V_9;
  3185. if (!L_68)
  3186. {
  3187. goto IL_024c_1;
  3188. }
  3189. }
  3190. {
  3191. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_69 = __this->___fileNames_2;
  3192. int32_t L_70 = V_2;
  3193. NullCheck(L_69);
  3194. String_t* L_71;
  3195. L_71 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_69, L_70, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3196. V_10 = L_71;
  3197. String_t* L_72 = V_10;
  3198. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_73;
  3199. L_73 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3200. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3201. bool L_74;
  3202. L_74 = WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7(L_72, L_73, NULL);
  3203. if (!L_74)
  3204. {
  3205. goto IL_01c5_1;
  3206. }
  3207. }
  3208. {
  3209. String_t* L_75 = V_10;
  3210. NullCheck(L_75);
  3211. int32_t L_76;
  3212. L_76 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_75, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, NULL);
  3213. G_B12_0 = ((((int32_t)L_76) > ((int32_t)(-1)))? 1 : 0);
  3214. goto IL_01c6_1;
  3215. }
  3216. IL_01c5_1:
  3217. {
  3218. G_B12_0 = 1;
  3219. }
  3220. IL_01c6_1:
  3221. {
  3222. V_12 = (bool)G_B12_0;
  3223. bool L_77 = V_12;
  3224. if (!L_77)
  3225. {
  3226. goto IL_0207_1;
  3227. }
  3228. }
  3229. {
  3230. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_78 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
  3231. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_79 = L_78;
  3232. NullCheck(L_79);
  3233. ArrayElementTypeCheck (L_79, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3234. (L_79)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3235. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = L_79;
  3236. String_t* L_81 = V_4;
  3237. NullCheck(L_80);
  3238. ArrayElementTypeCheck (L_80, L_81);
  3239. (L_80)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_81);
  3240. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = L_80;
  3241. NullCheck(L_82);
  3242. ArrayElementTypeCheck (L_82, _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3243. (L_82)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3244. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_83 = L_82;
  3245. String_t* L_84 = V_10;
  3246. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_85;
  3247. L_85 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3248. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3249. String_t* L_86;
  3250. L_86 = WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A(L_84, L_85, NULL);
  3251. NullCheck(L_83);
  3252. ArrayElementTypeCheck (L_83, L_86);
  3253. (L_83)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_86);
  3254. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = L_83;
  3255. NullCheck(L_87);
  3256. ArrayElementTypeCheck (L_87, _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3257. (L_87)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3258. String_t* L_88;
  3259. L_88 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_87, NULL);
  3260. V_10 = L_88;
  3261. }
  3262. IL_0207_1:
  3263. {
  3264. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_89;
  3265. L_89 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3266. String_t* L_90 = V_10;
  3267. NullCheck(L_89);
  3268. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_91;
  3269. L_91 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_89, L_90);
  3270. V_11 = L_91;
  3271. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_92 = V_0;
  3272. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3273. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_93 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11;
  3274. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_94 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11;
  3275. NullCheck(L_94);
  3276. NullCheck(L_92);
  3277. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_92, L_93, 0, ((int32_t)(((RuntimeArray*)L_94)->max_length)));
  3278. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_95 = V_0;
  3279. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_96 = V_11;
  3280. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_97 = V_11;
  3281. NullCheck(L_97);
  3282. NullCheck(L_95);
  3283. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_95, L_96, 0, ((int32_t)(((RuntimeArray*)L_97)->max_length)));
  3284. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_98 = V_0;
  3285. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_99 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3286. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_100 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3287. NullCheck(L_100);
  3288. NullCheck(L_98);
  3289. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_98, L_99, 0, ((int32_t)(((RuntimeArray*)L_100)->max_length)));
  3290. }
  3291. IL_024c_1:
  3292. {
  3293. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_101 = V_0;
  3294. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3295. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_102 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3296. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_103 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3297. NullCheck(L_103);
  3298. NullCheck(L_101);
  3299. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_101, L_102, 0, ((int32_t)(((RuntimeArray*)L_103)->max_length)));
  3300. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_104 = V_0;
  3301. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_105 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3302. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_106 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3303. NullCheck(L_106);
  3304. NullCheck(L_104);
  3305. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_104, L_105, 0, ((int32_t)(((RuntimeArray*)L_106)->max_length)));
  3306. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_107 = __this->___formData_0;
  3307. int32_t L_108 = V_2;
  3308. NullCheck(L_107);
  3309. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_109;
  3310. L_109 = List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6(L_107, L_108, List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  3311. V_7 = L_109;
  3312. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_110 = V_0;
  3313. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_111 = V_7;
  3314. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_112 = V_7;
  3315. NullCheck(L_112);
  3316. NullCheck(L_110);
  3317. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_110, L_111, 0, ((int32_t)(((RuntimeArray*)L_112)->max_length)));
  3318. int32_t L_113 = V_2;
  3319. V_2 = ((int32_t)il2cpp_codegen_add(L_113, 1));
  3320. }
  3321. IL_0295_1:
  3322. {
  3323. int32_t L_114 = V_2;
  3324. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_115 = __this->___formData_0;
  3325. NullCheck(L_115);
  3326. int32_t L_116;
  3327. L_116 = List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline(L_115, List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  3328. V_13 = (bool)((((int32_t)L_114) < ((int32_t)L_116))? 1 : 0);
  3329. bool L_117 = V_13;
  3330. if (L_117)
  3331. {
  3332. goto IL_0022_1;
  3333. }
  3334. }
  3335. {
  3336. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_118 = V_0;
  3337. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3338. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_119 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3339. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_120 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3340. NullCheck(L_120);
  3341. NullCheck(L_118);
  3342. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_118, L_119, 0, ((int32_t)(((RuntimeArray*)L_120)->max_length)));
  3343. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_121 = V_0;
  3344. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_122 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3345. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_123 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3346. NullCheck(L_123);
  3347. NullCheck(L_121);
  3348. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_121, L_122, 0, ((int32_t)(((RuntimeArray*)L_123)->max_length)));
  3349. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_124 = V_0;
  3350. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_125 = __this->___boundary_4;
  3351. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_126 = __this->___boundary_4;
  3352. NullCheck(L_126);
  3353. NullCheck(L_124);
  3354. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_124, L_125, 0, ((int32_t)(((RuntimeArray*)L_126)->max_length)));
  3355. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_127 = V_0;
  3356. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_128 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3357. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3358. NullCheck(L_129);
  3359. NullCheck(L_127);
  3360. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_127, L_128, 0, ((int32_t)(((RuntimeArray*)L_129)->max_length)));
  3361. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_130 = V_0;
  3362. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_131 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3363. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_132 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3364. NullCheck(L_132);
  3365. NullCheck(L_130);
  3366. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_130, L_131, 0, ((int32_t)(((RuntimeArray*)L_132)->max_length)));
  3367. goto IL_03c7_1;
  3368. }
  3369. IL_0318_1:
  3370. {
  3371. V_14 = 0;
  3372. goto IL_03ae_1;
  3373. }
  3374. IL_0321_1:
  3375. {
  3376. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133;
  3377. L_133 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3378. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_134 = __this->___fieldNames_1;
  3379. int32_t L_135 = V_14;
  3380. NullCheck(L_134);
  3381. String_t* L_136;
  3382. L_136 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_134, L_135, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3383. NullCheck(L_133);
  3384. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_137;
  3385. L_137 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_133, L_136);
  3386. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3387. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_138;
  3388. L_138 = WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E(L_137, NULL);
  3389. V_15 = L_138;
  3390. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_139 = __this->___formData_0;
  3391. int32_t L_140 = V_14;
  3392. NullCheck(L_139);
  3393. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_141;
  3394. L_141 = List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6(L_139, L_140, List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  3395. V_16 = L_141;
  3396. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_142 = V_16;
  3397. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_143;
  3398. L_143 = WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E(L_142, NULL);
  3399. V_17 = L_143;
  3400. int32_t L_144 = V_14;
  3401. V_18 = (bool)((((int32_t)L_144) > ((int32_t)0))? 1 : 0);
  3402. bool L_145 = V_18;
  3403. if (!L_145)
  3404. {
  3405. goto IL_0377_1;
  3406. }
  3407. }
  3408. {
  3409. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_146 = V_0;
  3410. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3411. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_147 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12;
  3412. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_148 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12;
  3413. NullCheck(L_148);
  3414. NullCheck(L_146);
  3415. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_146, L_147, 0, ((int32_t)(((RuntimeArray*)L_148)->max_length)));
  3416. }
  3417. IL_0377_1:
  3418. {
  3419. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_149 = V_0;
  3420. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_150 = V_15;
  3421. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_151 = V_15;
  3422. NullCheck(L_151);
  3423. NullCheck(L_149);
  3424. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_149, L_150, 0, ((int32_t)(((RuntimeArray*)L_151)->max_length)));
  3425. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_152 = V_0;
  3426. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3427. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_153 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13;
  3428. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_154 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13;
  3429. NullCheck(L_154);
  3430. NullCheck(L_152);
  3431. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_152, L_153, 0, ((int32_t)(((RuntimeArray*)L_154)->max_length)));
  3432. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_155 = V_0;
  3433. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_156 = V_17;
  3434. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_157 = V_17;
  3435. NullCheck(L_157);
  3436. NullCheck(L_155);
  3437. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_155, L_156, 0, ((int32_t)(((RuntimeArray*)L_157)->max_length)));
  3438. int32_t L_158 = V_14;
  3439. V_14 = ((int32_t)il2cpp_codegen_add(L_158, 1));
  3440. }
  3441. IL_03ae_1:
  3442. {
  3443. int32_t L_159 = V_14;
  3444. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_160 = __this->___formData_0;
  3445. NullCheck(L_160);
  3446. int32_t L_161;
  3447. L_161 = List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline(L_160, List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  3448. V_19 = (bool)((((int32_t)L_159) < ((int32_t)L_161))? 1 : 0);
  3449. bool L_162 = V_19;
  3450. if (L_162)
  3451. {
  3452. goto IL_0321_1;
  3453. }
  3454. }
  3455. {
  3456. }
  3457. IL_03c7_1:
  3458. {
  3459. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_163 = V_0;
  3460. NullCheck(L_163);
  3461. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_164;
  3462. L_164 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_163);
  3463. V_20 = L_164;
  3464. goto IL_03dc;
  3465. }
  3466. }// end try (depth: 1)
  3467. catch(Il2CppExceptionWrapper& e)
  3468. {
  3469. __finallyBlock.StoreException(e.ex);
  3470. }
  3471. }
  3472. IL_03dc:
  3473. {
  3474. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_165 = V_20;
  3475. return L_165;
  3476. }
  3477. }
  3478. // System.Void UnityEngine.WWWForm::.cctor()
  3479. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__cctor_m272C4A10B85A1DEC11809F9EEADD0B2DE9166B5F (const RuntimeMethod* method)
  3480. {
  3481. static bool s_Il2CppMethodInitialized;
  3482. if (!s_Il2CppMethodInitialized)
  3483. {
  3484. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3485. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  3486. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  3487. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  3488. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  3489. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  3490. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  3491. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  3492. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  3493. s_Il2CppMethodInitialized = true;
  3494. }
  3495. {
  3496. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  3497. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3498. NullCheck(L_0);
  3499. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  3500. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  3501. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6 = L_1;
  3502. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6), (void*)L_1);
  3503. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  3504. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3505. NullCheck(L_2);
  3506. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  3507. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  3508. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7 = L_3;
  3509. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7), (void*)L_3);
  3510. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  3511. L_4 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3512. NullCheck(L_4);
  3513. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  3514. L_5 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  3515. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8 = L_5;
  3516. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8), (void*)L_5);
  3517. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  3518. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3519. NullCheck(L_6);
  3520. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  3521. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  3522. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9 = L_7;
  3523. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9), (void*)L_7);
  3524. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  3525. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3526. NullCheck(L_8);
  3527. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  3528. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  3529. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10 = L_9;
  3530. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10), (void*)L_9);
  3531. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10;
  3532. L_10 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3533. NullCheck(L_10);
  3534. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  3535. L_11 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_10, _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  3536. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11 = L_11;
  3537. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11), (void*)L_11);
  3538. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  3539. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3540. NullCheck(L_12);
  3541. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  3542. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  3543. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12 = L_13;
  3544. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12), (void*)L_13);
  3545. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14;
  3546. L_14 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3547. NullCheck(L_14);
  3548. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15;
  3549. L_15 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_14, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  3550. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13 = L_15;
  3551. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13), (void*)L_15);
  3552. return;
  3553. }
  3554. }
  3555. #ifdef __clang__
  3556. #pragma clang diagnostic pop
  3557. #endif
  3558. #ifdef __clang__
  3559. #pragma clang diagnostic push
  3560. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3561. #pragma clang diagnostic ignored "-Wunused-variable"
  3562. #endif
  3563. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  3564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method)
  3565. {
  3566. uint8_t V_0 = 0x0;
  3567. int32_t V_1 = 0;
  3568. int32_t V_2 = 0;
  3569. bool V_3 = false;
  3570. bool V_4 = false;
  3571. bool V_5 = false;
  3572. bool V_6 = false;
  3573. uint8_t V_7 = 0x0;
  3574. bool V_8 = false;
  3575. int32_t G_B4_0 = 0;
  3576. int32_t G_B9_0 = 0;
  3577. int32_t G_B14_0 = 0;
  3578. {
  3579. V_0 = (uint8_t)0;
  3580. int32_t L_0 = ___1_offset;
  3581. V_1 = L_0;
  3582. goto IL_0082;
  3583. }
  3584. IL_0007:
  3585. {
  3586. uint8_t L_1 = V_0;
  3587. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, ((int32_t)16))));
  3588. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_b;
  3589. int32_t L_3 = V_1;
  3590. NullCheck(L_2);
  3591. int32_t L_4 = L_3;
  3592. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  3593. V_2 = L_5;
  3594. int32_t L_6 = V_2;
  3595. if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
  3596. {
  3597. goto IL_0021;
  3598. }
  3599. }
  3600. {
  3601. int32_t L_7 = V_2;
  3602. G_B4_0 = ((((int32_t)((((int32_t)L_7) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3603. goto IL_0022;
  3604. }
  3605. IL_0021:
  3606. {
  3607. G_B4_0 = 0;
  3608. }
  3609. IL_0022:
  3610. {
  3611. V_3 = (bool)G_B4_0;
  3612. bool L_8 = V_3;
  3613. if (!L_8)
  3614. {
  3615. goto IL_002d;
  3616. }
  3617. }
  3618. {
  3619. int32_t L_9 = V_2;
  3620. V_2 = ((int32_t)il2cpp_codegen_subtract(L_9, ((int32_t)48)));
  3621. goto IL_0065;
  3622. }
  3623. IL_002d:
  3624. {
  3625. int32_t L_10 = V_2;
  3626. if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
  3627. {
  3628. goto IL_003c;
  3629. }
  3630. }
  3631. {
  3632. int32_t L_11 = V_2;
  3633. G_B9_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)75)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3634. goto IL_003d;
  3635. }
  3636. IL_003c:
  3637. {
  3638. G_B9_0 = 0;
  3639. }
  3640. IL_003d:
  3641. {
  3642. V_4 = (bool)G_B9_0;
  3643. bool L_12 = V_4;
  3644. if (!L_12)
  3645. {
  3646. goto IL_004a;
  3647. }
  3648. }
  3649. {
  3650. int32_t L_13 = V_2;
  3651. V_2 = ((int32_t)il2cpp_codegen_subtract(L_13, ((int32_t)55)));
  3652. goto IL_0065;
  3653. }
  3654. IL_004a:
  3655. {
  3656. int32_t L_14 = V_2;
  3657. if ((((int32_t)L_14) < ((int32_t)((int32_t)97))))
  3658. {
  3659. goto IL_0059;
  3660. }
  3661. }
  3662. {
  3663. int32_t L_15 = V_2;
  3664. G_B14_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3665. goto IL_005a;
  3666. }
  3667. IL_0059:
  3668. {
  3669. G_B14_0 = 0;
  3670. }
  3671. IL_005a:
  3672. {
  3673. V_5 = (bool)G_B14_0;
  3674. bool L_16 = V_5;
  3675. if (!L_16)
  3676. {
  3677. goto IL_0065;
  3678. }
  3679. }
  3680. {
  3681. int32_t L_17 = V_2;
  3682. V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)87)));
  3683. }
  3684. IL_0065:
  3685. {
  3686. int32_t L_18 = V_2;
  3687. V_6 = (bool)((((int32_t)L_18) > ((int32_t)((int32_t)15)))? 1 : 0);
  3688. bool L_19 = V_6;
  3689. if (!L_19)
  3690. {
  3691. goto IL_0077;
  3692. }
  3693. }
  3694. {
  3695. V_7 = (uint8_t)((int32_t)63);
  3696. goto IL_0096;
  3697. }
  3698. IL_0077:
  3699. {
  3700. uint8_t L_20 = V_0;
  3701. int32_t L_21 = V_2;
  3702. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, ((int32_t)(uint8_t)L_21))));
  3703. int32_t L_22 = V_1;
  3704. V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
  3705. }
  3706. IL_0082:
  3707. {
  3708. int32_t L_23 = V_1;
  3709. int32_t L_24 = ___1_offset;
  3710. V_8 = (bool)((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add(L_24, 2))))? 1 : 0);
  3711. bool L_25 = V_8;
  3712. if (L_25)
  3713. {
  3714. goto IL_0007;
  3715. }
  3716. }
  3717. {
  3718. uint8_t L_26 = V_0;
  3719. V_7 = L_26;
  3720. goto IL_0096;
  3721. }
  3722. IL_0096:
  3723. {
  3724. uint8_t L_27 = V_7;
  3725. return L_27;
  3726. }
  3727. }
  3728. // System.Void UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[],System.Byte&,System.Byte&)
  3729. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651 (uint8_t ___0_b, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_hexChars, uint8_t* ___2_byte0, uint8_t* ___3_byte1, const RuntimeMethod* method)
  3730. {
  3731. {
  3732. uint8_t* L_0 = ___2_byte0;
  3733. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___1_hexChars;
  3734. uint8_t L_2 = ___0_b;
  3735. NullCheck(L_1);
  3736. int32_t L_3 = ((int32_t)((int32_t)L_2>>4));
  3737. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  3738. *((int8_t*)L_0) = (int8_t)L_4;
  3739. uint8_t* L_5 = ___3_byte1;
  3740. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___1_hexChars;
  3741. uint8_t L_7 = ___0_b;
  3742. NullCheck(L_6);
  3743. int32_t L_8 = ((int32_t)((int32_t)L_7&((int32_t)15)));
  3744. uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
  3745. *((int8_t*)L_5) = (int8_t)L_9;
  3746. return;
  3747. }
  3748. }
  3749. // System.Byte[] UnityEngine.WWWTranscoder::URLEncode(System.Byte[])
  3750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  3751. {
  3752. static bool s_Il2CppMethodInitialized;
  3753. if (!s_Il2CppMethodInitialized)
  3754. {
  3755. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3756. s_Il2CppMethodInitialized = true;
  3757. }
  3758. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3759. {
  3760. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  3761. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3762. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2;
  3763. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3;
  3764. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5;
  3765. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  3766. L_4 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_0, L_1, L_2, L_3, (bool)0, NULL);
  3767. V_0 = L_4;
  3768. goto IL_001a;
  3769. }
  3770. IL_001a:
  3771. {
  3772. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
  3773. return L_5;
  3774. }
  3775. }
  3776. // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[])
  3777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  3778. {
  3779. static bool s_Il2CppMethodInitialized;
  3780. if (!s_Il2CppMethodInitialized)
  3781. {
  3782. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3783. s_Il2CppMethodInitialized = true;
  3784. }
  3785. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3786. {
  3787. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  3788. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3789. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2;
  3790. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace_4;
  3791. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5;
  3792. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  3793. L_4 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_0, L_1, L_2, L_3, (bool)0, NULL);
  3794. V_0 = L_4;
  3795. goto IL_001a;
  3796. }
  3797. IL_001a:
  3798. {
  3799. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
  3800. return L_5;
  3801. }
  3802. }
  3803. // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding)
  3804. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A (String_t* ___0_toEncode, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  3805. {
  3806. static bool s_Il2CppMethodInitialized;
  3807. if (!s_Il2CppMethodInitialized)
  3808. {
  3809. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3810. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3811. s_Il2CppMethodInitialized = true;
  3812. }
  3813. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3814. String_t* V_1 = NULL;
  3815. {
  3816. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___1_e;
  3817. String_t* L_1 = ___0_toEncode;
  3818. NullCheck(L_0);
  3819. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  3820. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  3821. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3822. uint8_t L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar_6;
  3823. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace_7;
  3824. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden_8;
  3825. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6;
  3826. L_6 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_2, L_3, L_4, L_5, (bool)1, NULL);
  3827. V_0 = L_6;
  3828. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3829. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  3830. L_7 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3831. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_0;
  3832. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_0;
  3833. NullCheck(L_9);
  3834. NullCheck(L_7);
  3835. String_t* L_10;
  3836. L_10 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(46 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, ((int32_t)(((RuntimeArray*)L_9)->max_length)));
  3837. V_1 = L_10;
  3838. goto IL_0030;
  3839. }
  3840. IL_0030:
  3841. {
  3842. String_t* L_11 = V_1;
  3843. return L_11;
  3844. }
  3845. }
  3846. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  3847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_forbidden, bool ___4_uppercase, const RuntimeMethod* method)
  3848. {
  3849. static bool s_Il2CppMethodInitialized;
  3850. if (!s_Il2CppMethodInitialized)
  3851. {
  3852. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3853. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3854. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3855. s_Il2CppMethodInitialized = true;
  3856. }
  3857. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  3858. int32_t V_1 = 0;
  3859. bool V_2 = false;
  3860. bool V_3 = false;
  3861. uint8_t V_4 = 0x0;
  3862. uint8_t V_5 = 0x0;
  3863. bool V_6 = false;
  3864. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  3865. int32_t G_B8_0 = 0;
  3866. int32_t G_B11_0 = 0;
  3867. int32_t G_B10_0 = 0;
  3868. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B12_0 = NULL;
  3869. int32_t G_B12_1 = 0;
  3870. {
  3871. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  3872. NullCheck(L_0);
  3873. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3874. NullCheck(L_1);
  3875. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)), NULL);
  3876. V_0 = L_1;
  3877. }
  3878. {
  3879. auto __finallyBlock = il2cpp::utils::Finally([&]
  3880. {
  3881. FINALLY_00b3:
  3882. {// begin finally (depth: 1)
  3883. {
  3884. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  3885. if (!L_2)
  3886. {
  3887. goto IL_00bd;
  3888. }
  3889. }
  3890. {
  3891. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  3892. NullCheck(L_3);
  3893. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  3894. }
  3895. IL_00bd:
  3896. {
  3897. return;
  3898. }
  3899. }// end finally (depth: 1)
  3900. });
  3901. try
  3902. {// begin try (depth: 1)
  3903. {
  3904. V_1 = 0;
  3905. goto IL_009a_1;
  3906. }
  3907. IL_0014_1:
  3908. {
  3909. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  3910. int32_t L_5 = V_1;
  3911. NullCheck(L_4);
  3912. int32_t L_6 = L_5;
  3913. uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
  3914. V_2 = (bool)((((int32_t)L_7) == ((int32_t)((int32_t)32)))? 1 : 0);
  3915. bool L_8 = V_2;
  3916. if (!L_8)
  3917. {
  3918. goto IL_0030_1;
  3919. }
  3920. }
  3921. {
  3922. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_9 = V_0;
  3923. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  3924. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___2_space;
  3925. NullCheck(L_11);
  3926. NullCheck(L_9);
  3927. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_9, L_10, 0, ((int32_t)(((RuntimeArray*)L_11)->max_length)));
  3928. goto IL_0095_1;
  3929. }
  3930. IL_0030_1:
  3931. {
  3932. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  3933. int32_t L_13 = V_1;
  3934. NullCheck(L_12);
  3935. int32_t L_14 = L_13;
  3936. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  3937. if ((((int32_t)L_15) < ((int32_t)((int32_t)32))))
  3938. {
  3939. goto IL_0049_1;
  3940. }
  3941. }
  3942. {
  3943. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___0_input;
  3944. int32_t L_17 = V_1;
  3945. NullCheck(L_16);
  3946. int32_t L_18 = L_17;
  3947. uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
  3948. if ((((int32_t)L_19) > ((int32_t)((int32_t)126))))
  3949. {
  3950. goto IL_0049_1;
  3951. }
  3952. }
  3953. {
  3954. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ___3_forbidden;
  3955. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___0_input;
  3956. int32_t L_22 = V_1;
  3957. NullCheck(L_21);
  3958. int32_t L_23 = L_22;
  3959. uint8_t L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
  3960. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3961. bool L_25;
  3962. L_25 = WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630(L_20, L_24, NULL);
  3963. G_B8_0 = ((int32_t)(L_25));
  3964. goto IL_004a_1;
  3965. }
  3966. IL_0049_1:
  3967. {
  3968. G_B8_0 = 1;
  3969. }
  3970. IL_004a_1:
  3971. {
  3972. V_3 = (bool)G_B8_0;
  3973. bool L_26 = V_3;
  3974. if (!L_26)
  3975. {
  3976. goto IL_0089_1;
  3977. }
  3978. }
  3979. {
  3980. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_27 = V_0;
  3981. uint8_t L_28 = ___1_escapeChar;
  3982. NullCheck(L_27);
  3983. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_27, L_28);
  3984. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ___0_input;
  3985. int32_t L_30 = V_1;
  3986. NullCheck(L_29);
  3987. int32_t L_31 = L_30;
  3988. uint8_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
  3989. bool L_33 = ___4_uppercase;
  3990. G_B10_0 = ((int32_t)(L_32));
  3991. if (L_33)
  3992. {
  3993. G_B11_0 = ((int32_t)(L_32));
  3994. goto IL_0065_1;
  3995. }
  3996. }
  3997. {
  3998. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3999. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars_1;
  4000. G_B12_0 = L_34;
  4001. G_B12_1 = G_B10_0;
  4002. goto IL_006a_1;
  4003. }
  4004. IL_0065_1:
  4005. {
  4006. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4007. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars_0;
  4008. G_B12_0 = L_35;
  4009. G_B12_1 = G_B11_0;
  4010. }
  4011. IL_006a_1:
  4012. {
  4013. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4014. WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651((uint8_t)G_B12_1, G_B12_0, (&V_4), (&V_5), NULL);
  4015. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_36 = V_0;
  4016. uint8_t L_37 = V_4;
  4017. NullCheck(L_36);
  4018. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_36, L_37);
  4019. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_38 = V_0;
  4020. uint8_t L_39 = V_5;
  4021. NullCheck(L_38);
  4022. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_38, L_39);
  4023. goto IL_0095_1;
  4024. }
  4025. IL_0089_1:
  4026. {
  4027. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_40 = V_0;
  4028. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = ___0_input;
  4029. int32_t L_42 = V_1;
  4030. NullCheck(L_41);
  4031. int32_t L_43 = L_42;
  4032. uint8_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
  4033. NullCheck(L_40);
  4034. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_40, L_44);
  4035. }
  4036. IL_0095_1:
  4037. {
  4038. int32_t L_45 = V_1;
  4039. V_1 = ((int32_t)il2cpp_codegen_add(L_45, 1));
  4040. }
  4041. IL_009a_1:
  4042. {
  4043. int32_t L_46 = V_1;
  4044. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_47 = ___0_input;
  4045. NullCheck(L_47);
  4046. V_6 = (bool)((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))))? 1 : 0);
  4047. bool L_48 = V_6;
  4048. if (L_48)
  4049. {
  4050. goto IL_0014_1;
  4051. }
  4052. }
  4053. {
  4054. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_49 = V_0;
  4055. NullCheck(L_49);
  4056. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_50;
  4057. L_50 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_49);
  4058. V_7 = L_50;
  4059. goto IL_00be;
  4060. }
  4061. }// end try (depth: 1)
  4062. catch(Il2CppExceptionWrapper& e)
  4063. {
  4064. __finallyBlock.StoreException(e.ex);
  4065. }
  4066. }
  4067. IL_00be:
  4068. {
  4069. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_51 = V_7;
  4070. return L_51;
  4071. }
  4072. }
  4073. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  4074. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method)
  4075. {
  4076. int32_t V_0 = 0;
  4077. int32_t V_1 = 0;
  4078. bool V_2 = false;
  4079. bool V_3 = false;
  4080. bool V_4 = false;
  4081. {
  4082. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  4083. NullCheck(L_0);
  4084. V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
  4085. V_1 = 0;
  4086. goto IL_001d;
  4087. }
  4088. IL_0009:
  4089. {
  4090. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_array;
  4091. int32_t L_2 = V_1;
  4092. NullCheck(L_1);
  4093. int32_t L_3 = L_2;
  4094. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  4095. uint8_t L_5 = ___1_b;
  4096. V_2 = (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
  4097. bool L_6 = V_2;
  4098. if (!L_6)
  4099. {
  4100. goto IL_0018;
  4101. }
  4102. }
  4103. {
  4104. V_3 = (bool)1;
  4105. goto IL_002b;
  4106. }
  4107. IL_0018:
  4108. {
  4109. int32_t L_7 = V_1;
  4110. V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  4111. }
  4112. IL_001d:
  4113. {
  4114. int32_t L_8 = V_1;
  4115. int32_t L_9 = V_0;
  4116. V_4 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  4117. bool L_10 = V_4;
  4118. if (L_10)
  4119. {
  4120. goto IL_0009;
  4121. }
  4122. }
  4123. {
  4124. V_3 = (bool)0;
  4125. goto IL_002b;
  4126. }
  4127. IL_002b:
  4128. {
  4129. bool L_11 = V_3;
  4130. return L_11;
  4131. }
  4132. }
  4133. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  4134. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  4135. {
  4136. static bool s_Il2CppMethodInitialized;
  4137. if (!s_Il2CppMethodInitialized)
  4138. {
  4139. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4140. s_Il2CppMethodInitialized = true;
  4141. }
  4142. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  4143. {
  4144. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  4145. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4146. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2;
  4147. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3;
  4148. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  4149. L_3 = WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B(L_0, L_1, L_2, NULL);
  4150. V_0 = L_3;
  4151. goto IL_0014;
  4152. }
  4153. IL_0014:
  4154. {
  4155. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_0;
  4156. return L_4;
  4157. }
  4158. }
  4159. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  4160. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_comperand, const RuntimeMethod* method)
  4161. {
  4162. bool V_0 = false;
  4163. bool V_1 = false;
  4164. int32_t V_2 = 0;
  4165. bool V_3 = false;
  4166. bool V_4 = false;
  4167. {
  4168. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  4169. NullCheck(L_0);
  4170. int32_t L_1 = ___1_index;
  4171. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___2_comperand;
  4172. NullCheck(L_2);
  4173. V_0 = (bool)((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1))) < ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))? 1 : 0);
  4174. bool L_3 = V_0;
  4175. if (!L_3)
  4176. {
  4177. goto IL_0013;
  4178. }
  4179. }
  4180. {
  4181. V_1 = (bool)0;
  4182. goto IL_0040;
  4183. }
  4184. IL_0013:
  4185. {
  4186. V_2 = 0;
  4187. goto IL_0030;
  4188. }
  4189. IL_0017:
  4190. {
  4191. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_array;
  4192. int32_t L_5 = ___1_index;
  4193. int32_t L_6 = V_2;
  4194. NullCheck(L_4);
  4195. int32_t L_7 = ((int32_t)il2cpp_codegen_add(L_5, L_6));
  4196. uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
  4197. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___2_comperand;
  4198. int32_t L_10 = V_2;
  4199. NullCheck(L_9);
  4200. int32_t L_11 = L_10;
  4201. uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  4202. V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  4203. bool L_13 = V_3;
  4204. if (!L_13)
  4205. {
  4206. goto IL_002c;
  4207. }
  4208. }
  4209. {
  4210. V_1 = (bool)0;
  4211. goto IL_0040;
  4212. }
  4213. IL_002c:
  4214. {
  4215. int32_t L_14 = V_2;
  4216. V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
  4217. }
  4218. IL_0030:
  4219. {
  4220. int32_t L_15 = V_2;
  4221. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___2_comperand;
  4222. NullCheck(L_16);
  4223. V_4 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))? 1 : 0);
  4224. bool L_17 = V_4;
  4225. if (L_17)
  4226. {
  4227. goto IL_0017;
  4228. }
  4229. }
  4230. {
  4231. V_1 = (bool)1;
  4232. goto IL_0040;
  4233. }
  4234. IL_0040:
  4235. {
  4236. bool L_18 = V_1;
  4237. return L_18;
  4238. }
  4239. }
  4240. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  4241. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, const RuntimeMethod* method)
  4242. {
  4243. static bool s_Il2CppMethodInitialized;
  4244. if (!s_Il2CppMethodInitialized)
  4245. {
  4246. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4247. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  4248. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4249. s_Il2CppMethodInitialized = true;
  4250. }
  4251. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  4252. int32_t V_1 = 0;
  4253. bool V_2 = false;
  4254. bool V_3 = false;
  4255. bool V_4 = false;
  4256. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL;
  4257. int32_t G_B7_0 = 0;
  4258. {
  4259. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  4260. NullCheck(L_0);
  4261. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  4262. NullCheck(L_1);
  4263. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
  4264. V_0 = L_1;
  4265. }
  4266. {
  4267. auto __finallyBlock = il2cpp::utils::Finally([&]
  4268. {
  4269. FINALLY_0087:
  4270. {// begin finally (depth: 1)
  4271. {
  4272. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  4273. if (!L_2)
  4274. {
  4275. goto IL_0091;
  4276. }
  4277. }
  4278. {
  4279. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  4280. NullCheck(L_3);
  4281. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  4282. }
  4283. IL_0091:
  4284. {
  4285. return;
  4286. }
  4287. }// end finally (depth: 1)
  4288. });
  4289. try
  4290. {// begin try (depth: 1)
  4291. {
  4292. V_1 = 0;
  4293. goto IL_0071_1;
  4294. }
  4295. IL_000f_1:
  4296. {
  4297. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  4298. int32_t L_5 = V_1;
  4299. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___2_space;
  4300. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4301. bool L_7;
  4302. L_7 = WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7(L_4, L_5, L_6, NULL);
  4303. V_2 = L_7;
  4304. bool L_8 = V_2;
  4305. if (!L_8)
  4306. {
  4307. goto IL_0031_1;
  4308. }
  4309. }
  4310. {
  4311. int32_t L_9 = V_1;
  4312. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  4313. NullCheck(L_10);
  4314. V_1 = ((int32_t)il2cpp_codegen_add(L_9, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), 1))));
  4315. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  4316. NullCheck(L_11);
  4317. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_11, (uint8_t)((int32_t)32));
  4318. goto IL_006c_1;
  4319. }
  4320. IL_0031_1:
  4321. {
  4322. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  4323. int32_t L_13 = V_1;
  4324. NullCheck(L_12);
  4325. int32_t L_14 = L_13;
  4326. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  4327. uint8_t L_16 = ___1_escapeChar;
  4328. if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
  4329. {
  4330. goto IL_0041_1;
  4331. }
  4332. }
  4333. {
  4334. int32_t L_17 = V_1;
  4335. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ___0_input;
  4336. NullCheck(L_18);
  4337. G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add(L_17, 2))) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))))? 1 : 0);
  4338. goto IL_0042_1;
  4339. }
  4340. IL_0041_1:
  4341. {
  4342. G_B7_0 = 0;
  4343. }
  4344. IL_0042_1:
  4345. {
  4346. V_3 = (bool)G_B7_0;
  4347. bool L_19 = V_3;
  4348. if (!L_19)
  4349. {
  4350. goto IL_0060_1;
  4351. }
  4352. }
  4353. {
  4354. int32_t L_20 = V_1;
  4355. V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
  4356. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_21 = V_0;
  4357. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = ___0_input;
  4358. int32_t L_23 = V_1;
  4359. int32_t L_24 = L_23;
  4360. V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
  4361. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4362. uint8_t L_25;
  4363. L_25 = WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88(L_22, L_24, NULL);
  4364. NullCheck(L_21);
  4365. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_21, L_25);
  4366. goto IL_006c_1;
  4367. }
  4368. IL_0060_1:
  4369. {
  4370. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_26 = V_0;
  4371. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = ___0_input;
  4372. int32_t L_28 = V_1;
  4373. NullCheck(L_27);
  4374. int32_t L_29 = L_28;
  4375. uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
  4376. NullCheck(L_26);
  4377. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_26, L_30);
  4378. }
  4379. IL_006c_1:
  4380. {
  4381. int32_t L_31 = V_1;
  4382. V_1 = ((int32_t)il2cpp_codegen_add(L_31, 1));
  4383. }
  4384. IL_0071_1:
  4385. {
  4386. int32_t L_32 = V_1;
  4387. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ___0_input;
  4388. NullCheck(L_33);
  4389. V_4 = (bool)((((int32_t)L_32) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
  4390. bool L_34 = V_4;
  4391. if (L_34)
  4392. {
  4393. goto IL_000f_1;
  4394. }
  4395. }
  4396. {
  4397. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_35 = V_0;
  4398. NullCheck(L_35);
  4399. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36;
  4400. L_36 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_35);
  4401. V_5 = L_36;
  4402. goto IL_0092;
  4403. }
  4404. }// end try (depth: 1)
  4405. catch(Il2CppExceptionWrapper& e)
  4406. {
  4407. __finallyBlock.StoreException(e.ex);
  4408. }
  4409. }
  4410. IL_0092:
  4411. {
  4412. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = V_5;
  4413. return L_37;
  4414. }
  4415. }
  4416. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding)
  4417. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  4418. {
  4419. static bool s_Il2CppMethodInitialized;
  4420. if (!s_Il2CppMethodInitialized)
  4421. {
  4422. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4423. s_Il2CppMethodInitialized = true;
  4424. }
  4425. int32_t V_0 = 0;
  4426. uint8_t* V_1 = NULL;
  4427. int32_t V_2 = 0;
  4428. Il2CppChar* V_3 = NULL;
  4429. String_t* V_4 = NULL;
  4430. bool V_5 = false;
  4431. {
  4432. String_t* L_0 = ___0_s;
  4433. NullCheck(L_0);
  4434. int32_t L_1;
  4435. L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
  4436. V_0 = ((int32_t)il2cpp_codegen_multiply(L_1, 2));
  4437. int32_t L_2 = V_0;
  4438. uintptr_t L_3 = ((uintptr_t)L_2);
  4439. int8_t* L_4 = (int8_t*) (L_3 ? alloca(L_3) : NULL);
  4440. memset(L_4, 0, L_3);
  4441. V_1 = (uint8_t*)(L_4);
  4442. String_t* L_5 = ___0_s;
  4443. V_4 = L_5;
  4444. String_t* L_6 = V_4;
  4445. V_3 = (Il2CppChar*)((uintptr_t)L_6);
  4446. Il2CppChar* L_7 = V_3;
  4447. if (!L_7)
  4448. {
  4449. goto IL_0022;
  4450. }
  4451. }
  4452. {
  4453. Il2CppChar* L_8 = V_3;
  4454. int32_t L_9;
  4455. L_9 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
  4456. V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, L_9));
  4457. }
  4458. IL_0022:
  4459. {
  4460. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10 = ___1_e;
  4461. Il2CppChar* L_11 = V_3;
  4462. String_t* L_12 = ___0_s;
  4463. NullCheck(L_12);
  4464. int32_t L_13;
  4465. L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
  4466. uint8_t* L_14 = V_1;
  4467. int32_t L_15 = V_0;
  4468. NullCheck(L_10);
  4469. int32_t L_16;
  4470. L_16 = VirtualFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(29 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, L_10, L_11, L_13, L_14, L_15);
  4471. V_2 = L_16;
  4472. V_4 = (String_t*)NULL;
  4473. uint8_t* L_17 = V_1;
  4474. int32_t L_18 = V_2;
  4475. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4476. bool L_19;
  4477. L_19 = WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F(L_17, L_18, NULL);
  4478. V_5 = L_19;
  4479. goto IL_0042;
  4480. }
  4481. IL_0042:
  4482. {
  4483. bool L_20 = V_5;
  4484. return L_20;
  4485. }
  4486. }
  4487. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte*,System.Int32)
  4488. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F (uint8_t* ___0_input, int32_t ___1_inputLength, const RuntimeMethod* method)
  4489. {
  4490. int32_t V_0 = 0;
  4491. bool V_1 = false;
  4492. bool V_2 = false;
  4493. bool V_3 = false;
  4494. int32_t G_B4_0 = 0;
  4495. {
  4496. V_0 = 0;
  4497. goto IL_0026;
  4498. }
  4499. IL_0005:
  4500. {
  4501. uint8_t* L_0 = ___0_input;
  4502. int32_t L_1 = V_0;
  4503. int32_t L_2 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_1)));
  4504. if ((((int32_t)L_2) < ((int32_t)((int32_t)32))))
  4505. {
  4506. goto IL_0018;
  4507. }
  4508. }
  4509. {
  4510. uint8_t* L_3 = ___0_input;
  4511. int32_t L_4 = V_0;
  4512. int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, L_4)));
  4513. G_B4_0 = ((((int32_t)L_5) > ((int32_t)((int32_t)126)))? 1 : 0);
  4514. goto IL_0019;
  4515. }
  4516. IL_0018:
  4517. {
  4518. G_B4_0 = 1;
  4519. }
  4520. IL_0019:
  4521. {
  4522. V_1 = (bool)G_B4_0;
  4523. bool L_6 = V_1;
  4524. if (!L_6)
  4525. {
  4526. goto IL_0021;
  4527. }
  4528. }
  4529. {
  4530. V_2 = (bool)0;
  4531. goto IL_0032;
  4532. }
  4533. IL_0021:
  4534. {
  4535. int32_t L_7 = V_0;
  4536. V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  4537. }
  4538. IL_0026:
  4539. {
  4540. int32_t L_8 = V_0;
  4541. int32_t L_9 = ___1_inputLength;
  4542. V_3 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  4543. bool L_10 = V_3;
  4544. if (L_10)
  4545. {
  4546. goto IL_0005;
  4547. }
  4548. }
  4549. {
  4550. V_2 = (bool)1;
  4551. goto IL_0032;
  4552. }
  4553. IL_0032:
  4554. {
  4555. bool L_11 = V_2;
  4556. return L_11;
  4557. }
  4558. }
  4559. // System.Void UnityEngine.WWWTranscoder::.cctor()
  4560. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_m105AD5C901F1A72DCDD5956E3FDDE83B65AB0152 (const RuntimeMethod* method)
  4561. {
  4562. static bool s_Il2CppMethodInitialized;
  4563. if (!s_Il2CppMethodInitialized)
  4564. {
  4565. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  4566. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  4567. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4568. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  4569. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  4570. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  4571. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  4572. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  4573. s_Il2CppMethodInitialized = true;
  4574. }
  4575. {
  4576. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  4577. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  4578. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4579. NullCheck(L_0);
  4580. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  4581. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  4582. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars_0 = L_1;
  4583. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars_0), (void*)L_1);
  4584. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  4585. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4586. NullCheck(L_2);
  4587. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  4588. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  4589. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars_1 = L_3;
  4590. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars_1), (void*)L_3);
  4591. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2 = (uint8_t)((int32_t)37);
  4592. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  4593. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = L_4;
  4594. NullCheck(L_5);
  4595. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43));
  4596. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3 = L_5;
  4597. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3), (void*)L_5);
  4598. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  4599. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4600. NullCheck(L_6);
  4601. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  4602. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  4603. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace_4 = L_7;
  4604. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace_4), (void*)L_7);
  4605. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  4606. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4607. NullCheck(L_8);
  4608. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  4609. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  4610. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5 = L_9;
  4611. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5), (void*)L_9);
  4612. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar_6 = (uint8_t)((int32_t)61);
  4613. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  4614. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10;
  4615. NullCheck(L_11);
  4616. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95));
  4617. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace_7 = L_11;
  4618. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace_7), (void*)L_11);
  4619. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  4620. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4621. NullCheck(L_12);
  4622. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  4623. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  4624. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden_8 = L_13;
  4625. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden_8), (void*)L_13);
  4626. return;
  4627. }
  4628. }
  4629. #ifdef __clang__
  4630. #pragma clang diagnostic pop
  4631. #endif
  4632. #ifdef __clang__
  4633. #pragma clang diagnostic push
  4634. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4635. #pragma clang diagnostic ignored "-Wunused-variable"
  4636. #endif
  4637. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4638. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  4639. {
  4640. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4641. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4642. }
  4643. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  4644. {
  4645. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4646. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4647. }
  4648. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4649. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  4650. {
  4651. }
  4652. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4653. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  4654. {
  4655. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4656. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4657. }
  4658. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  4659. {
  4660. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4661. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4662. }
  4663. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4664. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  4665. {
  4666. }
  4667. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  4668. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  4669. {
  4670. {
  4671. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  4672. __this->___U3CwebRequestU3Ek__BackingField_2 = L_0;
  4673. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField_2), (void*)L_0);
  4674. return;
  4675. }
  4676. }
  4677. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::.ctor()
  4678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m9AD26A39141A733EC40446F6AB7660B44D8EA1ED (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, const RuntimeMethod* method)
  4679. {
  4680. {
  4681. AsyncOperation__ctor_m53CF89405A1E2DA6F517D05792826F5784B0D6EC(__this, NULL);
  4682. return;
  4683. }
  4684. }
  4685. #ifdef __clang__
  4686. #pragma clang diagnostic pop
  4687. #endif
  4688. #ifdef __clang__
  4689. #pragma clang diagnostic push
  4690. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4691. #pragma clang diagnostic ignored "-Wunused-variable"
  4692. #endif
  4693. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  4694. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  4695. {
  4696. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4697. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4698. }
  4699. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  4700. {
  4701. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4702. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4703. }
  4704. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  4705. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  4706. {
  4707. }
  4708. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  4709. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  4710. {
  4711. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4712. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4713. }
  4714. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  4715. {
  4716. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4717. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4718. }
  4719. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  4720. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  4721. {
  4722. }
  4723. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  4724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method)
  4725. {
  4726. typedef String_t* (*UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D_ftn) (int32_t);
  4727. static UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D_ftn _il2cpp_icall_func;
  4728. if (!_il2cpp_icall_func)
  4729. _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)");
  4730. String_t* icallRetVal = _il2cpp_icall_func(___0_err);
  4731. return icallRetVal;
  4732. }
  4733. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  4734. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method)
  4735. {
  4736. typedef String_t* (*UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D_ftn) (int64_t);
  4737. static UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D_ftn _il2cpp_icall_func;
  4738. if (!_il2cpp_icall_func)
  4739. _il2cpp_icall_func = (UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)");
  4740. String_t* icallRetVal = _il2cpp_icall_func(___0_responseCode);
  4741. return icallRetVal;
  4742. }
  4743. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  4744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4745. {
  4746. {
  4747. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  4748. return L_0;
  4749. }
  4750. }
  4751. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  4752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4753. {
  4754. {
  4755. bool L_0 = ___0_value;
  4756. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = L_0;
  4757. return;
  4758. }
  4759. }
  4760. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  4761. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4762. {
  4763. {
  4764. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  4765. return L_0;
  4766. }
  4767. }
  4768. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  4769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4770. {
  4771. {
  4772. bool L_0 = ___0_value;
  4773. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = L_0;
  4774. return;
  4775. }
  4776. }
  4777. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  4778. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4779. {
  4780. {
  4781. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  4782. return L_0;
  4783. }
  4784. }
  4785. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  4786. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4787. {
  4788. {
  4789. bool L_0 = ___0_value;
  4790. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = L_0;
  4791. return;
  4792. }
  4793. }
  4794. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  4795. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method)
  4796. {
  4797. typedef intptr_t (*UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn) ();
  4798. static UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn _il2cpp_icall_func;
  4799. if (!_il2cpp_icall_func)
  4800. _il2cpp_icall_func = (UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()");
  4801. intptr_t icallRetVal = _il2cpp_icall_func();
  4802. return icallRetVal;
  4803. }
  4804. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  4805. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4806. {
  4807. typedef void (*UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  4808. static UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2_ftn _il2cpp_icall_func;
  4809. if (!_il2cpp_icall_func)
  4810. _il2cpp_icall_func = (UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release()");
  4811. _il2cpp_icall_func(__this);
  4812. }
  4813. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  4814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4815. {
  4816. static bool s_Il2CppMethodInitialized;
  4817. if (!s_Il2CppMethodInitialized)
  4818. {
  4819. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  4820. s_Il2CppMethodInitialized = true;
  4821. }
  4822. bool V_0 = false;
  4823. {
  4824. intptr_t L_0 = __this->___m_Ptr_0;
  4825. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  4826. bool L_2;
  4827. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  4828. V_0 = L_2;
  4829. bool L_3 = V_0;
  4830. if (!L_3)
  4831. {
  4832. goto IL_0030;
  4833. }
  4834. }
  4835. {
  4836. UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B(__this, NULL);
  4837. UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2(__this, NULL);
  4838. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  4839. __this->___m_Ptr_0 = L_4;
  4840. }
  4841. IL_0030:
  4842. {
  4843. return;
  4844. }
  4845. }
  4846. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  4847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4848. {
  4849. {
  4850. UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline(__this, (bool)1, NULL);
  4851. UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline(__this, (bool)1, NULL);
  4852. UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline(__this, (bool)1, NULL);
  4853. return;
  4854. }
  4855. }
  4856. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  4857. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method)
  4858. {
  4859. {
  4860. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4861. intptr_t L_0;
  4862. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  4863. __this->___m_Ptr_0 = L_0;
  4864. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  4865. String_t* L_1 = ___0_url;
  4866. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  4867. String_t* L_2 = ___1_method;
  4868. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  4869. return;
  4870. }
  4871. }
  4872. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  4873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___2_downloadHandler, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___3_uploadHandler, const RuntimeMethod* method)
  4874. {
  4875. {
  4876. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4877. intptr_t L_0;
  4878. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  4879. __this->___m_Ptr_0 = L_0;
  4880. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  4881. String_t* L_1 = ___0_url;
  4882. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  4883. String_t* L_2 = ___1_method;
  4884. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  4885. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___2_downloadHandler;
  4886. UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F(__this, L_3, NULL);
  4887. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_4 = ___3_uploadHandler;
  4888. UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE(__this, L_4, NULL);
  4889. return;
  4890. }
  4891. }
  4892. // System.Void UnityEngine.Networking.UnityWebRequest::Finalize()
  4893. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_m7F9D075432280A6CFF21BC2B5C35BFA752FF6ED8 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4894. {
  4895. {
  4896. }
  4897. {
  4898. auto __finallyBlock = il2cpp::utils::Finally([&]
  4899. {
  4900. FINALLY_0012:
  4901. {// begin finally (depth: 1)
  4902. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  4903. return;
  4904. }// end finally (depth: 1)
  4905. });
  4906. try
  4907. {// begin try (depth: 1)
  4908. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  4909. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  4910. goto IL_001a;
  4911. }// end try (depth: 1)
  4912. catch(Il2CppExceptionWrapper& e)
  4913. {
  4914. __finallyBlock.StoreException(e.ex);
  4915. }
  4916. }
  4917. IL_001a:
  4918. {
  4919. return;
  4920. }
  4921. }
  4922. // System.Void UnityEngine.Networking.UnityWebRequest::Dispose()
  4923. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m9F43494C0FEA530A97D3F2AF3D425CCC7670753A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4924. {
  4925. static bool s_Il2CppMethodInitialized;
  4926. if (!s_Il2CppMethodInitialized)
  4927. {
  4928. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  4929. s_Il2CppMethodInitialized = true;
  4930. }
  4931. {
  4932. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  4933. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  4934. il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  4935. GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
  4936. return;
  4937. }
  4938. }
  4939. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  4940. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4941. {
  4942. bool V_0 = false;
  4943. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_1 = NULL;
  4944. bool V_2 = false;
  4945. bool V_3 = false;
  4946. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_4 = NULL;
  4947. bool V_5 = false;
  4948. bool V_6 = false;
  4949. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_7 = NULL;
  4950. bool V_8 = false;
  4951. {
  4952. bool L_0;
  4953. L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline(__this, NULL);
  4954. V_0 = L_0;
  4955. bool L_1 = V_0;
  4956. if (!L_1)
  4957. {
  4958. goto IL_0025;
  4959. }
  4960. }
  4961. {
  4962. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_2;
  4963. L_2 = UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5(__this, NULL);
  4964. V_1 = L_2;
  4965. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = V_1;
  4966. V_2 = (bool)((!(((RuntimeObject*)(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4967. bool L_4 = V_2;
  4968. if (!L_4)
  4969. {
  4970. goto IL_0024;
  4971. }
  4972. }
  4973. {
  4974. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_5 = V_1;
  4975. NullCheck(L_5);
  4976. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::Dispose() */, L_5);
  4977. }
  4978. IL_0024:
  4979. {
  4980. }
  4981. IL_0025:
  4982. {
  4983. bool L_6;
  4984. L_6 = UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline(__this, NULL);
  4985. V_3 = L_6;
  4986. bool L_7 = V_3;
  4987. if (!L_7)
  4988. {
  4989. goto IL_004e;
  4990. }
  4991. }
  4992. {
  4993. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_8;
  4994. L_8 = UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5(__this, NULL);
  4995. V_4 = L_8;
  4996. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_9 = V_4;
  4997. V_5 = (bool)((!(((RuntimeObject*)(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4998. bool L_10 = V_5;
  4999. if (!L_10)
  5000. {
  5001. goto IL_004d;
  5002. }
  5003. }
  5004. {
  5005. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_11 = V_4;
  5006. NullCheck(L_11);
  5007. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::Dispose() */, L_11);
  5008. }
  5009. IL_004d:
  5010. {
  5011. }
  5012. IL_004e:
  5013. {
  5014. bool L_12;
  5015. L_12 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline(__this, NULL);
  5016. V_6 = L_12;
  5017. bool L_13 = V_6;
  5018. if (!L_13)
  5019. {
  5020. goto IL_0079;
  5021. }
  5022. }
  5023. {
  5024. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_14;
  5025. L_14 = UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D(__this, NULL);
  5026. V_7 = L_14;
  5027. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_15 = V_7;
  5028. V_8 = (bool)((!(((RuntimeObject*)(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5029. bool L_16 = V_8;
  5030. if (!L_16)
  5031. {
  5032. goto IL_0078;
  5033. }
  5034. }
  5035. {
  5036. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_17 = V_7;
  5037. NullCheck(L_17);
  5038. CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43(L_17, NULL);
  5039. }
  5040. IL_0078:
  5041. {
  5042. }
  5043. IL_0079:
  5044. {
  5045. return;
  5046. }
  5047. }
  5048. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  5049. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5050. {
  5051. typedef UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* (*UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5052. static UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D_ftn _il2cpp_icall_func;
  5053. if (!_il2cpp_icall_func)
  5054. _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest()");
  5055. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* icallRetVal = _il2cpp_icall_func(__this);
  5056. return icallRetVal;
  5057. }
  5058. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest()
  5059. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_SendWebRequest_mA3CD13983BAA5074A0640EDD661B1E46E6DB6C13 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5060. {
  5061. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_0 = NULL;
  5062. bool V_1 = false;
  5063. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_2 = NULL;
  5064. {
  5065. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_0;
  5066. L_0 = UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D(__this, NULL);
  5067. V_0 = L_0;
  5068. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_1 = V_0;
  5069. V_1 = (bool)((!(((RuntimeObject*)(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5070. bool L_2 = V_1;
  5071. if (!L_2)
  5072. {
  5073. goto IL_0018;
  5074. }
  5075. }
  5076. {
  5077. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_3 = V_0;
  5078. NullCheck(L_3);
  5079. UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline(L_3, __this, NULL);
  5080. }
  5081. IL_0018:
  5082. {
  5083. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_4 = V_0;
  5084. V_2 = L_4;
  5085. goto IL_001c;
  5086. }
  5087. IL_001c:
  5088. {
  5089. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_5 = V_2;
  5090. return L_5;
  5091. }
  5092. }
  5093. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  5094. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5095. {
  5096. typedef void (*UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5097. static UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B_ftn _il2cpp_icall_func;
  5098. if (!_il2cpp_icall_func)
  5099. _il2cpp_icall_func = (UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort()");
  5100. _il2cpp_icall_func(__this);
  5101. }
  5102. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  5103. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  5104. {
  5105. typedef int32_t (*UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, int32_t);
  5106. static UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238_ftn _il2cpp_icall_func;
  5107. if (!_il2cpp_icall_func)
  5108. _il2cpp_icall_func = (UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)");
  5109. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_methodType);
  5110. return icallRetVal;
  5111. }
  5112. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  5113. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  5114. {
  5115. int32_t V_0 = 0;
  5116. bool V_1 = false;
  5117. bool V_2 = false;
  5118. {
  5119. bool L_0;
  5120. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5121. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5122. bool L_1 = V_1;
  5123. if (!L_1)
  5124. {
  5125. goto IL_0019;
  5126. }
  5127. }
  5128. {
  5129. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5130. NullCheck(L_2);
  5131. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  5132. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  5133. }
  5134. IL_0019:
  5135. {
  5136. int32_t L_3 = ___0_methodType;
  5137. int32_t L_4;
  5138. L_4 = UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238(__this, L_3, NULL);
  5139. V_0 = L_4;
  5140. int32_t L_5 = V_0;
  5141. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5142. bool L_6 = V_2;
  5143. if (!L_6)
  5144. {
  5145. goto IL_0035;
  5146. }
  5147. }
  5148. {
  5149. int32_t L_7 = V_0;
  5150. String_t* L_8;
  5151. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5152. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5153. NullCheck(L_9);
  5154. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5155. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  5156. }
  5157. IL_0035:
  5158. {
  5159. return;
  5160. }
  5161. }
  5162. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  5163. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  5164. {
  5165. typedef int32_t (*UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, String_t*);
  5166. static UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB_ftn _il2cpp_icall_func;
  5167. if (!_il2cpp_icall_func)
  5168. _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)");
  5169. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_customMethodName);
  5170. return icallRetVal;
  5171. }
  5172. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  5173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  5174. {
  5175. int32_t V_0 = 0;
  5176. bool V_1 = false;
  5177. bool V_2 = false;
  5178. {
  5179. bool L_0;
  5180. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5181. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5182. bool L_1 = V_1;
  5183. if (!L_1)
  5184. {
  5185. goto IL_0019;
  5186. }
  5187. }
  5188. {
  5189. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5190. NullCheck(L_2);
  5191. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  5192. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  5193. }
  5194. IL_0019:
  5195. {
  5196. String_t* L_3 = ___0_customMethodName;
  5197. int32_t L_4;
  5198. L_4 = UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB(__this, L_3, NULL);
  5199. V_0 = L_4;
  5200. int32_t L_5 = V_0;
  5201. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5202. bool L_6 = V_2;
  5203. if (!L_6)
  5204. {
  5205. goto IL_0035;
  5206. }
  5207. }
  5208. {
  5209. int32_t L_7 = V_0;
  5210. String_t* L_8;
  5211. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5212. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5213. NullCheck(L_9);
  5214. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5215. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  5216. }
  5217. IL_0035:
  5218. {
  5219. return;
  5220. }
  5221. }
  5222. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  5223. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  5224. {
  5225. static bool s_Il2CppMethodInitialized;
  5226. if (!s_Il2CppMethodInitialized)
  5227. {
  5228. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708);
  5229. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  5230. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5231. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  5232. s_Il2CppMethodInitialized = true;
  5233. }
  5234. bool V_0 = false;
  5235. String_t* V_1 = NULL;
  5236. String_t* V_2 = NULL;
  5237. {
  5238. String_t* L_0 = ___0_value;
  5239. bool L_1;
  5240. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  5241. V_0 = L_1;
  5242. bool L_2 = V_0;
  5243. if (!L_2)
  5244. {
  5245. goto IL_0017;
  5246. }
  5247. }
  5248. {
  5249. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5250. NullCheck(L_3);
  5251. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E)), NULL);
  5252. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var)));
  5253. }
  5254. IL_0017:
  5255. {
  5256. String_t* L_4 = ___0_value;
  5257. NullCheck(L_4);
  5258. String_t* L_5;
  5259. L_5 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_4, NULL);
  5260. V_2 = L_5;
  5261. String_t* L_6 = V_2;
  5262. V_1 = L_6;
  5263. String_t* L_7 = V_1;
  5264. bool L_8;
  5265. L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
  5266. if (L_8)
  5267. {
  5268. goto IL_0056;
  5269. }
  5270. }
  5271. {
  5272. String_t* L_9 = V_1;
  5273. bool L_10;
  5274. L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  5275. if (L_10)
  5276. {
  5277. goto IL_0060;
  5278. }
  5279. }
  5280. {
  5281. String_t* L_11 = V_1;
  5282. bool L_12;
  5283. L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708, NULL);
  5284. if (L_12)
  5285. {
  5286. goto IL_006a;
  5287. }
  5288. }
  5289. {
  5290. String_t* L_13 = V_1;
  5291. bool L_14;
  5292. L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_13, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  5293. if (L_14)
  5294. {
  5295. goto IL_0074;
  5296. }
  5297. }
  5298. {
  5299. goto IL_007e;
  5300. }
  5301. IL_0056:
  5302. {
  5303. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 0, NULL);
  5304. goto IL_008d;
  5305. }
  5306. IL_0060:
  5307. {
  5308. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 1, NULL);
  5309. goto IL_008d;
  5310. }
  5311. IL_006a:
  5312. {
  5313. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 2, NULL);
  5314. goto IL_008d;
  5315. }
  5316. IL_0074:
  5317. {
  5318. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 3, NULL);
  5319. goto IL_008d;
  5320. }
  5321. IL_007e:
  5322. {
  5323. String_t* L_15 = ___0_value;
  5324. NullCheck(L_15);
  5325. String_t* L_16;
  5326. L_16 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_15, NULL);
  5327. UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40(__this, L_16, NULL);
  5328. goto IL_008d;
  5329. }
  5330. IL_008d:
  5331. {
  5332. return;
  5333. }
  5334. }
  5335. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  5336. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5337. {
  5338. typedef int32_t (*UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5339. static UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86_ftn _il2cpp_icall_func;
  5340. if (!_il2cpp_icall_func)
  5341. _il2cpp_icall_func = (UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetError()");
  5342. int32_t icallRetVal = _il2cpp_icall_func(__this);
  5343. return icallRetVal;
  5344. }
  5345. // System.String UnityEngine.Networking.UnityWebRequest::get_error()
  5346. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_m20A5D813ED59118B7AA1D1E2EB5250178B1F5B6F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5347. {
  5348. static bool s_Il2CppMethodInitialized;
  5349. if (!s_Il2CppMethodInitialized)
  5350. {
  5351. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
  5352. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C);
  5353. s_Il2CppMethodInitialized = true;
  5354. }
  5355. int32_t V_0 = 0;
  5356. int32_t V_1 = 0;
  5357. String_t* V_2 = NULL;
  5358. {
  5359. int32_t L_0;
  5360. L_0 = UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449(__this, NULL);
  5361. V_1 = L_0;
  5362. int32_t L_1 = V_1;
  5363. V_0 = L_1;
  5364. int32_t L_2 = V_0;
  5365. if ((!(((uint32_t)L_2) > ((uint32_t)1))))
  5366. {
  5367. goto IL_0016;
  5368. }
  5369. }
  5370. {
  5371. goto IL_0010;
  5372. }
  5373. IL_0010:
  5374. {
  5375. int32_t L_3 = V_0;
  5376. if ((((int32_t)L_3) == ((int32_t)3)))
  5377. {
  5378. goto IL_001a;
  5379. }
  5380. }
  5381. {
  5382. goto IL_003d;
  5383. }
  5384. IL_0016:
  5385. {
  5386. V_2 = (String_t*)NULL;
  5387. goto IL_004b;
  5388. }
  5389. IL_001a:
  5390. {
  5391. int64_t L_4;
  5392. L_4 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  5393. int64_t L_5 = L_4;
  5394. RuntimeObject* L_6 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_5);
  5395. int64_t L_7;
  5396. L_7 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  5397. String_t* L_8;
  5398. L_8 = UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D(L_7, NULL);
  5399. String_t* L_9;
  5400. L_9 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C, L_6, L_8, NULL);
  5401. V_2 = L_9;
  5402. goto IL_004b;
  5403. }
  5404. IL_003d:
  5405. {
  5406. int32_t L_10;
  5407. L_10 = UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86(__this, NULL);
  5408. String_t* L_11;
  5409. L_11 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_10, NULL);
  5410. V_2 = L_11;
  5411. goto IL_004b;
  5412. }
  5413. IL_004b:
  5414. {
  5415. String_t* L_12 = V_2;
  5416. return L_12;
  5417. }
  5418. }
  5419. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  5420. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  5421. {
  5422. static bool s_Il2CppMethodInitialized;
  5423. if (!s_Il2CppMethodInitialized)
  5424. {
  5425. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  5426. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2);
  5427. s_Il2CppMethodInitialized = true;
  5428. }
  5429. String_t* V_0 = NULL;
  5430. {
  5431. V_0 = _stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2;
  5432. String_t* L_0 = ___0_value;
  5433. String_t* L_1 = V_0;
  5434. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  5435. String_t* L_2;
  5436. L_2 = WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C(L_0, L_1, NULL);
  5437. UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9(__this, L_2, NULL);
  5438. return;
  5439. }
  5440. }
  5441. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  5442. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  5443. {
  5444. typedef int32_t (*UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, String_t*);
  5445. static UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5_ftn _il2cpp_icall_func;
  5446. if (!_il2cpp_icall_func)
  5447. _il2cpp_icall_func = (UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)");
  5448. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_url);
  5449. return icallRetVal;
  5450. }
  5451. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  5452. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  5453. {
  5454. int32_t V_0 = 0;
  5455. bool V_1 = false;
  5456. bool V_2 = false;
  5457. {
  5458. bool L_0;
  5459. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5460. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5461. bool L_1 = V_1;
  5462. if (!L_1)
  5463. {
  5464. goto IL_0019;
  5465. }
  5466. }
  5467. {
  5468. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5469. NullCheck(L_2);
  5470. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6)), NULL);
  5471. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  5472. }
  5473. IL_0019:
  5474. {
  5475. String_t* L_3 = ___0_url;
  5476. int32_t L_4;
  5477. L_4 = UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5(__this, L_3, NULL);
  5478. V_0 = L_4;
  5479. int32_t L_5 = V_0;
  5480. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5481. bool L_6 = V_2;
  5482. if (!L_6)
  5483. {
  5484. goto IL_0035;
  5485. }
  5486. }
  5487. {
  5488. int32_t L_7 = V_0;
  5489. String_t* L_8;
  5490. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5491. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5492. NullCheck(L_9);
  5493. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5494. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  5495. }
  5496. IL_0035:
  5497. {
  5498. return;
  5499. }
  5500. }
  5501. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  5502. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5503. {
  5504. typedef int64_t (*UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5505. static UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B_ftn _il2cpp_icall_func;
  5506. if (!_il2cpp_icall_func)
  5507. _il2cpp_icall_func = (UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode()");
  5508. int64_t icallRetVal = _il2cpp_icall_func(__this);
  5509. return icallRetVal;
  5510. }
  5511. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  5512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5513. {
  5514. typedef bool (*UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5515. static UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77_ftn _il2cpp_icall_func;
  5516. if (!_il2cpp_icall_func)
  5517. _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable()");
  5518. bool icallRetVal = _il2cpp_icall_func(__this);
  5519. return icallRetVal;
  5520. }
  5521. // UnityEngine.Networking.UnityWebRequest/Result UnityEngine.Networking.UnityWebRequest::get_result()
  5522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5523. {
  5524. typedef int32_t (*UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5525. static UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449_ftn _il2cpp_icall_func;
  5526. if (!_il2cpp_icall_func)
  5527. _il2cpp_icall_func = (UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_result()");
  5528. int32_t icallRetVal = _il2cpp_icall_func(__this);
  5529. return icallRetVal;
  5530. }
  5531. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  5532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
  5533. {
  5534. typedef int32_t (*UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, String_t*, String_t*);
  5535. static UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353_ftn _il2cpp_icall_func;
  5536. if (!_il2cpp_icall_func)
  5537. _il2cpp_icall_func = (UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)");
  5538. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_name, ___1_value);
  5539. return icallRetVal;
  5540. }
  5541. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  5542. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
  5543. {
  5544. int32_t V_0 = 0;
  5545. bool V_1 = false;
  5546. bool V_2 = false;
  5547. bool V_3 = false;
  5548. bool V_4 = false;
  5549. {
  5550. String_t* L_0 = ___0_name;
  5551. bool L_1;
  5552. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  5553. V_1 = L_1;
  5554. bool L_2 = V_1;
  5555. if (!L_2)
  5556. {
  5557. goto IL_0016;
  5558. }
  5559. }
  5560. {
  5561. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5562. NullCheck(L_3);
  5563. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5)), NULL);
  5564. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5565. }
  5566. IL_0016:
  5567. {
  5568. String_t* L_4 = ___1_value;
  5569. V_2 = (bool)((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  5570. bool L_5 = V_2;
  5571. if (!L_5)
  5572. {
  5573. goto IL_0029;
  5574. }
  5575. }
  5576. {
  5577. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5578. NullCheck(L_6);
  5579. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2)), NULL);
  5580. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5581. }
  5582. IL_0029:
  5583. {
  5584. bool L_7;
  5585. L_7 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5586. V_3 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
  5587. bool L_8 = V_3;
  5588. if (!L_8)
  5589. {
  5590. goto IL_0041;
  5591. }
  5592. }
  5593. {
  5594. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5595. NullCheck(L_9);
  5596. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69)), NULL);
  5597. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5598. }
  5599. IL_0041:
  5600. {
  5601. String_t* L_10 = ___0_name;
  5602. String_t* L_11 = ___1_value;
  5603. int32_t L_12;
  5604. L_12 = UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353(__this, L_10, L_11, NULL);
  5605. V_0 = L_12;
  5606. int32_t L_13 = V_0;
  5607. V_4 = (bool)((!(((uint32_t)L_13) <= ((uint32_t)0)))? 1 : 0);
  5608. bool L_14 = V_4;
  5609. if (!L_14)
  5610. {
  5611. goto IL_0060;
  5612. }
  5613. }
  5614. {
  5615. int32_t L_15 = V_0;
  5616. String_t* L_16;
  5617. L_16 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_15, NULL);
  5618. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_17 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5619. NullCheck(L_17);
  5620. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_17, L_16, NULL);
  5621. IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5622. }
  5623. IL_0060:
  5624. {
  5625. return;
  5626. }
  5627. }
  5628. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  5629. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method)
  5630. {
  5631. typedef int32_t (*UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*);
  5632. static UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973_ftn _il2cpp_icall_func;
  5633. if (!_il2cpp_icall_func)
  5634. _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)");
  5635. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_uh);
  5636. return icallRetVal;
  5637. }
  5638. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  5639. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5640. {
  5641. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_0 = NULL;
  5642. {
  5643. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = __this->___m_UploadHandler_2;
  5644. V_0 = L_0;
  5645. goto IL_000a;
  5646. }
  5647. IL_000a:
  5648. {
  5649. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_1 = V_0;
  5650. return L_1;
  5651. }
  5652. }
  5653. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  5654. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method)
  5655. {
  5656. int32_t V_0 = 0;
  5657. bool V_1 = false;
  5658. bool V_2 = false;
  5659. {
  5660. bool L_0;
  5661. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5662. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5663. bool L_1 = V_1;
  5664. if (!L_1)
  5665. {
  5666. goto IL_0019;
  5667. }
  5668. }
  5669. {
  5670. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5671. NullCheck(L_2);
  5672. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39)), NULL);
  5673. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  5674. }
  5675. IL_0019:
  5676. {
  5677. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_3 = ___0_value;
  5678. int32_t L_4;
  5679. L_4 = UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973(__this, L_3, NULL);
  5680. V_0 = L_4;
  5681. int32_t L_5 = V_0;
  5682. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5683. bool L_6 = V_2;
  5684. if (!L_6)
  5685. {
  5686. goto IL_0035;
  5687. }
  5688. }
  5689. {
  5690. int32_t L_7 = V_0;
  5691. String_t* L_8;
  5692. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5693. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5694. NullCheck(L_9);
  5695. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5696. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  5697. }
  5698. IL_0035:
  5699. {
  5700. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_10 = ___0_value;
  5701. __this->___m_UploadHandler_2 = L_10;
  5702. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UploadHandler_2), (void*)L_10);
  5703. return;
  5704. }
  5705. }
  5706. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  5707. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method)
  5708. {
  5709. typedef int32_t (*UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*);
  5710. static UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515_ftn _il2cpp_icall_func;
  5711. if (!_il2cpp_icall_func)
  5712. _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)");
  5713. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_dh);
  5714. return icallRetVal;
  5715. }
  5716. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  5717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5718. {
  5719. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_0 = NULL;
  5720. {
  5721. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = __this->___m_DownloadHandler_1;
  5722. V_0 = L_0;
  5723. goto IL_000a;
  5724. }
  5725. IL_000a:
  5726. {
  5727. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_1 = V_0;
  5728. return L_1;
  5729. }
  5730. }
  5731. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  5732. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method)
  5733. {
  5734. int32_t V_0 = 0;
  5735. bool V_1 = false;
  5736. bool V_2 = false;
  5737. {
  5738. bool L_0;
  5739. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5740. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5741. bool L_1 = V_1;
  5742. if (!L_1)
  5743. {
  5744. goto IL_0019;
  5745. }
  5746. }
  5747. {
  5748. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5749. NullCheck(L_2);
  5750. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36)), NULL);
  5751. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  5752. }
  5753. IL_0019:
  5754. {
  5755. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___0_value;
  5756. int32_t L_4;
  5757. L_4 = UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515(__this, L_3, NULL);
  5758. V_0 = L_4;
  5759. int32_t L_5 = V_0;
  5760. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5761. bool L_6 = V_2;
  5762. if (!L_6)
  5763. {
  5764. goto IL_0035;
  5765. }
  5766. }
  5767. {
  5768. int32_t L_7 = V_0;
  5769. String_t* L_8;
  5770. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5771. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5772. NullCheck(L_9);
  5773. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5774. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  5775. }
  5776. IL_0035:
  5777. {
  5778. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_10 = ___0_value;
  5779. __this->___m_DownloadHandler_1 = L_10;
  5780. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DownloadHandler_1), (void*)L_10);
  5781. return;
  5782. }
  5783. }
  5784. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  5785. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5786. {
  5787. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_0 = NULL;
  5788. {
  5789. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = __this->___m_CertificateHandler_3;
  5790. V_0 = L_0;
  5791. goto IL_000a;
  5792. }
  5793. IL_000a:
  5794. {
  5795. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_1 = V_0;
  5796. return L_1;
  5797. }
  5798. }
  5799. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)
  5800. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_timeout, const RuntimeMethod* method)
  5801. {
  5802. typedef int32_t (*UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, int32_t);
  5803. static UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F_ftn _il2cpp_icall_func;
  5804. if (!_il2cpp_icall_func)
  5805. _il2cpp_icall_func = (UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)");
  5806. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_timeout);
  5807. return icallRetVal;
  5808. }
  5809. // System.Void UnityEngine.Networking.UnityWebRequest::set_timeout(System.Int32)
  5810. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_value, const RuntimeMethod* method)
  5811. {
  5812. static bool s_Il2CppMethodInitialized;
  5813. if (!s_Il2CppMethodInitialized)
  5814. {
  5815. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
  5816. s_Il2CppMethodInitialized = true;
  5817. }
  5818. int32_t V_0 = 0;
  5819. bool V_1 = false;
  5820. bool V_2 = false;
  5821. {
  5822. bool L_0;
  5823. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5824. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5825. bool L_1 = V_1;
  5826. if (!L_1)
  5827. {
  5828. goto IL_0019;
  5829. }
  5830. }
  5831. {
  5832. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5833. NullCheck(L_2);
  5834. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFD59FD74BD22E570703A8BC6B77F6081661FEEB)), NULL);
  5835. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var)));
  5836. }
  5837. IL_0019:
  5838. {
  5839. int32_t L_3 = ___0_value;
  5840. il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
  5841. int32_t L_4;
  5842. L_4 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_3, 0, NULL);
  5843. ___0_value = L_4;
  5844. int32_t L_5 = ___0_value;
  5845. int32_t L_6;
  5846. L_6 = UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F(__this, ((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)1000))), NULL);
  5847. V_0 = L_6;
  5848. int32_t L_7 = V_0;
  5849. V_2 = (bool)((!(((uint32_t)L_7) <= ((uint32_t)0)))? 1 : 0);
  5850. bool L_8 = V_2;
  5851. if (!L_8)
  5852. {
  5853. goto IL_0044;
  5854. }
  5855. }
  5856. {
  5857. int32_t L_9 = V_0;
  5858. String_t* L_10;
  5859. L_10 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_9, NULL);
  5860. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_11 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5861. NullCheck(L_11);
  5862. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_11, L_10, NULL);
  5863. IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var)));
  5864. }
  5865. IL_0044:
  5866. {
  5867. return;
  5868. }
  5869. }
  5870. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Get(System.String)
  5871. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Get_m1A332EE069BB5052368307F254A5A7627BB5FD86 (String_t* ___0_uri, const RuntimeMethod* method)
  5872. {
  5873. static bool s_Il2CppMethodInitialized;
  5874. if (!s_Il2CppMethodInitialized)
  5875. {
  5876. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  5877. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5878. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5879. s_Il2CppMethodInitialized = true;
  5880. }
  5881. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  5882. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  5883. {
  5884. String_t* L_0 = ___0_uri;
  5885. DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* L_1 = (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*)il2cpp_codegen_object_new(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  5886. NullCheck(L_1);
  5887. DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF(L_1, NULL);
  5888. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5889. NullCheck(L_2);
  5890. UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A(L_2, L_0, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, L_1, (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)NULL, NULL);
  5891. V_0 = L_2;
  5892. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_3 = V_0;
  5893. V_1 = L_3;
  5894. goto IL_0017;
  5895. }
  5896. IL_0017:
  5897. {
  5898. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_4 = V_1;
  5899. return L_4;
  5900. }
  5901. }
  5902. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Head(System.String)
  5903. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Head_m0010750A2B5A1F24EAF86A492D48E38A092FE71A (String_t* ___0_uri, const RuntimeMethod* method)
  5904. {
  5905. static bool s_Il2CppMethodInitialized;
  5906. if (!s_Il2CppMethodInitialized)
  5907. {
  5908. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5909. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  5910. s_Il2CppMethodInitialized = true;
  5911. }
  5912. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  5913. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  5914. {
  5915. String_t* L_0 = ___0_uri;
  5916. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_1 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5917. NullCheck(L_1);
  5918. UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E(L_1, L_0, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  5919. V_0 = L_1;
  5920. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = V_0;
  5921. V_1 = L_2;
  5922. goto IL_0011;
  5923. }
  5924. IL_0011:
  5925. {
  5926. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_3 = V_1;
  5927. return L_3;
  5928. }
  5929. }
  5930. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,UnityEngine.WWWForm)
  5931. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Post_m90D1692FE21DF17CB3DEB0948D0359B778404373 (String_t* ___0_uri, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method)
  5932. {
  5933. static bool s_Il2CppMethodInitialized;
  5934. if (!s_Il2CppMethodInitialized)
  5935. {
  5936. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5937. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  5938. s_Il2CppMethodInitialized = true;
  5939. }
  5940. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  5941. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  5942. {
  5943. String_t* L_0 = ___0_uri;
  5944. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_1 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5945. NullCheck(L_1);
  5946. UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E(L_1, L_0, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  5947. V_0 = L_1;
  5948. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = V_0;
  5949. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_3 = ___1_formData;
  5950. UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B(L_2, L_3, NULL);
  5951. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_4 = V_0;
  5952. V_1 = L_4;
  5953. goto IL_0019;
  5954. }
  5955. IL_0019:
  5956. {
  5957. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_5 = V_1;
  5958. return L_5;
  5959. }
  5960. }
  5961. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm)
  5962. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_request, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method)
  5963. {
  5964. static bool s_Il2CppMethodInitialized;
  5965. if (!s_Il2CppMethodInitialized)
  5966. {
  5967. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var);
  5968. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  5969. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var);
  5970. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var);
  5971. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var);
  5972. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
  5973. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
  5974. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var);
  5975. s_Il2CppMethodInitialized = true;
  5976. }
  5977. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  5978. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_1 = NULL;
  5979. bool V_2 = false;
  5980. bool V_3 = false;
  5981. bool V_4 = false;
  5982. Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 V_5;
  5983. memset((&V_5), 0, sizeof(V_5));
  5984. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A V_6;
  5985. memset((&V_6), 0, sizeof(V_6));
  5986. {
  5987. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_request;
  5988. DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* L_1 = (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*)il2cpp_codegen_object_new(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  5989. NullCheck(L_1);
  5990. DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF(L_1, NULL);
  5991. NullCheck(L_0);
  5992. UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F(L_0, L_1, NULL);
  5993. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_2 = ___1_formData;
  5994. V_2 = (bool)((((RuntimeObject*)(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  5995. bool L_3 = V_2;
  5996. if (!L_3)
  5997. {
  5998. goto IL_0017;
  5999. }
  6000. }
  6001. {
  6002. goto IL_008c;
  6003. }
  6004. IL_0017:
  6005. {
  6006. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6007. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_4 = ___1_formData;
  6008. NullCheck(L_4);
  6009. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  6010. L_5 = WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145(L_4, NULL);
  6011. V_0 = L_5;
  6012. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_0;
  6013. NullCheck(L_6);
  6014. V_3 = (bool)((((int32_t)(((RuntimeArray*)L_6)->max_length)) == ((int32_t)0))? 1 : 0);
  6015. bool L_7 = V_3;
  6016. if (!L_7)
  6017. {
  6018. goto IL_002b;
  6019. }
  6020. }
  6021. {
  6022. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6023. }
  6024. IL_002b:
  6025. {
  6026. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_0;
  6027. V_4 = (bool)((!(((RuntimeObject*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)L_8) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  6028. bool L_9 = V_4;
  6029. if (!L_9)
  6030. {
  6031. goto IL_0042;
  6032. }
  6033. }
  6034. {
  6035. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_10 = ___0_request;
  6036. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_0;
  6037. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* L_12 = (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A*)il2cpp_codegen_object_new(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var);
  6038. NullCheck(L_12);
  6039. UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7(L_12, L_11, NULL);
  6040. NullCheck(L_10);
  6041. UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE(L_10, L_12, NULL);
  6042. }
  6043. IL_0042:
  6044. {
  6045. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_13 = ___1_formData;
  6046. NullCheck(L_13);
  6047. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_14;
  6048. L_14 = WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E(L_13, NULL);
  6049. V_1 = L_14;
  6050. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_15 = V_1;
  6051. NullCheck(L_15);
  6052. Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 L_16;
  6053. L_16 = Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6(L_15, Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var);
  6054. V_5 = L_16;
  6055. }
  6056. {
  6057. auto __finallyBlock = il2cpp::utils::Finally([&]
  6058. {
  6059. FINALLY_007d:
  6060. {// begin finally (depth: 1)
  6061. Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD((&V_5), Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var);
  6062. return;
  6063. }// end finally (depth: 1)
  6064. });
  6065. try
  6066. {// begin try (depth: 1)
  6067. {
  6068. goto IL_0072_1;
  6069. }
  6070. IL_0054_1:
  6071. {
  6072. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_17;
  6073. L_17 = Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_inline((&V_5), Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var);
  6074. V_6 = L_17;
  6075. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_18 = ___0_request;
  6076. String_t* L_19;
  6077. L_19 = KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline((&V_6), KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
  6078. String_t* L_20;
  6079. L_20 = KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline((&V_6), KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
  6080. NullCheck(L_18);
  6081. UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5(L_18, L_19, L_20, NULL);
  6082. }
  6083. IL_0072_1:
  6084. {
  6085. bool L_21;
  6086. L_21 = Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438((&V_5), Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var);
  6087. if (L_21)
  6088. {
  6089. goto IL_0054_1;
  6090. }
  6091. }
  6092. {
  6093. goto IL_008c;
  6094. }
  6095. }// end try (depth: 1)
  6096. catch(Il2CppExceptionWrapper& e)
  6097. {
  6098. __finallyBlock.StoreException(e.ex);
  6099. }
  6100. }
  6101. IL_008c:
  6102. {
  6103. return;
  6104. }
  6105. }
  6106. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String)
  6107. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m1B819655E6FFE468B9DE9D101A17398F3E1A4F27 (String_t* ___0_s, const RuntimeMethod* method)
  6108. {
  6109. String_t* V_0 = NULL;
  6110. {
  6111. String_t* L_0 = ___0_s;
  6112. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
  6113. L_1 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  6114. String_t* L_2;
  6115. L_2 = UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA(L_0, L_1, NULL);
  6116. V_0 = L_2;
  6117. goto IL_000f;
  6118. }
  6119. IL_000f:
  6120. {
  6121. String_t* L_3 = V_0;
  6122. return L_3;
  6123. }
  6124. }
  6125. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding)
  6126. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  6127. {
  6128. static bool s_Il2CppMethodInitialized;
  6129. if (!s_Il2CppMethodInitialized)
  6130. {
  6131. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6132. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  6133. s_Il2CppMethodInitialized = true;
  6134. }
  6135. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6136. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  6137. bool V_2 = false;
  6138. String_t* V_3 = NULL;
  6139. bool V_4 = false;
  6140. bool V_5 = false;
  6141. {
  6142. String_t* L_0 = ___0_s;
  6143. V_2 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6144. bool L_1 = V_2;
  6145. if (!L_1)
  6146. {
  6147. goto IL_000d;
  6148. }
  6149. }
  6150. {
  6151. V_3 = (String_t*)NULL;
  6152. goto IL_004d;
  6153. }
  6154. IL_000d:
  6155. {
  6156. String_t* L_2 = ___0_s;
  6157. bool L_3;
  6158. L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
  6159. V_4 = L_3;
  6160. bool L_4 = V_4;
  6161. if (!L_4)
  6162. {
  6163. goto IL_0026;
  6164. }
  6165. }
  6166. {
  6167. V_3 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  6168. goto IL_004d;
  6169. }
  6170. IL_0026:
  6171. {
  6172. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5 = ___1_e;
  6173. V_5 = (bool)((((RuntimeObject*)(Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6174. bool L_6 = V_5;
  6175. if (!L_6)
  6176. {
  6177. goto IL_0034;
  6178. }
  6179. }
  6180. {
  6181. V_3 = (String_t*)NULL;
  6182. goto IL_004d;
  6183. }
  6184. IL_0034:
  6185. {
  6186. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7 = ___1_e;
  6187. String_t* L_8 = ___0_s;
  6188. NullCheck(L_7);
  6189. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  6190. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_7, L_8);
  6191. V_0 = L_9;
  6192. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_0;
  6193. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6194. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  6195. L_11 = WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0(L_10, NULL);
  6196. V_1 = L_11;
  6197. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12 = ___1_e;
  6198. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = V_1;
  6199. NullCheck(L_12);
  6200. String_t* L_14;
  6201. L_14 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(45 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_12, L_13);
  6202. V_3 = L_14;
  6203. goto IL_004d;
  6204. }
  6205. IL_004d:
  6206. {
  6207. String_t* L_15 = V_3;
  6208. return L_15;
  6209. }
  6210. }
  6211. // System.String UnityEngine.Networking.UnityWebRequest::UnEscapeURL(System.String)
  6212. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_UnEscapeURL_mF32D6DA1A428A932B9A57A48FE5FA86D4B1446BB (String_t* ___0_s, const RuntimeMethod* method)
  6213. {
  6214. String_t* V_0 = NULL;
  6215. {
  6216. String_t* L_0 = ___0_s;
  6217. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
  6218. L_1 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  6219. String_t* L_2;
  6220. L_2 = UnityWebRequest_UnEscapeURL_m7164BC27C48FD57AB777128DD271E56B9EF25DC4(L_0, L_1, NULL);
  6221. V_0 = L_2;
  6222. goto IL_000f;
  6223. }
  6224. IL_000f:
  6225. {
  6226. String_t* L_3 = V_0;
  6227. return L_3;
  6228. }
  6229. }
  6230. // System.String UnityEngine.Networking.UnityWebRequest::UnEscapeURL(System.String,System.Text.Encoding)
  6231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_UnEscapeURL_m7164BC27C48FD57AB777128DD271E56B9EF25DC4 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  6232. {
  6233. static bool s_Il2CppMethodInitialized;
  6234. if (!s_Il2CppMethodInitialized)
  6235. {
  6236. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6237. s_Il2CppMethodInitialized = true;
  6238. }
  6239. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6240. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  6241. bool V_2 = false;
  6242. String_t* V_3 = NULL;
  6243. bool V_4 = false;
  6244. int32_t G_B5_0 = 0;
  6245. {
  6246. String_t* L_0 = ___0_s;
  6247. V_2 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6248. bool L_1 = V_2;
  6249. if (!L_1)
  6250. {
  6251. goto IL_000d;
  6252. }
  6253. }
  6254. {
  6255. V_3 = (String_t*)NULL;
  6256. goto IL_0049;
  6257. }
  6258. IL_000d:
  6259. {
  6260. String_t* L_2 = ___0_s;
  6261. NullCheck(L_2);
  6262. int32_t L_3;
  6263. L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_2, ((int32_t)37), NULL);
  6264. if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
  6265. {
  6266. goto IL_0025;
  6267. }
  6268. }
  6269. {
  6270. String_t* L_4 = ___0_s;
  6271. NullCheck(L_4);
  6272. int32_t L_5;
  6273. L_5 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_4, ((int32_t)43), NULL);
  6274. G_B5_0 = ((((int32_t)L_5) == ((int32_t)(-1)))? 1 : 0);
  6275. goto IL_0026;
  6276. }
  6277. IL_0025:
  6278. {
  6279. G_B5_0 = 0;
  6280. }
  6281. IL_0026:
  6282. {
  6283. V_4 = (bool)G_B5_0;
  6284. bool L_6 = V_4;
  6285. if (!L_6)
  6286. {
  6287. goto IL_0030;
  6288. }
  6289. }
  6290. {
  6291. String_t* L_7 = ___0_s;
  6292. V_3 = L_7;
  6293. goto IL_0049;
  6294. }
  6295. IL_0030:
  6296. {
  6297. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = ___1_e;
  6298. String_t* L_9 = ___0_s;
  6299. NullCheck(L_8);
  6300. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10;
  6301. L_10 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, L_9);
  6302. V_0 = L_10;
  6303. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_0;
  6304. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6305. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12;
  6306. L_12 = WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704(L_11, NULL);
  6307. V_1 = L_12;
  6308. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_13 = ___1_e;
  6309. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_1;
  6310. NullCheck(L_13);
  6311. String_t* L_15;
  6312. L_15 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(45 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_13, L_14);
  6313. V_3 = L_15;
  6314. goto IL_0049;
  6315. }
  6316. IL_0049:
  6317. {
  6318. String_t* L_16 = V_3;
  6319. return L_16;
  6320. }
  6321. }
  6322. #ifdef __clang__
  6323. #pragma clang diagnostic pop
  6324. #endif
  6325. #ifdef __clang__
  6326. #pragma clang diagnostic push
  6327. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6328. #pragma clang diagnostic ignored "-Wunused-variable"
  6329. #endif
  6330. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  6331. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  6332. {
  6333. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  6334. }
  6335. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  6336. {
  6337. intptr_t unmarshaledm_Ptr_temp_0;
  6338. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  6339. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  6340. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  6341. }
  6342. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  6343. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  6344. {
  6345. }
  6346. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  6347. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  6348. {
  6349. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  6350. }
  6351. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  6352. {
  6353. intptr_t unmarshaledm_Ptr_temp_0;
  6354. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  6355. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  6356. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  6357. }
  6358. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  6359. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  6360. {
  6361. }
  6362. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  6363. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6364. {
  6365. typedef void (*DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927_ftn) (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*);
  6366. static DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927_ftn _il2cpp_icall_func;
  6367. if (!_il2cpp_icall_func)
  6368. _il2cpp_icall_func = (DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::Release()");
  6369. _il2cpp_icall_func(__this);
  6370. }
  6371. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  6372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6373. {
  6374. {
  6375. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  6376. return;
  6377. }
  6378. }
  6379. // System.Void UnityEngine.Networking.DownloadHandler::Finalize()
  6380. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_m21F7E76D39E0CBF30890C6A0C8EDBF049AFFBB14 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6381. {
  6382. {
  6383. }
  6384. {
  6385. auto __finallyBlock = il2cpp::utils::Finally([&]
  6386. {
  6387. FINALLY_000b:
  6388. {// begin finally (depth: 1)
  6389. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  6390. return;
  6391. }// end finally (depth: 1)
  6392. });
  6393. try
  6394. {// begin try (depth: 1)
  6395. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::Dispose() */, __this);
  6396. goto IL_0013;
  6397. }// end try (depth: 1)
  6398. catch(Il2CppExceptionWrapper& e)
  6399. {
  6400. __finallyBlock.StoreException(e.ex);
  6401. }
  6402. }
  6403. IL_0013:
  6404. {
  6405. return;
  6406. }
  6407. }
  6408. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  6409. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6410. {
  6411. static bool s_Il2CppMethodInitialized;
  6412. if (!s_Il2CppMethodInitialized)
  6413. {
  6414. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  6415. s_Il2CppMethodInitialized = true;
  6416. }
  6417. bool V_0 = false;
  6418. {
  6419. intptr_t L_0 = __this->___m_Ptr_0;
  6420. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  6421. bool L_2;
  6422. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  6423. V_0 = L_2;
  6424. bool L_3 = V_0;
  6425. if (!L_3)
  6426. {
  6427. goto IL_0029;
  6428. }
  6429. }
  6430. {
  6431. DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927(__this, NULL);
  6432. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  6433. __this->___m_Ptr_0 = L_4;
  6434. }
  6435. IL_0029:
  6436. {
  6437. return;
  6438. }
  6439. }
  6440. // System.String UnityEngine.Networking.DownloadHandler::get_text()
  6441. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_mA6DE5CB2647A21E577B963708DC3D0DA4DBFE7D8 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6442. {
  6443. String_t* V_0 = NULL;
  6444. {
  6445. String_t* L_0;
  6446. L_0 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String UnityEngine.Networking.DownloadHandler::GetText() */, __this);
  6447. V_0 = L_0;
  6448. goto IL_000a;
  6449. }
  6450. IL_000a:
  6451. {
  6452. String_t* L_1 = V_0;
  6453. return L_1;
  6454. }
  6455. }
  6456. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData()
  6457. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_GetNativeData_m884DE3A326286BFE7B26098CD55D6DCD7D146E23 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6458. {
  6459. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  6460. memset((&V_0), 0, sizeof(V_0));
  6461. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
  6462. memset((&V_1), 0, sizeof(V_1));
  6463. {
  6464. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  6465. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = V_0;
  6466. V_1 = L_0;
  6467. goto IL_000d;
  6468. }
  6469. IL_000d:
  6470. {
  6471. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1 = V_1;
  6472. return L_1;
  6473. }
  6474. }
  6475. // System.String UnityEngine.Networking.DownloadHandler::GetText()
  6476. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_m19ABD4540E4BE6A4D4340933E01D5DE687020E85 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6477. {
  6478. static bool s_Il2CppMethodInitialized;
  6479. if (!s_Il2CppMethodInitialized)
  6480. {
  6481. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  6482. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6483. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  6484. s_Il2CppMethodInitialized = true;
  6485. }
  6486. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  6487. memset((&V_0), 0, sizeof(V_0));
  6488. bool V_1 = false;
  6489. String_t* V_2 = NULL;
  6490. int32_t G_B3_0 = 0;
  6491. {
  6492. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0;
  6493. L_0 = VirtualFuncInvoker0< NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF >::Invoke(6 /* Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData() */, __this);
  6494. V_0 = L_0;
  6495. bool L_1;
  6496. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6497. if (!L_1)
  6498. {
  6499. goto IL_001d;
  6500. }
  6501. }
  6502. {
  6503. int32_t L_2;
  6504. L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length_1);
  6505. G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
  6506. goto IL_001e;
  6507. }
  6508. IL_001d:
  6509. {
  6510. G_B3_0 = 0;
  6511. }
  6512. IL_001e:
  6513. {
  6514. V_1 = (bool)G_B3_0;
  6515. bool L_3 = V_1;
  6516. if (!L_3)
  6517. {
  6518. goto IL_003f;
  6519. }
  6520. }
  6521. {
  6522. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  6523. void* L_5;
  6524. L_5 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_4, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  6525. int32_t L_6;
  6526. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length_1);
  6527. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  6528. L_7 = DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5(__this, NULL);
  6529. String_t* L_8;
  6530. L_8 = String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339(NULL, (int8_t*)L_5, 0, L_6, L_7, NULL);
  6531. V_2 = L_8;
  6532. goto IL_0047;
  6533. }
  6534. IL_003f:
  6535. {
  6536. V_2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  6537. goto IL_0047;
  6538. }
  6539. IL_0047:
  6540. {
  6541. String_t* L_9 = V_2;
  6542. return L_9;
  6543. }
  6544. }
  6545. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  6546. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6547. {
  6548. static bool s_Il2CppMethodInitialized;
  6549. if (!s_Il2CppMethodInitialized)
  6550. {
  6551. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
  6552. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571);
  6553. s_Il2CppMethodInitialized = true;
  6554. }
  6555. String_t* V_0 = NULL;
  6556. bool V_1 = false;
  6557. int32_t V_2 = 0;
  6558. bool V_3 = false;
  6559. int32_t V_4 = 0;
  6560. bool V_5 = false;
  6561. String_t* V_6 = NULL;
  6562. int32_t V_7 = 0;
  6563. bool V_8 = false;
  6564. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_9 = NULL;
  6565. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_10 = NULL;
  6566. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* V_11 = NULL;
  6567. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  6568. {
  6569. String_t* L_0;
  6570. L_0 = DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC(__this, NULL);
  6571. V_0 = L_0;
  6572. String_t* L_1 = V_0;
  6573. bool L_2;
  6574. L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL);
  6575. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  6576. bool L_3 = V_1;
  6577. if (!L_3)
  6578. {
  6579. goto IL_00e7;
  6580. }
  6581. }
  6582. {
  6583. String_t* L_4 = V_0;
  6584. NullCheck(L_4);
  6585. int32_t L_5;
  6586. L_5 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_4, _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571, 5, NULL);
  6587. V_2 = L_5;
  6588. int32_t L_6 = V_2;
  6589. V_3 = (bool)((((int32_t)L_6) > ((int32_t)(-1)))? 1 : 0);
  6590. bool L_7 = V_3;
  6591. if (!L_7)
  6592. {
  6593. goto IL_00e6;
  6594. }
  6595. }
  6596. {
  6597. String_t* L_8 = V_0;
  6598. int32_t L_9 = V_2;
  6599. NullCheck(L_8);
  6600. int32_t L_10;
  6601. L_10 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_8, ((int32_t)61), L_9, NULL);
  6602. V_4 = L_10;
  6603. int32_t L_11 = V_4;
  6604. V_5 = (bool)((((int32_t)L_11) > ((int32_t)(-1)))? 1 : 0);
  6605. bool L_12 = V_5;
  6606. if (!L_12)
  6607. {
  6608. goto IL_00e5;
  6609. }
  6610. }
  6611. {
  6612. String_t* L_13 = V_0;
  6613. int32_t L_14 = V_4;
  6614. NullCheck(L_13);
  6615. String_t* L_15;
  6616. L_15 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
  6617. NullCheck(L_15);
  6618. String_t* L_16;
  6619. L_16 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_15, NULL);
  6620. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
  6621. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17;
  6622. NullCheck(L_18);
  6623. (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
  6624. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = L_18;
  6625. NullCheck(L_19);
  6626. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34));
  6627. NullCheck(L_16);
  6628. String_t* L_20;
  6629. L_20 = String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5(L_16, L_19, NULL);
  6630. NullCheck(L_20);
  6631. String_t* L_21;
  6632. L_21 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_20, NULL);
  6633. V_6 = L_21;
  6634. String_t* L_22 = V_6;
  6635. NullCheck(L_22);
  6636. int32_t L_23;
  6637. L_23 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_22, ((int32_t)59), NULL);
  6638. V_7 = L_23;
  6639. int32_t L_24 = V_7;
  6640. V_8 = (bool)((((int32_t)L_24) > ((int32_t)(-1)))? 1 : 0);
  6641. bool L_25 = V_8;
  6642. if (!L_25)
  6643. {
  6644. goto IL_0099;
  6645. }
  6646. }
  6647. {
  6648. String_t* L_26 = V_6;
  6649. int32_t L_27 = V_7;
  6650. NullCheck(L_26);
  6651. String_t* L_28;
  6652. L_28 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_26, 0, L_27, NULL);
  6653. V_6 = L_28;
  6654. }
  6655. IL_0099:
  6656. {
  6657. }
  6658. try
  6659. {// begin try (depth: 1)
  6660. String_t* L_29 = V_6;
  6661. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_30;
  6662. L_30 = Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187(L_29, NULL);
  6663. V_9 = L_30;
  6664. goto IL_00f0;
  6665. }// end try (depth: 1)
  6666. catch(Il2CppExceptionWrapper& e)
  6667. {
  6668. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  6669. {
  6670. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  6671. goto CATCH_00a6;
  6672. }
  6673. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  6674. {
  6675. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  6676. goto CATCH_00c5;
  6677. }
  6678. throw e;
  6679. }
  6680. CATCH_00a6:
  6681. {// begin catch(System.ArgumentException)
  6682. V_10 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));
  6683. String_t* L_31 = V_6;
  6684. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_32 = V_10;
  6685. NullCheck(L_32);
  6686. String_t* L_33;
  6687. L_33 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_32);
  6688. String_t* L_34;
  6689. L_34 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_31, L_33, NULL);
  6690. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  6691. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_34, NULL);
  6692. IL2CPP_POP_ACTIVE_EXCEPTION();
  6693. goto IL_00e4;
  6694. }// end catch (depth: 1)
  6695. CATCH_00c5:
  6696. {// begin catch(System.NotSupportedException)
  6697. V_11 = ((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*));
  6698. String_t* L_35 = V_6;
  6699. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_36 = V_11;
  6700. NullCheck(L_36);
  6701. String_t* L_37;
  6702. L_37 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_36);
  6703. String_t* L_38;
  6704. L_38 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_35, L_37, NULL);
  6705. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  6706. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_38, NULL);
  6707. IL2CPP_POP_ACTIVE_EXCEPTION();
  6708. goto IL_00e4;
  6709. }// end catch (depth: 1)
  6710. IL_00e4:
  6711. {
  6712. }
  6713. IL_00e5:
  6714. {
  6715. }
  6716. IL_00e6:
  6717. {
  6718. }
  6719. IL_00e7:
  6720. {
  6721. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_39;
  6722. L_39 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  6723. V_9 = L_39;
  6724. goto IL_00f0;
  6725. }
  6726. IL_00f0:
  6727. {
  6728. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40 = V_9;
  6729. return L_40;
  6730. }
  6731. }
  6732. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  6733. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6734. {
  6735. typedef String_t* (*DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC_ftn) (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*);
  6736. static DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC_ftn _il2cpp_icall_func;
  6737. if (!_il2cpp_icall_func)
  6738. _il2cpp_icall_func = (DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType()");
  6739. String_t* icallRetVal = _il2cpp_icall_func(__this);
  6740. return icallRetVal;
  6741. }
  6742. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLengthHeader(System.UInt64)
  6743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLengthHeader_m545073C4FB5AB9BB6640D24FC2F32070E5FE3F17 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, uint64_t ___0_contentLength, const RuntimeMethod* method)
  6744. {
  6745. {
  6746. uint64_t L_0 = ___0_contentLength;
  6747. VirtualActionInvoker1< int32_t >::Invoke(9 /* System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32) */, __this, ((int32_t)L_0));
  6748. return;
  6749. }
  6750. }
  6751. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32)
  6752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLength_m058DE0B56C3EBE8ECE3F9570852024EE2A84DE4F (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, int32_t ___0_contentLength, const RuntimeMethod* method)
  6753. {
  6754. {
  6755. return;
  6756. }
  6757. }
  6758. // System.Byte* UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)
  6759. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method)
  6760. {
  6761. typedef uint8_t* (*DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302_ftn) (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*, int32_t*);
  6762. static DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302_ftn _il2cpp_icall_func;
  6763. if (!_il2cpp_icall_func)
  6764. _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)");
  6765. uint8_t* icallRetVal = _il2cpp_icall_func(___0_dh, ___1_length);
  6766. return icallRetVal;
  6767. }
  6768. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::InternalGetNativeArray(UnityEngine.Networking.DownloadHandler,Unity.Collections.NativeArray`1<System.Byte>&)
  6769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method)
  6770. {
  6771. static bool s_Il2CppMethodInitialized;
  6772. if (!s_Il2CppMethodInitialized)
  6773. {
  6774. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6775. s_Il2CppMethodInitialized = true;
  6776. }
  6777. int32_t V_0 = 0;
  6778. uint8_t* V_1 = NULL;
  6779. bool V_2 = false;
  6780. bool V_3 = false;
  6781. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
  6782. memset((&V_4), 0, sizeof(V_4));
  6783. {
  6784. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  6785. uint8_t* L_1;
  6786. L_1 = DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302(L_0, (&V_0), NULL);
  6787. V_1 = L_1;
  6788. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = ___1_nativeArray;
  6789. bool L_3;
  6790. L_3 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_2, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6791. V_2 = L_3;
  6792. bool L_4 = V_2;
  6793. if (!L_4)
  6794. {
  6795. goto IL_0035;
  6796. }
  6797. }
  6798. {
  6799. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_5 = ___1_nativeArray;
  6800. int32_t L_6;
  6801. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_5)->___m_Length_1);
  6802. int32_t L_7 = V_0;
  6803. V_3 = (bool)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0);
  6804. bool L_8 = V_3;
  6805. if (!L_8)
  6806. {
  6807. goto IL_002d;
  6808. }
  6809. }
  6810. {
  6811. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_9 = ___1_nativeArray;
  6812. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_10 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_9);
  6813. V_4 = L_10;
  6814. goto IL_0048;
  6815. }
  6816. IL_002d:
  6817. {
  6818. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_11 = ___1_nativeArray;
  6819. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_11, NULL);
  6820. }
  6821. IL_0035:
  6822. {
  6823. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_12 = ___1_nativeArray;
  6824. uint8_t* L_13 = V_1;
  6825. int32_t L_14 = V_0;
  6826. DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE(L_12, L_13, L_14, NULL);
  6827. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_15 = ___1_nativeArray;
  6828. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_16 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_15);
  6829. V_4 = L_16;
  6830. goto IL_0048;
  6831. }
  6832. IL_0048:
  6833. {
  6834. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_17 = V_4;
  6835. return L_17;
  6836. }
  6837. }
  6838. // System.Void UnityEngine.Networking.DownloadHandler::DisposeNativeArray(Unity.Collections.NativeArray`1<System.Byte>&)
  6839. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method)
  6840. {
  6841. static bool s_Il2CppMethodInitialized;
  6842. if (!s_Il2CppMethodInitialized)
  6843. {
  6844. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6845. s_Il2CppMethodInitialized = true;
  6846. }
  6847. bool V_0 = false;
  6848. {
  6849. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  6850. bool L_1;
  6851. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6852. V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  6853. bool L_2 = V_0;
  6854. if (!L_2)
  6855. {
  6856. goto IL_0010;
  6857. }
  6858. }
  6859. {
  6860. goto IL_0017;
  6861. }
  6862. IL_0010:
  6863. {
  6864. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = ___0_data;
  6865. il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  6866. }
  6867. IL_0017:
  6868. {
  6869. return;
  6870. }
  6871. }
  6872. // System.Void UnityEngine.Networking.DownloadHandler::CreateNativeArrayForNativeData(Unity.Collections.NativeArray`1<System.Byte>&,System.Byte*,System.Int32)
  6873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, uint8_t* ___1_bytes, int32_t ___2_length, const RuntimeMethod* method)
  6874. {
  6875. static bool s_Il2CppMethodInitialized;
  6876. if (!s_Il2CppMethodInitialized)
  6877. {
  6878. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  6879. s_Il2CppMethodInitialized = true;
  6880. }
  6881. {
  6882. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  6883. uint8_t* L_1 = ___1_bytes;
  6884. int32_t L_2 = ___2_length;
  6885. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  6886. L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA((void*)L_1, L_2, 4, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  6887. *(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_0 = L_3;
  6888. return;
  6889. }
  6890. }
  6891. #ifdef __clang__
  6892. #pragma clang diagnostic pop
  6893. #endif
  6894. #ifdef __clang__
  6895. #pragma clang diagnostic push
  6896. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6897. #pragma clang diagnostic ignored "-Wunused-variable"
  6898. #endif
  6899. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  6900. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  6901. {
  6902. marshaled.___m_NativeData_1 = unmarshaled.___m_NativeData_1;
  6903. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  6904. }
  6905. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  6906. {
  6907. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  6908. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  6909. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData_1;
  6910. unmarshaled.___m_NativeData_1 = unmarshaledm_NativeData_temp_0;
  6911. intptr_t unmarshaledm_Ptr_temp_1;
  6912. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  6913. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  6914. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  6915. }
  6916. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  6917. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  6918. {
  6919. }
  6920. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  6921. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  6922. {
  6923. marshaled.___m_NativeData_1 = unmarshaled.___m_NativeData_1;
  6924. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  6925. }
  6926. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  6927. {
  6928. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  6929. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  6930. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData_1;
  6931. unmarshaled.___m_NativeData_1 = unmarshaledm_NativeData_temp_0;
  6932. intptr_t unmarshaledm_Ptr_temp_1;
  6933. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  6934. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  6935. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  6936. }
  6937. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  6938. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  6939. {
  6940. }
  6941. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  6942. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method)
  6943. {
  6944. typedef intptr_t (*DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn) (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*);
  6945. static DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn _il2cpp_icall_func;
  6946. if (!_il2cpp_icall_func)
  6947. _il2cpp_icall_func = (DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)");
  6948. intptr_t icallRetVal = _il2cpp_icall_func(___0_obj);
  6949. return icallRetVal;
  6950. }
  6951. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  6952. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  6953. {
  6954. {
  6955. intptr_t L_0;
  6956. L_0 = DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985(__this, NULL);
  6957. ((DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)__this)->___m_Ptr_0 = L_0;
  6958. return;
  6959. }
  6960. }
  6961. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  6962. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  6963. {
  6964. {
  6965. DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496(__this, NULL);
  6966. DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053(__this, NULL);
  6967. return;
  6968. }
  6969. }
  6970. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandlerBuffer::GetNativeData()
  6971. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandlerBuffer_GetNativeData_m0CA5C7DDC84622499CFED57069526BCDD240C28F (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  6972. {
  6973. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  6974. memset((&V_0), 0, sizeof(V_0));
  6975. {
  6976. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_NativeData_1);
  6977. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
  6978. L_1 = DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89(__this, L_0, NULL);
  6979. V_0 = L_1;
  6980. goto IL_0010;
  6981. }
  6982. IL_0010:
  6983. {
  6984. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2 = V_0;
  6985. return L_2;
  6986. }
  6987. }
  6988. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::Dispose()
  6989. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_Dispose_m5B47B0183194D920B76BDC9001C3FE81A73D9D39 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  6990. {
  6991. {
  6992. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_NativeData_1);
  6993. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_0, NULL);
  6994. DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607(__this, NULL);
  6995. return;
  6996. }
  6997. }
  6998. #ifdef __clang__
  6999. #pragma clang diagnostic pop
  7000. #endif
  7001. #ifdef __clang__
  7002. #pragma clang diagnostic push
  7003. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7004. #pragma clang diagnostic ignored "-Wunused-variable"
  7005. #endif
  7006. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  7007. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  7008. {
  7009. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7010. }
  7011. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  7012. {
  7013. intptr_t unmarshaledm_Ptr_temp_0;
  7014. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7015. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7016. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7017. }
  7018. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  7019. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  7020. {
  7021. }
  7022. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  7023. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  7024. {
  7025. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7026. }
  7027. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  7028. {
  7029. intptr_t unmarshaledm_Ptr_temp_0;
  7030. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7031. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7032. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7033. }
  7034. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  7035. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  7036. {
  7037. }
  7038. // System.Void UnityEngine.Networking.UploadHandler::Release()
  7039. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7040. {
  7041. typedef void (*UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B_ftn) (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*);
  7042. static UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B_ftn _il2cpp_icall_func;
  7043. if (!_il2cpp_icall_func)
  7044. _il2cpp_icall_func = (UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::Release()");
  7045. _il2cpp_icall_func(__this);
  7046. }
  7047. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  7048. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7049. {
  7050. {
  7051. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  7052. return;
  7053. }
  7054. }
  7055. // System.Void UnityEngine.Networking.UploadHandler::Finalize()
  7056. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Finalize_m8769706C9DA361C89C42AEFE2F3F11549AEF4E4A (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7057. {
  7058. {
  7059. }
  7060. {
  7061. auto __finallyBlock = il2cpp::utils::Finally([&]
  7062. {
  7063. FINALLY_000b:
  7064. {// begin finally (depth: 1)
  7065. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  7066. return;
  7067. }// end finally (depth: 1)
  7068. });
  7069. try
  7070. {// begin try (depth: 1)
  7071. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::Dispose() */, __this);
  7072. goto IL_0013;
  7073. }// end try (depth: 1)
  7074. catch(Il2CppExceptionWrapper& e)
  7075. {
  7076. __finallyBlock.StoreException(e.ex);
  7077. }
  7078. }
  7079. IL_0013:
  7080. {
  7081. return;
  7082. }
  7083. }
  7084. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  7085. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7086. {
  7087. static bool s_Il2CppMethodInitialized;
  7088. if (!s_Il2CppMethodInitialized)
  7089. {
  7090. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  7091. s_Il2CppMethodInitialized = true;
  7092. }
  7093. bool V_0 = false;
  7094. {
  7095. intptr_t L_0 = __this->___m_Ptr_0;
  7096. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7097. bool L_2;
  7098. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  7099. V_0 = L_2;
  7100. bool L_3 = V_0;
  7101. if (!L_3)
  7102. {
  7103. goto IL_0029;
  7104. }
  7105. }
  7106. {
  7107. UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B(__this, NULL);
  7108. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7109. __this->___m_Ptr_0 = L_4;
  7110. }
  7111. IL_0029:
  7112. {
  7113. return;
  7114. }
  7115. }
  7116. #ifdef __clang__
  7117. #pragma clang diagnostic pop
  7118. #endif
  7119. #ifdef __clang__
  7120. #pragma clang diagnostic push
  7121. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7122. #pragma clang diagnostic ignored "-Wunused-variable"
  7123. #endif
  7124. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7125. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled)
  7126. {
  7127. marshaled.___m_Payload_1 = unmarshaled.___m_Payload_1;
  7128. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7129. }
  7130. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke_back(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled)
  7131. {
  7132. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Payload_temp_0;
  7133. memset((&unmarshaledm_Payload_temp_0), 0, sizeof(unmarshaledm_Payload_temp_0));
  7134. unmarshaledm_Payload_temp_0 = marshaled.___m_Payload_1;
  7135. unmarshaled.___m_Payload_1 = unmarshaledm_Payload_temp_0;
  7136. intptr_t unmarshaledm_Ptr_temp_1;
  7137. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7138. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  7139. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  7140. }
  7141. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7142. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke_cleanup(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled)
  7143. {
  7144. }
  7145. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7146. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled)
  7147. {
  7148. marshaled.___m_Payload_1 = unmarshaled.___m_Payload_1;
  7149. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7150. }
  7151. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com_back(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled)
  7152. {
  7153. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Payload_temp_0;
  7154. memset((&unmarshaledm_Payload_temp_0), 0, sizeof(unmarshaledm_Payload_temp_0));
  7155. unmarshaledm_Payload_temp_0 = marshaled.___m_Payload_1;
  7156. unmarshaled.___m_Payload_1 = unmarshaledm_Payload_temp_0;
  7157. intptr_t unmarshaledm_Ptr_temp_1;
  7158. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7159. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  7160. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  7161. }
  7162. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7163. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com_cleanup(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled)
  7164. {
  7165. }
  7166. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)
  7167. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* ___0_self, uint8_t* ___1_data, int32_t ___2_dataLength, const RuntimeMethod* method)
  7168. {
  7169. typedef intptr_t (*UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn) (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A*, uint8_t*, int32_t);
  7170. static UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn _il2cpp_icall_func;
  7171. if (!_il2cpp_icall_func)
  7172. _il2cpp_icall_func = (UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)");
  7173. intptr_t icallRetVal = _il2cpp_icall_func(___0_self, ___1_data, ___2_dataLength);
  7174. return icallRetVal;
  7175. }
  7176. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  7177. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method)
  7178. {
  7179. static bool s_Il2CppMethodInitialized;
  7180. if (!s_Il2CppMethodInitialized)
  7181. {
  7182. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var);
  7183. s_Il2CppMethodInitialized = true;
  7184. }
  7185. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  7186. memset((&V_0), 0, sizeof(V_0));
  7187. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B3_0 = NULL;
  7188. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B1_0 = NULL;
  7189. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B2_0 = NULL;
  7190. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF G_B4_0;
  7191. memset((&G_B4_0), 0, sizeof(G_B4_0));
  7192. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B4_1 = NULL;
  7193. {
  7194. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data;
  7195. G_B1_0 = __this;
  7196. if (!L_0)
  7197. {
  7198. G_B3_0 = __this;
  7199. goto IL_0011;
  7200. }
  7201. }
  7202. {
  7203. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_data;
  7204. NullCheck(L_1);
  7205. G_B2_0 = G_B1_0;
  7206. if (!(((RuntimeArray*)L_1)->max_length))
  7207. {
  7208. G_B3_0 = G_B1_0;
  7209. goto IL_0011;
  7210. }
  7211. }
  7212. {
  7213. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_data;
  7214. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  7215. memset((&L_3), 0, sizeof(L_3));
  7216. NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262((&L_3), L_2, 4, /*hidden argument*/NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var);
  7217. G_B4_0 = L_3;
  7218. G_B4_1 = G_B2_0;
  7219. goto IL_001a;
  7220. }
  7221. IL_0011:
  7222. {
  7223. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  7224. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  7225. G_B4_0 = L_4;
  7226. G_B4_1 = G_B3_0;
  7227. }
  7228. IL_001a:
  7229. {
  7230. UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF(G_B4_1, G_B4_0, (bool)1, NULL);
  7231. return;
  7232. }
  7233. }
  7234. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(Unity.Collections.NativeArray`1<System.Byte>,System.Boolean)
  7235. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_data, bool ___1_transferOwnership, const RuntimeMethod* method)
  7236. {
  7237. static bool s_Il2CppMethodInitialized;
  7238. if (!s_Il2CppMethodInitialized)
  7239. {
  7240. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  7241. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7242. s_Il2CppMethodInitialized = true;
  7243. }
  7244. bool V_0 = false;
  7245. bool V_1 = false;
  7246. int32_t G_B3_0 = 0;
  7247. {
  7248. UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA(__this, NULL);
  7249. bool L_0;
  7250. L_0 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&___0_data), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7251. if (!L_0)
  7252. {
  7253. goto IL_001e;
  7254. }
  7255. }
  7256. {
  7257. int32_t L_1;
  7258. L_1 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_data))->___m_Length_1);
  7259. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  7260. goto IL_001f;
  7261. }
  7262. IL_001e:
  7263. {
  7264. G_B3_0 = 1;
  7265. }
  7266. IL_001f:
  7267. {
  7268. V_0 = (bool)G_B3_0;
  7269. bool L_2 = V_0;
  7270. if (!L_2)
  7271. {
  7272. goto IL_0034;
  7273. }
  7274. }
  7275. {
  7276. intptr_t L_3;
  7277. L_3 = UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075(__this, (uint8_t*)((uintptr_t)0), 0, NULL);
  7278. ((UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)__this)->___m_Ptr_0 = L_3;
  7279. goto IL_005b;
  7280. }
  7281. IL_0034:
  7282. {
  7283. bool L_4 = ___1_transferOwnership;
  7284. V_1 = L_4;
  7285. bool L_5 = V_1;
  7286. if (!L_5)
  7287. {
  7288. goto IL_0041;
  7289. }
  7290. }
  7291. {
  7292. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_6 = ___0_data;
  7293. __this->___m_Payload_1 = L_6;
  7294. }
  7295. IL_0041:
  7296. {
  7297. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_7 = ___0_data;
  7298. void* L_8;
  7299. L_8 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_7, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  7300. int32_t L_9;
  7301. L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_data))->___m_Length_1);
  7302. intptr_t L_10;
  7303. L_10 = UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075(__this, (uint8_t*)L_8, L_9, NULL);
  7304. ((UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)__this)->___m_Ptr_0 = L_10;
  7305. }
  7306. IL_005b:
  7307. {
  7308. return;
  7309. }
  7310. }
  7311. // System.Void UnityEngine.Networking.UploadHandlerRaw::Dispose()
  7312. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw_Dispose_m7BC523C04CD5582382B23AF4FC019149DE328A1B (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, const RuntimeMethod* method)
  7313. {
  7314. static bool s_Il2CppMethodInitialized;
  7315. if (!s_Il2CppMethodInitialized)
  7316. {
  7317. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
  7318. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7319. s_Il2CppMethodInitialized = true;
  7320. }
  7321. bool V_0 = false;
  7322. {
  7323. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_Payload_1);
  7324. bool L_1;
  7325. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7326. V_0 = L_1;
  7327. bool L_2 = V_0;
  7328. if (!L_2)
  7329. {
  7330. goto IL_001c;
  7331. }
  7332. }
  7333. {
  7334. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = (&__this->___m_Payload_1);
  7335. NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_3, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
  7336. }
  7337. IL_001c:
  7338. {
  7339. UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109(__this, NULL);
  7340. return;
  7341. }
  7342. }
  7343. #ifdef __clang__
  7344. #pragma clang diagnostic pop
  7345. #endif
  7346. #ifdef __clang__
  7347. #pragma clang diagnostic push
  7348. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7349. #pragma clang diagnostic ignored "-Wunused-variable"
  7350. #endif
  7351. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  7352. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  7353. {
  7354. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7355. }
  7356. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  7357. {
  7358. intptr_t unmarshaledm_Ptr_temp_0;
  7359. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7360. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7361. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7362. }
  7363. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  7364. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  7365. {
  7366. }
  7367. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  7368. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  7369. {
  7370. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7371. }
  7372. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  7373. {
  7374. intptr_t unmarshaledm_Ptr_temp_0;
  7375. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7376. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7377. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7378. }
  7379. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  7380. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  7381. {
  7382. }
  7383. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  7384. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  7385. {
  7386. typedef void (*CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54_ftn) (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804*);
  7387. static CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54_ftn _il2cpp_icall_func;
  7388. if (!_il2cpp_icall_func)
  7389. _il2cpp_icall_func = (CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::Release()");
  7390. _il2cpp_icall_func(__this);
  7391. }
  7392. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[])
  7393. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_m81E194684391CA512FFC7C3A9172B56D6A1E2752 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  7394. {
  7395. bool V_0 = false;
  7396. {
  7397. V_0 = (bool)0;
  7398. goto IL_0005;
  7399. }
  7400. IL_0005:
  7401. {
  7402. bool L_0 = V_0;
  7403. return L_0;
  7404. }
  7405. }
  7406. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificateNative(System.Byte[])
  7407. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_m73467B32D9B40F6897951F71F80CDDA92F5FD785 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  7408. {
  7409. bool V_0 = false;
  7410. {
  7411. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_certificateData;
  7412. bool L_1;
  7413. L_1 = VirtualFuncInvoker1< bool, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4 /* System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) */, __this, L_0);
  7414. V_0 = L_1;
  7415. goto IL_000b;
  7416. }
  7417. IL_000b:
  7418. {
  7419. bool L_2 = V_0;
  7420. return L_2;
  7421. }
  7422. }
  7423. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  7424. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  7425. {
  7426. static bool s_Il2CppMethodInitialized;
  7427. if (!s_Il2CppMethodInitialized)
  7428. {
  7429. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  7430. s_Il2CppMethodInitialized = true;
  7431. }
  7432. bool V_0 = false;
  7433. {
  7434. intptr_t L_0 = __this->___m_Ptr_0;
  7435. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7436. bool L_2;
  7437. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  7438. V_0 = L_2;
  7439. bool L_3 = V_0;
  7440. if (!L_3)
  7441. {
  7442. goto IL_0029;
  7443. }
  7444. }
  7445. {
  7446. CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54(__this, NULL);
  7447. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7448. __this->___m_Ptr_0 = L_4;
  7449. }
  7450. IL_0029:
  7451. {
  7452. return;
  7453. }
  7454. }
  7455. #ifdef __clang__
  7456. #pragma clang diagnostic pop
  7457. #endif
  7458. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
  7459. {
  7460. {
  7461. int32_t L_0 = __this->____stringLength_4;
  7462. return L_0;
  7463. }
  7464. }
  7465. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7466. {
  7467. {
  7468. bool L_0 = ___0_value;
  7469. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = L_0;
  7470. return;
  7471. }
  7472. }
  7473. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7474. {
  7475. {
  7476. bool L_0 = ___0_value;
  7477. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = L_0;
  7478. return;
  7479. }
  7480. }
  7481. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7482. {
  7483. {
  7484. bool L_0 = ___0_value;
  7485. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = L_0;
  7486. return;
  7487. }
  7488. }
  7489. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7490. {
  7491. {
  7492. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  7493. return L_0;
  7494. }
  7495. }
  7496. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7497. {
  7498. {
  7499. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  7500. return L_0;
  7501. }
  7502. }
  7503. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7504. {
  7505. {
  7506. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  7507. return L_0;
  7508. }
  7509. }
  7510. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  7511. {
  7512. {
  7513. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  7514. __this->___U3CwebRequestU3Ek__BackingField_2 = L_0;
  7515. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField_2), (void*)L_0);
  7516. return;
  7517. }
  7518. }
  7519. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
  7520. {
  7521. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
  7522. int32_t V_1 = 0;
  7523. {
  7524. int32_t L_0 = (int32_t)__this->____version_3;
  7525. __this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
  7526. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
  7527. V_0 = L_1;
  7528. int32_t L_2 = (int32_t)__this->____size_2;
  7529. V_1 = L_2;
  7530. int32_t L_3 = V_1;
  7531. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
  7532. NullCheck(L_4);
  7533. if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
  7534. {
  7535. goto IL_0034;
  7536. }
  7537. }
  7538. {
  7539. int32_t L_5 = V_1;
  7540. __this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  7541. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
  7542. int32_t L_7 = V_1;
  7543. RuntimeObject* L_8 = ___0_item;
  7544. NullCheck(L_6);
  7545. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
  7546. return;
  7547. }
  7548. IL_0034:
  7549. {
  7550. RuntimeObject* L_9 = ___0_item;
  7551. (( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  7552. return;
  7553. }
  7554. }
  7555. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
  7556. {
  7557. {
  7558. int32_t L_0 = (int32_t)__this->____size_2;
  7559. return L_0;
  7560. }
  7561. }
  7562. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method)
  7563. {
  7564. {
  7565. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_0 = (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)__this->____current_3;
  7566. return L_0;
  7567. }
  7568. }
  7569. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
  7570. {
  7571. {
  7572. RuntimeObject* L_0 = (RuntimeObject*)__this->___key_0;
  7573. return L_0;
  7574. }
  7575. }
  7576. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
  7577. {
  7578. {
  7579. RuntimeObject* L_0 = (RuntimeObject*)__this->___value_1;
  7580. return L_0;
  7581. }
  7582. }