policy.html 351 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486
  1. <style>
  2. [data-custom-class='body'],
  3. [data-custom-class='body'] * {
  4. background: transparent !important;
  5. }
  6. [data-custom-class='title'],
  7. [data-custom-class='title'] * {
  8. font-family: Arial !important;
  9. font-size: 26px !important;
  10. color: #000000 !important;
  11. }
  12. [data-custom-class='subtitle'],
  13. [data-custom-class='subtitle'] * {
  14. font-family: Arial !important;
  15. color: #595959 !important;
  16. font-size: 14px !important;
  17. }
  18. [data-custom-class='heading_1'],
  19. [data-custom-class='heading_1'] * {
  20. font-family: Arial !important;
  21. font-size: 19px !important;
  22. color: #000000 !important;
  23. }
  24. [data-custom-class='heading_2'],
  25. [data-custom-class='heading_2'] * {
  26. font-family: Arial !important;
  27. font-size: 17px !important;
  28. color: #000000 !important;
  29. }
  30. [data-custom-class='body_text'],
  31. [data-custom-class='body_text'] * {
  32. color: #595959 !important;
  33. font-size: 14px !important;
  34. font-family: Arial !important;
  35. }
  36. [data-custom-class='link'],
  37. [data-custom-class='link'] * {
  38. color: #3030F1 !important;
  39. font-size: 14px !important;
  40. font-family: Arial !important;
  41. word-break: break-word !important;
  42. }
  43. </style>
  44. <span
  45. style="display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNjBweCIKCSBoZWlnaHQ9IjYwcHgiIHZpZXdCb3g9IjAgMCAxNjAgNjAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2MCA2MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPiAKCS5zdDh7ZmlsbDojRjk0OTM2O30KPC9zdHlsZT4KCjxnIGlkPSLlm77lsYJfNyI+Cgk8Zz4KCQk8Zz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTIyLjUsMzQuOWwtMi4yLTEwLjVjLTAuNy0zLjQtMy43LTUuOS03LjItNS45Yy0zLjUsMC02LjUsMi40LTcuMiw1LjlMMy42LDM0LjljLTAuNSwyLjMsMS4zLDQuNCwzLjYsNC40CgkJCQljMS40LDAsMi42LTAuNywzLjItMS45bDEuMi0yLjNjMC42LTEuMSwyLjItMS4xLDIuOCwwbDEuMSwyLjJjMC42LDEuMiwxLjksMiwzLjMsMmgwLjFDMjEuMywzOS40LDIzLDM3LjIsMjIuNSwzNC45eiBNMTQuNSwzMC4yCgkJCQljLTEuMS0wLjUtMS4yLTItMi4zLTEuNmMtMC45LDAuMy0wLjQsMS4xLTEuMiwxLjJjLTIuMSwwLjItMy00LTEtNmMyLjEtMi4xLDYuNC0xLjUsNy4yLDIuN0MxNy41LDI4LjUsMTUuOSwzMC45LDE0LjUsMzAuMnoiLz4KCQk8L2c+CgkJPGc+CgkJCTxwYXRoIGNsYXNzPSJzdDgiIGQ9Ik0yNS40LDM3LjhjLTAuMywwLTAuNi0wLjItMC44LTAuNWMtMC4yLTAuMy0wLjQtMC43LTAuNS0xLjNjLTAuMS0wLjUtMC4yLTEuMi0wLjItMS44CgkJCQljMC0wLjctMC4xLTEuNC0wLjEtMi4xYzAtMC41LDAtMSwwLTEuNWMwLTAuNSwwLjEtMSwwLjEtMS40YzAuMS0wLjQsMC4yLTAuOCwwLjQtMS4xYzAuMi0wLjMsMC41LTAuNCwwLjktMC40CgkJCQljMC4zLDAsMC41LDAuMSwwLjcsMC4zYzAuMiwwLjIsMC40LDAuNCwwLjQsMC44YzAuMi0wLjMsMC41LTAuNSwwLjktMC42YzAuNC0wLjEsMC43LTAuMiwxLjEtMC4yYzAuMywwLDAuNiwwLjEsMSwwLjMKCQkJCWMwLjMsMC4yLDAuNiwwLjUsMC44LDAuOWMwLjIsMC40LDAuMywwLjgsMC4zLDEuM2MwLDAuNC0wLjEsMC44LTAuMywxLjJjLTAuMiwwLjQtMC41LDAuNi0wLjksMC42Yy0wLjIsMC0wLjMsMC0wLjQtMC4xCgkJCQljLTAuMS0wLjEtMC4yLTAuMS0wLjMtMC4yYy0wLjEtMC4xLTAuMi0wLjEtMC40LTAuMWMtMC40LDAtMC43LDAuMi0xLDAuNnMtMC41LDEtMC41LDEuN2MwLDAuNCwwLDAuOCwwLDEuMgoJCQkJYzAsMC40LTAuMSwwLjgtMC4xLDEuMmMtMC4xLDAuNC0wLjIsMC43LTAuNCwxQzI2LDM3LjcsMjUuOCwzNy44LDI1LjQsMzcuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTM2LDM3LjhjLTAuMywwLTAuNy0wLjEtMS4xLTAuM2MtMC40LTAuMi0wLjctMC41LTEtMC45Yy0wLjMtMC40LTAuNS0wLjgtMC42LTEuNGMtMC4xLTAuNC0wLjItMC44LTAuMi0xLjMKCQkJCWMwLTAuNS0wLjEtMS4xLTAuMS0xLjdjMC0wLjYsMC0xLjIsMC0xLjdjLTAuNCwwLTAuOC0wLjEtMS4xLTAuMWMtMC40LTAuMS0wLjYtMC4yLTAuOS0wLjVjLTAuMi0wLjItMC4zLTAuNi0wLjMtMQoJCQkJYzAtMC42LDAuMS0xLDAuMy0xLjJjMC4yLTAuMywwLjUtMC41LDAuOC0wLjZjMC40LTAuMSwwLjctMC4xLDEuMi0wLjJjMC0wLjQsMC0wLjksMC4xLTEuM2MwLTAuNSwwLjEtMC45LDAuMi0xLjMKCQkJCWMwLjEtMC40LDAuMy0wLjcsMC41LTFjMC4yLTAuMiwwLjUtMC40LDAuOC0wLjRjMC40LDAsMC43LDAuMiwwLjksMC42YzAuMiwwLjQsMC4zLDAuOSwwLjQsMS41YzAsMC42LDAuMSwxLjIsMC4xLDEuOQoJCQkJYzAuNSwwLDEsMCwxLjQsMC4xYzAuNCwwLjEsMC43LDAuMiwwLjksMC41czAuMywwLjYsMC4zLDEuMWMwLDAuNS0wLjEsMC45LTAuNCwxLjJjLTAuMywwLjMtMC42LDAuNC0xLDAuNXMtMC45LDAuMS0xLjMsMC4yCgkJCQljMCwwLjMsMCwwLjUsMCwwLjhjMCwwLjMsMCwwLjYsMCwwLjljMCwwLjgsMCwxLjQsMC4xLDEuN2MwLjEsMC4zLDAuMSwwLjQsMC4yLDAuNWMwLjEsMC4xLDAuMiwwLjEsMC40LDAuMQoJCQkJYzAuMiwwLDAuNCwwLjEsMC42LDAuMWMwLjIsMC4xLDAuNCwwLjIsMC41LDAuNWMwLjEsMC4zLDAuMiwwLjYsMC4yLDEuMWMwLDAuNS0wLjIsMC45LTAuNSwxLjFDMzcsMzcuNywzNi41LDM3LjgsMzYsMzcuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTQ1LjgsMzcuOGMtMC4zLDAtMC42LTAuMi0wLjgtMC41Yy0wLjItMC40LTAuNC0wLjgtMC42LTEuNGMtMC4yLTAuNi0wLjMtMS4yLTAuNC0xLjkKCQkJCWMtMC4xLTAuNy0wLjItMS40LTAuMi0yLjFjMC0wLjctMC4xLTEuMy0wLjEtMS45YzAtMC43LDAtMS41LDAuMS0yLjNjMC4xLTAuOCwwLjItMS42LDAuNC0yLjNjMC4yLTAuNywwLjUtMS4zLDAuOC0xLjgKCQkJCWMwLjMtMC41LDAuOC0wLjcsMS4zLTAuN2MwLjQsMCwwLjcsMC4yLDEsMC41YzAuMywwLjMsMC41LDAuOCwwLjgsMS40YzAuMiwwLjYsMC40LDEuMywwLjcsMi4xYzAuMiwwLjgsMC40LDEuNiwwLjcsMi41CgkJCQljMC0xLjIsMC0yLjMsMC4xLTMuM2MwLjEtMSwwLjMtMS44LDAuNi0yLjRjMC4zLTAuNiwwLjctMC45LDEuMy0wLjljMC41LDAsMC44LDAuMiwxLjEsMC43YzAuMywwLjUsMC41LDEsMC42LDEuOAoJCQkJYzAuMSwwLjcsMC4yLDEuNSwwLjMsMi4zYzAuMSwwLjgsMC4xLDEuNiwwLjEsMi4zYzAsMC42LDAsMS4yLTAuMSwxLjljLTAuMSwwLjctMC4yLDEuNC0wLjMsMi4xYy0wLjEsMC43LTAuMywxLjMtMC42LDEuOQoJCQkJYy0wLjIsMC42LTAuNSwxLTAuOSwxLjRjLTAuMywwLjQtMC44LDAuNS0xLjIsMC41Yy0wLjQsMC0wLjgtMC4yLTEuMS0wLjZjLTAuMy0wLjQtMC42LTAuOS0wLjgtMS41Yy0wLjItMC42LTAuNC0xLjQtMC42LTIuMQoJCQkJYy0wLjItMC44LTAuNC0xLjYtMC42LTIuM2MwLDEsMCwxLjksMCwyLjdzLTAuMSwxLjUtMC4yLDIuMWMtMC4xLDAuNi0wLjMsMS0wLjUsMS4zQzQ2LjYsMzcuNyw0Ni4yLDM3LjgsNDUuOCwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNNTcuNywzNy44Yy0wLjcsMC0xLjQtMC4zLTEuOS0wLjhjLTAuNS0wLjUtMS0xLjItMS4zLTIuMmMtMC4zLTAuOS0wLjQtMi0wLjQtMy4yYzAtMS4yLDAuMS0yLjEsMC40LTIuOAoJCQkJYzAuMy0wLjcsMC42LTEsMS4xLTFjMC4zLDAsMC42LDAuMSwwLjgsMC4zYzAuMiwwLjIsMC4zLDAuNCwwLjQsMC43YzAuMSwwLjMsMC4xLDAuNiwwLjEsMC45YzAsMC40LDAsMC44LTAuMSwxLjIKCQkJCWMwLDAuNC0wLjEsMC44LTAuMSwxLjNjMCwwLjcsMC4xLDEuMiwwLjMsMS41YzAuMiwwLjMsMC40LDAuNSwwLjYsMC41YzAuMiwwLDAuNS0wLjIsMC42LTAuNWMwLjItMC4zLDAuMy0wLjgsMC4zLTEuNQoJCQkJYzAtMC41LDAtMC45LDAtMS4zYzAtMC40LDAtMC44LDAtMS4zYzAtMC41LDAuMS0wLjksMC4zLTEuM2MwLjItMC40LDAuNS0wLjYsMS0wLjZjMC41LDAsMC45LDAuMywxLjEsMWMwLjMsMC43LDAuNCwxLjYsMC40LDIuOAoJCQkJYzAsMS4yLTAuMSwyLjMtMC40LDMuMmMtMC4zLDAuOS0wLjcsMS42LTEuMiwyLjJDNTkuMiwzNy42LDU4LjUsMzcuOCw1Ny43LDM3Ljh6Ii8+CgkJCTxwYXRoIGNsYXNzPSJzdDgiIGQ9Ik02NywzNy44Yy0wLjUsMC0wLjgtMC4yLTEtMC43Yy0wLjItMC41LTAuMi0xLjEtMC4yLTJjMC0wLjcsMC0xLjMsMC0xLjhjMC0wLjUtMC4yLTAuNy0wLjQtMC43CgkJCQljLTAuMiwwLTAuNCwwLjEtMC40LDAuM2MtMC4xLDAuMi0wLjEsMC41LTAuMSwwLjljMCwwLjQsMCwwLjgsMCwxLjNjMCwwLjUsMCwwLjktMC4xLDEuM2MwLDAuNC0wLjEsMC43LTAuMywxCgkJCQljLTAuMiwwLjItMC40LDAuNC0wLjgsMC40Yy0wLjMsMC0wLjYtMC4yLTAuOC0wLjVjLTAuMi0wLjQtMC40LTAuOC0wLjUtMS40Yy0wLjEtMC42LTAuMi0xLjItMC4yLTEuOWMwLTAuNy0wLjEtMS4zLTAuMS0yCgkJCQljMC0xLjIsMC4xLTIuMiwwLjItM2MwLjEtMC44LDAuNS0xLjMsMS0xLjVjMC4zLTAuMSwwLjYtMC4xLDAuOCwwYzAuMywwLjEsMC40LDAuMywwLjUsMC42YzAuMS0wLjEsMC4yLTAuMSwwLjQtMC4yCgkJCQljMC4xLTAuMSwwLjQtMC4xLDAuNy0wLjFjMC4zLDAsMC42LDAuMSwwLjksMC4zYzAuMywwLjIsMC41LDAuNSwwLjYsMC45YzAuMi0wLjQsMC41LTAuNywwLjgtMC45YzAuMy0wLjIsMC42LTAuMywxLjEtMC4zCgkJCQljMC42LDAsMS4yLDAuMywxLjYsMC44YzAuNCwwLjUsMC44LDEuMiwxLDIuMWMwLjIsMC45LDAuNCwxLjksMC40LDIuOWMwLDAuNywwLDEuNC0wLjEsMmMtMC4xLDAuNi0wLjIsMS4xLTAuNSwxLjUKCQkJCWMtMC4yLDAuNC0wLjUsMC42LTAuOSwwLjZjLTAuNCwwLTAuNi0wLjEtMC44LTAuNGMtMC4yLTAuMi0wLjMtMC42LTAuMy0xYzAtMC40LTAuMS0wLjktMC4xLTEuM2MwLTAuNSwwLTAuOSwwLTEuMwoJCQkJYzAtMC40LTAuMS0wLjctMC4xLTAuOWMtMC4xLTAuMi0wLjItMC4zLTAuNC0wLjNjLTAuMiwwLTAuMywwLjEtMC4zLDAuM2MtMC4xLDAuMi0wLjEsMC41LTAuMSwwLjljMCwwLjQsMCwwLjgsMCwxLjMKCQkJCWMwLDAuOC0wLjEsMS41LTAuMywyQzY3LjgsMzcuNiw2Ny41LDM3LjgsNjcsMzcuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTc2LjUsMzcuOGMtMC43LDAtMS4zLTAuMS0xLjgtMC40Yy0wLjUtMC4zLTAuOS0wLjctMS4yLTEuMWMtMC4zLTAuNS0wLjYtMS0wLjctMS41CgkJCQljLTAuMi0wLjYtMC4zLTEuMS0wLjQtMS42Yy0wLjEtMC41LTAuMS0xLTAuMS0xLjVjMC0wLjQsMC0wLjgsMC0xYzAtMC43LDAtMS4zLDAuMS0yYzAtMC43LDAuMS0xLjQsMC4yLTIuMXMwLjMtMS4zLDAuNC0xLjgKCQkJCWMwLjItMC41LDAuNC0xLDAuNy0xLjNjMC4zLTAuMywwLjYtMC41LDAuOS0wLjVjMC4zLDAsMC42LDAuMSwwLjksMC40YzAuMywwLjMsMC40LDAuOCwwLjQsMS40YzAsMC42LTAuMSwxLjItMC4yLDEuOAoJCQkJYy0wLjEsMC42LTAuMiwxLjItMC4zLDEuOGMwLjItMC4yLDAuNS0wLjMsMC43LTAuNGMwLjMtMC4xLDAuNS0wLjEsMC44LTAuMWMwLjUsMCwxLDAuMiwxLjUsMC41YzAuNSwwLjMsMC45LDAuOSwxLjIsMS42CgkJCQljMC4zLDAuNywwLjUsMS42LDAuNSwyLjdjMCwwLjktMC4xLDEuNy0wLjQsMi41Yy0wLjMsMC44LTAuNywxLjQtMS4yLDEuOUM3Ny45LDM3LjYsNzcuMiwzNy44LDc2LjUsMzcuOHogTTc2LjQsMzQuNQoJCQkJYzAuMywwLDAuNS0wLjEsMC43LTAuNGMwLjItMC4zLDAuMy0wLjYsMC4zLTFjMC0wLjQtMC4xLTAuNy0wLjMtMWMtMC4yLTAuMy0wLjQtMC40LTAuNy0wLjRzLTAuNSwwLjEtMC43LDAuNAoJCQkJYy0wLjIsMC4zLTAuMywwLjYtMC4zLDFjMCwwLjQsMC4xLDAuNywwLjMsMUM3NS45LDM0LjMsNzYuMiwzNC41LDc2LjQsMzQuNXoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTg0LjMsMzcuOGMtMC43LDAtMS40LTAuMi0yLTAuNmMtMC42LTAuNC0xLTEtMS4zLTEuN3MtMC41LTEuNi0wLjUtMi41YzAtMC45LDAuMi0xLjgsMC41LTIuNQoJCQkJYzAuMy0wLjgsMC43LTEuNCwxLjMtMS45YzAuNi0wLjUsMS4yLTAuNywxLjktMC43YzAuNywwLDEuMiwwLjIsMS43LDAuNmMwLjUsMC40LDAuOCwwLjksMS4xLDEuNWMwLjMsMC42LDAuNCwxLjIsMC40LDEuOQoJCQkJYzAsMC43LTAuMSwxLjItMC4zLDEuNmMtMC4yLDAuNC0wLjUsMC43LTAuOCwxYy0wLjMsMC4yLTAuNywwLjQtMS4xLDAuNGMtMC40LDAuMS0wLjcsMC4xLTEuMSwwYy0wLjMsMC0wLjYtMC4xLTAuOS0wLjIKCQkJCWMwLjIsMC40LDAuNCwwLjcsMC43LDAuOGMwLjMsMC4xLDAuNiwwLjIsMC45LDAuMmMwLjMsMCwwLjYtMC4xLDAuOC0wLjFjMC4zLTAuMSwwLjYtMC4xLDAuOCwwLjFzMC4zLDAuNCwwLjMsMC43CgkJCQljMCwwLjMtMC4xLDAuNS0wLjIsMC44Yy0wLjEsMC4zLTAuNCwwLjUtMC43LDAuNkM4NS40LDM3LjcsODQuOSwzNy44LDg0LjMsMzcuOHogTTgzLjMsMzEuOWMwLjEsMC4yLDAuMiwwLjQsMC40LDAuNQoJCQkJYzAuMiwwLjEsMC40LDAuMSwwLjYsMC4xYzAuMiwwLDAuNC0wLjEsMC41LTAuMmMwLjEtMC4xLDAuMi0wLjMsMC4yLTAuNWMwLTAuMi0wLjEtMC41LTAuMi0wLjZjLTAuMS0wLjItMC4zLTAuMy0wLjYtMC4zCgkJCQljLTAuMywwLTAuNSwwLjEtMC42LDAuNEM4My4zLDMxLjQsODMuMywzMS43LDgzLjMsMzEuOXoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTg5LjYsMzcuOGMtMC4zLDAtMC42LTAuMi0wLjgtMC41Yy0wLjItMC4zLTAuNC0wLjctMC41LTEuM2MtMC4xLTAuNS0wLjItMS4yLTAuMi0xLjgKCQkJCWMwLTAuNy0wLjEtMS40LTAuMS0yLjFjMC0wLjUsMC0xLDAtMS41YzAtMC41LDAuMS0xLDAuMS0xLjRjMC4xLTAuNCwwLjItMC44LDAuNC0xLjFjMC4yLTAuMywwLjUtMC40LDAuOS0wLjQKCQkJCWMwLjMsMCwwLjUsMC4xLDAuNywwLjNjMC4yLDAuMiwwLjQsMC40LDAuNCwwLjhjMC4yLTAuMywwLjUtMC41LDAuOS0wLjZjMC40LTAuMSwwLjctMC4yLDEuMS0wLjJjMC4zLDAsMC42LDAuMSwxLDAuMwoJCQkJYzAuMywwLjIsMC42LDAuNSwwLjgsMC45YzAuMiwwLjQsMC4zLDAuOCwwLjMsMS4zYzAsMC40LTAuMSwwLjgtMC4zLDEuMmMtMC4yLDAuNC0wLjUsMC42LTAuOSwwLjZjLTAuMiwwLTAuMywwLTAuNC0wLjEKCQkJCWMtMC4xLTAuMS0wLjItMC4xLTAuMy0wLjJjLTAuMS0wLjEtMC4yLTAuMS0wLjQtMC4xYy0wLjQsMC0wLjcsMC4yLTEsMC42cy0wLjUsMS0wLjUsMS43YzAsMC40LDAsMC44LDAsMS4ycy0wLjEsMC44LTAuMSwxLjIKCQkJCWMtMC4xLDAuNC0wLjIsMC43LTAuNCwxQzkwLjIsMzcuNyw4OS45LDM3LjgsODkuNiwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTA1LDM3LjhjLTAuOSwwLTEuOC0wLjMtMi42LTAuOGMtMC44LTAuNS0xLjQtMS40LTEuOC0yLjVjLTAuNS0xLjEtMC43LTIuNS0wLjctNC4xYzAtMSwwLjEtMS45LDAuNC0yLjgKCQkJCWMwLjItMC45LDAuNi0xLjcsMS0yLjRjMC40LTAuNywwLjktMS4yLDEuNS0xLjZjMC42LTAuNCwxLjItMC42LDEuOS0wLjZjMC45LDAsMS43LDAuMiwyLjMsMC43YzAuNywwLjUsMS4yLDEuMSwxLjYsMS45CgkJCQljMC40LDAuOCwwLjYsMS43LDAuNiwyLjdjMCwwLjQtMC4xLDAuNy0wLjIsMS4xYy0wLjEsMC4zLTAuMywwLjYtMC41LDAuOWMtMC4yLDAuMi0wLjUsMC4zLTAuOCwwLjNjLTAuMywwLTAuNi0wLjEtMC44LTAuMgoJCQkJYy0wLjItMC4xLTAuMy0wLjMtMC41LTAuNWMtMC4xLTAuMi0wLjMtMC40LTAuNC0wLjZjLTAuMS0wLjItMC4zLTAuNC0wLjUtMC41Yy0wLjItMC4xLTAuNC0wLjItMC44LTAuMmMtMC4zLDAtMC42LDAuMS0wLjgsMC4zCgkJCQljLTAuMywwLjItMC41LDAuNS0wLjYsMC45cy0wLjIsMC44LTAuMiwxLjNjMCwwLjcsMC4xLDEuNCwwLjQsMS45YzAuMywwLjYsMC43LDAuOCwxLjIsMC44YzAuNCwwLDAuNy0wLjEsMC45LTAuMwoJCQkJczAuNC0wLjQsMC42LTAuNmMwLjItMC4yLDAuMy0wLjQsMC41LTAuNmMwLjItMC4yLDAuNC0wLjMsMC44LTAuM2MwLjQsMCwwLjgsMC4yLDEsMC42YzAuMiwwLjQsMC4zLDAuOSwwLjMsMS41CgkJCQljMCwwLjYtMC4yLDEuMi0wLjYsMS43Yy0wLjMsMC42LTAuOCwxLTEuMywxLjNDMTA2LjQsMzcuNiwxMDUuOCwzNy44LDEwNSwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTEzLjEsMzcuOGMtMC43LDAtMS40LTAuMi0xLjktMC42Yy0wLjYtMC40LTEtMS4xLTEuMy0xLjhjLTAuMy0wLjgtMC41LTEuNi0wLjUtMi42YzAtMSwwLjEtMS44LDAuNS0yLjYKCQkJCWMwLjMtMC43LDAuOC0xLjMsMS4zLTEuOHMxLjItMC43LDEuOS0wLjdjMC43LDAsMS4zLDAuMiwxLjksMC42YzAuNiwwLjQsMSwxLDEuMywxLjhjMC4zLDAuNywwLjUsMS42LDAuNSwyLjYKCQkJCWMwLDAuOS0wLjEsMS44LTAuNSwyLjVjLTAuMywwLjgtMC44LDEuNC0xLjMsMS44QzExNC41LDM3LjYsMTEzLjgsMzcuOCwxMTMuMSwzNy44eiBNMTEzLjEsMzQuOGMwLjMsMCwwLjUtMC4xLDAuNy0wLjQKCQkJCWMwLjItMC4zLDAuMy0wLjYsMC4zLTFjMC0wLjQtMC4xLTAuNy0wLjMtMWMtMC4yLTAuMy0wLjQtMC40LTAuNy0wLjRzLTAuNSwwLjEtMC43LDAuNGMtMC4yLDAuMy0wLjMsMC42LTAuMywxCgkJCQljMCwwLjQsMC4xLDAuNywwLjMsMUMxMTIuNiwzNC42LDExMi44LDM0LjgsMTEzLjEsMzQuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTExOS4zLDM3LjhjLTAuNSwwLTAuOS0wLjMtMS4xLTAuOGMtMC4yLTAuNS0wLjQtMS40LTAuNS0yLjVjLTAuMS0xLjEtMC4xLTIuNS0wLjEtNC4xYzAtMS4xLDAtMi4xLDAtMwoJCQkJYzAtMC45LDAuMS0xLjcsMC4yLTIuM2MwLjEtMC43LDAuMy0xLjIsMC41LTEuNWMwLjItMC40LDAuNi0wLjUsMS0wLjVzMC44LDAuMiwxLDAuNWMwLjIsMC40LDAuNCwwLjksMC41LDEuNQoJCQkJYzAuMSwwLjcsMC4yLDEuNCwwLjIsMi4zYzAsMC45LDAsMS45LDAsM2MwLDIuNS0wLjEsNC4zLTAuNCw1LjZDMTIwLjUsMzcuMiwxMjAsMzcuOCwxMTkuMywzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTI1LjIsMzcuOGMtMC43LDAtMS40LTAuMi0xLjktMC42Yy0wLjYtMC40LTEtMS4xLTEuMy0xLjhjLTAuMy0wLjgtMC41LTEuNi0wLjUtMi42YzAtMSwwLjEtMS44LDAuNS0yLjYKCQkJCXMwLjgtMS4zLDEuMy0xLjhzMS4yLTAuNywxLjktMC43YzAuNywwLDEuMywwLjIsMS45LDAuNmMwLjYsMC40LDEsMSwxLjMsMS44YzAuMywwLjcsMC41LDEuNiwwLjUsMi42YzAsMC45LTAuMSwxLjgtMC41LDIuNQoJCQkJYy0wLjMsMC44LTAuOCwxLjQtMS4zLDEuOEMxMjYuNiwzNy42LDEyNiwzNy44LDEyNS4yLDM3Ljh6IE0xMjUuMywzNC44YzAuMywwLDAuNS0wLjEsMC43LTAuNGMwLjItMC4zLDAuMy0wLjYsMC4zLTEKCQkJCWMwLTAuNC0wLjEtMC43LTAuMy0xYy0wLjItMC4zLTAuNC0wLjQtMC43LTAuNHMtMC41LDAuMS0wLjcsMC40Yy0wLjIsMC4zLTAuMywwLjYtMC4zLDFjMCwwLjQsMC4xLDAuNywwLjMsMQoJCQkJQzEyNC44LDM0LjYsMTI1LDM0LjgsMTI1LjMsMzQuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTEzMS4yLDM3LjhjLTAuMywwLTAuNi0wLjItMC44LTAuNWMtMC4yLTAuMy0wLjQtMC43LTAuNS0xLjNjLTAuMS0wLjUtMC4yLTEuMi0wLjItMS44CgkJCQljMC0wLjctMC4xLTEuNC0wLjEtMi4xYzAtMC41LDAtMSwwLTEuNWMwLTAuNSwwLjEtMSwwLjEtMS40YzAuMS0wLjQsMC4yLTAuOCwwLjQtMS4xYzAuMi0wLjMsMC41LTAuNCwwLjktMC40CgkJCQljMC4zLDAsMC41LDAuMSwwLjcsMC4zYzAuMiwwLjIsMC40LDAuNCwwLjQsMC44YzAuMi0wLjMsMC41LTAuNSwwLjktMC42YzAuNC0wLjEsMC43LTAuMiwxLjEtMC4yYzAuMywwLDAuNiwwLjEsMSwwLjMKCQkJCWMwLjMsMC4yLDAuNiwwLjUsMC44LDAuOWMwLjIsMC40LDAuMywwLjgsMC4zLDEuM2MwLDAuNC0wLjEsMC44LTAuMywxLjJjLTAuMiwwLjQtMC41LDAuNi0wLjksMC42Yy0wLjIsMC0wLjMsMC0wLjQtMC4xCgkJCQljLTAuMS0wLjEtMC4yLTAuMS0wLjMtMC4yYy0wLjEtMC4xLTAuMi0wLjEtMC40LTAuMWMtMC40LDAtMC43LDAuMi0xLDAuNmMtMC4zLDAuNC0wLjUsMS0wLjUsMS43YzAsMC40LDAsMC44LDAsMS4yCgkJCQlzLTAuMSwwLjgtMC4xLDEuMmMtMC4xLDAuNC0wLjIsMC43LTAuNCwxQzEzMS44LDM3LjcsMTMxLjUsMzcuOCwxMzEuMiwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTM4LjQsMjcuNWMtMC41LDAtMC45LTAuMy0xLjItMC44Yy0wLjMtMC41LTAuNS0xLjEtMC41LTEuOGMwLTAuNSwwLjEtMC45LDAuMi0xLjMKCQkJCWMwLjItMC40LDAuNC0wLjcsMC42LTAuOWMwLjMtMC4yLDAuNi0wLjQsMC45LTAuNGMwLjMsMCwwLjYsMC4xLDAuOSwwLjRjMC4zLDAuMiwwLjUsMC41LDAuNiwwLjljMC4yLDAuNCwwLjIsMC44LDAuMiwxLjMKCQkJCWMwLDAuNS0wLjEsMC45LTAuMiwxLjNjLTAuMiwwLjQtMC40LDAuNy0wLjYsMC45QzEzOSwyNy40LDEzOC43LDI3LjUsMTM4LjQsMjcuNXogTTEzOC40LDM3LjhjLTAuNCwwLTAuNy0wLjItMC45LTAuNQoJCQkJYy0wLjItMC4zLTAuMy0wLjgtMC40LTEuNWMtMC4xLTAuNy0wLjEtMS41LTAuMS0yLjZjMC0xLjEsMC0xLjksMC4xLTIuNmMwLjEtMC43LDAuMi0xLjIsMC40LTEuNWMwLjItMC4zLDAuNS0wLjUsMC45LTAuNQoJCQkJYzAuNCwwLDAuNywwLjIsMC45LDAuNWMwLjIsMC4zLDAuMywwLjgsMC40LDEuNWMwLjEsMC43LDAuMSwxLjUsMC4xLDIuNmMwLDEuMSwwLDEuOS0wLjEsMi42Yy0wLjEsMC43LTAuMiwxLjItMC40LDEuNQoJCQkJQzEzOS4xLDM3LjcsMTM4LjgsMzcuOCwxMzguNCwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTQ2LjYsMzcuOGMtMC40LDAtMC43LTAuMi0wLjgtMC41Yy0wLjItMC4zLTAuMy0wLjctMC4zLTEuMmMwLTAuNSwwLTEsMC0xLjVjMC0wLjctMC4xLTEuNC0wLjItMS44CgkJCQljLTAuMS0wLjUtMC40LTAuNy0wLjgtMC43Yy0wLjMsMC0wLjYsMC4yLTAuNywwLjdjLTAuMiwwLjUtMC4yLDEuMS0wLjIsMS44YzAsMC41LDAsMSwwLDEuNWMwLDAuNS0wLjEsMC45LTAuMywxLjIKCQkJCWMtMC4yLDAuMy0wLjQsMC41LTAuOSwwLjVjLTAuMywwLTAuNi0wLjItMC44LTAuNWMtMC4yLTAuMy0wLjQtMC43LTAuNS0xLjNjLTAuMS0wLjUtMC4yLTEuMS0wLjItMS43YzAtMC42LTAuMS0xLjItMC4xLTEuOAoJCQkJczAtMS4xLDAuMS0xLjdjMC0wLjYsMC4xLTEuMSwwLjItMS43YzAuMS0wLjUsMC4zLTAuOSwwLjUtMS4yYzAuMi0wLjMsMC41LTAuNSwwLjgtMC41YzAuNiwwLDAuOSwwLjQsMS4xLDEuMQoJCQkJYzAuMS0wLjIsMC4zLTAuNCwwLjYtMC41YzAuMy0wLjIsMC42LTAuMiwwLjktMC4yYzAuOCwwLDEuNCwwLjMsMS45LDAuOGMwLjUsMC42LDAuOCwxLjMsMS4xLDIuM3MwLjMsMi4xLDAuMywzLjQKCQkJCWMwLDAuNywwLDEuMi0wLjEsMS44Yy0wLjEsMC41LTAuMiwxLTAuNCwxLjNDMTQ3LjIsMzcuNywxNDcsMzcuOCwxNDYuNiwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTUxLjcsNDEuNWMtMC42LDAtMS0wLjItMS40LTAuNWMtMC40LTAuMy0wLjYtMC43LTAuNi0xLjJjMC0wLjUsMC4yLTEsMC41LTEuM2MwLjMtMC4zLDAuNy0wLjQsMS4yLTAuMwoJCQkJYzAuNSwwLjEsMSwwLjEsMS41LTAuMWMwLjQtMC4yLDAuNy0wLjUsMC44LTAuOWMtMC4yLDAuMS0wLjQsMC4yLTAuNywwLjNjLTAuMywwLjEtMC42LDAuMS0wLjksMC4xYy0wLjcsMC0xLjItMC4xLTEuNy0wLjQKCQkJCWMtMC41LTAuMy0wLjgtMC43LTEuMS0xLjFjLTAuMy0wLjUtMC41LTAuOS0wLjYtMS41Yy0wLjEtMC41LTAuMi0xLTAuMi0xLjRjMC0xLjIsMC4yLTIuMSwwLjUtMi45YzAuNC0wLjgsMC44LTEuNCwxLjMtMS44CgkJCQljMC41LTAuNCwxLjEtMC42LDEuNy0wLjZjMC4yLDAsMC40LDAsMC43LDAuMWMwLjMsMCwwLjUsMC4xLDAuNywwLjJjMC4xLTAuNCwwLjItMC42LDAuNC0wLjljMC4yLTAuMiwwLjUtMC4zLDAuOS0wLjMKCQkJCWMwLjQsMCwwLjcsMC4yLDAuOSwwLjVjMC4yLDAuMywwLjQsMC44LDAuNiwxLjRjMC4xLDAuNiwwLjIsMS4yLDAuMywyYzAuMSwwLjcsMC4xLDEuNSwwLjEsMi4yYzAsMC44LDAsMS41LTAuMSwyLjEKCQkJCWMtMC4xLDEuMy0wLjQsMi41LTAuOCwzLjRjLTAuNCwxLTAuOSwxLjctMS42LDIuMkMxNTMuNCw0MS4yLDE1Mi42LDQxLjUsMTUxLjcsNDEuNXogTTE1Mi4zLDM0LjRjMC4zLDAsMC42LTAuMiwwLjgtMC41CgkJCQljMC4yLTAuMywwLjMtMC43LDAuMy0xLjFjMC0wLjQtMC4xLTAuOC0wLjMtMS4xYy0wLjItMC4zLTAuNS0wLjUtMC44LTAuNWMtMC4zLDAtMC42LDAuMi0wLjgsMC41Yy0wLjIsMC4zLTAuMywwLjctMC4zLDEuMQoJCQkJYzAsMC40LDAuMSwwLjgsMC4zLDEuMUMxNTEuNywzNC4zLDE1MiwzNC40LDE1Mi4zLDM0LjR6Ii8+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPg==) center no-repeat;"></span>
  46. <div data-custom-class="body">
  47. <div><strong><span style="font-size: 26px;"><span data-custom-class="title">
  48. <bdt class="block-component"></bdt>
  49. <bdt class="question">
  50. <h1>PRIVACY POLICY</h1>
  51. </bdt>
  52. <bdt class="statement-end-if-in-editor"></bdt>
  53. </span></span></strong></div>
  54. <div><span style="color: rgb(127, 127, 127);"><strong><span style="font-size: 15px;"><span
  55. data-custom-class="subtitle">Last updated <bdt class="question">February 17, 2025</bdt>
  56. </span></span></strong></span></div>
  57. <div><br></div>
  58. <div><br></div>
  59. <div><br></div>
  60. <div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
  61. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">This Privacy Notice for
  62. <bdt class="question">JCCY Inc.<bdt class="block-component"></bdt>
  63. </bdt> (<bdt class="block-component"></bdt>"<strong>we</strong>," "<strong>us</strong>," or
  64. "<strong>our</strong>"<bdt class="statement-end-if-in-editor"></bdt>
  65. </span><span data-custom-class="body_text">), describes how and why we might access, collect, store, use, and/or
  66. share (
  67. <bdt class="block-component"></bdt>"<strong>process</strong>"<bdt class="statement-end-if-in-editor"></bdt>)
  68. your personal information when you use our services (<bdt class="block-component"></bdt>
  69. "<strong>Services</strong>"<bdt class="statement-end-if-in-editor"></bdt>), including when
  70. you:
  71. </span></span></span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  72. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  73. <bdt class="block-component"></bdt>
  74. </span></span></span></span></span></div>
  75. <ul>
  76. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  77. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  78. data-custom-class="body_text">Visit our website<bdt class="block-component"></bdt> at <span
  79. style="color: rgb(0, 58, 250);">
  80. <bdt class="question"><a href="https://art.pcoloring.com" target="_blank"
  81. data-custom-class="link">https://art.pcoloring.com</a></bdt>
  82. </span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  83. data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  84. <bdt class="statement-end-if-in-editor">, or any website of ours that links to this Privacy Notice
  85. </bdt>
  86. </span></span></span></span></span></span></span></span></li>
  87. </ul>
  88. <div>
  89. <bdt class="block-component"><span style="font-size: 15px;"><span style="font-size: 15px;"><span
  90. style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
  91. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  92. <bdt class="block-component"></bdt>
  93. </bdt></span></span></span></span></span></span></span></span></li>
  94. </ul>
  95. <div style="line-height: 1.5;">
  96. <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
  97. </div>
  98. <ul>
  99. <li data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size: 15px;">Use <bdt
  100. class="question">Art Number Coloring</bdt>. <bdt class="question">A variety of free coloring pages for both
  101. adults and kids that can be printed or colored online</bdt></span>
  102. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt>
  103. </li>
  104. </ul>
  105. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  106. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  107. <bdt class="block-component"></bdt>
  108. </span></span></span></span></span></div>
  109. <ul>
  110. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  111. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  112. data-custom-class="body_text">Engage with us in other related ways, including any sales, marketing, or
  113. events<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  114. data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  115. <bdt class="statement-end-if-in-editor"></bdt>
  116. </span></span></span></span></span></span></span></span></li>
  117. </ul>
  118. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  119. data-custom-class="body_text"><strong>Questions or concerns? </strong>Reading this Privacy Notice will help
  120. you understand your privacy rights and choices. We are responsible for making decisions about how your
  121. personal information is processed. If you do not agree with our policies and practices, please do not use
  122. our Services.<bdt class="block-component"></bdt> If you still have any questions or concerns, please contact
  123. us at <bdt class="question">guoziyun@jccy-tech.com</bdt>.</span></span></span></div>
  124. <div style="line-height: 1.5;"><br></div>
  125. <div style="line-height: 1.5;"><br></div>
  126. <div style="line-height: 1.5;"><strong><span style="font-size: 15px;"><span data-custom-class="heading_1">
  127. <h2>SUMMARY OF KEY POINTS</h2>
  128. </span></span></strong></div>
  129. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong><em>This
  130. summary provides key points from our Privacy Notice, but you can find out more details about any of these
  131. topics by clicking the link following each key point or by using our </em></strong></span></span><a
  132. data-custom-class="link" href="#toc"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  133. data-custom-class="body_text"><strong><em>table of contents</em></strong></span></span></a><span
  134. style="font-size: 15px;"><span data-custom-class="body_text"><strong><em> below to find the section you are
  135. looking for.</em></strong></span></span></div>
  136. <div style="line-height: 1.5;"><br></div>
  137. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What
  138. personal information do we process?</strong> When you visit, use, or navigate our Services, we may process
  139. personal information depending on how you interact with us and the Services, the choices you make, and the
  140. products and features you use. Learn more about </span></span><a data-custom-class="link"
  141. href="#personalinfo"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  142. data-custom-class="body_text">personal information you disclose to us</span></span></a><span
  143. data-custom-class="body_text">.</span></div>
  144. <div style="line-height: 1.5;"><br></div>
  145. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
  146. process any sensitive personal information? </strong>Some of the information may be considered <bdt
  147. class="block-component"></bdt>"special" or "sensitive"<bdt class="statement-end-if-in-editor"></bdt> in
  148. certain jurisdictions, for example your racial or ethnic origins, sexual orientation, and religious beliefs.
  149. <bdt class="block-component"></bdt>We do not process sensitive personal information.<bdt class="else-block">
  150. </bdt>
  151. </span></span></div>
  152. <div style="line-height: 1.5;"><br></div>
  153. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
  154. collect any information from third parties?</strong>
  155. <bdt class="block-component"></bdt>We do not collect any information from third parties.<bdt
  156. class="else-block"></bdt>
  157. </span></span></div>
  158. <div style="line-height: 1.5;"><br></div>
  159. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do we
  160. process your information?</strong> We process your information to provide, improve, and administer our
  161. Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process
  162. your information for other purposes with your consent. We process your information only when we have a valid
  163. legal reason to do so. Learn more about </span></span><a data-custom-class="link" href="#infouse"><span
  164. style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">how we process your
  165. information</span></span></a><span data-custom-class="body_text">.</span></div>
  166. <div style="line-height: 1.5;"><br></div>
  167. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>In what
  168. situations and with which <bdt class="block-component"></bdt>parties do we share personal
  169. information?</strong> We may share information in specific situations and with specific <bdt
  170. class="block-component"></bdt>third parties. Learn more about </span></span><a data-custom-class="link"
  171. href="#whoshare"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">when
  172. and with whom we share your personal information</span></span></a><span style="font-size: 15px;"><span
  173. data-custom-class="body_text">.<bdt class="block-component"></bdt></span></span></div>
  174. <div style="line-height: 1.5;"><br></div>
  175. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do we
  176. keep your information safe?</strong> We have adequate <bdt class="block-component"></bdt>organizational<bdt
  177. class="statement-end-if-in-editor"></bdt> and technical processes and procedures in place to protect your
  178. personal information. However, no electronic transmission over the internet or information storage technology
  179. can be guaranteed to be 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or other
  180. <bdt class="block-component"></bdt>unauthorized<bdt class="statement-end-if-in-editor"></bdt> third parties
  181. will not be able to defeat our security and improperly collect, access, steal, or modify your information.
  182. Learn more about 
  183. </span></span><a data-custom-class="link" href="#infosafe"><span
  184. style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">how we keep your
  185. information safe</span></span></a><span data-custom-class="body_text">.</span><span
  186. style="font-size: 15px;"><span data-custom-class="body_text">
  187. <bdt class="statement-end-if-in-editor"></bdt>
  188. </span></span></div>
  189. <div style="line-height: 1.5;"><br></div>
  190. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What are
  191. your rights?</strong> Depending on where you are located geographically, the applicable privacy law may mean
  192. you have certain rights regarding your personal information. Learn more about </span></span><a
  193. data-custom-class="link" href="#privacyrights"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  194. data-custom-class="body_text">your privacy rights</span></span></a><span
  195. data-custom-class="body_text">.</span></div>
  196. <div style="line-height: 1.5;"><br></div>
  197. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do you
  198. exercise your rights?</strong> The easiest way to exercise your rights is by <bdt class="block-component">
  199. submitting a </bdt></span></span><a data-custom-class="link"
  200. href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831" rel="noopener noreferrer"
  201. target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">data
  202. subject access request</span></span></a><span style="font-size: 15px;"><span data-custom-class="body_text">
  203. <bdt class="block-component"></bdt>, or by contacting us. We will consider and act upon any request in
  204. accordance with applicable data protection laws.
  205. </span></span></div>
  206. <div style="line-height: 1.5;"><br></div>
  207. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">Want to learn more
  208. about what we do with any information we collect? </span></span><a data-custom-class="link" href="#toc"><span
  209. style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">Review the Privacy Notice
  210. in full</span></span></a><span style="font-size: 15px;"><span data-custom-class="body_text">.</span></span>
  211. </div>
  212. <div style="line-height: 1.5;"><br></div>
  213. <div style="line-height: 1.5;"><br></div>
  214. <div id="toc" style="line-height: 1.5;"><span style="font-size: 15px;"><span
  215. style="color: rgb(127, 127, 127);"><span style="color: rgb(0, 0, 0);"><strong><span
  216. data-custom-class="heading_1">
  217. <h2>TABLE OF CONTENTS</h2>
  218. </span></strong></span></span></span></div>
  219. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infocollect"><span
  220. style="color: rgb(0, 58, 250);">1. WHAT INFORMATION DO WE COLLECT?</span></a></span></div>
  221. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infouse"><span
  222. style="color: rgb(0, 58, 250);">2. HOW DO WE PROCESS YOUR INFORMATION?<bdt class="block-component"></bdt>
  223. </span></a></span></div>
  224. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#legalbases"><span
  225. style="color: rgb(0, 58, 250);">3. <span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);">WHAT
  226. LEGAL BASES DO WE RELY ON TO PROCESS YOUR PERSONAL INFORMATION?</span></span>
  227. <bdt class="statement-end-if-in-editor"></bdt>
  228. </span></a></span></div>
  229. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
  230. data-custom-class="link" href="#whoshare">4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
  231. INFORMATION?</a></span><span data-custom-class="body_text">
  232. <bdt class="block-component"></bdt>
  233. </span></span></div>
  234. <div style="line-height: 1.5;"><span style="color: rgb(0, 58, 250); font-size: 15px;"><a data-custom-class="link"
  235. href="#3pwebsites">5. WHAT IS OUR STANCE ON THIRD-PARTY WEBSITES?<bdt class="statement-end-if-in-editor">
  236. </bdt></a><span style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  237. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  238. <bdt class="block-component"></bdt>
  239. </span></span></span></span></span></div>
  240. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#cookies"><span
  241. style="color: rgb(0, 58, 250);">6. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?</span></a><span
  242. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  243. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  244. <bdt class="statement-end-if-in-editor"></bdt>
  245. </span></span></span></span>
  246. <bdt class="block-component"></bdt>
  247. </span></div>
  248. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  249. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  250. style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
  251. style="color: rgb(89, 89, 89);">
  252. <bdt class="block-component"></bdt>
  253. </span></span>
  254. <bdt class="block-component"></bdt>
  255. </span></span></span></span></span></div>
  256. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#inforetain"><span
  257. style="color: rgb(0, 58, 250);">7. HOW LONG DO WE KEEP YOUR INFORMATION?</span></a><span
  258. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  259. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);">
  260. <bdt class="block-component"></bdt>
  261. </span></span></span></span></span></span></div>
  262. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infosafe"><span
  263. style="color: rgb(0, 58, 250);">8. HOW DO WE KEEP YOUR INFORMATION SAFE?</span></a><span
  264. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  265. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  266. <bdt class="statement-end-if-in-editor"></bdt>
  267. <bdt class="block-component"></bdt>
  268. </span></span></span></span></span></div>
  269. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infominors"><span
  270. style="color: rgb(0, 58, 250);">9. DO WE COLLECT INFORMATION FROM MINORS?</span></a><span
  271. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  272. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  273. <bdt class="statement-end-if-in-editor"></bdt>
  274. </span></span></span></span></span></div>
  275. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
  276. data-custom-class="link" href="#privacyrights">10. WHAT ARE YOUR PRIVACY RIGHTS?</a></span></span></div>
  277. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#DNT"><span
  278. style="color: rgb(0, 58, 250);">11. CONTROLS FOR DO-NOT-TRACK FEATURES<bdt class="block-component"></bdt>
  279. </span></a></span></div>
  280. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#uslaws"><span
  281. style="color: rgb(0, 58, 250);">12. DO UNITED STATES RESIDENTS HAVE SPECIFIC PRIVACY
  282. RIGHTS?</span></a></span>
  283. <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
  284. </bdt>
  285. </div>
  286. <div style="line-height: 1.5;"><a data-custom-class="link" href="#otherlaws"><span
  287. style="color: rgb(0, 58, 250); font-size: 15px;">13. DO OTHER REGIONS HAVE SPECIFIC PRIVACY
  288. RIGHTS?</span></a><span style="font-size: 15px;">
  289. <bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
  290. </span></div>
  291. <div style="line-height: 1.5;">
  292. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  293. <bdt class="block-component"></bdt>
  294. <bdt class="block-component"></bdt>
  295. <bdt class="block-component"></bdt>
  296. <bdt class="block-component"></bdt>
  297. <bdt class="block-component"></bdt>
  298. <bdt class="block-component"></bdt>
  299. <bdt class="block-component"></bdt>
  300. <bdt class="block-component"></bdt>
  301. <bdt class="block-component"></span></bdt>
  302. </div>
  303. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
  304. href="#policyupdates"><span style="color: rgb(0, 58, 250);">14. DO WE MAKE UPDATES TO THIS
  305. NOTICE?</span></a></span></div>
  306. <div style="line-height: 1.5;"><a data-custom-class="link" href="#contact"><span
  307. style="color: rgb(0, 58, 250); font-size: 15px;">15. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?</span></a>
  308. </div>
  309. <div style="line-height: 1.5;"><a data-custom-class="link" href="#request"><span style="color: rgb(0, 58, 250);">16.
  310. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?</span></a></div>
  311. <div style="line-height: 1.5;"><br></div>
  312. <div style="line-height: 1.5;"><br></div>
  313. <div id="infocollect" style="line-height: 1.5;"><span style="color: rgb(0, 0, 0);"><span
  314. style="color: rgb(0, 0, 0); font-size: 15px;"><span style="font-size: 15px; color: rgb(0, 0, 0);"><span
  315. style="font-size: 15px; color: rgb(0, 0, 0);"><span id="control"
  316. style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
  317. <h2>1. WHAT INFORMATION DO WE COLLECT?</h2>
  318. </span></strong></span></span></span></span></span><span data-custom-class="heading_2"
  319. id="personalinfo" style="color: rgb(0, 0, 0);"><span style="font-size: 15px;"><strong>
  320. <h3>Personal information you disclose to us</h3>
  321. </strong></span></span><span style="color: rgb(127, 127, 127);"><span
  322. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
  323. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  324. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
  325. Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
  326. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  327. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  328. data-custom-class="body_text"><strong><em> </em></strong><em>We collect personal information that you
  329. provide to us.</em></span></span></span></span></span></span></div>
  330. <div style="line-height: 1.5;"><br></div>
  331. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  332. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We collect personal
  333. information that you voluntarily provide to us when you <span style="font-size: 15px;">
  334. <bdt class="block-component"></bdt>
  335. </span></span><span data-custom-class="body_text">express an interest in obtaining information about us or
  336. our products and Services, when you participate in activities on the Services, or otherwise when you contact
  337. us.</span></span></span></span></div>
  338. <div style="line-height: 1.5;"><br></div>
  339. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  340. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  341. style="font-size: 15px;">
  342. <bdt class="block-component"></bdt>
  343. </span></span></span></span></span></div>
  344. <div id="sensitiveinfo" style="line-height: 1.5;"><span style="font-size: 15px;"><span
  345. data-custom-class="body_text"><strong>Sensitive Information.</strong>
  346. <bdt class="block-component"></bdt>We do not process sensitive information.
  347. </span></span></div>
  348. <div style="line-height: 1.5;"><br></div>
  349. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">
  350. <bdt class="else-block"></bdt>
  351. </span></span><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  352. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  353. style="font-size: 15px;"><span data-custom-class="body_text">
  354. <bdt class="block-component">
  355. <bdt class="block-component"></bdt>
  356. </bdt>
  357. </span></span></span></span>
  358. <bdt class="block-component">
  359. </span></span></bdt>
  360. </div>
  361. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  362. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">All personal information
  363. that you provide to us must be true, complete, and accurate, and you must notify us of any changes to such
  364. personal information.</span></span></span></div>
  365. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  366. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  367. <bdt class="block-component"></bdt>
  368. </span></span></span><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
  369. style="font-size: 15px;"><strong>
  370. <h3>Information automatically collected</h3>
  371. </strong></span></span><span style="color: rgb(127, 127, 127);"><span
  372. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
  373. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  374. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
  375. Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
  376. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  377. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  378. data-custom-class="body_text"><strong><em> </em></strong><em>Some information — such as your Internet
  379. Protocol (IP) address and/or browser and device characteristics — is collected automatically when
  380. you visit our Services.</em></span></span></span></span></span></span></div>
  381. <div style="line-height: 1.5;"><br></div>
  382. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  383. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We automatically collect
  384. certain information when you visit, use, or navigate the Services. This information does not reveal your
  385. specific identity (like your name or contact information) but may include device and usage information, such
  386. as your IP address, browser and device characteristics, operating system, language preferences, referring
  387. URLs, device name, country, location, information about how and when you use our Services, and other
  388. technical information. This information is primarily needed to maintain the security and operation of our
  389. Services, and for our internal analytics and reporting purposes.</span></span></span></div>
  390. <div style="line-height: 1.5;"><br></div>
  391. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  392. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  393. <bdt class="block-component"></bdt>
  394. </span></span></span></div>
  395. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  396. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Like many businesses, we
  397. also collect information through cookies and similar technologies. <bdt class="block-component"></bdt>You
  398. can find out more about this in our Cookie Notice: <bdt class="statement-end-if-in-editor"></bdt>
  399. <bdt class="block-component"></bdt><span style="color: rgb(0, 58, 250);">
  400. <bdt class="question"><a href="https://art.pcoloring.com/cookies" target="_blank"
  401. data-custom-class="link">https://art.pcoloring.com/cookies</a></bdt>
  402. </span>.<bdt class="block-component"></bdt>
  403. </span></span></span></div>
  404. <div style="line-height: 1.5;"><br></div>
  405. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  406. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  407. <bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
  408. </span><span data-custom-class="body_text">
  409. <bdt class="block-component"></bdt>
  410. </span></span></span></div>
  411. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  412. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">The information we
  413. collect includes:<bdt class="block-component"></bdt></span></span></span></div>
  414. <ul>
  415. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  416. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  417. data-custom-class="body_text"><em>Log and Usage Data.</em> Log and usage data is service-related,
  418. diagnostic, usage, and performance information our servers automatically collect when you access or use
  419. our Services and which we record in log files. Depending on how you interact with us, this log data may
  420. include your IP address, device information, browser type, and settings and information about your
  421. activity in the Services<span style="font-size: 15px;"> </span>(such as the date/time stamps associated
  422. with your usage, pages and files viewed, searches, and other actions you take such as which features you
  423. use), device event information (such as system activity, error reports (sometimes called <bdt
  424. class="block-component"></bdt>"crash dumps"<bdt class="statement-end-if-in-editor"></bdt>), and hardware
  425. settings).<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  426. data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  427. <bdt class="statement-end-if-in-editor"></bdt>
  428. </span></span></span></span></span></span></span></span></li>
  429. </ul>
  430. <div style="line-height: 1.5;">
  431. <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
  432. </bdt>
  433. </div>
  434. <ul>
  435. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  436. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  437. data-custom-class="body_text"><em>Device Data.</em> We collect device data such as information about your
  438. computer, phone, tablet, or other device you use to access the Services. Depending on the device used,
  439. this device data may include information such as your IP address (or proxy server), device and application
  440. identification numbers, location, browser type, hardware model, Internet service provider and/or mobile
  441. carrier, operating system, and system configuration information.<span style="font-size: 15px;"><span
  442. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  443. style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  444. <bdt class="statement-end-if-in-editor"></bdt>
  445. </span></span></span></span></span></span></span></span></li>
  446. </ul>
  447. <div style="line-height: 1.5;">
  448. <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
  449. </bdt>
  450. </div>
  451. <ul>
  452. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  453. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  454. data-custom-class="body_text"><em>Location Data.</em> We collect location data such as information about
  455. your device's location, which can be either precise or imprecise. How much information we collect depends
  456. on the type and settings of the device you use to access the Services. For example, we may use GPS and
  457. other technologies to collect geolocation data that tells us your current location (based on your IP
  458. address). You can opt out of allowing us to collect this information either by refusing access to the
  459. information or by disabling your Location setting on your device. However, if you choose to opt out, you
  460. may not be able to use certain aspects of the Services.<span style="font-size: 15px;"><span
  461. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  462. style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  463. <bdt class="statement-end-if-in-editor"></bdt>
  464. </span></span></span></span></span></span></span></span></li>
  465. </ul>
  466. <div>
  467. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  468. </bdt>
  469. <bdt class="statement-end-if-in-editor"></bdt>
  470. </bdt></span></span></span>
  471. <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
  472. </div>
  473. <div style="line-height: 1.5;"><span style="font-size: 15px;"><strong><span data-custom-class="heading_2">
  474. <h3>Google API</h3>
  475. </span></strong><span data-custom-class="body_text">Our use of information received from Google APIs will
  476. adhere to </span></span><a data-custom-class="link"
  477. href="https://developers.google.com/terms/api-services-user-data-policy" rel="noopener noreferrer"
  478. target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  479. data-custom-class="body_text">Google API Services User Data Policy</span></span></a><span
  480. style="font-size: 15px;"><span data-custom-class="body_text">, including the </span></span><a
  481. data-custom-class="link" href="https://developers.google.com/terms/api-services-user-data-policy#limited-use"
  482. rel="noopener noreferrer" target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  483. data-custom-class="body_text">Limited Use requirements</span></span></a><span style="font-size: 15px;"><span
  484. data-custom-class="body_text">.</span><br></span></div>
  485. <div><span style="font-size: 15px;"><br></span></div>
  486. <div style="line-height: 1.5;">
  487. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt><span
  488. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  489. data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
  490. data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
  491. data-custom-class="body_text">
  492. <bdt class="statement-end-if-in-editor">
  493. <bdt class="block-component"></bdt>
  494. </bdt>
  495. </span></span></span></span></bdt></span></span></span></span></span></span></span></span><span
  496. style="font-size: 15px;"><span data-custom-class="body_text">
  497. <bdt class="block-component"></bdt>
  498. </span></span>
  499. </div>
  500. <div style="line-height: 1.5;"><br></div>
  501. <div id="infouse" style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
  502. style="color: rgb(89, 89, 89); font-size: 15px;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  503. style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
  504. style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
  505. <h2>2. HOW DO WE PROCESS YOUR INFORMATION?</h2>
  506. </span></strong></span></span></span></span><span
  507. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
  508. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  509. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
  510. Short: </em></strong><em>We process your information to provide, improve, and administer our
  511. Services, communicate with you, for security and fraud prevention, and to comply with law. We may
  512. also process your information for other purposes with your
  513. consent.</em></span></span></span></span></span></span></div>
  514. <div style="line-height: 1.5;"><br></div>
  515. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  516. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong>We process your
  517. personal information for a variety of reasons, depending on how you interact with our Services,
  518. including:</strong>
  519. <bdt class="block-component"></bdt>
  520. </span></span></span></span></span></span></span></span></span></span></span></span></li>
  521. </ul>
  522. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  523. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  524. <bdt class="block-component"></bdt>
  525. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
  526. </li>
  527. </ul>
  528. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  529. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  530. <bdt class="block-component"></bdt>
  531. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
  532. </li>
  533. </ul>
  534. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  535. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  536. <bdt class="block-component"></bdt>
  537. </span></span></span></span></span></span></span></span></span></span></span></span></li>
  538. </ul>
  539. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  540. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  541. <bdt class="block-component"></bdt>
  542. </span></span></span></li>
  543. </ul>
  544. <div style="line-height: 1.5;">
  545. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  546. </span></span></span></span></span></span></li>
  547. </ul>
  548. <div style="line-height: 1.5;">
  549. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  550. </span></span></span></span></span></span></span></span></span></li>
  551. </ul>
  552. <div style="line-height: 1.5;">
  553. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  554. </span></span></span></span></span></span></span></span></span></span></span></span></li>
  555. </ul>
  556. <div style="line-height: 1.5;">
  557. <bdt class="block-component"><span style="font-size: 15px;"><span
  558. data-custom-class="body_text"></span></span></bdt>
  559. </li>
  560. </ul>
  561. <p style="font-size: 15px; line-height: 1.5;">
  562. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  563. </span></span></span></span></span></span></span></span></span></span></span></li>
  564. </ul>
  565. <p style="font-size: 15px; line-height: 1.5;">
  566. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  567. </span></span></span></span></span></span></span></span></span></span></span></li>
  568. </ul>
  569. <p style="font-size: 15px; line-height: 1.5;">
  570. <bdt class="block-component"></bdt>
  571. </span></span></span></span></span></span></span></span></span></span></span></li>
  572. </ul>
  573. <p style="font-size: 15px; line-height: 1.5;">
  574. <bdt class="block-component"></bdt>
  575. </p>
  576. <ul>
  577. <li data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size: 15px;"><span
  578. style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
  579. data-custom-class="body_text"><strong>To request feedback. </strong>We may process
  580. your information when necessary to request feedback and to contact you about your use
  581. of our Services.<span style="color: rgb(89, 89, 89);"><span
  582. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  583. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  584. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  585. <bdt class="statement-end-if-in-editor"></bdt>
  586. </span></span></span></span></span></span></span></span></span></span></span>
  587. </li>
  588. </ul>
  589. <div style="line-height: 1.5;">
  590. <bdt class="block-component"><span style="font-size: 15px;"><span
  591. data-custom-class="body_text"></span></bdt></span></li>
  592. </ul>
  593. <div style="line-height: 1.5;">
  594. <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
  595. </div>
  596. <ul>
  597. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  598. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  599. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  600. data-custom-class="body_text"><strong>To send you marketing and promotional
  601. communications. </strong>We may process the personal information you send to us for
  602. our marketing purposes, if this is in accordance with your marketing preferences. You
  603. can opt out of our marketing emails at any time. For more information, see <bdt
  604. class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
  605. </span></span></span><a data-custom-class="link" href="#privacyrights"><span
  606. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  607. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  608. data-custom-class="body_text">WHAT ARE YOUR PRIVACY
  609. RIGHTS?</span></span></span></a><span
  610. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  611. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  612. <bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
  613. below.
  614. </span><span data-custom-class="body_text">
  615. <bdt class="statement-end-if-in-editor"></bdt>
  616. </span></span></span></li>
  617. </ul>
  618. <div style="line-height: 1.5;">
  619. <bdt class="block-component"><span style="font-size: 15px;"></bdt></span></span></span></li>
  620. </ul>
  621. <div style="line-height: 1.5;"><span style="font-size: 15px;">
  622. <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
  623. </span></div>
  624. <ul>
  625. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  626. style="font-size: 15px;"><span data-custom-class="body_text"><strong>To deliver targeted
  627. advertising to you.</strong> We may process your information to develop and display
  628. <bdt class="block-component"></bdt>personalized<bdt
  629. class="statement-end-if-in-editor"></bdt> content and advertising tailored to your
  630. interests, location, and more.<bdt class="block-component"></bdt> For more information
  631. see our Cookie Notice: <bdt class="block-component"></bdt><span
  632. style="color: rgb(0, 58, 250);">
  633. <bdt class="question"><a href="https://art.pcoloring.com/cookies" target="_blank"
  634. data-custom-class="link">https://art.pcoloring.com/cookies</a></bdt>
  635. </span>
  636. <bdt class="block-component"></bdt>.<bdt class="statement-end-if-in-editor"></bdt>
  637. </span></span></li>
  638. </ul>
  639. <div style="line-height: 1.5;">
  640. <bdt class="block-component"><span style="font-size: 15px;"><span
  641. data-custom-class="body_text"></bdt></span></span></li>
  642. </ul>
  643. <div style="line-height: 1.5;">
  644. <bdt class="block-component"><span style="font-size: 15px;"><span
  645. data-custom-class="body_text"></span></span></bdt>
  646. </li>
  647. </ul>
  648. <div style="line-height: 1.5;">
  649. <bdt class="block-component"><span style="font-size: 15px;"><span
  650. data-custom-class="body_text"></span></span></bdt>
  651. </div>
  652. <ul>
  653. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  654. data-custom-class="body_text"><span style="font-size: 15px;"><strong>To protect our
  655. Services.</strong> We may process your information as part of our efforts to
  656. keep our Services safe and secure, including fraud monitoring and
  657. prevention.</span></span>
  658. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  659. data-custom-class="body_text"></span></span></bdt>
  660. </li>
  661. </ul>
  662. <div style="line-height: 1.5;">
  663. <bdt class="block-component"><span style="font-size: 15px;"><span
  664. data-custom-class="body_text"></span></span></bdt>
  665. </li>
  666. </ul>
  667. <div style="line-height: 1.5;">
  668. <bdt class="block-component"><span style="font-size: 15px;"><span
  669. data-custom-class="body_text"></span></span></bdt>
  670. </li>
  671. </ul>
  672. <div style="line-height: 1.5;">
  673. <bdt class="block-component"><span style="font-size: 15px;"><span
  674. data-custom-class="body_text"></span></span></bdt>
  675. </li>
  676. </ul>
  677. <div style="line-height: 1.5;">
  678. <bdt class="block-component"><span style="font-size: 15px;"><span
  679. data-custom-class="body_text"></span></span></bdt>
  680. </div>
  681. <ul>
  682. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  683. data-custom-class="body_text"><span style="font-size: 15px;"><strong>To
  684. identify usage trends.</strong> We may process information about how you
  685. use our Services to better understand how they are being used so we can
  686. improve them.</span></span>
  687. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  688. data-custom-class="body_text"></span></span></bdt>
  689. </li>
  690. </ul>
  691. <div style="line-height: 1.5;">
  692. <bdt class="block-component"><span style="font-size: 15px;"><span
  693. data-custom-class="body_text"></bdt></span></span></li>
  694. </ul>
  695. <div style="line-height: 1.5;">
  696. <bdt class="block-component"><span style="font-size: 15px;"><span
  697. data-custom-class="body_text"></span></span></bdt>
  698. </div>
  699. <ul>
  700. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  701. style="font-size: 15px;"><span data-custom-class="body_text"><strong>To
  702. determine the effectiveness of our marketing and promotional
  703. campaigns.</strong> We may process your information to better understand
  704. how to provide marketing and promotional campaigns that are most relevant
  705. to you.<bdt class="statement-end-if-in-editor"></bdt></span></span></li>
  706. </ul>
  707. <div style="line-height: 1.5;">
  708. <bdt class="block-component"><span style="font-size: 15px;"><span
  709. data-custom-class="body_text"></bdt></span></span></li>
  710. </ul>
  711. <div style="line-height: 1.5;">
  712. <bdt class="block-component"><span style="font-size: 15px;"><span
  713. data-custom-class="body_text"></span></span></bdt>
  714. </div>
  715. <ul>
  716. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  717. data-custom-class="body_text"><span style="font-size: 15px;"><strong>To
  718. save or protect an individual's vital interest.</strong> We may
  719. process your information when necessary to save or protect an
  720. individual’s vital interest, such as to prevent harm.</span></span>
  721. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  722. data-custom-class="body_text"></span></span></bdt>
  723. </li>
  724. </ul>
  725. <div style="line-height: 1.5;">
  726. <bdt class="block-component"><span style="font-size: 15px;"><span
  727. data-custom-class="body_text"></span></span></bdt>
  728. <bdt class="block-component"><span style="font-size: 15px;"><span
  729. data-custom-class="body_text"></bdt></span></span>
  730. <bdt class="block-component"><span style="font-size: 15px;"><span
  731. data-custom-class="body_text"></span></span></bdt>
  732. <bdt class="block-component"><span style="font-size: 15px;"><span
  733. data-custom-class="body_text"></span></span></bdt>
  734. </div>
  735. <div style="line-height: 1.5;"><br></div>
  736. <div id="legalbases" style="line-height: 1.5;"><strong><span
  737. style="font-size: 15px;"><span data-custom-class="heading_1">
  738. <h2>3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION?</h2>
  739. </span></span></strong><em><span style="font-size: 15px;"><span
  740. data-custom-class="body_text"><strong>In Short: </strong>We only process
  741. your personal information when we believe it is necessary and we have a
  742. valid legal reason (i.e.<bdt class="block-component"></bdt>,<bdt
  743. class="statement-end-if-in-editor"></bdt> legal basis) to do so under
  744. applicable law, like with your consent, to comply with laws, to provide
  745. you with services to enter into or <bdt class="block-component"></bdt>
  746. fulfill<bdt class="statement-end-if-in-editor"></bdt> our contractual
  747. obligations, to protect your rights, or to <bdt class="block-component">
  748. </bdt>fulfill<bdt class="statement-end-if-in-editor"></bdt> our
  749. legitimate business interests.</span></span></em></div>
  750. <div style="line-height: 1.5;"><br></div>
  751. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  752. data-custom-class="body_text">
  753. <bdt class="block-component"></bdt>
  754. </span><span data-custom-class="body_text">
  755. <bdt class="block-component"></bdt>
  756. </span></span></div>
  757. <div style="line-height: 1.5;"><em><span style="font-size: 15px;"><span
  758. data-custom-class="body_text"><strong><u>If you are located in the EU or
  759. UK, this section applies to you.</u></strong></span></span></em>
  760. </div>
  761. <div style="line-height: 1.5;"><br></div>
  762. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  763. data-custom-class="body_text">
  764. <bdt class="statement-end-if-in-editor"></bdt>
  765. </span></span></div>
  766. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  767. data-custom-class="body_text">The General Data Protection Regulation
  768. (GDPR) and UK GDPR require us to explain the valid legal bases we rely on
  769. in order to process your personal information. As such, we may rely on the
  770. following legal bases to process your personal information:</span></span>
  771. </div>
  772. <ul>
  773. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  774. style="font-size: 15px;"><span
  775. data-custom-class="body_text"><strong>Consent. </strong>We may process
  776. your information if you have given us permission (i.e.<bdt
  777. class="block-component"></bdt>,<bdt
  778. class="statement-end-if-in-editor"></bdt> consent) to use your
  779. personal information for a specific purpose. You can withdraw your
  780. consent at any time. Learn more about </span></span><a
  781. data-custom-class="link" href="#withdrawconsent"><span
  782. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  783. data-custom-class="body_text">withdrawing your
  784. consent</span></span></a><span data-custom-class="body_text">.</span>
  785. </li>
  786. </ul>
  787. <div style="line-height: 1.5;">
  788. <bdt class="block-component"><span style="font-size: 15px;"><span
  789. data-custom-class="body_text"></span></span></bdt>
  790. </li>
  791. </ul>
  792. <div style="line-height: 1.5;">
  793. <bdt class="block-component"><span style="font-size: 15px;"><span
  794. data-custom-class="body_text"></span></span></bdt>
  795. </div>
  796. <ul>
  797. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  798. data-custom-class="body_text"><span
  799. style="font-size: 15px;"><strong>Legitimate Interests.</strong> We may
  800. process your information when we believe it is reasonably necessary to
  801. achieve our legitimate business interests and those interests do not
  802. outweigh your interests and fundamental rights and freedoms. For
  803. example, we may process your personal information for some of the
  804. purposes described in order to:</span></span></li>
  805. </ul>
  806. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  807. style="font-size: 15px;">
  808. <bdt class="block-component"></bdt>
  809. </span></span></div>
  810. <ul style="margin-left: 40px;">
  811. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  812. data-custom-class="body_text"><span style="font-size: 15px;">Send users
  813. information about special offers and discounts on our products and
  814. services<bdt class="statement-end-if-in-editor"></bdt></span></span>
  815. </li>
  816. </ul>
  817. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  818. style="font-size: 15px;">
  819. <bdt class="block-component"></bdt>
  820. </span></span></div>
  821. <ul style="margin-left: 40px;">
  822. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  823. data-custom-class="body_text"><span style="font-size: 15px;">Develop and
  824. display <bdt class="block-component"></bdt>personalized<bdt
  825. class="statement-end-if-in-editor"></bdt> and relevant advertising
  826. content for our users<bdt class="statement-end-if-in-editor"></bdt>
  827. </span></span></li>
  828. </ul>
  829. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  830. style="font-size: 15px;">
  831. <bdt class="block-component"></bdt>
  832. </span></span></div>
  833. <ul style="margin-left: 40px;">
  834. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  835. data-custom-class="body_text"><span style="font-size: 15px;">
  836. <bdt class="block-component"></bdt>Analyze<bdt
  837. class="statement-end-if-in-editor"></bdt> how our Services are used
  838. so we can improve them to engage and retain users<bdt
  839. class="statement-end-if-in-editor"></bdt>
  840. </span></span></li>
  841. </ul>
  842. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  843. style="font-size: 15px;">
  844. <bdt class="block-component"></bdt>
  845. </span></span></div>
  846. <ul style="margin-left: 40px;">
  847. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  848. data-custom-class="body_text"><span style="font-size: 15px;">Support our
  849. marketing activities<bdt class="statement-end-if-in-editor"></bdt>
  850. </span></span></li>
  851. </ul>
  852. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  853. style="font-size: 15px;">
  854. <bdt class="block-component"></bdt>
  855. </span></span></div>
  856. <ul style="margin-left: 40px;">
  857. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  858. data-custom-class="body_text"><span style="font-size: 15px;">Diagnose
  859. problems and/or prevent fraudulent activities<bdt
  860. class="statement-end-if-in-editor"></bdt></span></span></li>
  861. </ul>
  862. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  863. style="font-size: 15px;">
  864. <bdt class="block-component"></bdt>
  865. </span></span></div>
  866. <ul style="margin-left: 40px;">
  867. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  868. data-custom-class="body_text"><span style="font-size: 15px;">Understand
  869. how our users use our products and services so we can improve user
  870. experience<bdt class="statement-end-if-in-editor"></bdt></span></span>
  871. </li>
  872. </ul>
  873. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  874. style="font-size: 15px;">
  875. <bdt class="block-component"></bdt>
  876. </span></span>
  877. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  878. data-custom-class="body_text"></span></span></bdt>
  879. <bdt class="block-component"><span style="font-size: 15px;"><span
  880. data-custom-class="body_text"></span></span></bdt>
  881. </div>
  882. <ul>
  883. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  884. data-custom-class="body_text"><span
  885. style="font-size: 15px;"><strong>Legal Obligations.</strong> We may
  886. process your information where we believe it is necessary for
  887. compliance with our legal obligations, such as to cooperate with a law
  888. enforcement body or regulatory agency, exercise or defend our legal
  889. rights, or disclose your information as evidence in litigation in
  890. which we are involved.<bdt class="statement-end-if-in-editor"></bdt>
  891. <br></span></span></li>
  892. </ul>
  893. <div style="line-height: 1.5;">
  894. <bdt class="block-component"><span style="font-size: 15px;"><span
  895. data-custom-class="body_text"></span></span></bdt>
  896. </div>
  897. <ul>
  898. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  899. data-custom-class="body_text"><span
  900. style="font-size: 15px;"><strong>Vital Interests.</strong> We may
  901. process your information where we believe it is necessary to protect
  902. your vital interests or the vital interests of a third party, such as
  903. situations involving potential threats to the safety of any
  904. person.</span></span>
  905. <bdt class="statement-end-if-in-editor"><span
  906. style="font-size: 15px;"><span
  907. data-custom-class="body_text"></span></span></bdt>
  908. </li>
  909. </ul>
  910. <div style="line-height: 1.5;">
  911. <bdt class="block-component"><span style="font-size: 15px;"><span
  912. data-custom-class="body_text"></span></span></bdt><span
  913. data-custom-class="body_text"><span style="font-size: 15px;">
  914. <bdt class="block-component">
  915. <bdt class="block-component"></bdt>
  916. </bdt>
  917. </span></span>
  918. </div>
  919. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  920. style="font-size: 15px;"><strong><u><em>If you are located in Canada,
  921. this section applies to you.</em></u></strong></span></span></div>
  922. <div style="line-height: 1.5;"><br></div>
  923. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  924. style="font-size: 15px;">
  925. <bdt class="statement-end-if-in-editor"></bdt>
  926. </span></span></div>
  927. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  928. style="font-size: 15px;">We may process your information if you have
  929. given us specific permission (i.e.<bdt class="block-component"></bdt>,
  930. <bdt class="statement-end-if-in-editor"></bdt> express consent) to use
  931. your personal information for a specific purpose, or in situations where
  932. your permission can be inferred (i.e.<bdt class="block-component"></bdt>
  933. ,<bdt class="statement-end-if-in-editor"></bdt> implied consent). You
  934. can 
  935. </span></span><a data-custom-class="link" href="#withdrawconsent"><span
  936. data-custom-class="body_text"><span
  937. style="color: rgb(0, 58, 250); font-size: 15px;">withdraw your
  938. consent</span></span></a><span data-custom-class="body_text"><span
  939. style="font-size: 15px;"> at any time.</span></span></div>
  940. <div style="line-height: 1.5;"><br></div>
  941. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  942. style="font-size: 15px;">In some exceptional cases, we may be legally
  943. permitted under applicable law to process your information without your
  944. consent, including, for example:</span></span></div>
  945. <ul>
  946. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  947. data-custom-class="body_text"><span style="font-size: 15px;">If
  948. collection is clearly in the interests of an individual and consent
  949. cannot be obtained in a timely way</span></span></li>
  950. </ul>
  951. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  952. style="font-size: 15px;">
  953. <bdt class="block-component"></bdt>
  954. </span></span></div>
  955. <ul>
  956. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  957. data-custom-class="body_text"><span style="font-size: 15px;">For
  958. investigations and fraud detection and prevention<bdt
  959. class="statement-end-if-in-editor"></bdt></span></span></li>
  960. </ul>
  961. <div style="line-height: 1.5;">
  962. <bdt class="block-component"><span style="font-size: 15px;"><span
  963. data-custom-class="body_text"></span></span></bdt>
  964. </div>
  965. <ul>
  966. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  967. data-custom-class="body_text"><span style="font-size: 15px;">For
  968. business transactions provided certain conditions are
  969. met</span></span>
  970. <bdt class="statement-end-if-in-editor"><span
  971. style="font-size: 15px;"><span
  972. data-custom-class="body_text"></span></span></bdt>
  973. </li>
  974. </ul>
  975. <div style="line-height: 1.5;">
  976. <bdt class="block-component"><span style="font-size: 15px;"><span
  977. data-custom-class="body_text"></span></span></bdt>
  978. </div>
  979. <ul>
  980. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  981. data-custom-class="body_text"><span style="font-size: 15px;">If it is
  982. contained in a witness statement and the collection is necessary to
  983. assess, process, or settle an insurance claim</span></span>
  984. <bdt class="statement-end-if-in-editor"><span
  985. style="font-size: 15px;"><span
  986. data-custom-class="body_text"></span></span></bdt>
  987. </li>
  988. </ul>
  989. <div style="line-height: 1.5;">
  990. <bdt class="block-component"><span style="font-size: 15px;"><span
  991. data-custom-class="body_text"></span></span></bdt>
  992. </div>
  993. <ul>
  994. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  995. data-custom-class="body_text"><span style="font-size: 15px;">For
  996. identifying injured, ill, or deceased persons and communicating with
  997. next of kin</span></span>
  998. <bdt class="statement-end-if-in-editor"><span
  999. style="font-size: 15px;"><span
  1000. data-custom-class="body_text"></span></span></bdt>
  1001. </li>
  1002. </ul>
  1003. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1004. style="font-size: 15px;">
  1005. <bdt class="block-component"></bdt>
  1006. </span></span></div>
  1007. <ul>
  1008. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1009. data-custom-class="body_text"><span style="font-size: 15px;">If we have
  1010. reasonable grounds to believe an individual has been, is, or may be
  1011. victim of financial abuse<bdt class="statement-end-if-in-editor">
  1012. </bdt></span></span></li>
  1013. </ul>
  1014. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1015. style="font-size: 15px;">
  1016. <bdt class="block-component"></bdt>
  1017. </span></span></div>
  1018. <ul>
  1019. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1020. data-custom-class="body_text"><span style="font-size: 15px;">If it is
  1021. reasonable to expect collection and use with consent would compromise
  1022. the availability or the accuracy of the information and the collection
  1023. is reasonable for purposes related to investigating a breach of an
  1024. agreement or a contravention of the laws of Canada or a province<bdt
  1025. class="statement-end-if-in-editor"></bdt></span></span></li>
  1026. </ul>
  1027. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1028. style="font-size: 15px;">
  1029. <bdt class="block-component"></bdt>
  1030. </span></span></div>
  1031. <ul>
  1032. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1033. data-custom-class="body_text"><span style="font-size: 15px;">If
  1034. disclosure is required to comply with a subpoena, warrant, court
  1035. order, or rules of the court relating to the production of records<bdt
  1036. class="statement-end-if-in-editor"></bdt></span></span></li>
  1037. </ul>
  1038. <div style="line-height: 1.5;">
  1039. <bdt class="block-component"><span style="font-size: 15px;"><span
  1040. data-custom-class="body_text"></span></span></bdt>
  1041. </div>
  1042. <ul>
  1043. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1044. style="font-size: 15px;"><span data-custom-class="body_text">If it was
  1045. produced by an individual in the course of their employment, business,
  1046. or profession and the collection is consistent with the purposes for
  1047. which the information was produced<bdt
  1048. class="statement-end-if-in-editor"></bdt></span></span></li>
  1049. </ul>
  1050. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1051. data-custom-class="body_text">
  1052. <bdt class="block-component"></bdt>
  1053. </span></span></div>
  1054. <ul>
  1055. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1056. style="font-size: 15px;"><span data-custom-class="body_text">If the
  1057. collection is solely for journalistic, artistic, or literary purposes
  1058. <bdt class="statement-end-if-in-editor"></bdt>
  1059. </span></span></li>
  1060. </ul>
  1061. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1062. data-custom-class="body_text">
  1063. <bdt class="block-component"></bdt>
  1064. </span></span></div>
  1065. <ul>
  1066. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1067. style="font-size: 15px;"><span data-custom-class="body_text">If the
  1068. information is publicly available and is specified by the
  1069. regulations</span>
  1070. <bdt class="statement-end-if-in-editor"><span
  1071. data-custom-class="body_text"></span></bdt>
  1072. </span></li>
  1073. </ul>
  1074. <div style="line-height: 1.5;">
  1075. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  1076. data-custom-class="body_text"></span></span></bdt>
  1077. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  1078. data-custom-class="body_text"></span></span></bdt>
  1079. </div>
  1080. <div style="line-height: 1.5;"><br></div>
  1081. <div id="whoshare" style="line-height: 1.5;"><span
  1082. style="color: rgb(127, 127, 127);"><span
  1083. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1084. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1085. style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
  1086. style="color: rgb(0, 0, 0);"><strong><span
  1087. data-custom-class="heading_1">
  1088. <h2>4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
  1089. INFORMATION?</h2>
  1090. </span></strong></span></span></span></span></span><span
  1091. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1092. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1093. data-custom-class="body_text"><strong><em>In
  1094. Short:</em></strong><em> We may share information in specific
  1095. situations described in this section and/or with the following <bdt
  1096. class="block-component"></bdt>third
  1097. parties.</em></span></span></span></div>
  1098. <div style="line-height: 1.5;"><span
  1099. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1100. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1101. data-custom-class="body_text">
  1102. <bdt class="block-component">
  1103. </span></div>
  1104. <div style="line-height: 1.5;"><br></div>
  1105. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1106. data-custom-class="body_text">We <bdt class="block-component"></bdt>may
  1107. need to share your personal information in the following
  1108. situations:</span></span></div>
  1109. <ul>
  1110. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1111. style="font-size: 15px;"><span
  1112. data-custom-class="body_text"><strong>Business Transfers.</strong> We
  1113. may share or transfer your information in connection with, or during
  1114. negotiations of, any merger, sale of company assets, financing, or
  1115. acquisition of all or a portion of our business to another
  1116. company.</span></span></li>
  1117. </ul>
  1118. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1119. data-custom-class="body_text">
  1120. <bdt class="block-component"></bdt>
  1121. </span></span></li>
  1122. </ul>
  1123. <div style="line-height: 1.5;"><span style="font-size: 15px;">
  1124. <bdt class="block-component"><span data-custom-class="body_text"></span>
  1125. </bdt>
  1126. </span></li>
  1127. </ul>
  1128. <div style="line-height: 1.5;">
  1129. <bdt class="block-component"><span style="font-size: 15px;"><span
  1130. data-custom-class="body_text"></span></span></bdt>
  1131. </li>
  1132. </ul>
  1133. <div style="line-height: 1.5;">
  1134. <bdt class="block-component"><span style="font-size: 15px;"><span
  1135. data-custom-class="body_text"></bdt></span></span></li>
  1136. </ul>
  1137. <div style="line-height: 1.5;">
  1138. <bdt class="block-component"><span style="font-size: 15px;"><span
  1139. data-custom-class="body_text"></span></span></bdt>
  1140. </li>
  1141. </ul>
  1142. <div style="line-height: 1.5;">
  1143. <bdt class="block-component"><span style="font-size: 15px;"><span
  1144. data-custom-class="body_text"></span></span></bdt>
  1145. </div>
  1146. <div style="line-height: 1.5;"><br></div>
  1147. <div style="line-height: 1.5;"><strong><span id="3pwebsites"
  1148. style="font-size: 15px;"><span data-custom-class="heading_1">
  1149. <h2>5. WHAT IS OUR STANCE ON THIRD-PARTY WEBSITES?</h2>
  1150. </span></span></strong><span style="font-size: 15px;"><span
  1151. data-custom-class="body_text"><strong><em>In
  1152. Short:</em></strong><em> We are not responsible for the
  1153. safety of any information that you share with third parties
  1154. that we may link to or who advertise on our Services, but
  1155. are not affiliated with, our Services.</em></span></span>
  1156. </div>
  1157. <div style="line-height: 1.5;"><br></div>
  1158. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1159. data-custom-class="body_text">The Services<bdt
  1160. class="block-component"></bdt> may link to third-party
  1161. websites, online services, or mobile applications and/or
  1162. contain advertisements from third parties that are not
  1163. affiliated with us and which may link to other websites,
  1164. services, or applications. Accordingly, we do not make any
  1165. guarantee regarding any such third parties, and we will not be
  1166. liable for any loss or damage caused by the use of such
  1167. third-party websites, services, or applications. The inclusion
  1168. of a link towards a third-party website, service, or
  1169. application does not imply an endorsement by us. We cannot
  1170. guarantee the safety and privacy of data you provide to any
  1171. third-party websites. Any data collected by third parties is
  1172. not covered by this Privacy Notice. We are not responsible for
  1173. the content or privacy and security practices and policies of
  1174. any third parties, including other websites, services, or
  1175. applications that may be linked to or from the Services. You
  1176. should review the policies of such third parties and contact
  1177. them directly to respond to your questions.</span></span>
  1178. <bdt class="statement-end-if-in-editor"><span
  1179. style="font-size: 15px;"><span
  1180. data-custom-class="body_text"></span></span></bdt><span
  1181. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1182. style="font-size: 15px;"><span
  1183. style="color: rgb(89, 89, 89);"><span
  1184. style="font-size: 15px;"><span
  1185. style="color: rgb(89, 89, 89);">
  1186. <bdt class="block-component"><span
  1187. data-custom-class="heading_1">
  1188. <bdt class="block-component"></bdt>
  1189. </span></bdt>
  1190. </span></span></span></span></span>
  1191. </div>
  1192. <div style="line-height: 1.5;"><br></div>
  1193. <div id="cookies" style="line-height: 1.5;"><span
  1194. style="color: rgb(127, 127, 127);"><span
  1195. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1196. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1197. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1198. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1199. data-custom-class="heading_1">
  1200. <h2>6. DO WE USE COOKIES AND OTHER TRACKING
  1201. TECHNOLOGIES?</h2>
  1202. </span></strong></span></span></span></span></span><span
  1203. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1204. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1205. data-custom-class="body_text"><strong><em>In
  1206. Short:</em></strong><em> We may use cookies and other
  1207. tracking technologies to collect and store your
  1208. information.</em></span></span></span></div>
  1209. <div style="line-height: 1.5;"><br></div>
  1210. <div style="line-height: 1.5;"><span
  1211. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1212. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1213. data-custom-class="body_text">We may use cookies and similar
  1214. tracking technologies (like web beacons and pixels) to
  1215. gather information when you interact with our Services. Some
  1216. online tracking technologies help us maintain the security
  1217. of our Services<bdt class="block-component"></bdt>, prevent
  1218. crashes, fix bugs, save your preferences, and assist with
  1219. basic site functions.</span></span></span></div>
  1220. <div style="line-height: 1.5;"><br></div>
  1221. <div style="line-height: 1.5;"><span
  1222. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1223. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1224. data-custom-class="body_text">We also permit third parties
  1225. and service providers to use online tracking technologies on
  1226. our Services for analytics and advertising, including to
  1227. help manage and display advertisements, to tailor
  1228. advertisements to your interests, or to send abandoned
  1229. shopping cart reminders (depending on your communication
  1230. preferences). The third parties and service providers use
  1231. their technology to provide advertising about products and
  1232. services tailored to your interests which may appear either
  1233. on our Services or on other websites.</span></span></span>
  1234. <bdt class="block-component"><span
  1235. style="font-size: 15px;"></span></bdt>
  1236. </div>
  1237. <div style="line-height: 1.5;"><span
  1238. style="font-size: 15px;"><br></span></div>
  1239. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1240. data-custom-class="body_text">To the extent these online
  1241. tracking technologies are deemed to be a <bdt
  1242. class="block-component"></bdt>"sale"/"sharing"<bdt
  1243. class="statement-end-if-in-editor"></bdt> (which includes
  1244. targeted advertising, as defined under the applicable laws)
  1245. under applicable US state laws, you can opt out of these
  1246. online tracking technologies by submitting a request as
  1247. described below under section <bdt class="block-component">
  1248. </bdt>"<bdt class="statement-end-if-in-editor"></bdt>
  1249. </span></span><span data-custom-class="body_text"><a
  1250. data-custom-class="link" href="#uslaws"><span
  1251. style="color: rgb(0, 58, 250); font-size: 15px;">DO UNITED
  1252. STATES RESIDENTS HAVE SPECIFIC PRIVACY
  1253. RIGHTS?</span></a></span><span
  1254. style="font-size: 15px;"><span data-custom-class="body_text">
  1255. <bdt class="block-component"></bdt>"<bdt
  1256. class="statement-end-if-in-editor"></bdt>
  1257. </span>
  1258. <bdt class="statement-end-if-in-editor"></bdt>
  1259. </span></div>
  1260. <div style="line-height: 1.5;"><br></div>
  1261. <div style="line-height: 1.5;"><span
  1262. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1263. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1264. data-custom-class="body_text">Specific information about how
  1265. we use such technologies and how you can refuse certain
  1266. cookies is set out in our Cookie Notice<span
  1267. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1268. data-custom-class="body_text">
  1269. <bdt class="block-component"></bdt>
  1270. </span></span>: <span
  1271. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  1272. data-custom-class="body_text">
  1273. <bdt class="question"><a
  1274. href="https://art.pcoloring.com/cookies"
  1275. target="_blank"
  1276. data-custom-class="link">https://art.pcoloring.com/cookies</a>
  1277. </bdt>
  1278. </span></span><span
  1279. style="font-size: 15px; color: rgb(89, 89, 89);">
  1280. <bdt class="block-component"></bdt>.
  1281. </span></span></span></span></span>
  1282. <bdt class="block-component"><span
  1283. style="font-size: 15px;"></span></bdt><span
  1284. style="font-size: 15px;"><strong><span
  1285. data-custom-class="heading_2">
  1286. <h3>Google Analytics</h3>
  1287. </span></strong> <span data-custom-class="body_text">We may
  1288. share your information with Google Analytics to track and <bdt
  1289. class="block-component"></bdt>analyze<bdt
  1290. class="statement-end-if-in-editor"></bdt> the use of the
  1291. Services.<bdt class="block-component"></bdt> The Google
  1292. Analytics Advertising Features that we may use include: <bdt
  1293. class="forloop-component"></bdt>
  1294. <bdt class="block-component"></bdt>
  1295. <bdt class="question">Remarketing with Google Analytics</bdt>
  1296. <bdt class="block-component"></bdt>
  1297. <bdt class="forloop-component"></bdt>
  1298. <bdt class="block-component"></bdt>, <bdt class="question">
  1299. Google Display Network Impressions Reporting</bdt>
  1300. <bdt class="else-block"></bdt>
  1301. <bdt class="forloop-component"></bdt>
  1302. <bdt class="block-component"></bdt> and <bdt class="question">
  1303. Google Analytics Demographics and Interests Reporting</bdt>
  1304. <bdt class="statement-end-if-in-editor"></bdt>
  1305. <bdt class="forloop-component"></bdt>.<bdt
  1306. class="statement-end-if-in-editor"></bdt> To opt out of
  1307. being tracked by Google Analytics across the Services, visit
  1308. <span style="color: rgb(0, 58, 250);"><a
  1309. data-custom-class="link"
  1310. href="https://tools.google.com/dlpage/gaoptout"
  1311. rel="noopener noreferrer"
  1312. target="_blank">https://tools.google.com/dlpage/gaoptout</a>.</span>
  1313. <bdt class="block-component"></bdt> You can opt out of Google
  1314. Analytics Advertising Features through <span
  1315. style="color: rgb(0, 58, 250);"><a data-custom-class="link"
  1316. href="https://adssettings.google.com/"
  1317. rel="noopener noreferrer" target="_blank">Ads
  1318. Settings</a></span> and Ad Settings for mobile apps. Other
  1319. opt out means include <span
  1320. style="color: rgb(0, 58, 250);"><span
  1321. style="color: rbg(0, 58, 250);"><a
  1322. data-custom-class="link"
  1323. href="http://optout.networkadvertising.org/"
  1324. rel="noopener noreferrer"
  1325. target="_blank">http://optout.networkadvertising.org/</a></span></span>
  1326. and <span style="color: rgb(0, 58, 250);"><a
  1327. data-custom-class="link"
  1328. href="http://www.networkadvertising.org/mobile-choice"
  1329. rel="noopener noreferrer"
  1330. target="_blank">http://www.networkadvertising.org/mobile-choice</a></span>.
  1331. <bdt class="statement-end-if-in-editor"></bdt> For more
  1332. information on the privacy practices of Google, please visit
  1333. the <span style="color: rgb(0, 58, 250);"><a
  1334. data-custom-class="link"
  1335. href="https://policies.google.com/privacy"
  1336. rel="noopener noreferrer" target="_blank">Google Privacy &
  1337. Terms page</a></span>.
  1338. </span></span>
  1339. <bdt class="statement-end-if-in-editor"><span
  1340. style="font-size: 15px;"></span></bdt><span
  1341. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1342. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1343. data-custom-class="body_text"><span
  1344. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1345. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1346. style="font-size: 15px;"><span
  1347. style="color: rgb(89, 89, 89);"><span
  1348. style="font-size: 15px;"><span
  1349. style="color: rgb(89, 89, 89);"><span
  1350. data-custom-class="body_text">
  1351. <bdt class="statement-end-if-in-editor"></bdt>
  1352. </span></span></span></span></span></span></span></span></span></span><span
  1353. style="font-size: 15px;">
  1354. <bdt class="block-component"></bdt>
  1355. </span><span
  1356. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1357. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1358. data-custom-class="body_text"><span
  1359. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1360. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1361. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1362. style="font-size: 15px;"><span
  1363. style="color: rgb(89, 89, 89);"><span
  1364. style="font-size: 15px;"><span
  1365. style="color: rgb(89, 89, 89);"><span
  1366. data-custom-class="body_text">
  1367. <bdt class="block-component"></bdt>
  1368. </span>
  1369. <bdt class="block-component"><span
  1370. data-custom-class="body_text">
  1371. <bdt class="block-component"></bdt>
  1372. </span>
  1373. </span></span></span></span></span></span></span></span></span></span></span></span>
  1374. </div>
  1375. <div style="line-height: 1.5;"><br></div>
  1376. <div id="inforetain" style="line-height: 1.5;"><span
  1377. style="color: rgb(127, 127, 127);"><span
  1378. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1379. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1380. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1381. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1382. data-custom-class="heading_1">
  1383. <h2>7. HOW LONG DO WE KEEP YOUR INFORMATION?</h2>
  1384. </span></strong></span></span></span></span></span><span
  1385. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1386. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1387. data-custom-class="body_text"><strong><em>In
  1388. Short: </em></strong><em>We keep your information for as
  1389. long as necessary to <bdt class="block-component"></bdt>
  1390. fulfill<bdt class="statement-end-if-in-editor"></bdt> the
  1391. purposes outlined in this Privacy Notice unless otherwise
  1392. required by law.</em></span></span></span></div>
  1393. <div style="line-height: 1.5;"><br></div>
  1394. <div style="line-height: 1.5;"><span
  1395. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1396. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1397. data-custom-class="body_text">We will only keep your
  1398. personal information for as long as it is necessary for the
  1399. purposes set out in this Privacy Notice, unless a longer
  1400. retention period is required or permitted by law (such as
  1401. tax, accounting, or other legal requirements).<bdt
  1402. class="block-component"></span></span></span></div>
  1403. <div style="line-height: 1.5;"><br></div>
  1404. <div style="line-height: 1.5;"><span
  1405. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1406. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1407. data-custom-class="body_text">When we have no ongoing
  1408. legitimate business need to process your personal
  1409. information, we will either delete or <bdt
  1410. class="block-component"></bdt>anonymize<bdt
  1411. class="statement-end-if-in-editor"></bdt> such
  1412. information, or, if this is not possible (for example,
  1413. because your personal information has been stored in backup
  1414. archives), then we will securely store your personal
  1415. information and isolate it from any further processing until
  1416. deletion is possible.<span style="color: rgb(89, 89, 89);">
  1417. <bdt class="block-component"></bdt>
  1418. </span></span></span></span></div>
  1419. <div style="line-height: 1.5;"><br></div>
  1420. <div id="infosafe" style="line-height: 1.5;"><span
  1421. style="color: rgb(127, 127, 127);"><span
  1422. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1423. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1424. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1425. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1426. data-custom-class="heading_1">
  1427. <h2>8. HOW DO WE KEEP YOUR INFORMATION SAFE?</h2>
  1428. </span></strong></span></span></span></span></span><span
  1429. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1430. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1431. data-custom-class="body_text"><strong><em>In
  1432. Short: </em></strong><em>We aim to protect your personal
  1433. information through a system of <bdt
  1434. class="block-component"></bdt>organizational<bdt
  1435. class="statement-end-if-in-editor"></bdt> and technical
  1436. security measures.</em></span></span></span></div>
  1437. <div style="line-height: 1.5;"><br></div>
  1438. <div style="line-height: 1.5;"><span
  1439. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1440. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1441. data-custom-class="body_text">We have implemented
  1442. appropriate and reasonable technical and <bdt
  1443. class="block-component"></bdt>organizational<bdt
  1444. class="statement-end-if-in-editor"></bdt> security
  1445. measures designed to protect the security of any personal
  1446. information we process. However, despite our safeguards and
  1447. efforts to secure your information, no electronic
  1448. transmission over the Internet or information storage
  1449. technology can be guaranteed to be 100% secure, so we cannot
  1450. promise or guarantee that hackers, cybercriminals, or other
  1451. <bdt class="block-component"></bdt>unauthorized<bdt
  1452. class="statement-end-if-in-editor"></bdt> third parties
  1453. will not be able to defeat our security and improperly
  1454. collect, access, steal, or modify your information. Although
  1455. we will do our best to protect your personal information,
  1456. transmission of personal information to and from our
  1457. Services is at your own risk. You should only access the
  1458. Services within a secure environment.<span
  1459. style="color: rgb(89, 89, 89);">
  1460. <bdt class="statement-end-if-in-editor"></bdt>
  1461. </span><span
  1462. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1463. data-custom-class="body_text">
  1464. <bdt class="block-component"></bdt>
  1465. </span></span>
  1466. </span></span></span></div>
  1467. <div style="line-height: 1.5;"><br></div>
  1468. <div id="infominors" style="line-height: 1.5;"><span
  1469. style="color: rgb(127, 127, 127);"><span
  1470. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1471. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1472. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1473. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1474. data-custom-class="heading_1">
  1475. <h2>9. DO WE COLLECT INFORMATION FROM MINORS?</h2>
  1476. </span></strong></span></span></span></span></span><span
  1477. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1478. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1479. data-custom-class="body_text"><strong><em>In
  1480. Short:</em></strong><em> We do not knowingly collect
  1481. data from or market to <bdt class="block-component"></bdt>
  1482. children under 18 years of age<bdt class="else-block">
  1483. </bdt>.</em>
  1484. <bdt class="block-component"></bdt>
  1485. </span></span></span></div>
  1486. <div style="line-height: 1.5;"><br></div>
  1487. <div style="line-height: 1.5;"><span
  1488. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1489. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1490. data-custom-class="body_text">We do not knowingly collect,
  1491. solicit data from, or market to children under 18 years of
  1492. age, nor do we knowingly sell such personal information. By
  1493. using the Services, you represent that you are at least 18
  1494. or that you are the parent or guardian of such a minor and
  1495. consent to such minor dependent’s use of the Services. If we
  1496. learn that personal information from users less than 18
  1497. years of age has been collected, we will deactivate the
  1498. account and take reasonable measures to promptly delete such
  1499. data from our records. If you become aware of any data we
  1500. may have collected from children under age 18, please
  1501. contact us at <span
  1502. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1503. data-custom-class="body_text">
  1504. <bdt class="block-component"></bdt>
  1505. <bdt class="question">icolor_support@jccy-tech.com</bdt>
  1506. <bdt class="else-block"></bdt>
  1507. </span></span>.</span><span data-custom-class="body_text">
  1508. <bdt class="else-block">
  1509. <bdt class="block-component"></bdt>
  1510. </span></span></span></span></span></span></div>
  1511. <div style="line-height: 1.5;"><br></div>
  1512. <div id="privacyrights" style="line-height: 1.5;"><span
  1513. style="color: rgb(127, 127, 127);"><span
  1514. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1515. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1516. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1517. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1518. data-custom-class="heading_1">
  1519. <h2>10. WHAT ARE YOUR PRIVACY RIGHTS?</h2>
  1520. </span></strong></span></span></span></span></span><span
  1521. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1522. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1523. data-custom-class="body_text"><strong><em>In
  1524. Short:</em></strong><em> <span
  1525. style="color: rgb(89, 89, 89);"><span
  1526. style="font-size: 15px;"><span
  1527. data-custom-class="body_text"><em>
  1528. <bdt class="block-component"></bdt>
  1529. </em></span></span></span>
  1530. <bdt class="block-component"></bdt>Depending on your state
  1531. of residence in the US or in <bdt class="else-block">
  1532. </bdt>some regions, such as <bdt class="block-component">
  1533. </bdt>the European Economic Area (EEA), United Kingdom
  1534. (UK), Switzerland, and Canada<bdt class="block-component">
  1535. </bdt>, you have rights that allow you greater access to
  1536. and control over your personal information.<span
  1537. style="color: rgb(89, 89, 89);"><span
  1538. style="font-size: 15px;"><span
  1539. data-custom-class="body_text"><em>
  1540. <bdt class="statement-end-if-in-editor"></bdt>
  1541. </em></span></span> </span>You may review, change,
  1542. or terminate your account at any time, depending on your
  1543. country, province, or state of residence.
  1544. </em><span style="color: rgb(89, 89, 89);"><span
  1545. style="font-size: 15px;">
  1546. <bdt class="block-component"></bdt>
  1547. </span></span></span></span></span></div>
  1548. <div style="line-height: 1.5;"><br></div>
  1549. <div style="line-height: 1.5;"><span
  1550. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1551. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1552. data-custom-class="body_text">In some regions (like <bdt
  1553. class="block-component"></bdt>the EEA, UK, Switzerland,
  1554. and Canada<bdt class="block-component"></bdt>), you have
  1555. certain rights under applicable data protection laws. These
  1556. may include the right (i) to request access and obtain a
  1557. copy of your personal information, (ii) to request
  1558. rectification or erasure; (iii) to restrict the processing
  1559. of your personal information; (iv) if applicable, to data
  1560. portability; and (v) not to be subject to automated
  1561. decision-making. In certain circumstances, you may also have
  1562. the right to object to the processing of your personal
  1563. information. You can make such a request by contacting us by
  1564. using the contact details provided in the section <bdt
  1565. class="block-component"></bdt>"<bdt
  1566. class="statement-end-if-in-editor"></bdt>
  1567. </span></span></span><a data-custom-class="link"
  1568. href="#contact"><span
  1569. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1570. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1571. data-custom-class="body_text">HOW CAN YOU CONTACT US ABOUT
  1572. THIS NOTICE?</span></span></span></a><span
  1573. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1574. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1575. data-custom-class="body_text">
  1576. <bdt class="block-component"></bdt>"<bdt
  1577. class="statement-end-if-in-editor"></bdt> below.
  1578. </span></span></span></div>
  1579. <div style="line-height: 1.5;"><br></div>
  1580. <div style="line-height: 1.5;"><span
  1581. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1582. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1583. data-custom-class="body_text">We will consider and act upon
  1584. any request in accordance with applicable data protection
  1585. laws.<bdt class="block-component"></bdt>
  1586. </span></span></span></div>
  1587. <div style="line-height: 1.5;"><span
  1588. style="font-size: 15px; color: rgb(89, 89, 89);"> </span></div>
  1589. <div style="line-height: 1.5;"><span
  1590. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1591. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1592. data-custom-class="body_text">If you are located in the EEA
  1593. or UK and you believe we are unlawfully processing your
  1594. personal information, you also have the right to complain to
  1595. your <span style="font-size: 15px;"><span
  1596. style="color: rgb(0, 58, 250);"><span
  1597. data-custom-class="body_text"><span
  1598. style="color: rgb(0, 58, 250);"><span
  1599. data-custom-class="body_text"><a
  1600. data-custom-class="link"
  1601. href="https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm"
  1602. rel="noopener noreferrer" target="_blank"><span
  1603. style="font-size: 15px;">Member State data
  1604. protection
  1605. authority</span></a></span></span></span></span></span>
  1606. or </span></span></span><a data-custom-class="link"
  1607. href="https://ico.org.uk/make-a-complaint/data-protection-complaints/data-protection-complaints/"
  1608. rel="noopener noreferrer" target="_blank"><span
  1609. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1610. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1611. data-custom-class="body_text">UK data protection
  1612. authority</span></span></span></a><span
  1613. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1614. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1615. data-custom-class="body_text">.</span></span></span></div>
  1616. <div style="line-height: 1.5;"><br></div>
  1617. <div style="line-height: 1.5;"><span
  1618. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1619. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1620. data-custom-class="body_text">If you are located in
  1621. Switzerland, you may contact the <span
  1622. style="font-size: 15px;"><span
  1623. style="color: rgb(0, 58, 250);"><span
  1624. data-custom-class="body_text"><span
  1625. style="color: rgb(0, 58, 250);"><span
  1626. data-custom-class="body_text"><span
  1627. style="color: rgb(0, 58, 250); font-size: 15px;"><a
  1628. data-custom-class="link"
  1629. href="https://www.edoeb.admin.ch/edoeb/en/home.html"
  1630. rel="noopener noreferrer"
  1631. target="_blank">Federal Data Protection and
  1632. Information
  1633. Commissioner</a></span></span></span></span></span></span>.</span></span></span>
  1634. </div>
  1635. <div style="line-height: 1.5;"><br></div>
  1636. <div id="withdrawconsent" style="line-height: 1.5;"><span
  1637. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1638. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1639. data-custom-class="body_text"><strong><u>Withdrawing your
  1640. consent:</u></strong> If we are relying on your consent
  1641. to process your personal information,<bdt
  1642. class="block-component"></bdt> which may be express and/or
  1643. implied consent depending on the applicable law,<bdt
  1644. class="statement-end-if-in-editor"></bdt> you have the
  1645. right to withdraw your consent at any time. You can withdraw
  1646. your consent at any time by contacting us by using the
  1647. contact details provided in the section <bdt
  1648. class="block-component"></bdt>"<bdt
  1649. class="statement-end-if-in-editor"></bdt>
  1650. </span></span></span><a data-custom-class="link"
  1651. href="#contact"><span
  1652. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1653. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1654. data-custom-class="body_text">HOW CAN YOU CONTACT US ABOUT
  1655. THIS NOTICE?</span></span></span></a><span
  1656. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1657. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1658. data-custom-class="body_text">
  1659. <bdt class="block-component"></bdt>"<bdt
  1660. class="statement-end-if-in-editor"></bdt> below<bdt
  1661. class="block-component"></bdt>.
  1662. </span></span></span></div>
  1663. <div style="line-height: 1.5;"><br></div>
  1664. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1665. data-custom-class="body_text">However, please note that this
  1666. will not affect the lawfulness of the processing before its
  1667. withdrawal nor,<bdt class="block-component"></bdt> when
  1668. applicable law allows,<bdt class="statement-end-if-in-editor">
  1669. </bdt> will it affect the processing of your personal
  1670. information conducted in reliance on lawful processing grounds
  1671. other than consent.<bdt class="block-component"></bdt>
  1672. </span></span>
  1673. <bdt class="block-component"><span style="font-size: 15px;"><span
  1674. data-custom-class="body_text"></span></span></bdt><span
  1675. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1676. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1677. data-custom-class="body_text"><span
  1678. style="font-size: 15px;"><span
  1679. style="color: rgb(89, 89, 89);"><span
  1680. style="font-size: 15px;"><span
  1681. style="color: rgb(89, 89, 89);"><span
  1682. data-custom-class="body_text"><span
  1683. style="font-size: 15px;"><span
  1684. style="color: rgb(89, 89, 89);">
  1685. <bdt class="block-component"></bdt>
  1686. </span></span></span></span></span></span></span></span></span></span>
  1687. </div>
  1688. <div style="line-height: 1.5;"><br></div>
  1689. <div style="line-height: 1.5;"><span
  1690. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1691. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1692. data-custom-class="body_text"><strong><u>Cookies and similar
  1693. technologies:</u></strong> Most Web browsers are set to
  1694. accept cookies by default. If you prefer, you can usually
  1695. choose to set your browser to remove cookies and to reject
  1696. cookies. If you choose to remove cookies or reject cookies,
  1697. this could affect certain features or services of our
  1698. Services. <bdt class="block-component"></bdt>You may also
  1699. <span style="color: rgb(0, 58, 250);"><span
  1700. data-custom-class="body_text"><a
  1701. data-custom-class="link"
  1702. href="http://www.aboutads.info/choices/"
  1703. rel="noopener noreferrer" target="_blank"><span
  1704. style="color: rgb(0, 58, 250); font-size: 15px;">opt
  1705. out of interest-based advertising by
  1706. advertisers</span></a></span></span> on our
  1707. Services. <span style="font-size: 15px;"><span
  1708. style="color: rgb(89, 89, 89);"><span
  1709. data-custom-class="body_text">
  1710. <bdt class="block-component"></bdt>
  1711. </span></span></span>For further information, please see
  1712. our Cookie Notice: <span style="font-size: 15px;"><span
  1713. style="color: rgb(89, 89, 89);"><span
  1714. data-custom-class="body_text"><span
  1715. style="color: rgb(0, 58, 250);">
  1716. <bdt class="question"><a
  1717. href="https://art.pcoloring.com/cookies"
  1718. target="_blank"
  1719. data-custom-class="link">https://art.pcoloring.com/cookies</a>
  1720. </bdt>
  1721. </span>.<bdt class="block-component"></bdt><span
  1722. style="font-size: 15px;"><span
  1723. style="color: rgb(89, 89, 89);"><span
  1724. style="font-size: 15px;"><span
  1725. style="color: rgb(89, 89, 89);"><span
  1726. style="font-size: 15px;"><span
  1727. style="color: rgb(89, 89, 89);">
  1728. <bdt class="statement-end-if-in-editor">
  1729. </bdt>
  1730. </span></span></span></span></span></span></span></span></span></span></span></span>
  1731. <bdt class="block-component"><span style="font-size: 15px;"><span
  1732. data-custom-class="body_text"></span></span></bdt>
  1733. </div>
  1734. <div style="line-height: 1.5;"><br></div>
  1735. <div style="line-height: 1.5;"><span
  1736. data-custom-class="body_text"><span style="font-size: 15px;">If
  1737. you have questions or comments about your privacy rights, you
  1738. may email us at <bdt class="question">guoziyun@jccy-tech.com
  1739. </bdt>.</span></span>
  1740. <bdt class="statement-end-if-in-editor"><span
  1741. style="font-size: 15px;"><span
  1742. data-custom-class="body_text"></span></span></bdt>
  1743. </div>
  1744. <div style="line-height: 1.5;"><br></div>
  1745. <div id="DNT" style="line-height: 1.5;"><span
  1746. style="color: rgb(127, 127, 127);"><span
  1747. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1748. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1749. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1750. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1751. data-custom-class="heading_1">
  1752. <h2>11. CONTROLS FOR DO-NOT-TRACK FEATURES</h2>
  1753. </span></strong></span></span></span></span></span><span
  1754. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1755. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1756. data-custom-class="body_text">Most web browsers and some
  1757. mobile operating systems and mobile applications include a
  1758. Do-Not-Track (<bdt class="block-component"></bdt>"DNT"<bdt
  1759. class="statement-end-if-in-editor"></bdt>) feature or
  1760. setting you can activate to signal your privacy preference
  1761. not to have data about your online browsing activities
  1762. monitored and collected. At this stage, no uniform
  1763. technology standard for <bdt class="block-component"></bdt>
  1764. recognizing<bdt class="statement-end-if-in-editor"></bdt>
  1765. and implementing DNT signals has been <bdt
  1766. class="block-component"></bdt>finalized<bdt
  1767. class="statement-end-if-in-editor"></bdt>. As such, we do
  1768. not currently respond to DNT browser signals or any other
  1769. mechanism that automatically communicates your choice not to
  1770. be tracked online. If a standard for online tracking is
  1771. adopted that we must follow in the future, we will inform
  1772. you about that practice in a revised version of this Privacy
  1773. Notice.</span></span></span>
  1774. <bdt class="block-component"><span
  1775. style="font-size: 15px;"></span></bdt>
  1776. </div>
  1777. <div style="line-height: 1.5;"><span
  1778. style="font-size: 15px;"><br></span></div>
  1779. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1780. data-custom-class="body_text">California law requires us to
  1781. let you know how we respond to web browser DNT signals.
  1782. Because there currently is not an industry or legal standard
  1783. for <bdt class="block-component"></bdt>recognizing<bdt
  1784. class="statement-end-if-in-editor"></bdt> or <bdt
  1785. class="block-component"></bdt>honoring<bdt
  1786. class="statement-end-if-in-editor"></bdt> DNT signals, we do
  1787. not respond to them at this time.</span></span>
  1788. <bdt class="statement-end-if-in-editor"><span
  1789. style="font-size: 15px;"></span></bdt>
  1790. </div>
  1791. <div style="line-height: 1.5;"><span
  1792. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1793. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1794. data-custom-class="body_text">
  1795. <bdt class="block-component"></bdt>
  1796. </span></span></span></div>
  1797. <div style="line-height: 1.5;"><br></div>
  1798. <div id="uslaws" style="line-height: 1.5;"><span
  1799. style="color: rgb(127, 127, 127);"><span
  1800. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1801. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1802. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1803. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1804. data-custom-class="heading_1">
  1805. <h2>12. DO UNITED STATES RESIDENTS HAVE SPECIFIC
  1806. PRIVACY RIGHTS?</h2>
  1807. </span></strong></span></span></span></span></span><span
  1808. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1809. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1810. data-custom-class="body_text"><strong><em>In
  1811. Short: </em></strong><em>If you are a resident of<bdt
  1812. class="block-component"></bdt> California, Colorado,
  1813. Connecticut, Delaware, Florida, Indiana, Iowa, Kentucky,
  1814. Minnesota, Montana, Nebraska, New Hampshire, New Jersey,
  1815. Oregon, Tennessee, Texas, Utah, or Virginia<bdt
  1816. class="else-block"></bdt>, you may have the right to
  1817. request access to and receive details about the personal
  1818. information we maintain about you and how we have
  1819. processed it, correct inaccuracies, get a copy of, or
  1820. delete your personal information. You may also have the
  1821. right to withdraw your consent to our processing of your
  1822. personal information. These rights may be limited in some
  1823. circumstances by applicable law. More information is
  1824. provided below.</em></span></span><span
  1825. style="font-size: 15px; color: rgb(89, 89, 89);"><strong><span
  1826. data-custom-class="heading_2">
  1827. <h3>Categories of Personal Information We Collect</h3>
  1828. </span></strong></span><span
  1829. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1830. data-custom-class="body_text">We have collected the
  1831. following categories of personal information in the past
  1832. twelve (12) months:</span></span></span></div>
  1833. <div style="line-height: 1.5;"><br></div>
  1834. <table style="width: 100%;">
  1835. <tbody>
  1836. <tr>
  1837. <td
  1838. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  1839. <span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1840. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1841. data-custom-class="body_text"><strong>Category</strong></span></span></span>
  1842. </td>
  1843. <td
  1844. style="width: 51.4385%; border-top: 1px solid black; border-right: 1px solid black;">
  1845. <span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1846. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1847. data-custom-class="body_text"><strong>Examples</strong></span></span></span>
  1848. </td>
  1849. <td
  1850. style="width: 14.9084%; border-right: 1px solid black; border-top: 1px solid black; text-align: center;">
  1851. <span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1852. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1853. data-custom-class="body_text"><strong>Collected</strong></span></span></span>
  1854. </td>
  1855. </tr>
  1856. <tr>
  1857. <td
  1858. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  1859. <div style="line-height: 1.5;"><span
  1860. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1861. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1862. data-custom-class="body_text">A.
  1863. Identifiers</span></span></span></div>
  1864. </td>
  1865. <td
  1866. style="width: 51.4385%; border-top: 1px solid black; border-right: 1px solid black;">
  1867. <div style="line-height: 1.5;"><span
  1868. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1869. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1870. data-custom-class="body_text">Contact details, such
  1871. as real name, alias, postal address, telephone or
  1872. mobile contact number, unique personal identifier,
  1873. online identifier, Internet Protocol address, email
  1874. address, and account name</span></span></span></div>
  1875. </td>
  1876. <td
  1877. style="width: 14.9084%; text-align: center; vertical-align: middle; border-right: 1px solid black; border-top: 1px solid black;">
  1878. <div style="line-height: 1.5;"><br></div>
  1879. <div style="line-height: 1.5;"><span
  1880. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1881. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1882. data-custom-class="body_text">
  1883. <bdt class="block-component">
  1884. <bdt class="block-component"></bdt>
  1885. </bdt>NO<bdt class="statement-end-if-in-editor">
  1886. <bdt class="block-component"></bdt>
  1887. </span></span></span></div>
  1888. <div style="line-height: 1.5;"><br></div>
  1889. </td>
  1890. </tr>
  1891. </tbody>
  1892. </table>
  1893. <div style="line-height: 1.5;">
  1894. <bdt class="block-component"></bdt>
  1895. </div>
  1896. <table style="width: 100%;">
  1897. <tbody>
  1898. <tr>
  1899. <td
  1900. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  1901. <div style="line-height: 1.5;"><span
  1902. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1903. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1904. data-custom-class="body_text">B. Personal
  1905. information as defined in the California Customer
  1906. Records statute</span></span></span></div>
  1907. </td>
  1908. <td
  1909. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  1910. <div style="line-height: 1.5;"><span
  1911. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1912. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1913. data-custom-class="body_text">Name, contact
  1914. information, education, employment, employment
  1915. history, and financial
  1916. information</span></span></span></div>
  1917. </td>
  1918. <td
  1919. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  1920. <div style="line-height: 1.5;"><br></div>
  1921. <div style="line-height: 1.5;"><span
  1922. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1923. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1924. data-custom-class="body_text">
  1925. <bdt class="forloop-component">
  1926. <bdt class="block-component">
  1927. <bdt class="block-component">NO<bdt
  1928. class="statement-end-if-in-editor">
  1929. <bdt class="block-component"></bdt>
  1930. </bdt>
  1931. </span></span></span></div>
  1932. <div style="line-height: 1.5;"><br></div>
  1933. </td>
  1934. </tr>
  1935. </tbody>
  1936. </table>
  1937. <div style="line-height: 1.5;">
  1938. <bdt class="block-component"></bdt>
  1939. </div>
  1940. <table style="width: 100%;">
  1941. <tbody>
  1942. <tr>
  1943. <td
  1944. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  1945. <div style="line-height: 1.5;"><span
  1946. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1947. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1948. data-custom-class="body_text">
  1949. <bdt class="block-component"></bdt>C<bdt
  1950. class="else-block"></bdt>. Protected
  1951. classification characteristics under state or
  1952. federal law
  1953. </span></span></span></div>
  1954. </td>
  1955. <td
  1956. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  1957. <div style="line-height: 1.5;"><span
  1958. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1959. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1960. data-custom-class="body_text">Gender, age, date of
  1961. birth, race and ethnicity, national origin, marital
  1962. status, and other demographic
  1963. data</span></span></span></div>
  1964. </td>
  1965. <td
  1966. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  1967. <div style="line-height: 1.5;"><br></div>
  1968. <div data-custom-class="body_text"
  1969. style="line-height: 1.5;">
  1970. <bdt class="forloop-component"><span
  1971. data-custom-class="body_text">
  1972. <bdt class="block-component"></bdt>
  1973. <bdt class="block-component"></bdt>NO<bdt
  1974. class="statement-end-if-in-editor"></bdt>
  1975. <bdt class="block-component">
  1976. </span></bdt>
  1977. </div>
  1978. <div style="line-height: 1.5;"><br></div>
  1979. </td>
  1980. </tr>
  1981. <tr>
  1982. <td
  1983. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  1984. <div style="line-height: 1.5;"><span
  1985. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1986. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1987. data-custom-class="body_text">
  1988. <bdt class="block-component"></bdt>D<bdt
  1989. class="else-block"></bdt>. Commercial information
  1990. </span></span></span></div>
  1991. </td>
  1992. <td
  1993. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  1994. <div style="line-height: 1.5;"><span
  1995. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1996. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1997. data-custom-class="body_text">Transaction
  1998. information, purchase history, financial details,
  1999. and payment information</span></span></span></div>
  2000. </td>
  2001. <td
  2002. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2003. <div style="line-height: 1.5;"><br></div>
  2004. <div data-custom-class="body_text"
  2005. style="line-height: 1.5;">
  2006. <bdt class="forloop-component"><span
  2007. data-custom-class="body_text">
  2008. <bdt class="block-component"></bdt>
  2009. <bdt class="block-component"></bdt>NO<bdt
  2010. class="statement-end-if-in-editor">
  2011. <bdt class="block-component">
  2012. </span></bdt>
  2013. </div>
  2014. <div style="line-height: 1.5;"><br></div>
  2015. </td>
  2016. </tr>
  2017. <tr>
  2018. <td
  2019. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2020. <div style="line-height: 1.5;"><span
  2021. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2022. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2023. data-custom-class="body_text">
  2024. <bdt class="block-component"></bdt>E<bdt
  2025. class="else-block"></bdt>. Biometric information
  2026. </span></span></span></div>
  2027. </td>
  2028. <td
  2029. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2030. <div style="line-height: 1.5;"><span
  2031. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2032. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2033. data-custom-class="body_text">Fingerprints and
  2034. voiceprints</span></span></span></div>
  2035. </td>
  2036. <td
  2037. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2038. <div style="line-height: 1.5;"><br></div>
  2039. <div data-custom-class="body_text"
  2040. style="line-height: 1.5;">
  2041. <bdt class="forloop-component"><span
  2042. data-custom-class="body_text">
  2043. <bdt class="block-component">
  2044. <bdt class="block-component">NO</bdt>
  2045. <bdt class="statement-end-if-in-editor"></bdt>
  2046. <bdt class="block-component">
  2047. </span></bdt>
  2048. </div>
  2049. <div style="line-height: 1.5;"><br></div>
  2050. </td>
  2051. </tr>
  2052. <tr>
  2053. <td
  2054. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2055. <div style="line-height: 1.5;"><span
  2056. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2057. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2058. data-custom-class="body_text">
  2059. <bdt class="block-component"></bdt>F<bdt
  2060. class="else-block"></bdt>. Internet or other
  2061. similar network activity
  2062. </span></span></span></div>
  2063. </td>
  2064. <td
  2065. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2066. <div style="line-height: 1.5;"><span
  2067. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2068. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2069. data-custom-class="body_text">Browsing history,
  2070. search history, online <bdt class="block-component">
  2071. </bdt>behavior<bdt
  2072. class="statement-end-if-in-editor"></bdt>,
  2073. interest data, and interactions with our and other
  2074. websites, applications, systems, and
  2075. advertisements</span></span></span></div>
  2076. </td>
  2077. <td
  2078. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2079. <div style="line-height: 1.5;"><br></div>
  2080. <div data-custom-class="body_text"
  2081. style="line-height: 1.5;">
  2082. <bdt class="forloop-component"><span
  2083. data-custom-class="body_text">
  2084. <bdt class="block-component"></bdt>
  2085. <bdt class="block-component"></bdt>NO<bdt
  2086. class="statement-end-if-in-editor"></bdt>
  2087. <bdt class="block-component">
  2088. </span></bdt>
  2089. </div>
  2090. <div style="line-height: 1.5;"><br></div>
  2091. </td>
  2092. </tr>
  2093. <tr>
  2094. <td
  2095. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2096. <div style="line-height: 1.5;"><span
  2097. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2098. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2099. data-custom-class="body_text">
  2100. <bdt class="block-component"></bdt>G<bdt
  2101. class="else-block"></bdt>. Geolocation data
  2102. </span></span></span></div>
  2103. </td>
  2104. <td
  2105. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2106. <div style="line-height: 1.5;"><span
  2107. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2108. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2109. data-custom-class="body_text">Device
  2110. location</span></span></span></div>
  2111. </td>
  2112. <td
  2113. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2114. <div style="line-height: 1.5;"><br></div>
  2115. <div data-custom-class="body_text"
  2116. style="line-height: 1.5;">
  2117. <bdt class="forloop-component"><span
  2118. data-custom-class="body_text">
  2119. <bdt class="block-component"></bdt>
  2120. <bdt class="block-component"></bdt>NO<bdt
  2121. class="statement-end-if-in-editor"></bdt>
  2122. <bdt class="block-component">
  2123. </span></bdt>
  2124. </div>
  2125. <div style="line-height: 1.5;"><br></div>
  2126. </td>
  2127. </tr>
  2128. <tr>
  2129. <td
  2130. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2131. <div style="line-height: 1.5;"><span
  2132. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2133. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2134. data-custom-class="body_text">
  2135. <bdt class="block-component"></bdt>H<bdt
  2136. class="else-block"></bdt>. Audio, electronic,
  2137. sensory, or similar information
  2138. </span></span></span></div>
  2139. </td>
  2140. <td
  2141. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2142. <div style="line-height: 1.5;"><span
  2143. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2144. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2145. data-custom-class="body_text">Images and audio,
  2146. video or call recordings created in connection with
  2147. our business activities</span></span></span></div>
  2148. </td>
  2149. <td
  2150. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2151. <div style="line-height: 1.5;"><br></div>
  2152. <div data-custom-class="body_text"
  2153. style="line-height: 1.5;">
  2154. <bdt class="forloop-component"><span
  2155. data-custom-class="body_text">
  2156. <bdt class="block-component"></bdt>
  2157. <bdt class="block-component"></bdt>NO<bdt
  2158. class="statement-end-if-in-editor"></bdt>
  2159. <bdt class="block-component">
  2160. </span></bdt>
  2161. </div>
  2162. <div style="line-height: 1.5;"><br></div>
  2163. </td>
  2164. </tr>
  2165. <tr>
  2166. <td
  2167. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2168. <div style="line-height: 1.5;"><span
  2169. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2170. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2171. data-custom-class="body_text">
  2172. <bdt class="block-component"></bdt>I<bdt
  2173. class="else-block"></bdt>. Professional or
  2174. employment-related information
  2175. </span></span></span></div>
  2176. </td>
  2177. <td
  2178. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2179. <div style="line-height: 1.5;"><span
  2180. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2181. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2182. data-custom-class="body_text">Business contact
  2183. details in order to provide you our Services at a
  2184. business level or job title, work history, and
  2185. professional qualifications if you apply for a job
  2186. with us</span></span></span></div>
  2187. </td>
  2188. <td
  2189. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2190. <div style="line-height: 1.5;"><br></div>
  2191. <div data-custom-class="body_text"
  2192. style="line-height: 1.5;">
  2193. <bdt class="forloop-component"><span
  2194. data-custom-class="body_text">
  2195. <bdt class="block-component"></bdt>
  2196. <bdt class="block-component"></bdt>NO<bdt
  2197. class="statement-end-if-in-editor"></bdt>
  2198. <bdt class="block-component">
  2199. </span></bdt>
  2200. </div>
  2201. <div style="line-height: 1.5;"><br></div>
  2202. </td>
  2203. </tr>
  2204. <tr>
  2205. <td
  2206. style="border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black; width: 33.8274%;">
  2207. <div style="line-height: 1.5;"><span
  2208. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2209. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2210. data-custom-class="body_text">
  2211. <bdt class="block-component"></bdt>J<bdt
  2212. class="else-block"></bdt>. Education Information
  2213. </span></span></span></div>
  2214. </td>
  2215. <td
  2216. style="border-right: 1px solid black; border-top: 1px solid black; width: 51.4385%;">
  2217. <div style="line-height: 1.5;"><span
  2218. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2219. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2220. data-custom-class="body_text">Student records and
  2221. directory information</span></span></span></div>
  2222. </td>
  2223. <td
  2224. style="text-align: center; border-right: 1px solid black; border-top: 1px solid black; width: 14.9084%;">
  2225. <div style="line-height: 1.5;"><br></div>
  2226. <div data-custom-class="body_text"
  2227. style="line-height: 1.5;">
  2228. <bdt class="forloop-component"><span
  2229. data-custom-class="body_text">
  2230. <bdt class="block-component"></bdt>
  2231. <bdt class="block-component"></bdt>NO<bdt
  2232. class="statement-end-if-in-editor"></bdt>
  2233. <bdt class="block-component">
  2234. </span></bdt>
  2235. </div>
  2236. <div style="line-height: 1.5;"><br></div>
  2237. </td>
  2238. </tr>
  2239. <tr>
  2240. <td
  2241. style="border-width: 1px; border-color: black; border-style: solid; width: 33.8274%;">
  2242. <div style="line-height: 1.5;"><span
  2243. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2244. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2245. data-custom-class="body_text">
  2246. <bdt class="block-component"></bdt>K<bdt
  2247. class="else-block"></bdt>. Inferences drawn from
  2248. collected personal information
  2249. </span></span></span></div>
  2250. </td>
  2251. <td
  2252. style="border-bottom: 1px solid black; border-top: 1px solid black; border-right: 1px solid black; width: 51.4385%;">
  2253. <div style="line-height: 1.5;"><span
  2254. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2255. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2256. data-custom-class="body_text">Inferences drawn from
  2257. any of the collected personal information listed
  2258. above to create a profile or summary about, for
  2259. example, an individual’s preferences and
  2260. characteristics</span></span></span></div>
  2261. </td>
  2262. <td
  2263. style="text-align: center; border-right: 1px solid black; border-bottom: 1px solid black; border-top: 1px solid black; width: 14.9084%;">
  2264. <div style="line-height: 1.5;"><br></div>
  2265. <div data-custom-class="body_text"
  2266. style="line-height: 1.5;"><span
  2267. data-custom-class="body_text">
  2268. <bdt class="block-component"></bdt>NO<span
  2269. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2270. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2271. data-custom-class="body_text"><span
  2272. style="color: rgb(89, 89, 89);"><span
  2273. data-custom-class="body_text">
  2274. <bdt class="statement-end-if-in-editor"></bdt>
  2275. </span></span></span></span></span>
  2276. </span></span></span></div>
  2277. <div style="line-height: 1.5;"><br></div>
  2278. </td>
  2279. </tr>
  2280. <tr>
  2281. <td
  2282. style="border-left: 1px solid black; border-right: 1px solid black; border-bottom: 1px solid black; line-height: 1.5;">
  2283. <span data-custom-class="body_text">
  2284. <bdt class="block-component"></bdt>L<bdt
  2285. class="else-block"></bdt>. Sensitive personal
  2286. Information
  2287. </span>
  2288. </td>
  2289. <td
  2290. style="border-right: 1px solid black; border-bottom: 1px solid black; line-height: 1.5;">
  2291. <bdt class="block-component"><span
  2292. data-custom-class="body_text"></span></bdt>
  2293. </td>
  2294. <td
  2295. style="border-right: 1px solid black; border-bottom: 1px solid black;">
  2296. <div data-empty="true" style="text-align: center;"><br>
  2297. </div>
  2298. <div data-custom-class="body_text" data-empty="true"
  2299. style="text-align: center; line-height: 1.5;">
  2300. <bdt class="block-component"><span
  2301. data-custom-class="body_text"></bdt>NO</span>
  2302. <bdt class="statement-end-if-in-editor"><span
  2303. data-custom-class="body_text"></span></bdt>
  2304. </div>
  2305. <div data-empty="true" style="text-align: center;"><br>
  2306. </div>
  2307. </td>
  2308. </tr>
  2309. </tbody>
  2310. </table>
  2311. <div style="line-height: 1.5;">
  2312. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  2313. </span>
  2314. </div>
  2315. <div style="line-height: 1.5;"><br></div>
  2316. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  2317. data-custom-class="body_text">We may also collect other
  2318. personal information outside of these categories through
  2319. instances where you interact with us in person, online, or by
  2320. phone or mail in the context of:</span>
  2321. <bdt class="block-component"></bdt>
  2322. </span></div>
  2323. <ul>
  2324. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  2325. style="font-size: 15px;">Receiving help through our customer
  2326. support channels;<bdt class="statement-end-if-in-editor">
  2327. </bdt></span></li>
  2328. </ul>
  2329. <div><span style="font-size: 15px;">
  2330. <bdt class="block-component"></bdt>
  2331. </span></div>
  2332. <ul>
  2333. <li data-custom-class="body_text"><span
  2334. style="font-size: 15px;">Participation in customer surveys or
  2335. contests; and<bdt class="statement-end-if-in-editor"></bdt>
  2336. </span></li>
  2337. </ul>
  2338. <div><span style="font-size: 15px;">
  2339. <bdt class="block-component"></bdt>
  2340. </span></div>
  2341. <ul>
  2342. <li data-custom-class="body_text"><span
  2343. style="font-size: 15px;">Facilitation in the delivery of our
  2344. Services and to respond to your inquiries.</span>
  2345. <bdt class="statement-end-if-in-editor"><span
  2346. style="font-size: 15px;"></span></bdt>
  2347. </li>
  2348. </ul>
  2349. <div style="line-height: 1.5;">
  2350. <bdt class="block-component"><span
  2351. data-custom-class="body_text"></span></bdt><span
  2352. data-custom-class="body_text">We will use and retain the
  2353. collected personal information as needed to provide the Services
  2354. or for:<bdt class="block-component"></bdt></span></li>
  2355. </ul>
  2356. <div style="line-height: 1.5;"><span
  2357. data-custom-class="body_text">
  2358. <bdt class="block-component">
  2359. <bdt class="block-component"></bdt>
  2360. </bdt>
  2361. </span></li>
  2362. </ul>
  2363. <div style="line-height: 1.5;"><span
  2364. data-custom-class="body_text">
  2365. <bdt class="block-component"></bdt>
  2366. </span></li>
  2367. </ul>
  2368. <div style="line-height: 1.5;"><span
  2369. data-custom-class="body_text">
  2370. <bdt class="block-component"></bdt>
  2371. </span></li>
  2372. </ul>
  2373. <div style="line-height: 1.5;"><span
  2374. data-custom-class="body_text">
  2375. <bdt class="block-component"></bdt>
  2376. </span></li>
  2377. </ul>
  2378. <div style="line-height: 1.5;"><span
  2379. data-custom-class="body_text">
  2380. <bdt class="block-component"></bdt>
  2381. </span></li>
  2382. </ul>
  2383. <div style="line-height: 1.5;"><span
  2384. data-custom-class="body_text">
  2385. <bdt class="block-component"></bdt>
  2386. </span></li>
  2387. </ul>
  2388. <div style="line-height: 1.5;"><span
  2389. data-custom-class="body_text">
  2390. <bdt class="block-component"></bdt>
  2391. </span></div>
  2392. <ul>
  2393. <li data-custom-class="body_text"
  2394. style="line-height: 1.5;"><span
  2395. data-custom-class="body_text">Category <bdt
  2396. class="block-component"></bdt>H<bdt
  2397. class="else-block"></bdt> - <bdt
  2398. class="question">never</bdt>
  2399. <bdt class="statement-end-if-in-editor"></bdt>
  2400. </span></li>
  2401. </ul>
  2402. <div style="line-height: 1.5;"><span
  2403. data-custom-class="body_text">
  2404. <bdt class="block-component"></bdt>
  2405. </span></li>
  2406. </ul>
  2407. <div style="line-height: 1.5;"><span
  2408. data-custom-class="body_text">
  2409. <bdt class="block-component"></bdt>
  2410. </span></li>
  2411. </ul>
  2412. <div style="line-height: 1.5;"><span
  2413. data-custom-class="body_text">
  2414. <bdt class="block-component"></bdt>
  2415. </span></li>
  2416. </ul>
  2417. <div style="line-height: 1.5;"><span
  2418. data-custom-class="body_text">
  2419. <bdt class="block-component"></bdt>
  2420. </span>
  2421. <bdt class="statement-end-if-in-editor"><span
  2422. data-custom-class="body_text"></span>
  2423. </bdt>
  2424. </li>
  2425. </ul>
  2426. <div style="line-height: 1.5;"><strong><span
  2427. style="font-size: 15px;"><span
  2428. data-custom-class="heading_2">
  2429. <h3>Sources of Personal Information
  2430. </h3>
  2431. </span></span></strong><span
  2432. style="font-size: 15px;"><span
  2433. data-custom-class="body_text">Learn more
  2434. about the sources of personal
  2435. information we collect in <bdt
  2436. class="block-component"></bdt>"<bdt
  2437. class="statement-end-if-in-editor">
  2438. </bdt></span></span><span
  2439. data-custom-class="body_text"><a
  2440. data-custom-class="link"
  2441. href="#infocollect"><span
  2442. style="color: rgb (0, 58, 250); font-size: 15px;">WHAT
  2443. INFORMATION DO WE
  2444. COLLECT?</span></a></span><span
  2445. style="font-size: 15px;"><span
  2446. data-custom-class="body_text">
  2447. <bdt class="block-component"></bdt>"
  2448. </span>
  2449. <bdt class="statement-end-if-in-editor">
  2450. <span
  2451. data-custom-class="body_text"></span>
  2452. </bdt>
  2453. </span><span
  2454. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2455. style="font-size: 15px; color: rgb(89, 89, 89);"><strong><span
  2456. data-custom-class="heading_2">
  2457. <h3>How We Use and Share Personal
  2458. Information</h3>
  2459. </span></strong></span></span><span
  2460. data-custom-class="body_text"
  2461. style="font-size: 15px;">
  2462. <bdt class="block-component"></bdt>Learn
  2463. more about how we use your personal
  2464. information in the section, <bdt
  2465. class="block-component"></bdt>"<bdt
  2466. class="statement-end-if-in-editor">
  2467. </bdt>
  2468. </span><a data-custom-class="link"
  2469. href="#infouse"><span
  2470. style="color: rgb(0, 58, 250); font-size: 15px;">HOW
  2471. DO WE PROCESS YOUR
  2472. INFORMATION?</span></a><span
  2473. data-custom-class="body_text"
  2474. style="font-size: 15px;">
  2475. <bdt class="block-component"></bdt>"
  2476. </span>
  2477. <bdt class="statement-end-if-in-editor">
  2478. <span data-custom-class="body_text"
  2479. style="font-size: 15px;"></span>
  2480. </bdt>
  2481. </div>
  2482. <div style="line-height: 1.5;"><br></div>
  2483. <div style="line-height: 1.5;"><span
  2484. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2485. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2486. data-custom-class="body_text"><span
  2487. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2488. data-custom-class="body_text">
  2489. <bdt class="block-component">
  2490. </bdt>
  2491. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
  2492. </bdt>
  2493. </bdt></span></span></div>
  2494. <div style="line-height: 1.5;"><span
  2495. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2496. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2497. data-custom-class="body_text"><strong>Will
  2498. your information be shared with
  2499. anyone
  2500. else?</strong></span></span></span>
  2501. </div>
  2502. <div style="line-height: 1.5;"><br></div>
  2503. <div style="line-height: 1.5;"><span
  2504. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2505. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2506. data-custom-class="body_text">We may
  2507. disclose your personal information
  2508. with our service providers pursuant to
  2509. a written contract between us and each
  2510. service provider. Learn more about how
  2511. we disclose personal information to in
  2512. the section, <bdt
  2513. class="block-component"></bdt>"<bdt
  2514. class="statement-end-if-in-editor">
  2515. </bdt></span></span></span><a
  2516. data-custom-class="link"
  2517. href="#whoshare"><span
  2518. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  2519. style="font-size: 15px; color: rgb(0, 58, 250);">WHEN
  2520. AND WITH WHOM DO WE SHARE YOUR
  2521. PERSONAL
  2522. INFORMATION?</span></span></a><span
  2523. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2524. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2525. data-custom-class="body_text">
  2526. <bdt class="block-component"></bdt>"
  2527. <bdt
  2528. class="statement-end-if-in-editor">
  2529. </bdt>
  2530. </span></span></span></div>
  2531. <div style="line-height: 1.5;"><br></div>
  2532. <div style="line-height: 1.5;"><span
  2533. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2534. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2535. data-custom-class="body_text">We may
  2536. use your personal information for our
  2537. own business purposes, such as for
  2538. undertaking internal research for
  2539. technological development and
  2540. demonstration. This is not considered
  2541. to be <bdt class="block-component">
  2542. </bdt>"selling"<bdt
  2543. class="statement-end-if-in-editor">
  2544. </bdt> of your personal
  2545. information.<span
  2546. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2547. data-custom-class="body_text">
  2548. <bdt class="block-component">
  2549. </bdt>
  2550. </span></span></span></span></span>
  2551. </div>
  2552. <div style="line-height: 1.5;"><br></div>
  2553. <div style="line-height: 1.5;"><span
  2554. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2555. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2556. data-custom-class="body_text">We have
  2557. not disclosed, sold, or shared any
  2558. personal information to third parties
  2559. for a business or commercial purpose
  2560. in the preceding twelve (12) months.
  2561. We<span
  2562. style="color: rgb(89, 89, 89);"> </span>will
  2563. not sell or share personal information
  2564. in the future belonging to website
  2565. visitors, users, and other
  2566. consumers.<span
  2567. style="color: rgb(89, 89, 89);"><span
  2568. data-custom-class="body_text"><span
  2569. style="color: rgb(89, 89, 89);"><span
  2570. data-custom-class="body_text"><span
  2571. style="color: rgb(89, 89, 89);"><span
  2572. data-custom-class="body_text">
  2573. <bdt
  2574. class="statement-end-if-in-editor">
  2575. </bdt>
  2576. </span></span></span></span>
  2577. <bdt class="block-component">
  2578. </bdt>
  2579. </span></span></span></span></span></span></span></span></span>
  2580. </bdt>
  2581. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span
  2582. data-custom-class="body_text"><span
  2583. style="color: rgb(0, 0, 0);"><span
  2584. data-custom-class="body_text">
  2585. <bdt class="block-component"></bdt>
  2586. </span></span></span></span></span><span
  2587. style="font-size: 15px;"><strong><span
  2588. data-custom-class="heading_2">
  2589. <h3>Your Rights</h3>
  2590. </span></strong><span
  2591. data-custom-class="body_text">You have
  2592. rights under certain US state data
  2593. protection laws. However, these rights
  2594. are not absolute, and in certain cases,
  2595. we may decline your request as permitted
  2596. by law. These rights include:</span>
  2597. <bdt class="block-component"></bdt>
  2598. </span></div>
  2599. <ul>
  2600. <li data-custom-class="body_text"
  2601. style="line-height: 1.5;"><span
  2602. style="font-size: 15px;"><strong>Right
  2603. to know</strong> whether or not we are
  2604. processing your personal data<bdt
  2605. class="statement-end-if-in-editor">
  2606. </bdt></span></li>
  2607. </ul>
  2608. <div style="line-height: 1.5;"><span
  2609. style="font-size: 15px;">
  2610. <bdt class="block-component"></bdt>
  2611. </span></div>
  2612. <ul>
  2613. <li data-custom-class="body_text"
  2614. style="line-height: 1.5;"><span
  2615. style="font-size: 15px;"><strong>Right
  2616. to access </strong>your personal data
  2617. <bdt class="statement-end-if-in-editor">
  2618. </bdt>
  2619. </span></li>
  2620. </ul>
  2621. <div style="line-height: 1.5;"><span
  2622. style="font-size: 15px;">
  2623. <bdt class="block-component"></bdt>
  2624. </span></div>
  2625. <ul>
  2626. <li data-custom-class="body_text"
  2627. style="line-height: 1.5;"><span
  2628. style="font-size: 15px;"><strong>Right
  2629. to correct </strong>inaccuracies in
  2630. your personal data<bdt
  2631. class="statement-end-if-in-editor">
  2632. </bdt></span></li>
  2633. </ul>
  2634. <div style="line-height: 1.5;"><span
  2635. style="font-size: 15px;">
  2636. <bdt class="block-component"></bdt>
  2637. </span></div>
  2638. <ul>
  2639. <li data-custom-class="body_text"
  2640. style="line-height: 1.5;"><span
  2641. style="font-size: 15px;"><strong>Right
  2642. to request</strong> the deletion of
  2643. your personal data<bdt
  2644. class="statement-end-if-in-editor">
  2645. </bdt></span></li>
  2646. </ul>
  2647. <div style="line-height: 1.5;"><span
  2648. style="font-size: 15px;">
  2649. <bdt class="block-component"></bdt>
  2650. </span></div>
  2651. <ul>
  2652. <li data-custom-class="body_text"
  2653. style="line-height: 1.5;"><span
  2654. style="font-size: 15px;"><strong>Right
  2655. to obtain a copy </strong>of the
  2656. personal data you previously shared with
  2657. us<bdt
  2658. class="statement-end-if-in-editor">
  2659. </bdt></span></li>
  2660. </ul>
  2661. <div style="line-height: 1.5;"><span
  2662. style="font-size: 15px;">
  2663. <bdt class="block-component"></bdt>
  2664. </span></div>
  2665. <ul>
  2666. <li data-custom-class="body_text"
  2667. style="line-height: 1.5;"><span
  2668. style="font-size: 15px;"><strong>Right
  2669. to non-discrimination</strong> for
  2670. exercising your rights<bdt
  2671. class="statement-end-if-in-editor">
  2672. </bdt></span></li>
  2673. </ul>
  2674. <div style="line-height: 1.5;"><span
  2675. style="font-size: 15px;">
  2676. <bdt class="block-component"></bdt>
  2677. </span></div>
  2678. <ul>
  2679. <li data-custom-class="body_text"
  2680. style="line-height: 1.5;"><span
  2681. style="font-size: 15px;"><strong>Right
  2682. to opt out</strong> of the processing
  2683. of your personal data if it is used for
  2684. targeted advertising<bdt
  2685. class="block-component"></bdt> (or
  2686. sharing as defined under California’s
  2687. privacy law)<bdt
  2688. class="statement-end-if-in-editor">
  2689. </bdt>, the sale of personal data, or
  2690. profiling in furtherance of decisions
  2691. that produce legal or similarly
  2692. significant effects (<bdt
  2693. class="block-component"></bdt>
  2694. "profiling"<bdt
  2695. class="statement-end-if-in-editor">
  2696. </bdt>)<bdt
  2697. class="statement-end-if-in-editor">
  2698. </bdt></span></li>
  2699. </ul>
  2700. <div style="line-height: 1.5;"><span
  2701. style="font-size: 15px;">
  2702. <bdt class="block-component"></bdt>
  2703. </span></div>
  2704. <div style="line-height: 1.5;"><span
  2705. style="font-size: 15px;"><span
  2706. data-custom-class="body_text">Depending
  2707. upon the state where you live, you may
  2708. also have the following rights:</span>
  2709. <bdt class="block-component"></bdt>
  2710. </span></div>
  2711. <ul>
  2712. <li data-custom-class="body_text"
  2713. style="line-height: 1.5;"><span
  2714. style="font-size: 15px;">Right to access
  2715. the categories of personal data being
  2716. processed (as permitted by applicable
  2717. law, including Minnesota’s privacy law)
  2718. <bdt class="statement-end-if-in-editor">
  2719. </bdt>
  2720. </span></li>
  2721. </ul>
  2722. <div style="line-height: 1.5;"><span
  2723. style="font-size: 15px;">
  2724. <bdt class="block-component"></bdt>
  2725. </span></div>
  2726. <ul>
  2727. <li data-custom-class="body_text"
  2728. style="line-height: 1.5;"><span
  2729. style="font-size: 15px;">Right to obtain
  2730. a list of the categories of third
  2731. parties to which we have disclosed
  2732. personal data (as permitted by
  2733. applicable law, including<bdt
  2734. class="block-component"></bdt>
  2735. California's and Delaware's<bdt
  2736. class="else-block"></bdt> privacy law)
  2737. <bdt class="statement-end-if-in-editor">
  2738. </bdt>
  2739. </span></li>
  2740. </ul>
  2741. <div style="line-height: 1.5;">
  2742. <bdt class="block-component"><span
  2743. style="font-size: 15px;"></span></bdt>
  2744. </div>
  2745. <ul>
  2746. <li data-custom-class="body_text"
  2747. style="line-height: 1.5;"><span
  2748. style="font-size: 15px;">Right to obtain
  2749. a list of specific third parties to
  2750. which we have disclosed personal data
  2751. (as permitted by applicable law,
  2752. including<bdt class="block-component">
  2753. </bdt> Minnesota's and Oregon's<bdt
  2754. class="else-block"></bdt> privacy
  2755. law)</span>
  2756. <bdt class="statement-end-if-in-editor">
  2757. <span style="font-size: 15px;"></span>
  2758. </bdt>
  2759. </li>
  2760. </ul>
  2761. <div style="line-height: 1.5;"><span
  2762. style="font-size: 15px;">
  2763. <bdt class="block-component"></bdt>
  2764. </span></div>
  2765. <ul>
  2766. <li data-custom-class="body_text"
  2767. style="line-height: 1.5;"><span
  2768. style="font-size: 15px;">Right to
  2769. review, understand, question, and
  2770. correct how personal data has been
  2771. profiled (as permitted by applicable
  2772. law, including Minnesota’s privacy law)
  2773. <bdt class="statement-end-if-in-editor">
  2774. </bdt>
  2775. </span></li>
  2776. </ul>
  2777. <div style="line-height: 1.5;">
  2778. <bdt class="block-component"><span
  2779. style="font-size: 15px;"></span></bdt>
  2780. </div>
  2781. <ul>
  2782. <li data-custom-class="body_text"
  2783. style="line-height: 1.5;"><span
  2784. style="font-size: 15px;">Right to limit
  2785. use and disclosure of sensitive personal
  2786. data (as permitted by applicable law,
  2787. including California’s privacy
  2788. law)</span>
  2789. <bdt class="statement-end-if-in-editor">
  2790. <span style="font-size: 15px;"></span>
  2791. </bdt>
  2792. </li>
  2793. </ul>
  2794. <div style="line-height: 1.5;">
  2795. <bdt class="block-component"><span
  2796. style="font-size: 15px;"></span></bdt>
  2797. </div>
  2798. <ul>
  2799. <li data-custom-class="body_text"
  2800. style="line-height: 1.5;"><span
  2801. style="font-size: 15px;">Right to opt
  2802. out of the collection of sensitive data
  2803. and personal data collected through the
  2804. operation of a voice or facial
  2805. recognition feature (as permitted by
  2806. applicable law, including Florida’s
  2807. privacy law)</span>
  2808. <bdt class="statement-end-if-in-editor">
  2809. <span style="font-size: 15px;"></span>
  2810. </bdt>
  2811. </li>
  2812. </ul>
  2813. <div style="line-height: 1.5;"><span
  2814. style="font-size: 15px;">
  2815. <bdt class="statement-end-if-in-editor">
  2816. </bdt>
  2817. </span><strong><span
  2818. style="font-size: 15px;"><span
  2819. data-custom-class="heading_2">
  2820. <h3>How to Exercise Your Rights</h3>
  2821. </span></span></strong><span
  2822. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2823. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2824. data-custom-class="body_text">To
  2825. exercise these rights, you can contact
  2826. us <bdt class="block-component"></bdt>
  2827. by submitting
  2828. a </span></span></span><a
  2829. data-custom-class="link"
  2830. href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831"
  2831. rel="noopener noreferrer"
  2832. target="_blank"><span
  2833. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  2834. style="font-size: 15px; color: rgb(0, 58, 250);">data
  2835. subject access
  2836. request</span></span></a><span
  2837. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2838. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2839. data-custom-class="body_text">, <bdt
  2840. class="block-component"></bdt>
  2841. </span><span
  2842. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2843. data-custom-class="body_text"><span
  2844. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2845. data-custom-class="body_text">
  2846. <bdt class="block-component">
  2847. </bdt>by emailing us at <bdt
  2848. class="question">
  2849. icolor_support@jccy-tech.com
  2850. </bdt>, <bdt
  2851. class="statement-end-if-in-editor">
  2852. </bdt>
  2853. <bdt class="block-component">
  2854. </bdt>
  2855. </span><span
  2856. data-custom-class="body_text">
  2857. <bdt class="block-component">
  2858. </bdt>
  2859. <bdt class="block-component">
  2860. <span
  2861. data-custom-class="body_text">
  2862. <bdt
  2863. class="block-component">
  2864. </bdt>
  2865. </bdt>
  2866. </span></span></span></span></span></span></span></span></span></span></span></span><span
  2867. data-custom-class="body_text">or by
  2868. referring to the contact details at the
  2869. bottom of this
  2870. document.</span></span></span>
  2871. <bdt class="block-component"><span
  2872. style="font-size: 15px;"></span></bdt>
  2873. <bdt class="block-component"><span
  2874. style="font-size: 15px;"></span></bdt>
  2875. </div>
  2876. <div style="line-height: 1.5;"><span
  2877. style="font-size: 15px;"><br></span></div>
  2878. <div style="line-height: 1.5;"><span
  2879. style="font-size: 15px;"><span
  2880. data-custom-class="body_text">We will
  2881. <bdt class="block-component"></bdt>honor
  2882. <bdt class="statement-end-if-in-editor">
  2883. </bdt> your opt-out preferences if you
  2884. enact the 
  2885. </span></span><span
  2886. data-custom-class="body_text"><a
  2887. data-custom-class="link"
  2888. href="https://globalprivacycontrol.org/"
  2889. rel="noopener noreferrer"
  2890. target="_blank"><span
  2891. style="color: rgb(0, 58, 250); font-size: 15px;">Global
  2892. Privacy Control</span></a></span><span
  2893. style="font-size: 15px;"><span
  2894. data-custom-class="body_text"> (GPC)
  2895. opt-out signal on your
  2896. browser.</span></span>
  2897. <bdt class="statement-end-if-in-editor">
  2898. <span style="font-size: 15px;"></span>
  2899. </bdt>
  2900. </div>
  2901. <div style="line-height: 1.5;"><br></div>
  2902. <div style="line-height: 1.5;"><span
  2903. style="font-size: 15px;"><span
  2904. data-custom-class="body_text">Under
  2905. certain US state data protection laws,
  2906. you can designate an <bdt
  2907. class="block-component"></bdt>
  2908. authorized<bdt
  2909. class="statement-end-if-in-editor">
  2910. </bdt> agent to make a request on your
  2911. behalf. We may deny a request from an
  2912. <bdt class="block-component"></bdt>
  2913. authorized<bdt
  2914. class="statement-end-if-in-editor">
  2915. </bdt> agent that does not submit proof
  2916. that they have been validly <bdt
  2917. class="block-component"></bdt>
  2918. authorized<bdt
  2919. class="statement-end-if-in-editor">
  2920. </bdt> to act on your behalf in
  2921. accordance with applicable
  2922. laws.
  2923. </span><br><strong><span
  2924. data-custom-class="heading_2">
  2925. <h3>Request Verification</h3>
  2926. </span></strong><span
  2927. data-custom-class="body_text">Upon
  2928. receiving your request, we will need to
  2929. verify your identity to determine you
  2930. are the same person about whom we have
  2931. the information in our system. We will
  2932. only use personal information provided
  2933. in your request to verify your identity
  2934. or authority to make the request.
  2935. However, if we cannot verify your
  2936. identity from the information already
  2937. maintained by us, we may request that
  2938. you provide additional information for
  2939. the purposes of verifying your identity
  2940. and for security or fraud-prevention
  2941. purposes.</span></span></div>
  2942. <div style="line-height: 1.5;"><span
  2943. style="font-size: 15px;"><br></span></div>
  2944. <div style="line-height: 1.5;"><span
  2945. style="font-size: 15px;"><span
  2946. data-custom-class="body_text">If you
  2947. submit the request through an <bdt
  2948. class="block-component"></bdt>
  2949. authorized<bdt
  2950. class="statement-end-if-in-editor">
  2951. </bdt> agent, we may need to collect
  2952. additional information to verify your
  2953. identity before processing your request
  2954. and the agent will need to provide a
  2955. written and signed permission from you
  2956. to submit such request on your
  2957. behalf.</span></span>
  2958. <bdt class="block-component"><span
  2959. style="font-size: 15px;"></span></bdt>
  2960. <span style="font-size: 15px;"><span
  2961. data-custom-class="heading_2"><strong>
  2962. <h3>Appeals</h3>
  2963. </strong></span><span
  2964. data-custom-class="body_text">Under
  2965. certain US state data protection laws,
  2966. if we decline to take action regarding
  2967. your request, you may appeal our
  2968. decision by emailing us at <bdt
  2969. class="block-component"></bdt>
  2970. <bdt class="question">
  2971. guoziyun@jccy-tech.com</bdt>
  2972. <bdt class="else-block"></bdt>. We will
  2973. inform you in writing of any action
  2974. taken or not taken in response to the
  2975. appeal, including a written explanation
  2976. of the reasons for the decisions. If
  2977. your appeal is denied, you may submit a
  2978. complaint to your state attorney
  2979. general.
  2980. </span>
  2981. <bdt class="statement-end-if-in-editor">
  2982. </bdt>
  2983. </span><span
  2984. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2985. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2986. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2987. data-custom-class="body_text">
  2988. <bdt class="block-component">
  2989. <bdt class="block-component">
  2990. </span></bdt>
  2991. </span></span></span></span></span></span></span></span></span></span>
  2992. <bdt class="block-component"><span
  2993. style="font-size: 15px;"></span></bdt>
  2994. <span style="font-size: 15px;"><strong><span
  2995. data-custom-class="heading_2">
  2996. <h3>California <bdt
  2997. class="block-component"></bdt>
  2998. "Shine The Light"<bdt
  2999. class="statement-end-if-in-editor">
  3000. </bdt> Law</h3>
  3001. </span></strong><span
  3002. data-custom-class="body_text">California
  3003. Civil Code Section 1798.83, also known
  3004. as the <bdt class="block-component">
  3005. </bdt>"Shine The Light"<bdt
  3006. class="statement-end-if-in-editor">
  3007. </bdt> law, permits our users who are
  3008. California residents to request and
  3009. obtain from us, once a year and free of
  3010. charge, information about categories of
  3011. personal information (if any) we
  3012. disclosed to third parties for direct
  3013. marketing purposes and the names and
  3014. addresses of all third parties with
  3015. which we shared personal information in
  3016. the immediately preceding calendar year.
  3017. If you are a California resident and
  3018. would like to make such a request,
  3019. please submit your request in writing to
  3020. us by using the contact details provided
  3021. in the section <bdt
  3022. class="block-component"></bdt>"<bdt
  3023. class="statement-end-if-in-editor">
  3024. </bdt></span></span><span
  3025. data-custom-class="body_text"><a
  3026. data-custom-class="link"
  3027. href="#contact"><span
  3028. style="color: rgb(0, 58, 250); font-size: 15px;">HOW
  3029. CAN YOU CONTACT US ABOUT THIS
  3030. NOTICE?</span></a></span><span
  3031. style="font-size: 15px;"><span
  3032. data-custom-class="body_text">
  3033. <bdt class="block-component"></bdt>"
  3034. </span>
  3035. <bdt class="statement-end-if-in-editor">
  3036. <span
  3037. data-custom-class="body_text"></span>
  3038. </bdt>
  3039. </span>
  3040. <bdt class="statement-end-if-in-editor">
  3041. <span style="font-size: 15px;"></span>
  3042. </bdt><span
  3043. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3044. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3045. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3046. data-custom-class="body_text"><span
  3047. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3048. data-custom-class="body_text"><span
  3049. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3050. data-custom-class="body_text"><span
  3051. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3052. data-custom-class="body_text">
  3053. <bdt
  3054. class="statement-end-if-in-editor">
  3055. <span
  3056. data-custom-class="body_text"><span
  3057. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3058. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3059. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3060. data-custom-class="body_text"><span
  3061. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3062. data-custom-class="body_text"><span
  3063. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3064. data-custom-class="body_text"><span
  3065. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3066. data-custom-class="body_text">
  3067. <bdt
  3068. class="statement-end-if-in-editor">
  3069. <bdt
  3070. class="statement-end-if-in-editor">
  3071. </bdt>
  3072. </bdt>
  3073. </span></span></span></span></span></span></span></span></span></span></span>
  3074. </bdt>
  3075. </span></span></span></span></span></span></span></span></span></span>
  3076. <bdt class="block-component"><span
  3077. style="font-size: 15px;"></span></bdt>
  3078. </div>
  3079. <div style="line-height: 1.5;"><span
  3080. style="font-size: 15px;"><br></span></div>
  3081. <div style="line-height: 1.5;"><span
  3082. id="otherlaws"
  3083. style="font-size: 15px;"><strong><span
  3084. data-custom-class="heading_1">
  3085. <h2>13. DO OTHER REGIONS HAVE SPECIFIC
  3086. PRIVACY RIGHTS?</h2>
  3087. </span></strong></span><span
  3088. style="font-size: 15px;"><em><strong><span
  3089. data-custom-class="body_text">In
  3090. Short:</span></strong><span
  3091. data-custom-class="body_text"> You may
  3092. have additional rights based on the
  3093. country you reside in.</span></em>
  3094. <bdt class="block-component"></bdt>
  3095. </span>
  3096. <bdt class="block-component"><span
  3097. style="font-size: 15px;"></span></bdt>
  3098. <span style="font-size: 15px;"><strong><span
  3099. data-custom-class="heading_2">
  3100. <h3>Republic of South Africa</h3>
  3101. </span></strong><span
  3102. data-custom-class="body_text">At any
  3103. time, you have the right to request
  3104. access to or correction of your personal
  3105. information. You can make such a request
  3106. by contacting us by using the contact
  3107. details provided in the section <bdt
  3108. class="block-component"></bdt>"<bdt
  3109. class="statement-end-if-in-editor">
  3110. </bdt></span></span><span
  3111. data-custom-class="link"><a
  3112. href="#request"><span
  3113. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3114. data-custom-class="link">HOW CAN YOU
  3115. REVIEW, UPDATE, OR DELETE THE DATA
  3116. WE COLLECT FROM
  3117. YOU?</span></span></a></span><span
  3118. style="font-size: 15px;"><span
  3119. data-custom-class="body_text">
  3120. <bdt class="block-component"></bdt>"
  3121. </span>
  3122. <bdt class="statement-end-if-in-editor">
  3123. <span
  3124. data-custom-class="body_text"></span>
  3125. </bdt>
  3126. </span>
  3127. </div>
  3128. <div style="line-height: 1.5;"><span
  3129. style="font-size: 15px;"><br></span></div>
  3130. <div style="line-height: 1.5;"><span
  3131. style="font-size: 15px;"><span
  3132. data-custom-class="body_text">If you are
  3133. unsatisfied with the manner in which we
  3134. address any complaint with regard to our
  3135. processing of personal information, you
  3136. can contact the office of the regulator,
  3137. the details of which are:</span></span>
  3138. </div>
  3139. <div style="line-height: 1.5;"><span
  3140. style="font-size: 15px;"><br></span></div>
  3141. <div style="line-height: 1.5;"><a
  3142. data-custom-class="link"
  3143. href="https://inforegulator.org.za/"
  3144. rel="noopener noreferrer"
  3145. target="_blank"><span
  3146. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3147. data-custom-class="body_text"><span
  3148. data-custom-class="link">The
  3149. Information Regulator (South
  3150. Africa)</span></span></span></a>
  3151. </div>
  3152. <div style="line-height: 1.5;"><span
  3153. data-custom-class="body_text"><span
  3154. style="font-size: 15px;">General
  3155. enquiries: </span><a
  3156. data-custom-class="link"
  3157. href="mailto:enquiries@inforegulator.org.za"
  3158. rel="noopener noreferrer"
  3159. target="_blank"><span
  3160. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3161. data-custom-class="link">enquiries@inforegulator.org.za</span></span></a></span>
  3162. </div>
  3163. <div style="line-height: 1.5;"><span
  3164. data-custom-class="body_text"><span
  3165. style="font-size: 15px;">Complaints
  3166. (complete POPIA/PAIA form 5): </span><a
  3167. data-custom-class="link"
  3168. href="mailto:PAIAComplaints@inforegulator.org.za"
  3169. rel="noopener noreferrer"
  3170. target="_blank"><span
  3171. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3172. data-custom-class="link">PAIAComplaints@inforegulator.org.za</span></span></a><span
  3173. style="font-size: 15px;"> & </span></span><a
  3174. data-custom-class="link"
  3175. href="mailto:POPIAComplaints@inforegulator.org.za"
  3176. rel="noopener noreferrer"
  3177. target="_blank"><span
  3178. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3179. data-custom-class="body_text"><span
  3180. data-custom-class="link">POPIAComplaints@inforegulator.org.za</span></span></span></a><span
  3181. style="font-size: 15px;">
  3182. <bdt class="statement-end-if-in-editor">
  3183. </bdt>
  3184. <bdt class="statement-end-if-in-editor">
  3185. </bdt>
  3186. </span>
  3187. <bdt class="block-component"><span
  3188. style="font-size: 15px;"></span></bdt>
  3189. </div>
  3190. <div style="line-height: 1.5;"><br></div>
  3191. <div id="policyupdates"
  3192. style="line-height: 1.5;"><span
  3193. style="color: rgb(127, 127, 127);"><span
  3194. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3195. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3196. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3197. id="control"
  3198. style="color: rgb(0, 0, 0);"><strong><span
  3199. data-custom-class="heading_1">
  3200. <h2>14. DO WE MAKE UPDATES TO
  3201. THIS NOTICE?</h2>
  3202. </span></strong></span></span></span></span></span><span
  3203. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3204. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3205. data-custom-class="body_text"><em><strong>In
  3206. Short: </strong>Yes, we will
  3207. update this notice as necessary to
  3208. stay compliant with relevant
  3209. laws.</em></span></span></span>
  3210. </div>
  3211. <div style="line-height: 1.5;"><br></div>
  3212. <div style="line-height: 1.5;"><span
  3213. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3214. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3215. data-custom-class="body_text">We may
  3216. update this Privacy Notice from time
  3217. to time. The updated version will be
  3218. indicated by an updated <bdt
  3219. class="block-component"></bdt>
  3220. "Revised"<bdt
  3221. class="statement-end-if-in-editor">
  3222. </bdt> date at the top of this Privacy
  3223. Notice. If we make material changes to
  3224. this Privacy Notice, we may notify you
  3225. either by prominently posting a notice
  3226. of such changes or by directly sending
  3227. you a notification. We encourage you
  3228. to review this Privacy Notice
  3229. frequently to be informed of how we
  3230. are protecting your
  3231. information.</span></span></span>
  3232. </div>
  3233. <div style="line-height: 1.5;"><br></div>
  3234. <div id="contact" style="line-height: 1.5;">
  3235. <span
  3236. style="color: rgb(127, 127, 127);"><span
  3237. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3238. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3239. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3240. id="control"
  3241. style="color: rgb(0, 0, 0);"><strong><span
  3242. data-custom-class="heading_1">
  3243. <h2>15. HOW CAN YOU CONTACT US
  3244. ABOUT THIS NOTICE?</h2>
  3245. </span></strong></span></span></span></span></span><span
  3246. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3247. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3248. data-custom-class="body_text">If you
  3249. have questions or comments about this
  3250. notice, you may <span
  3251. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3252. data-custom-class="body_text">
  3253. <bdt class="block-component">
  3254. <bdt class="block-component">
  3255. </bdt>
  3256. </bdt>email us at <bdt
  3257. class="question">
  3258. icolor_support@jccy-tech.com or 
  3259. </bdt>
  3260. <bdt
  3261. class="statement-end-if-in-editor">
  3262. <bdt class="block-component">
  3263. </bdt>
  3264. </bdt>
  3265. </span></span><span
  3266. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3267. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3268. data-custom-class="body_text">contact
  3269. us by post
  3270. at:</span></span></span></span></span></span>
  3271. </div>
  3272. <div style="line-height: 1.5;"><br></div>
  3273. <div style="line-height: 1.5;"><span
  3274. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3275. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3276. data-custom-class="body_text"><span
  3277. style="font-size: 15px;"><span
  3278. style="color: rgb(89, 89, 89);"><span
  3279. style="color: rgb(89, 89, 89);"><span
  3280. data-custom-class="body_text">
  3281. <bdt class="question">JCCY
  3282. Inc.</bdt>
  3283. </span></span></span></span></span><span
  3284. data-custom-class="body_text"><span
  3285. style="color: rgb(89, 89, 89);"><span
  3286. data-custom-class="body_text">
  3287. <bdt class="block-component">
  3288. </bdt>
  3289. </bdt>
  3290. </span></span></span></span></div>
  3291. <div style="line-height: 1.5;"><span
  3292. style="font-size: 15px;"><span
  3293. data-custom-class="body_text">
  3294. <bdt class="question">Shining Building
  3295. 17 floor</bdt><span
  3296. style="color: rgb(89, 89, 89);"><span
  3297. style="font-size: 15px;">
  3298. <bdt class="block-component"></bdt>
  3299. </span></span>
  3300. </span></span></div>
  3301. <div style="line-height: 1.5;"><span
  3302. data-custom-class="body_text"
  3303. style="font-size: 15px;">
  3304. <bdt class="question">Haidian street<span
  3305. data-custom-class="body_text"><span
  3306. style="color: rgb(89, 89, 89);"><span
  3307. style="font-size: 15px;">
  3308. <bdt
  3309. class="statement-end-if-in-editor">
  3310. </bdt>
  3311. </span></span></span></bdt>
  3312. </span></div>
  3313. <div style="line-height: 1.5;"><span
  3314. style="font-size: 15px;"><span
  3315. data-custom-class="body_text">
  3316. <bdt class="question">Beijing</bdt><span
  3317. style="color: rgb(89, 89, 89);"><span
  3318. style="font-size: 15px;">
  3319. <bdt class="block-component"></bdt>
  3320. <bdt class="block-component"></bdt>
  3321. <bdt class="question">100080‌</bdt>
  3322. <bdt
  3323. class="statement-end-if-in-editor">
  3324. </bdt>
  3325. <bdt class="block-component"></bdt>
  3326. <bdt class="block-component"></bdt>
  3327. </span></span>
  3328. </span></bdt></span></div>
  3329. <div style="line-height: 1.5;"><span
  3330. style="font-size: 15px;"><span
  3331. data-custom-class="body_text"><span
  3332. style="font-size: 15px;"><span
  3333. data-custom-class="body_text"><span
  3334. style="color: rgb(89, 89, 89);">
  3335. <bdt class="block-component">
  3336. </bdt>
  3337. </span></span></span>
  3338. <bdt class="question">China</bdt><span
  3339. style="font-size: 15px;"><span
  3340. data-custom-class="body_text"><span
  3341. style="color: rgb(89, 89, 89);">
  3342. <bdt
  3343. class="statement-end-if-in-editor">
  3344. <span
  3345. style="font-size: 15px;"><span
  3346. data-custom-class="body_text"><span
  3347. style="color: rgb(89, 89, 89);">
  3348. <bdt
  3349. class="statement-end-if-in-editor">
  3350. <span
  3351. style="font-size: 15px;"><span
  3352. data-custom-class="body_text"><span
  3353. style="color: rgb(89, 89, 89);">
  3354. <bdt
  3355. class="statement-end-if-in-editor">
  3356. </bdt>
  3357. </span></span></span>
  3358. </bdt>
  3359. <bdt
  3360. class="statement-end-if-in-editor">
  3361. </bdt>
  3362. </span></span></span><span
  3363. data-custom-class="body_text"><span
  3364. style="color: rgb(89, 89, 89);"><span
  3365. style="font-size: 15px;">
  3366. <bdt
  3367. class="statement-end-if-in-editor">
  3368. </bdt>
  3369. </span></span></span>
  3370. </bdt>
  3371. </span></span></span>
  3372. </span><span
  3373. data-custom-class="body_text"><span
  3374. style="font-size: 15px;"><span
  3375. data-custom-class="body_text"><span
  3376. style="color: rgb(89, 89, 89);">
  3377. <bdt
  3378. class="statement-end-if-in-editor">
  3379. <span
  3380. style="color: rgb(89, 89, 89);"><span
  3381. style="font-size: 15px;"><span
  3382. data-custom-class="body_text">
  3383. <bdt
  3384. class="block-component">
  3385. <bdt
  3386. class="block-component">
  3387. </bdt>
  3388. </span></span></span>
  3389. </span></span></span>
  3390. <bdt class="block-component"><span
  3391. style="font-size: 15px;"></span>
  3392. </bdt><span
  3393. style="font-size: 15px;"><span
  3394. data-custom-class="body_text"><span
  3395. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3396. style="font-size: 15px;"><span
  3397. data-custom-class="body_text">
  3398. <bdt
  3399. class="statement-end-if-in-editor">
  3400. <bdt
  3401. class="block-component">
  3402. </bdt>
  3403. </span></span></div>
  3404. <div style="line-height: 1.5;"><br></div>
  3405. <div id="request" style="line-height: 1.5;">
  3406. <span
  3407. style="color: rgb(127, 127, 127);"><span
  3408. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3409. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3410. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3411. id="control"
  3412. style="color: rgb(0, 0, 0);"><strong><span
  3413. data-custom-class="heading_1">
  3414. <h2>16. HOW CAN YOU REVIEW,
  3415. UPDATE, OR DELETE THE DATA
  3416. WE COLLECT FROM YOU?</h2>
  3417. </span></strong></span></span></span></span></span><span
  3418. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3419. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3420. data-custom-class="body_text">
  3421. <bdt class="block-component"></bdt>
  3422. Based on the applicable laws of your
  3423. country<bdt class="block-component">
  3424. </bdt> or state of residence in the US
  3425. <bdt
  3426. class="statement-end-if-in-editor">
  3427. </bdt>, you may<bdt
  3428. class="else-block">
  3429. <bdt class="block-component"> have
  3430. the right to request access to the
  3431. personal information we collect
  3432. from you, details about how we
  3433. have processed it, correct
  3434. inaccuracies, or delete your
  3435. personal information. You may also
  3436. have the right to <bdt
  3437. class="block-component"></bdt>
  3438. withdraw your consent to our
  3439. processing of your personal
  3440. information. These rights may be
  3441. limited in some circumstances by
  3442. applicable law. To request to
  3443. review, update, or delete your
  3444. personal information, please <bdt
  3445. class="block-component"></bdt>
  3446. fill out and submit a 
  3447. </span><span
  3448. style="color: rgb(0, 58, 250);"><span
  3449. data-custom-class="body_text"><span
  3450. style="color: rgb(0, 58, 250); font-size: 15px;"><a
  3451. data-custom-class="link"
  3452. href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831"
  3453. rel="noopener noreferrer"
  3454. target="_blank">data subject
  3455. access
  3456. request</a></span></span></span>
  3457. <bdt class="block-component"><span
  3458. data-custom-class="body_text"></bdt>
  3459. </span></span><span
  3460. data-custom-class="body_text">.</span></span></span>
  3461. </div>
  3462. <style>
  3463. ul {
  3464. list-style-type: square;
  3465. }
  3466. ul>li>ul {
  3467. list-style-type: circle;
  3468. }
  3469. ul>li>ul>li>ul {
  3470. list-style-type: square;
  3471. }
  3472. ol li {
  3473. font-family: Arial;
  3474. }
  3475. </style>
  3476. </div>