test.json 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963
  1. {
  2. "appState": {
  3. "location": {
  4. "url": "/cn",
  5. "headers": {
  6. "x-forwarded-for": "171.107.58.21, 182.132.32.100, 69.192.7.188",
  7. "x-forwarded-proto": "https",
  8. "x-forwarded-port": "443",
  9. "x-amzn-trace-id": "Root=1-5eaf8114-c9d3e964ed6b835a37d175e1",
  10. "accept": "*/*",
  11. "cookie": "; anonymousId=DEDDDC7ADC72E8C070E9B3B8351DEEFE",
  12. "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",
  13. "true-client-ip": "171.107.58.21",
  14. "pragma": "no-cache",
  15. "x-edgeconnect-session-id": "12667b76-5eaf8114-2d0f629",
  16. "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=",
  17. "x-akamai-config-log-detail": "true",
  18. "accept-encoding": "gzip",
  19. "akamai-origin-hop": "2",
  20. "via": "1.1 v1-akamaitech.net(ghost) (AkamaiGHost), 1.1 akamai.net(ghost) (AkamaiGHost)",
  21. "cache-control": "no-cache, max-age=0",
  22. "host": "172.26.218.122:8080",
  23. "x-b3-traceid": "aa674535c81a2105",
  24. "x-b3-spanid": "25f6f95471f3ed0c",
  25. "x-b3-sampled": "1",
  26. "x-b3-parentspanid": "b9f34925bf464f18"
  27. },
  28. "trace": {
  29. "traceId": "aa674535c81a2105",
  30. "parentId": "25f6f95471f3ed0c",
  31. "spanId": "376049a2ded59db3",
  32. "hrStartTime": [
  33. 295674,
  34. 524527966
  35. ]
  36. }
  37. },
  38. "currentViewEntityId": "654592de-2c9f-4138-ad50-4908adf82a5b",
  39. "isBootstrapped": true,
  40. "error": null,
  41. "privacy": {
  42. "isSet": false,
  43. "level": 0,
  44. "allowPerformance": false,
  45. "allowMarketing": false
  46. },
  47. "analysis": {},
  48. "canonicalUrl": "https://www.nike.com/cn/",
  49. "experiments": [
  50. {
  51. "experimentName": "clp_button_experiment",
  52. "controlVariation": "default_button",
  53. "isUiExperiment": true
  54. }
  55. ],
  56. "optimizely": {
  57. "version": "4",
  58. "rollouts": [],
  59. "typedAudiences": [
  60. {
  61. "id": "15207880579",
  62. "conditions": [
  63. "and",
  64. [
  65. "or",
  66. [
  67. "or",
  68. {
  69. "value": true,
  70. "type": "custom_attribute",
  71. "name": "checkout_cic_3991",
  72. "match": "exact"
  73. }
  74. ]
  75. ],
  76. [
  77. "or",
  78. [
  79. "or",
  80. {
  81. "value": "us",
  82. "type": "custom_attribute",
  83. "name": "country",
  84. "match": "exact"
  85. },
  86. {
  87. "value": "US",
  88. "type": "custom_attribute",
  89. "name": "country",
  90. "match": "exact"
  91. }
  92. ]
  93. ]
  94. ],
  95. "name": "Bopis_Allowed"
  96. },
  97. {
  98. "id": "14943620359",
  99. "conditions": [
  100. "and",
  101. [
  102. "or",
  103. [
  104. "or",
  105. {
  106. "value": true,
  107. "type": "custom_attribute",
  108. "name": "checkout_cic_3886",
  109. "match": "exact"
  110. }
  111. ]
  112. ]
  113. ],
  114. "name": "CCC3886"
  115. }
  116. ],
  117. "anonymizeIP": false,
  118. "projectId": "9011010262",
  119. "variables": [],
  120. "featureFlags": [],
  121. "experiments": [],
  122. "audiences": [
  123. {
  124. "id": "11363034368",
  125. "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"us\"}, {\"match\": \"exact\", \"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"US\"}]]]",
  126. "name": "United States"
  127. },
  128. {
  129. "id": "17910503969",
  130. "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\"}]]]",
  131. "name": "Middle East"
  132. },
  133. {
  134. "id": "11193645442",
  135. "conditions": "[\"and\", [\"or\", [\"or\", {\"name\": \"Platform_BrowserType\", \"type\": \"custom_attribute\", \"value\": \"Chrome\"}]]]",
  136. "name": "catx_test"
  137. },
  138. {
  139. "id": "15207880579",
  140. "conditions": "[\"or\", {\"match\": \"exact\", \"name\": \"$opt_dummy_attribute\", \"type\": \"custom_attribute\", \"value\": \"$opt_dummy_value\"}]",
  141. "name": "Bopis_Allowed"
  142. },
  143. {
  144. "id": "17746960452",
  145. "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\"}]]]",
  146. "name": "unite_ios_experiences_cn"
  147. },
  148. {
  149. "id": "14943620359",
  150. "conditions": "[\"or\", {\"match\": \"exact\", \"name\": \"$opt_dummy_attribute\", \"type\": \"custom_attribute\", \"value\": \"$opt_dummy_value\"}]",
  151. "name": "CCC3886"
  152. },
  153. {
  154. "id": "11513071210",
  155. "conditions": "[\"and\", [\"or\", [\"or\", {\"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"us\"}, {\"name\": \"country\", \"type\": \"custom_attribute\", \"value\": \"US\"}]]]",
  156. "name": "CCC-3576"
  157. },
  158. {
  159. "id": "17857260114",
  160. "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\"}]]]]",
  161. "name": "SustainabilityExcludedCountries"
  162. },
  163. {
  164. "id": "11372676797",
  165. "conditions": "[\"and\", [\"or\", [\"or\", {\"name\": \"Platform_BrowserType\", \"type\": \"custom_attribute\", \"value\": \"Chrome\"}]]]",
  166. "name": "catx_test_audience"
  167. },
  168. {
  169. "id": "16836580562",
  170. "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\"}]]]",
  171. "name": "AVS in EMEA Countries: Round 1"
  172. },
  173. {
  174. "id": "17983071267",
  175. "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\"}]]]",
  176. "name": "GEO-US"
  177. },
  178. {
  179. "id": "17930700374",
  180. "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\"}]]]]",
  181. "name": "unite_social_exlusions"
  182. },
  183. {
  184. "id": "17955501719",
  185. "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\"}]]]",
  186. "name": "Africa"
  187. },
  188. {
  189. "id": "17954150588",
  190. "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\"}]]]",
  191. "name": "Europe 28"
  192. },
  193. {
  194. "id": "13319280125",
  195. "conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"Experience_Device_Width\", \"type\": \"custom_attribute\", \"value\": \"sm\"}]]]",
  196. "name": "Browse Mobile"
  197. },
  198. {
  199. "conditions": "[\"or\", {\"match\": \"exact\", \"name\": \"$opt_dummy_attribute\", \"type\": \"custom_attribute\", \"value\": \"$opt_dummy_value\"}]",
  200. "id": "$opt_dummy_audience",
  201. "name": "Optimizely-Generated Audience for Backwards Compatibility"
  202. }
  203. ],
  204. "groups": [],
  205. "attributes": [
  206. {
  207. "id": "9860799703",
  208. "key": "Consumer_ShoppingGender"
  209. },
  210. {
  211. "id": "9862219173",
  212. "key": "Locale_Country"
  213. },
  214. {
  215. "id": "9864638475",
  216. "key": "Locale_Language"
  217. },
  218. {
  219. "id": "9866247127",
  220. "key": "Order_Currency"
  221. },
  222. {
  223. "id": "10000571999",
  224. "key": "Consumer_IsSwoosh"
  225. },
  226. {
  227. "id": "10002334310",
  228. "key": "Experience_Domain"
  229. },
  230. {
  231. "id": "10008113559",
  232. "key": "Experience_Version"
  233. },
  234. {
  235. "id": "10011763262",
  236. "key": "Platform_BrowserNameVersion"
  237. },
  238. {
  239. "id": "10014432443",
  240. "key": "Platform_BrowserType"
  241. },
  242. {
  243. "id": "10031102559",
  244. "key": "View_Channel"
  245. },
  246. {
  247. "id": "10036661021",
  248. "key": "Experience_Division"
  249. },
  250. {
  251. "id": "10037570300",
  252. "key": "Experience_Platform"
  253. },
  254. {
  255. "id": "10058250225",
  256. "key": "Experience_PageName"
  257. },
  258. {
  259. "id": "10117012270",
  260. "key": "environment"
  261. },
  262. {
  263. "id": "10518640637",
  264. "key": "Experience_Has_Video"
  265. },
  266. {
  267. "id": "10519940845",
  268. "key": "country"
  269. },
  270. {
  271. "id": "10681390673",
  272. "key": "Experience_PDP_inStock"
  273. },
  274. {
  275. "id": "10682341381",
  276. "key": "Experience_Has_eGift"
  277. },
  278. {
  279. "id": "10753932207",
  280. "key": "device"
  281. },
  282. {
  283. "id": "10765250647",
  284. "key": "is_paypal_express"
  285. },
  286. {
  287. "id": "10801590183",
  288. "key": "hello_world1"
  289. },
  290. {
  291. "id": "10831091580",
  292. "key": "guest"
  293. },
  294. {
  295. "id": "11059144639",
  296. "key": "apollo"
  297. },
  298. {
  299. "id": "11173370077",
  300. "key": "isEU"
  301. },
  302. {
  303. "id": "11484674136",
  304. "key": "marketplace"
  305. },
  306. {
  307. "id": "11488532798",
  308. "key": "layout"
  309. },
  310. {
  311. "id": "11918014366",
  312. "key": "isCPP"
  313. },
  314. {
  315. "id": "12003554420",
  316. "key": "Experience_Has_ElevatedContent"
  317. },
  318. {
  319. "id": "12835260691",
  320. "key": "Unite_Experience"
  321. },
  322. {
  323. "id": "12846710425",
  324. "key": "hasNativeDatePicker"
  325. },
  326. {
  327. "id": "12881640224",
  328. "key": "isDotcomNavTest"
  329. },
  330. {
  331. "id": "13342130012",
  332. "key": "Experience_Device_Width"
  333. },
  334. {
  335. "id": "13352090350",
  336. "key": "checkout_cic-3873"
  337. },
  338. {
  339. "id": "13376940257",
  340. "key": "checkout_cic_3887"
  341. },
  342. {
  343. "id": "13382470178",
  344. "key": "checkout_cic_3783"
  345. },
  346. {
  347. "id": "13415970289",
  348. "key": "Experience_PDP_lowInventory"
  349. },
  350. {
  351. "id": "13566780245",
  352. "key": "checkout_cic_3873"
  353. },
  354. {
  355. "id": "13707560258",
  356. "key": "is_signedin"
  357. },
  358. {
  359. "id": "13719440108",
  360. "key": "prs_response"
  361. },
  362. {
  363. "id": "14069500669",
  364. "key": "Experience_PDP_styleColor"
  365. },
  366. {
  367. "id": "14158780094",
  368. "key": "testtest"
  369. },
  370. {
  371. "id": "14355400392",
  372. "key": "checkout_cic_3921"
  373. },
  374. {
  375. "id": "14369040376",
  376. "key": "zipcode"
  377. },
  378. {
  379. "id": "14428280661",
  380. "key": "Experience_Has_SizeAccordion"
  381. },
  382. {
  383. "id": "14726080026",
  384. "key": "Bopis_Products"
  385. },
  386. {
  387. "id": "14797300656",
  388. "key": "checkout_cic_4021"
  389. },
  390. {
  391. "id": "14964980548",
  392. "key": "checkout_cic_3886"
  393. },
  394. {
  395. "id": "15220090434",
  396. "key": "isBopis"
  397. },
  398. {
  399. "id": "15947410042",
  400. "key": "Experience_Has_CGC"
  401. },
  402. {
  403. "id": "16030991187",
  404. "key": "checkout_cic_3991"
  405. },
  406. {
  407. "id": "16850671412",
  408. "key": "Experience_PDP_evergreen_pdp_layout"
  409. },
  410. {
  411. "id": "16867853374",
  412. "key": "Experience_PDP_style"
  413. },
  414. {
  415. "id": "16881191233",
  416. "key": "cartCount"
  417. },
  418. {
  419. "id": "16927229964",
  420. "key": "Experience_Page_Type"
  421. },
  422. {
  423. "id": "17752290150",
  424. "key": "Sustainable_Materials_Combining_List"
  425. },
  426. {
  427. "id": "17757960055",
  428. "key": "Sustainable_Materials_Product_List"
  429. },
  430. {
  431. "id": "17761570392",
  432. "key": "Sustainable_Materials_Nike_List"
  433. },
  434. {
  435. "id": "17822011547",
  436. "key": "sustainability_excluded_geo"
  437. }
  438. ],
  439. "botFiltering": true,
  440. "accountId": "6194110778",
  441. "events": [],
  442. "revision": "5344"
  443. },
  444. "analyticsUserId": null,
  445. "requestMeta": {
  446. "language": {
  447. "code": "zh-Hans",
  448. "local": "%u7B80%u4F53%u4E2D%u6587",
  449. "name": "Chinese (Simplified)"
  450. },
  451. "country": {
  452. "code": "cn",
  453. "local": "%u4E2D%u56FD",
  454. "name": "China"
  455. },
  456. "currency": {
  457. "code": "CNY",
  458. "name": "Chinese yuan",
  459. "symbol": "�"
  460. },
  461. "basename": "/cn/",
  462. "basepath": "/",
  463. "languageMappings": {
  464. "urlParam": "zh-Hans",
  465. "language": "zh-Hans",
  466. "intl": "zh-Hans-CN",
  467. "langRegion": "zh-CN",
  468. "hreflang": "zh-Hans-CN",
  469. "default": true
  470. }
  471. },
  472. "featureFlags": {
  473. "x-memory-usage": false,
  474. "x-disable-global-nav": false,
  475. "x-disable-nes-client": false,
  476. "x-disable-dcm": false,
  477. "x-disable-bouncex": false,
  478. "x-disable-branch": false,
  479. "x-disable-unite": false,
  480. "x-disable-segment": false,
  481. "x-disable-appsflyer": false,
  482. "clp-with-mocks": false,
  483. "x-disable-ui-experiments": false,
  484. "x-enable-optimizely-logs": false
  485. },
  486. "session": {
  487. "parentId": "25f6f95471f3ed0c",
  488. "spanId": "376049a2ded59db3",
  489. "traceId": "aa674535c81a2105"
  490. },
  491. "localization": {
  492. "translations": {
  493. "cancel_label": "%u53D6%u6D88",
  494. "close_label": "%u5173%u95ED",
  495. "email_address_label": "%u7535%u5B50%u90AE%u4EF6%u5730%u5740",
  496. "errorPage_legend_1": "%u6211%u4EEC%u627E%u4E0D%u5230%u60A8%u8981%u67E5%u627E%u7684%u9875%u9762%u3002",
  497. "errorPage_legend_2": "%u5F88%u62B1%u6B49%u7ED9%u60A8%u9020%u6210%u4E0D%u4FBF%u3002",
  498. "errorPage_secondary_legend": "%u62B1%u6B49%uFF0C%u6211%u4EEC%u5931%u8BEF%u4E86%u3002",
  499. "member_access_label": "%u4F1A%u5458%u901A%u9053",
  500. "member_exclusive": "%u4F7F%u7528%u514D%u8D39 Nike %u4F1A%u5458%u5E10%u6237%u9009%u8D2D%u6B64%u4EA7%u54C1",
  501. "member_only_login_label": "%u767B%u5F55/%u52A0%u5165",
  502. "metatag_title_appendix": "-%u8010%u514B([brand])%u4E2D%u56FD%u5B98%u7F51",
  503. "nike_by_you": "Nike by You",
  504. "nike_by_you_label": "%u4E13%u5C5E%u5B9A%u5236",
  505. "notify_me_label": "%u901A%u77E5%u6211",
  506. "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]",
  507. "notify_me_modal_title": "%u62A2%u5148%u83B7%u77E5",
  508. "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",
  509. "notify_me_thank_you_window_title": "%u60A8%u5DF2%u5728%u901A%u77E5%u5217%u8868%u4E2D",
  510. "play_button_label": "%u64AD%u653E",
  511. "privacy_policy_link_label": "%u9690%u79C1%u653F%u7B56",
  512. "productContainer_recommended_for_you": "%u4E13%u5C5E%u63A8%u8350",
  513. "productContainer_top_trending": "%u70ED%u95E8%u8D8B%u52BF",
  514. "replay_button_label": "%u91CD%u653E",
  515. "shop_all_label": "%u7ACB%u5373%u9009%u8D2D",
  516. "shop_label": "%u9009%u8D2D",
  517. "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",
  518. "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",
  519. "sold_out_label": "%u5DF2%u552E%u7F44",
  520. "submit_label": "%u63D0%u4EA4",
  521. "subtitle_toggle_off": "%u5173%u95ED%u5B57%u5E55",
  522. "subtitle_toggle_on": "%u5F00%u542F%u5B57%u5E55",
  523. "team_selector_see_all": "%u663E%u793A%u5168%u90E8",
  524. "team_selector_see_less": "%u663E%u793A%u8F83%u5C11",
  525. "terms_of_use_label": "%u4F7F%u7528%u6761%u6B3E",
  526. "video_watch_button_label": "%u89C2%u770B",
  527. "view_all": "%u67E5%u770B%u5168%u90E8"
  528. },
  529. "country": {
  530. "code": "cn",
  531. "local": "%u4E2D%u56FD",
  532. "name": "China"
  533. },
  534. "language": {
  535. "code": "zh-Hans",
  536. "local": "%u7B80%u4F53%u4E2D%u6587",
  537. "name": "Chinese (Simplified)"
  538. },
  539. "currency": {
  540. "code": "CNY",
  541. "name": "Chinese yuan",
  542. "symbol": "�"
  543. }
  544. },
  545. "previewToken": null
  546. },
  547. "appData": {
  548. "cards": {
  549. "c999dc80-c974-4252-ac53-32f953915135": {
  550. "styles": {},
  551. "actionButtons": [
  552. {
  553. "analytics": {
  554. "hashKey": "4a4c97cd691a9fad34a5d958b057a22b27aa9ae0a6480378ccd436c148e5ab35"
  555. },
  556. "actionType": "button",
  557. "actionText": "%u7ACB%u5373%u9009%u8D2D",
  558. "destinationType": "url",
  559. "id": "fd10bcb4-79e3-429e-86c5-ff1cc4f726eb",
  560. "destinationId": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
  561. "openInNewTab": false,
  562. "urlIngredients": {
  563. "type": "URL"
  564. }
  565. }
  566. ],
  567. "bodyProps": {
  568. "text": "%u524D%u8DB3%u642D%u8F7D%u589E%u539AZOOM AIR%uFF0C%u5982%u4F60%u6DFB%u7FFC%u3002<br>%u5168%u65B037%u4EE3%uFF0C%u73B0%u5DF2%u4E0A%u5E02",
  569. "fontFamily": "base",
  570. "fontSize": "small",
  571. "fontStyle": "regular",
  572. "textColor": "#111111"
  573. },
  574. "colorTheme": "dark",
  575. "id": "c999dc80-c974-4252-ac53-32f953915135",
  576. "subtitleProps": {
  577. "text": "%u65E5%u5E38%u63D0%u901F%uFF0C%u5B83%u9760%u5F97%u4F4F",
  578. "textColor": "#111111"
  579. },
  580. "textLocation": {
  581. "horizontal": "start",
  582. "vertical": "after"
  583. },
  584. "titleProps": {
  585. "text": "NIKE AIR ZOOM <br>PEGASUS 37",
  586. "fontFamily": "base",
  587. "fontSize": "medium",
  588. "fontStyle": "medium",
  589. "textColor": "#111111"
  590. },
  591. "cardLinkUrl": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
  592. "urlIngredients": {
  593. "type": "URL"
  594. },
  595. "destinationType": "url",
  596. "openInNewTab": false,
  597. "containerType": "video",
  598. "loop": true,
  599. "videoId": "6152276738001",
  600. "portraitVideoId": "6152276740001",
  601. "autoPlay": true,
  602. "portraitPosterUrl": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/82f25b8e-8474-4954-99d5-dd465426f350/image.jpg",
  603. "landscapePosterUrl": "",
  604. "imageHeight": "medium"
  605. },
  606. "f14e8480-8703-4883-bf6b-e360e7cf7a37": {
  607. "containerType": "section_headline",
  608. "cardId": "f14e8480-8703-4883-bf6b-e360e7cf7a37",
  609. "styles": {},
  610. "title": "%u7CBE%u9009%u6545%u4E8B",
  611. "actions": []
  612. },
  613. "f17d55c8-490a-4cec-844c-a4d6eedfa8c6": {
  614. "styles": {},
  615. "actionButtons": [
  616. {
  617. "analytics": {
  618. "hashKey": "b57eff3c655c3386f59af98a19fc5720b95da481e26bbbe4fbeb7137d954ad5a"
  619. },
  620. "actionType": "button",
  621. "actionText": "%u7ACB%u5373%u9009%u8D2D",
  622. "destinationType": "url",
  623. "id": "dbc05fbc-ced3-4c85-8779-254d58500ba4",
  624. "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  625. "openInNewTab": false,
  626. "urlIngredients": {
  627. "type": "URL"
  628. }
  629. }
  630. ],
  631. "bodyProps": {
  632. "text": "%u5148%u950B%u8BBE%u8BA1%uFF0C%u8857%u5934%u673A%u80FD",
  633. "fontFamily": "base",
  634. "fontSize": "small",
  635. "fontStyle": "regular",
  636. "textColor": "#111111"
  637. },
  638. "colorTheme": "dark",
  639. "id": "f17d55c8-490a-4cec-844c-a4d6eedfa8c6",
  640. "subtitleProps": {
  641. "text": ""
  642. },
  643. "textLocation": {
  644. "horizontal": "start",
  645. "vertical": "after"
  646. },
  647. "titleProps": {
  648. "text": "JORDAN DELTA",
  649. "fontFamily": "base",
  650. "fontSize": "medium",
  651. "fontStyle": "medium",
  652. "textColor": "#111111"
  653. },
  654. "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  655. "urlIngredients": {
  656. "type": "URL"
  657. },
  658. "destinationType": "url",
  659. "openInNewTab": false,
  660. "containerType": "image",
  661. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  662. "isTextBelowImage": false,
  663. "landscapeURL": "",
  664. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/76acee39-9671-4fab-a747-ceab63f33db7/image.jpg",
  665. "landscapeFocalPoint": {
  666. "horizontal": "center",
  667. "vertical": "center"
  668. },
  669. "portraitFocalPoint": {
  670. "horizontal": "center",
  671. "vertical": "center"
  672. },
  673. "assetsIds": {
  674. "landscape": "",
  675. "portrait": "76acee39-9671-4fab-a747-ceab63f33db7",
  676. "squarish": ""
  677. },
  678. "imageHeight": "small"
  679. },
  680. "4178f225-131e-4308-bb02-5c6a10c3f519": {
  681. "containerType": "section_headline",
  682. "cardId": "4178f225-131e-4308-bb02-5c6a10c3f519",
  683. "styles": {},
  684. "title": " ",
  685. "actions": []
  686. },
  687. "a6734c52-8fb4-479b-b5ac-71f6ad5bb152": {
  688. "styles": {},
  689. "actionButtons": [
  690. {
  691. "analytics": {
  692. "hashKey": "eb4f2a3237ed09a722755835d1d5cfa248183e91cb3a5a68e8bc157949794e12"
  693. },
  694. "actionType": "button",
  695. "actionText": "%u7ACB%u5373%u9009%u8D2D",
  696. "destinationType": "url",
  697. "id": "9f1b4df1-53ce-4e86-a036-0bae8438feaa",
  698. "destinationId": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
  699. "openInNewTab": false,
  700. "urlIngredients": {
  701. "type": "URL"
  702. }
  703. }
  704. ],
  705. "bodyProps": {
  706. "text": "%u65B0%u54C1%u4E0A%u5E02",
  707. "fontFamily": "base",
  708. "fontSize": "small",
  709. "fontStyle": "regular",
  710. "textColor": "#111111"
  711. },
  712. "colorTheme": "dark",
  713. "id": "a6734c52-8fb4-479b-b5ac-71f6ad5bb152",
  714. "subtitleProps": {
  715. "text": ""
  716. },
  717. "textLocation": {
  718. "horizontal": "start",
  719. "vertical": "after"
  720. },
  721. "titleProps": {
  722. "text": "VIBRANT PACK",
  723. "fontFamily": "base",
  724. "fontSize": "medium",
  725. "fontStyle": "medium",
  726. "textColor": "#111111"
  727. },
  728. "cardLinkUrl": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
  729. "urlIngredients": {
  730. "type": "URL"
  731. },
  732. "destinationType": "url",
  733. "openInNewTab": false,
  734. "containerType": "image",
  735. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  736. "isTextBelowImage": false,
  737. "landscapeURL": "",
  738. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/f3ef8ce2-5a0c-4baf-b262-11bfe29e254d/image.jpg",
  739. "landscapeFocalPoint": {
  740. "horizontal": "center",
  741. "vertical": "center"
  742. },
  743. "portraitFocalPoint": {
  744. "horizontal": "center",
  745. "vertical": "center"
  746. },
  747. "assetsIds": {
  748. "landscape": "",
  749. "portrait": "f3ef8ce2-5a0c-4baf-b262-11bfe29e254d",
  750. "squarish": ""
  751. },
  752. "imageHeight": "small"
  753. },
  754. "4a2bbddc-6377-49c7-9f9f-6994a0612baa": {
  755. "styles": {},
  756. "actionButtons": [
  757. {
  758. "analytics": {
  759. "hashKey": "2d0998aa3fb1e8690ef6a2daab7f2872bf454121ad32def15f19684744ffc0f8"
  760. },
  761. "actionType": "button",
  762. "actionText": "%u7ACB%u5373%u9009%u8D2D",
  763. "destinationType": "url",
  764. "id": "06208b44-6836-4376-936f-8facb4e3009d",
  765. "destinationId": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
  766. "openInNewTab": false,
  767. "urlIngredients": {
  768. "type": "URL"
  769. }
  770. }
  771. ],
  772. "bodyProps": {
  773. "text": "%u524D%u8DB3%u642D%u8F7D%u589E%u539AZOOM AIR%uFF0C%u5982%u4F60%u6DFB%u7FFC%u3002<br>%u5168%u65B037%u4EE3%uFF0C%u73B0%u5DF2%u4E0A%u5E02",
  774. "fontFamily": "base",
  775. "fontSize": "small",
  776. "fontStyle": "regular",
  777. "textColor": "#FFFFFF"
  778. },
  779. "colorTheme": "light",
  780. "id": "4a2bbddc-6377-49c7-9f9f-6994a0612baa",
  781. "subtitleProps": {
  782. "text": "%u65E5%u5E38%u63D0%u901F%uFF0C%u5B83%u9760%u5F97%u4F4F",
  783. "textColor": "#FFFFFF"
  784. },
  785. "textLocation": {
  786. "horizontal": "start",
  787. "vertical": "end"
  788. },
  789. "titleProps": {
  790. "text": "NIKE AIR ZOOM <br>PEGASUS 37",
  791. "fontFamily": "marketing",
  792. "fontSize": "small",
  793. "fontStyle": "medium",
  794. "textColor": "#FFF"
  795. },
  796. "cardLinkUrl": "https://www.nike.com/cn/w/running-shoes-37v7jzy7ok",
  797. "urlIngredients": {
  798. "type": "URL"
  799. },
  800. "destinationType": "url",
  801. "openInNewTab": false,
  802. "containerType": "video",
  803. "loop": true,
  804. "videoId": "6152276738001",
  805. "autoPlay": true,
  806. "portraitPosterUrl": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/82f25b8e-8474-4954-99d5-dd465426f350/image.jpg",
  807. "landscapePosterUrl": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/1d679763-42d9-48fd-836b-8de644aa0e37/image.jpg",
  808. "imageHeight": "medium"
  809. },
  810. "28d6b7d2-7214-4d1c-ae39-79c07d055cd1": {
  811. "styles": {},
  812. "actionButtons": [
  813. {
  814. "analytics": {
  815. "hashKey": "118182505862a37aad061f3e4c61fca3d619a5801616a8169f64b9ba4ed1cc39"
  816. },
  817. "actionType": "button",
  818. "actionText": "%u7ACB%u5373%u9009%u8D2D",
  819. "destinationType": "url",
  820. "id": "f500e1b3-6a9a-436e-bcd3-db4098b883f1",
  821. "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  822. "openInNewTab": false,
  823. "urlIngredients": {
  824. "type": "URL"
  825. }
  826. }
  827. ],
  828. "bodyProps": {
  829. "text": "JORDAN DELTA<br>%u5148%u950B%u8BBE%u8BA1%uFF0C%u8857%u5934%u673A%u80FD",
  830. "fontFamily": "base",
  831. "fontSize": "small",
  832. "fontStyle": "regular",
  833. "textColor": "#FFFFFF"
  834. },
  835. "colorTheme": "light",
  836. "id": "28d6b7d2-7214-4d1c-ae39-79c07d055cd1",
  837. "subtitleProps": {
  838. "text": ""
  839. },
  840. "textLocation": {
  841. "horizontal": "start",
  842. "vertical": "end"
  843. },
  844. "titleProps": {
  845. "text": "",
  846. "fontFamily": "marketing",
  847. "fontSize": "small",
  848. "fontStyle": "medium",
  849. "textColor": "#111111"
  850. },
  851. "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  852. "urlIngredients": {
  853. "type": "URL"
  854. },
  855. "destinationType": "url",
  856. "openInNewTab": false,
  857. "containerType": "image",
  858. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  859. "isTextBelowImage": false,
  860. "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/7d8b134a-268d-4242-a45a-8419e3093db9/image.jpg",
  861. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/76acee39-9671-4fab-a747-ceab63f33db7/image.jpg",
  862. "landscapeFocalPoint": {
  863. "horizontal": "center",
  864. "vertical": "center"
  865. },
  866. "portraitFocalPoint": {
  867. "horizontal": "center",
  868. "vertical": "center"
  869. },
  870. "assetsIds": {
  871. "landscape": "7d8b134a-268d-4242-a45a-8419e3093db9",
  872. "portrait": "76acee39-9671-4fab-a747-ceab63f33db7",
  873. "squarish": ""
  874. },
  875. "imageHeight": "small"
  876. },
  877. "cf4b78af-8f00-45e1-9130-7233feee45c1": {
  878. "styles": {},
  879. "actionButtons": [
  880. {
  881. "analytics": {
  882. "hashKey": "b00e3013c1cfb51d75532ea09d2aaa97d66067ac28567d1566e6a12209327fbc"
  883. },
  884. "actionType": "button",
  885. "actionText": "%u7ACB%u5373%u9009%u8D2D",
  886. "destinationType": "url",
  887. "id": "f3c8edc6-61b8-4e1e-8502-5a9f536177c7",
  888. "destinationId": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
  889. "openInNewTab": false,
  890. "urlIngredients": {
  891. "type": "URL"
  892. }
  893. }
  894. ],
  895. "bodyProps": {
  896. "text": "VIBRANT PACK<br>%u65B0%u54C1%u4E0A%u5E02",
  897. "fontFamily": "base",
  898. "fontSize": "small",
  899. "fontStyle": "regular",
  900. "textColor": "#FFFFFF"
  901. },
  902. "colorTheme": "light",
  903. "id": "cf4b78af-8f00-45e1-9130-7233feee45c1",
  904. "subtitleProps": {
  905. "text": ""
  906. },
  907. "textLocation": {
  908. "horizontal": "start",
  909. "vertical": "end"
  910. },
  911. "titleProps": {
  912. "text": "",
  913. "fontFamily": "marketing",
  914. "fontSize": "small",
  915. "fontStyle": "medium",
  916. "textColor": "#111111"
  917. },
  918. "cardLinkUrl": "https://www.nike.com/cn/w/cn-nike-air-pw-x78r",
  919. "urlIngredients": {
  920. "type": "URL"
  921. },
  922. "destinationType": "url",
  923. "openInNewTab": false,
  924. "containerType": "image",
  925. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  926. "isTextBelowImage": false,
  927. "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/2ffe56ab-5b05-466c-9bbe-4945f2259af4/image.jpg",
  928. "portraitURL": "",
  929. "landscapeFocalPoint": {
  930. "horizontal": "center",
  931. "vertical": "center"
  932. },
  933. "portraitFocalPoint": {
  934. "horizontal": "center",
  935. "vertical": "center"
  936. },
  937. "assetsIds": {
  938. "landscape": "2ffe56ab-5b05-466c-9bbe-4945f2259af4",
  939. "portrait": "",
  940. "squarish": ""
  941. },
  942. "imageHeight": "small"
  943. },
  944. "cf568695-271c-413e-b0ec-7ec6b62c67d7": {
  945. "containerType": "section_headline",
  946. "cardId": "cf568695-271c-413e-b0ec-7ec6b62c67d7",
  947. "styles": {},
  948. "title": "%u8BAD%u7EC3%u79D8%u8BC0%u4E0E%u5EFA%u8BAE",
  949. "actions": []
  950. },
  951. "f5193177-d442-4278-9d07-fe74830229fe": {
  952. "styles": {},
  953. "containerType": "slideshow",
  954. "sectionHeadline": {
  955. "title": "",
  956. "actions": []
  957. },
  958. "slides": [
  959. {
  960. "styles": {},
  961. "actionButtons": [],
  962. "bodyProps": {
  963. "text": ""
  964. },
  965. "colorTheme": "dark",
  966. "id": "c2fdf9a0-0f05-4187-a07c-2167e6dd8821",
  967. "subtitleProps": {
  968. "text": ""
  969. },
  970. "textLocation": {
  971. "horizontal": "start",
  972. "vertical": "start"
  973. },
  974. "titleProps": {
  975. "text": ""
  976. },
  977. "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
  978. "urlIngredients": {
  979. "type": "URL"
  980. },
  981. "destinationType": "url",
  982. "openInNewTab": false,
  983. "containerType": "image",
  984. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  985. "isTextBelowImage": false,
  986. "landscapeURL": "",
  987. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/9cc46367-e0c5-4d55-98c2-09666eff7809/image.jpg",
  988. "landscapeFocalPoint": {
  989. "horizontal": "center",
  990. "vertical": "center"
  991. },
  992. "portraitFocalPoint": {
  993. "horizontal": "center",
  994. "vertical": "center"
  995. },
  996. "assetsIds": {
  997. "landscape": "",
  998. "portrait": "9cc46367-e0c5-4d55-98c2-09666eff7809",
  999. "squarish": ""
  1000. },
  1001. "imageHeight": "large"
  1002. },
  1003. {
  1004. "styles": {},
  1005. "actionButtons": [],
  1006. "bodyProps": {
  1007. "text": ""
  1008. },
  1009. "colorTheme": "dark",
  1010. "id": "3cf0b882-954a-45f3-bae8-e0cae82e6bb8",
  1011. "subtitleProps": {
  1012. "text": ""
  1013. },
  1014. "textLocation": {
  1015. "horizontal": "start",
  1016. "vertical": "start"
  1017. },
  1018. "titleProps": {
  1019. "text": ""
  1020. },
  1021. "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
  1022. "urlIngredients": {
  1023. "type": "URL"
  1024. },
  1025. "destinationType": "url",
  1026. "openInNewTab": false,
  1027. "containerType": "image",
  1028. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1029. "isTextBelowImage": false,
  1030. "landscapeURL": "",
  1031. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/366c7f59-f364-4a06-bbe0-b846613d8e0e/image.jpg",
  1032. "landscapeFocalPoint": {
  1033. "horizontal": "center",
  1034. "vertical": "center"
  1035. },
  1036. "portraitFocalPoint": {
  1037. "horizontal": "center",
  1038. "vertical": "center"
  1039. },
  1040. "assetsIds": {
  1041. "landscape": "",
  1042. "portrait": "366c7f59-f364-4a06-bbe0-b846613d8e0e",
  1043. "squarish": ""
  1044. },
  1045. "imageHeight": "large"
  1046. },
  1047. {
  1048. "styles": {},
  1049. "actionButtons": [],
  1050. "bodyProps": {
  1051. "text": ""
  1052. },
  1053. "colorTheme": "dark",
  1054. "id": "04b89b24-b70e-4aea-8253-8fe9140ddf0c",
  1055. "subtitleProps": {
  1056. "text": ""
  1057. },
  1058. "textLocation": {
  1059. "horizontal": "start",
  1060. "vertical": "start"
  1061. },
  1062. "titleProps": {
  1063. "text": ""
  1064. },
  1065. "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
  1066. "urlIngredients": {
  1067. "type": "URL"
  1068. },
  1069. "destinationType": "url",
  1070. "openInNewTab": false,
  1071. "containerType": "image",
  1072. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1073. "isTextBelowImage": false,
  1074. "landscapeURL": "",
  1075. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/e87d0d81-136f-4dca-a79c-9f11ffc8b62b/image.jpg",
  1076. "landscapeFocalPoint": {
  1077. "horizontal": "center",
  1078. "vertical": "center"
  1079. },
  1080. "portraitFocalPoint": {
  1081. "horizontal": "center",
  1082. "vertical": "center"
  1083. },
  1084. "assetsIds": {
  1085. "landscape": "",
  1086. "portrait": "e87d0d81-136f-4dca-a79c-9f11ffc8b62b",
  1087. "squarish": ""
  1088. },
  1089. "imageHeight": "large"
  1090. }
  1091. ],
  1092. "speed": 6000
  1093. },
  1094. "aed54f7c-add9-4c48-bb34-bd359699eddc": {
  1095. "styles": {},
  1096. "containerType": "slideshow",
  1097. "sectionHeadline": {
  1098. "title": "",
  1099. "actions": []
  1100. },
  1101. "slides": [
  1102. {
  1103. "styles": {},
  1104. "actionButtons": [],
  1105. "bodyProps": {
  1106. "text": ""
  1107. },
  1108. "colorTheme": "dark",
  1109. "id": "ea744445-6a9d-4c97-bd49-0e78c1be7a72",
  1110. "subtitleProps": {
  1111. "text": ""
  1112. },
  1113. "textLocation": {
  1114. "horizontal": "start",
  1115. "vertical": "start"
  1116. },
  1117. "titleProps": {
  1118. "text": ""
  1119. },
  1120. "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
  1121. "urlIngredients": {
  1122. "type": "URL"
  1123. },
  1124. "destinationType": "url",
  1125. "openInNewTab": false,
  1126. "containerType": "image",
  1127. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1128. "isTextBelowImage": false,
  1129. "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/e5f2d78e-a0aa-47c2-b57d-a0020ae97d00/image.jpg",
  1130. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/7522790d-0614-4b3b-99ba-0854dd3a7233/image.jpg",
  1131. "landscapeFocalPoint": {
  1132. "horizontal": "center",
  1133. "vertical": "center"
  1134. },
  1135. "portraitFocalPoint": {
  1136. "horizontal": "center",
  1137. "vertical": "center"
  1138. },
  1139. "assetsIds": {
  1140. "landscape": "e5f2d78e-a0aa-47c2-b57d-a0020ae97d00",
  1141. "portrait": "7522790d-0614-4b3b-99ba-0854dd3a7233",
  1142. "squarish": ""
  1143. },
  1144. "imageHeight": "medium"
  1145. },
  1146. {
  1147. "styles": {},
  1148. "actionButtons": [],
  1149. "bodyProps": {
  1150. "text": ""
  1151. },
  1152. "colorTheme": "dark",
  1153. "id": "b19075fd-e099-446e-9580-3ad6b18d88a3",
  1154. "subtitleProps": {
  1155. "text": ""
  1156. },
  1157. "textLocation": {
  1158. "horizontal": "start",
  1159. "vertical": "start"
  1160. },
  1161. "titleProps": {
  1162. "text": ""
  1163. },
  1164. "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
  1165. "urlIngredients": {
  1166. "type": "URL"
  1167. },
  1168. "destinationType": "url",
  1169. "openInNewTab": false,
  1170. "containerType": "image",
  1171. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1172. "isTextBelowImage": false,
  1173. "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/3a831280-5d1c-4a33-a667-2bea83e34ce0/image.jpg",
  1174. "portraitURL": "",
  1175. "landscapeFocalPoint": {
  1176. "horizontal": "center",
  1177. "vertical": "center"
  1178. },
  1179. "portraitFocalPoint": {
  1180. "horizontal": "center",
  1181. "vertical": "center"
  1182. },
  1183. "assetsIds": {
  1184. "landscape": "3a831280-5d1c-4a33-a667-2bea83e34ce0",
  1185. "portrait": "",
  1186. "squarish": ""
  1187. },
  1188. "imageHeight": "medium"
  1189. },
  1190. {
  1191. "styles": {},
  1192. "actionButtons": [],
  1193. "bodyProps": {
  1194. "text": ""
  1195. },
  1196. "colorTheme": "dark",
  1197. "id": "67916580-4184-400b-a76e-18d56d1b48e9",
  1198. "subtitleProps": {
  1199. "text": ""
  1200. },
  1201. "textLocation": {
  1202. "horizontal": "start",
  1203. "vertical": "start"
  1204. },
  1205. "titleProps": {
  1206. "text": ""
  1207. },
  1208. "cardLinkUrl": "https://www.nike.com/cn/you-cant-stop-us",
  1209. "urlIngredients": {
  1210. "type": "URL"
  1211. },
  1212. "destinationType": "url",
  1213. "openInNewTab": false,
  1214. "containerType": "image",
  1215. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1216. "isTextBelowImage": false,
  1217. "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/ea2e1cf7-7bb9-449b-a527-b5491971beb6/image.jpg",
  1218. "portraitURL": "",
  1219. "landscapeFocalPoint": {
  1220. "horizontal": "center",
  1221. "vertical": "center"
  1222. },
  1223. "portraitFocalPoint": {
  1224. "horizontal": "center",
  1225. "vertical": "center"
  1226. },
  1227. "assetsIds": {
  1228. "landscape": "ea2e1cf7-7bb9-449b-a527-b5491971beb6",
  1229. "portrait": "",
  1230. "squarish": ""
  1231. },
  1232. "imageHeight": "medium"
  1233. }
  1234. ],
  1235. "speed": 6000
  1236. },
  1237. "1ed0eeb1-82f6-4d0f-b626-afeadb1cc3af": {
  1238. "styles": {},
  1239. "actionButtons": [
  1240. {
  1241. "analytics": {
  1242. "hashKey": "f16c4c793fede9641611820791704f15f2dff0e57c4197b9f55780f1184376ca"
  1243. },
  1244. "actionType": "button",
  1245. "actionText": "%u77A7%u77A7%u6211%u4EEC",
  1246. "destinationType": "url",
  1247. "id": "e2bd5f24-ff46-457f-8488-186576941f46",
  1248. "destinationId": "https://www.nike.com/cn/you-cant-stop-us",
  1249. "openInNewTab": false,
  1250. "urlIngredients": {
  1251. "type": "URL"
  1252. }
  1253. }
  1254. ],
  1255. "bodyProps": {
  1256. "text": "",
  1257. "colorTheme": "dark",
  1258. "fontFamily": "base",
  1259. "fontSize": "small",
  1260. "fontStyle": "regular",
  1261. "textColor": null,
  1262. "fontSizeSet": false
  1263. },
  1264. "colorTheme": "dark",
  1265. "id": "1ed0eeb1-82f6-4d0f-b626-afeadb1cc3af",
  1266. "subtitleProps": {
  1267. "text": "",
  1268. "colorTheme": "dark",
  1269. "fontFamily": "base",
  1270. "fontSize": "extra_small",
  1271. "fontStyle": "medium",
  1272. "textColor": null
  1273. },
  1274. "textLocation": {
  1275. "horizontal": "center",
  1276. "vertical": "center"
  1277. },
  1278. "titleProps": {
  1279. "text": "%u4F60%u6211%u4E00%u8D77%uFF0C%u52BF%u5FC5%u66F4%u5F3A%u3002",
  1280. "colorTheme": "dark",
  1281. "fontFamily": "base",
  1282. "fontSize": "medium",
  1283. "fontStyle": "medium",
  1284. "textColor": "#111111"
  1285. },
  1286. "urlIngredients": {},
  1287. "openInNewTab": false,
  1288. "containerType": "text",
  1289. "backgroundColor": "transparent",
  1290. "urls": []
  1291. },
  1292. "55ea6073-e394-4747-bf31-26dc70e5b4d4": {
  1293. "styles": {},
  1294. "actionButtons": [
  1295. {
  1296. "analytics": {
  1297. "hashKey": "9e02f37f9c88a246b27c28419e0f5c3f4378d4713a57bc4ee05ddefb89874e7f"
  1298. },
  1299. "actionType": "button",
  1300. "actionText": "%u77A7%u77A7%u6211%u4EEC",
  1301. "destinationType": "url",
  1302. "id": "4a58ecf0-2a5a-4d7d-bb15-cc706661152d",
  1303. "destinationId": "https://www.nike.com/cn/you-cant-stop-us",
  1304. "openInNewTab": false,
  1305. "urlIngredients": {
  1306. "type": "URL"
  1307. }
  1308. }
  1309. ],
  1310. "bodyProps": {
  1311. "text": "",
  1312. "colorTheme": "dark",
  1313. "fontFamily": "base",
  1314. "fontSize": "small",
  1315. "fontStyle": "regular",
  1316. "textColor": null,
  1317. "fontSizeSet": false
  1318. },
  1319. "colorTheme": "dark",
  1320. "id": "55ea6073-e394-4747-bf31-26dc70e5b4d4",
  1321. "subtitleProps": {
  1322. "text": "",
  1323. "colorTheme": "dark",
  1324. "fontFamily": "base",
  1325. "fontSize": "extra_small",
  1326. "fontStyle": "medium",
  1327. "textColor": null
  1328. },
  1329. "textLocation": {
  1330. "horizontal": "center",
  1331. "vertical": "center"
  1332. },
  1333. "titleProps": {
  1334. "text": "%u4F60%u6211%u4E00%u8D77%uFF0C%u52BF%u5FC5%u66F4%u5F3A%u3002",
  1335. "colorTheme": "dark",
  1336. "fontFamily": "marketing",
  1337. "fontSize": "small",
  1338. "fontStyle": "medium",
  1339. "textColor": "#111111"
  1340. },
  1341. "urlIngredients": {},
  1342. "openInNewTab": false,
  1343. "containerType": "text",
  1344. "backgroundColor": "transparent",
  1345. "urls": []
  1346. },
  1347. "6581553b-798c-4d97-b558-4e5c4c8f5409": {
  1348. "styles": {},
  1349. "containerType": "filmstrip",
  1350. "sectionHeadline": {
  1351. "title": "%u6625%u590F%u8D8B%u52BF",
  1352. "actions": []
  1353. },
  1354. "slides": [
  1355. {
  1356. "styles": {},
  1357. "actionButtons": [
  1358. {
  1359. "analytics": {
  1360. "hashKey": "5147159e83da3809ce4f08b5ab3f1f97222efcc2361d9ea57f1136a6e46b2622"
  1361. },
  1362. "actionType": "button",
  1363. "actionText": "%u9009%u8D2DAIR JORDAN 1%u7CFB%u5217",
  1364. "destinationType": "url",
  1365. "id": "8125a251-15a2-44b0-9b8d-2b2c73b51fe5",
  1366. "destinationId": "https://www.nike.com/cn/w/jordan-1-4foky",
  1367. "openInNewTab": false,
  1368. "urlIngredients": {
  1369. "type": "URL"
  1370. }
  1371. }
  1372. ],
  1373. "bodyProps": {
  1374. "text": ""
  1375. },
  1376. "colorTheme": "dark",
  1377. "id": "f31ee525-a9ca-4543-acd5-a8aa148bca9d",
  1378. "subtitleProps": {
  1379. "text": ""
  1380. },
  1381. "textLocation": {
  1382. "horizontal": "start",
  1383. "vertical": "after"
  1384. },
  1385. "titleProps": {
  1386. "text": ""
  1387. },
  1388. "cardLinkUrl": "https://www.nike.com/cn/w/jordan-1-4foky",
  1389. "urlIngredients": {
  1390. "type": "URL"
  1391. },
  1392. "destinationType": "url",
  1393. "openInNewTab": false,
  1394. "containerType": "image",
  1395. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1396. "isTextBelowImage": false,
  1397. "landscapeURL": "",
  1398. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/85cf1cb7-a4e7-4614-a339-6c5cb720228b/image.jpg",
  1399. "landscapeFocalPoint": {
  1400. "horizontal": "center",
  1401. "vertical": "center"
  1402. },
  1403. "portraitFocalPoint": {
  1404. "horizontal": "center",
  1405. "vertical": "center"
  1406. },
  1407. "preferredOrientation": {
  1408. "small": "portrait",
  1409. "large": "landscape",
  1410. "medium": "landscape"
  1411. },
  1412. "assetsIds": {
  1413. "landscape": "",
  1414. "portrait": "85cf1cb7-a4e7-4614-a339-6c5cb720228b",
  1415. "squarish": ""
  1416. }
  1417. },
  1418. {
  1419. "styles": {},
  1420. "actionButtons": [
  1421. {
  1422. "analytics": {
  1423. "hashKey": "af96fc5d08f72cbab838e235918e168d330867d5d1fb76138e1ee7152242a213"
  1424. },
  1425. "actionType": "button",
  1426. "actionText": "%u9009%u8D2DJORDAN%u670D%u88C5",
  1427. "destinationType": "url",
  1428. "id": "1672e468-5bd4-45a6-873b-d6bfe7be3633",
  1429. "destinationId": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
  1430. "openInNewTab": false,
  1431. "urlIngredients": {
  1432. "type": "URL"
  1433. }
  1434. }
  1435. ],
  1436. "bodyProps": {
  1437. "text": ""
  1438. },
  1439. "colorTheme": "dark",
  1440. "id": "59853066-8857-40dc-aec6-359912da0538",
  1441. "subtitleProps": {
  1442. "text": ""
  1443. },
  1444. "textLocation": {
  1445. "horizontal": "start",
  1446. "vertical": "after"
  1447. },
  1448. "titleProps": {
  1449. "text": ""
  1450. },
  1451. "cardLinkUrl": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
  1452. "urlIngredients": {
  1453. "type": "URL"
  1454. },
  1455. "destinationType": "url",
  1456. "openInNewTab": false,
  1457. "containerType": "image",
  1458. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1459. "isTextBelowImage": false,
  1460. "landscapeURL": "",
  1461. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/9865c658-35cc-4fb6-b858-6f0a607f4929/image.jpg",
  1462. "landscapeFocalPoint": {
  1463. "horizontal": "center",
  1464. "vertical": "center"
  1465. },
  1466. "portraitFocalPoint": {
  1467. "horizontal": "center",
  1468. "vertical": "center"
  1469. },
  1470. "preferredOrientation": {
  1471. "small": "portrait",
  1472. "large": "landscape",
  1473. "medium": "landscape"
  1474. },
  1475. "assetsIds": {
  1476. "landscape": "",
  1477. "portrait": "9865c658-35cc-4fb6-b858-6f0a607f4929",
  1478. "squarish": ""
  1479. }
  1480. },
  1481. {
  1482. "styles": {},
  1483. "actionButtons": [
  1484. {
  1485. "analytics": {
  1486. "hashKey": "33d465787a5919a59d99df11768f6e489dc8c48ce90b1202a349b4a7eae06418"
  1487. },
  1488. "actionType": "button",
  1489. "actionText": "%u9009%u8D2DJORDAN DELTA%u7CFB%u5217",
  1490. "destinationType": "url",
  1491. "id": "72294be4-a868-41d4-9cff-45df9193b9d9",
  1492. "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  1493. "openInNewTab": false,
  1494. "urlIngredients": {
  1495. "type": "URL"
  1496. }
  1497. }
  1498. ],
  1499. "bodyProps": {
  1500. "text": ""
  1501. },
  1502. "colorTheme": "dark",
  1503. "id": "27287875-9d19-439e-a0d9-84ffaa535924",
  1504. "subtitleProps": {
  1505. "text": ""
  1506. },
  1507. "textLocation": {
  1508. "horizontal": "start",
  1509. "vertical": "after"
  1510. },
  1511. "titleProps": {
  1512. "text": ""
  1513. },
  1514. "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  1515. "urlIngredients": {
  1516. "type": "URL"
  1517. },
  1518. "destinationType": "url",
  1519. "openInNewTab": false,
  1520. "containerType": "image",
  1521. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1522. "isTextBelowImage": false,
  1523. "landscapeURL": "",
  1524. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/05344530-316a-4a10-8225-f38764efbad6/image.jpg",
  1525. "landscapeFocalPoint": {
  1526. "horizontal": "center",
  1527. "vertical": "center"
  1528. },
  1529. "portraitFocalPoint": {
  1530. "horizontal": "center",
  1531. "vertical": "center"
  1532. },
  1533. "preferredOrientation": {
  1534. "small": "portrait",
  1535. "large": "landscape",
  1536. "medium": "landscape"
  1537. },
  1538. "assetsIds": {
  1539. "landscape": "",
  1540. "portrait": "05344530-316a-4a10-8225-f38764efbad6",
  1541. "squarish": ""
  1542. }
  1543. }
  1544. ],
  1545. "speed": 6000
  1546. },
  1547. "3c52915f-821f-451b-9144-af59e95c5d8b": {
  1548. "styles": {},
  1549. "actionButtons": [],
  1550. "bodyProps": {
  1551. "text": "",
  1552. "colorTheme": "dark",
  1553. "fontFamily": "base",
  1554. "fontSize": "small",
  1555. "fontStyle": "regular",
  1556. "textColor": null,
  1557. "fontSizeSet": false
  1558. },
  1559. "colorTheme": "dark",
  1560. "id": "3c52915f-821f-451b-9144-af59e95c5d8b",
  1561. "subtitleProps": {
  1562. "text": "<br>%uFF08%u6ED1%u52A8%u67E5%u770B%u66F4%u591A%uFF09",
  1563. "colorTheme": "dark",
  1564. "fontFamily": "base",
  1565. "fontSize": "extra_small",
  1566. "fontStyle": "medium",
  1567. "textColor": null
  1568. },
  1569. "textLocation": {
  1570. "horizontal": "start",
  1571. "vertical": "center"
  1572. },
  1573. "titleProps": {
  1574. "text": " ",
  1575. "colorTheme": "dark",
  1576. "fontFamily": "base",
  1577. "fontSize": "extra_large",
  1578. "fontStyle": "medium",
  1579. "textColor": null
  1580. },
  1581. "urlIngredients": {},
  1582. "openInNewTab": false,
  1583. "containerType": "text",
  1584. "backgroundColor": "transparent",
  1585. "urls": []
  1586. },
  1587. "62fcf326-236b-4908-9851-f0f58336e3c2": {
  1588. "styles": {},
  1589. "containerType": "filmstrip",
  1590. "sectionHeadline": {
  1591. "title": "%u6625%u590F%u8D8B%u52BF",
  1592. "actions": []
  1593. },
  1594. "slides": [
  1595. {
  1596. "styles": {},
  1597. "actionButtons": [
  1598. {
  1599. "analytics": {
  1600. "hashKey": "0ae0d6e70d92f330feb2df6fbc22766f4c237a875bc1762b4d73ea0a027689f6"
  1601. },
  1602. "actionType": "button",
  1603. "actionText": "%u9009%u8D2DAIR JORDAN 1%u7CFB%u5217",
  1604. "destinationType": "url",
  1605. "id": "bd5c67d9-8c2d-4d6a-a566-02a995e05b04",
  1606. "destinationId": "https://www.nike.com/cn/w/jordan-1-4foky",
  1607. "openInNewTab": false,
  1608. "urlIngredients": {
  1609. "type": "URL"
  1610. }
  1611. }
  1612. ],
  1613. "bodyProps": {
  1614. "text": ""
  1615. },
  1616. "colorTheme": "dark",
  1617. "id": "d0ea3c06-3f2e-4e07-8d8b-de6be69de6f5",
  1618. "subtitleProps": {
  1619. "text": ""
  1620. },
  1621. "textLocation": {
  1622. "horizontal": "start",
  1623. "vertical": "after"
  1624. },
  1625. "titleProps": {
  1626. "text": ""
  1627. },
  1628. "cardLinkUrl": "https://www.nike.com/cn/w/jordan-1-4foky",
  1629. "urlIngredients": {
  1630. "type": "URL"
  1631. },
  1632. "destinationType": "url",
  1633. "openInNewTab": false,
  1634. "containerType": "image",
  1635. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1636. "isTextBelowImage": false,
  1637. "landscapeURL": "",
  1638. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/3920ab0a-68f3-44ea-b7ee-c271a5943106/image.jpg",
  1639. "landscapeFocalPoint": {
  1640. "horizontal": "center",
  1641. "vertical": "center"
  1642. },
  1643. "portraitFocalPoint": {
  1644. "horizontal": "center",
  1645. "vertical": "center"
  1646. },
  1647. "preferredOrientation": {
  1648. "small": "portrait",
  1649. "large": "landscape",
  1650. "medium": "landscape"
  1651. },
  1652. "assetsIds": {
  1653. "landscape": "",
  1654. "portrait": "3920ab0a-68f3-44ea-b7ee-c271a5943106",
  1655. "squarish": ""
  1656. }
  1657. },
  1658. {
  1659. "styles": {},
  1660. "actionButtons": [
  1661. {
  1662. "analytics": {
  1663. "hashKey": "b264c5d8f6a57f69c8236f485f491da3ad32ea1eb8016d940a8f1c156f87c018"
  1664. },
  1665. "actionType": "button",
  1666. "actionText": "%u9009%u8D2DJORDAN%u670D%u88C5",
  1667. "destinationType": "url",
  1668. "id": "c23b1853-f5f7-4f96-8078-2b1d2de05dd9",
  1669. "destinationId": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
  1670. "openInNewTab": false,
  1671. "urlIngredients": {
  1672. "type": "URL"
  1673. }
  1674. }
  1675. ],
  1676. "bodyProps": {
  1677. "text": ""
  1678. },
  1679. "colorTheme": "dark",
  1680. "id": "3b435db5-f6d7-42bb-ad41-f5785be8c880",
  1681. "subtitleProps": {
  1682. "text": ""
  1683. },
  1684. "textLocation": {
  1685. "horizontal": "start",
  1686. "vertical": "after"
  1687. },
  1688. "titleProps": {
  1689. "text": ""
  1690. },
  1691. "cardLinkUrl": "https://www.nike.com/cn/w/jordan-apparel-37eefz6ymx6",
  1692. "urlIngredients": {
  1693. "type": "URL"
  1694. },
  1695. "destinationType": "url",
  1696. "openInNewTab": false,
  1697. "containerType": "image",
  1698. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1699. "isTextBelowImage": false,
  1700. "landscapeURL": "",
  1701. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/71d5c3b0-bf65-486c-94fc-68e358673913/image.jpg",
  1702. "landscapeFocalPoint": {
  1703. "horizontal": "center",
  1704. "vertical": "center"
  1705. },
  1706. "portraitFocalPoint": {
  1707. "horizontal": "center",
  1708. "vertical": "center"
  1709. },
  1710. "preferredOrientation": {
  1711. "small": "portrait",
  1712. "large": "landscape",
  1713. "medium": "landscape"
  1714. },
  1715. "assetsIds": {
  1716. "landscape": "",
  1717. "portrait": "71d5c3b0-bf65-486c-94fc-68e358673913",
  1718. "squarish": ""
  1719. }
  1720. },
  1721. {
  1722. "styles": {},
  1723. "actionButtons": [
  1724. {
  1725. "analytics": {
  1726. "hashKey": "3d229fc871c3dd9a232b1cc311292ed71aec3876d4807af1b5893ecc3108e973"
  1727. },
  1728. "actionType": "button",
  1729. "actionText": "%u9009%u8D2DJORDAN DELTA%u7CFB%u5217",
  1730. "destinationType": "url",
  1731. "id": "94cd9cc7-c7f7-4f31-9c71-0e480cce0253",
  1732. "destinationId": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  1733. "openInNewTab": false,
  1734. "urlIngredients": {
  1735. "type": "URL"
  1736. }
  1737. }
  1738. ],
  1739. "bodyProps": {
  1740. "text": ""
  1741. },
  1742. "colorTheme": "dark",
  1743. "id": "88ad6f11-ef66-43cc-aaba-c8b82063f751",
  1744. "subtitleProps": {
  1745. "text": ""
  1746. },
  1747. "textLocation": {
  1748. "horizontal": "start",
  1749. "vertical": "after"
  1750. },
  1751. "titleProps": {
  1752. "text": ""
  1753. },
  1754. "cardLinkUrl": "https://www.nike.com/cn/w/23-engineered-2q1gb",
  1755. "urlIngredients": {
  1756. "type": "URL"
  1757. },
  1758. "destinationType": "url",
  1759. "openInNewTab": false,
  1760. "containerType": "image",
  1761. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1762. "isTextBelowImage": false,
  1763. "landscapeURL": "",
  1764. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/04d3c883-97e6-4ef0-8e1f-53931a156520/image.jpg",
  1765. "landscapeFocalPoint": {
  1766. "horizontal": "center",
  1767. "vertical": "center"
  1768. },
  1769. "portraitFocalPoint": {
  1770. "horizontal": "center",
  1771. "vertical": "center"
  1772. },
  1773. "preferredOrientation": {
  1774. "small": "portrait",
  1775. "large": "landscape",
  1776. "medium": "landscape"
  1777. },
  1778. "assetsIds": {
  1779. "landscape": "",
  1780. "portrait": "04d3c883-97e6-4ef0-8e1f-53931a156520",
  1781. "squarish": ""
  1782. }
  1783. }
  1784. ],
  1785. "speed": 6000
  1786. },
  1787. "9b5cadcd-5072-45b0-8b74-323ea75e47ec": {
  1788. "containerType": "section_headline",
  1789. "cardId": "9b5cadcd-5072-45b0-8b74-323ea75e47ec",
  1790. "styles": {},
  1791. "title": "%u4F1A%u5458%u4E2D%u5FC3",
  1792. "actions": []
  1793. },
  1794. "1eb56bcb-568a-45d6-9b89-5dc087465277": {
  1795. "styles": {},
  1796. "actionButtons": [
  1797. {
  1798. "analytics": {
  1799. "hashKey": "84aacd52a8c4bd2d9e6e5c14dffe15c559048dc474442d1bcad70d67239d09b7"
  1800. },
  1801. "actionType": "button",
  1802. "actionText": "%u4E0B%u8F7DNIKE APP",
  1803. "destinationType": "url",
  1804. "id": "32c69ea8-7045-41bf-bf9a-8596955ce464",
  1805. "destinationId": "https://nike.onelnk.com/3CPe/f1a3c4f4",
  1806. "openInNewTab": false,
  1807. "urlIngredients": {
  1808. "type": "URL"
  1809. }
  1810. }
  1811. ],
  1812. "bodyProps": {
  1813. "text": "%u7CBE%u9009%u4EA7%u54C15%u6298%u8D77%uFF0C%u4E13%u4EAB%u989D%u59167%u6298",
  1814. "fontFamily": "base",
  1815. "fontSize": "small",
  1816. "fontStyle": "regular",
  1817. "textColor": "#111111"
  1818. },
  1819. "colorTheme": "dark",
  1820. "id": "1eb56bcb-568a-45d6-9b89-5dc087465277",
  1821. "subtitleProps": {
  1822. "text": "NIKE APP %u72EC%u5BB6%u798F%u5229",
  1823. "fontFamily": "base",
  1824. "fontSize": "extra_large",
  1825. "fontStyle": "regular",
  1826. "textColor": "#111111"
  1827. },
  1828. "textLocation": {
  1829. "horizontal": "start",
  1830. "vertical": "end"
  1831. },
  1832. "titleProps": {
  1833. "text": "%u9650%u65F6%u4F18%u9009%u7279%u60E0",
  1834. "fontFamily": "base",
  1835. "fontSize": "medium",
  1836. "fontStyle": "medium",
  1837. "textColor": "#111111"
  1838. },
  1839. "cardLinkUrl": "https://nike.onelnk.com/3CPe/f1a3c4f4",
  1840. "urlIngredients": {
  1841. "type": "URL"
  1842. },
  1843. "destinationType": "url",
  1844. "openInNewTab": false,
  1845. "containerType": "image",
  1846. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1847. "isTextBelowImage": false,
  1848. "landscapeURL": "",
  1849. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/a895394f-b262-4022-b7b8-1b3077deeea1/image.jpg",
  1850. "landscapeFocalPoint": {
  1851. "horizontal": "center",
  1852. "vertical": "center"
  1853. },
  1854. "portraitFocalPoint": {
  1855. "horizontal": "center",
  1856. "vertical": "center"
  1857. },
  1858. "assetsIds": {
  1859. "landscape": "",
  1860. "portrait": "a895394f-b262-4022-b7b8-1b3077deeea1",
  1861. "squarish": ""
  1862. },
  1863. "imageHeight": "medium"
  1864. },
  1865. "d63d859e-37ac-4c2e-93a3-8942312a2992": {
  1866. "containerType": "section_headline",
  1867. "cardId": "d63d859e-37ac-4c2e-93a3-8942312a2992",
  1868. "styles": {},
  1869. "title": "%u4E3A%u4F60%u63A8%u8350",
  1870. "actions": []
  1871. },
  1872. "0a6c4c1b-06e5-446a-8e95-96813cbc7260": {
  1873. "styles": {},
  1874. "actionButtons": [
  1875. {
  1876. "analytics": {
  1877. "hashKey": "47b9c0116bfde6188cce64eeff248221ea893cc55f888e23d7550def52d184c9"
  1878. },
  1879. "actionType": "button",
  1880. "actionText": "%u7537%u5B50%u70ED%u9500",
  1881. "destinationType": "url",
  1882. "id": "98ea362e-aea3-44b2-b9b4-2aa0d83b39b6",
  1883. "destinationId": "https://www.nike.com/cn/w/mens-best-76m50znik1",
  1884. "openInNewTab": false,
  1885. "urlIngredients": {
  1886. "type": "URL"
  1887. }
  1888. }
  1889. ],
  1890. "bodyProps": {
  1891. "text": ""
  1892. },
  1893. "colorTheme": "dark",
  1894. "id": "0a6c4c1b-06e5-446a-8e95-96813cbc7260",
  1895. "subtitleProps": {
  1896. "text": ""
  1897. },
  1898. "textLocation": {
  1899. "horizontal": "start",
  1900. "vertical": "end"
  1901. },
  1902. "titleProps": {
  1903. "text": ""
  1904. },
  1905. "cardLinkUrl": "https://www.nike.com/cn/w/mens-best-76m50znik1",
  1906. "urlIngredients": {
  1907. "type": "URL"
  1908. },
  1909. "destinationType": "url",
  1910. "openInNewTab": false,
  1911. "containerType": "image",
  1912. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1913. "isTextBelowImage": false,
  1914. "landscapeURL": "",
  1915. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/e51553b0-92aa-4248-8c5a-05c7b9e2730e/image.jpg",
  1916. "landscapeFocalPoint": {
  1917. "horizontal": "center",
  1918. "vertical": "center"
  1919. },
  1920. "portraitFocalPoint": {
  1921. "horizontal": "center",
  1922. "vertical": "center"
  1923. },
  1924. "assetsIds": {
  1925. "landscape": "",
  1926. "portrait": "e51553b0-92aa-4248-8c5a-05c7b9e2730e",
  1927. "squarish": ""
  1928. },
  1929. "imageHeight": "medium"
  1930. },
  1931. "48884afd-3edc-4e41-b210-74ad36a7d6cb": {
  1932. "styles": {},
  1933. "actionButtons": [
  1934. {
  1935. "analytics": {
  1936. "hashKey": "79747d5fad5caa71e9109b11c292fa074188b289ea2a803d0969fad91645eb85"
  1937. },
  1938. "actionType": "button",
  1939. "actionText": "%u5973%u5B50%u70ED%u9500",
  1940. "destinationType": "url",
  1941. "id": "36f587e9-653c-4673-9863-c06f9ecde8ed",
  1942. "destinationId": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
  1943. "openInNewTab": false,
  1944. "urlIngredients": {
  1945. "type": "URL"
  1946. }
  1947. }
  1948. ],
  1949. "bodyProps": {
  1950. "text": ""
  1951. },
  1952. "colorTheme": "dark",
  1953. "id": "48884afd-3edc-4e41-b210-74ad36a7d6cb",
  1954. "subtitleProps": {
  1955. "text": ""
  1956. },
  1957. "textLocation": {
  1958. "horizontal": "start",
  1959. "vertical": "end"
  1960. },
  1961. "titleProps": {
  1962. "text": ""
  1963. },
  1964. "cardLinkUrl": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
  1965. "urlIngredients": {
  1966. "type": "URL"
  1967. },
  1968. "destinationType": "url",
  1969. "openInNewTab": false,
  1970. "containerType": "image",
  1971. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  1972. "isTextBelowImage": false,
  1973. "landscapeURL": "",
  1974. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/fceb3dc5-ea7e-424c-b4dc-b00ab92faf73/image.jpg",
  1975. "landscapeFocalPoint": {
  1976. "horizontal": "center",
  1977. "vertical": "center"
  1978. },
  1979. "portraitFocalPoint": {
  1980. "horizontal": "center",
  1981. "vertical": "center"
  1982. },
  1983. "assetsIds": {
  1984. "landscape": "",
  1985. "portrait": "fceb3dc5-ea7e-424c-b4dc-b00ab92faf73",
  1986. "squarish": ""
  1987. },
  1988. "imageHeight": "medium"
  1989. },
  1990. "8d545738-fd22-488a-b17a-1081370adcc4": {
  1991. "styles": {},
  1992. "actionButtons": [
  1993. {
  1994. "analytics": {
  1995. "hashKey": "ea6d674f6d9be3e7bab9b2e4660b315891907aa399450695857d9708ff6db8d5"
  1996. },
  1997. "actionType": "button",
  1998. "actionText": "%u6D41%u884C%u6F6E%u54C1",
  1999. "destinationType": "url",
  2000. "id": "14a2840e-1956-4154-9754-f2c42bd6efdc",
  2001. "destinationId": "https://www.nike.com/cn/icons",
  2002. "openInNewTab": false,
  2003. "urlIngredients": {
  2004. "type": "URL"
  2005. }
  2006. }
  2007. ],
  2008. "bodyProps": {
  2009. "text": ""
  2010. },
  2011. "colorTheme": "dark",
  2012. "id": "8d545738-fd22-488a-b17a-1081370adcc4",
  2013. "subtitleProps": {
  2014. "text": ""
  2015. },
  2016. "textLocation": {
  2017. "horizontal": "start",
  2018. "vertical": "end"
  2019. },
  2020. "titleProps": {
  2021. "text": ""
  2022. },
  2023. "cardLinkUrl": "https://www.nike.com/cn/icons",
  2024. "urlIngredients": {
  2025. "type": "URL"
  2026. },
  2027. "destinationType": "url",
  2028. "openInNewTab": false,
  2029. "containerType": "image",
  2030. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  2031. "isTextBelowImage": false,
  2032. "landscapeURL": "",
  2033. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/03b87f64-028c-4ad5-bd6a-074a52582805/image.jpg",
  2034. "landscapeFocalPoint": {
  2035. "horizontal": "center",
  2036. "vertical": "center"
  2037. },
  2038. "portraitFocalPoint": {
  2039. "horizontal": "center",
  2040. "vertical": "center"
  2041. },
  2042. "assetsIds": {
  2043. "landscape": "",
  2044. "portrait": "03b87f64-028c-4ad5-bd6a-074a52582805",
  2045. "squarish": ""
  2046. },
  2047. "imageHeight": "medium"
  2048. },
  2049. "7eb4ef9b-eba9-4667-b6ad-9489a1b09555": {
  2050. "styles": {},
  2051. "actionButtons": [],
  2052. "bodyProps": {
  2053. "text": ""
  2054. },
  2055. "colorTheme": "dark",
  2056. "id": "7eb4ef9b-eba9-4667-b6ad-9489a1b09555",
  2057. "subtitleProps": {
  2058. "text": ""
  2059. },
  2060. "textLocation": {
  2061. "horizontal": "start",
  2062. "vertical": "start"
  2063. },
  2064. "titleProps": {
  2065. "text": ""
  2066. },
  2067. "urlIngredients": {},
  2068. "openInNewTab": false,
  2069. "containerType": "image",
  2070. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  2071. "isTextBelowImage": false,
  2072. "landscapeURL": "https://static.nike.com/a/images/f_auto/w_1920,c_limit/6eecf904-2d99-4d00-bc84-4672f5375aec/image.jpg",
  2073. "portraitURL": "",
  2074. "landscapeFocalPoint": {
  2075. "horizontal": "center",
  2076. "vertical": "center"
  2077. },
  2078. "portraitFocalPoint": {
  2079. "horizontal": "center",
  2080. "vertical": "center"
  2081. },
  2082. "assetsIds": {
  2083. "landscape": "6eecf904-2d99-4d00-bc84-4672f5375aec",
  2084. "portrait": "",
  2085. "squarish": ""
  2086. },
  2087. "imageHeight": "small"
  2088. },
  2089. "de2fd63e-c1ac-4909-bc8b-5aa3dd87f6fd": {
  2090. "styles": {},
  2091. "actionButtons": [
  2092. {
  2093. "analytics": {
  2094. "hashKey": "ef2559eb4115fa80375cafc1ff90cc8d3e83bc7060969bb142af6e08be58de06"
  2095. },
  2096. "actionType": "button",
  2097. "actionText": "%u7537%u5B50%u70ED%u9500",
  2098. "destinationType": "url",
  2099. "id": "9d93a354-eba4-4725-81e4-8625ed03bb52",
  2100. "destinationId": "https://www.nike.com/cn/w/mens-best-76m50znik1",
  2101. "openInNewTab": false,
  2102. "urlIngredients": {
  2103. "type": "URL"
  2104. }
  2105. }
  2106. ],
  2107. "bodyProps": {
  2108. "text": ""
  2109. },
  2110. "colorTheme": "dark",
  2111. "id": "de2fd63e-c1ac-4909-bc8b-5aa3dd87f6fd",
  2112. "subtitleProps": {
  2113. "text": ""
  2114. },
  2115. "textLocation": {
  2116. "horizontal": "start",
  2117. "vertical": "end"
  2118. },
  2119. "titleProps": {
  2120. "text": ""
  2121. },
  2122. "cardLinkUrl": "https://www.nike.com/cn/w/mens-best-76m50znik1",
  2123. "urlIngredients": {
  2124. "type": "URL"
  2125. },
  2126. "destinationType": "url",
  2127. "openInNewTab": false,
  2128. "containerType": "image",
  2129. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  2130. "isTextBelowImage": false,
  2131. "landscapeURL": "",
  2132. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/98fc86a0-9774-4eee-a007-8492e8ed623a/image.jpg",
  2133. "landscapeFocalPoint": {
  2134. "horizontal": "center",
  2135. "vertical": "center"
  2136. },
  2137. "portraitFocalPoint": {
  2138. "horizontal": "center",
  2139. "vertical": "center"
  2140. },
  2141. "assetsIds": {
  2142. "landscape": "",
  2143. "portrait": "98fc86a0-9774-4eee-a007-8492e8ed623a",
  2144. "squarish": ""
  2145. },
  2146. "imageHeight": "medium"
  2147. },
  2148. "f99a342a-dad9-4f30-8a21-2f646431cbc2": {
  2149. "styles": {},
  2150. "actionButtons": [
  2151. {
  2152. "analytics": {
  2153. "hashKey": "6a4fc2058aed198e4ccb0e5c310a59668a333e80968936f537691153a4d6c85b"
  2154. },
  2155. "actionType": "button",
  2156. "actionText": "%u5973%u5B50%u70ED%u9500",
  2157. "destinationType": "url",
  2158. "id": "1590667f-fd46-4440-ae84-3582028f1b15",
  2159. "destinationId": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
  2160. "openInNewTab": false,
  2161. "urlIngredients": {
  2162. "type": "URL"
  2163. }
  2164. }
  2165. ],
  2166. "bodyProps": {
  2167. "text": ""
  2168. },
  2169. "colorTheme": "dark",
  2170. "id": "f99a342a-dad9-4f30-8a21-2f646431cbc2",
  2171. "subtitleProps": {
  2172. "text": ""
  2173. },
  2174. "textLocation": {
  2175. "horizontal": "start",
  2176. "vertical": "end"
  2177. },
  2178. "titleProps": {
  2179. "text": ""
  2180. },
  2181. "cardLinkUrl": "https://www.nike.com/cn/w/womens-best-5e1x6z76m50",
  2182. "urlIngredients": {
  2183. "type": "URL"
  2184. },
  2185. "destinationType": "url",
  2186. "openInNewTab": false,
  2187. "containerType": "image",
  2188. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  2189. "isTextBelowImage": false,
  2190. "landscapeURL": "",
  2191. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/8e7a1558-1ac4-407f-9e79-a56b077a29e3/image.jpg",
  2192. "landscapeFocalPoint": {
  2193. "horizontal": "center",
  2194. "vertical": "center"
  2195. },
  2196. "portraitFocalPoint": {
  2197. "horizontal": "center",
  2198. "vertical": "center"
  2199. },
  2200. "assetsIds": {
  2201. "landscape": "",
  2202. "portrait": "8e7a1558-1ac4-407f-9e79-a56b077a29e3",
  2203. "squarish": ""
  2204. },
  2205. "imageHeight": "medium"
  2206. },
  2207. "033a48ec-1b4e-4143-9d57-65e9f87e8a40": {
  2208. "styles": {},
  2209. "actionButtons": [
  2210. {
  2211. "analytics": {
  2212. "hashKey": "da58213d494950ebad5ca86e9bd844539b65348d768b38925cf04925052b2805"
  2213. },
  2214. "actionType": "button",
  2215. "actionText": "%u6D41%u884C%u6F6E%u54C1",
  2216. "destinationType": "url",
  2217. "id": "e3ac721c-4cbf-45e5-8377-df9f2e1e1d13",
  2218. "destinationId": "https://www.nike.com/cn/icons",
  2219. "openInNewTab": false,
  2220. "urlIngredients": {
  2221. "type": "URL"
  2222. }
  2223. }
  2224. ],
  2225. "bodyProps": {
  2226. "text": ""
  2227. },
  2228. "colorTheme": "dark",
  2229. "id": "033a48ec-1b4e-4143-9d57-65e9f87e8a40",
  2230. "subtitleProps": {
  2231. "text": ""
  2232. },
  2233. "textLocation": {
  2234. "horizontal": "start",
  2235. "vertical": "end"
  2236. },
  2237. "titleProps": {
  2238. "text": ""
  2239. },
  2240. "cardLinkUrl": "https://www.nike.com/cn/icons",
  2241. "urlIngredients": {
  2242. "type": "URL"
  2243. },
  2244. "destinationType": "url",
  2245. "openInNewTab": false,
  2246. "containerType": "image",
  2247. "altText": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  2248. "isTextBelowImage": false,
  2249. "landscapeURL": "",
  2250. "portraitURL": "https://static.nike.com/a/images/f_auto/w_1536,c_limit/19405df0-1d85-4588-9861-26bec52908c7/image.jpg",
  2251. "landscapeFocalPoint": {
  2252. "horizontal": "center",
  2253. "vertical": "center"
  2254. },
  2255. "portraitFocalPoint": {
  2256. "horizontal": "center",
  2257. "vertical": "center"
  2258. },
  2259. "assetsIds": {
  2260. "landscape": "",
  2261. "portrait": "19405df0-1d85-4588-9861-26bec52908c7",
  2262. "squarish": ""
  2263. },
  2264. "imageHeight": "medium"
  2265. }
  2266. },
  2267. "urls": [],
  2268. "banner": {},
  2269. "pageData": {
  2270. "threadId": "654592de-2c9f-4138-ad50-4908adf82a5b",
  2271. "preview": false,
  2272. "openGraph": {
  2273. "imageUrl": "https://c.static-nike.com/a/images/w_1920,c_limit/mdbgldn6yg1gg88jomci/image.jpg",
  2274. "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.",
  2275. "title": "%u8010%u514B(Nike)%u4E2D%u56FD%u5B98%u7F51"
  2276. },
  2277. "seoProperties": {
  2278. "keywords": "%u8010%u514B,Nike,%u8010%u514B(Nike)%u4E2D%u56FD%u5B98%u7F51",
  2279. "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.",
  2280. "officialPath": ">",
  2281. "title": "%u8010%u514B %u2013 Nike.com (%u4E2D%u56FD)",
  2282. "doNotIndex": false
  2283. },
  2284. "title": "%u8010%u514B%u4E2D%u56FD%u5B98%u7F51",
  2285. "showBanner": true,
  2286. "layout": "654592de-2c9f-4138-ad50-4908adf82a5b",
  2287. "collection": "1fe9fbf3-3003-4a81-934d-67887c732dbc",
  2288. "pageType": "page"
  2289. },
  2290. "layout": {
  2291. "654592de-2c9f-4138-ad50-4908adf82a5b": {
  2292. "mode": "layout",
  2293. "modificationDate": "2020-04-30T03:54:35.861Z",
  2294. "createdBy": "weirong.zheng@nike.com",
  2295. "transforms": [],
  2296. "id": "654592de-2c9f-4138-ad50-4908adf82a5b",
  2297. "creationDate": "2020-04-30T03:54:35.853Z",
  2298. "items": [
  2299. "e4a34245-27f4-406d-a53a-b1bb322ce7ea",
  2300. "4eae4f9f-3c43-408f-8ebb-dac7512f93bf",
  2301. "4cd4ec44-a8da-4e1e-8c1e-5e129d108372",
  2302. "3b478e88-9d87-4cee-85d6-cb5e72ffef5d",
  2303. "a4b9f0e4-8dcc-40e6-9aeb-10610cd1d58a",
  2304. "93d3836b-7672-4fe9-9cd9-fedc7a23e290",
  2305. "77e48033-3bdb-4ce0-ae58-e9b06c81ab22",
  2306. "9da7f736-45b5-40c5-9ef3-297c473d12e8",
  2307. "122c23f5-19e2-4e20-ba42-0861d39e97eb",
  2308. "e88cbb0a-a73d-4228-a238-e92801e00910",
  2309. "59f3a652-39f7-4723-9301-38bfff190a74",
  2310. "c212ec3f-def3-4082-89fe-ba5463251a9f",
  2311. "8fa5f61a-650d-47c1-a9c5-9dcdded718b3",
  2312. "a8764f61-4549-4f68-b997-1ce4982a5dce",
  2313. "f2a4537e-8498-4641-b967-0fdc5f0ab016",
  2314. "469b694a-92ea-4a64-b22c-3f2d33757749",
  2315. "ee41f33f-c120-4f03-8bfb-51e4cbf5be61",
  2316. "f369d2c2-4cf9-4086-b6ef-bc7b5065b781"
  2317. ],
  2318. "version": "1588218875861",
  2319. "resourceType": "content/layout"
  2320. }
  2321. },
  2322. "layoutItems": {
  2323. "1a466646-20f6-4691-bd66-2fa7ebe2a5aa": {
  2324. "mode": "block",
  2325. "data": "c999dc80-c974-4252-ac53-32f953915135",
  2326. "id": "1a466646-20f6-4691-bd66-2fa7ebe2a5aa",
  2327. "containsFallBackTitle": true
  2328. },
  2329. "08e72f7e-8bbe-4fe8-bbeb-e524d428c417": {
  2330. "mode": "col",
  2331. "offset": {
  2332. "small": 0,
  2333. "large": 0,
  2334. "medium": 0
  2335. },
  2336. "attributes": {
  2337. "preferredOrientation": {
  2338. "small": "portrait",
  2339. "large": "landscape",
  2340. "medium": "landscape"
  2341. }
  2342. },
  2343. "id": "08e72f7e-8bbe-4fe8-bbeb-e524d428c417",
  2344. "items": [
  2345. "1a466646-20f6-4691-bd66-2fa7ebe2a5aa"
  2346. ],
  2347. "span": {
  2348. "small": 12,
  2349. "large": 12,
  2350. "medium": 12
  2351. }
  2352. },
  2353. "9d5b04ce-947d-4570-89c6-b69a9a9f0775": {
  2354. "mode": "row",
  2355. "attributes": {
  2356. "gutter": true
  2357. },
  2358. "id": "9d5b04ce-947d-4570-89c6-b69a9a9f0775",
  2359. "items": [
  2360. "08e72f7e-8bbe-4fe8-bbeb-e524d428c417"
  2361. ]
  2362. },
  2363. "e4a34245-27f4-406d-a53a-b1bb322ce7ea": {
  2364. "mode": "grid",
  2365. "display": {
  2366. "small": true,
  2367. "large": false,
  2368. "medium": false
  2369. },
  2370. "attributes": {
  2371. "margin": {},
  2372. "fluid": true
  2373. },
  2374. "id": "e4a34245-27f4-406d-a53a-b1bb322ce7ea",
  2375. "items": [
  2376. "9d5b04ce-947d-4570-89c6-b69a9a9f0775"
  2377. ],
  2378. "position": {
  2379. "small": 1,
  2380. "medium": false,
  2381. "large": false
  2382. }
  2383. },
  2384. "f2bd3e16-cb91-4cf7-9784-79761ea21ea3": {
  2385. "mode": "block",
  2386. "data": "f14e8480-8703-4883-bf6b-e360e7cf7a37",
  2387. "id": "f2bd3e16-cb91-4cf7-9784-79761ea21ea3"
  2388. },
  2389. "89fca3a4-007b-4181-bfe0-f2f3dd2087a5": {
  2390. "mode": "col",
  2391. "offset": {
  2392. "small": 0,
  2393. "large": 0,
  2394. "medium": 0
  2395. },
  2396. "attributes": {
  2397. "preferredOrientation": {}
  2398. },
  2399. "id": "89fca3a4-007b-4181-bfe0-f2f3dd2087a5",
  2400. "items": [
  2401. "f2bd3e16-cb91-4cf7-9784-79761ea21ea3"
  2402. ],
  2403. "span": {
  2404. "small": 12,
  2405. "large": 12,
  2406. "medium": 12
  2407. }
  2408. },
  2409. "a5860d09-da8a-463f-90a2-37d0374aaf98": {
  2410. "mode": "row",
  2411. "attributes": {
  2412. "gutter": true,
  2413. "header": true
  2414. },
  2415. "id": "a5860d09-da8a-463f-90a2-37d0374aaf98",
  2416. "items": [
  2417. "89fca3a4-007b-4181-bfe0-f2f3dd2087a5"
  2418. ]
  2419. },
  2420. "4187ec83-46a0-4c6d-bb54-4e8cac2404d3": {
  2421. "mode": "block",
  2422. "data": "f17d55c8-490a-4cec-844c-a4d6eedfa8c6",
  2423. "id": "4187ec83-46a0-4c6d-bb54-4e8cac2404d3"
  2424. },
  2425. "a1fec3bb-d87f-4231-92c2-d9a1359a32ce": {
  2426. "mode": "col",
  2427. "offset": {
  2428. "small": 0,
  2429. "large": 0,
  2430. "medium": 0
  2431. },
  2432. "attributes": {
  2433. "preferredOrientation": {
  2434. "small": "portrait",
  2435. "large": "landscape",
  2436. "medium": "landscape"
  2437. }
  2438. },
  2439. "id": "a1fec3bb-d87f-4231-92c2-d9a1359a32ce",
  2440. "items": [
  2441. "4187ec83-46a0-4c6d-bb54-4e8cac2404d3"
  2442. ],
  2443. "span": {
  2444. "small": 12,
  2445. "large": 12,
  2446. "medium": 12
  2447. }
  2448. },
  2449. "cdedaaa7-9cf3-44a4-99b7-e39216d71c1e": {
  2450. "mode": "row",
  2451. "attributes": {
  2452. "gutter": true
  2453. },
  2454. "id": "cdedaaa7-9cf3-44a4-99b7-e39216d71c1e",
  2455. "items": [
  2456. "a1fec3bb-d87f-4231-92c2-d9a1359a32ce"
  2457. ]
  2458. },
  2459. "4eae4f9f-3c43-408f-8ebb-dac7512f93bf": {
  2460. "mode": "grid",
  2461. "display": {
  2462. "small": true,
  2463. "large": false,
  2464. "medium": false
  2465. },
  2466. "attributes": {
  2467. "margin": {
  2468. "top": "medium"
  2469. },
  2470. "fluid": false
  2471. },
  2472. "id": "4eae4f9f-3c43-408f-8ebb-dac7512f93bf",
  2473. "items": [
  2474. "a5860d09-da8a-463f-90a2-37d0374aaf98",
  2475. "cdedaaa7-9cf3-44a4-99b7-e39216d71c1e"
  2476. ],
  2477. "position": {
  2478. "small": 2,
  2479. "medium": false,
  2480. "large": false
  2481. }
  2482. },
  2483. "4b136661-866b-4e05-82dd-871c6c2b95a9": {
  2484. "mode": "block",
  2485. "data": "4178f225-131e-4308-bb02-5c6a10c3f519",
  2486. "id": "4b136661-866b-4e05-82dd-871c6c2b95a9"
  2487. },
  2488. "35a82666-1b2c-4c8a-b1c1-024a14605c47": {
  2489. "mode": "col",
  2490. "offset": {
  2491. "small": 0,
  2492. "large": 0,
  2493. "medium": 0
  2494. },
  2495. "attributes": {
  2496. "preferredOrientation": {}
  2497. },
  2498. "id": "35a82666-1b2c-4c8a-b1c1-024a14605c47",
  2499. "items": [
  2500. "4b136661-866b-4e05-82dd-871c6c2b95a9"
  2501. ],
  2502. "span": {
  2503. "small": 12,
  2504. "large": 12,
  2505. "medium": 12
  2506. }
  2507. },
  2508. "dab19a74-170a-4a1f-9b83-b45dea86231a": {
  2509. "mode": "row",
  2510. "attributes": {
  2511. "gutter": true,
  2512. "header": true
  2513. },
  2514. "id": "dab19a74-170a-4a1f-9b83-b45dea86231a",
  2515. "items": [
  2516. "35a82666-1b2c-4c8a-b1c1-024a14605c47"
  2517. ]
  2518. },
  2519. "5ebe1f87-5e71-4474-9e72-66ce11ae3f26": {
  2520. "mode": "block",
  2521. "data": "a6734c52-8fb4-479b-b5ac-71f6ad5bb152",
  2522. "id": "5ebe1f87-5e71-4474-9e72-66ce11ae3f26"
  2523. },
  2524. "84a7d937-f123-4d87-9cdb-831fdd60590d": {
  2525. "mode": "col",
  2526. "offset": {
  2527. "small": 0,
  2528. "large": 0,
  2529. "medium": 0
  2530. },
  2531. "attributes": {
  2532. "preferredOrientation": {
  2533. "small": "portrait",
  2534. "large": "landscape",
  2535. "medium": "landscape"
  2536. }
  2537. },
  2538. "id": "84a7d937-f123-4d87-9cdb-831fdd60590d",
  2539. "items": [
  2540. "5ebe1f87-5e71-4474-9e72-66ce11ae3f26"
  2541. ],
  2542. "span": {
  2543. "small": 12,
  2544. "large": 12,
  2545. "medium": 12
  2546. }
  2547. },
  2548. "3b94f084-4d8a-4f1c-93ca-0cffc21c9bd4": {
  2549. "mode": "row",
  2550. "attributes": {
  2551. "gutter": true
  2552. },
  2553. "id": "3b94f084-4d8a-4f1c-93ca-0cffc21c9bd4",
  2554. "items": [
  2555. "84a7d937-f123-4d87-9cdb-831fdd60590d"
  2556. ]
  2557. },
  2558. "4cd4ec44-a8da-4e1e-8c1e-5e129d108372": {
  2559. "mode": "grid",
  2560. "display": {
  2561. "small": true,
  2562. "large": false,
  2563. "medium": false
  2564. },
  2565. "attributes": {
  2566. "margin": {
  2567. "top": "medium"
  2568. },
  2569. "fluid": false
  2570. },
  2571. "id": "4cd4ec44-a8da-4e1e-8c1e-5e129d108372",
  2572. "items": [
  2573. "dab19a74-170a-4a1f-9b83-b45dea86231a",
  2574. "3b94f084-4d8a-4f1c-93ca-0cffc21c9bd4"
  2575. ],
  2576. "position": {
  2577. "small": 3,
  2578. "medium": false,
  2579. "large": false
  2580. }
  2581. },
  2582. "e0b2cb4b-5f7b-46d5-b9b3-05b0d6caea86": {
  2583. "mode": "block",
  2584. "data": "4a2bbddc-6377-49c7-9f9f-6994a0612baa",
  2585. "id": "e0b2cb4b-5f7b-46d5-b9b3-05b0d6caea86"
  2586. },
  2587. "b6b34fc7-73c9-4a8a-9b1f-01fe22bda6f6": {
  2588. "mode": "col",
  2589. "offset": {
  2590. "small": 0,
  2591. "large": 0,
  2592. "medium": 0
  2593. },
  2594. "attributes": {
  2595. "preferredOrientation": {
  2596. "small": "portrait",
  2597. "large": "landscape",
  2598. "medium": "landscape"
  2599. }
  2600. },
  2601. "id": "b6b34fc7-73c9-4a8a-9b1f-01fe22bda6f6",
  2602. "items": [
  2603. "e0b2cb4b-5f7b-46d5-b9b3-05b0d6caea86"
  2604. ],
  2605. "span": {
  2606. "small": 12,
  2607. "large": 12,
  2608. "medium": 12
  2609. }
  2610. },
  2611. "fe766a42-f3f4-4795-b095-21bfc60b2117": {
  2612. "mode": "row",
  2613. "attributes": {
  2614. "gutter": true
  2615. },
  2616. "id": "fe766a42-f3f4-4795-b095-21bfc60b2117",
  2617. "items": [
  2618. "b6b34fc7-73c9-4a8a-9b1f-01fe22bda6f6"
  2619. ]
  2620. },
  2621. "3b478e88-9d87-4cee-85d6-cb5e72ffef5d": {
  2622. "mode": "grid",
  2623. "display": {
  2624. "small": false,
  2625. "large": true,
  2626. "medium": true
  2627. },
  2628. "attributes": {
  2629. "margin": {},
  2630. "fluid": true
  2631. },
  2632. "id": "3b478e88-9d87-4cee-85d6-cb5e72ffef5d",
  2633. "items": [
  2634. "fe766a42-f3f4-4795-b095-21bfc60b2117"
  2635. ],
  2636. "position": {
  2637. "small": false,
  2638. "medium": 1,
  2639. "large": 1
  2640. }
  2641. },
  2642. "0532122e-3b1b-40ca-ba76-732b2a5b1d60": {
  2643. "mode": "block",
  2644. "data": "f14e8480-8703-4883-bf6b-e360e7cf7a37",
  2645. "id": "0532122e-3b1b-40ca-ba76-732b2a5b1d60"
  2646. },
  2647. "0bce779a-7fbc-42bb-925b-5300e092eb19": {
  2648. "mode": "col",
  2649. "offset": {
  2650. "small": 0,
  2651. "large": 0,
  2652. "medium": 0
  2653. },
  2654. "attributes": {
  2655. "preferredOrientation": {}
  2656. },
  2657. "id": "0bce779a-7fbc-42bb-925b-5300e092eb19",
  2658. "items": [
  2659. "0532122e-3b1b-40ca-ba76-732b2a5b1d60"
  2660. ],
  2661. "span": {
  2662. "small": 12,
  2663. "large": 12,
  2664. "medium": 12
  2665. }
  2666. },
  2667. "aef4441a-5ab9-4223-b40f-2cc42ec096ed": {
  2668. "mode": "row",
  2669. "attributes": {
  2670. "gutter": true,
  2671. "header": true
  2672. },
  2673. "id": "aef4441a-5ab9-4223-b40f-2cc42ec096ed",
  2674. "items": [
  2675. "0bce779a-7fbc-42bb-925b-5300e092eb19"
  2676. ]
  2677. },
  2678. "3af3d37b-2d1f-4f1f-bfd0-db8ba59f58eb": {
  2679. "mode": "block",
  2680. "data": "28d6b7d2-7214-4d1c-ae39-79c07d055cd1",
  2681. "id": "3af3d37b-2d1f-4f1f-bfd0-db8ba59f58eb"
  2682. },
  2683. "6ca8c0c7-7f98-4f50-89ec-52b7f625609f": {
  2684. "mode": "col",
  2685. "offset": {
  2686. "small": 0,
  2687. "large": 0,
  2688. "medium": 0
  2689. },
  2690. "attributes": {
  2691. "preferredOrientation": {
  2692. "small": "portrait",
  2693. "large": "landscape",
  2694. "medium": "landscape"
  2695. }
  2696. },
  2697. "id": "6ca8c0c7-7f98-4f50-89ec-52b7f625609f",
  2698. "items": [
  2699. "3af3d37b-2d1f-4f1f-bfd0-db8ba59f58eb"
  2700. ],
  2701. "span": {
  2702. "small": 12,
  2703. "large": 6,
  2704. "medium": 6
  2705. }
  2706. },
  2707. "d1bf7e1a-f571-41dd-9499-53f1f1eb611c": {
  2708. "mode": "block",
  2709. "data": "cf4b78af-8f00-45e1-9130-7233feee45c1",
  2710. "id": "d1bf7e1a-f571-41dd-9499-53f1f1eb611c"
  2711. },
  2712. "1c469e5a-a0ef-4a93-bbaa-15f1ed6da5cb": {
  2713. "mode": "col",
  2714. "offset": {
  2715. "small": 0,
  2716. "large": 0,
  2717. "medium": 0
  2718. },
  2719. "attributes": {
  2720. "preferredOrientation": {
  2721. "small": "portrait",
  2722. "large": "landscape",
  2723. "medium": "landscape"
  2724. }
  2725. },
  2726. "id": "1c469e5a-a0ef-4a93-bbaa-15f1ed6da5cb",
  2727. "items": [
  2728. "d1bf7e1a-f571-41dd-9499-53f1f1eb611c"
  2729. ],
  2730. "span": {
  2731. "small": 12,
  2732. "large": 6,
  2733. "medium": 6
  2734. }
  2735. },
  2736. "d5be504c-44d6-426e-b2f2-3dfd943a0fc7": {
  2737. "mode": "row",
  2738. "attributes": {
  2739. "gutter": true
  2740. },
  2741. "id": "d5be504c-44d6-426e-b2f2-3dfd943a0fc7",
  2742. "items": [
  2743. "6ca8c0c7-7f98-4f50-89ec-52b7f625609f",
  2744. "1c469e5a-a0ef-4a93-bbaa-15f1ed6da5cb"
  2745. ]
  2746. },
  2747. "a4b9f0e4-8dcc-40e6-9aeb-10610cd1d58a": {
  2748. "mode": "grid",
  2749. "display": {
  2750. "small": false,
  2751. "large": true,
  2752. "medium": true
  2753. },
  2754. "attributes": {
  2755. "margin": {
  2756. "top": "medium"
  2757. },
  2758. "fluid": false
  2759. },
  2760. "id": "a4b9f0e4-8dcc-40e6-9aeb-10610cd1d58a",
  2761. "items": [
  2762. "aef4441a-5ab9-4223-b40f-2cc42ec096ed",
  2763. "d5be504c-44d6-426e-b2f2-3dfd943a0fc7"
  2764. ],
  2765. "position": {
  2766. "small": false,
  2767. "medium": 2,
  2768. "large": 2
  2769. }
  2770. },
  2771. "f7dc92ec-2305-4b47-95ca-453d3fb429ca": {
  2772. "mode": "block",
  2773. "data": "cf568695-271c-413e-b0ec-7ec6b62c67d7",
  2774. "id": "f7dc92ec-2305-4b47-95ca-453d3fb429ca"
  2775. },
  2776. "2e564692-e1bc-4a75-858d-38164ce0e4e1": {
  2777. "mode": "col",
  2778. "offset": {
  2779. "small": 0,
  2780. "large": 0,
  2781. "medium": 0
  2782. },
  2783. "attributes": {
  2784. "preferredOrientation": {}
  2785. },
  2786. "id": "2e564692-e1bc-4a75-858d-38164ce0e4e1",
  2787. "items": [
  2788. "f7dc92ec-2305-4b47-95ca-453d3fb429ca"
  2789. ],
  2790. "span": {
  2791. "small": 12,
  2792. "large": 12,
  2793. "medium": 12
  2794. }
  2795. },
  2796. "0f3988a6-4649-4e9f-8a92-8f050be61041": {
  2797. "mode": "row",
  2798. "attributes": {
  2799. "gutter": true,
  2800. "header": true
  2801. },
  2802. "id": "0f3988a6-4649-4e9f-8a92-8f050be61041",
  2803. "items": [
  2804. "2e564692-e1bc-4a75-858d-38164ce0e4e1"
  2805. ]
  2806. },
  2807. "47349d28-f4ec-434d-957f-b425ba471a9e": {
  2808. "mode": "block",
  2809. "data": "f5193177-d442-4278-9d07-fe74830229fe",
  2810. "id": "47349d28-f4ec-434d-957f-b425ba471a9e"
  2811. },
  2812. "30a42dac-ddba-4b47-80c3-8f0fead886f5": {
  2813. "mode": "col",
  2814. "offset": {
  2815. "small": 0,
  2816. "large": 0,
  2817. "medium": 0
  2818. },
  2819. "attributes": {
  2820. "preferredOrientation": {
  2821. "small": "portrait",
  2822. "large": "landscape",
  2823. "medium": "landscape"
  2824. }
  2825. },
  2826. "id": "30a42dac-ddba-4b47-80c3-8f0fead886f5",
  2827. "items": [
  2828. "47349d28-f4ec-434d-957f-b425ba471a9e"
  2829. ],
  2830. "span": {
  2831. "small": 12,
  2832. "large": 12,
  2833. "medium": 12
  2834. }
  2835. },
  2836. "fae52e55-9ec8-4115-a9e6-134d73472f44": {
  2837. "mode": "row",
  2838. "attributes": {
  2839. "gutter": true
  2840. },
  2841. "id": "fae52e55-9ec8-4115-a9e6-134d73472f44",
  2842. "items": [
  2843. "30a42dac-ddba-4b47-80c3-8f0fead886f5"
  2844. ]
  2845. },
  2846. "93d3836b-7672-4fe9-9cd9-fedc7a23e290": {
  2847. "mode": "grid",
  2848. "display": {
  2849. "small": true,
  2850. "large": false,
  2851. "medium": false
  2852. },
  2853. "attributes": {
  2854. "margin": {
  2855. "top": "medium"
  2856. },
  2857. "fluid": true
  2858. },
  2859. "id": "93d3836b-7672-4fe9-9cd9-fedc7a23e290",
  2860. "items": [
  2861. "0f3988a6-4649-4e9f-8a92-8f050be61041",
  2862. "fae52e55-9ec8-4115-a9e6-134d73472f44"
  2863. ],
  2864. "position": {
  2865. "small": 4,
  2866. "medium": false,
  2867. "large": false
  2868. }
  2869. },
  2870. "074c9e93-5f19-4ed3-98b9-26a4579f42c7": {
  2871. "mode": "block",
  2872. "data": "cf568695-271c-413e-b0ec-7ec6b62c67d7",
  2873. "id": "074c9e93-5f19-4ed3-98b9-26a4579f42c7"
  2874. },
  2875. "b8179408-dccd-4dee-953c-eb6d05d6809d": {
  2876. "mode": "col",
  2877. "offset": {
  2878. "small": 0,
  2879. "large": 0,
  2880. "medium": 0
  2881. },
  2882. "attributes": {
  2883. "preferredOrientation": {}
  2884. },
  2885. "id": "b8179408-dccd-4dee-953c-eb6d05d6809d",
  2886. "items": [
  2887. "074c9e93-5f19-4ed3-98b9-26a4579f42c7"
  2888. ],
  2889. "span": {
  2890. "small": 12,
  2891. "large": 12,
  2892. "medium": 12
  2893. }
  2894. },
  2895. "4baa2236-4b0a-4e0e-88e7-2b657381b3ee": {
  2896. "mode": "row",
  2897. "attributes": {
  2898. "gutter": false,
  2899. "header": true
  2900. },
  2901. "id": "4baa2236-4b0a-4e0e-88e7-2b657381b3ee",
  2902. "items": [
  2903. "b8179408-dccd-4dee-953c-eb6d05d6809d"
  2904. ]
  2905. },
  2906. "9b256d8c-9ace-4e5e-86ed-866d249c3903": {
  2907. "mode": "block",
  2908. "data": "aed54f7c-add9-4c48-bb34-bd359699eddc",
  2909. "id": "9b256d8c-9ace-4e5e-86ed-866d249c3903"
  2910. },
  2911. "7ae19ff8-f919-4b6d-ab8c-e0b2a54658b3": {
  2912. "mode": "col",
  2913. "offset": {
  2914. "small": 0,
  2915. "large": 0,
  2916. "medium": 0
  2917. },
  2918. "attributes": {
  2919. "preferredOrientation": {
  2920. "small": "portrait",
  2921. "large": "landscape",
  2922. "medium": "landscape"
  2923. }
  2924. },
  2925. "id": "7ae19ff8-f919-4b6d-ab8c-e0b2a54658b3",
  2926. "items": [
  2927. "9b256d8c-9ace-4e5e-86ed-866d249c3903"
  2928. ],
  2929. "span": {
  2930. "small": 12,
  2931. "large": 12,
  2932. "medium": 12
  2933. }
  2934. },
  2935. "b57ee842-2d2c-410d-b375-2dc0d32d46b0": {
  2936. "mode": "row",
  2937. "attributes": {
  2938. "gutter": false
  2939. },
  2940. "id": "b57ee842-2d2c-410d-b375-2dc0d32d46b0",
  2941. "items": [
  2942. "7ae19ff8-f919-4b6d-ab8c-e0b2a54658b3"
  2943. ]
  2944. },
  2945. "77e48033-3bdb-4ce0-ae58-e9b06c81ab22": {
  2946. "mode": "grid",
  2947. "display": {
  2948. "small": false,
  2949. "large": true,
  2950. "medium": true
  2951. },
  2952. "attributes": {
  2953. "margin": {
  2954. "top": "medium"
  2955. },
  2956. "fluid": true
  2957. },
  2958. "id": "77e48033-3bdb-4ce0-ae58-e9b06c81ab22",
  2959. "items": [
  2960. "4baa2236-4b0a-4e0e-88e7-2b657381b3ee",
  2961. "b57ee842-2d2c-410d-b375-2dc0d32d46b0"
  2962. ],
  2963. "position": {
  2964. "small": false,
  2965. "medium": 3,
  2966. "large": 3
  2967. }
  2968. },
  2969. "8abf546b-7160-4788-aad1-d22da9b31e4c": {
  2970. "mode": "block",
  2971. "data": "1ed0eeb1-82f6-4d0f-b626-afeadb1cc3af",
  2972. "id": "8abf546b-7160-4788-aad1-d22da9b31e4c"
  2973. },
  2974. "180b6b3a-7770-467a-84b2-4d3d8fbdd27b": {
  2975. "mode": "col",
  2976. "offset": {
  2977. "small": 0,
  2978. "large": 2,
  2979. "medium": 2
  2980. },
  2981. "attributes": {
  2982. "preferredOrientation": {
  2983. "small": "portrait",
  2984. "large": "landscape",
  2985. "medium": "landscape"
  2986. }
  2987. },
  2988. "id": "180b6b3a-7770-467a-84b2-4d3d8fbdd27b",
  2989. "items": [
  2990. "8abf546b-7160-4788-aad1-d22da9b31e4c"
  2991. ],
  2992. "span": {
  2993. "small": 12,
  2994. "large": 8,
  2995. "medium": 8
  2996. }
  2997. },
  2998. "107b29e7-3062-4a21-9bbc-c6f321828ffa": {
  2999. "mode": "row",
  3000. "attributes": {
  3001. "gutter": true
  3002. },
  3003. "id": "107b29e7-3062-4a21-9bbc-c6f321828ffa",
  3004. "items": [
  3005. "180b6b3a-7770-467a-84b2-4d3d8fbdd27b"
  3006. ]
  3007. },
  3008. "9da7f736-45b5-40c5-9ef3-297c473d12e8": {
  3009. "mode": "grid",
  3010. "display": {
  3011. "small": true,
  3012. "large": false,
  3013. "medium": false
  3014. },
  3015. "attributes": {
  3016. "margin": {},
  3017. "fluid": false
  3018. },
  3019. "id": "9da7f736-45b5-40c5-9ef3-297c473d12e8",
  3020. "items": [
  3021. "107b29e7-3062-4a21-9bbc-c6f321828ffa"
  3022. ],
  3023. "position": {
  3024. "small": 5,
  3025. "medium": false,
  3026. "large": false
  3027. }
  3028. },
  3029. "1b376db0-fdc1-4b86-8f8e-01e914bec429": {
  3030. "mode": "block",
  3031. "data": "55ea6073-e394-4747-bf31-26dc70e5b4d4",
  3032. "id": "1b376db0-fdc1-4b86-8f8e-01e914bec429"
  3033. },
  3034. "6e4b2311-e413-485b-9c88-7abd2f413637": {
  3035. "mode": "col",
  3036. "offset": {
  3037. "small": 0,
  3038. "large": 0,
  3039. "medium": 0
  3040. },
  3041. "attributes": {
  3042. "preferredOrientation": {
  3043. "small": "portrait",
  3044. "large": "landscape",
  3045. "medium": "landscape"
  3046. }
  3047. },
  3048. "id": "6e4b2311-e413-485b-9c88-7abd2f413637",
  3049. "items": [
  3050. "1b376db0-fdc1-4b86-8f8e-01e914bec429"
  3051. ],
  3052. "span": {
  3053. "small": 12,
  3054. "large": 12,
  3055. "medium": 12
  3056. }
  3057. },
  3058. "1ce373e3-d415-4cad-9411-4ac075adb54d": {
  3059. "mode": "row",
  3060. "attributes": {
  3061. "gutter": true
  3062. },
  3063. "id": "1ce373e3-d415-4cad-9411-4ac075adb54d",
  3064. "items": [
  3065. "6e4b2311-e413-485b-9c88-7abd2f413637"
  3066. ]
  3067. },
  3068. "122c23f5-19e2-4e20-ba42-0861d39e97eb": {
  3069. "mode": "grid",
  3070. "display": {
  3071. "small": false,
  3072. "large": true,
  3073. "medium": true
  3074. },
  3075. "attributes": {
  3076. "margin": {},
  3077. "fluid": false
  3078. },
  3079. "id": "122c23f5-19e2-4e20-ba42-0861d39e97eb",
  3080. "items": [
  3081. "1ce373e3-d415-4cad-9411-4ac075adb54d"
  3082. ],
  3083. "position": {
  3084. "small": false,
  3085. "medium": 4,
  3086. "large": 4
  3087. }
  3088. },
  3089. "971e4bb3-c004-4efc-81e8-416baaff56b4": {
  3090. "mode": "block",
  3091. "data": "6581553b-798c-4d97-b558-4e5c4c8f5409",
  3092. "id": "971e4bb3-c004-4efc-81e8-416baaff56b4"
  3093. },
  3094. "c53537e9-56e6-4af0-b2f7-a7e2f0b639e8": {
  3095. "mode": "col",
  3096. "offset": {
  3097. "small": 0,
  3098. "large": 0,
  3099. "medium": 0
  3100. },
  3101. "attributes": {
  3102. "preferredOrientation": {
  3103. "small": "portrait",
  3104. "large": "landscape",
  3105. "medium": "landscape"
  3106. }
  3107. },
  3108. "id": "c53537e9-56e6-4af0-b2f7-a7e2f0b639e8",
  3109. "items": [
  3110. "971e4bb3-c004-4efc-81e8-416baaff56b4"
  3111. ],
  3112. "span": {
  3113. "small": 12,
  3114. "large": 12,
  3115. "medium": 12
  3116. }
  3117. },
  3118. "d5a40a3c-4076-4967-82de-55065fd5fa17": {
  3119. "mode": "row",
  3120. "attributes": {
  3121. "gutter": true
  3122. },
  3123. "id": "d5a40a3c-4076-4967-82de-55065fd5fa17",
  3124. "items": [
  3125. "c53537e9-56e6-4af0-b2f7-a7e2f0b639e8"
  3126. ]
  3127. },
  3128. "e88cbb0a-a73d-4228-a238-e92801e00910": {
  3129. "mode": "grid",
  3130. "display": {
  3131. "small": true,
  3132. "large": false,
  3133. "medium": false
  3134. },
  3135. "attributes": {
  3136. "margin": {
  3137. "top": "medium"
  3138. },
  3139. "fluid": false
  3140. },
  3141. "id": "e88cbb0a-a73d-4228-a238-e92801e00910",
  3142. "items": [
  3143. "d5a40a3c-4076-4967-82de-55065fd5fa17"
  3144. ],
  3145. "position": {
  3146. "small": 6,
  3147. "medium": false,
  3148. "large": false
  3149. }
  3150. },
  3151. "8afe76bb-8c82-4c8b-8ef3-96c43acd4be7": {
  3152. "mode": "block",
  3153. "data": "3c52915f-821f-451b-9144-af59e95c5d8b",
  3154. "id": "8afe76bb-8c82-4c8b-8ef3-96c43acd4be7"
  3155. },
  3156. "f1160705-d824-43a0-a09c-2394ea3b9943": {
  3157. "mode": "col",
  3158. "offset": {
  3159. "small": 0,
  3160. "large": 0,
  3161. "medium": 0
  3162. },
  3163. "attributes": {
  3164. "preferredOrientation": {
  3165. "small": "portrait",
  3166. "large": "landscape",
  3167. "medium": "landscape"
  3168. }
  3169. },
  3170. "id": "f1160705-d824-43a0-a09c-2394ea3b9943",
  3171. "items": [
  3172. "8afe76bb-8c82-4c8b-8ef3-96c43acd4be7"
  3173. ],
  3174. "span": {
  3175. "small": 12,
  3176. "large": 12,
  3177. "medium": 12
  3178. }
  3179. },
  3180. "e325a944-2ae2-4bec-bbda-6deda802e622": {
  3181. "mode": "row",
  3182. "attributes": {
  3183. "gutter": true
  3184. },
  3185. "id": "e325a944-2ae2-4bec-bbda-6deda802e622",
  3186. "items": [
  3187. "f1160705-d824-43a0-a09c-2394ea3b9943"
  3188. ]
  3189. },
  3190. "59f3a652-39f7-4723-9301-38bfff190a74": {
  3191. "mode": "grid",
  3192. "display": {
  3193. "small": true,
  3194. "large": false,
  3195. "medium": false
  3196. },
  3197. "attributes": {
  3198. "margin": {},
  3199. "fluid": false
  3200. },
  3201. "id": "59f3a652-39f7-4723-9301-38bfff190a74",
  3202. "items": [
  3203. "e325a944-2ae2-4bec-bbda-6deda802e622"
  3204. ],
  3205. "position": {
  3206. "small": 7,
  3207. "medium": false,
  3208. "large": false
  3209. }
  3210. },
  3211. "70b70f4f-8f76-4697-b506-499a271b3a8f": {
  3212. "mode": "block",
  3213. "data": "62fcf326-236b-4908-9851-f0f58336e3c2",
  3214. "id": "70b70f4f-8f76-4697-b506-499a271b3a8f"
  3215. },
  3216. "17c51f02-219f-4896-a419-43a06d4737b2": {
  3217. "mode": "col",
  3218. "offset": {
  3219. "small": 0,
  3220. "large": 0,
  3221. "medium": 0
  3222. },
  3223. "attributes": {
  3224. "preferredOrientation": {
  3225. "small": "portrait",
  3226. "large": "landscape",
  3227. "medium": "landscape"
  3228. }
  3229. },
  3230. "id": "17c51f02-219f-4896-a419-43a06d4737b2",
  3231. "items": [
  3232. "70b70f4f-8f76-4697-b506-499a271b3a8f"
  3233. ],
  3234. "span": {
  3235. "small": 12,
  3236. "large": 12,
  3237. "medium": 12
  3238. }
  3239. },
  3240. "0a3155d0-fa8f-4b0b-bac8-6f302e2a9bf8": {
  3241. "mode": "row",
  3242. "attributes": {
  3243. "gutter": true
  3244. },
  3245. "id": "0a3155d0-fa8f-4b0b-bac8-6f302e2a9bf8",
  3246. "items": [
  3247. "17c51f02-219f-4896-a419-43a06d4737b2"
  3248. ]
  3249. },
  3250. "c212ec3f-def3-4082-89fe-ba5463251a9f": {
  3251. "mode": "grid",
  3252. "display": {
  3253. "small": false,
  3254. "large": true,
  3255. "medium": true
  3256. },
  3257. "attributes": {
  3258. "margin": {
  3259. "top": "medium"
  3260. },
  3261. "fluid": false
  3262. },
  3263. "id": "c212ec3f-def3-4082-89fe-ba5463251a9f",
  3264. "items": [
  3265. "0a3155d0-fa8f-4b0b-bac8-6f302e2a9bf8"
  3266. ],
  3267. "position": {
  3268. "small": false,
  3269. "medium": 5,
  3270. "large": 5
  3271. }
  3272. },
  3273. "d913291c-ae93-452a-8b5c-9b0ff5d85508": {
  3274. "mode": "block",
  3275. "data": "9b5cadcd-5072-45b0-8b74-323ea75e47ec",
  3276. "id": "d913291c-ae93-452a-8b5c-9b0ff5d85508"
  3277. },
  3278. "f8d6dfce-f2a5-4d5e-9937-466b125f39d0": {
  3279. "mode": "col",
  3280. "offset": {
  3281. "small": 0,
  3282. "large": 0,
  3283. "medium": 0
  3284. },
  3285. "attributes": {
  3286. "preferredOrientation": {}
  3287. },
  3288. "id": "f8d6dfce-f2a5-4d5e-9937-466b125f39d0",
  3289. "items": [
  3290. "d913291c-ae93-452a-8b5c-9b0ff5d85508"
  3291. ],
  3292. "span": {
  3293. "small": 12,
  3294. "large": 12,
  3295. "medium": 12
  3296. }
  3297. },
  3298. "57987140-69b9-4d3f-a1c1-dc29edccef67": {
  3299. "mode": "row",
  3300. "attributes": {
  3301. "gutter": true,
  3302. "header": true
  3303. },
  3304. "id": "57987140-69b9-4d3f-a1c1-dc29edccef67",
  3305. "items": [
  3306. "f8d6dfce-f2a5-4d5e-9937-466b125f39d0"
  3307. ]
  3308. },
  3309. "f1be4db0-e484-4eb5-a0d5-5aa1be8386d8": {
  3310. "mode": "block",
  3311. "data": "1eb56bcb-568a-45d6-9b89-5dc087465277",
  3312. "id": "f1be4db0-e484-4eb5-a0d5-5aa1be8386d8"
  3313. },
  3314. "c4b8a216-4d82-4e8f-9f16-a48dc672a67a": {
  3315. "mode": "col",
  3316. "offset": {
  3317. "small": 0,
  3318. "large": 0,
  3319. "medium": 0
  3320. },
  3321. "attributes": {
  3322. "preferredOrientation": {
  3323. "small": "portrait",
  3324. "large": "landscape",
  3325. "medium": "landscape"
  3326. }
  3327. },
  3328. "id": "c4b8a216-4d82-4e8f-9f16-a48dc672a67a",
  3329. "items": [
  3330. "f1be4db0-e484-4eb5-a0d5-5aa1be8386d8"
  3331. ],
  3332. "span": {
  3333. "small": 12,
  3334. "large": 12,
  3335. "medium": 12
  3336. }
  3337. },
  3338. "77b5594d-fdfe-40c4-b3f4-0ec08938e1e2": {
  3339. "mode": "row",
  3340. "attributes": {
  3341. "gutter": true
  3342. },
  3343. "id": "77b5594d-fdfe-40c4-b3f4-0ec08938e1e2",
  3344. "items": [
  3345. "c4b8a216-4d82-4e8f-9f16-a48dc672a67a"
  3346. ]
  3347. },
  3348. "8fa5f61a-650d-47c1-a9c5-9dcdded718b3": {
  3349. "mode": "grid",
  3350. "display": {
  3351. "small": true,
  3352. "large": false,
  3353. "medium": false
  3354. },
  3355. "attributes": {
  3356. "margin": {
  3357. "top": "medium"
  3358. },
  3359. "fluid": false
  3360. },
  3361. "id": "8fa5f61a-650d-47c1-a9c5-9dcdded718b3",
  3362. "items": [
  3363. "57987140-69b9-4d3f-a1c1-dc29edccef67",
  3364. "77b5594d-fdfe-40c4-b3f4-0ec08938e1e2"
  3365. ],
  3366. "position": {
  3367. "small": 8,
  3368. "medium": false,
  3369. "large": false
  3370. }
  3371. },
  3372. "3da0aeed-9615-421a-92dd-8d9d8846f413": {
  3373. "mode": "block",
  3374. "data": "d63d859e-37ac-4c2e-93a3-8942312a2992",
  3375. "id": "3da0aeed-9615-421a-92dd-8d9d8846f413"
  3376. },
  3377. "f5eb1aa4-6b27-4075-997a-3e58321e559c": {
  3378. "mode": "col",
  3379. "offset": {
  3380. "small": 0,
  3381. "large": 0,
  3382. "medium": 0
  3383. },
  3384. "attributes": {
  3385. "preferredOrientation": {}
  3386. },
  3387. "id": "f5eb1aa4-6b27-4075-997a-3e58321e559c",
  3388. "items": [
  3389. "3da0aeed-9615-421a-92dd-8d9d8846f413"
  3390. ],
  3391. "span": {
  3392. "small": 12,
  3393. "large": 12,
  3394. "medium": 12
  3395. }
  3396. },
  3397. "fe740c04-c972-49e3-88d3-e7a2a11bfb74": {
  3398. "mode": "row",
  3399. "attributes": {
  3400. "gutter": true,
  3401. "header": true
  3402. },
  3403. "id": "fe740c04-c972-49e3-88d3-e7a2a11bfb74",
  3404. "items": [
  3405. "f5eb1aa4-6b27-4075-997a-3e58321e559c"
  3406. ]
  3407. },
  3408. "98f0eb1d-d3b3-43a2-bb3f-f03ffe55f389": {
  3409. "mode": "block",
  3410. "data": "0a6c4c1b-06e5-446a-8e95-96813cbc7260",
  3411. "id": "98f0eb1d-d3b3-43a2-bb3f-f03ffe55f389"
  3412. },
  3413. "b52e9812-f401-4f7e-834e-c8f3e9540ac6": {
  3414. "mode": "col",
  3415. "offset": {
  3416. "small": 0,
  3417. "large": 0,
  3418. "medium": 0
  3419. },
  3420. "attributes": {
  3421. "preferredOrientation": {
  3422. "small": "portrait",
  3423. "large": "landscape",
  3424. "medium": "landscape"
  3425. }
  3426. },
  3427. "id": "b52e9812-f401-4f7e-834e-c8f3e9540ac6",
  3428. "items": [
  3429. "98f0eb1d-d3b3-43a2-bb3f-f03ffe55f389"
  3430. ],
  3431. "span": {
  3432. "small": 12,
  3433. "large": 12,
  3434. "medium": 12
  3435. }
  3436. },
  3437. "94c99dd4-31f2-4862-b413-c7a1878a57b0": {
  3438. "mode": "row",
  3439. "attributes": {
  3440. "gutter": true
  3441. },
  3442. "id": "94c99dd4-31f2-4862-b413-c7a1878a57b0",
  3443. "items": [
  3444. "b52e9812-f401-4f7e-834e-c8f3e9540ac6"
  3445. ]
  3446. },
  3447. "a8764f61-4549-4f68-b997-1ce4982a5dce": {
  3448. "mode": "grid",
  3449. "display": {
  3450. "small": true,
  3451. "large": false,
  3452. "medium": false
  3453. },
  3454. "attributes": {
  3455. "margin": {
  3456. "top": "medium"
  3457. },
  3458. "fluid": false
  3459. },
  3460. "id": "a8764f61-4549-4f68-b997-1ce4982a5dce",
  3461. "items": [
  3462. "fe740c04-c972-49e3-88d3-e7a2a11bfb74",
  3463. "94c99dd4-31f2-4862-b413-c7a1878a57b0"
  3464. ],
  3465. "position": {
  3466. "small": 9,
  3467. "medium": false,
  3468. "large": false
  3469. }
  3470. },
  3471. "9530c582-b1d5-4068-86f4-21a743b17b8a": {
  3472. "mode": "block",
  3473. "data": "48884afd-3edc-4e41-b210-74ad36a7d6cb",
  3474. "id": "9530c582-b1d5-4068-86f4-21a743b17b8a"
  3475. },
  3476. "e18e104e-5f5d-4d76-a895-7172569ad6c2": {
  3477. "mode": "col",
  3478. "offset": {
  3479. "small": 0,
  3480. "large": 0,
  3481. "medium": 0
  3482. },
  3483. "attributes": {
  3484. "preferredOrientation": {
  3485. "small": "portrait",
  3486. "large": "landscape",
  3487. "medium": "landscape"
  3488. }
  3489. },
  3490. "id": "e18e104e-5f5d-4d76-a895-7172569ad6c2",
  3491. "items": [
  3492. "9530c582-b1d5-4068-86f4-21a743b17b8a"
  3493. ],
  3494. "span": {
  3495. "small": 12,
  3496. "large": 12,
  3497. "medium": 12
  3498. }
  3499. },
  3500. "fa1f162c-237e-4583-bba5-1e29c7c0efdf": {
  3501. "mode": "row",
  3502. "attributes": {
  3503. "gutter": true
  3504. },
  3505. "id": "fa1f162c-237e-4583-bba5-1e29c7c0efdf",
  3506. "items": [
  3507. "e18e104e-5f5d-4d76-a895-7172569ad6c2"
  3508. ]
  3509. },
  3510. "f2a4537e-8498-4641-b967-0fdc5f0ab016": {
  3511. "mode": "grid",
  3512. "display": {
  3513. "small": true,
  3514. "large": false,
  3515. "medium": false
  3516. },
  3517. "attributes": {
  3518. "margin": {
  3519. "top": "medium"
  3520. },
  3521. "fluid": false
  3522. },
  3523. "id": "f2a4537e-8498-4641-b967-0fdc5f0ab016",
  3524. "items": [
  3525. "fa1f162c-237e-4583-bba5-1e29c7c0efdf"
  3526. ],
  3527. "position": {
  3528. "small": 10,
  3529. "medium": false,
  3530. "large": false
  3531. }
  3532. },
  3533. "6c3222cc-4713-4def-ad6b-04351b1b8943": {
  3534. "mode": "block",
  3535. "data": "8d545738-fd22-488a-b17a-1081370adcc4",
  3536. "id": "6c3222cc-4713-4def-ad6b-04351b1b8943"
  3537. },
  3538. "95cf20eb-ad39-4d0f-b6b9-6eab6e494b7e": {
  3539. "mode": "col",
  3540. "offset": {
  3541. "small": 0,
  3542. "large": 0,
  3543. "medium": 0
  3544. },
  3545. "attributes": {
  3546. "preferredOrientation": {
  3547. "small": "portrait",
  3548. "large": "landscape",
  3549. "medium": "landscape"
  3550. }
  3551. },
  3552. "id": "95cf20eb-ad39-4d0f-b6b9-6eab6e494b7e",
  3553. "items": [
  3554. "6c3222cc-4713-4def-ad6b-04351b1b8943"
  3555. ],
  3556. "span": {
  3557. "small": 12,
  3558. "large": 12,
  3559. "medium": 12
  3560. }
  3561. },
  3562. "fdefaca5-419a-4319-823e-044b5f600aea": {
  3563. "mode": "row",
  3564. "attributes": {
  3565. "gutter": true
  3566. },
  3567. "id": "fdefaca5-419a-4319-823e-044b5f600aea",
  3568. "items": [
  3569. "95cf20eb-ad39-4d0f-b6b9-6eab6e494b7e"
  3570. ]
  3571. },
  3572. "469b694a-92ea-4a64-b22c-3f2d33757749": {
  3573. "mode": "grid",
  3574. "display": {
  3575. "small": true,
  3576. "large": false,
  3577. "medium": false
  3578. },
  3579. "attributes": {
  3580. "margin": {
  3581. "top": "medium"
  3582. },
  3583. "fluid": false
  3584. },
  3585. "id": "469b694a-92ea-4a64-b22c-3f2d33757749",
  3586. "items": [
  3587. "fdefaca5-419a-4319-823e-044b5f600aea"
  3588. ],
  3589. "position": {
  3590. "small": 11,
  3591. "medium": false,
  3592. "large": false
  3593. }
  3594. },
  3595. "934de106-afd5-40bf-acf3-b243da850583": {
  3596. "mode": "block",
  3597. "data": "9b5cadcd-5072-45b0-8b74-323ea75e47ec",
  3598. "id": "934de106-afd5-40bf-acf3-b243da850583"
  3599. },
  3600. "162785e9-5877-46b0-a929-f99780690387": {
  3601. "mode": "col",
  3602. "offset": {
  3603. "small": 0,
  3604. "large": 0,
  3605. "medium": 0
  3606. },
  3607. "attributes": {
  3608. "preferredOrientation": {}
  3609. },
  3610. "id": "162785e9-5877-46b0-a929-f99780690387",
  3611. "items": [
  3612. "934de106-afd5-40bf-acf3-b243da850583"
  3613. ],
  3614. "span": {
  3615. "small": 12,
  3616. "large": 12,
  3617. "medium": 12
  3618. }
  3619. },
  3620. "bb8f8101-24d4-451b-a9a6-f6e16f97eecc": {
  3621. "mode": "row",
  3622. "attributes": {
  3623. "gutter": true,
  3624. "header": true
  3625. },
  3626. "id": "bb8f8101-24d4-451b-a9a6-f6e16f97eecc",
  3627. "items": [
  3628. "162785e9-5877-46b0-a929-f99780690387"
  3629. ]
  3630. },
  3631. "f2d76600-9e8e-4fac-b7f2-fa1a70cf3541": {
  3632. "mode": "block",
  3633. "data": "7eb4ef9b-eba9-4667-b6ad-9489a1b09555",
  3634. "id": "f2d76600-9e8e-4fac-b7f2-fa1a70cf3541"
  3635. },
  3636. "f54ed391-6606-4c25-98d7-83a72dbe66d9": {
  3637. "mode": "col",
  3638. "offset": {
  3639. "small": 0,
  3640. "large": 0,
  3641. "medium": 0
  3642. },
  3643. "attributes": {
  3644. "preferredOrientation": {
  3645. "small": "portrait",
  3646. "large": "landscape",
  3647. "medium": "landscape"
  3648. }
  3649. },
  3650. "id": "f54ed391-6606-4c25-98d7-83a72dbe66d9",
  3651. "items": [
  3652. "f2d76600-9e8e-4fac-b7f2-fa1a70cf3541"
  3653. ],
  3654. "span": {
  3655. "small": 12,
  3656. "large": 12,
  3657. "medium": 12
  3658. }
  3659. },
  3660. "359bd5f3-f5f0-4d5a-acf2-7b09cf8b93e1": {
  3661. "mode": "row",
  3662. "attributes": {
  3663. "gutter": true
  3664. },
  3665. "id": "359bd5f3-f5f0-4d5a-acf2-7b09cf8b93e1",
  3666. "items": [
  3667. "f54ed391-6606-4c25-98d7-83a72dbe66d9"
  3668. ]
  3669. },
  3670. "ee41f33f-c120-4f03-8bfb-51e4cbf5be61": {
  3671. "mode": "grid",
  3672. "display": {
  3673. "small": false,
  3674. "large": true,
  3675. "medium": true
  3676. },
  3677. "attributes": {
  3678. "margin": {
  3679. "top": "medium"
  3680. },
  3681. "fluid": false
  3682. },
  3683. "id": "ee41f33f-c120-4f03-8bfb-51e4cbf5be61",
  3684. "items": [
  3685. "bb8f8101-24d4-451b-a9a6-f6e16f97eecc",
  3686. "359bd5f3-f5f0-4d5a-acf2-7b09cf8b93e1"
  3687. ],
  3688. "position": {
  3689. "small": false,
  3690. "medium": 6,
  3691. "large": 6
  3692. }
  3693. },
  3694. "05759f4c-b8c3-4bf4-b61b-d40699a7b879": {
  3695. "mode": "block",
  3696. "data": "d63d859e-37ac-4c2e-93a3-8942312a2992",
  3697. "id": "05759f4c-b8c3-4bf4-b61b-d40699a7b879"
  3698. },
  3699. "96e8d526-7780-44e1-9f79-659071f14c0b": {
  3700. "mode": "col",
  3701. "offset": {
  3702. "small": 0,
  3703. "large": 0,
  3704. "medium": 0
  3705. },
  3706. "attributes": {
  3707. "preferredOrientation": {}
  3708. },
  3709. "id": "96e8d526-7780-44e1-9f79-659071f14c0b",
  3710. "items": [
  3711. "05759f4c-b8c3-4bf4-b61b-d40699a7b879"
  3712. ],
  3713. "span": {
  3714. "small": 12,
  3715. "large": 12,
  3716. "medium": 12
  3717. }
  3718. },
  3719. "52785126-9a60-44f3-965f-1e69ce5432b9": {
  3720. "mode": "row",
  3721. "attributes": {
  3722. "gutter": true,
  3723. "header": true
  3724. },
  3725. "id": "52785126-9a60-44f3-965f-1e69ce5432b9",
  3726. "items": [
  3727. "96e8d526-7780-44e1-9f79-659071f14c0b"
  3728. ]
  3729. },
  3730. "dacc3715-f5a3-483a-acef-ac45177cff7f": {
  3731. "mode": "block",
  3732. "data": "de2fd63e-c1ac-4909-bc8b-5aa3dd87f6fd",
  3733. "id": "dacc3715-f5a3-483a-acef-ac45177cff7f"
  3734. },
  3735. "2d5e66a4-02fa-4374-bbfe-3d3d627c14b6": {
  3736. "mode": "col",
  3737. "offset": {
  3738. "small": 0,
  3739. "large": 0,
  3740. "medium": 0
  3741. },
  3742. "attributes": {
  3743. "preferredOrientation": {
  3744. "small": "portrait",
  3745. "large": "portrait",
  3746. "medium": "portrait"
  3747. }
  3748. },
  3749. "id": "2d5e66a4-02fa-4374-bbfe-3d3d627c14b6",
  3750. "items": [
  3751. "dacc3715-f5a3-483a-acef-ac45177cff7f"
  3752. ],
  3753. "span": {
  3754. "small": 12,
  3755. "large": 4,
  3756. "medium": 4
  3757. }
  3758. },
  3759. "db5f0495-183c-455d-80dd-7c5fc2d3bb59": {
  3760. "mode": "block",
  3761. "data": "f99a342a-dad9-4f30-8a21-2f646431cbc2",
  3762. "id": "db5f0495-183c-455d-80dd-7c5fc2d3bb59"
  3763. },
  3764. "bc7e81cf-f49b-4668-b3d0-c6830fc09ce3": {
  3765. "mode": "col",
  3766. "offset": {
  3767. "small": 0,
  3768. "large": 0,
  3769. "medium": 0
  3770. },
  3771. "attributes": {
  3772. "preferredOrientation": {
  3773. "small": "portrait",
  3774. "large": "portrait",
  3775. "medium": "portrait"
  3776. }
  3777. },
  3778. "id": "bc7e81cf-f49b-4668-b3d0-c6830fc09ce3",
  3779. "items": [
  3780. "db5f0495-183c-455d-80dd-7c5fc2d3bb59"
  3781. ],
  3782. "span": {
  3783. "small": 12,
  3784. "large": 4,
  3785. "medium": 4
  3786. }
  3787. },
  3788. "23c0f961-3d26-43c0-a76f-5f8068102ce6": {
  3789. "mode": "block",
  3790. "data": "033a48ec-1b4e-4143-9d57-65e9f87e8a40",
  3791. "id": "23c0f961-3d26-43c0-a76f-5f8068102ce6"
  3792. },
  3793. "b950ff0b-5e53-40a0-8048-5736b85771c2": {
  3794. "mode": "col",
  3795. "offset": {
  3796. "small": 0,
  3797. "large": 0,
  3798. "medium": 0
  3799. },
  3800. "attributes": {
  3801. "preferredOrientation": {
  3802. "small": "portrait",
  3803. "large": "portrait",
  3804. "medium": "portrait"
  3805. }
  3806. },
  3807. "id": "b950ff0b-5e53-40a0-8048-5736b85771c2",
  3808. "items": [
  3809. "23c0f961-3d26-43c0-a76f-5f8068102ce6"
  3810. ],
  3811. "span": {
  3812. "small": 12,
  3813. "large": 4,
  3814. "medium": 4
  3815. }
  3816. },
  3817. "9d2fc501-3e12-4cfd-a8d5-83636b0abf79": {
  3818. "mode": "row",
  3819. "attributes": {
  3820. "gutter": true
  3821. },
  3822. "id": "9d2fc501-3e12-4cfd-a8d5-83636b0abf79",
  3823. "items": [
  3824. "2d5e66a4-02fa-4374-bbfe-3d3d627c14b6",
  3825. "bc7e81cf-f49b-4668-b3d0-c6830fc09ce3",
  3826. "b950ff0b-5e53-40a0-8048-5736b85771c2"
  3827. ]
  3828. },
  3829. "f369d2c2-4cf9-4086-b6ef-bc7b5065b781": {
  3830. "mode": "grid",
  3831. "display": {
  3832. "small": false,
  3833. "large": true,
  3834. "medium": true
  3835. },
  3836. "attributes": {
  3837. "margin": {
  3838. "top": "medium"
  3839. },
  3840. "fluid": false
  3841. },
  3842. "id": "f369d2c2-4cf9-4086-b6ef-bc7b5065b781",
  3843. "items": [
  3844. "52785126-9a60-44f3-965f-1e69ce5432b9",
  3845. "9d2fc501-3e12-4cfd-a8d5-83636b0abf79"
  3846. ],
  3847. "position": {
  3848. "small": false,
  3849. "medium": 7,
  3850. "large": 7
  3851. }
  3852. }
  3853. }
  3854. },
  3855. "appConfig": {
  3856. "version": "1.0.0",
  3857. "clientIds": {
  3858. "homepage": "nike:dotcom.browse.homepage:client:1.0",
  3859. "landingpage": "nike:dotcom.browse.landingpage:client:1.0"
  3860. },
  3861. "environment": {
  3862. "canonicalUrlBase": "https://www.nike.com",
  3863. "authTokenUrl": "https://adminops.prod.commerce.nikecloud.com/",
  3864. "feedApi": {
  3865. "vipAddress": "product_feed-threads-v2",
  3866. "path": "product_feed/threads/v2/",
  3867. "feedBase": "https://api.nike.com/",
  3868. "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
  3869. },
  3870. "productsApi": {
  3871. "vipAddress": "product_feed-rollup_threads-v2",
  3872. "path": "product_feed/rollup_threads/v2/",
  3873. "feedBase": "https://api.nike.com/",
  3874. "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
  3875. },
  3876. "productsRecommenderApi": {
  3877. "path": "recommend/products/landing_user_recs/web/",
  3878. "feedBase": "https://api.nike.com/",
  3879. "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
  3880. },
  3881. "topTrendingApi": {
  3882. "path": "recommend/products/top_trending/web/",
  3883. "feedBase": "https://api.nike.com/",
  3884. "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647"
  3885. },
  3886. "urlGeneratorApi": {
  3887. "path": "user_navigation/urlgenesis/v2",
  3888. "feedBase": "https://api.nike.com/",
  3889. "defaultChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647",
  3890. "vipAddress": "user_navigation-urlgenesis-v2",
  3891. "headers": {
  3892. "nike-api-caller-id": "nike:dotcom.browse.landingpage:client:1.0",
  3893. "Content-Type": "application/json"
  3894. }
  3895. },
  3896. "urlAnalyzerApi": {
  3897. "path": "user_navigation/url_analysis/v1",
  3898. "feedBase": "https://api.nike.com/",
  3899. "vipAddress": "user_navigation-url_analysis-v1",
  3900. "headers": {
  3901. "nike-api-caller-id": "nike:dotcom.browse.landingpage:client:1.0"
  3902. }
  3903. },
  3904. "rootElementId": "ciclp-app",
  3905. "segmentKey": "eh46CSMEgCao5Y3uW7Jh1bBTAA34vEfU",
  3906. "bannerFeedApi": {
  3907. "feedId": "1658aa56-c14f-41ae-89c4-0da0f44ebab4",
  3908. "vipAddress": "product_feed-threads-v2",
  3909. "path": "product_feed/threads/v2/",
  3910. "feedBase": "https://api.nike.com/",
  3911. "channelId": "8fac54d0-ed4f-4cf5-b829-e04d3d6008f8"
  3912. },
  3913. "searchPagesApi": {
  3914. "feedBase": "https://snkrs.prod.commerce.nikecloud.com/",
  3915. "vipAddress": "content-search_pages-v1",
  3916. "path": "content/search_pages/v1"
  3917. },
  3918. "uniteClientId": "HlHa2Cje3ctlaOqnxvgZXNaAs7T9nAuH"
  3919. },
  3920. "brands": {
  3921. "hurley": {
  3922. "collectionId": "906ceb8636b735d4d0884fcf210fcb57f541507d"
  3923. },
  3924. "jordan": {
  3925. "collectionId": "4b69f63c5e87c687f251bdea1f82121b32018ae5"
  3926. }
  3927. },
  3928. "server": {
  3929. "feedRequestHeaders": {
  3930. "nike-api-caller-id": "nike:dotcom.browse.landingpage:client:1.0"
  3931. },
  3932. "homePageFeedRequestHeaders": {
  3933. "nike-api-caller-id": "nike:dotcom.browse.homepage:client:1.0"
  3934. }
  3935. },
  3936. "ui": {
  3937. "productContainer": {
  3938. "mobileBreakpoint": 1024,
  3939. "fixedSlideWidthOnMobileInPx": 307
  3940. }
  3941. }
  3942. },
  3943. "router": {
  3944. "route": {
  3945. "name": "PAGE_VIEW",
  3946. "params": {
  3947. "hidden_param": ""
  3948. },
  3949. "path": "/cn",
  3950. "meta": {
  3951. "params": {
  3952. "PAGE_VIEW": {
  3953. "hidden_param": "url"
  3954. }
  3955. },
  3956. "id": 1
  3957. }
  3958. },
  3959. "previousRoute": null,
  3960. "transitionRoute": null,
  3961. "transitionError": null
  3962. }
  3963. }