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 292KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598
  1. #include "pch-cpp.hpp"
  2. struct VirtualActionInvoker0
  3. {
  4. typedef void (*Action)(void*, const RuntimeMethod*);
  5. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  6. {
  7. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  8. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  9. }
  10. };
  11. template <typename T1>
  12. struct VirtualActionInvoker1
  13. {
  14. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  15. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  16. {
  17. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  18. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  19. }
  20. };
  21. template <typename T1, typename T2, typename T3>
  22. struct VirtualActionInvoker3
  23. {
  24. typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
  25. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  26. {
  27. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  28. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  29. }
  30. };
  31. template <typename R>
  32. struct VirtualFuncInvoker0
  33. {
  34. typedef R (*Func)(void*, const RuntimeMethod*);
  35. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  36. {
  37. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  38. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  39. }
  40. };
  41. template <typename R, typename T1>
  42. struct VirtualFuncInvoker1
  43. {
  44. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  45. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  46. {
  47. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  48. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  49. }
  50. };
  51. struct InterfaceActionInvoker0
  52. {
  53. typedef void (*Action)(void*, const RuntimeMethod*);
  54. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  55. {
  56. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  57. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  58. }
  59. };
  60. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
  61. struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
  62. struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
  63. struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
  64. struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
  65. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  66. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  67. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  68. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  69. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  70. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  71. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  72. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C;
  73. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;
  74. struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
  75. struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
  76. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  77. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;
  78. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974;
  79. struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
  80. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
  81. struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
  82. struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
  83. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
  84. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  85. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  86. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2;
  87. struct MethodInfo_t;
  88. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
  89. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
  90. struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
  91. struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
  92. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  93. struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
  94. struct String_t;
  95. struct StringBuilder_t;
  96. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;
  97. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C;
  98. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;
  99. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
  100. struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
  101. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  102. struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
  103. struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
  104. struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
  105. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  106. IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
  107. IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
  108. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  109. IL2CPP_EXTERN_C RuntimeClass* DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var;
  110. IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
  111. IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
  112. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
  113. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  114. IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
  115. IL2CPP_EXTERN_C RuntimeClass* MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var;
  116. IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
  117. IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
  118. IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  119. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_il2cpp_TypeInfo_var;
  120. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var;
  121. IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
  122. IL2CPP_EXTERN_C RuntimeClass* WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var;
  123. IL2CPP_EXTERN_C RuntimeClass* WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var;
  124. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var;
  125. IL2CPP_EXTERN_C String_t* _stringLiteral0202811166757AF262261201E48B89F6244FAE6C;
  126. IL2CPP_EXTERN_C String_t* _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708;
  127. IL2CPP_EXTERN_C String_t* _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05;
  128. IL2CPP_EXTERN_C String_t* _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90;
  129. IL2CPP_EXTERN_C String_t* _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D;
  130. IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E;
  131. IL2CPP_EXTERN_C String_t* _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA;
  132. IL2CPP_EXTERN_C String_t* _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D;
  133. IL2CPP_EXTERN_C String_t* _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317;
  134. IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6;
  135. IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
  136. IL2CPP_EXTERN_C String_t* _stringLiteral507C09453B68D2470A05E9CAF736D11F39257A38;
  137. IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84;
  138. IL2CPP_EXTERN_C String_t* _stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6;
  139. IL2CPP_EXTERN_C String_t* _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571;
  140. IL2CPP_EXTERN_C String_t* _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F;
  141. IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
  142. IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A;
  143. IL2CPP_EXTERN_C String_t* _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710;
  144. IL2CPP_EXTERN_C String_t* _stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E;
  145. IL2CPP_EXTERN_C String_t* _stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E;
  146. IL2CPP_EXTERN_C String_t* _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15;
  147. IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
  148. IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E;
  149. IL2CPP_EXTERN_C String_t* _stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C;
  150. IL2CPP_EXTERN_C String_t* _stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39;
  151. IL2CPP_EXTERN_C String_t* _stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C;
  152. IL2CPP_EXTERN_C String_t* _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E;
  153. IL2CPP_EXTERN_C String_t* _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D;
  154. IL2CPP_EXTERN_C String_t* _stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36;
  155. IL2CPP_EXTERN_C String_t* _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536;
  156. IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
  157. IL2CPP_EXTERN_C String_t* _stringLiteralCFD59FD74BD22E570703A8BC6B77F6081661FEEB;
  158. IL2CPP_EXTERN_C String_t* _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF;
  159. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  160. IL2CPP_EXTERN_C String_t* _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A;
  161. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var;
  162. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var;
  163. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_RuntimeMethod_var;
  164. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var;
  165. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var;
  166. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
  167. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var;
  168. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var;
  169. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var;
  170. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var;
  171. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var;
  172. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var;
  173. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var;
  174. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var;
  175. IL2CPP_EXTERN_C const RuntimeMethod* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var;
  176. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;;
  177. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;
  178. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;;
  179. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;
  180. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;;
  181. struct Delegate_t_marshaled_com;
  182. struct Delegate_t_marshaled_pinvoke;
  183. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;;
  184. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;
  185. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;;
  186. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;
  187. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;;
  188. struct Exception_t_marshaled_com;
  189. struct Exception_t_marshaled_pinvoke;
  190. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;;
  191. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;
  192. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;;
  193. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;
  194. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;;
  195. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;;
  196. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;
  197. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;;
  198. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;
  199. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;;
  200. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  201. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  202. IL2CPP_EXTERN_C_BEGIN
  203. IL2CPP_EXTERN_C_END
  204. #ifdef __clang__
  205. #pragma clang diagnostic push
  206. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  207. #pragma clang diagnostic ignored "-Wunused-variable"
  208. #endif
  209. struct U3CModuleU3E_t42F165DEA2597BD5AB2C914FCF80349ECF878162
  210. {
  211. };
  212. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
  213. {
  214. int32_t ___m_codePage;
  215. CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem;
  216. bool ___m_deserializedFromEverett;
  217. bool ___m_isReadOnly;
  218. EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback;
  219. DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback;
  220. };
  221. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
  222. {
  223. RuntimeObject* ____identity;
  224. };
  225. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
  226. {
  227. Il2CppIUnknown* ____identity;
  228. };
  229. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
  230. {
  231. Il2CppIUnknown* ____identity;
  232. };
  233. struct String_t : public RuntimeObject
  234. {
  235. int32_t ____stringLength;
  236. Il2CppChar ____firstChar;
  237. };
  238. struct StringBuilder_t : public RuntimeObject
  239. {
  240. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars;
  241. StringBuilder_t* ___m_ChunkPrevious;
  242. int32_t ___m_ChunkLength;
  243. int32_t ___m_ChunkOffset;
  244. int32_t ___m_MaxCapacity;
  245. };
  246. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  247. {
  248. };
  249. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  250. {
  251. };
  252. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  253. {
  254. };
  255. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045 : public RuntimeObject
  256. {
  257. };
  258. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B : public RuntimeObject
  259. {
  260. };
  261. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443 : public RuntimeObject
  262. {
  263. };
  264. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
  265. {
  266. };
  267. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  268. {
  269. };
  270. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  271. {
  272. };
  273. struct BindingsMarshaller_t167C4F7F00F3AF5CBC1BC90CDC2A035E02B39F5C : public RuntimeObject
  274. {
  275. };
  276. struct BindingsMarshaller_t5C272BF9AD5616D87959F9BD5767F2FF159E7C83 : public RuntimeObject
  277. {
  278. };
  279. struct BindingsMarshaller_t691BC6DD6926DEDAF7ADF1E3647128657E65747E : public RuntimeObject
  280. {
  281. };
  282. struct BindingsMarshaller_tD0BF40CCE3EC41823960F5FA57E2C728623A5C64 : public RuntimeObject
  283. {
  284. };
  285. struct BindingsMarshaller_t32D0012375DDCE50C6552AA78583C1256BBEC3BA : public RuntimeObject
  286. {
  287. };
  288. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  289. {
  290. bool ___m_value;
  291. };
  292. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  293. {
  294. uint8_t ___m_value;
  295. };
  296. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  297. {
  298. Il2CppChar ___m_value;
  299. };
  300. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  301. {
  302. };
  303. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  304. {
  305. };
  306. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  307. {
  308. };
  309. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  310. {
  311. int32_t ___m_value;
  312. };
  313. struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
  314. {
  315. int64_t ___m_value;
  316. };
  317. struct IntPtr_t
  318. {
  319. void* ___m_value;
  320. };
  321. struct ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E
  322. {
  323. void* ___begin;
  324. int32_t ___length;
  325. };
  326. struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
  327. {
  328. int8_t ___m_value;
  329. };
  330. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  331. {
  332. float ___m_value;
  333. };
  334. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
  335. {
  336. ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask;
  337. SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore;
  338. };
  339. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
  340. {
  341. int64_t ____ticks;
  342. };
  343. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  344. {
  345. uint64_t ___m_value;
  346. };
  347. struct UIntPtr_t
  348. {
  349. void* ____pointer;
  350. };
  351. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  352. {
  353. union
  354. {
  355. struct
  356. {
  357. };
  358. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  359. };
  360. };
  361. struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
  362. {
  363. intptr_t ____value;
  364. };
  365. struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
  366. {
  367. int32_t ___value__;
  368. };
  369. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
  370. {
  371. intptr_t ___m_Ptr;
  372. Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback;
  373. };
  374. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  375. {
  376. intptr_t ___m_Ptr;
  377. Il2CppMethodPointer ___m_completeCallback;
  378. };
  379. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  380. {
  381. intptr_t ___m_Ptr;
  382. Il2CppMethodPointer ___m_completeCallback;
  383. };
  384. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804 : public RuntimeObject
  385. {
  386. intptr_t ___m_Ptr;
  387. };
  388. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke
  389. {
  390. intptr_t ___m_Ptr;
  391. };
  392. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com
  393. {
  394. intptr_t ___m_Ptr;
  395. };
  396. struct Delegate_t : public RuntimeObject
  397. {
  398. intptr_t ___method_ptr;
  399. intptr_t ___invoke_impl;
  400. RuntimeObject* ___m_target;
  401. intptr_t ___method;
  402. intptr_t ___delegate_trampoline;
  403. intptr_t ___extra_arg;
  404. intptr_t ___method_code;
  405. intptr_t ___interp_method;
  406. intptr_t ___interp_invoke_impl;
  407. MethodInfo_t* ___method_info;
  408. MethodInfo_t* ___original_method_info;
  409. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  410. bool ___method_is_virtual;
  411. };
  412. struct Delegate_t_marshaled_pinvoke
  413. {
  414. intptr_t ___method_ptr;
  415. intptr_t ___invoke_impl;
  416. Il2CppIUnknown* ___m_target;
  417. intptr_t ___method;
  418. intptr_t ___delegate_trampoline;
  419. intptr_t ___extra_arg;
  420. intptr_t ___method_code;
  421. intptr_t ___interp_method;
  422. intptr_t ___interp_invoke_impl;
  423. MethodInfo_t* ___method_info;
  424. MethodInfo_t* ___original_method_info;
  425. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  426. int32_t ___method_is_virtual;
  427. };
  428. struct Delegate_t_marshaled_com
  429. {
  430. intptr_t ___method_ptr;
  431. intptr_t ___invoke_impl;
  432. Il2CppIUnknown* ___m_target;
  433. intptr_t ___method;
  434. intptr_t ___delegate_trampoline;
  435. intptr_t ___extra_arg;
  436. intptr_t ___method_code;
  437. intptr_t ___interp_method;
  438. intptr_t ___interp_invoke_impl;
  439. MethodInfo_t* ___method_info;
  440. MethodInfo_t* ___original_method_info;
  441. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  442. int32_t ___method_is_virtual;
  443. };
  444. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB : public RuntimeObject
  445. {
  446. intptr_t ___m_Ptr;
  447. };
  448. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  449. {
  450. intptr_t ___m_Ptr;
  451. };
  452. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  453. {
  454. intptr_t ___m_Ptr;
  455. };
  456. struct Exception_t : public RuntimeObject
  457. {
  458. String_t* ____className;
  459. String_t* ____message;
  460. RuntimeObject* ____data;
  461. Exception_t* ____innerException;
  462. String_t* ____helpURL;
  463. RuntimeObject* ____stackTrace;
  464. String_t* ____stackTraceString;
  465. String_t* ____remoteStackTraceString;
  466. int32_t ____remoteStackIndex;
  467. RuntimeObject* ____dynamicMethods;
  468. int32_t ____HResult;
  469. String_t* ____source;
  470. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  471. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  472. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  473. int32_t ___caught_in_unmanaged;
  474. };
  475. struct Exception_t_marshaled_pinvoke
  476. {
  477. char* ____className;
  478. char* ____message;
  479. RuntimeObject* ____data;
  480. Exception_t_marshaled_pinvoke* ____innerException;
  481. char* ____helpURL;
  482. Il2CppIUnknown* ____stackTrace;
  483. char* ____stackTraceString;
  484. char* ____remoteStackTraceString;
  485. int32_t ____remoteStackIndex;
  486. Il2CppIUnknown* ____dynamicMethods;
  487. int32_t ____HResult;
  488. char* ____source;
  489. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  490. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  491. Il2CppSafeArray* ___native_trace_ips;
  492. int32_t ___caught_in_unmanaged;
  493. };
  494. struct Exception_t_marshaled_com
  495. {
  496. Il2CppChar* ____className;
  497. Il2CppChar* ____message;
  498. RuntimeObject* ____data;
  499. Exception_t_marshaled_com* ____innerException;
  500. Il2CppChar* ____helpURL;
  501. Il2CppIUnknown* ____stackTrace;
  502. Il2CppChar* ____stackTraceString;
  503. Il2CppChar* ____remoteStackTraceString;
  504. int32_t ____remoteStackIndex;
  505. Il2CppIUnknown* ____dynamicMethods;
  506. int32_t ____HResult;
  507. Il2CppChar* ____source;
  508. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  509. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  510. Il2CppSafeArray* ___native_trace_ips;
  511. int32_t ___caught_in_unmanaged;
  512. };
  513. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
  514. {
  515. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer;
  516. int32_t ____origin;
  517. int32_t ____position;
  518. int32_t ____length;
  519. int32_t ____capacity;
  520. bool ____expandable;
  521. bool ____writable;
  522. bool ____exposable;
  523. bool ____isOpen;
  524. Task_1_t4C228DE57804012969575431CFF12D57C875552D* ____lastReadTask;
  525. };
  526. struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
  527. {
  528. int32_t ___value__;
  529. };
  530. struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
  531. {
  532. int32_t ___value__;
  533. };
  534. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6 : public RuntimeObject
  535. {
  536. intptr_t ___m_Ptr;
  537. };
  538. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  539. {
  540. intptr_t ___m_Ptr;
  541. };
  542. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  543. {
  544. intptr_t ___m_Ptr;
  545. };
  546. struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
  547. {
  548. int32_t ___value__;
  549. };
  550. struct UriKind_t6597BD6BF48C695D63244DF8541B5EA48FF7F9E7
  551. {
  552. int32_t ___value__;
  553. };
  554. struct Result_tFB98154F15BF37A66902802D441FEFADC68D4C87
  555. {
  556. int32_t ___value__;
  557. };
  558. struct UnityWebRequestError_t7CF32767F0B965DF6DF5FA7A6E2E59A7C662A1E5
  559. {
  560. int32_t ___value__;
  561. };
  562. struct UnityWebRequestMethod_tF87F2372BD1188EDFA1122DC4A809B345440778D
  563. {
  564. int32_t ___value__;
  565. };
  566. struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
  567. {
  568. uint64_t ___value__;
  569. };
  570. struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
  571. {
  572. void* ___m_Buffer;
  573. int32_t ___m_Length;
  574. int32_t ___m_AllocatorLabel;
  575. };
  576. struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
  577. {
  578. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer;
  579. int32_t ____length;
  580. };
  581. struct MulticastDelegate_t : public Delegate_t
  582. {
  583. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  584. };
  585. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  586. {
  587. Delegate_t_marshaled_pinvoke** ___delegates;
  588. };
  589. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  590. {
  591. Delegate_t_marshaled_com** ___delegates;
  592. };
  593. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
  594. {
  595. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout;
  596. String_t* ___pattern;
  597. int32_t ___roptions;
  598. RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory;
  599. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps;
  600. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames;
  601. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist;
  602. int32_t ___capsize;
  603. ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref;
  604. WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref;
  605. RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code;
  606. bool ____refsInitialized;
  607. };
  608. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  609. {
  610. };
  611. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F : public RuntimeObject
  612. {
  613. intptr_t ___m_Ptr;
  614. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___m_DownloadHandler;
  615. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___m_UploadHandler;
  616. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___m_CertificateHandler;
  617. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri;
  618. bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  619. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  620. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  621. };
  622. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke
  623. {
  624. intptr_t ___m_Ptr;
  625. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke ___m_DownloadHandler;
  626. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke ___m_UploadHandler;
  627. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke ___m_CertificateHandler;
  628. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri;
  629. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  630. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  631. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  632. };
  633. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com
  634. {
  635. intptr_t ___m_Ptr;
  636. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com* ___m_DownloadHandler;
  637. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com* ___m_UploadHandler;
  638. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com* ___m_CertificateHandler;
  639. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri;
  640. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  641. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  642. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  643. };
  644. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C
  645. {
  646. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___U3CwebRequestU3Ek__BackingField;
  647. };
  648. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke
  649. {
  650. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField;
  651. };
  652. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com
  653. {
  654. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com* ___U3CwebRequestU3Ek__BackingField;
  655. };
  656. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
  657. {
  658. String_t* ___m_String;
  659. String_t* ___m_originalUnicodeString;
  660. UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax;
  661. String_t* ___m_DnsSafeHost;
  662. uint64_t ___m_Flags;
  663. UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info;
  664. bool ___m_iriParsing;
  665. };
  666. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB : public MulticastDelegate_t
  667. {
  668. };
  669. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  670. {
  671. String_t* ____paramName;
  672. };
  673. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974 : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB
  674. {
  675. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData;
  676. };
  677. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  678. {
  679. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData;
  680. };
  681. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  682. {
  683. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData;
  684. };
  685. struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  686. {
  687. };
  688. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  689. {
  690. };
  691. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  692. {
  693. };
  694. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
  695. {
  696. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding;
  697. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding;
  698. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode;
  699. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding;
  700. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding;
  701. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding;
  702. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding;
  703. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding;
  704. Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings;
  705. RuntimeObject* ___s_InternalSyncObject;
  706. };
  707. struct String_t_StaticFields
  708. {
  709. String_t* ___Empty;
  710. };
  711. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields
  712. {
  713. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dDash;
  714. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___crlf;
  715. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___contentTypeHeader;
  716. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dispositionHeader;
  717. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___endQuote;
  718. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___fileNameField;
  719. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ampersand;
  720. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___equal;
  721. };
  722. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields
  723. {
  724. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ucHexChars;
  725. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lcHexChars;
  726. uint8_t ___urlEscapeChar;
  727. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlSpace;
  728. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dataSpace;
  729. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlForbidden;
  730. uint8_t ___qpEscapeChar;
  731. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpSpace;
  732. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpForbidden;
  733. };
  734. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields
  735. {
  736. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___domainRegex;
  737. };
  738. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  739. {
  740. String_t* ___TrueString;
  741. String_t* ___FalseString;
  742. };
  743. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  744. {
  745. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
  746. };
  747. struct IntPtr_t_StaticFields
  748. {
  749. intptr_t ___Zero;
  750. };
  751. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
  752. {
  753. Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null;
  754. };
  755. struct UIntPtr_t_StaticFields
  756. {
  757. uintptr_t ___Zero;
  758. };
  759. struct Exception_t_StaticFields
  760. {
  761. RuntimeObject* ___s_EDILock;
  762. };
  763. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
  764. {
  765. int32_t ___s_cacheSize;
  766. Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache;
  767. int32_t ___s_cacheCount;
  768. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst;
  769. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast;
  770. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout;
  771. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout;
  772. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout;
  773. };
  774. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
  775. {
  776. String_t* ___UriSchemeFile;
  777. String_t* ___UriSchemeFtp;
  778. String_t* ___UriSchemeGopher;
  779. String_t* ___UriSchemeHttp;
  780. String_t* ___UriSchemeHttps;
  781. String_t* ___UriSchemeWs;
  782. String_t* ___UriSchemeWss;
  783. String_t* ___UriSchemeMailto;
  784. String_t* ___UriSchemeNews;
  785. String_t* ___UriSchemeNntp;
  786. String_t* ___UriSchemeNetTcp;
  787. String_t* ___UriSchemeNetPipe;
  788. String_t* ___SchemeDelimiter;
  789. bool ___s_ConfigInitialized;
  790. bool ___s_ConfigInitializing;
  791. int32_t ___s_IdnScope;
  792. bool ___s_IriParsing;
  793. bool ___useDotNetRelativeOrAbsolute;
  794. bool ___IsWindowsFileSystem;
  795. RuntimeObject* ___s_initLock;
  796. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars;
  797. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars;
  798. };
  799. #ifdef __clang__
  800. #pragma clang diagnostic pop
  801. #endif
  802. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  803. {
  804. ALIGN_FIELD (8) uint8_t m_Items[1];
  805. inline uint8_t GetAt(il2cpp_array_size_t index) const
  806. {
  807. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  808. return m_Items[index];
  809. }
  810. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  811. {
  812. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  813. return m_Items + index;
  814. }
  815. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  816. {
  817. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  818. m_Items[index] = value;
  819. }
  820. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  821. {
  822. return m_Items[index];
  823. }
  824. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  825. {
  826. return m_Items + index;
  827. }
  828. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  829. {
  830. m_Items[index] = value;
  831. }
  832. };
  833. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
  834. {
  835. ALIGN_FIELD (8) Il2CppChar m_Items[1];
  836. inline Il2CppChar GetAt(il2cpp_array_size_t index) const
  837. {
  838. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  839. return m_Items[index];
  840. }
  841. inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
  842. {
  843. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  844. return m_Items + index;
  845. }
  846. inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
  847. {
  848. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  849. m_Items[index] = value;
  850. }
  851. inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
  852. {
  853. return m_Items[index];
  854. }
  855. inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
  856. {
  857. return m_Items + index;
  858. }
  859. inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
  860. {
  861. m_Items[index] = value;
  862. }
  863. };
  864. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  865. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  866. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  867. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  868. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  869. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  870. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  871. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  872. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  873. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  874. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  875. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  876. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  877. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  878. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  879. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  880. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  881. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  882. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  883. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  884. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  885. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  886. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  887. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  888. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  889. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method) ;
  890. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  891. 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) ;
  892. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
  893. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
  894. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
  895. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  896. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, int32_t ___1_uriKind, const RuntimeMethod* method) ;
  897. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  898. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  899. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_relativeUri, const RuntimeMethod* method) ;
  900. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
  901. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, const RuntimeMethod* method) ;
  902. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, String_t* ___1_relativeUri, const RuntimeMethod* method) ;
  903. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_uri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_uri2, const RuntimeMethod* method) ;
  904. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_input, const RuntimeMethod* method) ;
  905. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  906. 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) ;
  907. 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) ;
  908. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  909. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  910. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  911. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  912. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  913. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_mC67F1B9E92187E2BB125A560160DA30A5BA703F2 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  914. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  915. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
  916. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method) ;
  917. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
  918. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619 (StringBuilder_t* __this, String_t* ___0_value, int32_t ___1_capacity, const RuntimeMethod* method) ;
  919. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  920. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  921. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ;
  923. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  924. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  925. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9 (const RuntimeMethod* method) ;
  926. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  927. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_pattern, const RuntimeMethod* method) ;
  928. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65 (const RuntimeMethod* method) ;
  929. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method) ;
  930. 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) ;
  931. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8 (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  932. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method) ;
  933. 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) ;
  934. 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) ;
  935. 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) ;
  936. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method) ;
  937. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD_inline (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___0_handler, const RuntimeMethod* method) ;
  938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  939. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  940. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  941. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_mA6FB8BD8311B029689E2A7FC86E06475FF60010D (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  942. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_handler, const RuntimeMethod* method) ;
  943. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  944. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  945. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  946. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_m286AFAC5F442211CA34E6E3BEAB79CD585EC9DF2 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  947. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_InternalGetByteArray_m27F42C529228C204142EEF609AD8E96E7FC38CF6 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method) ;
  948. inline bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  949. {
  950. return (( bool (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline)(__this, method);
  951. }
  952. inline void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method)
  953. {
  954. return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared)(___0_nativeArray, method);
  955. }
  956. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  957. 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) ;
  958. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  959. 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) ;
  960. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ;
  961. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
  962. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method) ;
  963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  964. 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) ;
  965. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187 (String_t* ___0_name, const RuntimeMethod* method) ;
  966. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
  967. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
  968. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E ___0_managedSpan, const RuntimeMethod* method) ;
  969. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  970. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E (intptr_t ___0_dh, int32_t* ___1_length, const RuntimeMethod* method) ;
  971. inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  972. {
  973. return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_gshared)(__this, method);
  974. }
  975. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method) ;
  976. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method) ;
  977. 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) ;
  978. inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
  979. {
  980. return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
  981. }
  982. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method) ;
  983. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  984. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  985. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method) ;
  986. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  987. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_m7D2C724BC0CC2C320E5A9357418BB639E5F74475 (AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
  988. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m4F125AF4AF1E13484E55EAA64570FA3967117F64 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
  989. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6 (int32_t ___0_err, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  990. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7 (int64_t ___0_responseCode, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  991. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_unityWebRequest, const RuntimeMethod* method) ;
  992. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  993. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  994. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  995. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  996. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  997. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  998. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method) ;
  999. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1000. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1001. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1002. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method) ;
  1003. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method) ;
  1004. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1005. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1006. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1007. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1008. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1009. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1010. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1011. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1012. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1013. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1014. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1015. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* BindingsMarshaller_ConvertToManaged_m46517862C68703D5EBFDF6A2B6C7B10BE0AE54C8 (intptr_t ___0_ptr, const RuntimeMethod* method) ;
  1016. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1017. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method) ;
  1018. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1019. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF (intptr_t ___0__unity_self, int32_t ___1_methodType, const RuntimeMethod* method) ;
  1020. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1021. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1022. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1023. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method) ;
  1024. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline (String_t* ___0_s, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_managedSpanWrapper, const RuntimeMethod* method) ;
  1025. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) ;
  1026. inline Il2CppChar* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  1027. {
  1028. return (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_gshared)(__this, method);
  1029. }
  1030. inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  1031. {
  1032. return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method);
  1033. }
  1034. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* __this, void* ___0_begin, int32_t ___1_length, const RuntimeMethod* method) ;
  1035. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_customMethodName, const RuntimeMethod* method) ;
  1036. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1037. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1038. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49 (String_t* __this, const RuntimeMethod* method) ;
  1039. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1040. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1041. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1042. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1043. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1044. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method) ;
  1045. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1046. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1047. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method) ;
  1048. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1049. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetUrl_Injected_mA10B80D5672B19B7263A12FFCFF3B44089D71E99 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  1050. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_url, const RuntimeMethod* method) ;
  1051. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1052. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1053. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_Injected_m3FFE84FED0F35B716CC2098E60965B1425CADB4A (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1054. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1055. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1056. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_Injected_m88BB7574897BF33F2CCF72106B2D27EA336EA4A4 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1057. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1058. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_m3079B53A1CAFD8D5B334C635761E7B7E10B14123 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1059. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1060. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uploadHandler, const RuntimeMethod* method) ;
  1061. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF (intptr_t ___0__unity_self, intptr_t ___1_uh, const RuntimeMethod* method) ;
  1062. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method) ;
  1063. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77 (intptr_t ___0__unity_self, intptr_t ___1_dh, const RuntimeMethod* method) ;
  1064. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method) ;
  1065. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_Injected_m10DE64C499A982AB96EE816B8A0F8D7A0FEAD066 (intptr_t ___0__unity_self, int32_t ___1_timeout, const RuntimeMethod* method) ;
  1066. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
  1067. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_timeout, const RuntimeMethod* method) ;
  1068. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1069. 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) ;
  1070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method) ;
  1071. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1072. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1073. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1074. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_m3CA892EE57ADFDEF86A3CD9AC35EF50848C178D3 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1075. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t UIntPtr_op_Explicit_mF1E7911DD5AC13B5E59EE8C7903469D12A3861E8 (uint64_t ___0_value, const RuntimeMethod* method) ;
  1076. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UIntPtr_op_Explicit_m42C3EA82465934F505B4274A7CE320550A48B7B9 (uintptr_t ___0_value, const RuntimeMethod* method) ;
  1077. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
  1078. inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
  1079. {
  1080. (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method);
  1081. }
  1082. #ifdef __clang__
  1083. #pragma clang diagnostic push
  1084. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1085. #pragma clang diagnostic ignored "-Wunused-variable"
  1086. #endif
  1087. #ifdef __clang__
  1088. #pragma clang diagnostic pop
  1089. #endif
  1090. #ifdef __clang__
  1091. #pragma clang diagnostic push
  1092. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1093. #pragma clang diagnostic ignored "-Wunused-variable"
  1094. #endif
  1095. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m63855E63B6B6EAFD4BCE65395BB744AAF5BD6AB4 (String_t* ___0_baseUri, String_t* ___1_redirectUri, const RuntimeMethod* method)
  1096. {
  1097. static bool s_Il2CppMethodInitialized;
  1098. if (!s_Il2CppMethodInitialized)
  1099. {
  1100. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1101. s_Il2CppMethodInitialized = true;
  1102. }
  1103. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL;
  1104. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1105. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1106. bool V_3 = false;
  1107. bool V_4 = false;
  1108. String_t* V_5 = NULL;
  1109. {
  1110. String_t* L_0 = ___1_redirectUri;
  1111. NullCheck(L_0);
  1112. Il2CppChar L_1;
  1113. L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL);
  1114. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  1115. bool L_2 = V_3;
  1116. if (!L_2)
  1117. {
  1118. goto IL_001a;
  1119. }
  1120. }
  1121. {
  1122. String_t* L_3 = ___1_redirectUri;
  1123. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1124. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_4, L_3, 2, NULL);
  1125. V_0 = L_4;
  1126. goto IL_0022;
  1127. }
  1128. IL_001a:
  1129. {
  1130. String_t* L_5 = ___1_redirectUri;
  1131. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1132. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_6, L_5, 0, NULL);
  1133. V_0 = L_6;
  1134. }
  1135. IL_0022:
  1136. {
  1137. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7 = V_0;
  1138. NullCheck(L_7);
  1139. bool L_8;
  1140. L_8 = Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF(L_7, NULL);
  1141. V_4 = L_8;
  1142. bool L_9 = V_4;
  1143. if (!L_9)
  1144. {
  1145. goto IL_0038;
  1146. }
  1147. }
  1148. {
  1149. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = V_0;
  1150. NullCheck(L_10);
  1151. String_t* L_11;
  1152. L_11 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_10, NULL);
  1153. V_5 = L_11;
  1154. goto IL_0052;
  1155. }
  1156. IL_0038:
  1157. {
  1158. String_t* L_12 = ___0_baseUri;
  1159. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1160. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_13, L_12, 1, NULL);
  1161. V_1 = L_13;
  1162. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_14 = V_1;
  1163. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15 = V_0;
  1164. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1165. Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F(L_16, L_14, L_15, NULL);
  1166. V_2 = L_16;
  1167. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_2;
  1168. NullCheck(L_17);
  1169. String_t* L_18;
  1170. L_18 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_17, NULL);
  1171. V_5 = L_18;
  1172. goto IL_0052;
  1173. }
  1174. IL_0052:
  1175. {
  1176. String_t* L_19 = V_5;
  1177. return L_19;
  1178. }
  1179. }
  1180. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method)
  1181. {
  1182. static bool s_Il2CppMethodInitialized;
  1183. if (!s_Il2CppMethodInitialized)
  1184. {
  1185. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1186. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1187. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A);
  1188. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  1189. s_Il2CppMethodInitialized = true;
  1190. }
  1191. bool V_0 = false;
  1192. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1193. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1194. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_3 = NULL;
  1195. bool V_4 = false;
  1196. String_t* V_5 = NULL;
  1197. bool V_6 = false;
  1198. bool V_7 = false;
  1199. bool V_8 = false;
  1200. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_9 = NULL;
  1201. bool V_10 = false;
  1202. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  1203. int32_t G_B7_0 = 0;
  1204. int32_t G_B13_0 = 0;
  1205. {
  1206. String_t* L_0 = ___0_targetUrl;
  1207. bool L_1;
  1208. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  1209. V_4 = L_1;
  1210. bool L_2 = V_4;
  1211. if (!L_2)
  1212. {
  1213. goto IL_0019;
  1214. }
  1215. }
  1216. {
  1217. V_5 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  1218. goto IL_00d6;
  1219. }
  1220. IL_0019:
  1221. {
  1222. V_0 = (bool)0;
  1223. String_t* L_3 = ___1_localUrl;
  1224. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1225. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_4, L_3, NULL);
  1226. V_1 = L_4;
  1227. V_2 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL;
  1228. String_t* L_5 = ___0_targetUrl;
  1229. NullCheck(L_5);
  1230. Il2CppChar L_6;
  1231. L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
  1232. V_6 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
  1233. bool L_7 = V_6;
  1234. if (!L_7)
  1235. {
  1236. goto IL_0041;
  1237. }
  1238. }
  1239. {
  1240. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_1;
  1241. String_t* L_9 = ___0_targetUrl;
  1242. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1243. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_10, L_8, L_9, NULL);
  1244. V_2 = L_10;
  1245. V_0 = (bool)1;
  1246. }
  1247. IL_0041:
  1248. {
  1249. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11 = V_2;
  1250. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1251. bool L_12;
  1252. L_12 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_11, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  1253. if (!L_12)
  1254. {
  1255. goto IL_0057;
  1256. }
  1257. }
  1258. {
  1259. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1260. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_13 = ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex;
  1261. String_t* L_14 = ___0_targetUrl;
  1262. NullCheck(L_13);
  1263. bool L_15;
  1264. L_15 = Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49(L_13, L_14, NULL);
  1265. G_B7_0 = ((int32_t)(L_15));
  1266. goto IL_0058;
  1267. }
  1268. IL_0057:
  1269. {
  1270. G_B7_0 = 0;
  1271. }
  1272. IL_0058:
  1273. {
  1274. V_7 = (bool)G_B7_0;
  1275. bool L_16 = V_7;
  1276. if (!L_16)
  1277. {
  1278. goto IL_0075;
  1279. }
  1280. }
  1281. {
  1282. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_1;
  1283. NullCheck(L_17);
  1284. String_t* L_18;
  1285. L_18 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_17, NULL);
  1286. String_t* L_19 = ___0_targetUrl;
  1287. String_t* L_20;
  1288. L_20 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_18, _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A, L_19, NULL);
  1289. ___0_targetUrl = L_20;
  1290. V_0 = (bool)1;
  1291. }
  1292. IL_0075:
  1293. {
  1294. V_3 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)NULL;
  1295. }
  1296. try
  1297. {
  1298. {
  1299. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = V_2;
  1300. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1301. bool L_22;
  1302. L_22 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_21, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  1303. if (!L_22)
  1304. {
  1305. goto IL_0091_1;
  1306. }
  1307. }
  1308. {
  1309. String_t* L_23 = ___0_targetUrl;
  1310. NullCheck(L_23);
  1311. Il2CppChar L_24;
  1312. L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, 0, NULL);
  1313. G_B13_0 = ((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)46)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1314. goto IL_0092_1;
  1315. }
  1316. IL_0091_1:
  1317. {
  1318. G_B13_0 = 0;
  1319. }
  1320. IL_0092_1:
  1321. {
  1322. V_8 = (bool)G_B13_0;
  1323. bool L_25 = V_8;
  1324. if (!L_25)
  1325. {
  1326. goto IL_009f_1;
  1327. }
  1328. }
  1329. {
  1330. String_t* L_26 = ___0_targetUrl;
  1331. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_27 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1332. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_27, L_26, NULL);
  1333. V_2 = L_27;
  1334. }
  1335. IL_009f_1:
  1336. {
  1337. goto IL_00ab;
  1338. }
  1339. }
  1340. catch(Il2CppExceptionWrapper& e)
  1341. {
  1342. 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)))
  1343. {
  1344. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1345. goto CATCH_00a2;
  1346. }
  1347. throw e;
  1348. }
  1349. CATCH_00a2:
  1350. {
  1351. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_28 = ((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*));;
  1352. V_9 = L_28;
  1353. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_29 = V_9;
  1354. V_3 = L_29;
  1355. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  1356. goto IL_00ab;
  1357. }
  1358. IL_00ab:
  1359. {
  1360. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_30 = V_2;
  1361. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1362. bool L_31;
  1363. L_31 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_30, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  1364. V_10 = L_31;
  1365. bool L_32 = V_10;
  1366. if (!L_32)
  1367. {
  1368. goto IL_00ca;
  1369. }
  1370. }
  1371. try
  1372. {
  1373. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_33 = V_1;
  1374. String_t* L_34 = ___0_targetUrl;
  1375. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_35 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1376. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_35, L_33, L_34, NULL);
  1377. V_2 = L_35;
  1378. V_0 = (bool)1;
  1379. goto IL_00ca;
  1380. }
  1381. catch(Il2CppExceptionWrapper& e)
  1382. {
  1383. 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)))
  1384. {
  1385. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1386. goto CATCH_00c6;
  1387. }
  1388. throw e;
  1389. }
  1390. CATCH_00c6:
  1391. {
  1392. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_36 = ((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*));;
  1393. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_37 = V_3;
  1394. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  1395. IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var)));
  1396. }
  1397. IL_00ca:
  1398. {
  1399. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_38 = V_2;
  1400. String_t* L_39 = ___0_targetUrl;
  1401. bool L_40 = V_0;
  1402. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1403. String_t* L_41;
  1404. L_41 = WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837(L_38, L_39, L_40, NULL);
  1405. V_5 = L_41;
  1406. goto IL_00d6;
  1407. }
  1408. IL_00d6:
  1409. {
  1410. String_t* L_42 = V_5;
  1411. return L_42;
  1412. }
  1413. }
  1414. 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)
  1415. {
  1416. static bool s_Il2CppMethodInitialized;
  1417. if (!s_Il2CppMethodInitialized)
  1418. {
  1419. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
  1420. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1421. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA);
  1422. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D);
  1423. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710);
  1424. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
  1425. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E);
  1426. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A);
  1427. s_Il2CppMethodInitialized = true;
  1428. }
  1429. String_t* V_0 = NULL;
  1430. bool V_1 = false;
  1431. String_t* V_2 = NULL;
  1432. bool V_3 = false;
  1433. String_t* V_4 = NULL;
  1434. bool V_5 = false;
  1435. bool V_6 = false;
  1436. String_t* V_7 = NULL;
  1437. bool V_8 = false;
  1438. bool V_9 = false;
  1439. bool V_10 = false;
  1440. StringBuilder_t* V_11 = NULL;
  1441. bool V_12 = false;
  1442. String_t* V_13 = NULL;
  1443. bool V_14 = false;
  1444. bool V_15 = false;
  1445. bool V_16 = false;
  1446. int32_t G_B12_0 = 0;
  1447. int32_t G_B19_0 = 0;
  1448. int32_t G_B27_0 = 0;
  1449. {
  1450. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___0_targetUri;
  1451. NullCheck(L_0);
  1452. bool L_1;
  1453. L_1 = Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F(L_0, NULL);
  1454. V_1 = L_1;
  1455. bool L_2 = V_1;
  1456. if (!L_2)
  1457. {
  1458. goto IL_00c9;
  1459. }
  1460. }
  1461. {
  1462. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___0_targetUri;
  1463. NullCheck(L_3);
  1464. bool L_4;
  1465. L_4 = Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A(L_3, NULL);
  1466. V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  1467. bool L_5 = V_3;
  1468. if (!L_5)
  1469. {
  1470. goto IL_0029;
  1471. }
  1472. }
  1473. {
  1474. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = ___0_targetUri;
  1475. NullCheck(L_6);
  1476. String_t* L_7;
  1477. L_7 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_6, NULL);
  1478. V_4 = L_7;
  1479. goto IL_0207;
  1480. }
  1481. IL_0029:
  1482. {
  1483. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = ___0_targetUri;
  1484. NullCheck(L_8);
  1485. String_t* L_9;
  1486. L_9 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_8, NULL);
  1487. V_2 = L_9;
  1488. String_t* L_10 = V_2;
  1489. NullCheck(L_10);
  1490. bool L_11;
  1491. L_11 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_10, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  1492. V_5 = L_11;
  1493. bool L_12 = V_5;
  1494. if (!L_12)
  1495. {
  1496. goto IL_008b;
  1497. }
  1498. }
  1499. {
  1500. String_t* L_13 = V_2;
  1501. NullCheck(L_13);
  1502. bool L_14;
  1503. L_14 = String_Contains_mC67F1B9E92187E2BB125A560160DA30A5BA703F2(L_13, ((int32_t)43), NULL);
  1504. V_6 = L_14;
  1505. bool L_15 = V_6;
  1506. if (!L_15)
  1507. {
  1508. goto IL_0083;
  1509. }
  1510. }
  1511. {
  1512. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = ___0_targetUri;
  1513. NullCheck(L_16);
  1514. String_t* L_17;
  1515. L_17 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_16, NULL);
  1516. V_7 = L_17;
  1517. String_t* L_18 = V_7;
  1518. NullCheck(L_18);
  1519. bool L_19;
  1520. L_19 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_18, _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E, NULL);
  1521. V_8 = (bool)((((int32_t)L_19) == ((int32_t)0))? 1 : 0);
  1522. bool L_20 = V_8;
  1523. if (!L_20)
  1524. {
  1525. goto IL_0082;
  1526. }
  1527. }
  1528. {
  1529. String_t* L_21 = V_7;
  1530. String_t* L_22;
  1531. L_22 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_21, NULL);
  1532. V_4 = L_22;
  1533. goto IL_0207;
  1534. }
  1535. IL_0082:
  1536. {
  1537. }
  1538. IL_0083:
  1539. {
  1540. String_t* L_23 = V_2;
  1541. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1542. String_t* L_24;
  1543. L_24 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_23, NULL);
  1544. V_2 = L_24;
  1545. }
  1546. IL_008b:
  1547. {
  1548. String_t* L_25 = V_2;
  1549. NullCheck(L_25);
  1550. int32_t L_26;
  1551. L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
  1552. if ((((int32_t)L_26) <= ((int32_t)0)))
  1553. {
  1554. goto IL_00a4;
  1555. }
  1556. }
  1557. {
  1558. String_t* L_27 = V_2;
  1559. NullCheck(L_27);
  1560. Il2CppChar L_28;
  1561. L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, 0, NULL);
  1562. G_B12_0 = ((((int32_t)((((int32_t)L_28) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1563. goto IL_00a5;
  1564. }
  1565. IL_00a4:
  1566. {
  1567. G_B12_0 = 0;
  1568. }
  1569. IL_00a5:
  1570. {
  1571. V_9 = (bool)G_B12_0;
  1572. bool L_29 = V_9;
  1573. if (!L_29)
  1574. {
  1575. goto IL_00b7;
  1576. }
  1577. }
  1578. {
  1579. String_t* L_30 = V_2;
  1580. String_t* L_31;
  1581. L_31 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_30, NULL);
  1582. V_2 = L_31;
  1583. }
  1584. IL_00b7:
  1585. {
  1586. String_t* L_32 = V_2;
  1587. String_t* L_33;
  1588. L_33 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_32, NULL);
  1589. V_4 = L_33;
  1590. goto IL_0207;
  1591. }
  1592. IL_00c9:
  1593. {
  1594. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_34 = ___0_targetUri;
  1595. NullCheck(L_34);
  1596. String_t* L_35;
  1597. L_35 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_34, NULL);
  1598. V_0 = L_35;
  1599. bool L_36 = ___2_prependProtocol;
  1600. if (L_36)
  1601. {
  1602. goto IL_00fa;
  1603. }
  1604. }
  1605. {
  1606. String_t* L_37 = ___1_targetUrl;
  1607. NullCheck(L_37);
  1608. int32_t L_38;
  1609. L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
  1610. String_t* L_39 = V_0;
  1611. NullCheck(L_39);
  1612. int32_t L_40;
  1613. L_40 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_39, NULL);
  1614. if ((((int32_t)L_38) < ((int32_t)((int32_t)il2cpp_codegen_add(L_40, 2)))))
  1615. {
  1616. goto IL_00fa;
  1617. }
  1618. }
  1619. {
  1620. String_t* L_41 = ___1_targetUrl;
  1621. String_t* L_42 = V_0;
  1622. NullCheck(L_42);
  1623. int32_t L_43;
  1624. L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
  1625. NullCheck(L_41);
  1626. Il2CppChar L_44;
  1627. L_44 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_41, ((int32_t)il2cpp_codegen_add(L_43, 1)), NULL);
  1628. G_B19_0 = ((((int32_t)((((int32_t)L_44) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1629. goto IL_00fb;
  1630. }
  1631. IL_00fa:
  1632. {
  1633. G_B19_0 = 0;
  1634. }
  1635. IL_00fb:
  1636. {
  1637. V_10 = (bool)G_B19_0;
  1638. bool L_45 = V_10;
  1639. if (!L_45)
  1640. {
  1641. goto IL_01e2;
  1642. }
  1643. }
  1644. {
  1645. String_t* L_46 = V_0;
  1646. String_t* L_47 = ___1_targetUrl;
  1647. NullCheck(L_47);
  1648. int32_t L_48;
  1649. L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
  1650. StringBuilder_t* L_49 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  1651. StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619(L_49, L_46, L_48, NULL);
  1652. V_11 = L_49;
  1653. StringBuilder_t* L_50 = V_11;
  1654. NullCheck(L_50);
  1655. StringBuilder_t* L_51;
  1656. L_51 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_50, ((int32_t)58), NULL);
  1657. String_t* L_52 = V_0;
  1658. bool L_53;
  1659. L_53 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_52, _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A, NULL);
  1660. V_12 = L_53;
  1661. bool L_54 = V_12;
  1662. if (!L_54)
  1663. {
  1664. goto IL_01bb;
  1665. }
  1666. }
  1667. {
  1668. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_55 = ___0_targetUri;
  1669. NullCheck(L_55);
  1670. String_t* L_56;
  1671. L_56 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_55, NULL);
  1672. V_13 = L_56;
  1673. String_t* L_57 = V_13;
  1674. NullCheck(L_57);
  1675. bool L_58;
  1676. L_58 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_57, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  1677. V_14 = L_58;
  1678. bool L_59 = V_14;
  1679. if (!L_59)
  1680. {
  1681. goto IL_0155;
  1682. }
  1683. }
  1684. {
  1685. String_t* L_60 = V_13;
  1686. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1687. String_t* L_61;
  1688. L_61 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_60, NULL);
  1689. V_13 = L_61;
  1690. }
  1691. IL_0155:
  1692. {
  1693. String_t* L_62 = V_13;
  1694. NullCheck(L_62);
  1695. bool L_63;
  1696. L_63 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_62, _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D, NULL);
  1697. if (!L_63)
  1698. {
  1699. goto IL_017e;
  1700. }
  1701. }
  1702. {
  1703. String_t* L_64 = V_13;
  1704. NullCheck(L_64);
  1705. int32_t L_65;
  1706. L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
  1707. if ((((int32_t)L_65) <= ((int32_t)6)))
  1708. {
  1709. goto IL_017e;
  1710. }
  1711. }
  1712. {
  1713. String_t* L_66 = V_13;
  1714. NullCheck(L_66);
  1715. Il2CppChar L_67;
  1716. L_67 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_66, 6, NULL);
  1717. G_B27_0 = ((((int32_t)((((int32_t)L_67) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1718. goto IL_017f;
  1719. }
  1720. IL_017e:
  1721. {
  1722. G_B27_0 = 0;
  1723. }
  1724. IL_017f:
  1725. {
  1726. V_15 = (bool)G_B27_0;
  1727. bool L_68 = V_15;
  1728. if (!L_68)
  1729. {
  1730. goto IL_01a6;
  1731. }
  1732. }
  1733. {
  1734. StringBuilder_t* L_69 = V_11;
  1735. NullCheck(L_69);
  1736. StringBuilder_t* L_70;
  1737. L_70 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_69, _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, NULL);
  1738. StringBuilder_t* L_71 = V_11;
  1739. String_t* L_72 = V_13;
  1740. NullCheck(L_72);
  1741. String_t* L_73;
  1742. L_73 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_72, 5, NULL);
  1743. NullCheck(L_71);
  1744. StringBuilder_t* L_74;
  1745. L_74 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_71, L_73, NULL);
  1746. goto IL_01b0;
  1747. }
  1748. IL_01a6:
  1749. {
  1750. StringBuilder_t* L_75 = V_11;
  1751. String_t* L_76 = V_13;
  1752. NullCheck(L_75);
  1753. StringBuilder_t* L_77;
  1754. L_77 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_75, L_76, NULL);
  1755. }
  1756. IL_01b0:
  1757. {
  1758. StringBuilder_t* L_78 = V_11;
  1759. NullCheck(L_78);
  1760. String_t* L_79;
  1761. L_79 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_78);
  1762. V_4 = L_79;
  1763. goto IL_0207;
  1764. }
  1765. IL_01bb:
  1766. {
  1767. StringBuilder_t* L_80 = V_11;
  1768. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_81 = ___0_targetUri;
  1769. NullCheck(L_81);
  1770. String_t* L_82;
  1771. L_82 = Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C(L_81, NULL);
  1772. NullCheck(L_80);
  1773. StringBuilder_t* L_83;
  1774. L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_80, L_82, NULL);
  1775. StringBuilder_t* L_84 = V_11;
  1776. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_85 = ___0_targetUri;
  1777. NullCheck(L_85);
  1778. String_t* L_86;
  1779. L_86 = Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835(L_85, NULL);
  1780. NullCheck(L_84);
  1781. StringBuilder_t* L_87;
  1782. L_87 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_84, L_86, NULL);
  1783. StringBuilder_t* L_88 = V_11;
  1784. NullCheck(L_88);
  1785. String_t* L_89;
  1786. L_89 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_88);
  1787. V_4 = L_89;
  1788. goto IL_0207;
  1789. }
  1790. IL_01e2:
  1791. {
  1792. String_t* L_90 = ___1_targetUrl;
  1793. NullCheck(L_90);
  1794. bool L_91;
  1795. L_91 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_90, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  1796. V_16 = L_91;
  1797. bool L_92 = V_16;
  1798. if (!L_92)
  1799. {
  1800. goto IL_01fd;
  1801. }
  1802. }
  1803. {
  1804. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_93 = ___0_targetUri;
  1805. NullCheck(L_93);
  1806. String_t* L_94;
  1807. L_94 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_93, NULL);
  1808. V_4 = L_94;
  1809. goto IL_0207;
  1810. }
  1811. IL_01fd:
  1812. {
  1813. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_95 = ___0_targetUri;
  1814. NullCheck(L_95);
  1815. String_t* L_96;
  1816. L_96 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_95, NULL);
  1817. V_4 = L_96;
  1818. goto IL_0207;
  1819. }
  1820. IL_0207:
  1821. {
  1822. String_t* L_97 = V_4;
  1823. return L_97;
  1824. }
  1825. }
  1826. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method)
  1827. {
  1828. static bool s_Il2CppMethodInitialized;
  1829. if (!s_Il2CppMethodInitialized)
  1830. {
  1831. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  1832. s_Il2CppMethodInitialized = true;
  1833. }
  1834. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  1835. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  1836. String_t* V_2 = NULL;
  1837. {
  1838. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  1839. L_0 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  1840. String_t* L_1 = ___0_encoded;
  1841. NullCheck(L_0);
  1842. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  1843. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, L_1);
  1844. V_0 = L_2;
  1845. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_0;
  1846. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  1847. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  1848. L_4 = WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704(L_3, NULL);
  1849. V_1 = L_4;
  1850. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5;
  1851. L_5 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  1852. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_1;
  1853. NullCheck(L_5);
  1854. String_t* L_7;
  1855. L_7 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(44, L_5, L_6);
  1856. V_2 = L_7;
  1857. goto IL_0022;
  1858. }
  1859. IL_0022:
  1860. {
  1861. String_t* L_8 = V_2;
  1862. return L_8;
  1863. }
  1864. }
  1865. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_m31ADEB75E00368144C8F223647D81A3B5ADD3D69 (const RuntimeMethod* method)
  1866. {
  1867. static bool s_Il2CppMethodInitialized;
  1868. if (!s_Il2CppMethodInitialized)
  1869. {
  1870. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  1871. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1872. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F);
  1873. s_Il2CppMethodInitialized = true;
  1874. }
  1875. {
  1876. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  1877. Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD(L_0, _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F, NULL);
  1878. ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex = L_0;
  1879. Il2CppCodeGenWriteBarrier((void**)(&((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex), (void*)L_0);
  1880. return;
  1881. }
  1882. }
  1883. #ifdef __clang__
  1884. #pragma clang diagnostic pop
  1885. #endif
  1886. #ifdef __clang__
  1887. #pragma clang diagnostic push
  1888. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1889. #pragma clang diagnostic ignored "-Wunused-variable"
  1890. #endif
  1891. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method)
  1892. {
  1893. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL;
  1894. {
  1895. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  1896. L_0 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
  1897. V_0 = L_0;
  1898. goto IL_0009;
  1899. }
  1900. IL_0009:
  1901. {
  1902. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = V_0;
  1903. return L_1;
  1904. }
  1905. }
  1906. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__cctor_m272C4A10B85A1DEC11809F9EEADD0B2DE9166B5F (const RuntimeMethod* method)
  1907. {
  1908. static bool s_Il2CppMethodInitialized;
  1909. if (!s_Il2CppMethodInitialized)
  1910. {
  1911. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  1912. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  1913. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  1914. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  1915. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  1916. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  1917. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  1918. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  1919. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  1920. s_Il2CppMethodInitialized = true;
  1921. }
  1922. {
  1923. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  1924. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1925. NullCheck(L_0);
  1926. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  1927. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  1928. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash = L_1;
  1929. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash), (void*)L_1);
  1930. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  1931. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1932. NullCheck(L_2);
  1933. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  1934. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_2, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  1935. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf = L_3;
  1936. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf), (void*)L_3);
  1937. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  1938. L_4 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1939. NullCheck(L_4);
  1940. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  1941. L_5 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_4, _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  1942. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader = L_5;
  1943. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader), (void*)L_5);
  1944. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  1945. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1946. NullCheck(L_6);
  1947. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  1948. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_6, _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  1949. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader = L_7;
  1950. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader), (void*)L_7);
  1951. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  1952. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1953. NullCheck(L_8);
  1954. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  1955. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  1956. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote = L_9;
  1957. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote), (void*)L_9);
  1958. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10;
  1959. L_10 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1960. NullCheck(L_10);
  1961. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  1962. L_11 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_10, _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  1963. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField = L_11;
  1964. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField), (void*)L_11);
  1965. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  1966. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1967. NullCheck(L_12);
  1968. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  1969. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_12, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  1970. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand = L_13;
  1971. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand), (void*)L_13);
  1972. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14;
  1973. L_14 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  1974. NullCheck(L_14);
  1975. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15;
  1976. L_15 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_14, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  1977. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal = L_15;
  1978. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal), (void*)L_15);
  1979. return;
  1980. }
  1981. }
  1982. #ifdef __clang__
  1983. #pragma clang diagnostic pop
  1984. #endif
  1985. #ifdef __clang__
  1986. #pragma clang diagnostic push
  1987. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1988. #pragma clang diagnostic ignored "-Wunused-variable"
  1989. #endif
  1990. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method)
  1991. {
  1992. uint8_t V_0 = 0x0;
  1993. int32_t V_1 = 0;
  1994. int32_t V_2 = 0;
  1995. bool V_3 = false;
  1996. bool V_4 = false;
  1997. bool V_5 = false;
  1998. bool V_6 = false;
  1999. uint8_t V_7 = 0x0;
  2000. bool V_8 = false;
  2001. int32_t G_B4_0 = 0;
  2002. int32_t G_B9_0 = 0;
  2003. int32_t G_B14_0 = 0;
  2004. {
  2005. V_0 = (uint8_t)0;
  2006. int32_t L_0 = ___1_offset;
  2007. V_1 = L_0;
  2008. goto IL_0082;
  2009. }
  2010. IL_0007:
  2011. {
  2012. uint8_t L_1 = V_0;
  2013. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, ((int32_t)16))));
  2014. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_b;
  2015. int32_t L_3 = V_1;
  2016. NullCheck(L_2);
  2017. int32_t L_4 = L_3;
  2018. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  2019. V_2 = L_5;
  2020. int32_t L_6 = V_2;
  2021. if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
  2022. {
  2023. goto IL_0021;
  2024. }
  2025. }
  2026. {
  2027. int32_t L_7 = V_2;
  2028. G_B4_0 = ((((int32_t)((((int32_t)L_7) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2029. goto IL_0022;
  2030. }
  2031. IL_0021:
  2032. {
  2033. G_B4_0 = 0;
  2034. }
  2035. IL_0022:
  2036. {
  2037. V_3 = (bool)G_B4_0;
  2038. bool L_8 = V_3;
  2039. if (!L_8)
  2040. {
  2041. goto IL_002d;
  2042. }
  2043. }
  2044. {
  2045. int32_t L_9 = V_2;
  2046. V_2 = ((int32_t)il2cpp_codegen_subtract(L_9, ((int32_t)48)));
  2047. goto IL_0065;
  2048. }
  2049. IL_002d:
  2050. {
  2051. int32_t L_10 = V_2;
  2052. if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
  2053. {
  2054. goto IL_003c;
  2055. }
  2056. }
  2057. {
  2058. int32_t L_11 = V_2;
  2059. G_B9_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)75)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2060. goto IL_003d;
  2061. }
  2062. IL_003c:
  2063. {
  2064. G_B9_0 = 0;
  2065. }
  2066. IL_003d:
  2067. {
  2068. V_4 = (bool)G_B9_0;
  2069. bool L_12 = V_4;
  2070. if (!L_12)
  2071. {
  2072. goto IL_004a;
  2073. }
  2074. }
  2075. {
  2076. int32_t L_13 = V_2;
  2077. V_2 = ((int32_t)il2cpp_codegen_subtract(L_13, ((int32_t)55)));
  2078. goto IL_0065;
  2079. }
  2080. IL_004a:
  2081. {
  2082. int32_t L_14 = V_2;
  2083. if ((((int32_t)L_14) < ((int32_t)((int32_t)97))))
  2084. {
  2085. goto IL_0059;
  2086. }
  2087. }
  2088. {
  2089. int32_t L_15 = V_2;
  2090. G_B14_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2091. goto IL_005a;
  2092. }
  2093. IL_0059:
  2094. {
  2095. G_B14_0 = 0;
  2096. }
  2097. IL_005a:
  2098. {
  2099. V_5 = (bool)G_B14_0;
  2100. bool L_16 = V_5;
  2101. if (!L_16)
  2102. {
  2103. goto IL_0065;
  2104. }
  2105. }
  2106. {
  2107. int32_t L_17 = V_2;
  2108. V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)87)));
  2109. }
  2110. IL_0065:
  2111. {
  2112. int32_t L_18 = V_2;
  2113. V_6 = (bool)((((int32_t)L_18) > ((int32_t)((int32_t)15)))? 1 : 0);
  2114. bool L_19 = V_6;
  2115. if (!L_19)
  2116. {
  2117. goto IL_0077;
  2118. }
  2119. }
  2120. {
  2121. V_7 = (uint8_t)((int32_t)63);
  2122. goto IL_0096;
  2123. }
  2124. IL_0077:
  2125. {
  2126. uint8_t L_20 = V_0;
  2127. int32_t L_21 = V_2;
  2128. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, ((int32_t)(uint8_t)L_21))));
  2129. int32_t L_22 = V_1;
  2130. V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
  2131. }
  2132. IL_0082:
  2133. {
  2134. int32_t L_23 = V_1;
  2135. int32_t L_24 = ___1_offset;
  2136. V_8 = (bool)((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add(L_24, 2))))? 1 : 0);
  2137. bool L_25 = V_8;
  2138. if (L_25)
  2139. {
  2140. goto IL_0007;
  2141. }
  2142. }
  2143. {
  2144. uint8_t L_26 = V_0;
  2145. V_7 = L_26;
  2146. goto IL_0096;
  2147. }
  2148. IL_0096:
  2149. {
  2150. uint8_t L_27 = V_7;
  2151. return L_27;
  2152. }
  2153. }
  2154. 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)
  2155. {
  2156. {
  2157. uint8_t* L_0 = ___2_byte0;
  2158. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___1_hexChars;
  2159. uint8_t L_2 = ___0_b;
  2160. NullCheck(L_1);
  2161. int32_t L_3 = ((int32_t)((int32_t)L_2>>4));
  2162. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  2163. *((int8_t*)L_0) = (int8_t)L_4;
  2164. uint8_t* L_5 = ___3_byte1;
  2165. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___1_hexChars;
  2166. uint8_t L_7 = ___0_b;
  2167. NullCheck(L_6);
  2168. int32_t L_8 = ((int32_t)((int32_t)L_7&((int32_t)15)));
  2169. uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
  2170. *((int8_t*)L_5) = (int8_t)L_9;
  2171. return;
  2172. }
  2173. }
  2174. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  2175. {
  2176. static bool s_Il2CppMethodInitialized;
  2177. if (!s_Il2CppMethodInitialized)
  2178. {
  2179. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2180. s_Il2CppMethodInitialized = true;
  2181. }
  2182. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  2183. {
  2184. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  2185. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2186. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar;
  2187. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace;
  2188. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden;
  2189. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  2190. L_4 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_0, L_1, L_2, L_3, (bool)0, NULL);
  2191. V_0 = L_4;
  2192. goto IL_001a;
  2193. }
  2194. IL_001a:
  2195. {
  2196. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
  2197. return L_5;
  2198. }
  2199. }
  2200. 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)
  2201. {
  2202. static bool s_Il2CppMethodInitialized;
  2203. if (!s_Il2CppMethodInitialized)
  2204. {
  2205. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  2206. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2207. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2208. s_Il2CppMethodInitialized = true;
  2209. }
  2210. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  2211. int32_t V_1 = 0;
  2212. bool V_2 = false;
  2213. bool V_3 = false;
  2214. uint8_t V_4 = 0x0;
  2215. uint8_t V_5 = 0x0;
  2216. bool V_6 = false;
  2217. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  2218. int32_t G_B8_0 = 0;
  2219. int32_t G_B11_0 = 0;
  2220. int32_t G_B10_0 = 0;
  2221. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B12_0 = NULL;
  2222. int32_t G_B12_1 = 0;
  2223. {
  2224. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  2225. NullCheck(L_0);
  2226. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2227. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)), NULL);
  2228. V_0 = L_1;
  2229. }
  2230. {
  2231. auto __finallyBlock = il2cpp::utils::Finally([&]
  2232. {
  2233. FINALLY_00b3:
  2234. {
  2235. {
  2236. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  2237. if (!L_2)
  2238. {
  2239. goto IL_00bd;
  2240. }
  2241. }
  2242. {
  2243. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  2244. NullCheck(L_3);
  2245. InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  2246. }
  2247. IL_00bd:
  2248. {
  2249. return;
  2250. }
  2251. }
  2252. });
  2253. try
  2254. {
  2255. {
  2256. V_1 = 0;
  2257. goto IL_009a_1;
  2258. }
  2259. IL_0014_1:
  2260. {
  2261. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  2262. int32_t L_5 = V_1;
  2263. NullCheck(L_4);
  2264. int32_t L_6 = L_5;
  2265. uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
  2266. V_2 = (bool)((((int32_t)L_7) == ((int32_t)((int32_t)32)))? 1 : 0);
  2267. bool L_8 = V_2;
  2268. if (!L_8)
  2269. {
  2270. goto IL_0030_1;
  2271. }
  2272. }
  2273. {
  2274. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_9 = V_0;
  2275. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  2276. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___2_space;
  2277. NullCheck(L_11);
  2278. NullCheck(L_9);
  2279. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_9, L_10, 0, ((int32_t)(((RuntimeArray*)L_11)->max_length)));
  2280. goto IL_0095_1;
  2281. }
  2282. IL_0030_1:
  2283. {
  2284. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  2285. int32_t L_13 = V_1;
  2286. NullCheck(L_12);
  2287. int32_t L_14 = L_13;
  2288. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  2289. if ((((int32_t)L_15) < ((int32_t)((int32_t)32))))
  2290. {
  2291. goto IL_0049_1;
  2292. }
  2293. }
  2294. {
  2295. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___0_input;
  2296. int32_t L_17 = V_1;
  2297. NullCheck(L_16);
  2298. int32_t L_18 = L_17;
  2299. uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
  2300. if ((((int32_t)L_19) > ((int32_t)((int32_t)126))))
  2301. {
  2302. goto IL_0049_1;
  2303. }
  2304. }
  2305. {
  2306. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ___3_forbidden;
  2307. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___0_input;
  2308. int32_t L_22 = V_1;
  2309. NullCheck(L_21);
  2310. int32_t L_23 = L_22;
  2311. uint8_t L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
  2312. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2313. bool L_25;
  2314. L_25 = WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630(L_20, L_24, NULL);
  2315. G_B8_0 = ((int32_t)(L_25));
  2316. goto IL_004a_1;
  2317. }
  2318. IL_0049_1:
  2319. {
  2320. G_B8_0 = 1;
  2321. }
  2322. IL_004a_1:
  2323. {
  2324. V_3 = (bool)G_B8_0;
  2325. bool L_26 = V_3;
  2326. if (!L_26)
  2327. {
  2328. goto IL_0089_1;
  2329. }
  2330. }
  2331. {
  2332. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_27 = V_0;
  2333. uint8_t L_28 = ___1_escapeChar;
  2334. NullCheck(L_27);
  2335. VirtualActionInvoker1< uint8_t >::Invoke(37, L_27, L_28);
  2336. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ___0_input;
  2337. int32_t L_30 = V_1;
  2338. NullCheck(L_29);
  2339. int32_t L_31 = L_30;
  2340. uint8_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
  2341. bool L_33 = ___4_uppercase;
  2342. if (L_33)
  2343. {
  2344. G_B11_0 = ((int32_t)(L_32));
  2345. goto IL_0065_1;
  2346. }
  2347. G_B10_0 = ((int32_t)(L_32));
  2348. }
  2349. {
  2350. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2351. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars;
  2352. G_B12_0 = L_34;
  2353. G_B12_1 = G_B10_0;
  2354. goto IL_006a_1;
  2355. }
  2356. IL_0065_1:
  2357. {
  2358. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2359. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars;
  2360. G_B12_0 = L_35;
  2361. G_B12_1 = G_B11_0;
  2362. }
  2363. IL_006a_1:
  2364. {
  2365. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2366. WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651((uint8_t)G_B12_1, G_B12_0, (&V_4), (&V_5), NULL);
  2367. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_36 = V_0;
  2368. uint8_t L_37 = V_4;
  2369. NullCheck(L_36);
  2370. VirtualActionInvoker1< uint8_t >::Invoke(37, L_36, L_37);
  2371. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_38 = V_0;
  2372. uint8_t L_39 = V_5;
  2373. NullCheck(L_38);
  2374. VirtualActionInvoker1< uint8_t >::Invoke(37, L_38, L_39);
  2375. goto IL_0095_1;
  2376. }
  2377. IL_0089_1:
  2378. {
  2379. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_40 = V_0;
  2380. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = ___0_input;
  2381. int32_t L_42 = V_1;
  2382. NullCheck(L_41);
  2383. int32_t L_43 = L_42;
  2384. uint8_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
  2385. NullCheck(L_40);
  2386. VirtualActionInvoker1< uint8_t >::Invoke(37, L_40, L_44);
  2387. }
  2388. IL_0095_1:
  2389. {
  2390. int32_t L_45 = V_1;
  2391. V_1 = ((int32_t)il2cpp_codegen_add(L_45, 1));
  2392. }
  2393. IL_009a_1:
  2394. {
  2395. int32_t L_46 = V_1;
  2396. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_47 = ___0_input;
  2397. NullCheck(L_47);
  2398. V_6 = (bool)((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))))? 1 : 0);
  2399. bool L_48 = V_6;
  2400. if (L_48)
  2401. {
  2402. goto IL_0014_1;
  2403. }
  2404. }
  2405. {
  2406. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_49 = V_0;
  2407. NullCheck(L_49);
  2408. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_50;
  2409. L_50 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41, L_49);
  2410. V_7 = L_50;
  2411. goto IL_00be;
  2412. }
  2413. }
  2414. catch(Il2CppExceptionWrapper& e)
  2415. {
  2416. __finallyBlock.StoreException(e.ex);
  2417. }
  2418. }
  2419. IL_00be:
  2420. {
  2421. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_51 = V_7;
  2422. return L_51;
  2423. }
  2424. }
  2425. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method)
  2426. {
  2427. int32_t V_0 = 0;
  2428. int32_t V_1 = 0;
  2429. bool V_2 = false;
  2430. bool V_3 = false;
  2431. bool V_4 = false;
  2432. {
  2433. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  2434. NullCheck(L_0);
  2435. V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
  2436. V_1 = 0;
  2437. goto IL_001d;
  2438. }
  2439. IL_0009:
  2440. {
  2441. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_array;
  2442. int32_t L_2 = V_1;
  2443. NullCheck(L_1);
  2444. int32_t L_3 = L_2;
  2445. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  2446. uint8_t L_5 = ___1_b;
  2447. V_2 = (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
  2448. bool L_6 = V_2;
  2449. if (!L_6)
  2450. {
  2451. goto IL_0018;
  2452. }
  2453. }
  2454. {
  2455. V_3 = (bool)1;
  2456. goto IL_002b;
  2457. }
  2458. IL_0018:
  2459. {
  2460. int32_t L_7 = V_1;
  2461. V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  2462. }
  2463. IL_001d:
  2464. {
  2465. int32_t L_8 = V_1;
  2466. int32_t L_9 = V_0;
  2467. V_4 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  2468. bool L_10 = V_4;
  2469. if (L_10)
  2470. {
  2471. goto IL_0009;
  2472. }
  2473. }
  2474. {
  2475. V_3 = (bool)0;
  2476. goto IL_002b;
  2477. }
  2478. IL_002b:
  2479. {
  2480. bool L_11 = V_3;
  2481. return L_11;
  2482. }
  2483. }
  2484. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  2485. {
  2486. static bool s_Il2CppMethodInitialized;
  2487. if (!s_Il2CppMethodInitialized)
  2488. {
  2489. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2490. s_Il2CppMethodInitialized = true;
  2491. }
  2492. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  2493. {
  2494. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  2495. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2496. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar;
  2497. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace;
  2498. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  2499. L_3 = WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B(L_0, L_1, L_2, NULL);
  2500. V_0 = L_3;
  2501. goto IL_0014;
  2502. }
  2503. IL_0014:
  2504. {
  2505. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_0;
  2506. return L_4;
  2507. }
  2508. }
  2509. 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)
  2510. {
  2511. bool V_0 = false;
  2512. bool V_1 = false;
  2513. int32_t V_2 = 0;
  2514. bool V_3 = false;
  2515. bool V_4 = false;
  2516. {
  2517. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  2518. NullCheck(L_0);
  2519. int32_t L_1 = ___1_index;
  2520. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___2_comperand;
  2521. NullCheck(L_2);
  2522. 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);
  2523. bool L_3 = V_0;
  2524. if (!L_3)
  2525. {
  2526. goto IL_0013;
  2527. }
  2528. }
  2529. {
  2530. V_1 = (bool)0;
  2531. goto IL_0040;
  2532. }
  2533. IL_0013:
  2534. {
  2535. V_2 = 0;
  2536. goto IL_0030;
  2537. }
  2538. IL_0017:
  2539. {
  2540. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_array;
  2541. int32_t L_5 = ___1_index;
  2542. int32_t L_6 = V_2;
  2543. NullCheck(L_4);
  2544. int32_t L_7 = ((int32_t)il2cpp_codegen_add(L_5, L_6));
  2545. uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
  2546. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___2_comperand;
  2547. int32_t L_10 = V_2;
  2548. NullCheck(L_9);
  2549. int32_t L_11 = L_10;
  2550. uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  2551. V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2552. bool L_13 = V_3;
  2553. if (!L_13)
  2554. {
  2555. goto IL_002c;
  2556. }
  2557. }
  2558. {
  2559. V_1 = (bool)0;
  2560. goto IL_0040;
  2561. }
  2562. IL_002c:
  2563. {
  2564. int32_t L_14 = V_2;
  2565. V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
  2566. }
  2567. IL_0030:
  2568. {
  2569. int32_t L_15 = V_2;
  2570. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___2_comperand;
  2571. NullCheck(L_16);
  2572. V_4 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))? 1 : 0);
  2573. bool L_17 = V_4;
  2574. if (L_17)
  2575. {
  2576. goto IL_0017;
  2577. }
  2578. }
  2579. {
  2580. V_1 = (bool)1;
  2581. goto IL_0040;
  2582. }
  2583. IL_0040:
  2584. {
  2585. bool L_18 = V_1;
  2586. return L_18;
  2587. }
  2588. }
  2589. 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)
  2590. {
  2591. static bool s_Il2CppMethodInitialized;
  2592. if (!s_Il2CppMethodInitialized)
  2593. {
  2594. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  2595. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2596. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2597. s_Il2CppMethodInitialized = true;
  2598. }
  2599. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  2600. int32_t V_1 = 0;
  2601. bool V_2 = false;
  2602. bool V_3 = false;
  2603. bool V_4 = false;
  2604. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL;
  2605. int32_t G_B7_0 = 0;
  2606. {
  2607. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  2608. NullCheck(L_0);
  2609. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2610. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
  2611. V_0 = L_1;
  2612. }
  2613. {
  2614. auto __finallyBlock = il2cpp::utils::Finally([&]
  2615. {
  2616. FINALLY_0087:
  2617. {
  2618. {
  2619. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  2620. if (!L_2)
  2621. {
  2622. goto IL_0091;
  2623. }
  2624. }
  2625. {
  2626. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  2627. NullCheck(L_3);
  2628. InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  2629. }
  2630. IL_0091:
  2631. {
  2632. return;
  2633. }
  2634. }
  2635. });
  2636. try
  2637. {
  2638. {
  2639. V_1 = 0;
  2640. goto IL_0071_1;
  2641. }
  2642. IL_000f_1:
  2643. {
  2644. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  2645. int32_t L_5 = V_1;
  2646. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___2_space;
  2647. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2648. bool L_7;
  2649. L_7 = WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7(L_4, L_5, L_6, NULL);
  2650. V_2 = L_7;
  2651. bool L_8 = V_2;
  2652. if (!L_8)
  2653. {
  2654. goto IL_0031_1;
  2655. }
  2656. }
  2657. {
  2658. int32_t L_9 = V_1;
  2659. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  2660. NullCheck(L_10);
  2661. V_1 = ((int32_t)il2cpp_codegen_add(L_9, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), 1))));
  2662. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  2663. NullCheck(L_11);
  2664. VirtualActionInvoker1< uint8_t >::Invoke(37, L_11, (uint8_t)((int32_t)32));
  2665. goto IL_006c_1;
  2666. }
  2667. IL_0031_1:
  2668. {
  2669. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  2670. int32_t L_13 = V_1;
  2671. NullCheck(L_12);
  2672. int32_t L_14 = L_13;
  2673. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  2674. uint8_t L_16 = ___1_escapeChar;
  2675. if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
  2676. {
  2677. goto IL_0041_1;
  2678. }
  2679. }
  2680. {
  2681. int32_t L_17 = V_1;
  2682. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ___0_input;
  2683. NullCheck(L_18);
  2684. G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add(L_17, 2))) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))))? 1 : 0);
  2685. goto IL_0042_1;
  2686. }
  2687. IL_0041_1:
  2688. {
  2689. G_B7_0 = 0;
  2690. }
  2691. IL_0042_1:
  2692. {
  2693. V_3 = (bool)G_B7_0;
  2694. bool L_19 = V_3;
  2695. if (!L_19)
  2696. {
  2697. goto IL_0060_1;
  2698. }
  2699. }
  2700. {
  2701. int32_t L_20 = V_1;
  2702. V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
  2703. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_21 = V_0;
  2704. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = ___0_input;
  2705. int32_t L_23 = V_1;
  2706. int32_t L_24 = L_23;
  2707. V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
  2708. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2709. uint8_t L_25;
  2710. L_25 = WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88(L_22, L_24, NULL);
  2711. NullCheck(L_21);
  2712. VirtualActionInvoker1< uint8_t >::Invoke(37, L_21, L_25);
  2713. goto IL_006c_1;
  2714. }
  2715. IL_0060_1:
  2716. {
  2717. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_26 = V_0;
  2718. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = ___0_input;
  2719. int32_t L_28 = V_1;
  2720. NullCheck(L_27);
  2721. int32_t L_29 = L_28;
  2722. uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
  2723. NullCheck(L_26);
  2724. VirtualActionInvoker1< uint8_t >::Invoke(37, L_26, L_30);
  2725. }
  2726. IL_006c_1:
  2727. {
  2728. int32_t L_31 = V_1;
  2729. V_1 = ((int32_t)il2cpp_codegen_add(L_31, 1));
  2730. }
  2731. IL_0071_1:
  2732. {
  2733. int32_t L_32 = V_1;
  2734. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ___0_input;
  2735. NullCheck(L_33);
  2736. V_4 = (bool)((((int32_t)L_32) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
  2737. bool L_34 = V_4;
  2738. if (L_34)
  2739. {
  2740. goto IL_000f_1;
  2741. }
  2742. }
  2743. {
  2744. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_35 = V_0;
  2745. NullCheck(L_35);
  2746. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36;
  2747. L_36 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41, L_35);
  2748. V_5 = L_36;
  2749. goto IL_0092;
  2750. }
  2751. }
  2752. catch(Il2CppExceptionWrapper& e)
  2753. {
  2754. __finallyBlock.StoreException(e.ex);
  2755. }
  2756. }
  2757. IL_0092:
  2758. {
  2759. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = V_5;
  2760. return L_37;
  2761. }
  2762. }
  2763. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_m105AD5C901F1A72DCDD5956E3FDDE83B65AB0152 (const RuntimeMethod* method)
  2764. {
  2765. static bool s_Il2CppMethodInitialized;
  2766. if (!s_Il2CppMethodInitialized)
  2767. {
  2768. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  2769. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2770. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2771. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  2772. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  2773. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  2774. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  2775. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  2776. s_Il2CppMethodInitialized = true;
  2777. }
  2778. {
  2779. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2780. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2781. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2782. NullCheck(L_0);
  2783. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  2784. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  2785. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars = L_1;
  2786. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars), (void*)L_1);
  2787. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  2788. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2789. NullCheck(L_2);
  2790. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  2791. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_2, _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  2792. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars = L_3;
  2793. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars), (void*)L_3);
  2794. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar = (uint8_t)((int32_t)37);
  2795. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  2796. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = L_4;
  2797. NullCheck(L_5);
  2798. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43));
  2799. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace = L_5;
  2800. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace), (void*)L_5);
  2801. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  2802. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2803. NullCheck(L_6);
  2804. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  2805. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_6, _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  2806. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace = L_7;
  2807. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace), (void*)L_7);
  2808. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  2809. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2810. NullCheck(L_8);
  2811. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  2812. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_8, _stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  2813. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden = L_9;
  2814. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden), (void*)L_9);
  2815. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar = (uint8_t)((int32_t)61);
  2816. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  2817. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10;
  2818. NullCheck(L_11);
  2819. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95));
  2820. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace = L_11;
  2821. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace), (void*)L_11);
  2822. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  2823. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2824. NullCheck(L_12);
  2825. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  2826. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_12, _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  2827. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden = L_13;
  2828. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden), (void*)L_13);
  2829. return;
  2830. }
  2831. }
  2832. #ifdef __clang__
  2833. #pragma clang diagnostic pop
  2834. #endif
  2835. #ifdef __clang__
  2836. #pragma clang diagnostic push
  2837. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2838. #pragma clang diagnostic ignored "-Wunused-variable"
  2839. #endif
  2840. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  2841. {
  2842. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  2843. }
  2844. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  2845. {
  2846. intptr_t unmarshaledm_Ptr_temp_0;
  2847. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  2848. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  2849. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  2850. }
  2851. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  2852. {
  2853. }
  2854. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  2855. {
  2856. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  2857. }
  2858. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  2859. {
  2860. intptr_t unmarshaledm_Ptr_temp_0;
  2861. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  2862. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  2863. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  2864. }
  2865. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  2866. {
  2867. }
  2868. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_mA6FB8BD8311B029689E2A7FC86E06475FF60010D (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  2869. {
  2870. intptr_t G_B2_0;
  2871. memset((&G_B2_0), 0, sizeof(G_B2_0));
  2872. intptr_t G_B1_0;
  2873. memset((&G_B1_0), 0, sizeof(G_B1_0));
  2874. {
  2875. intptr_t L_0;
  2876. L_0 = BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD_inline(__this, NULL);
  2877. intptr_t L_1 = L_0;
  2878. if (L_1)
  2879. {
  2880. G_B2_0 = L_1;
  2881. goto IL_000f;
  2882. }
  2883. G_B1_0 = L_1;
  2884. }
  2885. {
  2886. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  2887. G_B2_0 = G_B1_0;
  2888. }
  2889. IL_000f:
  2890. {
  2891. CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755(G_B2_0, NULL);
  2892. return;
  2893. }
  2894. }
  2895. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_m81E194684391CA512FFC7C3A9172B56D6A1E2752 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  2896. {
  2897. bool V_0 = false;
  2898. {
  2899. V_0 = (bool)0;
  2900. goto IL_0005;
  2901. }
  2902. IL_0005:
  2903. {
  2904. bool L_0 = V_0;
  2905. return L_0;
  2906. }
  2907. }
  2908. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_m73467B32D9B40F6897951F71F80CDDA92F5FD785 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  2909. {
  2910. bool V_0 = false;
  2911. {
  2912. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_certificateData;
  2913. bool L_1;
  2914. L_1 = VirtualFuncInvoker1< bool, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4, __this, L_0);
  2915. V_0 = L_1;
  2916. goto IL_000b;
  2917. }
  2918. IL_000b:
  2919. {
  2920. bool L_2 = V_0;
  2921. return L_2;
  2922. }
  2923. }
  2924. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  2925. {
  2926. bool V_0 = false;
  2927. {
  2928. intptr_t L_0 = __this->___m_Ptr;
  2929. bool L_1;
  2930. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  2931. V_0 = L_1;
  2932. bool L_2 = V_0;
  2933. if (!L_2)
  2934. {
  2935. goto IL_0029;
  2936. }
  2937. }
  2938. {
  2939. CertificateHandler_ReleaseFromScripting_mA6FB8BD8311B029689E2A7FC86E06475FF60010D(__this, NULL);
  2940. __this->___m_Ptr = 0;
  2941. }
  2942. IL_0029:
  2943. {
  2944. return;
  2945. }
  2946. }
  2947. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  2948. {
  2949. typedef void (*CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755_ftn) (intptr_t);
  2950. static CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755_ftn _il2cpp_icall_func;
  2951. if (!_il2cpp_icall_func)
  2952. _il2cpp_icall_func = (CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::ReleaseFromScripting_Injected(System.IntPtr)");
  2953. _il2cpp_icall_func(___0__unity_self);
  2954. }
  2955. #ifdef __clang__
  2956. #pragma clang diagnostic pop
  2957. #endif
  2958. #ifdef __clang__
  2959. #pragma clang diagnostic push
  2960. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2961. #pragma clang diagnostic ignored "-Wunused-variable"
  2962. #endif
  2963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___0_handler, const RuntimeMethod* method)
  2964. {
  2965. {
  2966. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = ___0_handler;
  2967. NullCheck(L_0);
  2968. intptr_t L_1 = L_0->___m_Ptr;
  2969. return L_1;
  2970. }
  2971. }
  2972. #ifdef __clang__
  2973. #pragma clang diagnostic pop
  2974. #endif
  2975. #ifdef __clang__
  2976. #pragma clang diagnostic push
  2977. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2978. #pragma clang diagnostic ignored "-Wunused-variable"
  2979. #endif
  2980. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  2981. {
  2982. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  2983. }
  2984. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  2985. {
  2986. intptr_t unmarshaledm_Ptr_temp_0;
  2987. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  2988. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  2989. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  2990. }
  2991. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  2992. {
  2993. }
  2994. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  2995. {
  2996. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  2997. }
  2998. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  2999. {
  3000. intptr_t unmarshaledm_Ptr_temp_0;
  3001. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  3002. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  3003. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  3004. }
  3005. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  3006. {
  3007. }
  3008. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_m286AFAC5F442211CA34E6E3BEAB79CD585EC9DF2 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3009. {
  3010. intptr_t G_B2_0;
  3011. memset((&G_B2_0), 0, sizeof(G_B2_0));
  3012. intptr_t G_B1_0;
  3013. memset((&G_B1_0), 0, sizeof(G_B1_0));
  3014. {
  3015. intptr_t L_0;
  3016. L_0 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(__this, NULL);
  3017. intptr_t L_1 = L_0;
  3018. if (L_1)
  3019. {
  3020. G_B2_0 = L_1;
  3021. goto IL_000f;
  3022. }
  3023. G_B1_0 = L_1;
  3024. }
  3025. {
  3026. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  3027. G_B2_0 = G_B1_0;
  3028. }
  3029. IL_000f:
  3030. {
  3031. DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B(G_B2_0, NULL);
  3032. return;
  3033. }
  3034. }
  3035. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3036. {
  3037. {
  3038. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  3039. return;
  3040. }
  3041. }
  3042. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_m21F7E76D39E0CBF30890C6A0C8EDBF049AFFBB14 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3043. {
  3044. {
  3045. }
  3046. {
  3047. auto __finallyBlock = il2cpp::utils::Finally([&]
  3048. {
  3049. FINALLY_000b:
  3050. {
  3051. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  3052. return;
  3053. }
  3054. });
  3055. try
  3056. {
  3057. VirtualActionInvoker0::Invoke(5, __this);
  3058. goto IL_0013;
  3059. }
  3060. catch(Il2CppExceptionWrapper& e)
  3061. {
  3062. __finallyBlock.StoreException(e.ex);
  3063. }
  3064. }
  3065. IL_0013:
  3066. {
  3067. return;
  3068. }
  3069. }
  3070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3071. {
  3072. bool V_0 = false;
  3073. {
  3074. intptr_t L_0 = __this->___m_Ptr;
  3075. bool L_1;
  3076. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  3077. V_0 = L_1;
  3078. bool L_2 = V_0;
  3079. if (!L_2)
  3080. {
  3081. goto IL_0029;
  3082. }
  3083. }
  3084. {
  3085. DownloadHandler_ReleaseFromScripting_m286AFAC5F442211CA34E6E3BEAB79CD585EC9DF2(__this, NULL);
  3086. __this->___m_Ptr = 0;
  3087. }
  3088. IL_0029:
  3089. {
  3090. return;
  3091. }
  3092. }
  3093. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_get_data_m1DC9B4514B12939B090028BF28C6BEF21DE9B6F3 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3094. {
  3095. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3096. {
  3097. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
  3098. L_0 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(7, __this);
  3099. V_0 = L_0;
  3100. goto IL_000a;
  3101. }
  3102. IL_000a:
  3103. {
  3104. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0;
  3105. return L_1;
  3106. }
  3107. }
  3108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_mA6DE5CB2647A21E577B963708DC3D0DA4DBFE7D8 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3109. {
  3110. String_t* V_0 = NULL;
  3111. {
  3112. String_t* L_0;
  3113. L_0 = VirtualFuncInvoker0< String_t* >::Invoke(8, __this);
  3114. V_0 = L_0;
  3115. goto IL_000a;
  3116. }
  3117. IL_000a:
  3118. {
  3119. String_t* L_1 = V_0;
  3120. return L_1;
  3121. }
  3122. }
  3123. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_GetNativeData_m884DE3A326286BFE7B26098CD55D6DCD7D146E23 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3124. {
  3125. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  3126. memset((&V_0), 0, sizeof(V_0));
  3127. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
  3128. memset((&V_1), 0, sizeof(V_1));
  3129. {
  3130. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  3131. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = V_0;
  3132. V_1 = L_0;
  3133. goto IL_000d;
  3134. }
  3135. IL_000d:
  3136. {
  3137. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1 = V_1;
  3138. return L_1;
  3139. }
  3140. }
  3141. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_GetData_mCAAC65F3AB3352C789E169EB7D9C7C75BEA74BAC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3142. {
  3143. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3144. {
  3145. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
  3146. L_0 = DownloadHandler_InternalGetByteArray_m27F42C529228C204142EEF609AD8E96E7FC38CF6(__this, NULL);
  3147. V_0 = L_0;
  3148. goto IL_000a;
  3149. }
  3150. IL_000a:
  3151. {
  3152. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0;
  3153. return L_1;
  3154. }
  3155. }
  3156. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_m19ABD4540E4BE6A4D4340933E01D5DE687020E85 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3157. {
  3158. static bool s_Il2CppMethodInitialized;
  3159. if (!s_Il2CppMethodInitialized)
  3160. {
  3161. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  3162. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3163. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  3164. s_Il2CppMethodInitialized = true;
  3165. }
  3166. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  3167. memset((&V_0), 0, sizeof(V_0));
  3168. bool V_1 = false;
  3169. String_t* V_2 = NULL;
  3170. int32_t G_B3_0 = 0;
  3171. {
  3172. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0;
  3173. L_0 = VirtualFuncInvoker0< NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF >::Invoke(6, __this);
  3174. V_0 = L_0;
  3175. bool L_1;
  3176. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3177. if (!L_1)
  3178. {
  3179. goto IL_001d;
  3180. }
  3181. }
  3182. {
  3183. int32_t L_2;
  3184. L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length);
  3185. G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
  3186. goto IL_001e;
  3187. }
  3188. IL_001d:
  3189. {
  3190. G_B3_0 = 0;
  3191. }
  3192. IL_001e:
  3193. {
  3194. V_1 = (bool)G_B3_0;
  3195. bool L_3 = V_1;
  3196. if (!L_3)
  3197. {
  3198. goto IL_003f;
  3199. }
  3200. }
  3201. {
  3202. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  3203. void* L_5;
  3204. L_5 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_4, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  3205. int32_t L_6;
  3206. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length);
  3207. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  3208. L_7 = DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5(__this, NULL);
  3209. String_t* L_8;
  3210. L_8 = String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339(NULL, (int8_t*)L_5, 0, L_6, L_7, NULL);
  3211. V_2 = L_8;
  3212. goto IL_0047;
  3213. }
  3214. IL_003f:
  3215. {
  3216. V_2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  3217. goto IL_0047;
  3218. }
  3219. IL_0047:
  3220. {
  3221. String_t* L_9 = V_2;
  3222. return L_9;
  3223. }
  3224. }
  3225. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3226. {
  3227. static bool s_Il2CppMethodInitialized;
  3228. if (!s_Il2CppMethodInitialized)
  3229. {
  3230. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
  3231. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571);
  3232. s_Il2CppMethodInitialized = true;
  3233. }
  3234. String_t* V_0 = NULL;
  3235. bool V_1 = false;
  3236. int32_t V_2 = 0;
  3237. bool V_3 = false;
  3238. int32_t V_4 = 0;
  3239. bool V_5 = false;
  3240. String_t* V_6 = NULL;
  3241. int32_t V_7 = 0;
  3242. bool V_8 = false;
  3243. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_9 = NULL;
  3244. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_10 = NULL;
  3245. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* V_11 = NULL;
  3246. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  3247. {
  3248. String_t* L_0;
  3249. L_0 = DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC(__this, NULL);
  3250. V_0 = L_0;
  3251. String_t* L_1 = V_0;
  3252. bool L_2;
  3253. L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL);
  3254. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  3255. bool L_3 = V_1;
  3256. if (!L_3)
  3257. {
  3258. goto IL_00e7;
  3259. }
  3260. }
  3261. {
  3262. String_t* L_4 = V_0;
  3263. NullCheck(L_4);
  3264. int32_t L_5;
  3265. L_5 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_4, _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571, 5, NULL);
  3266. V_2 = L_5;
  3267. int32_t L_6 = V_2;
  3268. V_3 = (bool)((((int32_t)L_6) > ((int32_t)(-1)))? 1 : 0);
  3269. bool L_7 = V_3;
  3270. if (!L_7)
  3271. {
  3272. goto IL_00e6;
  3273. }
  3274. }
  3275. {
  3276. String_t* L_8 = V_0;
  3277. int32_t L_9 = V_2;
  3278. NullCheck(L_8);
  3279. int32_t L_10;
  3280. L_10 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_8, ((int32_t)61), L_9, NULL);
  3281. V_4 = L_10;
  3282. int32_t L_11 = V_4;
  3283. V_5 = (bool)((((int32_t)L_11) > ((int32_t)(-1)))? 1 : 0);
  3284. bool L_12 = V_5;
  3285. if (!L_12)
  3286. {
  3287. goto IL_00e5;
  3288. }
  3289. }
  3290. {
  3291. String_t* L_13 = V_0;
  3292. int32_t L_14 = V_4;
  3293. NullCheck(L_13);
  3294. String_t* L_15;
  3295. L_15 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
  3296. NullCheck(L_15);
  3297. String_t* L_16;
  3298. L_16 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_15, NULL);
  3299. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
  3300. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17;
  3301. NullCheck(L_18);
  3302. (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
  3303. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = L_18;
  3304. NullCheck(L_19);
  3305. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34));
  3306. NullCheck(L_16);
  3307. String_t* L_20;
  3308. L_20 = String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5(L_16, L_19, NULL);
  3309. NullCheck(L_20);
  3310. String_t* L_21;
  3311. L_21 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_20, NULL);
  3312. V_6 = L_21;
  3313. String_t* L_22 = V_6;
  3314. NullCheck(L_22);
  3315. int32_t L_23;
  3316. L_23 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_22, ((int32_t)59), NULL);
  3317. V_7 = L_23;
  3318. int32_t L_24 = V_7;
  3319. V_8 = (bool)((((int32_t)L_24) > ((int32_t)(-1)))? 1 : 0);
  3320. bool L_25 = V_8;
  3321. if (!L_25)
  3322. {
  3323. goto IL_0099;
  3324. }
  3325. }
  3326. {
  3327. String_t* L_26 = V_6;
  3328. int32_t L_27 = V_7;
  3329. NullCheck(L_26);
  3330. String_t* L_28;
  3331. L_28 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_26, 0, L_27, NULL);
  3332. V_6 = L_28;
  3333. }
  3334. IL_0099:
  3335. {
  3336. }
  3337. try
  3338. {
  3339. String_t* L_29 = V_6;
  3340. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_30;
  3341. L_30 = Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187(L_29, NULL);
  3342. V_9 = L_30;
  3343. goto IL_00f0;
  3344. }
  3345. catch(Il2CppExceptionWrapper& e)
  3346. {
  3347. 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)))
  3348. {
  3349. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  3350. goto CATCH_00a6;
  3351. }
  3352. 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)))
  3353. {
  3354. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  3355. goto CATCH_00c5;
  3356. }
  3357. throw e;
  3358. }
  3359. CATCH_00a6:
  3360. {
  3361. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_31 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));;
  3362. V_10 = L_31;
  3363. String_t* L_32 = V_6;
  3364. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_33 = V_10;
  3365. NullCheck(L_33);
  3366. String_t* L_34;
  3367. L_34 = VirtualFuncInvoker0< String_t* >::Invoke(5, L_33);
  3368. String_t* L_35;
  3369. L_35 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_32, L_34, NULL);
  3370. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  3371. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_35, NULL);
  3372. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  3373. goto IL_00e4;
  3374. }
  3375. CATCH_00c5:
  3376. {
  3377. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_36 = ((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*));;
  3378. V_11 = L_36;
  3379. String_t* L_37 = V_6;
  3380. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_38 = V_11;
  3381. NullCheck(L_38);
  3382. String_t* L_39;
  3383. L_39 = VirtualFuncInvoker0< String_t* >::Invoke(5, L_38);
  3384. String_t* L_40;
  3385. L_40 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_37, L_39, NULL);
  3386. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  3387. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_40, NULL);
  3388. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  3389. goto IL_00e4;
  3390. }
  3391. IL_00e4:
  3392. {
  3393. }
  3394. IL_00e5:
  3395. {
  3396. }
  3397. IL_00e6:
  3398. {
  3399. }
  3400. IL_00e7:
  3401. {
  3402. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41;
  3403. L_41 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3404. V_9 = L_41;
  3405. goto IL_00f0;
  3406. }
  3407. IL_00f0:
  3408. {
  3409. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_42 = V_9;
  3410. return L_42;
  3411. }
  3412. }
  3413. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3414. {
  3415. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  3416. memset((&V_0), 0, sizeof(V_0));
  3417. String_t* V_1 = NULL;
  3418. intptr_t G_B2_0;
  3419. memset((&G_B2_0), 0, sizeof(G_B2_0));
  3420. intptr_t G_B1_0;
  3421. memset((&G_B1_0), 0, sizeof(G_B1_0));
  3422. {
  3423. auto __finallyBlock = il2cpp::utils::Finally([&]
  3424. {
  3425. FINALLY_0019:
  3426. {
  3427. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  3428. String_t* L_1;
  3429. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  3430. V_1 = L_1;
  3431. return;
  3432. }
  3433. });
  3434. try
  3435. {
  3436. {
  3437. intptr_t L_2;
  3438. L_2 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(__this, NULL);
  3439. intptr_t L_3 = L_2;
  3440. if (L_3)
  3441. {
  3442. G_B2_0 = L_3;
  3443. goto IL_000f_1;
  3444. }
  3445. G_B1_0 = L_3;
  3446. }
  3447. {
  3448. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  3449. G_B2_0 = G_B1_0;
  3450. }
  3451. IL_000f_1:
  3452. {
  3453. DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9(G_B2_0, (&V_0), NULL);
  3454. goto IL_0021;
  3455. }
  3456. }
  3457. catch(Il2CppExceptionWrapper& e)
  3458. {
  3459. __finallyBlock.StoreException(e.ex);
  3460. }
  3461. }
  3462. IL_0021:
  3463. {
  3464. String_t* L_4 = V_1;
  3465. return L_4;
  3466. }
  3467. }
  3468. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DownloadHandler_ReceiveData_mF892EB77524A60DF1F82A2DA00F17BECB480CD93 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_dataLength, const RuntimeMethod* method)
  3469. {
  3470. bool V_0 = false;
  3471. {
  3472. V_0 = (bool)1;
  3473. goto IL_0005;
  3474. }
  3475. IL_0005:
  3476. {
  3477. bool L_0 = V_0;
  3478. return L_0;
  3479. }
  3480. }
  3481. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLengthHeader_m545073C4FB5AB9BB6640D24FC2F32070E5FE3F17 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, uint64_t ___0_contentLength, const RuntimeMethod* method)
  3482. {
  3483. {
  3484. uint64_t L_0 = ___0_contentLength;
  3485. VirtualActionInvoker1< int32_t >::Invoke(11, __this, ((int32_t)L_0));
  3486. return;
  3487. }
  3488. }
  3489. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLength_m058DE0B56C3EBE8ECE3F9570852024EE2A84DE4F (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, int32_t ___0_contentLength, const RuntimeMethod* method)
  3490. {
  3491. {
  3492. return;
  3493. }
  3494. }
  3495. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CompleteContent_m0FFC337906FF9BF8BDD546906D48DA57F52F81CA (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3496. {
  3497. {
  3498. return;
  3499. }
  3500. }
  3501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DownloadHandler_GetProgress_mB440AC38C72F2E14DD53259E1D0C9D7612F0791F (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  3502. {
  3503. float V_0 = 0.0f;
  3504. {
  3505. V_0 = (0.0f);
  3506. goto IL_0009;
  3507. }
  3508. IL_0009:
  3509. {
  3510. float L_0 = V_0;
  3511. return L_0;
  3512. }
  3513. }
  3514. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method)
  3515. {
  3516. intptr_t G_B3_0;
  3517. memset((&G_B3_0), 0, sizeof(G_B3_0));
  3518. {
  3519. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  3520. if (!L_0)
  3521. {
  3522. goto IL_000b;
  3523. }
  3524. }
  3525. {
  3526. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_1 = ___0_dh;
  3527. intptr_t L_2;
  3528. L_2 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(L_1, NULL);
  3529. G_B3_0 = L_2;
  3530. goto IL_000e;
  3531. }
  3532. IL_000b:
  3533. {
  3534. G_B3_0 = ((intptr_t)0);
  3535. }
  3536. IL_000e:
  3537. {
  3538. int32_t* L_3 = ___1_length;
  3539. uint8_t* L_4;
  3540. L_4 = DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E(G_B3_0, L_3, NULL);
  3541. return L_4;
  3542. }
  3543. }
  3544. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_InternalGetByteArray_m27F42C529228C204142EEF609AD8E96E7FC38CF6 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method)
  3545. {
  3546. static bool s_Il2CppMethodInitialized;
  3547. if (!s_Il2CppMethodInitialized)
  3548. {
  3549. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_RuntimeMethod_var);
  3550. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3551. s_Il2CppMethodInitialized = true;
  3552. }
  3553. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  3554. memset((&V_0), 0, sizeof(V_0));
  3555. bool V_1 = false;
  3556. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
  3557. {
  3558. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  3559. NullCheck(L_0);
  3560. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
  3561. L_1 = VirtualFuncInvoker0< NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF >::Invoke(6, L_0);
  3562. V_0 = L_1;
  3563. bool L_2;
  3564. L_2 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3565. V_1 = L_2;
  3566. bool L_3 = V_1;
  3567. if (!L_3)
  3568. {
  3569. goto IL_001d;
  3570. }
  3571. }
  3572. {
  3573. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  3574. L_4 = NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F((&V_0), NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_RuntimeMethod_var);
  3575. V_2 = L_4;
  3576. goto IL_0021;
  3577. }
  3578. IL_001d:
  3579. {
  3580. V_2 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  3581. goto IL_0021;
  3582. }
  3583. IL_0021:
  3584. {
  3585. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_2;
  3586. return L_5;
  3587. }
  3588. }
  3589. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method)
  3590. {
  3591. static bool s_Il2CppMethodInitialized;
  3592. if (!s_Il2CppMethodInitialized)
  3593. {
  3594. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3595. s_Il2CppMethodInitialized = true;
  3596. }
  3597. int32_t V_0 = 0;
  3598. uint8_t* V_1 = NULL;
  3599. bool V_2 = false;
  3600. bool V_3 = false;
  3601. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
  3602. memset((&V_4), 0, sizeof(V_4));
  3603. {
  3604. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  3605. uint8_t* L_1;
  3606. L_1 = DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302(L_0, (&V_0), NULL);
  3607. V_1 = L_1;
  3608. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = ___1_nativeArray;
  3609. bool L_3;
  3610. L_3 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_2, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3611. V_2 = L_3;
  3612. bool L_4 = V_2;
  3613. if (!L_4)
  3614. {
  3615. goto IL_0035;
  3616. }
  3617. }
  3618. {
  3619. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_5 = ___1_nativeArray;
  3620. int32_t L_6;
  3621. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_5)->___m_Length);
  3622. int32_t L_7 = V_0;
  3623. V_3 = (bool)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0);
  3624. bool L_8 = V_3;
  3625. if (!L_8)
  3626. {
  3627. goto IL_002d;
  3628. }
  3629. }
  3630. {
  3631. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_9 = ___1_nativeArray;
  3632. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_10 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_9);
  3633. V_4 = L_10;
  3634. goto IL_0048;
  3635. }
  3636. IL_002d:
  3637. {
  3638. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_11 = ___1_nativeArray;
  3639. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_11, NULL);
  3640. }
  3641. IL_0035:
  3642. {
  3643. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_12 = ___1_nativeArray;
  3644. uint8_t* L_13 = V_1;
  3645. int32_t L_14 = V_0;
  3646. DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE(L_12, L_13, L_14, NULL);
  3647. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_15 = ___1_nativeArray;
  3648. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_16 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_15);
  3649. V_4 = L_16;
  3650. goto IL_0048;
  3651. }
  3652. IL_0048:
  3653. {
  3654. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_17 = V_4;
  3655. return L_17;
  3656. }
  3657. }
  3658. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method)
  3659. {
  3660. static bool s_Il2CppMethodInitialized;
  3661. if (!s_Il2CppMethodInitialized)
  3662. {
  3663. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3664. s_Il2CppMethodInitialized = true;
  3665. }
  3666. bool V_0 = false;
  3667. {
  3668. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  3669. bool L_1;
  3670. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  3671. V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  3672. bool L_2 = V_0;
  3673. if (!L_2)
  3674. {
  3675. goto IL_0010;
  3676. }
  3677. }
  3678. {
  3679. goto IL_0017;
  3680. }
  3681. IL_0010:
  3682. {
  3683. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = ___0_data;
  3684. il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  3685. }
  3686. IL_0017:
  3687. {
  3688. return;
  3689. }
  3690. }
  3691. 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)
  3692. {
  3693. static bool s_Il2CppMethodInitialized;
  3694. if (!s_Il2CppMethodInitialized)
  3695. {
  3696. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  3697. s_Il2CppMethodInitialized = true;
  3698. }
  3699. {
  3700. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  3701. uint8_t* L_1 = ___1_bytes;
  3702. int32_t L_2 = ___2_length;
  3703. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  3704. L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA((void*)L_1, L_2, 4, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  3705. *(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_0 = L_3;
  3706. return;
  3707. }
  3708. }
  3709. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B (intptr_t ___0__unity_self, const RuntimeMethod* method)
  3710. {
  3711. typedef void (*DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B_ftn) (intptr_t);
  3712. static DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B_ftn _il2cpp_icall_func;
  3713. if (!_il2cpp_icall_func)
  3714. _il2cpp_icall_func = (DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::ReleaseFromScripting_Injected(System.IntPtr)");
  3715. _il2cpp_icall_func(___0__unity_self);
  3716. }
  3717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  3718. {
  3719. typedef void (*DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  3720. static DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9_ftn _il2cpp_icall_func;
  3721. if (!_il2cpp_icall_func)
  3722. _il2cpp_icall_func = (DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  3723. _il2cpp_icall_func(___0__unity_self, ___1_ret);
  3724. }
  3725. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E (intptr_t ___0_dh, int32_t* ___1_length, const RuntimeMethod* method)
  3726. {
  3727. typedef uint8_t* (*DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E_ftn) (intptr_t, int32_t*);
  3728. static DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E_ftn _il2cpp_icall_func;
  3729. if (!_il2cpp_icall_func)
  3730. _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray_Injected(System.IntPtr,System.Int32&)");
  3731. uint8_t* icallRetVal = _il2cpp_icall_func(___0_dh, ___1_length);
  3732. return icallRetVal;
  3733. }
  3734. #ifdef __clang__
  3735. #pragma clang diagnostic pop
  3736. #endif
  3737. #ifdef __clang__
  3738. #pragma clang diagnostic push
  3739. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3740. #pragma clang diagnostic ignored "-Wunused-variable"
  3741. #endif
  3742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_handler, const RuntimeMethod* method)
  3743. {
  3744. {
  3745. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_handler;
  3746. NullCheck(L_0);
  3747. intptr_t L_1 = L_0->___m_Ptr;
  3748. return L_1;
  3749. }
  3750. }
  3751. #ifdef __clang__
  3752. #pragma clang diagnostic pop
  3753. #endif
  3754. #ifdef __clang__
  3755. #pragma clang diagnostic push
  3756. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3757. #pragma clang diagnostic ignored "-Wunused-variable"
  3758. #endif
  3759. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  3760. {
  3761. marshaled.___m_NativeData = unmarshaled.___m_NativeData;
  3762. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  3763. }
  3764. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  3765. {
  3766. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  3767. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  3768. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData;
  3769. unmarshaled.___m_NativeData = unmarshaledm_NativeData_temp_0;
  3770. intptr_t unmarshaledm_Ptr_temp_1;
  3771. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  3772. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr;
  3773. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_1;
  3774. }
  3775. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  3776. {
  3777. }
  3778. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  3779. {
  3780. marshaled.___m_NativeData = unmarshaled.___m_NativeData;
  3781. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  3782. }
  3783. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  3784. {
  3785. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  3786. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  3787. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData;
  3788. unmarshaled.___m_NativeData = unmarshaledm_NativeData_temp_0;
  3789. intptr_t unmarshaledm_Ptr_temp_1;
  3790. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  3791. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr;
  3792. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_1;
  3793. }
  3794. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  3795. {
  3796. }
  3797. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method)
  3798. {
  3799. typedef intptr_t (*DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn) (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*);
  3800. static DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn _il2cpp_icall_func;
  3801. if (!_il2cpp_icall_func)
  3802. _il2cpp_icall_func = (DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)");
  3803. intptr_t icallRetVal = _il2cpp_icall_func(___0_obj);
  3804. return icallRetVal;
  3805. }
  3806. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  3807. {
  3808. {
  3809. intptr_t L_0;
  3810. L_0 = DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985(__this, NULL);
  3811. ((DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)__this)->___m_Ptr = L_0;
  3812. return;
  3813. }
  3814. }
  3815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  3816. {
  3817. {
  3818. DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496(__this, NULL);
  3819. DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053(__this, NULL);
  3820. return;
  3821. }
  3822. }
  3823. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandlerBuffer_GetNativeData_m0CA5C7DDC84622499CFED57069526BCDD240C28F (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  3824. {
  3825. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  3826. memset((&V_0), 0, sizeof(V_0));
  3827. {
  3828. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_NativeData);
  3829. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
  3830. L_1 = DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89(__this, L_0, NULL);
  3831. V_0 = L_1;
  3832. goto IL_0010;
  3833. }
  3834. IL_0010:
  3835. {
  3836. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2 = V_0;
  3837. return L_2;
  3838. }
  3839. }
  3840. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_Dispose_m5B47B0183194D920B76BDC9001C3FE81A73D9D39 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  3841. {
  3842. {
  3843. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_NativeData);
  3844. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_0, NULL);
  3845. DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607(__this, NULL);
  3846. return;
  3847. }
  3848. }
  3849. #ifdef __clang__
  3850. #pragma clang diagnostic pop
  3851. #endif
  3852. #ifdef __clang__
  3853. #pragma clang diagnostic push
  3854. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3855. #pragma clang diagnostic ignored "-Wunused-variable"
  3856. #endif
  3857. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  3858. {
  3859. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  3860. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  3861. }
  3862. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  3863. {
  3864. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  3865. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  3866. }
  3867. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  3868. {
  3869. }
  3870. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  3871. {
  3872. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  3873. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  3874. }
  3875. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  3876. {
  3877. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  3878. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  3879. }
  3880. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  3881. {
  3882. }
  3883. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m4F125AF4AF1E13484E55EAA64570FA3967117F64 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
  3884. {
  3885. {
  3886. intptr_t L_0 = ___0_ptr;
  3887. AsyncOperation__ctor_m7D2C724BC0CC2C320E5A9357418BB639E5F74475(__this, L_0, NULL);
  3888. return;
  3889. }
  3890. }
  3891. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  3892. {
  3893. {
  3894. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  3895. __this->___U3CwebRequestU3Ek__BackingField = L_0;
  3896. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField), (void*)L_0);
  3897. return;
  3898. }
  3899. }
  3900. #ifdef __clang__
  3901. #pragma clang diagnostic pop
  3902. #endif
  3903. #ifdef __clang__
  3904. #pragma clang diagnostic push
  3905. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3906. #pragma clang diagnostic ignored "-Wunused-variable"
  3907. #endif
  3908. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* BindingsMarshaller_ConvertToManaged_m46517862C68703D5EBFDF6A2B6C7B10BE0AE54C8 (intptr_t ___0_ptr, const RuntimeMethod* method)
  3909. {
  3910. static bool s_Il2CppMethodInitialized;
  3911. if (!s_Il2CppMethodInitialized)
  3912. {
  3913. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_il2cpp_TypeInfo_var);
  3914. s_Il2CppMethodInitialized = true;
  3915. }
  3916. {
  3917. intptr_t L_0 = ___0_ptr;
  3918. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_1 = (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)il2cpp_codegen_object_new(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_il2cpp_TypeInfo_var);
  3919. UnityWebRequestAsyncOperation__ctor_m4F125AF4AF1E13484E55EAA64570FA3967117F64(L_1, L_0, NULL);
  3920. return L_1;
  3921. }
  3922. }
  3923. #ifdef __clang__
  3924. #pragma clang diagnostic pop
  3925. #endif
  3926. #ifdef __clang__
  3927. #pragma clang diagnostic push
  3928. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3929. #pragma clang diagnostic ignored "-Wunused-variable"
  3930. #endif
  3931. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  3932. {
  3933. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3934. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  3935. }
  3936. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  3937. {
  3938. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3939. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  3940. }
  3941. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  3942. {
  3943. }
  3944. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  3945. {
  3946. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3947. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  3948. }
  3949. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  3950. {
  3951. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3952. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  3953. }
  3954. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  3955. {
  3956. }
  3957. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method)
  3958. {
  3959. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  3960. memset((&V_0), 0, sizeof(V_0));
  3961. String_t* V_1 = NULL;
  3962. {
  3963. auto __finallyBlock = il2cpp::utils::Finally([&]
  3964. {
  3965. FINALLY_000a:
  3966. {
  3967. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  3968. String_t* L_1;
  3969. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  3970. V_1 = L_1;
  3971. return;
  3972. }
  3973. });
  3974. try
  3975. {
  3976. int32_t L_2 = ___0_err;
  3977. UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6(L_2, (&V_0), NULL);
  3978. goto IL_0012;
  3979. }
  3980. catch(Il2CppExceptionWrapper& e)
  3981. {
  3982. __finallyBlock.StoreException(e.ex);
  3983. }
  3984. }
  3985. IL_0012:
  3986. {
  3987. String_t* L_3 = V_1;
  3988. return L_3;
  3989. }
  3990. }
  3991. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method)
  3992. {
  3993. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  3994. memset((&V_0), 0, sizeof(V_0));
  3995. String_t* V_1 = NULL;
  3996. {
  3997. auto __finallyBlock = il2cpp::utils::Finally([&]
  3998. {
  3999. FINALLY_000a:
  4000. {
  4001. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  4002. String_t* L_1;
  4003. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  4004. V_1 = L_1;
  4005. return;
  4006. }
  4007. });
  4008. try
  4009. {
  4010. int64_t L_2 = ___0_responseCode;
  4011. UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7(L_2, (&V_0), NULL);
  4012. goto IL_0012;
  4013. }
  4014. catch(Il2CppExceptionWrapper& e)
  4015. {
  4016. __finallyBlock.StoreException(e.ex);
  4017. }
  4018. }
  4019. IL_0012:
  4020. {
  4021. String_t* L_3 = V_1;
  4022. return L_3;
  4023. }
  4024. }
  4025. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4026. {
  4027. {
  4028. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  4029. return L_0;
  4030. }
  4031. }
  4032. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4033. {
  4034. {
  4035. bool L_0 = ___0_value;
  4036. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField = L_0;
  4037. return;
  4038. }
  4039. }
  4040. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4041. {
  4042. {
  4043. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  4044. return L_0;
  4045. }
  4046. }
  4047. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4048. {
  4049. {
  4050. bool L_0 = ___0_value;
  4051. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField = L_0;
  4052. return;
  4053. }
  4054. }
  4055. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4056. {
  4057. {
  4058. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  4059. return L_0;
  4060. }
  4061. }
  4062. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4063. {
  4064. {
  4065. bool L_0 = ___0_value;
  4066. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField = L_0;
  4067. return;
  4068. }
  4069. }
  4070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method)
  4071. {
  4072. typedef intptr_t (*UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn) ();
  4073. static UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn _il2cpp_icall_func;
  4074. if (!_il2cpp_icall_func)
  4075. _il2cpp_icall_func = (UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()");
  4076. intptr_t icallRetVal = _il2cpp_icall_func();
  4077. return icallRetVal;
  4078. }
  4079. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4080. {
  4081. intptr_t G_B2_0;
  4082. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4083. intptr_t G_B1_0;
  4084. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4085. {
  4086. intptr_t L_0;
  4087. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4088. intptr_t L_1 = L_0;
  4089. if (L_1)
  4090. {
  4091. G_B2_0 = L_1;
  4092. goto IL_000f;
  4093. }
  4094. G_B1_0 = L_1;
  4095. }
  4096. {
  4097. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4098. G_B2_0 = G_B1_0;
  4099. }
  4100. IL_000f:
  4101. {
  4102. UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991(G_B2_0, NULL);
  4103. return;
  4104. }
  4105. }
  4106. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4107. {
  4108. bool V_0 = false;
  4109. {
  4110. intptr_t L_0 = __this->___m_Ptr;
  4111. bool L_1;
  4112. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  4113. V_0 = L_1;
  4114. bool L_2 = V_0;
  4115. if (!L_2)
  4116. {
  4117. goto IL_0030;
  4118. }
  4119. }
  4120. {
  4121. UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B(__this, NULL);
  4122. UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2(__this, NULL);
  4123. __this->___m_Ptr = 0;
  4124. }
  4125. IL_0030:
  4126. {
  4127. return;
  4128. }
  4129. }
  4130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4131. {
  4132. {
  4133. UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline(__this, (bool)1, NULL);
  4134. UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline(__this, (bool)1, NULL);
  4135. UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline(__this, (bool)1, NULL);
  4136. return;
  4137. }
  4138. }
  4139. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method)
  4140. {
  4141. {
  4142. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4143. intptr_t L_0;
  4144. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  4145. __this->___m_Ptr = L_0;
  4146. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  4147. String_t* L_1 = ___0_url;
  4148. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  4149. String_t* L_2 = ___1_method;
  4150. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  4151. return;
  4152. }
  4153. }
  4154. 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)
  4155. {
  4156. {
  4157. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4158. intptr_t L_0;
  4159. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  4160. __this->___m_Ptr = L_0;
  4161. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  4162. String_t* L_1 = ___0_url;
  4163. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  4164. String_t* L_2 = ___1_method;
  4165. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  4166. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___2_downloadHandler;
  4167. UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F(__this, L_3, NULL);
  4168. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_4 = ___3_uploadHandler;
  4169. UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE(__this, L_4, NULL);
  4170. return;
  4171. }
  4172. }
  4173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_m7F9D075432280A6CFF21BC2B5C35BFA752FF6ED8 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4174. {
  4175. {
  4176. }
  4177. {
  4178. auto __finallyBlock = il2cpp::utils::Finally([&]
  4179. {
  4180. FINALLY_0012:
  4181. {
  4182. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  4183. return;
  4184. }
  4185. });
  4186. try
  4187. {
  4188. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  4189. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  4190. goto IL_001a;
  4191. }
  4192. catch(Il2CppExceptionWrapper& e)
  4193. {
  4194. __finallyBlock.StoreException(e.ex);
  4195. }
  4196. }
  4197. IL_001a:
  4198. {
  4199. return;
  4200. }
  4201. }
  4202. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m9F43494C0FEA530A97D3F2AF3D425CCC7670753A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4203. {
  4204. static bool s_Il2CppMethodInitialized;
  4205. if (!s_Il2CppMethodInitialized)
  4206. {
  4207. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  4208. s_Il2CppMethodInitialized = true;
  4209. }
  4210. {
  4211. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  4212. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  4213. il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  4214. GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
  4215. return;
  4216. }
  4217. }
  4218. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4219. {
  4220. bool V_0 = false;
  4221. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_1 = NULL;
  4222. bool V_2 = false;
  4223. bool V_3 = false;
  4224. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_4 = NULL;
  4225. bool V_5 = false;
  4226. bool V_6 = false;
  4227. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_7 = NULL;
  4228. bool V_8 = false;
  4229. {
  4230. bool L_0;
  4231. L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline(__this, NULL);
  4232. V_0 = L_0;
  4233. bool L_1 = V_0;
  4234. if (!L_1)
  4235. {
  4236. goto IL_0025;
  4237. }
  4238. }
  4239. {
  4240. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_2;
  4241. L_2 = UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5(__this, NULL);
  4242. V_1 = L_2;
  4243. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = V_1;
  4244. V_2 = (bool)((!(((RuntimeObject*)(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4245. bool L_4 = V_2;
  4246. if (!L_4)
  4247. {
  4248. goto IL_0024;
  4249. }
  4250. }
  4251. {
  4252. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_5 = V_1;
  4253. NullCheck(L_5);
  4254. VirtualActionInvoker0::Invoke(5, L_5);
  4255. }
  4256. IL_0024:
  4257. {
  4258. }
  4259. IL_0025:
  4260. {
  4261. bool L_6;
  4262. L_6 = UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline(__this, NULL);
  4263. V_3 = L_6;
  4264. bool L_7 = V_3;
  4265. if (!L_7)
  4266. {
  4267. goto IL_004e;
  4268. }
  4269. }
  4270. {
  4271. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_8;
  4272. L_8 = UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5(__this, NULL);
  4273. V_4 = L_8;
  4274. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_9 = V_4;
  4275. V_5 = (bool)((!(((RuntimeObject*)(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4276. bool L_10 = V_5;
  4277. if (!L_10)
  4278. {
  4279. goto IL_004d;
  4280. }
  4281. }
  4282. {
  4283. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_11 = V_4;
  4284. NullCheck(L_11);
  4285. VirtualActionInvoker0::Invoke(4, L_11);
  4286. }
  4287. IL_004d:
  4288. {
  4289. }
  4290. IL_004e:
  4291. {
  4292. bool L_12;
  4293. L_12 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline(__this, NULL);
  4294. V_6 = L_12;
  4295. bool L_13 = V_6;
  4296. if (!L_13)
  4297. {
  4298. goto IL_0079;
  4299. }
  4300. }
  4301. {
  4302. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_14;
  4303. L_14 = UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D(__this, NULL);
  4304. V_7 = L_14;
  4305. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_15 = V_7;
  4306. V_8 = (bool)((!(((RuntimeObject*)(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4307. bool L_16 = V_8;
  4308. if (!L_16)
  4309. {
  4310. goto IL_0078;
  4311. }
  4312. }
  4313. {
  4314. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_17 = V_7;
  4315. NullCheck(L_17);
  4316. CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43(L_17, NULL);
  4317. }
  4318. IL_0078:
  4319. {
  4320. }
  4321. IL_0079:
  4322. {
  4323. return;
  4324. }
  4325. }
  4326. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4327. {
  4328. intptr_t G_B2_0;
  4329. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4330. intptr_t G_B1_0;
  4331. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4332. intptr_t G_B4_0;
  4333. memset((&G_B4_0), 0, sizeof(G_B4_0));
  4334. intptr_t G_B3_0;
  4335. memset((&G_B3_0), 0, sizeof(G_B3_0));
  4336. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* G_B5_0 = NULL;
  4337. {
  4338. intptr_t L_0;
  4339. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4340. intptr_t L_1 = L_0;
  4341. if (L_1)
  4342. {
  4343. G_B2_0 = L_1;
  4344. goto IL_000f;
  4345. }
  4346. G_B1_0 = L_1;
  4347. }
  4348. {
  4349. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4350. G_B2_0 = G_B1_0;
  4351. }
  4352. IL_000f:
  4353. {
  4354. intptr_t L_2;
  4355. L_2 = UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629(G_B2_0, NULL);
  4356. intptr_t L_3 = L_2;
  4357. if (!L_3)
  4358. {
  4359. G_B4_0 = L_3;
  4360. goto IL_001f;
  4361. }
  4362. G_B3_0 = L_3;
  4363. }
  4364. {
  4365. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_4;
  4366. L_4 = BindingsMarshaller_ConvertToManaged_m46517862C68703D5EBFDF6A2B6C7B10BE0AE54C8(G_B3_0, NULL);
  4367. G_B5_0 = L_4;
  4368. goto IL_0022;
  4369. }
  4370. IL_001f:
  4371. {
  4372. G_B5_0 = ((UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)(NULL));
  4373. }
  4374. IL_0022:
  4375. {
  4376. return G_B5_0;
  4377. }
  4378. }
  4379. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_SendWebRequest_mA3CD13983BAA5074A0640EDD661B1E46E6DB6C13 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4380. {
  4381. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_0 = NULL;
  4382. bool V_1 = false;
  4383. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_2 = NULL;
  4384. {
  4385. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_0;
  4386. L_0 = UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D(__this, NULL);
  4387. V_0 = L_0;
  4388. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_1 = V_0;
  4389. V_1 = (bool)((!(((RuntimeObject*)(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4390. bool L_2 = V_1;
  4391. if (!L_2)
  4392. {
  4393. goto IL_0018;
  4394. }
  4395. }
  4396. {
  4397. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_3 = V_0;
  4398. NullCheck(L_3);
  4399. UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline(L_3, __this, NULL);
  4400. }
  4401. IL_0018:
  4402. {
  4403. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_4 = V_0;
  4404. V_2 = L_4;
  4405. goto IL_001c;
  4406. }
  4407. IL_001c:
  4408. {
  4409. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_5 = V_2;
  4410. return L_5;
  4411. }
  4412. }
  4413. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4414. {
  4415. intptr_t G_B2_0;
  4416. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4417. intptr_t G_B1_0;
  4418. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4419. {
  4420. intptr_t L_0;
  4421. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4422. intptr_t L_1 = L_0;
  4423. if (L_1)
  4424. {
  4425. G_B2_0 = L_1;
  4426. goto IL_000f;
  4427. }
  4428. G_B1_0 = L_1;
  4429. }
  4430. {
  4431. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4432. G_B2_0 = G_B1_0;
  4433. }
  4434. IL_000f:
  4435. {
  4436. UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01(G_B2_0, NULL);
  4437. return;
  4438. }
  4439. }
  4440. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  4441. {
  4442. intptr_t G_B2_0;
  4443. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4444. intptr_t G_B1_0;
  4445. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4446. {
  4447. intptr_t L_0;
  4448. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4449. intptr_t L_1 = L_0;
  4450. if (L_1)
  4451. {
  4452. G_B2_0 = L_1;
  4453. goto IL_000f;
  4454. }
  4455. G_B1_0 = L_1;
  4456. }
  4457. {
  4458. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4459. G_B2_0 = G_B1_0;
  4460. }
  4461. IL_000f:
  4462. {
  4463. int32_t L_2 = ___0_methodType;
  4464. int32_t L_3;
  4465. L_3 = UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF(G_B2_0, L_2, NULL);
  4466. return L_3;
  4467. }
  4468. }
  4469. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  4470. {
  4471. int32_t V_0 = 0;
  4472. bool V_1 = false;
  4473. bool V_2 = false;
  4474. {
  4475. bool L_0;
  4476. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  4477. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4478. bool L_1 = V_1;
  4479. if (!L_1)
  4480. {
  4481. goto IL_0019;
  4482. }
  4483. }
  4484. {
  4485. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  4486. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  4487. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  4488. }
  4489. IL_0019:
  4490. {
  4491. int32_t L_3 = ___0_methodType;
  4492. int32_t L_4;
  4493. L_4 = UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238(__this, L_3, NULL);
  4494. V_0 = L_4;
  4495. int32_t L_5 = V_0;
  4496. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  4497. bool L_6 = V_2;
  4498. if (!L_6)
  4499. {
  4500. goto IL_0035;
  4501. }
  4502. }
  4503. {
  4504. int32_t L_7 = V_0;
  4505. String_t* L_8;
  4506. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  4507. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  4508. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  4509. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  4510. }
  4511. IL_0035:
  4512. {
  4513. return;
  4514. }
  4515. }
  4516. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  4517. {
  4518. static bool s_Il2CppMethodInitialized;
  4519. if (!s_Il2CppMethodInitialized)
  4520. {
  4521. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  4522. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  4523. s_Il2CppMethodInitialized = true;
  4524. }
  4525. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  4526. memset((&V_0), 0, sizeof(V_0));
  4527. Il2CppChar* V_1 = NULL;
  4528. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  4529. memset((&V_2), 0, sizeof(V_2));
  4530. int32_t V_3 = 0;
  4531. intptr_t G_B2_0;
  4532. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4533. intptr_t G_B1_0;
  4534. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4535. intptr_t G_B4_0;
  4536. memset((&G_B4_0), 0, sizeof(G_B4_0));
  4537. intptr_t G_B3_0;
  4538. memset((&G_B3_0), 0, sizeof(G_B3_0));
  4539. {
  4540. auto __finallyBlock = il2cpp::utils::Finally([&]
  4541. {
  4542. FINALLY_0044:
  4543. {
  4544. V_1 = (Il2CppChar*)((uintptr_t)0);
  4545. return;
  4546. }
  4547. });
  4548. try
  4549. {
  4550. {
  4551. intptr_t L_0;
  4552. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4553. intptr_t L_1 = L_0;
  4554. if (L_1)
  4555. {
  4556. G_B2_0 = L_1;
  4557. goto IL_000f_1;
  4558. }
  4559. G_B1_0 = L_1;
  4560. }
  4561. {
  4562. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4563. G_B2_0 = G_B1_0;
  4564. }
  4565. IL_000f_1:
  4566. {
  4567. String_t* L_2 = ___0_customMethodName;
  4568. bool L_3;
  4569. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  4570. if (L_3)
  4571. {
  4572. G_B4_0 = G_B2_0;
  4573. goto IL_0039_1;
  4574. }
  4575. G_B3_0 = G_B2_0;
  4576. }
  4577. {
  4578. String_t* L_4 = ___0_customMethodName;
  4579. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  4580. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  4581. V_0 = L_5;
  4582. Il2CppChar* L_6;
  4583. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  4584. V_1 = L_6;
  4585. Il2CppChar* L_7 = V_1;
  4586. int32_t L_8;
  4587. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  4588. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  4589. G_B4_0 = G_B3_0;
  4590. }
  4591. IL_0039_1:
  4592. {
  4593. int32_t L_9;
  4594. L_9 = UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322(G_B4_0, (&V_2), NULL);
  4595. V_3 = L_9;
  4596. goto IL_0048;
  4597. }
  4598. }
  4599. catch(Il2CppExceptionWrapper& e)
  4600. {
  4601. __finallyBlock.StoreException(e.ex);
  4602. }
  4603. }
  4604. IL_0048:
  4605. {
  4606. int32_t L_10 = V_3;
  4607. return L_10;
  4608. }
  4609. }
  4610. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  4611. {
  4612. int32_t V_0 = 0;
  4613. bool V_1 = false;
  4614. bool V_2 = false;
  4615. {
  4616. bool L_0;
  4617. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  4618. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4619. bool L_1 = V_1;
  4620. if (!L_1)
  4621. {
  4622. goto IL_0019;
  4623. }
  4624. }
  4625. {
  4626. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  4627. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  4628. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  4629. }
  4630. IL_0019:
  4631. {
  4632. String_t* L_3 = ___0_customMethodName;
  4633. int32_t L_4;
  4634. L_4 = UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB(__this, L_3, NULL);
  4635. V_0 = L_4;
  4636. int32_t L_5 = V_0;
  4637. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  4638. bool L_6 = V_2;
  4639. if (!L_6)
  4640. {
  4641. goto IL_0035;
  4642. }
  4643. }
  4644. {
  4645. int32_t L_7 = V_0;
  4646. String_t* L_8;
  4647. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  4648. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  4649. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  4650. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  4651. }
  4652. IL_0035:
  4653. {
  4654. return;
  4655. }
  4656. }
  4657. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  4658. {
  4659. static bool s_Il2CppMethodInitialized;
  4660. if (!s_Il2CppMethodInitialized)
  4661. {
  4662. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708);
  4663. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  4664. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  4665. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  4666. s_Il2CppMethodInitialized = true;
  4667. }
  4668. bool V_0 = false;
  4669. String_t* V_1 = NULL;
  4670. String_t* V_2 = NULL;
  4671. {
  4672. String_t* L_0 = ___0_value;
  4673. bool L_1;
  4674. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  4675. V_0 = L_1;
  4676. bool L_2 = V_0;
  4677. if (!L_2)
  4678. {
  4679. goto IL_0017;
  4680. }
  4681. }
  4682. {
  4683. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  4684. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E)), NULL);
  4685. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var)));
  4686. }
  4687. IL_0017:
  4688. {
  4689. String_t* L_4 = ___0_value;
  4690. NullCheck(L_4);
  4691. String_t* L_5;
  4692. L_5 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_4, NULL);
  4693. V_2 = L_5;
  4694. String_t* L_6 = V_2;
  4695. V_1 = L_6;
  4696. String_t* L_7 = V_1;
  4697. bool L_8;
  4698. L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
  4699. if (L_8)
  4700. {
  4701. goto IL_0056;
  4702. }
  4703. }
  4704. {
  4705. String_t* L_9 = V_1;
  4706. bool L_10;
  4707. L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  4708. if (L_10)
  4709. {
  4710. goto IL_0060;
  4711. }
  4712. }
  4713. {
  4714. String_t* L_11 = V_1;
  4715. bool L_12;
  4716. L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708, NULL);
  4717. if (L_12)
  4718. {
  4719. goto IL_006a;
  4720. }
  4721. }
  4722. {
  4723. String_t* L_13 = V_1;
  4724. bool L_14;
  4725. L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_13, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  4726. if (L_14)
  4727. {
  4728. goto IL_0074;
  4729. }
  4730. }
  4731. {
  4732. goto IL_007e;
  4733. }
  4734. IL_0056:
  4735. {
  4736. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 0, NULL);
  4737. goto IL_008d;
  4738. }
  4739. IL_0060:
  4740. {
  4741. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 1, NULL);
  4742. goto IL_008d;
  4743. }
  4744. IL_006a:
  4745. {
  4746. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 2, NULL);
  4747. goto IL_008d;
  4748. }
  4749. IL_0074:
  4750. {
  4751. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 3, NULL);
  4752. goto IL_008d;
  4753. }
  4754. IL_007e:
  4755. {
  4756. String_t* L_15 = ___0_value;
  4757. NullCheck(L_15);
  4758. String_t* L_16;
  4759. L_16 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_15, NULL);
  4760. UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40(__this, L_16, NULL);
  4761. goto IL_008d;
  4762. }
  4763. IL_008d:
  4764. {
  4765. return;
  4766. }
  4767. }
  4768. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4769. {
  4770. intptr_t G_B2_0;
  4771. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4772. intptr_t G_B1_0;
  4773. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4774. {
  4775. intptr_t L_0;
  4776. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4777. intptr_t L_1 = L_0;
  4778. if (L_1)
  4779. {
  4780. G_B2_0 = L_1;
  4781. goto IL_000f;
  4782. }
  4783. G_B1_0 = L_1;
  4784. }
  4785. {
  4786. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4787. G_B2_0 = G_B1_0;
  4788. }
  4789. IL_000f:
  4790. {
  4791. int32_t L_2;
  4792. L_2 = UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C(G_B2_0, NULL);
  4793. return L_2;
  4794. }
  4795. }
  4796. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_m20A5D813ED59118B7AA1D1E2EB5250178B1F5B6F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4797. {
  4798. static bool s_Il2CppMethodInitialized;
  4799. if (!s_Il2CppMethodInitialized)
  4800. {
  4801. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C);
  4802. s_Il2CppMethodInitialized = true;
  4803. }
  4804. int32_t V_0 = 0;
  4805. int32_t V_1 = 0;
  4806. String_t* V_2 = NULL;
  4807. {
  4808. int32_t L_0;
  4809. L_0 = UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449(__this, NULL);
  4810. V_1 = L_0;
  4811. int32_t L_1 = V_1;
  4812. V_0 = L_1;
  4813. int32_t L_2 = V_0;
  4814. if ((!(((uint32_t)L_2) > ((uint32_t)1))))
  4815. {
  4816. goto IL_0016;
  4817. }
  4818. }
  4819. {
  4820. goto IL_0010;
  4821. }
  4822. IL_0010:
  4823. {
  4824. int32_t L_3 = V_0;
  4825. if ((((int32_t)L_3) == ((int32_t)3)))
  4826. {
  4827. goto IL_001a;
  4828. }
  4829. }
  4830. {
  4831. goto IL_003d;
  4832. }
  4833. IL_0016:
  4834. {
  4835. V_2 = (String_t*)NULL;
  4836. goto IL_004b;
  4837. }
  4838. IL_001a:
  4839. {
  4840. int64_t L_4;
  4841. L_4 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  4842. int64_t L_5 = L_4;
  4843. RuntimeObject* L_6 = Box(il2cpp_defaults.int64_class, &L_5);
  4844. int64_t L_7;
  4845. L_7 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  4846. String_t* L_8;
  4847. L_8 = UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D(L_7, NULL);
  4848. String_t* L_9;
  4849. L_9 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C, L_6, L_8, NULL);
  4850. V_2 = L_9;
  4851. goto IL_004b;
  4852. }
  4853. IL_003d:
  4854. {
  4855. int32_t L_10;
  4856. L_10 = UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86(__this, NULL);
  4857. String_t* L_11;
  4858. L_11 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_10, NULL);
  4859. V_2 = L_11;
  4860. goto IL_004b;
  4861. }
  4862. IL_004b:
  4863. {
  4864. String_t* L_12 = V_2;
  4865. return L_12;
  4866. }
  4867. }
  4868. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_url_mA3BF205A6FCA2BF66A62174182BE84553CE3FFA8 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4869. {
  4870. String_t* V_0 = NULL;
  4871. {
  4872. String_t* L_0;
  4873. L_0 = UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3(__this, NULL);
  4874. V_0 = L_0;
  4875. goto IL_000a;
  4876. }
  4877. IL_000a:
  4878. {
  4879. String_t* L_1 = V_0;
  4880. return L_1;
  4881. }
  4882. }
  4883. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  4884. {
  4885. static bool s_Il2CppMethodInitialized;
  4886. if (!s_Il2CppMethodInitialized)
  4887. {
  4888. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  4889. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral507C09453B68D2470A05E9CAF736D11F39257A38);
  4890. s_Il2CppMethodInitialized = true;
  4891. }
  4892. String_t* V_0 = NULL;
  4893. {
  4894. V_0 = _stringLiteral507C09453B68D2470A05E9CAF736D11F39257A38;
  4895. String_t* L_0 = ___0_value;
  4896. String_t* L_1 = V_0;
  4897. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  4898. String_t* L_2;
  4899. L_2 = WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C(L_0, L_1, NULL);
  4900. UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9(__this, L_2, NULL);
  4901. return;
  4902. }
  4903. }
  4904. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4905. {
  4906. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  4907. memset((&V_0), 0, sizeof(V_0));
  4908. String_t* V_1 = NULL;
  4909. intptr_t G_B2_0;
  4910. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4911. intptr_t G_B1_0;
  4912. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4913. {
  4914. auto __finallyBlock = il2cpp::utils::Finally([&]
  4915. {
  4916. FINALLY_0019:
  4917. {
  4918. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  4919. String_t* L_1;
  4920. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  4921. V_1 = L_1;
  4922. return;
  4923. }
  4924. });
  4925. try
  4926. {
  4927. {
  4928. intptr_t L_2;
  4929. L_2 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4930. intptr_t L_3 = L_2;
  4931. if (L_3)
  4932. {
  4933. G_B2_0 = L_3;
  4934. goto IL_000f_1;
  4935. }
  4936. G_B1_0 = L_3;
  4937. }
  4938. {
  4939. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4940. G_B2_0 = G_B1_0;
  4941. }
  4942. IL_000f_1:
  4943. {
  4944. UnityWebRequest_GetUrl_Injected_mA10B80D5672B19B7263A12FFCFF3B44089D71E99(G_B2_0, (&V_0), NULL);
  4945. goto IL_0021;
  4946. }
  4947. }
  4948. catch(Il2CppExceptionWrapper& e)
  4949. {
  4950. __finallyBlock.StoreException(e.ex);
  4951. }
  4952. }
  4953. IL_0021:
  4954. {
  4955. String_t* L_4 = V_1;
  4956. return L_4;
  4957. }
  4958. }
  4959. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  4960. {
  4961. static bool s_Il2CppMethodInitialized;
  4962. if (!s_Il2CppMethodInitialized)
  4963. {
  4964. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  4965. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  4966. s_Il2CppMethodInitialized = true;
  4967. }
  4968. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  4969. memset((&V_0), 0, sizeof(V_0));
  4970. Il2CppChar* V_1 = NULL;
  4971. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  4972. memset((&V_2), 0, sizeof(V_2));
  4973. int32_t V_3 = 0;
  4974. intptr_t G_B2_0;
  4975. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4976. intptr_t G_B1_0;
  4977. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4978. intptr_t G_B4_0;
  4979. memset((&G_B4_0), 0, sizeof(G_B4_0));
  4980. intptr_t G_B3_0;
  4981. memset((&G_B3_0), 0, sizeof(G_B3_0));
  4982. {
  4983. auto __finallyBlock = il2cpp::utils::Finally([&]
  4984. {
  4985. FINALLY_0044:
  4986. {
  4987. V_1 = (Il2CppChar*)((uintptr_t)0);
  4988. return;
  4989. }
  4990. });
  4991. try
  4992. {
  4993. {
  4994. intptr_t L_0;
  4995. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  4996. intptr_t L_1 = L_0;
  4997. if (L_1)
  4998. {
  4999. G_B2_0 = L_1;
  5000. goto IL_000f_1;
  5001. }
  5002. G_B1_0 = L_1;
  5003. }
  5004. {
  5005. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5006. G_B2_0 = G_B1_0;
  5007. }
  5008. IL_000f_1:
  5009. {
  5010. String_t* L_2 = ___0_url;
  5011. bool L_3;
  5012. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  5013. if (L_3)
  5014. {
  5015. G_B4_0 = G_B2_0;
  5016. goto IL_0039_1;
  5017. }
  5018. G_B3_0 = G_B2_0;
  5019. }
  5020. {
  5021. String_t* L_4 = ___0_url;
  5022. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  5023. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  5024. V_0 = L_5;
  5025. Il2CppChar* L_6;
  5026. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  5027. V_1 = L_6;
  5028. Il2CppChar* L_7 = V_1;
  5029. int32_t L_8;
  5030. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  5031. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  5032. G_B4_0 = G_B3_0;
  5033. }
  5034. IL_0039_1:
  5035. {
  5036. int32_t L_9;
  5037. L_9 = UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B(G_B4_0, (&V_2), NULL);
  5038. V_3 = L_9;
  5039. goto IL_0048;
  5040. }
  5041. }
  5042. catch(Il2CppExceptionWrapper& e)
  5043. {
  5044. __finallyBlock.StoreException(e.ex);
  5045. }
  5046. }
  5047. IL_0048:
  5048. {
  5049. int32_t L_10 = V_3;
  5050. return L_10;
  5051. }
  5052. }
  5053. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  5054. {
  5055. int32_t V_0 = 0;
  5056. bool V_1 = false;
  5057. bool V_2 = false;
  5058. {
  5059. bool L_0;
  5060. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5061. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5062. bool L_1 = V_1;
  5063. if (!L_1)
  5064. {
  5065. goto IL_0019;
  5066. }
  5067. }
  5068. {
  5069. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5070. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6)), NULL);
  5071. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  5072. }
  5073. IL_0019:
  5074. {
  5075. String_t* L_3 = ___0_url;
  5076. int32_t L_4;
  5077. L_4 = UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5(__this, L_3, NULL);
  5078. V_0 = L_4;
  5079. int32_t L_5 = V_0;
  5080. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5081. bool L_6 = V_2;
  5082. if (!L_6)
  5083. {
  5084. goto IL_0035;
  5085. }
  5086. }
  5087. {
  5088. int32_t L_7 = V_0;
  5089. String_t* L_8;
  5090. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5091. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5092. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5093. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  5094. }
  5095. IL_0035:
  5096. {
  5097. return;
  5098. }
  5099. }
  5100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5101. {
  5102. intptr_t G_B2_0;
  5103. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5104. intptr_t G_B1_0;
  5105. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5106. {
  5107. intptr_t L_0;
  5108. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5109. intptr_t L_1 = L_0;
  5110. if (L_1)
  5111. {
  5112. G_B2_0 = L_1;
  5113. goto IL_000f;
  5114. }
  5115. G_B1_0 = L_1;
  5116. }
  5117. {
  5118. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5119. G_B2_0 = G_B1_0;
  5120. }
  5121. IL_000f:
  5122. {
  5123. int64_t L_2;
  5124. L_2 = UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0(G_B2_0, NULL);
  5125. return L_2;
  5126. }
  5127. }
  5128. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5129. {
  5130. intptr_t G_B2_0;
  5131. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5132. intptr_t G_B1_0;
  5133. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5134. {
  5135. intptr_t L_0;
  5136. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5137. intptr_t L_1 = L_0;
  5138. if (L_1)
  5139. {
  5140. G_B2_0 = L_1;
  5141. goto IL_000f;
  5142. }
  5143. G_B1_0 = L_1;
  5144. }
  5145. {
  5146. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5147. G_B2_0 = G_B1_0;
  5148. }
  5149. IL_000f:
  5150. {
  5151. bool L_2;
  5152. L_2 = UnityWebRequest_IsExecuting_Injected_m3FFE84FED0F35B716CC2098E60965B1425CADB4A(G_B2_0, NULL);
  5153. return L_2;
  5154. }
  5155. }
  5156. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5157. {
  5158. intptr_t G_B2_0;
  5159. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5160. intptr_t G_B1_0;
  5161. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5162. {
  5163. intptr_t L_0;
  5164. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5165. intptr_t L_1 = L_0;
  5166. if (L_1)
  5167. {
  5168. G_B2_0 = L_1;
  5169. goto IL_000f;
  5170. }
  5171. G_B1_0 = L_1;
  5172. }
  5173. {
  5174. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5175. G_B2_0 = G_B1_0;
  5176. }
  5177. IL_000f:
  5178. {
  5179. bool L_2;
  5180. L_2 = UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF(G_B2_0, NULL);
  5181. return L_2;
  5182. }
  5183. }
  5184. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_m3079B53A1CAFD8D5B334C635761E7B7E10B14123 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5185. {
  5186. bool V_0 = false;
  5187. {
  5188. int32_t L_0;
  5189. L_0 = UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449(__this, NULL);
  5190. V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
  5191. goto IL_000d;
  5192. }
  5193. IL_000d:
  5194. {
  5195. bool L_1 = V_0;
  5196. return L_1;
  5197. }
  5198. }
  5199. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5200. {
  5201. intptr_t G_B2_0;
  5202. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5203. intptr_t G_B1_0;
  5204. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5205. {
  5206. intptr_t L_0;
  5207. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5208. intptr_t L_1 = L_0;
  5209. if (L_1)
  5210. {
  5211. G_B2_0 = L_1;
  5212. goto IL_000f;
  5213. }
  5214. G_B1_0 = L_1;
  5215. }
  5216. {
  5217. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5218. G_B2_0 = G_B1_0;
  5219. }
  5220. IL_000f:
  5221. {
  5222. int32_t L_2;
  5223. L_2 = UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9(G_B2_0, NULL);
  5224. return L_2;
  5225. }
  5226. }
  5227. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5228. {
  5229. intptr_t G_B2_0;
  5230. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5231. intptr_t G_B1_0;
  5232. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5233. {
  5234. intptr_t L_0;
  5235. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5236. intptr_t L_1 = L_0;
  5237. if (L_1)
  5238. {
  5239. G_B2_0 = L_1;
  5240. goto IL_000f;
  5241. }
  5242. G_B1_0 = L_1;
  5243. }
  5244. {
  5245. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5246. G_B2_0 = G_B1_0;
  5247. }
  5248. IL_000f:
  5249. {
  5250. float L_2;
  5251. L_2 = UnityWebRequest_GetDownloadProgress_Injected_m88BB7574897BF33F2CCF72106B2D27EA336EA4A4(G_B2_0, NULL);
  5252. return L_2;
  5253. }
  5254. }
  5255. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_get_downloadProgress_m28B3DB759530A61929D8AB02A4482AB21D3348B1 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5256. {
  5257. bool V_0 = false;
  5258. float V_1 = 0.0f;
  5259. int32_t G_B3_0 = 0;
  5260. {
  5261. bool L_0;
  5262. L_0 = UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF(__this, NULL);
  5263. if (L_0)
  5264. {
  5265. goto IL_0014;
  5266. }
  5267. }
  5268. {
  5269. bool L_1;
  5270. L_1 = UnityWebRequest_get_isDone_m3079B53A1CAFD8D5B334C635761E7B7E10B14123(__this, NULL);
  5271. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  5272. goto IL_0015;
  5273. }
  5274. IL_0014:
  5275. {
  5276. G_B3_0 = 0;
  5277. }
  5278. IL_0015:
  5279. {
  5280. V_0 = (bool)G_B3_0;
  5281. bool L_2 = V_0;
  5282. if (!L_2)
  5283. {
  5284. goto IL_0021;
  5285. }
  5286. }
  5287. {
  5288. V_1 = (-1.0f);
  5289. goto IL_002a;
  5290. }
  5291. IL_0021:
  5292. {
  5293. float L_3;
  5294. L_3 = UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C(__this, NULL);
  5295. V_1 = L_3;
  5296. goto IL_002a;
  5297. }
  5298. IL_002a:
  5299. {
  5300. float L_4 = V_1;
  5301. return L_4;
  5302. }
  5303. }
  5304. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method)
  5305. {
  5306. intptr_t G_B2_0;
  5307. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5308. intptr_t G_B1_0;
  5309. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5310. intptr_t G_B4_0;
  5311. memset((&G_B4_0), 0, sizeof(G_B4_0));
  5312. intptr_t G_B3_0;
  5313. memset((&G_B3_0), 0, sizeof(G_B3_0));
  5314. intptr_t G_B5_0;
  5315. memset((&G_B5_0), 0, sizeof(G_B5_0));
  5316. intptr_t G_B5_1;
  5317. memset((&G_B5_1), 0, sizeof(G_B5_1));
  5318. {
  5319. intptr_t L_0;
  5320. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5321. intptr_t L_1 = L_0;
  5322. if (L_1)
  5323. {
  5324. G_B2_0 = L_1;
  5325. goto IL_000f;
  5326. }
  5327. G_B1_0 = L_1;
  5328. }
  5329. {
  5330. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5331. G_B2_0 = G_B1_0;
  5332. }
  5333. IL_000f:
  5334. {
  5335. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_2 = ___0_uh;
  5336. if (!L_2)
  5337. {
  5338. G_B4_0 = G_B2_0;
  5339. goto IL_001b;
  5340. }
  5341. G_B3_0 = G_B2_0;
  5342. }
  5343. {
  5344. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_3 = ___0_uh;
  5345. intptr_t L_4;
  5346. L_4 = BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline(L_3, NULL);
  5347. G_B5_0 = L_4;
  5348. G_B5_1 = G_B3_0;
  5349. goto IL_001e;
  5350. }
  5351. IL_001b:
  5352. {
  5353. G_B5_0 = ((intptr_t)0);
  5354. G_B5_1 = G_B4_0;
  5355. }
  5356. IL_001e:
  5357. {
  5358. int32_t L_5;
  5359. L_5 = UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF(G_B5_1, G_B5_0, NULL);
  5360. return L_5;
  5361. }
  5362. }
  5363. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5364. {
  5365. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_0 = NULL;
  5366. {
  5367. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = __this->___m_UploadHandler;
  5368. V_0 = L_0;
  5369. goto IL_000a;
  5370. }
  5371. IL_000a:
  5372. {
  5373. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_1 = V_0;
  5374. return L_1;
  5375. }
  5376. }
  5377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method)
  5378. {
  5379. int32_t V_0 = 0;
  5380. bool V_1 = false;
  5381. bool V_2 = false;
  5382. {
  5383. bool L_0;
  5384. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5385. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5386. bool L_1 = V_1;
  5387. if (!L_1)
  5388. {
  5389. goto IL_0019;
  5390. }
  5391. }
  5392. {
  5393. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5394. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39)), NULL);
  5395. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  5396. }
  5397. IL_0019:
  5398. {
  5399. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_3 = ___0_value;
  5400. int32_t L_4;
  5401. L_4 = UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973(__this, L_3, NULL);
  5402. V_0 = L_4;
  5403. int32_t L_5 = V_0;
  5404. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5405. bool L_6 = V_2;
  5406. if (!L_6)
  5407. {
  5408. goto IL_0035;
  5409. }
  5410. }
  5411. {
  5412. int32_t L_7 = V_0;
  5413. String_t* L_8;
  5414. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5415. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5416. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5417. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  5418. }
  5419. IL_0035:
  5420. {
  5421. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_10 = ___0_value;
  5422. __this->___m_UploadHandler = L_10;
  5423. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UploadHandler), (void*)L_10);
  5424. return;
  5425. }
  5426. }
  5427. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method)
  5428. {
  5429. intptr_t G_B2_0;
  5430. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5431. intptr_t G_B1_0;
  5432. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5433. intptr_t G_B4_0;
  5434. memset((&G_B4_0), 0, sizeof(G_B4_0));
  5435. intptr_t G_B3_0;
  5436. memset((&G_B3_0), 0, sizeof(G_B3_0));
  5437. intptr_t G_B5_0;
  5438. memset((&G_B5_0), 0, sizeof(G_B5_0));
  5439. intptr_t G_B5_1;
  5440. memset((&G_B5_1), 0, sizeof(G_B5_1));
  5441. {
  5442. intptr_t L_0;
  5443. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5444. intptr_t L_1 = L_0;
  5445. if (L_1)
  5446. {
  5447. G_B2_0 = L_1;
  5448. goto IL_000f;
  5449. }
  5450. G_B1_0 = L_1;
  5451. }
  5452. {
  5453. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5454. G_B2_0 = G_B1_0;
  5455. }
  5456. IL_000f:
  5457. {
  5458. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_2 = ___0_dh;
  5459. if (!L_2)
  5460. {
  5461. G_B4_0 = G_B2_0;
  5462. goto IL_001b;
  5463. }
  5464. G_B3_0 = G_B2_0;
  5465. }
  5466. {
  5467. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___0_dh;
  5468. intptr_t L_4;
  5469. L_4 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(L_3, NULL);
  5470. G_B5_0 = L_4;
  5471. G_B5_1 = G_B3_0;
  5472. goto IL_001e;
  5473. }
  5474. IL_001b:
  5475. {
  5476. G_B5_0 = ((intptr_t)0);
  5477. G_B5_1 = G_B4_0;
  5478. }
  5479. IL_001e:
  5480. {
  5481. int32_t L_5;
  5482. L_5 = UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77(G_B5_1, G_B5_0, NULL);
  5483. return L_5;
  5484. }
  5485. }
  5486. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5487. {
  5488. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_0 = NULL;
  5489. {
  5490. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = __this->___m_DownloadHandler;
  5491. V_0 = L_0;
  5492. goto IL_000a;
  5493. }
  5494. IL_000a:
  5495. {
  5496. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_1 = V_0;
  5497. return L_1;
  5498. }
  5499. }
  5500. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method)
  5501. {
  5502. int32_t V_0 = 0;
  5503. bool V_1 = false;
  5504. bool V_2 = false;
  5505. {
  5506. bool L_0;
  5507. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5508. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5509. bool L_1 = V_1;
  5510. if (!L_1)
  5511. {
  5512. goto IL_0019;
  5513. }
  5514. }
  5515. {
  5516. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5517. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36)), NULL);
  5518. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  5519. }
  5520. IL_0019:
  5521. {
  5522. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___0_value;
  5523. int32_t L_4;
  5524. L_4 = UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515(__this, L_3, NULL);
  5525. V_0 = L_4;
  5526. int32_t L_5 = V_0;
  5527. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5528. bool L_6 = V_2;
  5529. if (!L_6)
  5530. {
  5531. goto IL_0035;
  5532. }
  5533. }
  5534. {
  5535. int32_t L_7 = V_0;
  5536. String_t* L_8;
  5537. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5538. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5539. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5540. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  5541. }
  5542. IL_0035:
  5543. {
  5544. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_10 = ___0_value;
  5545. __this->___m_DownloadHandler = L_10;
  5546. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DownloadHandler), (void*)L_10);
  5547. return;
  5548. }
  5549. }
  5550. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5551. {
  5552. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_0 = NULL;
  5553. {
  5554. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = __this->___m_CertificateHandler;
  5555. V_0 = L_0;
  5556. goto IL_000a;
  5557. }
  5558. IL_000a:
  5559. {
  5560. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_1 = V_0;
  5561. return L_1;
  5562. }
  5563. }
  5564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_timeout, const RuntimeMethod* method)
  5565. {
  5566. intptr_t G_B2_0;
  5567. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5568. intptr_t G_B1_0;
  5569. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5570. {
  5571. intptr_t L_0;
  5572. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5573. intptr_t L_1 = L_0;
  5574. if (L_1)
  5575. {
  5576. G_B2_0 = L_1;
  5577. goto IL_000f;
  5578. }
  5579. G_B1_0 = L_1;
  5580. }
  5581. {
  5582. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5583. G_B2_0 = G_B1_0;
  5584. }
  5585. IL_000f:
  5586. {
  5587. int32_t L_2 = ___0_timeout;
  5588. int32_t L_3;
  5589. L_3 = UnityWebRequest_SetTimeoutMsec_Injected_m10DE64C499A982AB96EE816B8A0F8D7A0FEAD066(G_B2_0, L_2, NULL);
  5590. return L_3;
  5591. }
  5592. }
  5593. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_value, const RuntimeMethod* method)
  5594. {
  5595. static bool s_Il2CppMethodInitialized;
  5596. if (!s_Il2CppMethodInitialized)
  5597. {
  5598. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
  5599. s_Il2CppMethodInitialized = true;
  5600. }
  5601. int32_t V_0 = 0;
  5602. bool V_1 = false;
  5603. bool V_2 = false;
  5604. {
  5605. bool L_0;
  5606. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5607. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5608. bool L_1 = V_1;
  5609. if (!L_1)
  5610. {
  5611. goto IL_0019;
  5612. }
  5613. }
  5614. {
  5615. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5616. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFD59FD74BD22E570703A8BC6B77F6081661FEEB)), NULL);
  5617. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var)));
  5618. }
  5619. IL_0019:
  5620. {
  5621. int32_t L_3 = ___0_value;
  5622. il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
  5623. int32_t L_4;
  5624. L_4 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_3, 0, NULL);
  5625. ___0_value = L_4;
  5626. int32_t L_5 = ___0_value;
  5627. int32_t L_6;
  5628. L_6 = UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F(__this, ((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)1000))), NULL);
  5629. V_0 = L_6;
  5630. int32_t L_7 = V_0;
  5631. V_2 = (bool)((!(((uint32_t)L_7) <= ((uint32_t)0)))? 1 : 0);
  5632. bool L_8 = V_2;
  5633. if (!L_8)
  5634. {
  5635. goto IL_0044;
  5636. }
  5637. }
  5638. {
  5639. int32_t L_9 = V_0;
  5640. String_t* L_10;
  5641. L_10 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_9, NULL);
  5642. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_11 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5643. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_11, L_10, NULL);
  5644. IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var)));
  5645. }
  5646. IL_0044:
  5647. {
  5648. return;
  5649. }
  5650. }
  5651. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Get_m1A332EE069BB5052368307F254A5A7627BB5FD86 (String_t* ___0_uri, const RuntimeMethod* method)
  5652. {
  5653. static bool s_Il2CppMethodInitialized;
  5654. if (!s_Il2CppMethodInitialized)
  5655. {
  5656. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  5657. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5658. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5659. s_Il2CppMethodInitialized = true;
  5660. }
  5661. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  5662. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  5663. {
  5664. String_t* L_0 = ___0_uri;
  5665. DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* L_1 = (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*)il2cpp_codegen_object_new(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  5666. DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF(L_1, NULL);
  5667. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5668. UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A(L_2, L_0, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, L_1, (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)NULL, NULL);
  5669. V_0 = L_2;
  5670. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_3 = V_0;
  5671. V_1 = L_3;
  5672. goto IL_0017;
  5673. }
  5674. IL_0017:
  5675. {
  5676. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_4 = V_1;
  5677. return L_4;
  5678. }
  5679. }
  5680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Head_m0010750A2B5A1F24EAF86A492D48E38A092FE71A (String_t* ___0_uri, const RuntimeMethod* method)
  5681. {
  5682. static bool s_Il2CppMethodInitialized;
  5683. if (!s_Il2CppMethodInitialized)
  5684. {
  5685. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5686. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  5687. s_Il2CppMethodInitialized = true;
  5688. }
  5689. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  5690. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  5691. {
  5692. String_t* L_0 = ___0_uri;
  5693. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_1 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  5694. UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E(L_1, L_0, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  5695. V_0 = L_1;
  5696. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = V_0;
  5697. V_1 = L_2;
  5698. goto IL_0011;
  5699. }
  5700. IL_0011:
  5701. {
  5702. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_3 = V_1;
  5703. return L_3;
  5704. }
  5705. }
  5706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m1B819655E6FFE468B9DE9D101A17398F3E1A4F27 (String_t* ___0_s, const RuntimeMethod* method)
  5707. {
  5708. String_t* V_0 = NULL;
  5709. {
  5710. String_t* L_0 = ___0_s;
  5711. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
  5712. L_1 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  5713. String_t* L_2;
  5714. L_2 = UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA(L_0, L_1, NULL);
  5715. V_0 = L_2;
  5716. goto IL_000f;
  5717. }
  5718. IL_000f:
  5719. {
  5720. String_t* L_3 = V_0;
  5721. return L_3;
  5722. }
  5723. }
  5724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  5725. {
  5726. static bool s_Il2CppMethodInitialized;
  5727. if (!s_Il2CppMethodInitialized)
  5728. {
  5729. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  5730. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  5731. s_Il2CppMethodInitialized = true;
  5732. }
  5733. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  5734. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  5735. bool V_2 = false;
  5736. String_t* V_3 = NULL;
  5737. bool V_4 = false;
  5738. bool V_5 = false;
  5739. {
  5740. String_t* L_0 = ___0_s;
  5741. V_2 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  5742. bool L_1 = V_2;
  5743. if (!L_1)
  5744. {
  5745. goto IL_000d;
  5746. }
  5747. }
  5748. {
  5749. V_3 = (String_t*)NULL;
  5750. goto IL_004d;
  5751. }
  5752. IL_000d:
  5753. {
  5754. String_t* L_2 = ___0_s;
  5755. bool L_3;
  5756. L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
  5757. V_4 = L_3;
  5758. bool L_4 = V_4;
  5759. if (!L_4)
  5760. {
  5761. goto IL_0026;
  5762. }
  5763. }
  5764. {
  5765. V_3 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  5766. goto IL_004d;
  5767. }
  5768. IL_0026:
  5769. {
  5770. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5 = ___1_e;
  5771. V_5 = (bool)((((RuntimeObject*)(Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  5772. bool L_6 = V_5;
  5773. if (!L_6)
  5774. {
  5775. goto IL_0034;
  5776. }
  5777. }
  5778. {
  5779. V_3 = (String_t*)NULL;
  5780. goto IL_004d;
  5781. }
  5782. IL_0034:
  5783. {
  5784. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7 = ___1_e;
  5785. String_t* L_8 = ___0_s;
  5786. NullCheck(L_7);
  5787. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  5788. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_7, L_8);
  5789. V_0 = L_9;
  5790. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_0;
  5791. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  5792. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  5793. L_11 = WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0(L_10, NULL);
  5794. V_1 = L_11;
  5795. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12 = ___1_e;
  5796. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = V_1;
  5797. NullCheck(L_12);
  5798. String_t* L_14;
  5799. L_14 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(44, L_12, L_13);
  5800. V_3 = L_14;
  5801. goto IL_004d;
  5802. }
  5803. IL_004d:
  5804. {
  5805. String_t* L_15 = V_3;
  5806. return L_15;
  5807. }
  5808. }
  5809. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6 (int32_t ___0_err, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  5810. {
  5811. typedef void (*UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6_ftn) (int32_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  5812. static UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6_ftn _il2cpp_icall_func;
  5813. if (!_il2cpp_icall_func)
  5814. _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString_Injected(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError,UnityEngine.Bindings.ManagedSpanWrapper&)");
  5815. _il2cpp_icall_func(___0_err, ___1_ret);
  5816. }
  5817. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7 (int64_t ___0_responseCode, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  5818. {
  5819. typedef void (*UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7_ftn) (int64_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  5820. static UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7_ftn _il2cpp_icall_func;
  5821. if (!_il2cpp_icall_func)
  5822. _il2cpp_icall_func = (UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString_Injected(System.Int64,UnityEngine.Bindings.ManagedSpanWrapper&)");
  5823. _il2cpp_icall_func(___0_responseCode, ___1_ret);
  5824. }
  5825. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5826. {
  5827. typedef void (*UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991_ftn) (intptr_t);
  5828. static UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991_ftn _il2cpp_icall_func;
  5829. if (!_il2cpp_icall_func)
  5830. _il2cpp_icall_func = (UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release_Injected(System.IntPtr)");
  5831. _il2cpp_icall_func(___0__unity_self);
  5832. }
  5833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5834. {
  5835. typedef intptr_t (*UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629_ftn) (intptr_t);
  5836. static UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629_ftn _il2cpp_icall_func;
  5837. if (!_il2cpp_icall_func)
  5838. _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest_Injected(System.IntPtr)");
  5839. intptr_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5840. return icallRetVal;
  5841. }
  5842. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5843. {
  5844. typedef void (*UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01_ftn) (intptr_t);
  5845. static UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01_ftn _il2cpp_icall_func;
  5846. if (!_il2cpp_icall_func)
  5847. _il2cpp_icall_func = (UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort_Injected(System.IntPtr)");
  5848. _il2cpp_icall_func(___0__unity_self);
  5849. }
  5850. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF (intptr_t ___0__unity_self, int32_t ___1_methodType, const RuntimeMethod* method)
  5851. {
  5852. typedef int32_t (*UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF_ftn) (intptr_t, int32_t);
  5853. static UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF_ftn _il2cpp_icall_func;
  5854. if (!_il2cpp_icall_func)
  5855. _il2cpp_icall_func = (UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod_Injected(System.IntPtr,UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)");
  5856. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_methodType);
  5857. return icallRetVal;
  5858. }
  5859. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_customMethodName, const RuntimeMethod* method)
  5860. {
  5861. typedef int32_t (*UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  5862. static UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322_ftn _il2cpp_icall_func;
  5863. if (!_il2cpp_icall_func)
  5864. _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  5865. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_customMethodName);
  5866. return icallRetVal;
  5867. }
  5868. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5869. {
  5870. typedef int32_t (*UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C_ftn) (intptr_t);
  5871. static UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C_ftn _il2cpp_icall_func;
  5872. if (!_il2cpp_icall_func)
  5873. _il2cpp_icall_func = (UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetError_Injected(System.IntPtr)");
  5874. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5875. return icallRetVal;
  5876. }
  5877. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetUrl_Injected_mA10B80D5672B19B7263A12FFCFF3B44089D71E99 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  5878. {
  5879. typedef void (*UnityWebRequest_GetUrl_Injected_mA10B80D5672B19B7263A12FFCFF3B44089D71E99_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  5880. static UnityWebRequest_GetUrl_Injected_mA10B80D5672B19B7263A12FFCFF3B44089D71E99_ftn _il2cpp_icall_func;
  5881. if (!_il2cpp_icall_func)
  5882. _il2cpp_icall_func = (UnityWebRequest_GetUrl_Injected_mA10B80D5672B19B7263A12FFCFF3B44089D71E99_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetUrl_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  5883. _il2cpp_icall_func(___0__unity_self, ___1_ret);
  5884. }
  5885. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_url, const RuntimeMethod* method)
  5886. {
  5887. typedef int32_t (*UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  5888. static UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B_ftn _il2cpp_icall_func;
  5889. if (!_il2cpp_icall_func)
  5890. _il2cpp_icall_func = (UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  5891. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_url);
  5892. return icallRetVal;
  5893. }
  5894. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5895. {
  5896. typedef int64_t (*UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0_ftn) (intptr_t);
  5897. static UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0_ftn _il2cpp_icall_func;
  5898. if (!_il2cpp_icall_func)
  5899. _il2cpp_icall_func = (UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode_Injected(System.IntPtr)");
  5900. int64_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5901. return icallRetVal;
  5902. }
  5903. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_Injected_m3FFE84FED0F35B716CC2098E60965B1425CADB4A (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5904. {
  5905. typedef bool (*UnityWebRequest_IsExecuting_Injected_m3FFE84FED0F35B716CC2098E60965B1425CADB4A_ftn) (intptr_t);
  5906. static UnityWebRequest_IsExecuting_Injected_m3FFE84FED0F35B716CC2098E60965B1425CADB4A_ftn _il2cpp_icall_func;
  5907. if (!_il2cpp_icall_func)
  5908. _il2cpp_icall_func = (UnityWebRequest_IsExecuting_Injected_m3FFE84FED0F35B716CC2098E60965B1425CADB4A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::IsExecuting_Injected(System.IntPtr)");
  5909. bool icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5910. return icallRetVal;
  5911. }
  5912. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5913. {
  5914. typedef bool (*UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF_ftn) (intptr_t);
  5915. static UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF_ftn _il2cpp_icall_func;
  5916. if (!_il2cpp_icall_func)
  5917. _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable_Injected(System.IntPtr)");
  5918. bool icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5919. return icallRetVal;
  5920. }
  5921. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5922. {
  5923. typedef int32_t (*UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9_ftn) (intptr_t);
  5924. static UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9_ftn _il2cpp_icall_func;
  5925. if (!_il2cpp_icall_func)
  5926. _il2cpp_icall_func = (UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_result_Injected(System.IntPtr)");
  5927. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5928. return icallRetVal;
  5929. }
  5930. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_Injected_m88BB7574897BF33F2CCF72106B2D27EA336EA4A4 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  5931. {
  5932. typedef float (*UnityWebRequest_GetDownloadProgress_Injected_m88BB7574897BF33F2CCF72106B2D27EA336EA4A4_ftn) (intptr_t);
  5933. static UnityWebRequest_GetDownloadProgress_Injected_m88BB7574897BF33F2CCF72106B2D27EA336EA4A4_ftn _il2cpp_icall_func;
  5934. if (!_il2cpp_icall_func)
  5935. _il2cpp_icall_func = (UnityWebRequest_GetDownloadProgress_Injected_m88BB7574897BF33F2CCF72106B2D27EA336EA4A4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetDownloadProgress_Injected(System.IntPtr)");
  5936. float icallRetVal = _il2cpp_icall_func(___0__unity_self);
  5937. return icallRetVal;
  5938. }
  5939. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF (intptr_t ___0__unity_self, intptr_t ___1_uh, const RuntimeMethod* method)
  5940. {
  5941. typedef int32_t (*UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF_ftn) (intptr_t, intptr_t);
  5942. static UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF_ftn _il2cpp_icall_func;
  5943. if (!_il2cpp_icall_func)
  5944. _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler_Injected(System.IntPtr,System.IntPtr)");
  5945. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_uh);
  5946. return icallRetVal;
  5947. }
  5948. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77 (intptr_t ___0__unity_self, intptr_t ___1_dh, const RuntimeMethod* method)
  5949. {
  5950. typedef int32_t (*UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77_ftn) (intptr_t, intptr_t);
  5951. static UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77_ftn _il2cpp_icall_func;
  5952. if (!_il2cpp_icall_func)
  5953. _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler_Injected(System.IntPtr,System.IntPtr)");
  5954. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_dh);
  5955. return icallRetVal;
  5956. }
  5957. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_Injected_m10DE64C499A982AB96EE816B8A0F8D7A0FEAD066 (intptr_t ___0__unity_self, int32_t ___1_timeout, const RuntimeMethod* method)
  5958. {
  5959. typedef int32_t (*UnityWebRequest_SetTimeoutMsec_Injected_m10DE64C499A982AB96EE816B8A0F8D7A0FEAD066_ftn) (intptr_t, int32_t);
  5960. static UnityWebRequest_SetTimeoutMsec_Injected_m10DE64C499A982AB96EE816B8A0F8D7A0FEAD066_ftn _il2cpp_icall_func;
  5961. if (!_il2cpp_icall_func)
  5962. _il2cpp_icall_func = (UnityWebRequest_SetTimeoutMsec_Injected_m10DE64C499A982AB96EE816B8A0F8D7A0FEAD066_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec_Injected(System.IntPtr,System.Int32)");
  5963. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_timeout);
  5964. return icallRetVal;
  5965. }
  5966. #ifdef __clang__
  5967. #pragma clang diagnostic pop
  5968. #endif
  5969. #ifdef __clang__
  5970. #pragma clang diagnostic push
  5971. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5972. #pragma clang diagnostic ignored "-Wunused-variable"
  5973. #endif
  5974. #ifdef __clang__
  5975. #pragma clang diagnostic pop
  5976. #endif
  5977. #ifdef __clang__
  5978. #pragma clang diagnostic push
  5979. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5980. #pragma clang diagnostic ignored "-Wunused-variable"
  5981. #endif
  5982. #ifdef __clang__
  5983. #pragma clang diagnostic pop
  5984. #endif
  5985. #ifdef __clang__
  5986. #pragma clang diagnostic push
  5987. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5988. #pragma clang diagnostic ignored "-Wunused-variable"
  5989. #endif
  5990. #ifdef __clang__
  5991. #pragma clang diagnostic pop
  5992. #endif
  5993. #ifdef __clang__
  5994. #pragma clang diagnostic push
  5995. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5996. #pragma clang diagnostic ignored "-Wunused-variable"
  5997. #endif
  5998. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_unityWebRequest, const RuntimeMethod* method)
  5999. {
  6000. {
  6001. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_unityWebRequest;
  6002. NullCheck(L_0);
  6003. intptr_t L_1 = L_0->___m_Ptr;
  6004. return L_1;
  6005. }
  6006. }
  6007. #ifdef __clang__
  6008. #pragma clang diagnostic pop
  6009. #endif
  6010. #ifdef __clang__
  6011. #pragma clang diagnostic push
  6012. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6013. #pragma clang diagnostic ignored "-Wunused-variable"
  6014. #endif
  6015. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  6016. {
  6017. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  6018. }
  6019. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  6020. {
  6021. intptr_t unmarshaledm_Ptr_temp_0;
  6022. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  6023. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  6024. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  6025. }
  6026. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  6027. {
  6028. }
  6029. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  6030. {
  6031. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  6032. }
  6033. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  6034. {
  6035. intptr_t unmarshaledm_Ptr_temp_0;
  6036. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  6037. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  6038. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  6039. }
  6040. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  6041. {
  6042. }
  6043. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_m3CA892EE57ADFDEF86A3CD9AC35EF50848C178D3 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  6044. {
  6045. intptr_t G_B2_0;
  6046. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6047. intptr_t G_B1_0;
  6048. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6049. {
  6050. intptr_t L_0;
  6051. L_0 = BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline(__this, NULL);
  6052. intptr_t L_1 = L_0;
  6053. if (L_1)
  6054. {
  6055. G_B2_0 = L_1;
  6056. goto IL_000f;
  6057. }
  6058. G_B1_0 = L_1;
  6059. }
  6060. {
  6061. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6062. G_B2_0 = G_B1_0;
  6063. }
  6064. IL_000f:
  6065. {
  6066. UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A(G_B2_0, NULL);
  6067. return;
  6068. }
  6069. }
  6070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  6071. {
  6072. bool V_0 = false;
  6073. {
  6074. intptr_t L_0 = __this->___m_Ptr;
  6075. bool L_1;
  6076. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  6077. V_0 = L_1;
  6078. bool L_2 = V_0;
  6079. if (!L_2)
  6080. {
  6081. goto IL_0029;
  6082. }
  6083. }
  6084. {
  6085. UploadHandler_ReleaseFromScripting_m3CA892EE57ADFDEF86A3CD9AC35EF50848C178D3(__this, NULL);
  6086. __this->___m_Ptr = 0;
  6087. }
  6088. IL_0029:
  6089. {
  6090. return;
  6091. }
  6092. }
  6093. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A (intptr_t ___0__unity_self, const RuntimeMethod* method)
  6094. {
  6095. typedef void (*UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A_ftn) (intptr_t);
  6096. static UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A_ftn _il2cpp_icall_func;
  6097. if (!_il2cpp_icall_func)
  6098. _il2cpp_icall_func = (UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::ReleaseFromScripting_Injected(System.IntPtr)");
  6099. _il2cpp_icall_func(___0__unity_self);
  6100. }
  6101. #ifdef __clang__
  6102. #pragma clang diagnostic pop
  6103. #endif
  6104. #ifdef __clang__
  6105. #pragma clang diagnostic push
  6106. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6107. #pragma clang diagnostic ignored "-Wunused-variable"
  6108. #endif
  6109. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uploadHandler, const RuntimeMethod* method)
  6110. {
  6111. {
  6112. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = ___0_uploadHandler;
  6113. NullCheck(L_0);
  6114. intptr_t L_1 = L_0->___m_Ptr;
  6115. return L_1;
  6116. }
  6117. }
  6118. #ifdef __clang__
  6119. #pragma clang diagnostic pop
  6120. #endif
  6121. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
  6122. {
  6123. {
  6124. int32_t L_0 = __this->____stringLength;
  6125. return L_0;
  6126. }
  6127. }
  6128. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD_inline (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___0_handler, const RuntimeMethod* method)
  6129. {
  6130. {
  6131. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = ___0_handler;
  6132. NullCheck(L_0);
  6133. intptr_t L_1 = L_0->___m_Ptr;
  6134. return L_1;
  6135. }
  6136. }
  6137. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  6138. {
  6139. {
  6140. intptr_t L_0 = ___0_value1;
  6141. intptr_t L_1 = ___1_value2;
  6142. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6143. }
  6144. }
  6145. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_handler, const RuntimeMethod* method)
  6146. {
  6147. {
  6148. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_handler;
  6149. NullCheck(L_0);
  6150. intptr_t L_1 = L_0->___m_Ptr;
  6151. return L_1;
  6152. }
  6153. }
  6154. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_unityWebRequest, const RuntimeMethod* method)
  6155. {
  6156. {
  6157. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_unityWebRequest;
  6158. NullCheck(L_0);
  6159. intptr_t L_1 = L_0->___m_Ptr;
  6160. return L_1;
  6161. }
  6162. }
  6163. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  6164. {
  6165. {
  6166. bool L_0 = ___0_value;
  6167. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField = L_0;
  6168. return;
  6169. }
  6170. }
  6171. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  6172. {
  6173. {
  6174. bool L_0 = ___0_value;
  6175. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField = L_0;
  6176. return;
  6177. }
  6178. }
  6179. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  6180. {
  6181. {
  6182. bool L_0 = ___0_value;
  6183. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField = L_0;
  6184. return;
  6185. }
  6186. }
  6187. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6188. {
  6189. {
  6190. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  6191. return L_0;
  6192. }
  6193. }
  6194. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6195. {
  6196. {
  6197. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  6198. return L_0;
  6199. }
  6200. }
  6201. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6202. {
  6203. {
  6204. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  6205. return L_0;
  6206. }
  6207. }
  6208. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  6209. {
  6210. {
  6211. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  6212. __this->___U3CwebRequestU3Ek__BackingField = L_0;
  6213. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField), (void*)L_0);
  6214. return;
  6215. }
  6216. }
  6217. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline (String_t* ___0_s, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_managedSpanWrapper, const RuntimeMethod* method)
  6218. {
  6219. bool V_0 = false;
  6220. bool V_1 = false;
  6221. bool V_2 = false;
  6222. {
  6223. String_t* L_0 = ___0_s;
  6224. V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6225. bool L_1 = V_0;
  6226. if (!L_1)
  6227. {
  6228. goto IL_0015;
  6229. }
  6230. }
  6231. {
  6232. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* L_2 = ___1_managedSpanWrapper;
  6233. il2cpp_codegen_initobj(L_2, sizeof(ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E));
  6234. V_1 = (bool)1;
  6235. goto IL_0043;
  6236. }
  6237. IL_0015:
  6238. {
  6239. String_t* L_3 = ___0_s;
  6240. NullCheck(L_3);
  6241. int32_t L_4;
  6242. L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
  6243. V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  6244. bool L_5 = V_2;
  6245. if (!L_5)
  6246. {
  6247. goto IL_003f;
  6248. }
  6249. }
  6250. {
  6251. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* L_6 = ___1_managedSpanWrapper;
  6252. uintptr_t L_7;
  6253. L_7 = UIntPtr_op_Explicit_mF1E7911DD5AC13B5E59EE8C7903469D12A3861E8(((int64_t)1), NULL);
  6254. void* L_8;
  6255. L_8 = UIntPtr_op_Explicit_m42C3EA82465934F505B4274A7CE320550A48B7B9(L_7, NULL);
  6256. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_9;
  6257. memset((&L_9), 0, sizeof(L_9));
  6258. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&L_9), L_8, 0, NULL);
  6259. *(ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*)L_6 = L_9;
  6260. V_1 = (bool)1;
  6261. goto IL_0043;
  6262. }
  6263. IL_003f:
  6264. {
  6265. V_1 = (bool)0;
  6266. goto IL_0043;
  6267. }
  6268. IL_0043:
  6269. {
  6270. bool L_10 = V_1;
  6271. return L_10;
  6272. }
  6273. }
  6274. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method)
  6275. {
  6276. static bool s_Il2CppMethodInitialized;
  6277. if (!s_Il2CppMethodInitialized)
  6278. {
  6279. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
  6280. s_Il2CppMethodInitialized = true;
  6281. }
  6282. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  6283. memset((&V_0), 0, sizeof(V_0));
  6284. {
  6285. String_t* L_0 = ___0_text;
  6286. if (L_0)
  6287. {
  6288. goto IL_000d;
  6289. }
  6290. }
  6291. {
  6292. il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
  6293. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0;
  6294. return L_1;
  6295. }
  6296. IL_000d:
  6297. {
  6298. String_t* L_2 = ___0_text;
  6299. NullCheck(L_2);
  6300. Il2CppChar* L_3;
  6301. L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
  6302. String_t* L_4 = ___0_text;
  6303. NullCheck(L_4);
  6304. int32_t L_5;
  6305. L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
  6306. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
  6307. memset((&L_6), 0, sizeof(L_6));
  6308. ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
  6309. return L_6;
  6310. }
  6311. }
  6312. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uploadHandler, const RuntimeMethod* method)
  6313. {
  6314. {
  6315. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = ___0_uploadHandler;
  6316. NullCheck(L_0);
  6317. intptr_t L_1 = L_0->___m_Ptr;
  6318. return L_1;
  6319. }
  6320. }
  6321. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  6322. {
  6323. {
  6324. void* L_0 = __this->___m_Buffer;
  6325. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6326. }
  6327. }
  6328. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  6329. {
  6330. {
  6331. int32_t L_0 = __this->____length;
  6332. return L_0;
  6333. }
  6334. }
  6335. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
  6336. {
  6337. {
  6338. Il2CppChar* L_0 = ___0_ptr;
  6339. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
  6340. memset((&L_1), 0, sizeof(L_1));
  6341. il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
  6342. __this->____pointer = L_1;
  6343. int32_t L_2 = ___1_length;
  6344. __this->____length = L_2;
  6345. return;
  6346. }
  6347. }