| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963 |
- {
- "appState": {
- "location": {
- "url": "/cn",
- "headers": {
- "x-forwarded-for": "171.107.58.21, 182.132.32.100, 69.192.7.188",
- "x-forwarded-proto": "https",
- "x-forwarded-port": "443",
- "x-amzn-trace-id": "Root=1-5eaf8114-c9d3e964ed6b835a37d175e1",
- "accept": "*/*",
- "cookie": "; anonymousId=DEDDDC7ADC72E8C070E9B3B8351DEEFE",
- "x-akamai-edgescape": "georegion=47,country_code=CN,region_code=GX,city=NANNING,lat=22.82,long=108.32,timezone=GMT 8,continent=AS,throughput=vhigh,bw=2000,network=chinanet,asnum=4134,location_id=0",
- "true-client-ip": "171.107.58.21",
- "pragma": "no-cache",
- "x-edgeconnect-session-id": "12667b76-5eaf8114-2d0f629",
- "x-akamai-device-characteristics": "is_mobile=false;is_wireless_device=false;is_tablet=false;mobile_browser=;mobile_browser_version=;model_name=;device_os=;device_os_version=",
- "x-akamai-config-log-detail": "true",
- "accept-encoding": "gzip",
- "akamai-origin-hop": "2",
- "via": "1.1 v1-akamaitech.net(ghost) (AkamaiGHost), 1.1 akamai.net(ghost) (AkamaiGHost)",
- "cache-control": "no-cache, max-age=0",
- "host": "172.26.218.122:8080",
- "x-b3-traceid": "aa674535c81a2105",
- "x-b3-spanid": "25f6f95471f3ed0c",
- "x-b3-sampled": "1",
- "x-b3-parentspanid": "b9f34925bf464f18"
- },
- "trace": {
- "traceId": "aa674535c81a2105",
- "parentId": "25f6f95471f3ed0c",
- "spanId": "376049a2ded59db3",
- "hrStartTime": [
- 295674,
- 524527966
- ]
- }
- },
- "currentViewEntityId": "654592de-2c9f-4138-ad50-4908adf82a5b",
- "isBootstrapped": true,
- "error": null,
- "privacy": {
- "isSet": false,
- "level": 0,
- "allowPerformance": false,
- "allowMarketing": false
- },
- "analysis": {},
- "canonicalUrl": "https://www.nike.com/cn/",
- "experiments": [
- {
- "experimentName": "clp_button_experiment",
- "controlVariation": "default_button",
- "isUiExperiment": true
- }
- ],
- "optimizely": {
- "version": "4",
- "rollouts": [],
- "typedAudiences": [
- {
- "id": "15207880579",
- "conditions": [
- "and",
- [
- "or",
- [
- "or",
- {
- "value": true,
- "type": "custom_attribute",
- "name": "checkout_cic_3991",
- "match": "exact"
- }
- ]
- ],
- [
- "or",
- [
- "or",
- {
- "value": "us",
- "type": "custom_attribute",
- "name": "country",
- "match": "exact"
- },
- {
- "value": "US",
- "type": "custom_attribute",
- "name": "country",
- "match": "exact"
- }
- ]
- ]
- ],
- "name": "Bopis_Allowed"
- },
- {
- "id": "14943620359",
- "conditions": [
- "and",
- [
- "or",
- [
- "or",
- {
- "value": true,
- "type": "custom_attribute",
- "name": "checkout_cic_3886",
- "match": "exact"
- }
- ]
- ]
- ],
- "name": "CCC3886"
- }
- ],
- "anonymizeIP": false,
- "projectId": "9011010262",
- "variables": [],
- "featureFlags": [],
- "experiments": [],
- "audiences": [
- {
- "id": "11363034368",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"us\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"US\"}]]]",
- "name": "United States"
- },
- {
- "id": "17910503969",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ae\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"sa\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"AE\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"SA\"}], [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ae\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"sa\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"AE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"SA\"}]]]",
- "name": "Middle East"
- },
- {
- "id": "11193645442",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"name\": \"Platform_BrowserType\", \"type\": \"custom_attribute\", \"value\": \"Chrome\"}]]]",
- "name": "catx_test"
- },
- {
- "id": "15207880579",
- "conditions": "[\"or\", {\"match\": \"exact\", \"name\": \"$opt_dummy_attribute\", \"type\": \"custom_attribute\", \"value\": \"$opt_dummy_value\"}]",
- "name": "Bopis_Allowed"
- },
- {
- "id": "17746960452",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Unite_Experience\", \"type\": \"custom_attribute\", \"value\": \"com.nike.brand.ntc.ios.6.9.0\"}, {\"match\": \"exact\", \"name\": \"Unite_Experience\", \"type\": \"custom_attribute\", \"value\": \"com.nike.commerce.omega.ios.2.102.0\"}, {\"match\": \"exact\", \"name\": \"Unite_Experience\", \"type\": \"custom_attribute\", \"value\": \"com.nike.sport.running.ios.6.5.1\"}]], [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"CN\"}]]]",
- "name": "unite_ios_experiences_cn"
- },
- {
- "id": "14943620359",
- "conditions": "[\"or\", {\"match\": \"exact\", \"name\": \"$opt_dummy_attribute\", \"type\": \"custom_attribute\", \"value\": \"$opt_dummy_value\"}]",
- "name": "CCC3886"
- },
- {
- "id": "11513071210",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"us\"}, {\"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"US\"}]]]",
- "name": "CCC-3576"
- },
- {
- "id": "17857260114",
- "conditions": "[\"and\", [\"or\", [\"not\", [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"cn\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"CN\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"tw\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"TW\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"hk\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"HK\"}]]]]",
- "name": "SustainabilityExcludedCountries"
- },
- {
- "id": "11372676797",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"name\": \"Platform_BrowserType\", \"type\": \"custom_attribute\", \"value\": \"Chrome\"}]]]",
- "name": "catx_test_audience"
- },
- {
- "id": "16836580562",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"nl\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"NL\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"be\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"BE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"de\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"DE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"fr\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"FR\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"it\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"IT\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"at\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"AT\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"si\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"SI\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"hu\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"HU\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"dk\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"DK\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"se\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"SE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"gb\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"GB\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"FI\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"fi\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"CZ\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"cz\"}]]]",
- "name": "AVS in EMEA Countries: Round 1"
- },
- {
- "id": "17983071267",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"us\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"US\"}], [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"us\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"US\"}]]]",
- "name": "GEO-US"
- },
- {
- "id": "17930700374",
- "conditions": "[\"and\", [\"or\", [\"not\", [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"JP\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"CN\"}]]]]",
- "name": "unite_social_exlusions"
- },
- {
- "id": "17955501719",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"eg\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ma\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"za\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"EG\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"MA\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ZA\"}], [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"eg\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"EG\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ma\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"MA\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"za\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ZA\"}]]]",
- "name": "Africa"
- },
- {
- "id": "17954150588",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"at\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"be\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"bg\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ch\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"cz\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"de\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"dk\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"es\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"fi\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"fr\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"gb\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"gr\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"hr\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"hu\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ie\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"il\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"it\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"lu\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"nl\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"no\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"pl\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"pt\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ro\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ru\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"se\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"si\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"sk\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"tr\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"AT\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"BE\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"BG\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"CH\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"CZ\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"DE\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"DK\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"ES\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"FI\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"FR\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"GB\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"GR\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"HR\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"HU\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"IE\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"IL\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"IT\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"LU\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"NL\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"NO\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"PL\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"PT\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"RO\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"RU\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"SE\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"SI\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"SK\"}, {\"match\": \"exact\", \"name\": \"Locale_Country\", \"type\": \"custom_attribute\", \"value\": \"TR\"}], [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"at\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"AT\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"be\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"BE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"bg\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"BG\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ch\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"CH\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"cz\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"CZ\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"de\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"DE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"dk\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"DK\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"es\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ES\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"fi\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"FI\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"fr\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"FR\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"gb\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"GB\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"gr\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"GR\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"hr\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"HR\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"hu\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"HU\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ie\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"IE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"il\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"IL\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"it\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"IT\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"lu\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"LU\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"nl\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"NL\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"no\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"NO\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"pl\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"PL\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"pt\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"PT\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ro\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"RO\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"ru\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"RU\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"se\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"SE\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"si\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"SI\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"sk\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"SK\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"tr\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"TR\"}]]]",
- "name": "Europe 28"
- },
- {
- "id": "13319280125",
- "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Experience_Device_Width\", \"type\": \"custom_attribute\", \"value\": \"sm\"}]]]",
- "name": "Browse Mobile"
- },
- {
- "conditions": "[\"or\", {\"match\": \"exact\", \"name\": \"$opt_dummy_attribute\", \"type\": \"custom_attribute\", \"value\": \"$opt_dummy_value\"}]",
- "id": "$opt_dummy_audience",
- "name": "Optimizely-Generated Audience for Backwards Compatibility"
- }
- ],
- "groups": [],
- "attributes": [
- {
- "id": "9860799703",
- "key": "Consumer_ShoppingGender"
- },
- {
- "id": "9862219173",
- "key": "Locale_Country"
- },
- {
- "id": "9864638475",
- "key": "Locale_Language"
- },
- {
- "id": "9866247127",
- "key": "Order_Currency"
- },
- {
- "id": "10000571999",
- "key": "Consumer_IsSwoosh"
- },
- {
- "id": "10002334310",
- "key": "Experience_Domain"
- },
- {
- "id": "10008113559",
- "key": "Experience_Version"
- },
- {
- "id": "10011763262",
- "key": "Platform_BrowserNameVersion"
- },
- {
- "id": "10014432443",
- "key": "Platform_BrowserType"
- },
- {
- "id": "10031102559",
- "key": "View_Channel"
- },
- {
- "id": "10036661021",
- "key": "Experience_Division"
- },
- {
- "id": "10037570300",
- "key": "Experience_Platform"
- },
- {
- "id": "10058250225",
- "key": "Experience_PageName"
- },
- {
- "id": "10117012270",
- "key": "environment"
- },
- {
- "id": "10518640637",
- "key": "Experience_Has_Video"
- },
- {
- "id": "10519940845",
- "key": "country"
- },
- {
- "id": "10681390673",
- "key": "Experience_PDP_inStock"
- },
- {
- "id": "10682341381",
- "key": "Experience_Has_eGift"
- },
- {
- "id": "10753932207",
- "key": "device"
- },
- {
- "id": "10765250647",
- "key": "is_paypal_express"
- },
- {
- "id": "10801590183",
- "key": "hello_world1"
- },
- {
- "id": "10831091580",
- "key": "guest"
- },
- {
- "id": "11059144639",
- "key": "apollo"
- },
- {
- "id": "11173370077",
- "key": "isEU"
- },
- {
- "id": "11484674136",
- "key": "marketplace"
- },
- {
- "id": "11488532798",
- "key": "layout"
- },
- {
- "id": "11918014366",
- "key": "isCPP"
- },
- {
- "id": "12003554420",
- "key": "Experience_Has_ElevatedContent"
- },
- {
- "id": "12835260691",
- "key": "Unite_Experience"
- },
- {
- "id": "12846710425",
- "key": "hasNativeDatePicker"
- },
- {
- "id": "12881640224",
- "key": "isDotcomNavTest"
- },
- {
- "id": "13342130012",
- "key": "Experience_Device_Width"
- },
- {
- "id": "13352090350",
- "key": "checkout_cic-3873"
- },
- {
- "id": "13376940257",
- "key": "checkout_cic_3887"
- },
- {
- "id": "13382470178",
- "key": "checkout_cic_3783"
- },
- {
- "id": "13415970289",
- "key": "Experience_PDP_lowInventory"
- },
- {
- "id": "13566780245",
- "key": "checkout_cic_3873"
- },
- {
- "id": "13707560258",
- "key": "is_signedin"
- },
- {
- "id": "13719440108",
- "key": "prs_response"
- },
- {
- "id": "14069500669",
- "key": "Experience_PDP_styleColor"
- },
- {
- "id": "14158780094",
- "key": "testtest"
- },
- {
- "id": "14355400392",
- "key": "checkout_cic_3921"
- },
- {
- "id": "14369040376",
- "key": "zipcode"
- },
- {
- "id": "14428280661",
- "key": "Experience_Has_SizeAccordion"
- },
- {
- "id": "14726080026",
- "key": "Bopis_Products"
- },
- {
- "id": "14797300656",
- "key": "checkout_cic_4021"
- },
- {
- "id": "14964980548",
- "key": "checkout_cic_3886"
- },
- {
- "id": "15220090434",
- "key": "isBopis"
- },
- {
- "id": "15947410042",
- "key": "Experience_Has_CGC"
- },
- {
- "id": "16030991187",
- "key": "checkout_cic_3991"
- },
- {
- "id": "16850671412",
- "key": "Experience_PDP_evergreen_pdp_layout"
- },
- {
- "id": "16867853374",
- "key": "Experience_PDP_style"
- },
- {
- "id": "16881191233",
- "key": "cartCount"
- },
- {
- "id": "16927229964",
- "key": "Experience_Page_Type"
- },
- {
- "id": "17752290150",
- "key": "Sustainable_Materials_Combining_List"
- },
- {
- "id": "17757960055",
- "key": "Sustainable_Materials_Product_List"
- },
- {
- "id": "17761570392",
- "key": "Sustainable_Materials_Nike_List"
- },
- {
- "id": "17822011547",
- "key": "sustainability_excluded_geo"
- }
- ],
- "botFiltering": true,
- "accountId": "6194110778",
- "events": [],
- "revision": "5344"
- },
- "analyticsUserId": null,
- "requestMeta": {
- "language": {
- "code": "zh-Hans",
- "local": "%u7B80%u4F53%u4E2D%u6587",
- "name": "Chinese (Simplified)"
- },
- "country": {
- "code": "cn",
- "local": "%u4E2D%u56FD",
- "name": "China"
- },
- "currency": {
- "code": "CNY",
- "name": "Chinese yuan",
- "symbol": "�"
- },
- "basename": "/cn/",
- "basepath": "/",
- "languageMappings": {
- "urlParam": "zh-Hans",
- "language": "zh-Hans",
- "intl": "zh-Hans-CN",
- "langRegion": "zh-CN",
- "hreflang": "zh-Hans-CN",
- "default": true
- }
- },
- "featureFlags": {
- "x-memory-usage": false,
- "x-disable-global-nav": false,
- "x-disable-nes-client": false,
- "x-disable-dcm": false,
- "x-disable-bouncex": false,
- "x-disable-branch": false,
- "x-disable-unite": false,
- "x-disable-segment": false,
- "x-disable-appsflyer": false,
- "clp-with-mocks": false,
- "x-disable-ui-experiments": false,
- "x-enable-optimizely-logs": false
- },
- "session": {
- "parentId": "25f6f95471f3ed0c",
- "spanId": "376049a2ded59db3",
- "traceId": "aa674535c81a2105"
- },
- "localization": {
- "translations": {
- "cancel_label": "%u53D6%u6D88",
- "close_label": "%u5173%u95ED",
- "email_address_label": "%u7535%u5B50%u90AE%u4EF6%u5730%u5740",
- "errorPage_legend_1": "%u6211%u4EEC%u627E%u4E0D%u5230%u60A8%u8981%u67E5%u627E%u7684%u9875%u9762%u3002",
- "errorPage_legend_2": "%u5F88%u62B1%u6B49%u7ED9%u60A8%u9020%u6210%u4E0D%u4FBF%u3002",
- "errorPage_secondary_legend": "%u62B1%u6B49%uFF0C%u6211%u4EEC%u5931%u8BEF%u4E86%u3002",
- "member_access_label": "%u4F1A%u5458%u901A%u9053",
- "member_exclusive": "%u4F7F%u7528%u514D%u8D39 Nike %u4F1A%u5458%u5E10%u6237%u9009%u8D2D%u6B64%u4EA7%u54C1",
- "member_only_login_label": "%u767B%u5F55/%u52A0%u5165",
- "metatag_title_appendix": "-%u8010%u514B([brand])%u4E2D%u56FD%u5B98%u7F51",
- "nike_by_you": "Nike by You",
- "nike_by_you_label": "%u4E13%u5C5E%u5B9A%u5236",
- "notify_me_label": "%u901A%u77E5%u6211",
- "notify_me_modal_text": "%u5728 [productName] %u53D1%u552E%u65F6%u83B7%u53D6%u4E00%u6B21%u6027%u7684%u7535%u5B50%u90AE%u4EF6%u63D0%u9192%u3002[privacyLink] %u548C [termsOfUseLink]",
- "notify_me_modal_title": "%u62A2%u5148%u83B7%u77E5",
- "notify_me_thank_you_window_text": "%u6B64%u4EA7%u54C1%u53D1%u552E%u65F6%uFF0C%u60A8%u4F1A%u6536%u5230%u53D1%u9001%u81F3 [email] %u7684%u4E00%u6B21%u6027%u7535%u5B50%u90AE%u4EF6%u63D0%u9192%u3002",
- "notify_me_thank_you_window_title": "%u60A8%u5DF2%u5728%u901A%u77E5%u5217%u8868%u4E2D",
- "play_button_label": "%u64AD%u653E",
- "privacy_policy_link_label": "%u9690%u79C1%u653F%u7B56",
- "productContainer_recommended_for_you": "%u4E13%u5C5E%u63A8%u8350",
- "productContainer_top_trending": "%u70ED%u95E8%u8D8B%u52BF",
- "replay_button_label": "%u91CD%u653E",
- "shop_all_label": "%u7ACB%u5373%u9009%u8D2D",
- "shop_label": "%u9009%u8D2D",
- "socialCard_description": "Nike %u81F4%u529B%u4E8E%u63D0%u4F9B%u521B%u65B0%u7684%u4EA7%u54C1%u3001%u4F53%u9A8C%u548C%u670D%u52A1%uFF0C%u4E3A%u8FD0%u52A8%u5458%u5E26%u6765%u6D3B%u529B%u3002%u52A0%u5165 Nike %u4F1A%u5458%uFF0C%u6BCF%u7B14%u8BA2%u5355%u5747%u53EF%u4EAB%u53D7%u514D%u8D39%u914D%u9001%u548C%u514D%u8D39%u9000%u6362%u8D27%u670D%u52A1",
- "socialCard_hurley_description": "%u6C34%u57DF%u5185%u5916%u7F14%u9020%u51FA%u4F17%u8868%u73B0%u7684%u5FC5%u5907%u5229%u5668%u3002%u8BF7%u8BBF%u95EE Hurley.com%uFF0C%u4E86%u89E3 Hurley %u51B2%u6D6A%u77ED%u88E4%u3001%u9632%u5BD2%u8863%u7B49%u4EA7%u54C1%u8D44%u8BAF",
- "sold_out_label": "%u5DF2%u552E%u7F44",
- "submit_label": "%u63D0%u4EA4",
- "subtitle_toggle_off": "%u5173%u95ED%u5B57%u5E55",
- "subtitle_toggle_on": "%u5F00%u542F%u5B57%u5E55",
- "team_selector_see_all": "%u663E%u793A%u5168%u90E8",
- "team_selector_see_less": "%u663E%u793A%u8F83%u5C11",
- "terms_of_use_label": "%u4F7F%u7528%u6761%u6B3E",
- "video_watch_button_label": "%u89C2%u770B",
- "view_all": "%u67E5%u770B%u5168%u90E8"
- },
- "country": {
- "code": "cn",
- "local": "%u4E2D%u56FD",
- "name": "China"
- },
- "language": {
- "code": "zh-Hans",
- "local": "%u7B80%u4F53%u4E2D%u6587",
- "name": "Chinese (Simplified)"
- },
- "currency": {
- "code": "CNY",
- "name": "Chinese yuan",
- "symbol": "�"
- }
- },
- "previewToken": null
- },
- "appData": {
- "cards": {
- "c999dc80-c974-4252-ac53-32f953915135": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "4a4c97cd691a9fad34a5d958b057a22b27aa9ae0a6480378ccd436c148e5ab35"
- },
- "actionType": "button",
- "actionText": "%u7ACB%u5373%u9009%u8D2D",
- "destinationType": "url",
- "id": "fd10bcb4-79e3-429e-86c5-ff1cc4f726eb",
- "destinationId": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "%u524D%u8DB3%u642D%u8F7D%u589E%u539AZOOM AIR%uFF0C%u5982%u4F60%u6DFB%u7FFC%u3002<br>%u5168%u65B037%u4EE3%uFF0C%u73B0%u5DF2%u4E0A%u5E02",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#111111"
- },
- "colorTheme": "dark",
- "id": "c999dc80-c974-4252-ac53-32f953915135",
- "subtitleProps": {
- "text": "%u65E5%u5E38%u63D0%u901F%uFF0C%u5B83%u9760%u5F97%u4F4F",
- "textColor": "#111111"
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": "NIKE AIR ZOOM <br>PEGASUS 37",
- "fontFamily": "base",
- "fontSize": "medium",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "video",
- "loop": true,
- "videoId": "6152276738001",
- "portraitVideoId": "6152276740001",
- "autoPlay": true,
- "portraitPosterUrl": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/82f25b8e-8474-4954-99d5-dd465426f350/image.jpg",
- "landscapePosterUrl": "",
- "imageHeight": "medium"
- },
- "f14e8480-8703-4883-bf6b-e360e7cf7a37": {
- "containerType": "section_headline",
- "cardId": "f14e8480-8703-4883-bf6b-e360e7cf7a37",
- "styles": {},
- "title": "%u7CBE%u9009%u6545%u4E8B",
- "actions": []
- },
- "f17d55c8-490a-4cec-844c-a4d6eedfa8c6": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "b57eff3c655c3386f59af98a19fc5720b95da481e26bbbe4fbeb7137d954ad5a"
- },
- "actionType": "button",
- "actionText": "%u7ACB%u5373%u9009%u8D2D",
- "destinationType": "url",
- "id": "dbc05fbc-ced3-4c85-8779-254d58500ba4",
- "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "%u5148%u950B%u8BBE%u8BA1%uFF0C%u8857%u5934%u673A%u80FD",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#111111"
- },
- "colorTheme": "dark",
- "id": "f17d55c8-490a-4cec-844c-a4d6eedfa8c6",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": "JORDAN DELTA",
- "fontFamily": "base",
- "fontSize": "medium",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/76acee39-9671-4fab-a747-ceab63f33db7/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "76acee39-9671-4fab-a747-ceab63f33db7",
- "squarish": ""
- },
- "imageHeight": "small"
- },
- "4178f225-131e-4308-bb02-5c6a10c3f519": {
- "containerType": "section_headline",
- "cardId": "4178f225-131e-4308-bb02-5c6a10c3f519",
- "styles": {},
- "title": " ",
- "actions": []
- },
- "a6734c52-8fb4-479b-b5ac-71f6ad5bb152": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "eb4f2a3237ed09a722755835d1d5cfa248183e91cb3a5a68e8bc157949794e12"
- },
- "actionType": "button",
- "actionText": "%u7ACB%u5373%u9009%u8D2D",
- "destinationType": "url",
- "id": "9f1b4df1-53ce-4e86-a036-0bae8438feaa",
- "destinationId": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "%u65B0%u54C1%u4E0A%u5E02",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#111111"
- },
- "colorTheme": "dark",
- "id": "a6734c52-8fb4-479b-b5ac-71f6ad5bb152",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": "VIBRANT PACK",
- "fontFamily": "base",
- "fontSize": "medium",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/f3ef8ce2-5a0c-4baf-b262-11bfe29e254d/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "f3ef8ce2-5a0c-4baf-b262-11bfe29e254d",
- "squarish": ""
- },
- "imageHeight": "small"
- },
- "4a2bbddc-6377-49c7-9f9f-6994a0612baa": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "2d0998aa3fb1e8690ef6a2daab7f2872bf454121ad32def15f19684744ffc0f8"
- },
- "actionType": "button",
- "actionText": "%u7ACB%u5373%u9009%u8D2D",
- "destinationType": "url",
- "id": "06208b44-6836-4376-936f-8facb4e3009d",
- "destinationId": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "%u524D%u8DB3%u642D%u8F7D%u589E%u539AZOOM AIR%uFF0C%u5982%u4F60%u6DFB%u7FFC%u3002<br>%u5168%u65B037%u4EE3%uFF0C%u73B0%u5DF2%u4E0A%u5E02",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#FFFFFF"
- },
- "colorTheme": "light",
- "id": "4a2bbddc-6377-49c7-9f9f-6994a0612baa",
- "subtitleProps": {
- "text": "%u65E5%u5E38%u63D0%u901F%uFF0C%u5B83%u9760%u5F97%u4F4F",
- "textColor": "#FFFFFF"
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": "NIKE AIR ZOOM <br>PEGASUS 37",
- "fontFamily": "marketing",
- "fontSize": "small",
- "fontStyle": "medium",
- "textColor": "#FFF"
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "video",
- "loop": true,
- "videoId": "6152276738001",
- "autoPlay": true,
- "portraitPosterUrl": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/82f25b8e-8474-4954-99d5-dd465426f350/image.jpg",
- "landscapePosterUrl": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/1d679763-42d9-48fd-836b-8de644aa0e37/image.jpg",
- "imageHeight": "medium"
- },
- "28d6b7d2-7214-4d1c-ae39-79c07d055cd1": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "118182505862a37aad061f3e4c61fca3d619a5801616a8169f64b9ba4ed1cc39"
- },
- "actionType": "button",
- "actionText": "%u7ACB%u5373%u9009%u8D2D",
- "destinationType": "url",
- "id": "f500e1b3-6a9a-436e-bcd3-db4098b883f1",
- "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "JORDAN DELTA<br>%u5148%u950B%u8BBE%u8BA1%uFF0C%u8857%u5934%u673A%u80FD",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#FFFFFF"
- },
- "colorTheme": "light",
- "id": "28d6b7d2-7214-4d1c-ae39-79c07d055cd1",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": "",
- "fontFamily": "marketing",
- "fontSize": "small",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/7d8b134a-268d-4242-a45a-8419e3093db9/image.jpg",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/76acee39-9671-4fab-a747-ceab63f33db7/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "7d8b134a-268d-4242-a45a-8419e3093db9",
- "portrait": "76acee39-9671-4fab-a747-ceab63f33db7",
- "squarish": ""
- },
- "imageHeight": "small"
- },
- "cf4b78af-8f00-45e1-9130-7233feee45c1": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "b00e3013c1cfb51d75532ea09d2aaa97d66067ac28567d1566e6a12209327fbc"
- },
- "actionType": "button",
- "actionText": "%u7ACB%u5373%u9009%u8D2D",
- "destinationType": "url",
- "id": "f3c8edc6-61b8-4e1e-8502-5a9f536177c7",
- "destinationId": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "VIBRANT PACK<br>%u65B0%u54C1%u4E0A%u5E02",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#FFFFFF"
- },
- "colorTheme": "light",
- "id": "cf4b78af-8f00-45e1-9130-7233feee45c1",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": "",
- "fontFamily": "marketing",
- "fontSize": "small",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/2ffe56ab-5b05-466c-9bbe-4945f2259af4/image.jpg",
- "portraitURL": "",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "2ffe56ab-5b05-466c-9bbe-4945f2259af4",
- "portrait": "",
- "squarish": ""
- },
- "imageHeight": "small"
- },
- "cf568695-271c-413e-b0ec-7ec6b62c67d7": {
- "containerType": "section_headline",
- "cardId": "cf568695-271c-413e-b0ec-7ec6b62c67d7",
- "styles": {},
- "title": "%u8BAD%u7EC3%u79D8%u8BC0%u4E0E%u5EFA%u8BAE",
- "actions": []
- },
- "f5193177-d442-4278-9d07-fe74830229fe": {
- "styles": {},
- "containerType": "slideshow",
- "sectionHeadline": {
- "title": "",
- "actions": []
- },
- "slides": [
- {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "c2fdf9a0-0f05-4187-a07c-2167e6dd8821",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/9cc46367-e0c5-4d55-98c2-09666eff7809/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "9cc46367-e0c5-4d55-98c2-09666eff7809",
- "squarish": ""
- },
- "imageHeight": "large"
- },
- {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "3cf0b882-954a-45f3-bae8-e0cae82e6bb8",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/366c7f59-f364-4a06-bbe0-b846613d8e0e/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "366c7f59-f364-4a06-bbe0-b846613d8e0e",
- "squarish": ""
- },
- "imageHeight": "large"
- },
- {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "04b89b24-b70e-4aea-8253-8fe9140ddf0c",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/e87d0d81-136f-4dca-a79c-9f11ffc8b62b/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "e87d0d81-136f-4dca-a79c-9f11ffc8b62b",
- "squarish": ""
- },
- "imageHeight": "large"
- }
- ],
- "speed": 6000
- },
- "aed54f7c-add9-4c48-bb34-bd359699eddc": {
- "styles": {},
- "containerType": "slideshow",
- "sectionHeadline": {
- "title": "",
- "actions": []
- },
- "slides": [
- {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "ea744445-6a9d-4c97-bd49-0e78c1be7a72",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/e5f2d78e-a0aa-47c2-b57d-a0020ae97d00/image.jpg",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/7522790d-0614-4b3b-99ba-0854dd3a7233/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "e5f2d78e-a0aa-47c2-b57d-a0020ae97d00",
- "portrait": "7522790d-0614-4b3b-99ba-0854dd3a7233",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "b19075fd-e099-446e-9580-3ad6b18d88a3",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/3a831280-5d1c-4a33-a667-2bea83e34ce0/image.jpg",
- "portraitURL": "",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "3a831280-5d1c-4a33-a667-2bea83e34ce0",
- "portrait": "",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "67916580-4184-400b-a76e-18d56d1b48e9",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/ea2e1cf7-7bb9-449b-a527-b5491971beb6/image.jpg",
- "portraitURL": "",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "ea2e1cf7-7bb9-449b-a527-b5491971beb6",
- "portrait": "",
- "squarish": ""
- },
- "imageHeight": "medium"
- }
- ],
- "speed": 6000
- },
- "1ed0eeb1-82f6-4d0f-b626-afeadb1cc3af": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "f16c4c793fede9641611820791704f15f2dff0e57c4197b9f55780f1184376ca"
- },
- "actionType": "button",
- "actionText": "%u77A7%u77A7%u6211%u4EEC",
- "destinationType": "url",
- "id": "e2bd5f24-ff46-457f-8488-186576941f46",
- "destinationId": "https://www.nike.com/cn/you-cant-stop-us",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": null,
- "fontSizeSet": false
- },
- "colorTheme": "dark",
- "id": "1ed0eeb1-82f6-4d0f-b626-afeadb1cc3af",
- "subtitleProps": {
- "text": "",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "extra_small",
- "fontStyle": "medium",
- "textColor": null
- },
- "textLocation": {
- "horizontal": "center",
- "vertical": "center"
- },
- "titleProps": {
- "text": "%u4F60%u6211%u4E00%u8D77%uFF0C%u52BF%u5FC5%u66F4%u5F3A%u3002",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "medium",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "urlIngredients": {},
- "openInNewTab": false,
- "containerType": "text",
- "backgroundColor": "transparent",
- "urls": []
- },
- "55ea6073-e394-4747-bf31-26dc70e5b4d4": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "9e02f37f9c88a246b27c28419e0f5c3f4378d4713a57bc4ee05ddefb89874e7f"
- },
- "actionType": "button",
- "actionText": "%u77A7%u77A7%u6211%u4EEC",
- "destinationType": "url",
- "id": "4a58ecf0-2a5a-4d7d-bb15-cc706661152d",
- "destinationId": "https://www.nike.com/cn/you-cant-stop-us",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": null,
- "fontSizeSet": false
- },
- "colorTheme": "dark",
- "id": "55ea6073-e394-4747-bf31-26dc70e5b4d4",
- "subtitleProps": {
- "text": "",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "extra_small",
- "fontStyle": "medium",
- "textColor": null
- },
- "textLocation": {
- "horizontal": "center",
- "vertical": "center"
- },
- "titleProps": {
- "text": "%u4F60%u6211%u4E00%u8D77%uFF0C%u52BF%u5FC5%u66F4%u5F3A%u3002",
- "colorTheme": "dark",
- "fontFamily": "marketing",
- "fontSize": "small",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "urlIngredients": {},
- "openInNewTab": false,
- "containerType": "text",
- "backgroundColor": "transparent",
- "urls": []
- },
- "6581553b-798c-4d97-b558-4e5c4c8f5409": {
- "styles": {},
- "containerType": "filmstrip",
- "sectionHeadline": {
- "title": "%u6625%u590F%u8D8B%u52BF",
- "actions": []
- },
- "slides": [
- {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "5147159e83da3809ce4f08b5ab3f1f97222efcc2361d9ea57f1136a6e46b2622"
- },
- "actionType": "button",
- "actionText": "%u9009%u8D2DAIR JORDAN 1%u7CFB%u5217",
- "destinationType": "url",
- "id": "8125a251-15a2-44b0-9b8d-2b2c73b51fe5",
- "destinationId": "https://www.nike.com/cn/w/jordan-1-4foky",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "f31ee525-a9ca-4543-acd5-a8aa148bca9d",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/jordan-1-4foky",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/85cf1cb7-a4e7-4614-a339-6c5cb720228b/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "85cf1cb7-a4e7-4614-a339-6c5cb720228b",
- "squarish": ""
- }
- },
- {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "af96fc5d08f72cbab838e235918e168d330867d5d1fb76138e1ee7152242a213"
- },
- "actionType": "button",
- "actionText": "%u9009%u8D2DJORDAN%u670D%u88C5",
- "destinationType": "url",
- "id": "1672e468-5bd4-45a6-873b-d6bfe7be3633",
- "destinationId": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "59853066-8857-40dc-aec6-359912da0538",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/9865c658-35cc-4fb6-b858-6f0a607f4929/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "9865c658-35cc-4fb6-b858-6f0a607f4929",
- "squarish": ""
- }
- },
- {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "33d465787a5919a59d99df11768f6e489dc8c48ce90b1202a349b4a7eae06418"
- },
- "actionType": "button",
- "actionText": "%u9009%u8D2DJORDAN DELTA%u7CFB%u5217",
- "destinationType": "url",
- "id": "72294be4-a868-41d4-9cff-45df9193b9d9",
- "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "27287875-9d19-439e-a0d9-84ffaa535924",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/05344530-316a-4a10-8225-f38764efbad6/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "05344530-316a-4a10-8225-f38764efbad6",
- "squarish": ""
- }
- }
- ],
- "speed": 6000
- },
- "3c52915f-821f-451b-9144-af59e95c5d8b": {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": "",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": null,
- "fontSizeSet": false
- },
- "colorTheme": "dark",
- "id": "3c52915f-821f-451b-9144-af59e95c5d8b",
- "subtitleProps": {
- "text": "<br>%uFF08%u6ED1%u52A8%u67E5%u770B%u66F4%u591A%uFF09",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "extra_small",
- "fontStyle": "medium",
- "textColor": null
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "center"
- },
- "titleProps": {
- "text": " ",
- "colorTheme": "dark",
- "fontFamily": "base",
- "fontSize": "extra_large",
- "fontStyle": "medium",
- "textColor": null
- },
- "urlIngredients": {},
- "openInNewTab": false,
- "containerType": "text",
- "backgroundColor": "transparent",
- "urls": []
- },
- "62fcf326-236b-4908-9851-f0f58336e3c2": {
- "styles": {},
- "containerType": "filmstrip",
- "sectionHeadline": {
- "title": "%u6625%u590F%u8D8B%u52BF",
- "actions": []
- },
- "slides": [
- {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "0ae0d6e70d92f330feb2df6fbc22766f4c237a875bc1762b4d73ea0a027689f6"
- },
- "actionType": "button",
- "actionText": "%u9009%u8D2DAIR JORDAN 1%u7CFB%u5217",
- "destinationType": "url",
- "id": "bd5c67d9-8c2d-4d6a-a566-02a995e05b04",
- "destinationId": "https://www.nike.com/cn/w/jordan-1-4foky",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "d0ea3c06-3f2e-4e07-8d8b-de6be69de6f5",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/jordan-1-4foky",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/3920ab0a-68f3-44ea-b7ee-c271a5943106/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "3920ab0a-68f3-44ea-b7ee-c271a5943106",
- "squarish": ""
- }
- },
- {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "b264c5d8f6a57f69c8236f485f491da3ad32ea1eb8016d940a8f1c156f87c018"
- },
- "actionType": "button",
- "actionText": "%u9009%u8D2DJORDAN%u670D%u88C5",
- "destinationType": "url",
- "id": "c23b1853-f5f7-4f96-8078-2b1d2de05dd9",
- "destinationId": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "3b435db5-f6d7-42bb-ad41-f5785be8c880",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/71d5c3b0-bf65-486c-94fc-68e358673913/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "71d5c3b0-bf65-486c-94fc-68e358673913",
- "squarish": ""
- }
- },
- {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "3d229fc871c3dd9a232b1cc311292ed71aec3876d4807af1b5893ecc3108e973"
- },
- "actionType": "button",
- "actionText": "%u9009%u8D2DJORDAN DELTA%u7CFB%u5217",
- "destinationType": "url",
- "id": "94cd9cc7-c7f7-4f31-9c71-0e480cce0253",
- "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "88ad6f11-ef66-43cc-aaba-c8b82063f751",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "after"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/04d3c883-97e6-4ef0-8e1f-53931a156520/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "04d3c883-97e6-4ef0-8e1f-53931a156520",
- "squarish": ""
- }
- }
- ],
- "speed": 6000
- },
- "9b5cadcd-5072-45b0-8b74-323ea75e47ec": {
- "containerType": "section_headline",
- "cardId": "9b5cadcd-5072-45b0-8b74-323ea75e47ec",
- "styles": {},
- "title": "%u4F1A%u5458%u4E2D%u5FC3",
- "actions": []
- },
- "1eb56bcb-568a-45d6-9b89-5dc087465277": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "84aacd52a8c4bd2d9e6e5c14dffe15c559048dc474442d1bcad70d67239d09b7"
- },
- "actionType": "button",
- "actionText": "%u4E0B%u8F7DNIKE APP",
- "destinationType": "url",
- "id": "32c69ea8-7045-41bf-bf9a-8596955ce464",
- "destinationId": "https://nike.onelnk.com/3CPe/f1a3c4f4",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": "%u7CBE%u9009%u4EA7%u54C15%u6298%u8D77%uFF0C%u4E13%u4EAB%u989D%u59167%u6298",
- "fontFamily": "base",
- "fontSize": "small",
- "fontStyle": "regular",
- "textColor": "#111111"
- },
- "colorTheme": "dark",
- "id": "1eb56bcb-568a-45d6-9b89-5dc087465277",
- "subtitleProps": {
- "text": "NIKE APP %u72EC%u5BB6%u798F%u5229",
- "fontFamily": "base",
- "fontSize": "extra_large",
- "fontStyle": "regular",
- "textColor": "#111111"
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": "%u9650%u65F6%u4F18%u9009%u7279%u60E0",
- "fontFamily": "base",
- "fontSize": "medium",
- "fontStyle": "medium",
- "textColor": "#111111"
- },
- "cardLinkUrl": "https://nike.onelnk.com/3CPe/f1a3c4f4",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/a895394f-b262-4022-b7b8-1b3077deeea1/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "a895394f-b262-4022-b7b8-1b3077deeea1",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- "d63d859e-37ac-4c2e-93a3-8942312a2992": {
- "containerType": "section_headline",
- "cardId": "d63d859e-37ac-4c2e-93a3-8942312a2992",
- "styles": {},
- "title": "%u4E3A%u4F60%u63A8%u8350",
- "actions": []
- },
- "0a6c4c1b-06e5-446a-8e95-96813cbc7260": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "47b9c0116bfde6188cce64eeff248221ea893cc55f888e23d7550def52d184c9"
- },
- "actionType": "button",
- "actionText": "%u7537%u5B50%u70ED%u9500",
- "destinationType": "url",
- "id": "98ea362e-aea3-44b2-b9b4-2aa0d83b39b6",
- "destinationId": "https://www.nike.com/cn/w/mens-best-76m50znik1",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "0a6c4c1b-06e5-446a-8e95-96813cbc7260",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/mens-best-76m50znik1",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/e51553b0-92aa-4248-8c5a-05c7b9e2730e/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "e51553b0-92aa-4248-8c5a-05c7b9e2730e",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- "48884afd-3edc-4e41-b210-74ad36a7d6cb": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "79747d5fad5caa71e9109b11c292fa074188b289ea2a803d0969fad91645eb85"
- },
- "actionType": "button",
- "actionText": "%u5973%u5B50%u70ED%u9500",
- "destinationType": "url",
- "id": "36f587e9-653c-4673-9863-c06f9ecde8ed",
- "destinationId": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "48884afd-3edc-4e41-b210-74ad36a7d6cb",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/fceb3dc5-ea7e-424c-b4dc-b00ab92faf73/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "fceb3dc5-ea7e-424c-b4dc-b00ab92faf73",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- "8d545738-fd22-488a-b17a-1081370adcc4": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "ea6d674f6d9be3e7bab9b2e4660b315891907aa399450695857d9708ff6db8d5"
- },
- "actionType": "button",
- "actionText": "%u6D41%u884C%u6F6E%u54C1",
- "destinationType": "url",
- "id": "14a2840e-1956-4154-9754-f2c42bd6efdc",
- "destinationId": "https://www.nike.com/cn/icons",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "8d545738-fd22-488a-b17a-1081370adcc4",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/icons",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/03b87f64-028c-4ad5-bd6a-074a52582805/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "03b87f64-028c-4ad5-bd6a-074a52582805",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- "7eb4ef9b-eba9-4667-b6ad-9489a1b09555": {
- "styles": {},
- "actionButtons": [],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "7eb4ef9b-eba9-4667-b6ad-9489a1b09555",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "start"
- },
- "titleProps": {
- "text": ""
- },
- "urlIngredients": {},
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/6eecf904-2d99-4d00-bc84-4672f5375aec/image.jpg",
- "portraitURL": "",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "6eecf904-2d99-4d00-bc84-4672f5375aec",
- "portrait": "",
- "squarish": ""
- },
- "imageHeight": "small"
- },
- "de2fd63e-c1ac-4909-bc8b-5aa3dd87f6fd": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "ef2559eb4115fa80375cafc1ff90cc8d3e83bc7060969bb142af6e08be58de06"
- },
- "actionType": "button",
- "actionText": "%u7537%u5B50%u70ED%u9500",
- "destinationType": "url",
- "id": "9d93a354-eba4-4725-81e4-8625ed03bb52",
- "destinationId": "https://www.nike.com/cn/w/mens-best-76m50znik1",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "de2fd63e-c1ac-4909-bc8b-5aa3dd87f6fd",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/mens-best-76m50znik1",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/98fc86a0-9774-4eee-a007-8492e8ed623a/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "98fc86a0-9774-4eee-a007-8492e8ed623a",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- "f99a342a-dad9-4f30-8a21-2f646431cbc2": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "6a4fc2058aed198e4ccb0e5c310a59668a333e80968936f537691153a4d6c85b"
- },
- "actionType": "button",
- "actionText": "%u5973%u5B50%u70ED%u9500",
- "destinationType": "url",
- "id": "1590667f-fd46-4440-ae84-3582028f1b15",
- "destinationId": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "f99a342a-dad9-4f30-8a21-2f646431cbc2",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/8e7a1558-1ac4-407f-9e79-a56b077a29e3/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "8e7a1558-1ac4-407f-9e79-a56b077a29e3",
- "squarish": ""
- },
- "imageHeight": "medium"
- },
- "033a48ec-1b4e-4143-9d57-65e9f87e8a40": {
- "styles": {},
- "actionButtons": [
- {
- "analytics": {
- "hashKey": "da58213d494950ebad5ca86e9bd844539b65348d768b38925cf04925052b2805"
- },
- "actionType": "button",
- "actionText": "%u6D41%u884C%u6F6E%u54C1",
- "destinationType": "url",
- "id": "e3ac721c-4cbf-45e5-8377-df9f2e1e1d13",
- "destinationId": "https://www.nike.com/cn/icons",
- "openInNewTab": false,
- "urlIngredients": {
- "type": "URL"
- }
- }
- ],
- "bodyProps": {
- "text": ""
- },
- "colorTheme": "dark",
- "id": "033a48ec-1b4e-4143-9d57-65e9f87e8a40",
- "subtitleProps": {
- "text": ""
- },
- "textLocation": {
- "horizontal": "start",
- "vertical": "end"
- },
- "titleProps": {
- "text": ""
- },
- "cardLinkUrl": "https://www.nike.com/cn/icons",
- "urlIngredients": {
- "type": "URL"
- },
- "destinationType": "url",
- "openInNewTab": false,
- "containerType": "image",
- "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "isTextBelowImage": false,
- "landscapeURL": "",
- "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/19405df0-1d85-4588-9861-26bec52908c7/image.jpg",
- "landscapeFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "portraitFocalPoint": {
- "horizontal": "center",
- "vertical": "center"
- },
- "assetsIds": {
- "landscape": "",
- "portrait": "19405df0-1d85-4588-9861-26bec52908c7",
- "squarish": ""
- },
- "imageHeight": "medium"
- }
- },
- "urls": [],
- "banner": {},
- "pageData": {
- "threadId": "654592de-2c9f-4138-ad50-4908adf82a5b",
- "preview": false,
- "openGraph": {
- "imageUrl": "https://c.static-nike.com/a/images/w_1920,c_limit/mdbgldn6yg1gg88jomci/image.jpg",
- "description": "%u767B%u5F55Nike%u5B98%u65B9%u7F51%u7AD9<nike.com>,%u8FD9%u91CC%u6709%u6700%u65B0%u7684%u8FD0%u52A8%u8BAD%u7EC3%u7406%u5FF5,%u81EA%u7531%u7545%u5FEB%u7684%u8D2D%u7269%u4F53%u9A8C%u4EE5%u53CA%u66F4%u591A%u7684%u6700%u65B0%u4FE1%u606F.Just Do It.",
- "title": "%u8010%u514B(Nike)%u4E2D%u56FD%u5B98%u7F51"
- },
- "seoProperties": {
- "keywords": "%u8010%u514B,Nike,%u8010%u514B(Nike)%u4E2D%u56FD%u5B98%u7F51",
- "description": "%u8BBF%u95EE%u8010%u514B(Nike)%u5B98%u7F51%uFF0C%u4E86%u89E3%u6700%u65B0%u7684%u8FD0%u52A8%u8BAD%u7EC3%u7406%u5FF5%u53CA%u4EA7%u54C1%u4FE1%u606F%uFF0C%u6210%u4E3A%u8010%u514B%u4F1A%u5458%uFF0C%u81EA%u7531%u7545%u5FEB%u7684%u8D2D%u7269%u4F53%u9A8C%uFF0C%u5C3D%u5728Nike.com.",
- "officialPath": ">",
- "title": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
- "doNotIndex": false
- },
- "title": "%u8010%u514B%u4E2D%u56FD%u5B98%u7F51",
- "showBanner": true,
- "layout": "654592de-2c9f-4138-ad50-4908adf82a5b",
- "collection": "1fe9fbf3-3003-4a81-934d-67887c732dbc",
- "pageType": "page"
- },
- "layout": {
- "654592de-2c9f-4138-ad50-4908adf82a5b": {
- "mode": "layout",
- "modificationDate": "2020-04-30T03:54:35.861Z",
- "createdBy": "weirong.zheng@nike.com",
- "transforms": [],
- "id": "654592de-2c9f-4138-ad50-4908adf82a5b",
- "creationDate": "2020-04-30T03:54:35.853Z",
- "items": [
- "e4a34245-27f4-406d-a53a-b1bb322ce7ea",
- "4eae4f9f-3c43-408f-8ebb-dac7512f93bf",
- "4cd4ec44-a8da-4e1e-8c1e-5e129d108372",
- "3b478e88-9d87-4cee-85d6-cb5e72ffef5d",
- "a4b9f0e4-8dcc-40e6-9aeb-10610cd1d58a",
- "93d3836b-7672-4fe9-9cd9-fedc7a23e290",
- "77e48033-3bdb-4ce0-ae58-e9b06c81ab22",
- "9da7f736-45b5-40c5-9ef3-297c473d12e8",
- "122c23f5-19e2-4e20-ba42-0861d39e97eb",
- "e88cbb0a-a73d-4228-a238-e92801e00910",
- "59f3a652-39f7-4723-9301-38bfff190a74",
- "c212ec3f-def3-4082-89fe-ba5463251a9f",
- "8fa5f61a-650d-47c1-a9c5-9dcdded718b3",
- "a8764f61-4549-4f68-b997-1ce4982a5dce",
- "f2a4537e-8498-4641-b967-0fdc5f0ab016",
- "469b694a-92ea-4a64-b22c-3f2d33757749",
- "ee41f33f-c120-4f03-8bfb-51e4cbf5be61",
- "f369d2c2-4cf9-4086-b6ef-bc7b5065b781"
- ],
- "version": "1588218875861",
- "resourceType": "content/layout"
- }
- },
- "layoutItems": {
- "1a466646-20f6-4691-bd66-2fa7ebe2a5aa": {
- "mode": "block",
- "data": "c999dc80-c974-4252-ac53-32f953915135",
- "id": "1a466646-20f6-4691-bd66-2fa7ebe2a5aa",
- "containsFallBackTitle": true
- },
- "08e72f7e-8bbe-4fe8-bbeb-e524d428c417": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "08e72f7e-8bbe-4fe8-bbeb-e524d428c417",
- "items": [
- "1a466646-20f6-4691-bd66-2fa7ebe2a5aa"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "9d5b04ce-947d-4570-89c6-b69a9a9f0775": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "9d5b04ce-947d-4570-89c6-b69a9a9f0775",
- "items": [
- "08e72f7e-8bbe-4fe8-bbeb-e524d428c417"
- ]
- },
- "e4a34245-27f4-406d-a53a-b1bb322ce7ea": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {},
- "fluid": true
- },
- "id": "e4a34245-27f4-406d-a53a-b1bb322ce7ea",
- "items": [
- "9d5b04ce-947d-4570-89c6-b69a9a9f0775"
- ],
- "position": {
- "small": 1,
- "medium": false,
- "large": false
- }
- },
- "f2bd3e16-cb91-4cf7-9784-79761ea21ea3": {
- "mode": "block",
- "data": "f14e8480-8703-4883-bf6b-e360e7cf7a37",
- "id": "f2bd3e16-cb91-4cf7-9784-79761ea21ea3"
- },
- "89fca3a4-007b-4181-bfe0-f2f3dd2087a5": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "89fca3a4-007b-4181-bfe0-f2f3dd2087a5",
- "items": [
- "f2bd3e16-cb91-4cf7-9784-79761ea21ea3"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "a5860d09-da8a-463f-90a2-37d0374aaf98": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "a5860d09-da8a-463f-90a2-37d0374aaf98",
- "items": [
- "89fca3a4-007b-4181-bfe0-f2f3dd2087a5"
- ]
- },
- "4187ec83-46a0-4c6d-bb54-4e8cac2404d3": {
- "mode": "block",
- "data": "f17d55c8-490a-4cec-844c-a4d6eedfa8c6",
- "id": "4187ec83-46a0-4c6d-bb54-4e8cac2404d3"
- },
- "a1fec3bb-d87f-4231-92c2-d9a1359a32ce": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "a1fec3bb-d87f-4231-92c2-d9a1359a32ce",
- "items": [
- "4187ec83-46a0-4c6d-bb54-4e8cac2404d3"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "cdedaaa7-9cf3-44a4-99b7-e39216d71c1e": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "cdedaaa7-9cf3-44a4-99b7-e39216d71c1e",
- "items": [
- "a1fec3bb-d87f-4231-92c2-d9a1359a32ce"
- ]
- },
- "4eae4f9f-3c43-408f-8ebb-dac7512f93bf": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "4eae4f9f-3c43-408f-8ebb-dac7512f93bf",
- "items": [
- "a5860d09-da8a-463f-90a2-37d0374aaf98",
- "cdedaaa7-9cf3-44a4-99b7-e39216d71c1e"
- ],
- "position": {
- "small": 2,
- "medium": false,
- "large": false
- }
- },
- "4b136661-866b-4e05-82dd-871c6c2b95a9": {
- "mode": "block",
- "data": "4178f225-131e-4308-bb02-5c6a10c3f519",
- "id": "4b136661-866b-4e05-82dd-871c6c2b95a9"
- },
- "35a82666-1b2c-4c8a-b1c1-024a14605c47": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "35a82666-1b2c-4c8a-b1c1-024a14605c47",
- "items": [
- "4b136661-866b-4e05-82dd-871c6c2b95a9"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "dab19a74-170a-4a1f-9b83-b45dea86231a": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "dab19a74-170a-4a1f-9b83-b45dea86231a",
- "items": [
- "35a82666-1b2c-4c8a-b1c1-024a14605c47"
- ]
- },
- "5ebe1f87-5e71-4474-9e72-66ce11ae3f26": {
- "mode": "block",
- "data": "a6734c52-8fb4-479b-b5ac-71f6ad5bb152",
- "id": "5ebe1f87-5e71-4474-9e72-66ce11ae3f26"
- },
- "84a7d937-f123-4d87-9cdb-831fdd60590d": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "84a7d937-f123-4d87-9cdb-831fdd60590d",
- "items": [
- "5ebe1f87-5e71-4474-9e72-66ce11ae3f26"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "3b94f084-4d8a-4f1c-93ca-0cffc21c9bd4": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "3b94f084-4d8a-4f1c-93ca-0cffc21c9bd4",
- "items": [
- "84a7d937-f123-4d87-9cdb-831fdd60590d"
- ]
- },
- "4cd4ec44-a8da-4e1e-8c1e-5e129d108372": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "4cd4ec44-a8da-4e1e-8c1e-5e129d108372",
- "items": [
- "dab19a74-170a-4a1f-9b83-b45dea86231a",
- "3b94f084-4d8a-4f1c-93ca-0cffc21c9bd4"
- ],
- "position": {
- "small": 3,
- "medium": false,
- "large": false
- }
- },
- "e0b2cb4b-5f7b-46d5-b9b3-05b0d6caea86": {
- "mode": "block",
- "data": "4a2bbddc-6377-49c7-9f9f-6994a0612baa",
- "id": "e0b2cb4b-5f7b-46d5-b9b3-05b0d6caea86"
- },
- "b6b34fc7-73c9-4a8a-9b1f-01fe22bda6f6": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "b6b34fc7-73c9-4a8a-9b1f-01fe22bda6f6",
- "items": [
- "e0b2cb4b-5f7b-46d5-b9b3-05b0d6caea86"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "fe766a42-f3f4-4795-b095-21bfc60b2117": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "fe766a42-f3f4-4795-b095-21bfc60b2117",
- "items": [
- "b6b34fc7-73c9-4a8a-9b1f-01fe22bda6f6"
- ]
- },
- "3b478e88-9d87-4cee-85d6-cb5e72ffef5d": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {},
- "fluid": true
- },
- "id": "3b478e88-9d87-4cee-85d6-cb5e72ffef5d",
- "items": [
- "fe766a42-f3f4-4795-b095-21bfc60b2117"
- ],
- "position": {
- "small": false,
- "medium": 1,
- "large": 1
- }
- },
- "0532122e-3b1b-40ca-ba76-732b2a5b1d60": {
- "mode": "block",
- "data": "f14e8480-8703-4883-bf6b-e360e7cf7a37",
- "id": "0532122e-3b1b-40ca-ba76-732b2a5b1d60"
- },
- "0bce779a-7fbc-42bb-925b-5300e092eb19": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "0bce779a-7fbc-42bb-925b-5300e092eb19",
- "items": [
- "0532122e-3b1b-40ca-ba76-732b2a5b1d60"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "aef4441a-5ab9-4223-b40f-2cc42ec096ed": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "aef4441a-5ab9-4223-b40f-2cc42ec096ed",
- "items": [
- "0bce779a-7fbc-42bb-925b-5300e092eb19"
- ]
- },
- "3af3d37b-2d1f-4f1f-bfd0-db8ba59f58eb": {
- "mode": "block",
- "data": "28d6b7d2-7214-4d1c-ae39-79c07d055cd1",
- "id": "3af3d37b-2d1f-4f1f-bfd0-db8ba59f58eb"
- },
- "6ca8c0c7-7f98-4f50-89ec-52b7f625609f": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "6ca8c0c7-7f98-4f50-89ec-52b7f625609f",
- "items": [
- "3af3d37b-2d1f-4f1f-bfd0-db8ba59f58eb"
- ],
- "span": {
- "small": 12,
- "large": 6,
- "medium": 6
- }
- },
- "d1bf7e1a-f571-41dd-9499-53f1f1eb611c": {
- "mode": "block",
- "data": "cf4b78af-8f00-45e1-9130-7233feee45c1",
- "id": "d1bf7e1a-f571-41dd-9499-53f1f1eb611c"
- },
- "1c469e5a-a0ef-4a93-bbaa-15f1ed6da5cb": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "1c469e5a-a0ef-4a93-bbaa-15f1ed6da5cb",
- "items": [
- "d1bf7e1a-f571-41dd-9499-53f1f1eb611c"
- ],
- "span": {
- "small": 12,
- "large": 6,
- "medium": 6
- }
- },
- "d5be504c-44d6-426e-b2f2-3dfd943a0fc7": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "d5be504c-44d6-426e-b2f2-3dfd943a0fc7",
- "items": [
- "6ca8c0c7-7f98-4f50-89ec-52b7f625609f",
- "1c469e5a-a0ef-4a93-bbaa-15f1ed6da5cb"
- ]
- },
- "a4b9f0e4-8dcc-40e6-9aeb-10610cd1d58a": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "a4b9f0e4-8dcc-40e6-9aeb-10610cd1d58a",
- "items": [
- "aef4441a-5ab9-4223-b40f-2cc42ec096ed",
- "d5be504c-44d6-426e-b2f2-3dfd943a0fc7"
- ],
- "position": {
- "small": false,
- "medium": 2,
- "large": 2
- }
- },
- "f7dc92ec-2305-4b47-95ca-453d3fb429ca": {
- "mode": "block",
- "data": "cf568695-271c-413e-b0ec-7ec6b62c67d7",
- "id": "f7dc92ec-2305-4b47-95ca-453d3fb429ca"
- },
- "2e564692-e1bc-4a75-858d-38164ce0e4e1": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "2e564692-e1bc-4a75-858d-38164ce0e4e1",
- "items": [
- "f7dc92ec-2305-4b47-95ca-453d3fb429ca"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "0f3988a6-4649-4e9f-8a92-8f050be61041": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "0f3988a6-4649-4e9f-8a92-8f050be61041",
- "items": [
- "2e564692-e1bc-4a75-858d-38164ce0e4e1"
- ]
- },
- "47349d28-f4ec-434d-957f-b425ba471a9e": {
- "mode": "block",
- "data": "f5193177-d442-4278-9d07-fe74830229fe",
- "id": "47349d28-f4ec-434d-957f-b425ba471a9e"
- },
- "30a42dac-ddba-4b47-80c3-8f0fead886f5": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "30a42dac-ddba-4b47-80c3-8f0fead886f5",
- "items": [
- "47349d28-f4ec-434d-957f-b425ba471a9e"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "fae52e55-9ec8-4115-a9e6-134d73472f44": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "fae52e55-9ec8-4115-a9e6-134d73472f44",
- "items": [
- "30a42dac-ddba-4b47-80c3-8f0fead886f5"
- ]
- },
- "93d3836b-7672-4fe9-9cd9-fedc7a23e290": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": true
- },
- "id": "93d3836b-7672-4fe9-9cd9-fedc7a23e290",
- "items": [
- "0f3988a6-4649-4e9f-8a92-8f050be61041",
- "fae52e55-9ec8-4115-a9e6-134d73472f44"
- ],
- "position": {
- "small": 4,
- "medium": false,
- "large": false
- }
- },
- "074c9e93-5f19-4ed3-98b9-26a4579f42c7": {
- "mode": "block",
- "data": "cf568695-271c-413e-b0ec-7ec6b62c67d7",
- "id": "074c9e93-5f19-4ed3-98b9-26a4579f42c7"
- },
- "b8179408-dccd-4dee-953c-eb6d05d6809d": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "b8179408-dccd-4dee-953c-eb6d05d6809d",
- "items": [
- "074c9e93-5f19-4ed3-98b9-26a4579f42c7"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "4baa2236-4b0a-4e0e-88e7-2b657381b3ee": {
- "mode": "row",
- "attributes": {
- "gutter": false,
- "header": true
- },
- "id": "4baa2236-4b0a-4e0e-88e7-2b657381b3ee",
- "items": [
- "b8179408-dccd-4dee-953c-eb6d05d6809d"
- ]
- },
- "9b256d8c-9ace-4e5e-86ed-866d249c3903": {
- "mode": "block",
- "data": "aed54f7c-add9-4c48-bb34-bd359699eddc",
- "id": "9b256d8c-9ace-4e5e-86ed-866d249c3903"
- },
- "7ae19ff8-f919-4b6d-ab8c-e0b2a54658b3": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "7ae19ff8-f919-4b6d-ab8c-e0b2a54658b3",
- "items": [
- "9b256d8c-9ace-4e5e-86ed-866d249c3903"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "b57ee842-2d2c-410d-b375-2dc0d32d46b0": {
- "mode": "row",
- "attributes": {
- "gutter": false
- },
- "id": "b57ee842-2d2c-410d-b375-2dc0d32d46b0",
- "items": [
- "7ae19ff8-f919-4b6d-ab8c-e0b2a54658b3"
- ]
- },
- "77e48033-3bdb-4ce0-ae58-e9b06c81ab22": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": true
- },
- "id": "77e48033-3bdb-4ce0-ae58-e9b06c81ab22",
- "items": [
- "4baa2236-4b0a-4e0e-88e7-2b657381b3ee",
- "b57ee842-2d2c-410d-b375-2dc0d32d46b0"
- ],
- "position": {
- "small": false,
- "medium": 3,
- "large": 3
- }
- },
- "8abf546b-7160-4788-aad1-d22da9b31e4c": {
- "mode": "block",
- "data": "1ed0eeb1-82f6-4d0f-b626-afeadb1cc3af",
- "id": "8abf546b-7160-4788-aad1-d22da9b31e4c"
- },
- "180b6b3a-7770-467a-84b2-4d3d8fbdd27b": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 2,
- "medium": 2
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "180b6b3a-7770-467a-84b2-4d3d8fbdd27b",
- "items": [
- "8abf546b-7160-4788-aad1-d22da9b31e4c"
- ],
- "span": {
- "small": 12,
- "large": 8,
- "medium": 8
- }
- },
- "107b29e7-3062-4a21-9bbc-c6f321828ffa": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "107b29e7-3062-4a21-9bbc-c6f321828ffa",
- "items": [
- "180b6b3a-7770-467a-84b2-4d3d8fbdd27b"
- ]
- },
- "9da7f736-45b5-40c5-9ef3-297c473d12e8": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {},
- "fluid": false
- },
- "id": "9da7f736-45b5-40c5-9ef3-297c473d12e8",
- "items": [
- "107b29e7-3062-4a21-9bbc-c6f321828ffa"
- ],
- "position": {
- "small": 5,
- "medium": false,
- "large": false
- }
- },
- "1b376db0-fdc1-4b86-8f8e-01e914bec429": {
- "mode": "block",
- "data": "55ea6073-e394-4747-bf31-26dc70e5b4d4",
- "id": "1b376db0-fdc1-4b86-8f8e-01e914bec429"
- },
- "6e4b2311-e413-485b-9c88-7abd2f413637": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "6e4b2311-e413-485b-9c88-7abd2f413637",
- "items": [
- "1b376db0-fdc1-4b86-8f8e-01e914bec429"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "1ce373e3-d415-4cad-9411-4ac075adb54d": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "1ce373e3-d415-4cad-9411-4ac075adb54d",
- "items": [
- "6e4b2311-e413-485b-9c88-7abd2f413637"
- ]
- },
- "122c23f5-19e2-4e20-ba42-0861d39e97eb": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {},
- "fluid": false
- },
- "id": "122c23f5-19e2-4e20-ba42-0861d39e97eb",
- "items": [
- "1ce373e3-d415-4cad-9411-4ac075adb54d"
- ],
- "position": {
- "small": false,
- "medium": 4,
- "large": 4
- }
- },
- "971e4bb3-c004-4efc-81e8-416baaff56b4": {
- "mode": "block",
- "data": "6581553b-798c-4d97-b558-4e5c4c8f5409",
- "id": "971e4bb3-c004-4efc-81e8-416baaff56b4"
- },
- "c53537e9-56e6-4af0-b2f7-a7e2f0b639e8": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "c53537e9-56e6-4af0-b2f7-a7e2f0b639e8",
- "items": [
- "971e4bb3-c004-4efc-81e8-416baaff56b4"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "d5a40a3c-4076-4967-82de-55065fd5fa17": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "d5a40a3c-4076-4967-82de-55065fd5fa17",
- "items": [
- "c53537e9-56e6-4af0-b2f7-a7e2f0b639e8"
- ]
- },
- "e88cbb0a-a73d-4228-a238-e92801e00910": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "e88cbb0a-a73d-4228-a238-e92801e00910",
- "items": [
- "d5a40a3c-4076-4967-82de-55065fd5fa17"
- ],
- "position": {
- "small": 6,
- "medium": false,
- "large": false
- }
- },
- "8afe76bb-8c82-4c8b-8ef3-96c43acd4be7": {
- "mode": "block",
- "data": "3c52915f-821f-451b-9144-af59e95c5d8b",
- "id": "8afe76bb-8c82-4c8b-8ef3-96c43acd4be7"
- },
- "f1160705-d824-43a0-a09c-2394ea3b9943": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "f1160705-d824-43a0-a09c-2394ea3b9943",
- "items": [
- "8afe76bb-8c82-4c8b-8ef3-96c43acd4be7"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "e325a944-2ae2-4bec-bbda-6deda802e622": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "e325a944-2ae2-4bec-bbda-6deda802e622",
- "items": [
- "f1160705-d824-43a0-a09c-2394ea3b9943"
- ]
- },
- "59f3a652-39f7-4723-9301-38bfff190a74": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {},
- "fluid": false
- },
- "id": "59f3a652-39f7-4723-9301-38bfff190a74",
- "items": [
- "e325a944-2ae2-4bec-bbda-6deda802e622"
- ],
- "position": {
- "small": 7,
- "medium": false,
- "large": false
- }
- },
- "70b70f4f-8f76-4697-b506-499a271b3a8f": {
- "mode": "block",
- "data": "62fcf326-236b-4908-9851-f0f58336e3c2",
- "id": "70b70f4f-8f76-4697-b506-499a271b3a8f"
- },
- "17c51f02-219f-4896-a419-43a06d4737b2": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "17c51f02-219f-4896-a419-43a06d4737b2",
- "items": [
- "70b70f4f-8f76-4697-b506-499a271b3a8f"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "0a3155d0-fa8f-4b0b-bac8-6f302e2a9bf8": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "0a3155d0-fa8f-4b0b-bac8-6f302e2a9bf8",
- "items": [
- "17c51f02-219f-4896-a419-43a06d4737b2"
- ]
- },
- "c212ec3f-def3-4082-89fe-ba5463251a9f": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "c212ec3f-def3-4082-89fe-ba5463251a9f",
- "items": [
- "0a3155d0-fa8f-4b0b-bac8-6f302e2a9bf8"
- ],
- "position": {
- "small": false,
- "medium": 5,
- "large": 5
- }
- },
- "d913291c-ae93-452a-8b5c-9b0ff5d85508": {
- "mode": "block",
- "data": "9b5cadcd-5072-45b0-8b74-323ea75e47ec",
- "id": "d913291c-ae93-452a-8b5c-9b0ff5d85508"
- },
- "f8d6dfce-f2a5-4d5e-9937-466b125f39d0": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "f8d6dfce-f2a5-4d5e-9937-466b125f39d0",
- "items": [
- "d913291c-ae93-452a-8b5c-9b0ff5d85508"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "57987140-69b9-4d3f-a1c1-dc29edccef67": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "57987140-69b9-4d3f-a1c1-dc29edccef67",
- "items": [
- "f8d6dfce-f2a5-4d5e-9937-466b125f39d0"
- ]
- },
- "f1be4db0-e484-4eb5-a0d5-5aa1be8386d8": {
- "mode": "block",
- "data": "1eb56bcb-568a-45d6-9b89-5dc087465277",
- "id": "f1be4db0-e484-4eb5-a0d5-5aa1be8386d8"
- },
- "c4b8a216-4d82-4e8f-9f16-a48dc672a67a": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "c4b8a216-4d82-4e8f-9f16-a48dc672a67a",
- "items": [
- "f1be4db0-e484-4eb5-a0d5-5aa1be8386d8"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "77b5594d-fdfe-40c4-b3f4-0ec08938e1e2": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "77b5594d-fdfe-40c4-b3f4-0ec08938e1e2",
- "items": [
- "c4b8a216-4d82-4e8f-9f16-a48dc672a67a"
- ]
- },
- "8fa5f61a-650d-47c1-a9c5-9dcdded718b3": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "8fa5f61a-650d-47c1-a9c5-9dcdded718b3",
- "items": [
- "57987140-69b9-4d3f-a1c1-dc29edccef67",
- "77b5594d-fdfe-40c4-b3f4-0ec08938e1e2"
- ],
- "position": {
- "small": 8,
- "medium": false,
- "large": false
- }
- },
- "3da0aeed-9615-421a-92dd-8d9d8846f413": {
- "mode": "block",
- "data": "d63d859e-37ac-4c2e-93a3-8942312a2992",
- "id": "3da0aeed-9615-421a-92dd-8d9d8846f413"
- },
- "f5eb1aa4-6b27-4075-997a-3e58321e559c": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "f5eb1aa4-6b27-4075-997a-3e58321e559c",
- "items": [
- "3da0aeed-9615-421a-92dd-8d9d8846f413"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "fe740c04-c972-49e3-88d3-e7a2a11bfb74": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "fe740c04-c972-49e3-88d3-e7a2a11bfb74",
- "items": [
- "f5eb1aa4-6b27-4075-997a-3e58321e559c"
- ]
- },
- "98f0eb1d-d3b3-43a2-bb3f-f03ffe55f389": {
- "mode": "block",
- "data": "0a6c4c1b-06e5-446a-8e95-96813cbc7260",
- "id": "98f0eb1d-d3b3-43a2-bb3f-f03ffe55f389"
- },
- "b52e9812-f401-4f7e-834e-c8f3e9540ac6": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "b52e9812-f401-4f7e-834e-c8f3e9540ac6",
- "items": [
- "98f0eb1d-d3b3-43a2-bb3f-f03ffe55f389"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "94c99dd4-31f2-4862-b413-c7a1878a57b0": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "94c99dd4-31f2-4862-b413-c7a1878a57b0",
- "items": [
- "b52e9812-f401-4f7e-834e-c8f3e9540ac6"
- ]
- },
- "a8764f61-4549-4f68-b997-1ce4982a5dce": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "a8764f61-4549-4f68-b997-1ce4982a5dce",
- "items": [
- "fe740c04-c972-49e3-88d3-e7a2a11bfb74",
- "94c99dd4-31f2-4862-b413-c7a1878a57b0"
- ],
- "position": {
- "small": 9,
- "medium": false,
- "large": false
- }
- },
- "9530c582-b1d5-4068-86f4-21a743b17b8a": {
- "mode": "block",
- "data": "48884afd-3edc-4e41-b210-74ad36a7d6cb",
- "id": "9530c582-b1d5-4068-86f4-21a743b17b8a"
- },
- "e18e104e-5f5d-4d76-a895-7172569ad6c2": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "e18e104e-5f5d-4d76-a895-7172569ad6c2",
- "items": [
- "9530c582-b1d5-4068-86f4-21a743b17b8a"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "fa1f162c-237e-4583-bba5-1e29c7c0efdf": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "fa1f162c-237e-4583-bba5-1e29c7c0efdf",
- "items": [
- "e18e104e-5f5d-4d76-a895-7172569ad6c2"
- ]
- },
- "f2a4537e-8498-4641-b967-0fdc5f0ab016": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "f2a4537e-8498-4641-b967-0fdc5f0ab016",
- "items": [
- "fa1f162c-237e-4583-bba5-1e29c7c0efdf"
- ],
- "position": {
- "small": 10,
- "medium": false,
- "large": false
- }
- },
- "6c3222cc-4713-4def-ad6b-04351b1b8943": {
- "mode": "block",
- "data": "8d545738-fd22-488a-b17a-1081370adcc4",
- "id": "6c3222cc-4713-4def-ad6b-04351b1b8943"
- },
- "95cf20eb-ad39-4d0f-b6b9-6eab6e494b7e": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "95cf20eb-ad39-4d0f-b6b9-6eab6e494b7e",
- "items": [
- "6c3222cc-4713-4def-ad6b-04351b1b8943"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "fdefaca5-419a-4319-823e-044b5f600aea": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "fdefaca5-419a-4319-823e-044b5f600aea",
- "items": [
- "95cf20eb-ad39-4d0f-b6b9-6eab6e494b7e"
- ]
- },
- "469b694a-92ea-4a64-b22c-3f2d33757749": {
- "mode": "grid",
- "display": {
- "small": true,
- "large": false,
- "medium": false
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "469b694a-92ea-4a64-b22c-3f2d33757749",
- "items": [
- "fdefaca5-419a-4319-823e-044b5f600aea"
- ],
- "position": {
- "small": 11,
- "medium": false,
- "large": false
- }
- },
- "934de106-afd5-40bf-acf3-b243da850583": {
- "mode": "block",
- "data": "9b5cadcd-5072-45b0-8b74-323ea75e47ec",
- "id": "934de106-afd5-40bf-acf3-b243da850583"
- },
- "162785e9-5877-46b0-a929-f99780690387": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "162785e9-5877-46b0-a929-f99780690387",
- "items": [
- "934de106-afd5-40bf-acf3-b243da850583"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "bb8f8101-24d4-451b-a9a6-f6e16f97eecc": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "bb8f8101-24d4-451b-a9a6-f6e16f97eecc",
- "items": [
- "162785e9-5877-46b0-a929-f99780690387"
- ]
- },
- "f2d76600-9e8e-4fac-b7f2-fa1a70cf3541": {
- "mode": "block",
- "data": "7eb4ef9b-eba9-4667-b6ad-9489a1b09555",
- "id": "f2d76600-9e8e-4fac-b7f2-fa1a70cf3541"
- },
- "f54ed391-6606-4c25-98d7-83a72dbe66d9": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "landscape",
- "medium": "landscape"
- }
- },
- "id": "f54ed391-6606-4c25-98d7-83a72dbe66d9",
- "items": [
- "f2d76600-9e8e-4fac-b7f2-fa1a70cf3541"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "359bd5f3-f5f0-4d5a-acf2-7b09cf8b93e1": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "359bd5f3-f5f0-4d5a-acf2-7b09cf8b93e1",
- "items": [
- "f54ed391-6606-4c25-98d7-83a72dbe66d9"
- ]
- },
- "ee41f33f-c120-4f03-8bfb-51e4cbf5be61": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "ee41f33f-c120-4f03-8bfb-51e4cbf5be61",
- "items": [
- "bb8f8101-24d4-451b-a9a6-f6e16f97eecc",
- "359bd5f3-f5f0-4d5a-acf2-7b09cf8b93e1"
- ],
- "position": {
- "small": false,
- "medium": 6,
- "large": 6
- }
- },
- "05759f4c-b8c3-4bf4-b61b-d40699a7b879": {
- "mode": "block",
- "data": "d63d859e-37ac-4c2e-93a3-8942312a2992",
- "id": "05759f4c-b8c3-4bf4-b61b-d40699a7b879"
- },
- "96e8d526-7780-44e1-9f79-659071f14c0b": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {}
- },
- "id": "96e8d526-7780-44e1-9f79-659071f14c0b",
- "items": [
- "05759f4c-b8c3-4bf4-b61b-d40699a7b879"
- ],
- "span": {
- "small": 12,
- "large": 12,
- "medium": 12
- }
- },
- "52785126-9a60-44f3-965f-1e69ce5432b9": {
- "mode": "row",
- "attributes": {
- "gutter": true,
- "header": true
- },
- "id": "52785126-9a60-44f3-965f-1e69ce5432b9",
- "items": [
- "96e8d526-7780-44e1-9f79-659071f14c0b"
- ]
- },
- "dacc3715-f5a3-483a-acef-ac45177cff7f": {
- "mode": "block",
- "data": "de2fd63e-c1ac-4909-bc8b-5aa3dd87f6fd",
- "id": "dacc3715-f5a3-483a-acef-ac45177cff7f"
- },
- "2d5e66a4-02fa-4374-bbfe-3d3d627c14b6": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "portrait",
- "medium": "portrait"
- }
- },
- "id": "2d5e66a4-02fa-4374-bbfe-3d3d627c14b6",
- "items": [
- "dacc3715-f5a3-483a-acef-ac45177cff7f"
- ],
- "span": {
- "small": 12,
- "large": 4,
- "medium": 4
- }
- },
- "db5f0495-183c-455d-80dd-7c5fc2d3bb59": {
- "mode": "block",
- "data": "f99a342a-dad9-4f30-8a21-2f646431cbc2",
- "id": "db5f0495-183c-455d-80dd-7c5fc2d3bb59"
- },
- "bc7e81cf-f49b-4668-b3d0-c6830fc09ce3": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "portrait",
- "medium": "portrait"
- }
- },
- "id": "bc7e81cf-f49b-4668-b3d0-c6830fc09ce3",
- "items": [
- "db5f0495-183c-455d-80dd-7c5fc2d3bb59"
- ],
- "span": {
- "small": 12,
- "large": 4,
- "medium": 4
- }
- },
- "23c0f961-3d26-43c0-a76f-5f8068102ce6": {
- "mode": "block",
- "data": "033a48ec-1b4e-4143-9d57-65e9f87e8a40",
- "id": "23c0f961-3d26-43c0-a76f-5f8068102ce6"
- },
- "b950ff0b-5e53-40a0-8048-5736b85771c2": {
- "mode": "col",
- "offset": {
- "small": 0,
- "large": 0,
- "medium": 0
- },
- "attributes": {
- "preferredOrientation": {
- "small": "portrait",
- "large": "portrait",
- "medium": "portrait"
- }
- },
- "id": "b950ff0b-5e53-40a0-8048-5736b85771c2",
- "items": [
- "23c0f961-3d26-43c0-a76f-5f8068102ce6"
- ],
- "span": {
- "small": 12,
- "large": 4,
- "medium": 4
- }
- },
- "9d2fc501-3e12-4cfd-a8d5-83636b0abf79": {
- "mode": "row",
- "attributes": {
- "gutter": true
- },
- "id": "9d2fc501-3e12-4cfd-a8d5-83636b0abf79",
- "items": [
- "2d5e66a4-02fa-4374-bbfe-3d3d627c14b6",
- "bc7e81cf-f49b-4668-b3d0-c6830fc09ce3",
- "b950ff0b-5e53-40a0-8048-5736b85771c2"
- ]
- },
- "f369d2c2-4cf9-4086-b6ef-bc7b5065b781": {
- "mode": "grid",
- "display": {
- "small": false,
- "large": true,
- "medium": true
- },
- "attributes": {
- "margin": {
- "top": "medium"
- },
- "fluid": false
- },
- "id": "f369d2c2-4cf9-4086-b6ef-bc7b5065b781",
- "items": [
- "52785126-9a60-44f3-965f-1e69ce5432b9",
- "9d2fc501-3e12-4cfd-a8d5-83636b0abf79"
- ],
- "position": {
- "small": false,
- "medium": 7,
- "large": 7
- }
- }
- }
- },
- "appConfig": {
- "version": "1.0.0",
- "clientIds": {
- "homepage": "nike:dotcom.browse.homepage:client:1.0",
- "landingpage": "nike:dotcom.browse.landingpage:client:1.0"
- },
- "environment": {
- "canonicalUrlBase": "https://www.nike.com",
- "authTokenUrl": "https://adminops.prod.commerce.nikecloud.com/",
- "feedApi": {
- "vipAddress": "product_feed-threads-v2",
- "path": "product_feed/threads/v2/",
- "feedBase": "https://api.nike.com/",
- "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
- },
- "productsApi": {
- "vipAddress": "product_feed-rollup_threads-v2",
- "path": "product_feed/rollup_threads/v2/",
- "feedBase": "https://api.nike.com/",
- "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
- },
- "productsRecommenderApi": {
- "path": "recommend/products/landing_user_recs/web/",
- "feedBase": "https://api.nike.com/",
- "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
- },
- "topTrendingApi": {
- "path": "recommend/products/top_trending/web/",
- "feedBase": "https://api.nike.com/",
- "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
- },
- "urlGeneratorApi": {
- "path": "user_navigation/urlgenesis/v2",
- "feedBase": "https://api.nike.com/",
- "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647",
- "vipAddress": "user_navigation-urlgenesis-v2",
- "headers": {
- "nike-api-caller-id": "nike:dotcom.browse.landingpage:client:1.0",
- "Content-Type": "application/json"
- }
- },
- "urlAnalyzerApi": {
- "path": "user_navigation/url_analysis/v1",
- "feedBase": "https://api.nike.com/",
- "vipAddress": "user_navigation-url_analysis-v1",
- "headers": {
- "nike-api-caller-id": "nike:dotcom.browse.landingpage:client:1.0"
- }
- },
- "rootElementId": "ciclp-app",
- "segmentKey": "eh46CSMEgCao5Y3uW7Jh1bBTAA34vEfU",
- "bannerFeedApi": {
- "feedId": "1658aa56-c14f-41ae-89c4-0da0f44ebab4",
- "vipAddress": "product_feed-threads-v2",
- "path": "product_feed/threads/v2/",
- "feedBase": "https://api.nike.com/",
- "channelId": "8fac54d0-ed4f-4cf5-b829-e04d3d6008f8"
- },
- "searchPagesApi": {
- "feedBase": "https://snkrs.prod.commerce.nikecloud.com/",
- "vipAddress": "content-search_pages-v1",
- "path": "content/search_pages/v1"
- },
- "uniteClientId": "HlHa2Cje3ctlaOqnxvgZXNaAs7T9nAuH"
- },
- "brands": {
- "hurley": {
- "collectionId": "906ceb8636b735d4d0884fcf210fcb57f541507d"
- },
- "jordan": {
- "collectionId": "4b69f63c5e87c687f251bdea1f82121b32018ae5"
- }
- },
- "server": {
- "feedRequestHeaders": {
- "nike-api-caller-id": "nike:dotcom.browse.landingpage:client:1.0"
- },
- "homePageFeedRequestHeaders": {
- "nike-api-caller-id": "nike:dotcom.browse.homepage:client:1.0"
- }
- },
- "ui": {
- "productContainer": {
- "mobileBreakpoint": 1024,
- "fixedSlideWidthOnMobileInPx": 307
- }
- }
- },
- "router": {
- "route": {
- "name": "PAGE_VIEW",
- "params": {
- "hidden_param": ""
- },
- "path": "/cn",
- "meta": {
- "params": {
- "PAGE_VIEW": {
- "hidden_param": "url"
- }
- },
- "id": 1
- }
- },
- "previousRoute": null,
- "transitionRoute": null,
- "transitionError": null
- }
- }
|