From 778221bf415bd4d72493b2ae40781c2a6b19aef9 Mon Sep 17 00:00:00 2001 From: bootje Date: Mon, 20 Apr 2020 09:56:09 +0200 Subject: [PATCH] worked on tag_comparison.py --- website/.DS_Store | Bin 6148 -> 6148 bytes website/about.html | 14 + website/chapter1.py | 30 - website/faceapp.html | 32 +- website/faceapp.txt | 3 +- website/faceapp_info.txt | 6 + website/faceapp_infos.txt | 11 + website/img/.DS_Store | Bin 0 -> 6148 bytes website/img/faceapp_logo.png | Bin 0 -> 15345 bytes website/img/tartu.jpeg | Bin 0 -> 76549 bytes website/output.html | 0 website/pos_tagger.html | 5827 ++++++++++++++++++++++ website/pos_tagger.py | 74 +- website/russia-estonia.txt | 61 + website/stopwords.txt | 1 + website/storage.py | 24 + website/tag_checkbox.py | 11 + website/tag_comparison.html | 7956 ++++++++++++++++++++++++++++++ website/tag_comparison.py | 310 ++ website/tag_comparison_copy.html | 6728 +++++++++++++++++++++++++ website/tag_with_menu.html | 5846 ++++++++++++++++++++++ website/tag_with_menu.py | 193 + website/test.html | 33 +- website/test.py | 203 +- 24 files changed, 27234 insertions(+), 129 deletions(-) create mode 100644 website/about.html delete mode 100644 website/chapter1.py create mode 100644 website/faceapp_info.txt create mode 100644 website/faceapp_infos.txt create mode 100644 website/img/.DS_Store create mode 100644 website/img/faceapp_logo.png create mode 100644 website/img/tartu.jpeg delete mode 100644 website/output.html create mode 100644 website/pos_tagger.html create mode 100644 website/russia-estonia.txt create mode 100644 website/storage.py create mode 100644 website/tag_checkbox.py create mode 100644 website/tag_comparison.html create mode 100644 website/tag_comparison.py create mode 100644 website/tag_comparison_copy.html create mode 100644 website/tag_with_menu.html create mode 100644 website/tag_with_menu.py diff --git a/website/.DS_Store b/website/.DS_Store index 1406987a6f8672075d23de88e413525ba24a8557..02437b12cc9f906a9cc9e0ee9fff5c55d59318a6 100644 GIT binary patch delta 334 zcmZoMXfc=|#>B)qu~2NHo}wr_0|Nsi1A_oVaY0f}eiD#(Dyd-eM8@Te^&lx`hD?TB zhV-OzWa*sD;t~Uc>x@jyEUawo92{I6T)bSd!5R7G!6k_$rNvH(MbRK$Kw?Qo5|ka1 zpPvI~Cnkkurk2MGh&boxl_X~7r51rTXQreAmBfT+=B4D9JJsix=A{&a4GML^s3n;QVx#%8s(oE+k+hPIvwxs_GbHMMoKfF1w>Mxg(| zfFDZ3sM$aU)PrTgMR_^-dFenAkZNXze1^@!jQ?0Rvvcrs07DBHBHx)O^NUz=0Hwj^ KZ4MCG!VCa!GgS!y delta 82 zcmZoMXfc=|#>B`mu~2NHo}vgV0|Nsi1A_oVa!yiyeh!ewz&x>V1taTbCT3RF%@dfv hF>Yq(;O7A9*xbncoq009h$RO|6;Kn?<^Yi`%mCg%5k>$2 diff --git a/website/about.html b/website/about.html new file mode 100644 index 0000000..ccad398 --- /dev/null +++ b/website/about.html @@ -0,0 +1,14 @@ + + + + + + + +About: + +Source: +https://afrolegends.com/2016/12/14/colonial-treaties-in-africa-british-protection-treaty-with-the-itsekiri-of-nigeria-1884/ + + + \ No newline at end of file diff --git a/website/chapter1.py b/website/chapter1.py deleted file mode 100644 index fdc58c6..0000000 --- a/website/chapter1.py +++ /dev/null @@ -1,30 +0,0 @@ -import nltk - -file=open('faceapp.txt','r') -raw=file.read() -tokens = nltk.word_tokenize(raw) -faceapp = nltk.Text(tokens) - - -# my stopwords are common words I don't want to count, like "a", "an", "the". -stopwords = set(line.strip() for line in open('stopwords.txt')) - -# dictionary -wordcount = {} - -# spliting words from punctuation so "book" and "book!" counts as the same word -for word in raw.lower().split(): - word = word.replace(".","") - word = word.replace(",","") - word = word.replace(":","") - word = word.replace("\"","") - word = word.replace("!","") - word = word.replace("“","") - word = word.replace("‘","") - word = word.replace("*","") - word = word.replace("(","") - word = word.replace(")","") - - -faceapp.concordance('a') - diff --git a/website/faceapp.html b/website/faceapp.html index ed30db2..a44f909 100644 --- a/website/faceapp.html +++ b/website/faceapp.html @@ -26,10 +26,20 @@ url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg"); } + @font-face { + font-family: "SourceCodePro"; + src: url("http://bohyewoo.com/webfonts/Source_Code_Pro/SourceCodePro-Regular.ttf"); + } + + + + + body { + background-color: whitesmoke; # font-family: Belgika; # font-weight: 8th; - letter-spacing: 0.5px; + # letter-spacing: -0.3px; font-size: 20px; line-height: 1.2; @@ -57,9 +67,10 @@ } .paragraph { - font-family: helvetica; + font-family: SourceCodePro; font-weight: regular; - width: 70%; + letter-spacing: -0.5px; + width: 50%; float: right; } @@ -5694,9 +5705,22 @@ or entity . +Platform +: +FaceApp +https +: +//www.faceapp.com +Original +text +from +: +https +: +//www.faceapp.com/privacy-en.html - +
colonial words:
services(69)
agreement(60) diff --git a/website/faceapp.txt b/website/faceapp.txt index c23bd6c..3dacf85 100644 --- a/website/faceapp.txt +++ b/website/faceapp.txt @@ -131,4 +131,5 @@ Third-Party Beneficiary. The parties acknowledge and agree that Apple, and Apple You may not use, export, import, or transfer all or any portion of the Services except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Services, and any other applicable laws. In particular, but without limitation, the Services may not be exported or re-exported (a) into any United States embargoes countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Services, you represent and warrant that (y) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (z) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Services for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by FaceApp are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer FaceApp products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations. 21. Miscellaneous -In accordance with California Civil Code section 1789.3, you may report complaints to the Complaint Assistance Unit of the Division of Consumer Services of the California Department of Consumer Affairs by contacting them in writing at 400 R Street, Sacramento, CA 95814, or by telephone at (800) 952-5210. This Agreement constitutes the entire agreement between you and FaceApp relating to your access to and use of our Services. The failure of FaceApp to exercise or enforce any right or provision of this Agreement will not operate as a waiver of such right or provision. The section titles in this Agreement is for convenience only and have no legal or contractual effect. Except as otherwise provided herein, this Agreement is intended solely for the benefit of the parties and are not intended to confer third party beneficiary rights upon any other person or entity. \ No newline at end of file +In accordance with California Civil Code section 1789.3, you may report complaints to the Complaint Assistance Unit of the Division of Consumer Services of the California Department of Consumer Affairs by contacting them in writing at 400 R Street, Sacramento, CA 95814, or by telephone at (800) 952-5210. This Agreement constitutes the entire agreement between you and FaceApp relating to your access to and use of our Services. The failure of FaceApp to exercise or enforce any right or provision of this Agreement will not operate as a waiver of such right or provision. The section titles in this Agreement is for convenience only and have no legal or contractual effect. Except as otherwise provided herein, this Agreement is intended solely for the benefit of the parties and are not intended to confer third party beneficiary rights upon any other person or entity. + diff --git a/website/faceapp_info.txt b/website/faceapp_info.txt new file mode 100644 index 0000000..e0791da --- /dev/null +++ b/website/faceapp_info.txt @@ -0,0 +1,6 @@ +Platform: FaceApp https://www.faceapp.com +Initial release: December 31, 2016 +Type:Image editing +Description: FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence.[1][2][3] The app can transform a face to make it smile, look younger, look older, or change gender. +Original Terms of Service: https://www.faceapp.com/privacy-en.html + diff --git a/website/faceapp_infos.txt b/website/faceapp_infos.txt new file mode 100644 index 0000000..a9c178f --- /dev/null +++ b/website/faceapp_infos.txt @@ -0,0 +1,11 @@ +[('platform', 'FaceApp'), ('Type', 'Image editing'), ('Initial release', 'December 31, 2016'), ('Type', 'Image editing')] + + + + +Platform, FaceApp https://www.faceapp.com +Initial release: December 31, 2016 +Type:Image editing +Description: FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence.[1][2][3] The app can transform a face to make it smile, look younger, look older, or change gender. +Original Terms of Service: https://www.faceapp.com/privacy-en.html + diff --git a/website/img/.DS_Store b/website/img/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1b933972debac1bb4479f67a188c64ecfc794033 GIT binary patch literal 6148 zcmeHKy-ou$47Q;XC$V&7%*0+E03Frw1bqSe!_Uyu-NMF@vCmarjPHw0)uT5sAcT-D z#h;VdPVSQ~iA6-`ubY|3R75H?qS6=<4v$Wqx$^|5CC5^F>9^0b#kw0w^cRP?_X~NF zrL5%<`mq1DKicjWkG5-?)wWx~qk4ba-P~U9?@sfy-R2u!{R`O|tah|;n883W5DWwZ z!N89*fIFK~T^fcC27-ZL;J^UShlEC~9kXFMI-p7k0OT{e2yE68j7g5QV>ZMLL@g9( zq3R`uS~$j&`_+!w(85K%_)uT@vv|?6I`XIDE?OIg4hDjOAp_^uo$~&_$1gKlc}AkMg_qPybt4TybRCodHeF?B6$601pb@#j99GV&3*T}LYWJ$JU!}wSW+Z=*rg;xaF*lSo= zdkw?}v9aLgig0YivdbBUJ%9xS=h!HJG}PV2FqX>d1YgX)ks3pNE#h8qq%3^ z{rcYT`!oOStm^81-S3)t-IecEXXbxpR@V1tWo2bmMdloYX0sVBF4o`Ls6}t7Rhu`X z3VZAI=B{R=F#=Yh(KNAXHu2w#&O!C^BGSWj{^7?G#ZT!EpIa#EH7i@TOf|(CLG~( zsTh6AlnU>ko{mmzRH+*R$ntFShQ(_A?&@;=_4P*fFb1bUQyPg4PJyOSj7$+*jB`SS z^CZrevTf8(=XN*01u&xJsMa(wzHKy&snwdMjtxU#Q>`=%hQOJXD#THB5+W?fLoi`BWajgKrX)!)^qHxgs}VktJ` zlh`H-(!;NzuDR-vv;fZ#ON({0w9vpA0+}Ghg}5<3Ubts^NBmRkanZbH2Uu9B{m{~U z^W)V@eJZG@3~#2U3ubgY;SZrmp3Ylf#TF6ceehAn9h6;dVOz)L!0RxMH%Y!TbW!wZ-GuNz@gFH*_vECs0_{qO-!HOJ-wsw zUZwRLd*Jq?h#}9;nNzg~G30r<>T!%ei5`DyTR};AoVUQbx4`^t-7MgY01SHD7!n=W zzN@$o7(C;NJtq2g02F-X>EpFWDwXC(PlouDTN;IQY^(dv`h^Ar5rFDRO^e1>NO4{dI`*A`gDOwr8g zn!hgKnPAt&rR#ec4z1__yx_%{|DcZf3I3hCOL9}I*9zuxc?)cG3-BfyuM70z*j*Fs z1zx*e7_T@<&)J?3{OtL8M>h|73!G0az|{rBCOc>bVwTulsg7M8fb;y}R42#$`LJiD zCe8Whss)HmVpIdMOAKp1EAHq3yu-VIn_Q~I*`EA@S6d^G&({_pMu}AoyirRmYd#%k zj%6^8icX!V%~Z?vX)17@fA@u${K=F~o6Pfh3!LK?z!d4p<5hp3fXgO!?I~`@@Thh7 z%vCY-48VnL3Vx2Mc#|s!|2aOWdGWos06J=7R<8$$WnwzZKwF>ACCxJn)hBgT=hU`h zzPur;<#O72-vV4VF+W?AdU6%%_Q}%q>7~?dX8^9}SMYOTTfVmEyg$x)1v|6=v8&IW z5YxnVS~TGRe3FX~v#1bPb><;&fvwyEA%=- z1&Co{nSt2mqq^b#c!cu-c09xTI%V=*+Z*%&c20Zd zPjU^yq0je$EkG<2(+q-fU|ll!@eaUOmnf0X@a7?JfkA445Yr*n1?hZg72n p>CA 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∈%!BPk#7gTn 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 ZhyMV?9;yET`62%R*=m+|QC>N^|Jh~(v|s=L literal 0 HcmV?d00001 diff --git a/website/output.html b/website/output.html deleted file mode 100644 index e69de29..0000000 diff --git a/website/pos_tagger.html b/website/pos_tagger.html new file mode 100644 index 0000000..f420147 --- /dev/null +++ b/website/pos_tagger.html @@ -0,0 +1,5827 @@ + + + + + + + + +
+service:FaceApp
+Type:Image editing
+Initial release:December 31 2016
+Type:Image editing
+source:link
+
+
+1 +. +Eligibility +You +must +be +at +least +13 +years +of +age +to +access +or +use +our +Services +. +If +you +are +under +18 +years +of +age +( +or +the +age +of +legal +majority +where +you +live +) +, +you +may +only +access +or +use +our +Services +under +the +supervision +of +a +parent +or +legal +guardian +who +agrees +to +be +bound +by +this +Agreement +. +If +you +are +a +parent +or +legal +guardian +of +a +user +under +the +age +of +18 +( +or +the +age +of +legal +majority +) +, +you +agree +to +be +fully +responsible +for +the +acts +or +omissions +of +such +user +in +connection +with +our +Services +. +If +you +are +accessing +or +using +our +Services +on +behalf +of +another +person +or +entity +, +you +represent +that +you +are +authorized +to +accept +this +Agreement +on +that +person +or +entity + +s +behalf +and +that +the +person +or +entity +agrees +to +be +responsible +to +us +if +you +or +the +other +person +or +entity +violates +this +Agreement +. +2 +. +User +Accounts +and +Account +Security +If +you +choose +to +login +to +the +Services +via +a +third-party +platform +or +social +media +network +, +you +will +need +to +use +your +credentials +( +e.g. +, +username +and +password +) +from +a +third-party +online +platform +. +You +must +maintain +the +security +of +your +third +party +account +and +promptly +notify +us +if +you +discover +or +suspect +that +someone +has +accessed +your +account +without +your +permission +. +If +you +permit +others +to +use +your +account +credentials +, +you +are +responsible +for +the +activities +of +such +users +that +occur +in +connection +with +your +account +. +3 +. +Privacy +Please +refer +to +our +Privacy +Policy +for +information +about +how +we +collect +, +use +and +disclose +information +about +you +. +4 +. +User +Content +Our +Services +may +allow +you +and +other +users +to +create +, +post +, +store +and +share +content +, +including +photos +, +videos +, +messages +, +text +, +software +and +other +materials +( +collectively +, + +User +Content + +) +. +User +Content +does +not +include +user-generated +filters +. +Subject +to +this +Agreement +and +the +Privacy +Policy +, +you +retain +all +rights +in +and +to +your +User +Content +, +as +between +you +and +FaceApp +. +Further +, +FaceApp +does +not +claim +ownership +of +any +User +Content +that +you +post +on +or +through +the +Services +. +You +grant +FaceApp +a +nonexclusive +, +royalty-free +, +worldwide +, +fully +paid +license +to +use +, +reproduce +, +modify +, +adapt +, +create +derivative +works +from +, +distribute +, +perform +and +display +your +User +Content +during +the +term +of +this +Agreement +solely +to +provide +you +with +the +Services +. +You +acknowledge +that +some +of +the +Services +are +supported +by +advertising +revenue +and +may +display +advertisements +and +promotions +, +and +you +hereby +agree +that +FaceApp +may +place +such +advertising +and +promotions +on +the +Services +or +on +, +about +, +or +in +conjunction +with +your +User +Content +. +The +manner +, +mode +and +extent +of +such +advertising +and +promotions +are +subject +to +change +without +specific +notice +to +you +. +You +acknowledge +that +we +may +not +always +identify +paid +services +, +sponsored +content +, +or +commercial +communications +as +such +. +You +represent +and +warrant +that +: +( +i +) +you +own +or +otherwise +have +the +right +to +use +the +User +Content +modified +by +you +on +or +through +the +Services +in +accordance +with +the +rights +and +licenses +set +forth +in +this +Agreement +; +( +ii +) +you +agree +to +pay +for +all +royalties +, +fees +, +and +any +other +monies +owed +by +reason +of +User +Content +you +stylize +on +or +through +the +Services +; +and +( +iii +) +you +have +the +legal +right +and +capacity +to +enter +into +this +Agreement +in +your +jurisdiction +. +You +may +not +create +, +post +, +store +or +share +any +User +Content +that +violates +this +Agreement +or +for +which +you +do +not +have +all +the +rights +necessary +to +grant +us +the +license +described +above +. +Although +we +have +no +obligation +to +screen +, +edit +or +monitor +User +Content +, +we +may +delete +or +remove +User +Content +at +any +time +and +for +any +reason +. +FaceApp +is +not +a +backup +service +and +you +agree +that +you +will +not +rely +on +the +Services +for +the +purposes +of +User +Content +backup +or +storage +. +FaceApp +will +not +be +liable +to +you +for +any +modification +, +suspension +, +or +discontinuation +of +the +Services +, +or +the +loss +of +any +User +Content +. +5 +. +Prohibited +Conduct +and +Content +You +will +not +violate +any +applicable +law +, +contract +, +intellectual +property +or +other +third-party +right +or +commit +a +tort +, +and +you +are +solely +responsible +for +your +conduct +while +accessing +or +using +our +Services +. +You +will +not +: +Engage +in +any +harassing +, +threatening +, +intimidating +, +predatory +or +stalking +conduct +; +Use +or +attempt +to +use +another +user + +s +account +without +authorization +from +that +user +and +FaceApp +; +Use +our +Services +in +any +manner +that +could +interfere +with +, +disrupt +, +negatively +affect +or +inhibit +other +users +from +fully +enjoying +our +Services +or +that +could +damage +, +disable +, +overburden +or +impair +the +functioning +of +our +Services +in +any +manner +; +Reverse +engineer +any +aspect +of +our +Services +or +do +anything +that +might +discover +source +code +or +bypass +or +circumvent +measures +employed +to +prevent +or +limit +access +to +any +part +of +our +Services +; +Attempt +to +circumvent +any +content-filtering +techniques +we +employ +or +attempt +to +access +any +feature +or +area +of +our +Services +that +you +are +not +authorized +to +access +; +Develop +or +use +any +third-party +applications +that +interact +with +our +Services +without +our +prior +written +consent +, +including +any +scripts +designed +to +scrape +or +extract +data +from +our +Services +; +Use +our +Services +for +any +illegal +or +unauthorized +purpose +, +or +engage +in +, +encourage +or +promote +any +activity +that +violates +this +Agreement +. +You +may +also +only +post +or +otherwise +share +User +Content +that +is +non-confidential +and +you +have +all +necessary +rights +to +disclose +. +You +may +not +create +, +post +, +store +or +share +any +User +Content +that +: +Is +unlawful +, +libelous +, +defamatory +, +obscene +, +pornographic +, +indecent +, +lewd +, +suggestive +, +harassing +, +threatening +, +invasive +of +privacy +or +publicity +rights +, +abusive +, +inflammatory +or +fraudulent +; +Would +constitute +, +encourage +or +provide +instructions +for +a +criminal +offense +, +violate +the +rights +of +any +party +or +otherwise +create +liability +or +violate +any +local +, +state +, +national +or +international +law +; +May +infringe +any +patent +, +trademark +, +trade +secret +, +copyright +or +other +intellectual +or +proprietary +right +of +any +party +; +Contains +or +depicts +any +statements +, +remarks +or +claims +that +do +not +reflect +your +honest +views +and +experiences +; +Impersonates +, +or +misrepresents +your +affiliation +with +, +any +person +or +entity +; +Contains +any +unsolicited +promotions +, +political +campaigning +, +advertising +or +solicitations +; +Contains +any +private +or +personal +information +of +a +third +party +without +such +third +party + +s +consent +; +Contains +any +viruses +, +corrupted +data +or +other +harmful +, +disruptive +or +destructive +files +or +content +; +or +Is +, +in +our +sole +judgment +, +objectionable +or +that +restricts +or +inhibits +any +other +person +from +using +or +enjoying +our +Services +, +or +that +may +expose +FaceApp +or +others +to +any +harm +or +liability +of +any +type +. +In +addition +, +although +we +have +no +obligation +to +screen +, +edit +or +monitor +User +Content +, +we +may +delete +or +remove +User +Content +at +any +time +and +for +any +reason +. +6 +. +Limited +License +; +Copyright +and +Trademark +Our +Services +and +the +text +, +graphics +, +images +, +photographs +, +videos +, +illustrations +, +trademarks +, +trade +names +, +page +headers +, +button +icons +, +scripts +, +service +marks +, +logos +, +slogans +, +filters +, +user +generated +filters +and +other +content +contained +therein +( +collectively +, +the + +FaceApp +Content + +) +are +owned +by +or +licensed +to +FaceApp +and +are +protected +under +both +United +States +and +foreign +laws +. +Except +as +explicitly +stated +in +this +Agreement +, +FaceApp +and +our +licensors +reserve +all +rights +in +and +to +our +Services +and +the +FaceApp +Content +. +You +are +hereby +granted +a +limited +, +nonexclusive +, +nontransferable +, +non-sublicensable +, +revocable +license +to +access +and +use +our +Services +and +FaceApp +Content +for +your +own +personal +use +; +however +, +such +license +is +subject +to +this +Agreement +and +does +not +include +any +right +to +: +( +a +) +sell +, +resell +or +commercially +use +our +Services +or +FaceApp +Content +; +( +b +) +copy +, +reproduce +, +distribute +, +publicly +perform +or +publicly +display +FaceApp +Content +, +except +as +expressly +permitted +by +us +or +our +licensors +; +( +c +) +modify +the +FaceApp +Content +, +remove +any +proprietary +rights +notices +or +markings +, +or +otherwise +make +any +derivative +uses +of +our +Services +or +FaceApp +Content +, +except +as +expressly +set +forth +in +this +Agreement +; +( +d +) +use +any +data +mining +, +robots +or +similar +data +gathering +or +extraction +methods +; +or +( +e +) +use +our +Services +or +FaceApp +Content +other +than +as +expressly +provided +in +this +Agreement +. +Any +use +of +our +Services +or +FaceApp +Content +other +than +as +specifically +authorized +herein +, +without +our +prior +written +permission +, +is +strictly +prohibited +and +will +terminate +the +license +granted +under +this +Agreement +. +You +will +not +remove +, +alter +or +conceal +any +copyright +, +trademark +, +service +mark +or +other +proprietary +rights +notices +incorporated +in +or +accompanying +the +FaceApp +Content +. +7 +. +Feedback +Any +questions +, +comments +, +suggestions +, +ideas +, +original +or +creative +materials +or +other +information +you +submit +about +FaceApp +or +our +products +or +Services +( +collectively +, + +Feedback + +) +, +is +non-confidential +and +we +have +no +obligations +( +including +without +limitation +obligations +of +confidentiality +) +with +respect +to +such +Feedback +. +You +hereby +grant +to +FaceApp +a +fully +paid +, +royalty-free +, +perpetual +, +irrevocable +, +worldwide +, +non-exclusive +, +and +fully +sublicensable +right +and +license +to +use +, +reproduce +, +perform +, +display +, +distribute +, +adapt +, +modify +, +re-format +, +create +derivative +works +of +, +and +otherwise +commercially +or +non-commercially +exploit +in +any +manner +, +any +and +all +Feedback +, +and +to +sublicense +the +foregoing +rights +, +in +connection +with +the +operation +and +maintenance +of +the +Services +and/or +FaceApp + +s +business +. +8 +. +Copyright +Complaints +We +have +a +policy +of +limiting +access +to +our +Services +and +terminating +the +accounts +of +users +who +repeatedly +infringe +the +intellectual +property +copyright +rights +of +others +upon +prompt +notification +to +us +by +the +copyright +owner +or +the +copyright +owner + +s +legal +agent +. +Without +limiting +the +foregoing +, +if +you +believe +that +your +work +has +been +copied +and +posted +on +or +through +the +Services +in +a +way +that +constitutes +copyright +infringement +, +please +provide +our +Copyright +Agent +with +the +following +information +: +( +a +) +an +electronic +or +physical +signature +of +the +person +authorized +to +act +on +behalf +of +the +owner +of +the +copyright +interest +; +( +b +) +a +description +of +the +copyrighted +work +that +you +claim +has +been +infringed +; +( +c +) +a +description +of +the +location +on +the +Services +of +the +material +that +you +claim +is +infringing +; +( +d +) +your +address +, +telephone +number +and +e-mail +address +; + +a +written +statement +by +you +that +you +have +a +good +faith +belief +that +the +disputed +use +is +not +authorized +by +the +copyright +owner +, +its +agent +or +the +law +; +and +( +f +) +a +statement +by +you +, +made +under +penalty +of +perjury +, +that +the +above +information +in +your +notice +is +accurate +and +that +you +are +the +copyright +owner +or +authorized +to +act +on +the +copyright +owner + +s +behalf +. +Contact +information +for +FaceApp + +s +Copyright +Agent +for +notice +of +claims +of +infringement +is +as +follows +: +Yaroslav +Goncharov +, +Designated +DMCA +Copyright +Agent +, +FaceApp +Inc +, +1000 +N +West +Street +, +Suite +1200 +, +Wilmington +, +Delaware +, +19801 +. +9 +. +Indemnification +To +the +fullest +extent +permitted +by +applicable +law +, +you +will +indemnify +, +defend +, +and +hold +harmless +FaceApp +and +each +of +our +respective +officers +, +directors +, +agents +, +partners +and +employees +( +individually +and +collectively +, +the + +FaceApp +Parties + +) +from +and +against +any +loss +, +liability +, +claim +, +demand +, +damages +, +expenses +or +costs +( + +Claims + +) +arising +out +of +or +related +to +( +a +) +your +access +to +or +use +of +our +Services +; +( +b +) +your +User +Content +or +Feedback +; +( +c +) +your +violation +of +this +Agreement +; +( +d +) +your +violation +, +misappropriation +or +infringement +of +any +rights +of +another +( +including +intellectual +property +rights +or +privacy +rights +) +; +or +( +e +) +your +conduct +in +connection +with +our +Services +. +You +agree +to +promptly +notify +FaceApp +Parties +of +any +third +party +Claims +, +cooperate +with +FaceApp +Parties +in +defending +such +Claims +and +pay +all +fees +, +costs +and +expenses +associated +with +defending +such +Claims +( +including +, +but +not +limited +to +, +attorneys + +fees +) +. +You +also +agree +that +the +FaceApp +Parties +will +have +control +of +the +defense +or +settlement +of +any +third +party +Claims +. +This +indemnity +is +in +addition +to +, +and +not +in +lieu +of +, +any +other +indemnities +set +forth +in +a +written +agreement +between +you +and +FaceApp +or +the +other +FaceApp +Parties +. +10 +. +Disclaimers +We +do +not +control +, +endorse +or +take +responsibility +for +any +User +Content +or +third-party +content +available +on +or +linked +to +by +our +Services +. +YOUR +USE +OF +OUR +SERVICES +IS +AT +YOUR +SOLE +RISK +. +OUR +SERVICES +ARE +PROVIDED + +AS +IS + +AND + +AS +AVAILABLE + +WITHOUT +WARRANTIES +OF +ANY +KIND +, +EITHER +EXPRESS +OR +IMPLIED +, +INCLUDING +, +BUT +NOT +LIMITED +TO +, +IMPLIED +WARRANTIES +OF +MERCHANTABILITY +, +FITNESS +FOR +A +PARTICULAR +PURPOSE +, +TITLE +, +AND +NON-INFRINGEMENT +. +In +addition +, +FaceApp +does +not +represent +or +warrant +that +our +Services +are +accurate +, +complete +, +reliable +, +current +or +error-free +. +While +FaceApp +attempts +to +make +your +access +to +and +use +of +our +Services +safe +, +we +can +not +and +do +not +represent +or +warrant +that +our +Services +or +servers +are +free +of +viruses +or +other +harmful +components +. +You +assume +the +entire +risk +as +to +the +quality +and +performance +of +the +Services +. +11 +. +Limitation +of +Liability +FACEAPP +AND +THE +OTHER +FACEAPP +PARTIES +WILL +NOT +BE +LIABLE +TO +YOU +UNDER +ANY +THEORY +OF +LIABILITY—WHETHER +BASED +IN +CONTRACT +, +TORT +, +NEGLIGENCE +, +STRICT +LIABILITY +, +WARRANTY +, +OR +OTHERWISE—FOR +ANY +INDIRECT +, +CONSEQUENTIAL +, +EXEMPLARY +, +INCIDENTAL +, +PUNITIVE +OR +SPECIAL +DAMAGES +OR +LOST +PROFITS +, +EVEN +IF +FACEAPP +OR +THE +OTHER +FACEAPP +PARTIES +HAVE +BEEN +ADVISED +OF +THE +POSSIBILITY +OF +SUCH +DAMAGES +. +THE +TOTAL +LIABILITY +OF +FACEAPP +AND +THE +OTHER +FACEAPP +PARTIES +, +FOR +ANY +CLAIM +ARISING +OUT +OF +OR +RELATING +TO +THIS +AGREEMENT +OR +OUR +SERVICES +, +REGARDLESS +OF +THE +FORM +OF +THE +ACTION +, +IS +LIMITED +TO +THE +AMOUNT +PAID +, +IF +ANY +, +BY +YOU +TO +ACCESS +OR +USE +OUR +SERVICES +. +The +limitations +set +forth +in +this +section +will +not +limit +or +exclude +liability +for +the +gross +negligence +, +fraud +or +intentional +misconduct +of +FaceApp +or +the +other +FaceApp +Parties +or +for +any +other +matters +in +which +liability +can +not +be +excluded +or +limited +under +applicable +law +. +Additionally +, +some +jurisdictions +do +not +allow +the +exclusion +or +limitation +of +incidental +or +consequential +damages +, +so +the +above +limitations +or +exclusions +may +not +apply +to +you +. +12 +. +Release +To +the +fullest +extent +permitted +by +applicable +law +, +you +release +FaceApp +and +the +other +FaceApp +Parties +from +responsibility +, +liability +, +claims +, +demands +, +and/or +damages +( +actual +and +consequential +) +of +every +kind +and +nature +, +known +and +unknown +( +including +, +but +not +limited +to +, +claims +of +negligence +) +, +arising +out +of +or +related +to +disputes +between +users +and +the +acts +or +omissions +of +third +parties +. +You +expressly +waive +any +rights +you +may +have +under +California +Civil +Code +§ +1542 +as +well +as +any +other +statute +or +common +law +principles +that +would +otherwise +limit +the +coverage +of +this +release +to +include +only +those +claims +which +you +may +know +or +suspect +to +exist +in +your +favor +at +the +time +of +agreeing +to +this +release +. +13 +. +Transfer +and +Processing +Data +By +accessing +or +using +our +Services +, +you +acknowledge +and +, +as +applicable +, +consent +to +the +processing +, +transfer +and +storage +of +information +about +you +in +and +to +the +United +States +and +other +countries +. +14 +. +Dispute +Resolution +; +Binding +Arbitration +Agreement +Please +read +the +following +section +carefully +because +it +requires +users +who +are +U.S. +residents +to +arbitrate +certain +disputes +and +claims +with +FaceApp +and +limits +the +manner +in +which +you +can +seek +relief +from +us +. +Applicability +of +Arbitration +Agreement +. +Except +for +small +claims +disputes +in +which +you +or +FaceApp +seek +to +bring +an +individual +action +in +small +claims +court +located +in +the +county +of +your +billing +address +or +disputes +in +which +you +or +FaceApp +seeks +injunctive +or +other +equitable +relief +for +the +alleged +unlawful +use +of +intellectual +property +, +you +and +FaceApp +waive +your +rights +to +a +jury +trial +and +to +have +any +dispute +arising +out +of +or +related +to +this +Agreement +or +our +Services +resolved +in +court +. +This +Arbitration +Agreement +shall +apply +, +without +limitation +, +to +all +disputes +or +claims +and +requests +for +relief +that +arose +or +were +asserted +before +the +effective +date +of +this +Agreement +or +any +prior +version +of +this +Agreement +. +Arbitration +Rules +and +Forum +. +The +Federal +Arbitration +Act +governs +the +interpretation +and +enforcement +of +this +Arbitration +Agreement +. +To +begin +an +arbitration +proceeding +, +you +must +send +a +letter +requesting +arbitration +and +describing +your +dispute +or +claim +or +request +for +relief +to +our +registered +agent +[ +include +name +and +address +of +registered +agent +here +] +. +The +arbitration +will +be +resolved +through +confidential +binding +arbitration +by +the +Judicial +Arbitration +and +Mediation +Services +( + +JAMS + +) +, +an +established +alternative +dispute +resolution +provider +. +Disputes +involving +claims +, +counterclaims +, +or +requests +for +relief +under +$ +250,000 +, +not +inclusive +of +attorneys + +fees +and +interest +, +shall +be +subject +to +JAMS + +s +most +current +version +of +the +Streamlined +Arbitration +Rules +and +procedures +available +; +all +other +disputes +shall +be +subject +to +JAMS + +s +most +current +version +of +the +Comprehensive +Arbitration +Rules +and +Procedures +, +available +at +http +: +//www.jamsadr.com/rules-comprehensive-arbitration/ +. +JAMS + +s +rules +are +also +available +at +www.jamsadr.com +or +by +calling +JAMS +at +800-352-5267 +. +If +JAMS +is +not +available +to +arbitrate +, +the +parties +will +select +an +alternative +arbitral +forum +. +If +the +arbitrator +finds +that +you +can +not +afford +to +pay +JAMS + +s +filing +, +administrative +, +hearing +and/or +other +fees +and +can +not +obtain +a +waiver +from +JAMS +, +FaceApp +will +pay +them +for +you +. +In +addition +, +we +will +reimburse +all +such +JAMS + +s +filing +, +administrative +, +hearing +and/or +other +fees +for +disputes +, +claims +, +or +requests +for +relief +totaling +less +than +$ +10,000 +unless +the +arbitrator +determines +the +claims +are +frivolous +. +You +may +choose +to +have +the +arbitration +conduced +by +telephone +, +based +on +written +submissions +, +or +in +person +in +the +country +where +you +live +or +at +another +mutually +agreed +location +. +Any +judgment +on +the +award +rendered +by +the +arbitrator +may +be +entered +in +any +court +of +competent +jurisdiction +. +You +may +choose +to +have +the +arbitration +conduced +by +telephone +, +based +on +written +submissions +or +at +another +mutually +agreed +location +. +Any +judgment +on +the +award +rendered +by +the +arbitrator +may +be +entered +in +any +court +of +competent +jurisdiction +. +Authority +of +Arbitrator +. +The +arbitrator +shall +have +exclusive +authority +to +( +a +) +determine +the +scope +and +enforceability +of +this +Arbitration +Agreement +and +( +b +) +resolve +any +dispute +related +to +the +interpretation +, +applicability +, +enforceability +or +formation +of +this +Arbitration +Agreement +, +including +, +but +not +limited +to +, +any +assertion +that +all +or +any +part +of +this +Arbitration +Agreement +is +void +or +voidable +. +The +arbitration +will +decide +the +rights +and +liabilities +, +if +any +, +of +you +and +FaceApp +. +The +arbitration +proceeding +will +not +be +consolidated +with +any +other +matters +or +joined +with +any +other +cases +or +parties +. +The +arbitrator +shall +have +the +authority +to +grant +motions +dispositive +of +all +or +part +of +any +claim +. +The +arbitrator +shall +have +the +authority +to +award +monetary +damages +and +to +grant +any +non-monetary +remedy +or +relief +available +to +an +individual +under +applicable +law +, +the +arbitral +forum + +s +rules +, +and +the +Agreement +( +including +the +Arbitration +Agreement +) +. +The +arbitrator +shall +issue +a +written +award +and +statement +of +decision +describing +the +essential +findings +and +conclusions +on +which +the +award +is +based +, +including +the +calculation +of +any +damages +awarded +. +The +arbitrator +has +the +same +authority +to +award +relief +on +an +individual +basis +that +a +judge +in +a +court +of +law +would +have +. +The +award +of +the +arbitrator +is +final +and +binding +upon +you +and +us +. +Waiver +of +Jury +Trial +. +YOU +AND +FACEAPP +HEREBY +WAIVE +ANY +CONSTITUTIONAL +AND +STATUTORY +RIGHTS +TO +SUE +IN +COURT +AND +HAVE +A +TRIAL +IN +FRONT +OF +A +JUDGE +OR +A +JURY +. +You +and +FaceApp +are +instead +electing +that +all +disputes +, +claims +or +requests +for +relief +shall +be +resolved +by +arbitration +under +this +Arbitration +Agreement +, +except +as +specified +above +. +An +arbitrator +can +award +on +an +individual +basis +the +same +damages +and +relief +as +a +court +and +must +follow +this +Agreement +as +a +court +would +. +However +, +there +is +no +judge +or +jury +in +arbitration +, +and +court +review +of +an +arbitration +award +is +subject +to +very +limited +. +Review +. +Waiver +of +Class +or +Other +Non-Individualized +Relief +. +ALL +DISPUTES +, +CLAIMS +AND +REQUESTS +FOR +RELIEF +WITHIN +THE +SCOPE +OF +THIS +ARBITRATION +AGREEMENT +MUST +BE +ARBITRATED +ON +AN +INDIVIDUAL +BASIS +AND +NOT +ON +A +CLASS +OR +COLLECTIVE +BASIS +. +ONLY +INDIVIDUAL +RELIEF +IS +AVAILABLE +, +AND +CLAIMS +OF +MORE +THAN +ONE +USER +CAN +NOT +BE +ARBITRATED +OR +CONSOLIDATED +WITH +THOSE +OF +ANY +OTHER +USER +. +If +a +decision +is +issued +stating +that +applicable +law +precludes +enforcement +of +any +of +this +subsection + +s +limitations +as +to +a +given +dispute +, +claim +or +request +for +relief +, +then +such +aspect +must +be +severed +from +the +arbitration +and +brought +into +the +State +or +Federal +Courts +located +in +the +State +of +California +. +All +other +disputes +, +claims +, +or +requests +for +relief +shall +be +arbitrated +. +30-Day +Right +to +Opt-Out +. +You +have +the +right +to +opt +out +of +the +provisions +of +this +Arbitration +Agreement +by +sending +written +notice +of +your +decision +to +opt-out +to +: +arbitration +@ +faceapp.com +, +within +30 +days +after +first +becoming +subject +to +this +Arbitration +Agreement +. +Your +notice +must +include +your +name +and +address +, +your +username +( +if +any +) +, +the +e-mail +address +you +used +to +set +up +your +account +( +if +you +have +one +) +, +and +an +unequivocal +statement +that +you +want +to +opt +out +of +this +Arbitration +Agreement +. +If +you +opt +out +of +this +Arbitration +Agreement +, +all +other +parts +of +this +Agreement +will +continue +to +apply +to +you +. +Opting +out +of +this +Arbitration +Agreement +has +no +effect +on +any +other +arbitration +agreements +that +you +may +currently +have +, +or +may +enter +in +the +future +, +with +us +. +You +and +FaceApp +agree +that +the +state +or +federal +courts +of +the +State +of +California +and +the +United +States +sitting +in +Santa +Clara +County +, +California +have +exclusive +jurisdiction +over +any +appeals +and +the +enforcement +of +an +arbitration +award +. +Severability +. +Except +as +provided +in +this +Section +14 +above +, +if +any +part +or +parts +of +this +Arbitration +Agreement +are +found +under +the +law +to +be +invalid +or +unenforceable +, +then +such +specific +part +or +parts +shall +be +of +no +force +and +effect +and +shall +be +severed +, +and +the +remainder +of +the +Arbitration +Agreement +shall +continue +in +full +force +and +effect +. +Survival +of +Agreement +. +This +Arbitration +Agreement +will +survive +the +termination +of +your +relationship +with +FaceApp +. +Modification +, +Notwithstanding +any +provision +in +this +Agreement +to +the +contrary +, +we +agree +that +if +FaceApp +makes +any +future +material +change +to +this +Arbitration +Agreement +you +may +reject +that +change +within +thirty +( +30 +) +days +of +such +change +becoming +effective +by +writing +Company +at +the +following +address +: +arbitration +@ +faceapp.com +. +15 +. +Governing +Law +and +Venue +This +Agreement +and +your +access +to +and +use +of +our +Services +will +be +governed +by +and +construed +and +enforced +in +accordance +with +the +laws +of +California +, +consistent +with +the +Federal +Arbitration +Act +, +without +regard +to +conflict +of +law +rules +or +principles +( +whether +of +California +or +any +other +jurisdiction +) +that +would +cause +the +application +of +the +laws +of +any +other +jurisdiction +. +The +United +Nations +Convention +for +the +International +Sale +of +Goods +does +not +apply +to +the +Agreement +. +Any +dispute +between +the +parties +that +is +not +subject +to +arbitration +or +can +not +be +heard +in +small +claims +court +will +be +resolved +in +the +state +or +federal +courts +of +California +and +the +United +States +, +respectively +, +sitting +in +Santa +Clara +County +, +California +. +16 +. +Electronic +Communications +By +accessing +or +using +the +Services +, +you +also +consent +to +receive +electronic +communications +from +FaceApp +( +e.g. +, +responses +to +your +requests +, +questions +and +feedback +, +announcements +, +updates +, +and +security +alerts +through +a +push +notification +or +by +posting +notices +on +our +Services +) +. +You +agree +that +any +notices +, +agreements +, +disclosures +or +other +communications +that +we +send +to +you +electronically +will +satisfy +any +legal +communication +requirements +, +including +, +but +not +limited +to +, +that +such +communications +be +in +writing +. +17 +. +Termination +We +reserve +the +right +, +without +notice +and +in +our +sole +discretion +, +to +terminate +your +right +to +access +or +use +our +Services +. +We +are +not +responsible +for +any +loss +or +harm +related +to +your +inability +to +access +or +use +our +Services +. +18 +. +Severability +If +any +provision +or +part +of +a +provision +of +this +Agreement +is +unlawful +, +void +or +unenforceable +, +that +provision +or +part +of +the +provision +is +deemed +severable +from +this +Agreement +and +does +not +affect +the +validity +and +enforceability +of +any +remaining +provisions +. +19 +. +Additional +Terms +Applicable +to +iOS +Devices +The +following +terms +apply +if +you +install +, +access +or +use +the +Services +on +any +device +that +contains +the +iOS +mobile +operating +system +( +the + +App + +) +developed +by +Apple +Inc. +( + +Apple + +) +. +Acknowledgement +. +You +acknowledge +that +this +Agreement +is +concluded +solely +between +us +, +and +not +with +Apple +, +and +FaceApp +, +not +Apple +, +is +solely +responsible +for +the +App +and +the +content +thereof +. +You +further +acknowledge +that +the +usage +rules +for +the +App +are +subject +to +any +additional +restrictions +set +forth +in +the +Usage +Rules +for +the +Apple +App +Store +Terms +of +Service +as +of +the +date +you +download +the +App +, +and +in +the +event +of +any +conflict +, +the +Usage +Rules +in +the +App +Store +shall +govern +if +they +are +more +restrictive +. +You +acknowledge +and +agree +that +you +have +had +the +opportunity +to +review +the +Usage +Rules +. +Scope +of +License +. +The +license +granted +to +you +is +limited +to +a +non-transferable +license +to +use +the +App +on +any +iPhone +, +iPod +touch +or +iPad +that +you +own +or +control +as +permitted +by +the +Usage +Rules +set +forth +in +the +Apple +App +Store +Terms +of +Service +. +Maintenance +and +Support +. +You +and +FaceApp +acknowledge +that +Apple +has +no +obligation +whatsoever +to +furnish +any +maintenance +and +support +services +with +respect +to +the +App +. +Warranty +. +You +acknowledge +that +Apple +is +not +responsible +for +any +product +warranties +, +whether +express +or +implied +by +law +, +with +respect +to +the +App +. +In +the +event +of +any +failure +of +the +App +to +conform +to +any +applicable +warranty +, +you +may +notify +Apple +, +and +Apple +will +refund +the +purchase +price +, +if +any +, +paid +to +Apple +for +the +App +by +you +; +and +to +the +maximum +extent +permitted +by +applicable +law +, +Apple +will +have +no +other +warranty +obligation +whatsoever +with +respect +to +the +App +. +The +parties +acknowledge +that +to +the +extent +that +there +are +any +applicable +warranties +, +any +other +claims +, +losses +, +liabilities +, +damages +, +costs +or +expenses +attributable +to +any +failure +to +conform +to +any +such +applicable +warranty +would +be +the +sole +responsibility +of +FaceApp +. +However +, +you +understand +and +agree +that +in +accordance +with +this +Agreement +, +FaceApp +has +disclaimed +all +warranties +of +any +kind +with +respect +to +the +App +, +and +therefore +, +there +are +no +warranties +applicable +to +the +App +. +Product +Claims +. +You +and +FaceApp +acknowledge +that +as +between +Apple +and +FaceApp +, +FaceApp +, +not +Apple +, +is +responsible +for +addressing +any +claims +relating +to +the +App +or +your +possession +and/or +use +of +the +App +, +including +, +but +not +limited +to +( +a +) +product +liability +claims +, +( +b +) +any +claim +that +the +App +fails +to +conform +to +any +applicable +legal +or +regulatory +requirement +, +and +( +c +) +claims +arising +under +consumer +protection +or +similar +legislation +. +Intellectual +Property +Rights +. +The +parties +acknowledge +that +, +in +the +event +of +any +third +party +claim +that +the +App +or +your +possession +and +use +of +the +App +infringe +that +third +party + +s +intellectual +property +rights +, +FaceApp +, +and +not +Apple +, +will +be +solely +responsible +for +the +investigation +, +defense +, +settlement +and +discharge +of +any +such +intellectual +property +infringement +claim +to +the +extent +required +under +this +Agreement +. +Legal +Compliance +. +You +represent +and +warrant +that +( +a +) +you +are +not +located +in +a +country +that +is +subject +to +a +U.S. +Government +embargo +, +or +that +has +been +designated +by +the +U.S. +Government +as +a + +terrorist +supporting + +country +, +and +( +b +) +you +are +not +listed +on +any +U.S. +Government +list +of +prohibited +or +restricted +parties +. +Developer +Name +and +Address +. +Any +questions +, +complaints +or +claims +with +respect +to +the +App +should +be +directed +to +: +FaceApp +Inc +1000 +N +West +Street +, +Suite +1200 +, +Wilmington +, +Delaware +, +19801 +USA +contact +@ +faceapp.com +Third-Party +Terms +of +Agreement +. +You +agree +to +comply +with +any +applicable +third-party +terms +when +using +the +Services +. +Third-Party +Beneficiary +. +The +parties +acknowledge +and +agree +that +Apple +, +and +Apple + +s +subsidiaries +, +are +third-party +beneficiaries +of +this +Agreement +, +and +that +, +upon +your +acceptance +of +this +Agreement +, +Apple +will +have +the +right +( +and +will +be +deemed +to +have +accepted +the +right +) +to +enforce +this +Agreement +against +you +as +a +third-party +beneficiary +thereof +) +. +20 +. +Export +You +may +not +use +, +export +, +import +, +or +transfer +all +or +any +portion +of +the +Services +except +as +authorized +by +U.S. +law +, +the +laws +of +the +jurisdiction +in +which +you +obtained +the +Services +, +and +any +other +applicable +laws +. +In +particular +, +but +without +limitation +, +the +Services +may +not +be +exported +or +re-exported +( +a +) +into +any +United +States +embargoes +countries +, +or +( +b +) +to +anyone +on +the +U.S. +Treasury +Department + +s +list +of +Specially +Designated +Nationals +or +the +U.S. +Department +of +Commerce + +s +Denied +Person + +s +List +or +Entity +List +. +By +using +the +Services +, +you +represent +and +warrant +that +( +y +) +you +are +not +located +in +a +country +that +is +subject +to +a +U.S. +Government +embargo +, +or +that +has +been +designated +by +the +U.S. +Government +as +a + +terrorist +supporting + +country +and +( +z +) +you +are +not +listed +on +any +U.S. +Government +list +of +prohibited +or +restricted +parties +. +You +also +will +not +use +the +Services +for +any +purpose +prohibited +by +U.S. +law +, +including +the +development +, +design +, +manufacture +or +production +of +missiles +, +nuclear +, +chemical +or +biological +weapons +. +You +acknowledge +and +agree +that +products +, +services +or +technology +provided +by +FaceApp +are +subject +to +the +export +control +laws +and +regulations +of +the +United +States +. +You +shall +comply +with +these +laws +and +regulations +and +shall +not +, +without +prior +U.S. +government +authorization +, +export +, +re-export +, +or +transfer +FaceApp +products +, +services +or +technology +, +either +directly +or +indirectly +, +to +any +country +in +violation +of +such +laws +and +regulations +. +21 +. +Miscellaneous +In +accordance +with +California +Civil +Code +section +1789.3 +, +you +may +report +complaints +to +the +Complaint +Assistance +Unit +of +the +Division +of +Consumer +Services +of +the +California +Department +of +Consumer +Affairs +by +contacting +them +in +writing +at +400 +R +Street +, +Sacramento +, +CA +95814 +, +or +by +telephone +at +( +800 +) +952-5210 +. +This +Agreement +constitutes +the +entire +agreement +between +you +and +FaceApp +relating +to +your +access +to +and +use +of +our +Services +. +The +failure +of +FaceApp +to +exercise +or +enforce +any +right +or +provision +of +this +Agreement +will +not +operate +as +a +waiver +of +such +right +or +provision +. +The +section +titles +in +this +Agreement +is +for +convenience +only +and +have +no +legal +or +contractual +effect +. +Except +as +otherwise +provided +herein +, +this +Agreement +is +intended +solely +for +the +benefit +of +the +parties +and +are +not +intended +to +confer +third +party +beneficiary +rights +upon +any +other +person +or +entity +. +
+
colonial words: +
services(69) +
agreement(60) +
arbitration(42) +
content(37) +
use(35) +
user(28) +
claims(28) +
may(26) +
rights(21) +
app(21) +
parties(20) +
apple(18) +
law(17) +
applicable(16) +
access(15) +
copyright(15) +
relief(15) +
shall(15) +
agree(14) +
without(14) +
right(14) +
including(13) +
acknowledge(13) +
“(12) +
”(12) +
subject(12) +
limited(12) +
u.s.(12) +
arbitrator(12) +
claim(11) +
disputes(11) +
rules(11) +
legal(10) +
person(10) +
third-party(10) +
party(10) +
license(10) +
liability(10) +
california(10) +
court(10) +
award(10) +
responsible(9) +
us(9) +
third(9) +
damages(9) +
jams(9) +
information(8) +
intellectual(8) +
written(8) +
laws(8) +
except(8) +
address(8) +
available(8) +
must(7) +
using(7) +
entity(7) +
authorized(7) +
account(7) +
otherwise(7) +
set(7) +
jurisdiction(7) +
property(7) +
part(7) +
united(7) +
b(7) +
agent(7) +
dispute(7) +
requests(7) +
provision(7) +
government(7) +
represent(6) +
users(6) +
create(6) +
store(6) +
solely(6) +
extent(6) +
notice(6) +
forth(6) +
fees(6) +
state(6) +
states(6) +
feedback(6) +
respect(6) +
owner(6) +
warranties(6) +
individual(6) +
country(6) +
terms(6) +
age(5) +
fully(5) +
another(5) +
privacy(5) +
post(5) +
include(5) +
grant(5) +
paid(5) +
manner(5) +
communications(5) +
warrant(5) +
service(5) +
diff --git a/website/pos_tagger.py b/website/pos_tagger.py index 9a44680..8329ee8 100644 --- a/website/pos_tagger.py +++ b/website/pos_tagger.py @@ -24,7 +24,8 @@ all_stopwords = default_stopwords | custom_stopwords -print(''' +print( + ''' @@ -52,15 +53,35 @@ print(''' url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg"); } + @font-face { + font-family: "SourceCodePro"; + src: url("http://bohyewoo.com/webfonts/Source_Code_Pro/SourceCodePro-Regular.ttf"); + } + + + + + body { + background-color: whitesmoke; # font-family: Belgika; # font-weight: 8th; - letter-spacing: 0.5px; + # letter-spacing: -0.3px; font-size: 20px; line-height: 1.2; } + .info { + font-family: Belgika; + font-weight: 8th; + font-size: 10pt; + width: 20%; + float: left; + border: 1px solid black; + + + } .NNP { @@ -68,6 +89,7 @@ print(''' } .VBP { + } .VBP:hover { @@ -83,10 +105,11 @@ print(''' } .paragraph { - font-family: helvetica; + font-family: SourceCodePro; font-weight: regular; - width: 70%; - float: right; + letter-spacing: -0.5px; + width: 50%; + float: left; } .top_words { @@ -99,53 +122,42 @@ print(''' -''') +''' +) -# my stopwords are common words I don't want to count, like "a", "an", "the". +#info box +print('
') +infotext = [('service', 'FaceApp'), ('Type', 'Image editing'), ('Initial release', 'December 31 2016'), ('Type', 'Image editing'), ('source', 'link')] -print('
') -# for sentence in sent_tokenize(text): -print('') +for title, info in infotext: + print('{0}:{1}
'.format(title, info)) +print('
') + + + +#ToS text +print('
') tokenized = word_tokenize(text) tagged = pos_tag(tokenized) -# for HTML for word, pos in tagged: print('{}'.format(pos, word)) - -print('') - print('
') -# filtering stopwords -tokens_without_stopwords = nltk.FreqDist(words.lower() for words in tokenized if words.lower() not in all_stopwords) -print(tokens_without_stopwords) - -# for read_whole_text in tokens_without_stopwords: -# whole_text_tokenized = -# print(whole_text_tokenized) - -# #filtered words in sentence -# filtered_sentence = (" ").join(tokens_without_stopwords) -# print(filtered_sentence) - - +#colonial words list print('
colonial words:') +tokens_without_stopwords = nltk.FreqDist(words.lower() for words in tokenized if words.lower() not in all_stopwords) frequency_word = FreqDist(tokens_without_stopwords) top_words = tokens_without_stopwords.most_common(100) for chosen_words, frequency in top_words: print('
{}({}) '.format(chosen_words, frequency)) -# new_html = open('output.html', 'wb') # open the output file -# new_html.write('''
''') -# new_html.close() # close the output file - print('''
''') diff --git a/website/russia-estonia.txt b/website/russia-estonia.txt new file mode 100644 index 0000000..e720f50 --- /dev/null +++ b/website/russia-estonia.txt @@ -0,0 +1,61 @@ +Article I +The state of war between the Contracting Parties will end on the day on which the present Treaty of Peace comes into force. + +Article II +In consequence of the right of all peoples to self-determination, to the point of seceding completely from the State of which they form part, a right proclaimed by the Socialist and Federal Russian Republic of the Soviets, Russia unreservedly recognises the independence and sovereignty of the State of Estonia, and renounces voluntarily and for ever all sovereign rights possessed by Russia over the Estonian people and territory whether these rights be based on the juridical position that formerly existed in public law, or in the international treaties which, in the sense here indicated, lose their validity in future. + +From the fact that Estonia has belonged to Russia, no obligation whatsoever will fall on the Estonian people and land to Russia. + +Article III +1. The frontier between Esthonia and Russia follows the following line: + +Starting from the Bay of Narva, one verst south of the Fishers’ House, it turns toward Ropscha, then follows the course of the Rivers Mertvitskaja and Rosson, as far as the village of Ilkino, from Ilkino one verst west of the village Keikino, half a verst west of the village of Isvosi and turns towards the village of Kobõljaki; it then crosses the mouth of the river Schtschutschka, passes by Krivaja Luka, by the estate of Petschurki, to the confluence of three sources of the river Vtroja, follows the southern boundary of the village of Kuritschek with its dependences, then turns in a straight line as far as the centre line of the Lake Peipus, follows it in a southern direction, and thus passes one verst to the east of Piirisaar (Pork); follows the narrow strip of the lake dividing it along the middle as far as the island of Salu, thence passes through Lake Pihkva (Pskov) between the Islands of Talabski and the Island of Kamonka, then to the east of the village of Poddubje (on the southern bank of Lake Pihkva) and to the outlook post on the railway situated near to Grjardischtsche, then passes successively to the west of the Village of Schahintsõi, to the east of Novaja, across the Lake Poganova, between the villages of Babina and Vomorski, to one verst and a half to the south of the Forestry keeper’s house (which is situated to the north of Glybotschina) to Sprechtitschi and to the Farm Kudepi. + +Note 1. The Frontier described in this Article is shown in red on the map, scale of three versts to the inch (0.0254 metre), which constitutes the first Annex to Article 3. In case of difference between the text and the map, it is to the text that one must adhere. + +Note 2. The tracing of the boundary between the two contracting countries and the placing in position of the frontier signs will be carried out under the direction of a special mixed commission composed of an equal number of members from both parties. In marking the boundary line this mixed commission will decide the allocation of inhabited areas on the frontier to one or other of the parties according to ethnographical indications and bearing in mind economic agreements and agricultural consideration. + +2. The portion of the territory of Esthonia to the east of the Narova, the River Narova itself, and the islands in the midst of the stream, as well as the zone to the south of Lake Pihkva, which is situated between the boundary above mentioned and the line of villages, Borok-Smolni-Belkova-Sprechtitschi, will be, from a military point of view, considered as neutral until 1 January 1922. + +Esthonia undertakes to maintain no troops of any kind in the neutralized zones other than those which are necessary for the frontier service and the maintenance of order, and of which the strength is laid down in Annex 2 of the present Article; not to construct fortifications or observation posts, nor to constitute military depots, nor to deposit any kind of war material whatsoever with the exception of what is indispensable for the effectives allowed for; nor to establish ther bases or depots for the use of any kind of vessels, or of any kind of aerial fleet. + +3. Russia for her part undertakes not to maintain troops in the region of Pskov to the west of the line: western bank of the mouth of Velikaja, the villages of Sivtseva, Luhnova, Samulina, Schalki and Sprechtitschi until 1 January 1922, which are indispensable for the frontier service and for the maintenance of order and for the effectives provided for in Annex 2 of the present Article. + +4. The contracting parties undertake to have no armed vessels whatsoever on Lakes Peipus and Pihkva. + +Article IV +During one year from the day of ratification of the present Treaty, persons of non-Estonian origin living in Estonia, and over eighteen years of age, have the right to opt for Russian nationality; women, and children, less than eighteen years of age, take the nationality of the husband or the father, unless there exists between man and wife any contrary agreement. The people who have opted for Russian nationality must, within a year from the date of their choice, leave Estonian territory; but they maintain their rights over the property and can take with them their movable property. In the same way persons of Estonian origin living in Russia can opt for Estonian nationality within the same length of time and under the same conditions. + +Each of the contracting Governments reserves the right to refuse acceptance to its citizenship of such persons. + +Note. In case of doubt about tho origin of persons, all those who could have been personally registered or whose parents would have been registered in a rural or urban community, or in a “class” on the territory now composing the State of Estonia, shall be considered as Estonians. + +Article V +In case the perpetual neutrality of Estonia should be internationally recognised, Russia undertakes to respect this neutrality and to take part in guaranteeing it. + +Article VI +Should the Gulf of Finland be neutralised, the two contracting Parties undertake to accede to this neutralisation, on conditions determined by common agreement by all the States concerned, and established by the international acts relating thereto; should the international convention referred to be concluded, they also undertake to put their naval forces, or part thereof, into such conditions as this international convention may require. + +Article VII +The two Contracting Parties undertake: + +1. To prohibit the presence in their territory of any troops with the exception of those of their own Government or of friendly States with whom one of the Contracting Parties may have concluded a military convention, but which are not de facto in a state of war with one of the Contracting Parties, and also to prohibit within the limits of their territory, the recruiting and mobilisation of particular corps by States, organisations and groups, intended for armed conflict against the other Contracting Parties. + +2. To disarm those military and naval forces within their territory which did not belong to one of the Contracting Parties on the first of October, One thousand nine hundred and nineteen; to neutralise and immobilise, until the first of January, One thousand nine hundred and twenty-two, all property, artillery and commissariat material (exclusive of food and clothing), engineering and aviational material, i. e., guns, machine guns, rifles, side-arms, munitions, aeroplanes, armoured vehicles, tanks, armoured trains, etc., belonging to the military and naval forces referred to with the exception of such technical and war material as was handed over to these forces, but which belongs to the Contracting Parties or to other States, any portion of this material which belongs to other States shall be returned within six months from the date of the ratification of this Treaty. The disarmament of the above-mentioned irregular military and naval forces, and the immobilisation and neutralisation of their military stocks and of all their technical and war material must be completed: the first 30 per cent. of men and material within the first seven days after the ratification of the present Treaty of Peace, and the remainder within the two following weeks at the rate of thirty-five per cent per week. + +3. To prohibit the soldiers and officers of the irregular troops who are subject to disarmament under the conditions laid down by the prececing Point (2) from joining in any capacity whatsoever, as volunteers, the ranks of the Government troops of the Contracting Parties, with the exception of: + +(a) Persons of Estonian nationality who reside outside Estonia, but who have opted for that country; +(b) Persons not of Estonian nationality who resided in Estonia before the first of May, One thousand nine hundred and nineteen, and who have not opted to Russia; +(c) Persons not of Estonian nationality who have not opted for Russia and who served in the Estonian army before the twenty-seventh of November, One thousand nine hundred and nineteen. +Persons belonging to the classes mentioned in sub-divisions (a), (b), and (c), may serve with the armies of the Estonian Government. + +4. (a) To prohibit any State, which is de facto in a state of war with one of the Contracting Parties, and any organisations or groups intended for an armed conflict with one of the Contracting Parties, for transporting through their ports or their territories anything which might be used for attacking the other Contracting Party, particularly armed forces belonging to these States, organisations or groups, and any article and war material used for artillery, commissariat, engineering, aviation, etc., which may belong to these military formations. + +4. (b) To prohibit, exclusive of cases provided for by international law, the launching and navigation in their territorial waters of any warships, gun-boats, mine-layers, etc., belonging either to organisations or groups which are intended to fight against the other Contracting Party or to States which are in a state of war with this party, if those ships are intended to attack it, and if this intention is known to the Contracting Party to whose territory the ports and territorial waters so used belong. + +5. Not to authorise the formation or presence in their territory of any organisation or groups whatsoever, which claim to govern the whole or part of the territory of the other Contracting Party, or the presence of representatives or officials of organisations and groups, whose object it is to overthrow the Government of the other party to the Treaty. + +6. The Governments of the two Contracting Parties undertake, upon exchanging the ratification of this Treaty of Peace to furnish each other with precise information regarding the strength of the non-Governmental and also of military stocks (stationary or mobile), and of the military and technical material belonging to those irregular forces, which were on their territory at the time when the Armistice was concluded, that is to say, on the thirty-first of December, One thousand nine hundred and nineteen. + +7. In order to superintend the carrying out of the military guarantees conceded to each other by the Contracting Parties, a mixed commission is to be established whose composition, rights and obligations shall be determined by “Instructions” which are annxed to the present Article. \ No newline at end of file diff --git a/website/stopwords.txt b/website/stopwords.txt index 15af646..9519cc3 100755 --- a/website/stopwords.txt +++ b/website/stopwords.txt @@ -3,6 +3,7 @@ ’ ( ) +" faceapp : ; diff --git a/website/storage.py b/website/storage.py new file mode 100644 index 0000000..bf3b04f --- /dev/null +++ b/website/storage.py @@ -0,0 +1,24 @@ + + +# # for new_file in tokens_without_stopwords: +# appendFile = open('tokenized_words.txt', 'a') +# appendFile.write(" " + new_file) +# appendFile.close() + + +# #shows only stopwords +# processed_word_list = [] + +# for word in tokenized: +# # print(word) +# if word not in all_stopwords: +# processed_word_list.append('*') +# else: +# processed_word_list.append(word) +# print(processed_word_list) + + + +# # # result putting in a graph +# top_words_plot = frequency_word.plot(10) +# print(top_words_plot) diff --git a/website/tag_checkbox.py b/website/tag_checkbox.py new file mode 100644 index 0000000..3b5eebd --- /dev/null +++ b/website/tag_checkbox.py @@ -0,0 +1,11 @@ +from bs4 import BeautifulSoup +from urllib.parse import quote as urlquote, unquote as urlunquote + +file = open('tag_comparison.py', 'r') +x = 1 +print(read) + +with open(file, 'w') as new_html: + read = new_html.read() + html = BeautifulSoup(text, 'html.parser') + line = html.find('NN', 'span') diff --git a/website/tag_comparison.html b/website/tag_comparison.html new file mode 100644 index 0000000..65c9084 --- /dev/null +++ b/website/tag_comparison.html @@ -0,0 +1,7956 @@ + + + + + + + + + + Noun + + + + + + + +
+

FaceApp

+
+
Service
FaceApp

+
Type
Image editing

+
Initial release
December 31, 2016

+
Type
Image editing

+
source

+
Description
FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence. The app can transform a face to make it smile, look younger, look older, or change gender.

+
+
+1 +. +Eligibility +You +must +be +at +least +13 +years +of +age +to +access +or +use +our +Services +. +If +you +are +under +18 +years +of +age +( +or +the +age +of +legal +majority +where +you +live +) +, +you +may +only +access +or +use +our +Services +under +the +supervision +of +a +parent +or +legal +guardian +who +agrees +to +be +bound +by +this +Agreement +. +If +you +are +a +parent +or +legal +guardian +of +a +user +under +the +age +of +18 +( +or +the +age +of +legal +majority +) +, +you +agree +to +be +fully +responsible +for +the +acts +or +omissions +of +such +user +in +connection +with +our +Services +. +If +you +are +accessing +or +using +our +Services +on +behalf +of +another +person +or +entity +, +you +represent +that +you +are +authorized +to +accept +this +Agreement +on +that +person +or +entity + +s +behalf +and +that +the +person +or +entity +agrees +to +be +responsible +to +us +if +you +or +the +other +person +or +entity +violates +this +Agreement +. +2 +. +User +Accounts +and +Account +Security +If +you +choose +to +login +to +the +Services +via +a +third-party +platform +or +social +media +network +, +you +will +need +to +use +your +credentials +( +e.g. +, +username +and +password +) +from +a +third-party +online +platform +. +You +must +maintain +the +security +of +your +third +party +account +and +promptly +notify +us +if +you +discover +or +suspect +that +someone +has +accessed +your +account +without +your +permission +. +If +you +permit +others +to +use +your +account +credentials +, +you +are +responsible +for +the +activities +of +such +users +that +occur +in +connection +with +your +account +. +3 +. +Privacy +Please +refer +to +our +Privacy +Policy +for +information +about +how +we +collect +, +use +and +disclose +information +about +you +. +4 +. +User +Content +Our +Services +may +allow +you +and +other +users +to +create +, +post +, +store +and +share +content +, +including +photos +, +videos +, +messages +, +text +, +software +and +other +materials +( +collectively +, + +User +Content + +) +. +User +Content +does +not +include +user-generated +filters +. +Subject +to +this +Agreement +and +the +Privacy +Policy +, +you +retain +all +rights +in +and +to +your +User +Content +, +as +between +you +and +FaceApp +. +Further +, +FaceApp +does +not +claim +ownership +of +any +User +Content +that +you +post +on +or +through +the +Services +. +You +grant +FaceApp +a +nonexclusive +, +royalty-free +, +worldwide +, +fully +paid +license +to +use +, +reproduce +, +modify +, +adapt +, +create +derivative +works +from +, +distribute +, +perform +and +display +your +User +Content +during +the +term +of +this +Agreement +solely +to +provide +you +with +the +Services +. +You +acknowledge +that +some +of +the +Services +are +supported +by +advertising +revenue +and +may +display +advertisements +and +promotions +, +and +you +hereby +agree +that +FaceApp +may +place +such +advertising +and +promotions +on +the +Services +or +on +, +about +, +or +in +conjunction +with +your +User +Content +. +The +manner +, +mode +and +extent +of +such +advertising +and +promotions +are +subject +to +change +without +specific +notice +to +you +. +You +acknowledge +that +we +may +not +always +identify +paid +services +, +sponsored +content +, +or +commercial +communications +as +such +. +You +represent +and +warrant +that +: +( +i +) +you +own +or +otherwise +have +the +right +to +use +the +User +Content +modified +by +you +on +or +through +the +Services +in +accordance +with +the +rights +and +licenses +set +forth +in +this +Agreement +; +( +ii +) +you +agree +to +pay +for +all +royalties +, +fees +, +and +any +other +monies +owed +by +reason +of +User +Content +you +stylize +on +or +through +the +Services +; +and +( +iii +) +you +have +the +legal +right +and +capacity +to +enter +into +this +Agreement +in +your +jurisdiction +. +You +may +not +create +, +post +, +store +or +share +any +User +Content +that +violates +this +Agreement +or +for +which +you +do +not +have +all +the +rights +necessary +to +grant +us +the +license +described +above +. +Although +we +have +no +obligation +to +screen +, +edit +or +monitor +User +Content +, +we +may +delete +or +remove +User +Content +at +any +time +and +for +any +reason +. +FaceApp +is +not +a +backup +service +and +you +agree +that +you +will +not +rely +on +the +Services +for +the +purposes +of +User +Content +backup +or +storage +. +FaceApp +will +not +be +liable +to +you +for +any +modification +, +suspension +, +or +discontinuation +of +the +Services +, +or +the +loss +of +any +User +Content +. +5 +. +Prohibited +Conduct +and +Content +You +will +not +violate +any +applicable +law +, +contract +, +intellectual +property +or +other +third-party +right +or +commit +a +tort +, +and +you +are +solely +responsible +for +your +conduct +while +accessing +or +using +our +Services +. +You +will +not +: +Engage +in +any +harassing +, +threatening +, +intimidating +, +predatory +or +stalking +conduct +; +Use +or +attempt +to +use +another +user + +s +account +without +authorization +from +that +user +and +FaceApp +; +Use +our +Services +in +any +manner +that +could +interfere +with +, +disrupt +, +negatively +affect +or +inhibit +other +users +from +fully +enjoying +our +Services +or +that +could +damage +, +disable +, +overburden +or +impair +the +functioning +of +our +Services +in +any +manner +; +Reverse +engineer +any +aspect +of +our +Services +or +do +anything +that +might +discover +source +code +or +bypass +or +circumvent +measures +employed +to +prevent +or +limit +access +to +any +part +of +our +Services +; +Attempt +to +circumvent +any +content-filtering +techniques +we +employ +or +attempt +to +access +any +feature +or +area +of +our +Services +that +you +are +not +authorized +to +access +; +Develop +or +use +any +third-party +applications +that +interact +with +our +Services +without +our +prior +written +consent +, +including +any +scripts +designed +to +scrape +or +extract +data +from +our +Services +; +Use +our +Services +for +any +illegal +or +unauthorized +purpose +, +or +engage +in +, +encourage +or +promote +any +activity +that +violates +this +Agreement +. +You +may +also +only +post +or +otherwise +share +User +Content +that +is +non-confidential +and +you +have +all +necessary +rights +to +disclose +. +You +may +not +create +, +post +, +store +or +share +any +User +Content +that +: +Is +unlawful +, +libelous +, +defamatory +, +obscene +, +pornographic +, +indecent +, +lewd +, +suggestive +, +harassing +, +threatening +, +invasive +of +privacy +or +publicity +rights +, +abusive +, +inflammatory +or +fraudulent +; +Would +constitute +, +encourage +or +provide +instructions +for +a +criminal +offense +, +violate +the +rights +of +any +party +or +otherwise +create +liability +or +violate +any +local +, +state +, +national +or +international +law +; +May +infringe +any +patent +, +trademark +, +trade +secret +, +copyright +or +other +intellectual +or +proprietary +right +of +any +party +; +Contains +or +depicts +any +statements +, +remarks +or +claims +that +do +not +reflect +your +honest +views +and +experiences +; +Impersonates +, +or +misrepresents +your +affiliation +with +, +any +person +or +entity +; +Contains +any +unsolicited +promotions +, +political +campaigning +, +advertising +or +solicitations +; +Contains +any +private +or +personal +information +of +a +third +party +without +such +third +party + +s +consent +; +Contains +any +viruses +, +corrupted +data +or +other +harmful +, +disruptive +or +destructive +files +or +content +; +or +Is +, +in +our +sole +judgment +, +objectionable +or +that +restricts +or +inhibits +any +other +person +from +using +or +enjoying +our +Services +, +or +that +may +expose +FaceApp +or +others +to +any +harm +or +liability +of +any +type +. +In +addition +, +although +we +have +no +obligation +to +screen +, +edit +or +monitor +User +Content +, +we +may +delete +or +remove +User +Content +at +any +time +and +for +any +reason +. +6 +. +Limited +License +; +Copyright +and +Trademark +Our +Services +and +the +text +, +graphics +, +images +, +photographs +, +videos +, +illustrations +, +trademarks +, +trade +names +, +page +headers +, +button +icons +, +scripts +, +service +marks +, +logos +, +slogans +, +filters +, +user +generated +filters +and +other +content +contained +therein +( +collectively +, +the + +FaceApp +Content + +) +are +owned +by +or +licensed +to +FaceApp +and +are +protected +under +both +United +States +and +foreign +laws +. +Except +as +explicitly +stated +in +this +Agreement +, +FaceApp +and +our +licensors +reserve +all +rights +in +and +to +our +Services +and +the +FaceApp +Content +. +You +are +hereby +granted +a +limited +, +nonexclusive +, +nontransferable +, +non-sublicensable +, +revocable +license +to +access +and +use +our +Services +and +FaceApp +Content +for +your +own +personal +use +; +however +, +such +license +is +subject +to +this +Agreement +and +does +not +include +any +right +to +: +( +a +) +sell +, +resell +or +commercially +use +our +Services +or +FaceApp +Content +; +( +b +) +copy +, +reproduce +, +distribute +, +publicly +perform +or +publicly +display +FaceApp +Content +, +except +as +expressly +permitted +by +us +or +our +licensors +; +( +c +) +modify +the +FaceApp +Content +, +remove +any +proprietary +rights +notices +or +markings +, +or +otherwise +make +any +derivative +uses +of +our +Services +or +FaceApp +Content +, +except +as +expressly +set +forth +in +this +Agreement +; +( +d +) +use +any +data +mining +, +robots +or +similar +data +gathering +or +extraction +methods +; +or +( +e +) +use +our +Services +or +FaceApp +Content +other +than +as +expressly +provided +in +this +Agreement +. +Any +use +of +our +Services +or +FaceApp +Content +other +than +as +specifically +authorized +herein +, +without +our +prior +written +permission +, +is +strictly +prohibited +and +will +terminate +the +license +granted +under +this +Agreement +. +You +will +not +remove +, +alter +or +conceal +any +copyright +, +trademark +, +service +mark +or +other +proprietary +rights +notices +incorporated +in +or +accompanying +the +FaceApp +Content +. +7 +. +Feedback +Any +questions +, +comments +, +suggestions +, +ideas +, +original +or +creative +materials +or +other +information +you +submit +about +FaceApp +or +our +products +or +Services +( +collectively +, + +Feedback + +) +, +is +non-confidential +and +we +have +no +obligations +( +including +without +limitation +obligations +of +confidentiality +) +with +respect +to +such +Feedback +. +You +hereby +grant +to +FaceApp +a +fully +paid +, +royalty-free +, +perpetual +, +irrevocable +, +worldwide +, +non-exclusive +, +and +fully +sublicensable +right +and +license +to +use +, +reproduce +, +perform +, +display +, +distribute +, +adapt +, +modify +, +re-format +, +create +derivative +works +of +, +and +otherwise +commercially +or +non-commercially +exploit +in +any +manner +, +any +and +all +Feedback +, +and +to +sublicense +the +foregoing +rights +, +in +connection +with +the +operation +and +maintenance +of +the +Services +and/or +FaceApp + +s +business +. +8 +. +Copyright +Complaints +We +have +a +policy +of +limiting +access +to +our +Services +and +terminating +the +accounts +of +users +who +repeatedly +infringe +the +intellectual +property +copyright +rights +of +others +upon +prompt +notification +to +us +by +the +copyright +owner +or +the +copyright +owner + +s +legal +agent +. +Without +limiting +the +foregoing +, +if +you +believe +that +your +work +has +been +copied +and +posted +on +or +through +the +Services +in +a +way +that +constitutes +copyright +infringement +, +please +provide +our +Copyright +Agent +with +the +following +information +: +( +a +) +an +electronic +or +physical +signature +of +the +person +authorized +to +act +on +behalf +of +the +owner +of +the +copyright +interest +; +( +b +) +a +description +of +the +copyrighted +work +that +you +claim +has +been +infringed +; +( +c +) +a +description +of +the +location +on +the +Services +of +the +material +that +you +claim +is +infringing +; +( +d +) +your +address +, +telephone +number +and +e-mail +address +; + +a +written +statement +by +you +that +you +have +a +good +faith +belief +that +the +disputed +use +is +not +authorized +by +the +copyright +owner +, +its +agent +or +the +law +; +and +( +f +) +a +statement +by +you +, +made +under +penalty +of +perjury +, +that +the +above +information +in +your +notice +is +accurate +and +that +you +are +the +copyright +owner +or +authorized +to +act +on +the +copyright +owner + +s +behalf +. +Contact +information +for +FaceApp + +s +Copyright +Agent +for +notice +of +claims +of +infringement +is +as +follows +: +Yaroslav +Goncharov +, +Designated +DMCA +Copyright +Agent +, +FaceApp +Inc +, +1000 +N +West +Street +, +Suite +1200 +, +Wilmington +, +Delaware +, +19801 +. +9 +. +Indemnification +To +the +fullest +extent +permitted +by +applicable +law +, +you +will +indemnify +, +defend +, +and +hold +harmless +FaceApp +and +each +of +our +respective +officers +, +directors +, +agents +, +partners +and +employees +( +individually +and +collectively +, +the + +FaceApp +Parties + +) +from +and +against +any +loss +, +liability +, +claim +, +demand +, +damages +, +expenses +or +costs +( + +Claims + +) +arising +out +of +or +related +to +( +a +) +your +access +to +or +use +of +our +Services +; +( +b +) +your +User +Content +or +Feedback +; +( +c +) +your +violation +of +this +Agreement +; +( +d +) +your +violation +, +misappropriation +or +infringement +of +any +rights +of +another +( +including +intellectual +property +rights +or +privacy +rights +) +; +or +( +e +) +your +conduct +in +connection +with +our +Services +. +You +agree +to +promptly +notify +FaceApp +Parties +of +any +third +party +Claims +, +cooperate +with +FaceApp +Parties +in +defending +such +Claims +and +pay +all +fees +, +costs +and +expenses +associated +with +defending +such +Claims +( +including +, +but +not +limited +to +, +attorneys + +fees +) +. +You +also +agree +that +the +FaceApp +Parties +will +have +control +of +the +defense +or +settlement +of +any +third +party +Claims +. +This +indemnity +is +in +addition +to +, +and +not +in +lieu +of +, +any +other +indemnities +set +forth +in +a +written +agreement +between +you +and +FaceApp +or +the +other +FaceApp +Parties +. +10 +. +Disclaimers +We +do +not +control +, +endorse +or +take +responsibility +for +any +User +Content +or +third-party +content +available +on +or +linked +to +by +our +Services +. +YOUR +USE +OF +OUR +SERVICES +IS +AT +YOUR +SOLE +RISK +. +OUR +SERVICES +ARE +PROVIDED + +AS +IS + +AND + +AS +AVAILABLE + +WITHOUT +WARRANTIES +OF +ANY +KIND +, +EITHER +EXPRESS +OR +IMPLIED +, +INCLUDING +, +BUT +NOT +LIMITED +TO +, +IMPLIED +WARRANTIES +OF +MERCHANTABILITY +, +FITNESS +FOR +A +PARTICULAR +PURPOSE +, +TITLE +, +AND +NON-INFRINGEMENT +. +In +addition +, +FaceApp +does +not +represent +or +warrant +that +our +Services +are +accurate +, +complete +, +reliable +, +current +or +error-free +. +While +FaceApp +attempts +to +make +your +access +to +and +use +of +our +Services +safe +, +we +can +not +and +do +not +represent +or +warrant +that +our +Services +or +servers +are +free +of +viruses +or +other +harmful +components +. +You +assume +the +entire +risk +as +to +the +quality +and +performance +of +the +Services +. +11 +. +Limitation +of +Liability +FACEAPP +AND +THE +OTHER +FACEAPP +PARTIES +WILL +NOT +BE +LIABLE +TO +YOU +UNDER +ANY +THEORY +OF +LIABILITY—WHETHER +BASED +IN +CONTRACT +, +TORT +, +NEGLIGENCE +, +STRICT +LIABILITY +, +WARRANTY +, +OR +OTHERWISE—FOR +ANY +INDIRECT +, +CONSEQUENTIAL +, +EXEMPLARY +, +INCIDENTAL +, +PUNITIVE +OR +SPECIAL +DAMAGES +OR +LOST +PROFITS +, +EVEN +IF +FACEAPP +OR +THE +OTHER +FACEAPP +PARTIES +HAVE +BEEN +ADVISED +OF +THE +POSSIBILITY +OF +SUCH +DAMAGES +. +THE +TOTAL +LIABILITY +OF +FACEAPP +AND +THE +OTHER +FACEAPP +PARTIES +, +FOR +ANY +CLAIM +ARISING +OUT +OF +OR +RELATING +TO +THIS +AGREEMENT +OR +OUR +SERVICES +, +REGARDLESS +OF +THE +FORM +OF +THE +ACTION +, +IS +LIMITED +TO +THE +AMOUNT +PAID +, +IF +ANY +, +BY +YOU +TO +ACCESS +OR +USE +OUR +SERVICES +. +The +limitations +set +forth +in +this +section +will +not +limit +or +exclude +liability +for +the +gross +negligence +, +fraud +or +intentional +misconduct +of +FaceApp +or +the +other +FaceApp +Parties +or +for +any +other +matters +in +which +liability +can +not +be +excluded +or +limited +under +applicable +law +. +Additionally +, +some +jurisdictions +do +not +allow +the +exclusion +or +limitation +of +incidental +or +consequential +damages +, +so +the +above +limitations +or +exclusions +may +not +apply +to +you +. +12 +. +Release +To +the +fullest +extent +permitted +by +applicable +law +, +you +release +FaceApp +and +the +other +FaceApp +Parties +from +responsibility +, +liability +, +claims +, +demands +, +and/or +damages +( +actual +and +consequential +) +of +every +kind +and +nature +, +known +and +unknown +( +including +, +but +not +limited +to +, +claims +of +negligence +) +, +arising +out +of +or +related +to +disputes +between +users +and +the +acts +or +omissions +of +third +parties +. +You +expressly +waive +any +rights +you +may +have +under +California +Civil +Code +§ +1542 +as +well +as +any +other +statute +or +common +law +principles +that +would +otherwise +limit +the +coverage +of +this +release +to +include +only +those +claims +which +you +may +know +or +suspect +to +exist +in +your +favor +at +the +time +of +agreeing +to +this +release +. +13 +. +Transfer +and +Processing +Data +By +accessing +or +using +our +Services +, +you +acknowledge +and +, +as +applicable +, +consent +to +the +processing +, +transfer +and +storage +of +information +about +you +in +and +to +the +United +States +and +other +countries +. +14 +. +Dispute +Resolution +; +Binding +Arbitration +Agreement +Please +read +the +following +section +carefully +because +it +requires +users +who +are +U.S. +residents +to +arbitrate +certain +disputes +and +claims +with +FaceApp +and +limits +the +manner +in +which +you +can +seek +relief +from +us +. +Applicability +of +Arbitration +Agreement +. +Except +for +small +claims +disputes +in +which +you +or +FaceApp +seek +to +bring +an +individual +action +in +small +claims +court +located +in +the +county +of +your +billing +address +or +disputes +in +which +you +or +FaceApp +seeks +injunctive +or +other +equitable +relief +for +the +alleged +unlawful +use +of +intellectual +property +, +you +and +FaceApp +waive +your +rights +to +a +jury +trial +and +to +have +any +dispute +arising +out +of +or +related +to +this +Agreement +or +our +Services +resolved +in +court +. +This +Arbitration +Agreement +shall +apply +, +without +limitation +, +to +all +disputes +or +claims +and +requests +for +relief +that +arose +or +were +asserted +before +the +effective +date +of +this +Agreement +or +any +prior +version +of +this +Agreement +. +Arbitration +Rules +and +Forum +. +The +Federal +Arbitration +Act +governs +the +interpretation +and +enforcement +of +this +Arbitration +Agreement +. +To +begin +an +arbitration +proceeding +, +you +must +send +a +letter +requesting +arbitration +and +describing +your +dispute +or +claim +or +request +for +relief +to +our +registered +agent +[ +include +name +and +address +of +registered +agent +here +] +. +The +arbitration +will +be +resolved +through +confidential +binding +arbitration +by +the +Judicial +Arbitration +and +Mediation +Services +( + +JAMS + +) +, +an +established +alternative +dispute +resolution +provider +. +Disputes +involving +claims +, +counterclaims +, +or +requests +for +relief +under +$ +250,000 +, +not +inclusive +of +attorneys + +fees +and +interest +, +shall +be +subject +to +JAMS + +s +most +current +version +of +the +Streamlined +Arbitration +Rules +and +procedures +available +; +all +other +disputes +shall +be +subject +to +JAMS + +s +most +current +version +of +the +Comprehensive +Arbitration +Rules +and +Procedures +, +available +at +http +: +//www.jamsadr.com/rules-comprehensive-arbitration/ +. +JAMS + +s +rules +are +also +available +at +www.jamsadr.com +or +by +calling +JAMS +at +800-352-5267 +. +If +JAMS +is +not +available +to +arbitrate +, +the +parties +will +select +an +alternative +arbitral +forum +. +If +the +arbitrator +finds +that +you +can +not +afford +to +pay +JAMS + +s +filing +, +administrative +, +hearing +and/or +other +fees +and +can +not +obtain +a +waiver +from +JAMS +, +FaceApp +will +pay +them +for +you +. +In +addition +, +we +will +reimburse +all +such +JAMS + +s +filing +, +administrative +, +hearing +and/or +other +fees +for +disputes +, +claims +, +or +requests +for +relief +totaling +less +than +$ +10,000 +unless +the +arbitrator +determines +the +claims +are +frivolous +. +You +may +choose +to +have +the +arbitration +conduced +by +telephone +, +based +on +written +submissions +, +or +in +person +in +the +country +where +you +live +or +at +another +mutually +agreed +location +. +Any +judgment +on +the +award +rendered +by +the +arbitrator +may +be +entered +in +any +court +of +competent +jurisdiction +. +You +may +choose +to +have +the +arbitration +conduced +by +telephone +, +based +on +written +submissions +or +at +another +mutually +agreed +location +. +Any +judgment +on +the +award +rendered +by +the +arbitrator +may +be +entered +in +any +court +of +competent +jurisdiction +. +Authority +of +Arbitrator +. +The +arbitrator +shall +have +exclusive +authority +to +( +a +) +determine +the +scope +and +enforceability +of +this +Arbitration +Agreement +and +( +b +) +resolve +any +dispute +related +to +the +interpretation +, +applicability +, +enforceability +or +formation +of +this +Arbitration +Agreement +, +including +, +but +not +limited +to +, +any +assertion +that +all +or +any +part +of +this +Arbitration +Agreement +is +void +or +voidable +. +The +arbitration +will +decide +the +rights +and +liabilities +, +if +any +, +of +you +and +FaceApp +. +The +arbitration +proceeding +will +not +be +consolidated +with +any +other +matters +or +joined +with +any +other +cases +or +parties +. +The +arbitrator +shall +have +the +authority +to +grant +motions +dispositive +of +all +or +part +of +any +claim +. +The +arbitrator +shall +have +the +authority +to +award +monetary +damages +and +to +grant +any +non-monetary +remedy +or +relief +available +to +an +individual +under +applicable +law +, +the +arbitral +forum + +s +rules +, +and +the +Agreement +( +including +the +Arbitration +Agreement +) +. +The +arbitrator +shall +issue +a +written +award +and +statement +of +decision +describing +the +essential +findings +and +conclusions +on +which +the +award +is +based +, +including +the +calculation +of +any +damages +awarded +. +The +arbitrator +has +the +same +authority +to +award +relief +on +an +individual +basis +that +a +judge +in +a +court +of +law +would +have +. +The +award +of +the +arbitrator +is +final +and +binding +upon +you +and +us +. +Waiver +of +Jury +Trial +. +YOU +AND +FACEAPP +HEREBY +WAIVE +ANY +CONSTITUTIONAL +AND +STATUTORY +RIGHTS +TO +SUE +IN +COURT +AND +HAVE +A +TRIAL +IN +FRONT +OF +A +JUDGE +OR +A +JURY +. +You +and +FaceApp +are +instead +electing +that +all +disputes +, +claims +or +requests +for +relief +shall +be +resolved +by +arbitration +under +this +Arbitration +Agreement +, +except +as +specified +above +. +An +arbitrator +can +award +on +an +individual +basis +the +same +damages +and +relief +as +a +court +and +must +follow +this +Agreement +as +a +court +would +. +However +, +there +is +no +judge +or +jury +in +arbitration +, +and +court +review +of +an +arbitration +award +is +subject +to +very +limited +. +Review +. +Waiver +of +Class +or +Other +Non-Individualized +Relief +. +ALL +DISPUTES +, +CLAIMS +AND +REQUESTS +FOR +RELIEF +WITHIN +THE +SCOPE +OF +THIS +ARBITRATION +AGREEMENT +MUST +BE +ARBITRATED +ON +AN +INDIVIDUAL +BASIS +AND +NOT +ON +A +CLASS +OR +COLLECTIVE +BASIS +. +ONLY +INDIVIDUAL +RELIEF +IS +AVAILABLE +, +AND +CLAIMS +OF +MORE +THAN +ONE +USER +CAN +NOT +BE +ARBITRATED +OR +CONSOLIDATED +WITH +THOSE +OF +ANY +OTHER +USER +. +If +a +decision +is +issued +stating +that +applicable +law +precludes +enforcement +of +any +of +this +subsection + +s +limitations +as +to +a +given +dispute +, +claim +or +request +for +relief +, +then +such +aspect +must +be +severed +from +the +arbitration +and +brought +into +the +State +or +Federal +Courts +located +in +the +State +of +California +. +All +other +disputes +, +claims +, +or +requests +for +relief +shall +be +arbitrated +. +30-Day +Right +to +Opt-Out +. +You +have +the +right +to +opt +out +of +the +provisions +of +this +Arbitration +Agreement +by +sending +written +notice +of +your +decision +to +opt-out +to +: +arbitration +@ +faceapp.com +, +within +30 +days +after +first +becoming +subject +to +this +Arbitration +Agreement +. +Your +notice +must +include +your +name +and +address +, +your +username +( +if +any +) +, +the +e-mail +address +you +used +to +set +up +your +account +( +if +you +have +one +) +, +and +an +unequivocal +statement +that +you +want +to +opt +out +of +this +Arbitration +Agreement +. +If +you +opt +out +of +this +Arbitration +Agreement +, +all +other +parts +of +this +Agreement +will +continue +to +apply +to +you +. +Opting +out +of +this +Arbitration +Agreement +has +no +effect +on +any +other +arbitration +agreements +that +you +may +currently +have +, +or +may +enter +in +the +future +, +with +us +. +You +and +FaceApp +agree +that +the +state +or +federal +courts +of +the +State +of +California +and +the +United +States +sitting +in +Santa +Clara +County +, +California +have +exclusive +jurisdiction +over +any +appeals +and +the +enforcement +of +an +arbitration +award +. +Severability +. +Except +as +provided +in +this +Section +14 +above +, +if +any +part +or +parts +of +this +Arbitration +Agreement +are +found +under +the +law +to +be +invalid +or +unenforceable +, +then +such +specific +part +or +parts +shall +be +of +no +force +and +effect +and +shall +be +severed +, +and +the +remainder +of +the +Arbitration +Agreement +shall +continue +in +full +force +and +effect +. +Survival +of +Agreement +. +This +Arbitration +Agreement +will +survive +the +termination +of +your +relationship +with +FaceApp +. +Modification +, +Notwithstanding +any +provision +in +this +Agreement +to +the +contrary +, +we +agree +that +if +FaceApp +makes +any +future +material +change +to +this +Arbitration +Agreement +you +may +reject +that +change +within +thirty +( +30 +) +days +of +such +change +becoming +effective +by +writing +Company +at +the +following +address +: +arbitration +@ +faceapp.com +. +15 +. +Governing +Law +and +Venue +This +Agreement +and +your +access +to +and +use +of +our +Services +will +be +governed +by +and +construed +and +enforced +in +accordance +with +the +laws +of +California +, +consistent +with +the +Federal +Arbitration +Act +, +without +regard +to +conflict +of +law +rules +or +principles +( +whether +of +California +or +any +other +jurisdiction +) +that +would +cause +the +application +of +the +laws +of +any +other +jurisdiction +. +The +United +Nations +Convention +for +the +International +Sale +of +Goods +does +not +apply +to +the +Agreement +. +Any +dispute +between +the +parties +that +is +not +subject +to +arbitration +or +can +not +be +heard +in +small +claims +court +will +be +resolved +in +the +state +or +federal +courts +of +California +and +the +United +States +, +respectively +, +sitting +in +Santa +Clara +County +, +California +. +16 +. +Electronic +Communications +By +accessing +or +using +the +Services +, +you +also +consent +to +receive +electronic +communications +from +FaceApp +( +e.g. +, +responses +to +your +requests +, +questions +and +feedback +, +announcements +, +updates +, +and +security +alerts +through +a +push +notification +or +by +posting +notices +on +our +Services +) +. +You +agree +that +any +notices +, +agreements +, +disclosures +or +other +communications +that +we +send +to +you +electronically +will +satisfy +any +legal +communication +requirements +, +including +, +but +not +limited +to +, +that +such +communications +be +in +writing +. +17 +. +Termination +We +reserve +the +right +, +without +notice +and +in +our +sole +discretion +, +to +terminate +your +right +to +access +or +use +our +Services +. +We +are +not +responsible +for +any +loss +or +harm +related +to +your +inability +to +access +or +use +our +Services +. +18 +. +Severability +If +any +provision +or +part +of +a +provision +of +this +Agreement +is +unlawful +, +void +or +unenforceable +, +that +provision +or +part +of +the +provision +is +deemed +severable +from +this +Agreement +and +does +not +affect +the +validity +and +enforceability +of +any +remaining +provisions +. +19 +. +Additional +Terms +Applicable +to +iOS +Devices +The +following +terms +apply +if +you +install +, +access +or +use +the +Services +on +any +device +that +contains +the +iOS +mobile +operating +system +( +the + +App + +) +developed +by +Apple +Inc. +( + +Apple + +) +. +Acknowledgement +. +You +acknowledge +that +this +Agreement +is +concluded +solely +between +us +, +and +not +with +Apple +, +and +FaceApp +, +not +Apple +, +is +solely +responsible +for +the +App +and +the +content +thereof +. +You +further +acknowledge +that +the +usage +rules +for +the +App +are +subject +to +any +additional +restrictions +set +forth +in +the +Usage +Rules +for +the +Apple +App +Store +Terms +of +Service +as +of +the +date +you +download +the +App +, +and +in +the +event +of +any +conflict +, +the +Usage +Rules +in +the +App +Store +shall +govern +if +they +are +more +restrictive +. +You +acknowledge +and +agree +that +you +have +had +the +opportunity +to +review +the +Usage +Rules +. +Scope +of +License +. +The +license +granted +to +you +is +limited +to +a +non-transferable +license +to +use +the +App +on +any +iPhone +, +iPod +touch +or +iPad +that +you +own +or +control +as +permitted +by +the +Usage +Rules +set +forth +in +the +Apple +App +Store +Terms +of +Service +. +Maintenance +and +Support +. +You +and +FaceApp +acknowledge +that +Apple +has +no +obligation +whatsoever +to +furnish +any +maintenance +and +support +services +with +respect +to +the +App +. +Warranty +. +You +acknowledge +that +Apple +is +not +responsible +for +any +product +warranties +, +whether +express +or +implied +by +law +, +with +respect +to +the +App +. +In +the +event +of +any +failure +of +the +App +to +conform +to +any +applicable +warranty +, +you +may +notify +Apple +, +and +Apple +will +refund +the +purchase +price +, +if +any +, +paid +to +Apple +for +the +App +by +you +; +and +to +the +maximum +extent +permitted +by +applicable +law +, +Apple +will +have +no +other +warranty +obligation +whatsoever +with +respect +to +the +App +. +The +parties +acknowledge +that +to +the +extent +that +there +are +any +applicable +warranties +, +any +other +claims +, +losses +, +liabilities +, +damages +, +costs +or +expenses +attributable +to +any +failure +to +conform +to +any +such +applicable +warranty +would +be +the +sole +responsibility +of +FaceApp +. +However +, +you +understand +and +agree +that +in +accordance +with +this +Agreement +, +FaceApp +has +disclaimed +all +warranties +of +any +kind +with +respect +to +the +App +, +and +therefore +, +there +are +no +warranties +applicable +to +the +App +. +Product +Claims +. +You +and +FaceApp +acknowledge +that +as +between +Apple +and +FaceApp +, +FaceApp +, +not +Apple +, +is +responsible +for +addressing +any +claims +relating +to +the +App +or +your +possession +and/or +use +of +the +App +, +including +, +but +not +limited +to +( +a +) +product +liability +claims +, +( +b +) +any +claim +that +the +App +fails +to +conform +to +any +applicable +legal +or +regulatory +requirement +, +and +( +c +) +claims +arising +under +consumer +protection +or +similar +legislation +. +Intellectual +Property +Rights +. +The +parties +acknowledge +that +, +in +the +event +of +any +third +party +claim +that +the +App +or +your +possession +and +use +of +the +App +infringe +that +third +party + +s +intellectual +property +rights +, +FaceApp +, +and +not +Apple +, +will +be +solely +responsible +for +the +investigation +, +defense +, +settlement +and +discharge +of +any +such +intellectual +property +infringement +claim +to +the +extent +required +under +this +Agreement +. +Legal +Compliance +. +You +represent +and +warrant +that +( +a +) +you +are +not +located +in +a +country +that +is +subject +to +a +U.S. +Government +embargo +, +or +that +has +been +designated +by +the +U.S. +Government +as +a + +terrorist +supporting + +country +, +and +( +b +) +you +are +not +listed +on +any +U.S. +Government +list +of +prohibited +or +restricted +parties +. +Developer +Name +and +Address +. +Any +questions +, +complaints +or +claims +with +respect +to +the +App +should +be +directed +to +: +FaceApp +Inc +1000 +N +West +Street +, +Suite +1200 +, +Wilmington +, +Delaware +, +19801 +USA +contact +@ +faceapp.com +Third-Party +Terms +of +Agreement +. +You +agree +to +comply +with +any +applicable +third-party +terms +when +using +the +Services +. +Third-Party +Beneficiary +. +The +parties +acknowledge +and +agree +that +Apple +, +and +Apple + +s +subsidiaries +, +are +third-party +beneficiaries +of +this +Agreement +, +and +that +, +upon +your +acceptance +of +this +Agreement +, +Apple +will +have +the +right +( +and +will +be +deemed +to +have +accepted +the +right +) +to +enforce +this +Agreement +against +you +as +a +third-party +beneficiary +thereof +) +. +20 +. +Export +You +may +not +use +, +export +, +import +, +or +transfer +all +or +any +portion +of +the +Services +except +as +authorized +by +U.S. +law +, +the +laws +of +the +jurisdiction +in +which +you +obtained +the +Services +, +and +any +other +applicable +laws +. +In +particular +, +but +without +limitation +, +the +Services +may +not +be +exported +or +re-exported +( +a +) +into +any +United +States +embargoes +countries +, +or +( +b +) +to +anyone +on +the +U.S. +Treasury +Department + +s +list +of +Specially +Designated +Nationals +or +the +U.S. +Department +of +Commerce + +s +Denied +Person + +s +List +or +Entity +List +. +By +using +the +Services +, +you +represent +and +warrant +that +( +y +) +you +are +not +located +in +a +country +that +is +subject +to +a +U.S. +Government +embargo +, +or +that +has +been +designated +by +the +U.S. +Government +as +a + +terrorist +supporting + +country +and +( +z +) +you +are +not +listed +on +any +U.S. +Government +list +of +prohibited +or +restricted +parties +. +You +also +will +not +use +the +Services +for +any +purpose +prohibited +by +U.S. +law +, +including +the +development +, +design +, +manufacture +or +production +of +missiles +, +nuclear +, +chemical +or +biological +weapons +. +You +acknowledge +and +agree +that +products +, +services +or +technology +provided +by +FaceApp +are +subject +to +the +export +control +laws +and +regulations +of +the +United +States +. +You +shall +comply +with +these +laws +and +regulations +and +shall +not +, +without +prior +U.S. +government +authorization +, +export +, +re-export +, +or +transfer +FaceApp +products +, +services +or +technology +, +either +directly +or +indirectly +, +to +any +country +in +violation +of +such +laws +and +regulations +. +21 +. +Miscellaneous +In +accordance +with +California +Civil +Code +section +1789.3 +, +you +may +report +complaints +to +the +Complaint +Assistance +Unit +of +the +Division +of +Consumer +Services +of +the +California +Department +of +Consumer +Affairs +by +contacting +them +in +writing +at +400 +R +Street +, +Sacramento +, +CA +95814 +, +or +by +telephone +at +( +800 +) +952-5210 +. +This +Agreement +constitutes +the +entire +agreement +between +you +and +FaceApp +relating +to +your +access +to +and +use +of +our +Services +. +The +failure +of +FaceApp +to +exercise +or +enforce +any +right +or +provision +of +this +Agreement +will +not +operate +as +a +waiver +of +such +right +or +provision +. +The +section +titles +in +this +Agreement +is +for +convenience +only +and +have +no +legal +or +contractual +effect +. +Except +as +otherwise +provided +herein +, +this +Agreement +is +intended +solely +for +the +benefit +of +the +parties +and +are +not +intended +to +confer +third +party +beneficiary +rights +upon +any +other +person +or +entity +. +
+
colonial words: +
services(69) +
agreement(60) +
arbitration(42) +
content(37) +
use(35) +
user(28) +
claims(28) +
may(26) +
rights(21) +
app(21) +
parties(20) +
apple(18) +
law(17) +
applicable(16) +
access(15) +
copyright(15) +
relief(15) +
shall(15) +
agree(14) +
without(14) +
+
+

Peace Treaty of Tartu

+
+
Name of Treaty
Peace Treaty of Tartu

+
Date
February 2, 1920

+
Location
Tartu, Estonia

+
Signed
February 2, 1920

+
Type
bilateral peace treaty

+
source

+
Description
The Tartu Peace Treaty or Treaty of Tartu is a peace treaty between Estonia and Russian Soviet Federative Socialist Republic signed on 2 February 1920, ending the Estonian War of Independence.

+
+
+Article +I +The +state +of +war +between +the +Contracting +Parties +will +end +on +the +day +on +which +the +present +Treaty +of +Peace +comes +into +force +. +Article +II +In +consequence +of +the +right +of +all +peoples +to +self-determination +, +to +the +point +of +seceding +completely +from +the +State +of +which +they +form +part +, +a +right +proclaimed +by +the +Socialist +and +Federal +Russian +Republic +of +the +Soviets +, +Russia +unreservedly +recognises +the +independence +and +sovereignty +of +the +State +of +Estonia +, +and +renounces +voluntarily +and +for +ever +all +sovereign +rights +possessed +by +Russia +over +the +Estonian +people +and +territory +whether +these +rights +be +based +on +the +juridical +position +that +formerly +existed +in +public +law +, +or +in +the +international +treaties +which +, +in +the +sense +here +indicated +, +lose +their +validity +in +future +. +From +the +fact +that +Estonia +has +belonged +to +Russia +, +no +obligation +whatsoever +will +fall +on +the +Estonian +people +and +land +to +Russia +. +Article +III +1 +. +The +frontier +between +Esthonia +and +Russia +follows +the +following +line +: +Starting +from +the +Bay +of +Narva +, +one +verst +south +of +the +Fishers + +House +, +it +turns +toward +Ropscha +, +then +follows +the +course +of +the +Rivers +Mertvitskaja +and +Rosson +, +as +far +as +the +village +of +Ilkino +, +from +Ilkino +one +verst +west +of +the +village +Keikino +, +half +a +verst +west +of +the +village +of +Isvosi +and +turns +towards +the +village +of +Kobõljaki +; +it +then +crosses +the +mouth +of +the +river +Schtschutschka +, +passes +by +Krivaja +Luka +, +by +the +estate +of +Petschurki +, +to +the +confluence +of +three +sources +of +the +river +Vtroja +, +follows +the +southern +boundary +of +the +village +of +Kuritschek +with +its +dependences +, +then +turns +in +a +straight +line +as +far +as +the +centre +line +of +the +Lake +Peipus +, +follows +it +in +a +southern +direction +, +and +thus +passes +one +verst +to +the +east +of +Piirisaar +( +Pork +) +; +follows +the +narrow +strip +of +the +lake +dividing +it +along +the +middle +as +far +as +the +island +of +Salu +, +thence +passes +through +Lake +Pihkva +( +Pskov +) +between +the +Islands +of +Talabski +and +the +Island +of +Kamonka +, +then +to +the +east +of +the +village +of +Poddubje +( +on +the +southern +bank +of +Lake +Pihkva +) +and +to +the +outlook +post +on +the +railway +situated +near +to +Grjardischtsche +, +then +passes +successively +to +the +west +of +the +Village +of +Schahintsõi +, +to +the +east +of +Novaja +, +across +the +Lake +Poganova +, +between +the +villages +of +Babina +and +Vomorski +, +to +one +verst +and +a +half +to +the +south +of +the +Forestry +keeper + +s +house +( +which +is +situated +to +the +north +of +Glybotschina +) +to +Sprechtitschi +and +to +the +Farm +Kudepi +. +Note +1 +. +The +Frontier +described +in +this +Article +is +shown +in +red +on +the +map +, +scale +of +three +versts +to +the +inch +( +0.0254 +metre +) +, +which +constitutes +the +first +Annex +to +Article +3 +. +In +case +of +difference +between +the +text +and +the +map +, +it +is +to +the +text +that +one +must +adhere +. +Note +2 +. +The +tracing +of +the +boundary +between +the +two +contracting +countries +and +the +placing +in +position +of +the +frontier +signs +will +be +carried +out +under +the +direction +of +a +special +mixed +commission +composed +of +an +equal +number +of +members +from +both +parties +. +In +marking +the +boundary +line +this +mixed +commission +will +decide +the +allocation +of +inhabited +areas +on +the +frontier +to +one +or +other +of +the +parties +according +to +ethnographical +indications +and +bearing +in +mind +economic +agreements +and +agricultural +consideration +. +2 +. +The +portion +of +the +territory +of +Esthonia +to +the +east +of +the +Narova +, +the +River +Narova +itself +, +and +the +islands +in +the +midst +of +the +stream +, +as +well +as +the +zone +to +the +south +of +Lake +Pihkva +, +which +is +situated +between +the +boundary +above +mentioned +and +the +line +of +villages +, +Borok-Smolni-Belkova-Sprechtitschi +, +will +be +, +from +a +military +point +of +view +, +considered +as +neutral +until +1 +January +1922 +. +Esthonia +undertakes +to +maintain +no +troops +of +any +kind +in +the +neutralized +zones +other +than +those +which +are +necessary +for +the +frontier +service +and +the +maintenance +of +order +, +and +of +which +the +strength +is +laid +down +in +Annex +2 +of +the +present +Article +; +not +to +construct +fortifications +or +observation +posts +, +nor +to +constitute +military +depots +, +nor +to +deposit +any +kind +of +war +material +whatsoever +with +the +exception +of +what +is +indispensable +for +the +effectives +allowed +for +; +nor +to +establish +ther +bases +or +depots +for +the +use +of +any +kind +of +vessels +, +or +of +any +kind +of +aerial +fleet +. +3 +. +Russia +for +her +part +undertakes +not +to +maintain +troops +in +the +region +of +Pskov +to +the +west +of +the +line +: +western +bank +of +the +mouth +of +Velikaja +, +the +villages +of +Sivtseva +, +Luhnova +, +Samulina +, +Schalki +and +Sprechtitschi +until +1 +January +1922 +, +which +are +indispensable +for +the +frontier +service +and +for +the +maintenance +of +order +and +for +the +effectives +provided +for +in +Annex +2 +of +the +present +Article +. +4 +. +The +contracting +parties +undertake +to +have +no +armed +vessels +whatsoever +on +Lakes +Peipus +and +Pihkva +. +Article +IV +During +one +year +from +the +day +of +ratification +of +the +present +Treaty +, +persons +of +non-Estonian +origin +living +in +Estonia +, +and +over +eighteen +years +of +age +, +have +the +right +to +opt +for +Russian +nationality +; +women +, +and +children +, +less +than +eighteen +years +of +age +, +take +the +nationality +of +the +husband +or +the +father +, +unless +there +exists +between +man +and +wife +any +contrary +agreement +. +The +people +who +have +opted +for +Russian +nationality +must +, +within +a +year +from +the +date +of +their +choice +, +leave +Estonian +territory +; +but +they +maintain +their +rights +over +the +property +and +can +take +with +them +their +movable +property +. +In +the +same +way +persons +of +Estonian +origin +living +in +Russia +can +opt +for +Estonian +nationality +within +the +same +length +of +time +and +under +the +same +conditions +. +Each +of +the +contracting +Governments +reserves +the +right +to +refuse +acceptance +to +its +citizenship +of +such +persons +. +Note +. +In +case +of +doubt +about +tho +origin +of +persons +, +all +those +who +could +have +been +personally +registered +or +whose +parents +would +have +been +registered +in +a +rural +or +urban +community +, +or +in +a + +class + +on +the +territory +now +composing +the +State +of +Estonia +, +shall +be +considered +as +Estonians +. +Article +V +In +case +the +perpetual +neutrality +of +Estonia +should +be +internationally +recognised +, +Russia +undertakes +to +respect +this +neutrality +and +to +take +part +in +guaranteeing +it +. +Article +VI +Should +the +Gulf +of +Finland +be +neutralised +, +the +two +contracting +Parties +undertake +to +accede +to +this +neutralisation +, +on +conditions +determined +by +common +agreement +by +all +the +States +concerned +, +and +established +by +the +international +acts +relating +thereto +; +should +the +international +convention +referred +to +be +concluded +, +they +also +undertake +to +put +their +naval +forces +, +or +part +thereof +, +into +such +conditions +as +this +international +convention +may +require +. +Article +VII +The +two +Contracting +Parties +undertake +: +1 +. +To +prohibit +the +presence +in +their +territory +of +any +troops +with +the +exception +of +those +of +their +own +Government +or +of +friendly +States +with +whom +one +of +the +Contracting +Parties +may +have +concluded +a +military +convention +, +but +which +are +not +de +facto +in +a +state +of +war +with +one +of +the +Contracting +Parties +, +and +also +to +prohibit +within +the +limits +of +their +territory +, +the +recruiting +and +mobilisation +of +particular +corps +by +States +, +organisations +and +groups +, +intended +for +armed +conflict +against +the +other +Contracting +Parties +. +2 +. +To +disarm +those +military +and +naval +forces +within +their +territory +which +did +not +belong +to +one +of +the +Contracting +Parties +on +the +first +of +October +, +One +thousand +nine +hundred +and +nineteen +; +to +neutralise +and +immobilise +, +until +the +first +of +January +, +One +thousand +nine +hundred +and +twenty-two +, +all +property +, +artillery +and +commissariat +material +( +exclusive +of +food +and +clothing +) +, +engineering +and +aviational +material +, +i. +e. +, +guns +, +machine +guns +, +rifles +, +side-arms +, +munitions +, +aeroplanes +, +armoured +vehicles +, +tanks +, +armoured +trains +, +etc. +, +belonging +to +the +military +and +naval +forces +referred +to +with +the +exception +of +such +technical +and +war +material +as +was +handed +over +to +these +forces +, +but +which +belongs +to +the +Contracting +Parties +or +to +other +States +, +any +portion +of +this +material +which +belongs +to +other +States +shall +be +returned +within +six +months +from +the +date +of +the +ratification +of +this +Treaty +. +The +disarmament +of +the +above-mentioned +irregular +military +and +naval +forces +, +and +the +immobilisation +and +neutralisation +of +their +military +stocks +and +of +all +their +technical +and +war +material +must +be +completed +: +the +first +30 +per +cent +. +of +men +and +material +within +the +first +seven +days +after +the +ratification +of +the +present +Treaty +of +Peace +, +and +the +remainder +within +the +two +following +weeks +at +the +rate +of +thirty-five +per +cent +per +week +. +3 +. +To +prohibit +the +soldiers +and +officers +of +the +irregular +troops +who +are +subject +to +disarmament +under +the +conditions +laid +down +by +the +prececing +Point +( +2 +) +from +joining +in +any +capacity +whatsoever +, +as +volunteers +, +the +ranks +of +the +Government +troops +of +the +Contracting +Parties +, +with +the +exception +of +: +( +a +) +Persons +of +Estonian +nationality +who +reside +outside +Estonia +, +but +who +have +opted +for +that +country +; +( +b +) +Persons +not +of +Estonian +nationality +who +resided +in +Estonia +before +the +first +of +May +, +One +thousand +nine +hundred +and +nineteen +, +and +who +have +not +opted +to +Russia +; +( +c +) +Persons +not +of +Estonian +nationality +who +have +not +opted +for +Russia +and +who +served +in +the +Estonian +army +before +the +twenty-seventh +of +November +, +One +thousand +nine +hundred +and +nineteen +. +Persons +belonging +to +the +classes +mentioned +in +sub-divisions +( +a +) +, +( +b +) +, +and +( +c +) +, +may +serve +with +the +armies +of +the +Estonian +Government +. +4 +. +( +a +) +To +prohibit +any +State +, +which +is +de +facto +in +a +state +of +war +with +one +of +the +Contracting +Parties +, +and +any +organisations +or +groups +intended +for +an +armed +conflict +with +one +of +the +Contracting +Parties +, +for +transporting +through +their +ports +or +their +territories +anything +which +might +be +used +for +attacking +the +other +Contracting +Party +, +particularly +armed +forces +belonging +to +these +States +, +organisations +or +groups +, +and +any +article +and +war +material +used +for +artillery +, +commissariat +, +engineering +, +aviation +, +etc. +, +which +may +belong +to +these +military +formations +. +4 +. +( +b +) +To +prohibit +, +exclusive +of +cases +provided +for +by +international +law +, +the +launching +and +navigation +in +their +territorial +waters +of +any +warships +, +gun-boats +, +mine-layers +, +etc. +, +belonging +either +to +organisations +or +groups +which +are +intended +to +fight +against +the +other +Contracting +Party +or +to +States +which +are +in +a +state +of +war +with +this +party +, +if +those +ships +are +intended +to +attack +it +, +and +if +this +intention +is +known +to +the +Contracting +Party +to +whose +territory +the +ports +and +territorial +waters +so +used +belong +. +5 +. +Not +to +authorise +the +formation +or +presence +in +their +territory +of +any +organisation +or +groups +whatsoever +, +which +claim +to +govern +the +whole +or +part +of +the +territory +of +the +other +Contracting +Party +, +or +the +presence +of +representatives +or +officials +of +organisations +and +groups +, +whose +object +it +is +to +overthrow +the +Government +of +the +other +party +to +the +Treaty +. +6 +. +The +Governments +of +the +two +Contracting +Parties +undertake +, +upon +exchanging +the +ratification +of +this +Treaty +of +Peace +to +furnish +each +other +with +precise +information +regarding +the +strength +of +the +non-Governmental +and +also +of +military +stocks +( +stationary +or +mobile +) +, +and +of +the +military +and +technical +material +belonging +to +those +irregular +forces +, +which +were +on +their +territory +at +the +time +when +the +Armistice +was +concluded +, +that +is +to +say +, +on +the +thirty-first +of +December +, +One +thousand +nine +hundred +and +nineteen +. +7 +. +In +order +to +superintend +the +carrying +out +of +the +military +guarantees +conceded +to +each +other +by +the +Contracting +Parties +, +a +mixed +commission +is +to +be +established +whose +composition +, +rights +and +obligations +shall +be +determined +by + +Instructions + +which +are +annxed +to +the +present +Article +. +
+
colonial words: +
contracting(20) +
parties(16) +
article(13) +
territory(11) +
military(11) +
russia(10) +
estonian(10) +
material(9) +
state(8) +
war(8) +
persons(8) +
estonia(7) +
village(7) +
nationality(7) +
within(7) +
states(7) +
forces(7) +
present(6) +
treaty(6) +
frontier(6) +
+
+ diff --git a/website/tag_comparison.py b/website/tag_comparison.py new file mode 100644 index 0000000..e3b7122 --- /dev/null +++ b/website/tag_comparison.py @@ -0,0 +1,310 @@ +from __future__ import division +import glob +from nltk import * +import re + + +import nltk +import codecs +from nltk import sent_tokenize, word_tokenize, pos_tag +from nltk.probability import FreqDist +from nltk.corpus import stopwords +from PIL import Image +import base64 +nltk.download('stopwords') + + + + +# infofile = open('faceapp_infos.txt','r') +# infotext = infofile.read() + +#open the txt file, read, and tokenize +file = open('faceapp.txt','r') +text = file.read() +#not sure if this works.. +x = 1 + +t_file = open('russia-estonia.txt', 'r') +t_text = t_file.read() + +#stopwords +default_stopwords = set(stopwords.words('english')) +custom_stopwords = set(codecs.open('stopwords.txt', 'r').read().splitlines()) +all_stopwords = default_stopwords | custom_stopwords + + +# multi-line string HTML +print(''' + + + + + + + + + Noun + + + + + + +''') + + + + +#wrapper +print('
') + +#insert an image +# https://upload.wikimedia.org/wikipedia/commons/1/15/Joffe_signing_the_Treaty_of_Tartu.jpg +FaceApp_img_url = base64.b64encode(open('img/faceapp_logo.png', 'rb').read()).decode('utf-8') +FaceApp_image = '

FaceApp

'.format(FaceApp_img_url) +print(FaceApp_image) + + +#info box +print('
') +infotext = [('Service', 'FaceApp'), ('Type', 'Image editing'), ('Initial release', 'December 31, 2016'), ('Type', 'Image editing'), ('source', 'link'), ('Description', 'FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence. The app can transform a face to make it smile, look younger, look older, or change gender.')] + +for title, info in infotext: + print('
{0}
{1}

'.format(title, info)) + +print('
') + + + +#ToS text +print('
') +tokenized = word_tokenize(text) +tagged = pos_tag(tokenized) + +for word, pos in tagged: + print('{}'.format(pos, word)) +print('
') + + + +#colonial words list +print('
colonial words:') + +tokens_without_stopwords = nltk.FreqDist(words.lower() for words in tokenized if words.lower() not in all_stopwords) +frequency_word = FreqDist(tokens_without_stopwords) +top_words = tokens_without_stopwords.most_common(20) + +for chosen_words, frequency in top_words: + print('
{}({}) '.format(chosen_words, frequency)) + +print('
') + + + + + + + + +#t_wrapper +print('
') + + + + + + + + +#insert an image +# https://upload.wikimedia.org/wikipedia/commons/1/15/Joffe_signing_the_Treaty_of_Tartu.jpg +img_url = base64.b64encode(open('img/tartu.jpeg', 'rb').read()).decode('utf-8') +t_image = '

Peace Treaty of Tartu

'.format(img_url) +print(t_image) + + +#t_info box +print('
') +t_infotext = [('Name of Treaty', 'Peace Treaty of Tartu'), ('Date', 'February 2, 1920'), ('Location', 'Tartu, Estonia'), ('Signed', 'February 2, 1920'), ('Type', 'bilateral peace treaty'), ('source', 'link'), ('Description', 'The Tartu Peace Treaty or Treaty of Tartu is a peace treaty between Estonia and Russian Soviet Federative Socialist Republic signed on 2 February 1920, ending the Estonian War of Independence.')] + +for t_title, t_info in t_infotext: + print('
{0}
{1}

'.format(t_title, t_info)) + +print('
') + + +#ToS text +print('
') +t_tokenized = word_tokenize(t_text) +t_tagged = pos_tag(t_tokenized) + +for t_word, t_pos in t_tagged: + print('{}'.format(t_pos, t_word)) +print('
') + + +#treaty colonial words list +print('
colonial words:') + +t_tokens_without_stopwords = nltk.FreqDist(words.lower() for words in t_tokenized if words.lower() not in all_stopwords) +t_frequency_word = FreqDist(t_tokens_without_stopwords) +t_top_words = t_tokens_without_stopwords.most_common(20) + +for t_chosen_words, t_frequency in t_top_words: + print('
{}({}) '.format(t_chosen_words, t_frequency)) + +print('
') + + + +print('
') +print('''''') + + diff --git a/website/tag_comparison_copy.html b/website/tag_comparison_copy.html new file mode 100644 index 0000000..ae0a136 --- /dev/null +++ b/website/tag_comparison_copy.html @@ -0,0 +1,6728 @@ + + + + + + + + + +
+
+ Service:FaceApp
+ Type:Image editing
+ Initial release:December 31 2016
+ Type:Image editing
+ source:link
+ Description:FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence. The app can transform a face to make it smile, look younger, look older, or change gender.
+
+
+ 1 + . + Eligibility + You + must + be + at + least + 13 + years + of + age + to + access + or + use + our + Services + . + If + you + are + under + 18 + years + of + age + ( + or + the + age + of + legal + majority + where + you + live + ) + , + you + may + only + access + or + use + our + Services + under + the + supervision + of + a + parent + or + legal + guardian + who + agrees + to + be + bound + by + this + Agreement + . + If + you + are + a + parent + or + legal + guardian + of + a + user + under + the + age + of + 18 + ( + or + the + age + of + legal + majority + ) + , + you + agree + to + be + fully + responsible + for + the + acts + or + omissions + of + such + user + in + connection + with + our + Services + . + If + you + are + accessing + or + using + our + Services + on + behalf + of + another + person + or + entity + , + you + represent + that + you + are + authorized + to + accept + this + Agreement + on + that + person + or + entity + + s + behalf + and + that + the + person + or + entity + agrees + to + be + responsible + to + us + if + you + or + the + other + person + or + entity + violates + this + Agreement + . + 2 + . + User + Accounts + and + Account + Security + If + you + choose + to + login + to + the + Services + via + a + third-party + platform + or + social + media + network + , + you + will + need + to + use + your + credentials + ( + e.g. + , + username + and + password + ) + from + a + third-party + online + platform + . + You + must + maintain + the + security + of + your + third + party + account + and + promptly + notify + us + if + you + discover + or + suspect + that + someone + has + accessed + your + account + without + your + permission + . + If + you + permit + others + to + use + your + account + credentials + , + you + are + responsible + for + the + activities + of + such + users + that + occur + in + connection + with + your + account + . + 3 + . + Privacy + Please + refer + to + our + Privacy + Policy + for + information + about + how + we + collect + , + use + and + disclose + information + about + you + . + 4 + . + User + Content + Our + Services + may + allow + you + and + other + users + to + create + , + post + , + store + and + share + content + , + including + photos + , + videos + , + messages + , + text + , + software + and + other + materials + ( + collectively + , + + User + Content + + ) + . + User + Content + does + not + include + user-generated + filters + . + Subject + to + this + Agreement + and + the + Privacy + Policy + , + you + retain + all + rights + in + and + to + your + User + Content + , + as + between + you + and + FaceApp + . + Further + , + FaceApp + does + not + claim + ownership + of + any + User + Content + that + you + post + on + or + through + the + Services + . + You + grant + FaceApp + a + nonexclusive + , + royalty-free + , + worldwide + , + fully + paid + license + to + use + , + reproduce + , + modify + , + adapt + , + create + derivative + works + from + , + distribute + , + perform + and + display + your + User + Content + during + the + term + of + this + Agreement + solely + to + provide + you + with + the + Services + . + You + acknowledge + that + some + of + the + Services + are + supported + by + advertising + revenue + and + may + display + advertisements + and + promotions + , + and + you + hereby + agree + that + FaceApp + may + place + such + advertising + and + promotions + on + the + Services + or + on + , + about + , + or + in + conjunction + with + your + User + Content + . + The + manner + , + mode + and + extent + of + such + advertising + and + promotions + are + subject + to + change + without + specific + notice + to + you + . + You + acknowledge + that + we + may + not + always + identify + paid + services + , + sponsored + content + , + or + commercial + communications + as + such + . + You + represent + and + warrant + that + : + ( + i + ) + you + own + or + otherwise + have + the + right + to + use + the + User + Content + modified + by + you + on + or + through + the + Services + in + accordance + with + the + rights + and + licenses + set + forth + in + this + Agreement + ; + ( + ii + ) + you + agree + to + pay + for + all + royalties + , + fees + , + and + any + other + monies + owed + by + reason + of + User + Content + you + stylize + on + or + through + the + Services + ; + and + ( + iii + ) + you + have + the + legal + right + and + capacity + to + enter + into + this + Agreement + in + your + jurisdiction + . + You + may + not + create + , + post + , + store + or + share + any + User + Content + that + violates + this + Agreement + or + for + which + you + do + not + have + all + the + rights + necessary + to + grant + us + the + license + described + above + . + Although + we + have + no + obligation + to + screen + , + edit + or + monitor + User + Content + , + we + may + delete + or + remove + User + Content + at + any + time + and + for + any + reason + . + FaceApp + is + not + a + backup + service + and + you + agree + that + you + will + not + rely + on + the + Services + for + the + purposes + of + User + Content + backup + or + storage + . + FaceApp + will + not + be + liable + to + you + for + any + modification + , + suspension + , + or + discontinuation + of + the + Services + , + or + the + loss + of + any + User + Content + . + 5 + . + Prohibited + Conduct + and + Content + You + will + not + violate + any + applicable + law + , + contract + , + intellectual + property + or + other + third-party + right + or + commit + a + tort + , + and + you + are + solely + responsible + for + your + conduct + while + accessing + or + using + our + Services + . + You + will + not + : + Engage + in + any + harassing + , + threatening + , + intimidating + , + predatory + or + stalking + conduct + ; + Use + or + attempt + to + use + another + user + + s + account + without + authorization + from + that + user + and + FaceApp + ; + Use + our + Services + in + any + manner + that + could + interfere + with + , + disrupt + , + negatively + affect + or + inhibit + other + users + from + fully + enjoying + our + Services + or + that + could + damage + , + disable + , + overburden + or + impair + the + functioning + of + our + Services + in + any + manner + ; + Reverse + engineer + any + aspect + of + our + Services + or + do + anything + that + might + discover + source + code + or + bypass + or + circumvent + measures + employed + to + prevent + or + limit + access + to + any + part + of + our + Services + ; + Attempt + to + circumvent + any + content-filtering + techniques + we + employ + or + attempt + to + access + any + feature + or + area + of + our + Services + that + you + are + not + authorized + to + access + ; + Develop + or + use + any + third-party + applications + that + interact + with + our + Services + without + our + prior + written + consent + , + including + any + scripts + designed + to + scrape + or + extract + data + from + our + Services + ; + Use + our + Services + for + any + illegal + or + unauthorized + purpose + , + or + engage + in + , + encourage + or + promote + any + activity + that + violates + this + Agreement + . + You + may + also + only + post + or + otherwise + share + User + Content + that + is + non-confidential + and + you + have + all + necessary + rights + to + disclose + . + You + may + not + create + , + post + , + store + or + share + any + User + Content + that + : + Is + unlawful + , + libelous + , + defamatory + , + obscene + , + pornographic + , + indecent + , + lewd + , + suggestive + , + harassing + , + threatening + , + invasive + of + privacy + or + publicity + rights + , + abusive + , + inflammatory + or + fraudulent + ; + Would + constitute + , + encourage + or + provide + instructions + for + a + criminal + offense + , + violate + the + rights + of + any + party + or + otherwise + create + liability + or + violate + any + local + , + state + , + national + or + international + law + ; + May + infringe + any + patent + , + trademark + , + trade + secret + , + copyright + or + other + intellectual + or + proprietary + right + of + any + party + ; + Contains + or + depicts + any + statements + , + remarks + or + claims + that + do + not + reflect + your + honest + views + and + experiences + ; + Impersonates + , + or + misrepresents + your + affiliation + with + , + any + person + or + entity + ; + Contains + any + unsolicited + promotions + , + political + campaigning + , + advertising + or + solicitations + ; + Contains + any + private + or + personal + information + of + a + third + party + without + such + third + party + + s + consent + ; + Contains + any + viruses + , + corrupted + data + or + other + harmful + , + disruptive + or + destructive + files + or + content + ; + or + Is + , + in + our + sole + judgment + , + objectionable + or + that + restricts + or + inhibits + any + other + person + from + using + or + enjoying + our + Services + , + or + that + may + expose + FaceApp + or + others + to + any + harm + or + liability + of + any + type + . + In + addition + , + although + we + have + no + obligation + to + screen + , + edit + or + monitor + User + Content + , + we + may + delete + or + remove + User + Content + at + any + time + and + for + any + reason + . + 6 + . + Limited + License + ; + Copyright + and + Trademark + Our + Services + and + the + text + , + graphics + , + images + , + photographs + , + videos + , + illustrations + , + trademarks + , + trade + names + , + page + headers + , + button + icons + , + scripts + , + service + marks + , + logos + , + slogans + , + filters + , + user + generated + filters + and + other + content + contained + therein + ( + collectively + , + the + + FaceApp + Content + + ) + are + owned + by + or + licensed + to + FaceApp + and + are + protected + under + both + United + States + and + foreign + laws + . + Except + as + explicitly + stated + in + this + Agreement + , + FaceApp + and + our + licensors + reserve + all + rights + in + and + to + our + Services + and + the + FaceApp + Content + . + You + are + hereby + granted + a + limited + , + nonexclusive + , + nontransferable + , + non-sublicensable + , + revocable + license + to + access + and + use + our + Services + and + FaceApp + Content + for + your + own + personal + use + ; + however + , + such + license + is + subject + to + this + Agreement + and + does + not + include + any + right + to + : + ( + a + ) + sell + , + resell + or + commercially + use + our + Services + or + FaceApp + Content + ; + ( + b + ) + copy + , + reproduce + , + distribute + , + publicly + perform + or + publicly + display + FaceApp + Content + , + except + as + expressly + permitted + by + us + or + our + licensors + ; + ( + c + ) + modify + the + FaceApp + Content + , + remove + any + proprietary + rights + notices + or + markings + , + or + otherwise + make + any + derivative + uses + of + our + Services + or + FaceApp + Content + , + except + as + expressly + set + forth + in + this + Agreement + ; + ( + d + ) + use + any + data + mining + , + robots + or + similar + data + gathering + or + extraction + methods + ; + or + ( + e + ) + use + our + Services + or + FaceApp + Content + other + than + as + expressly + provided + in + this + Agreement + . + Any + use + of + our + Services + or + FaceApp + Content + other + than + as + specifically + authorized + herein + , + without + our + prior + written + permission + , + is + strictly + prohibited + and + will + terminate + the + license + granted + under + this + Agreement + . + You + will + not + remove + , + alter + or + conceal + any + copyright + , + trademark + , + service + mark + or + other + proprietary + rights + notices + incorporated + in + or + accompanying + the + FaceApp + Content + . + 7 + . + Feedback + Any + questions + , + comments + , + suggestions + , + ideas + , + original + or + creative + materials + or + other + information + you + submit + about + FaceApp + or + our + products + or + Services + ( + collectively + , + + Feedback + + ) + , + is + non-confidential + and + we + have + no + obligations + ( + including + without + limitation + obligations + of + confidentiality + ) + with + respect + to + such + Feedback + . + You + hereby + grant + to + FaceApp + a + fully + paid + , + royalty-free + , + perpetual + , + irrevocable + , + worldwide + , + non-exclusive + , + and + fully + sublicensable + right + and + license + to + use + , + reproduce + , + perform + , + display + , + distribute + , + adapt + , + modify + , + re-format + , + create + derivative + works + of + , + and + otherwise + commercially + or + non-commercially + exploit + in + any + manner + , + any + and + all + Feedback + , + and + to + sublicense + the + foregoing + rights + , + in + connection + with + the + operation + and + maintenance + of + the + Services + and/or + FaceApp + + s + business + . + 8 + . + Copyright + Complaints + We + have + a + policy + of + limiting + access + to + our + Services + and + terminating + the + accounts + of + users + who + repeatedly + infringe + the + intellectual + property + copyright + rights + of + others + upon + prompt + notification + to + us + by + the + copyright + owner + or + the + copyright + owner + + s + legal + agent + . + Without + limiting + the + foregoing + , + if + you + believe + that + your + work + has + been + copied + and + posted + on + or + through + the + Services + in + a + way + that + constitutes + copyright + infringement + , + please + provide + our + Copyright + Agent + with + the + following + information + : + ( + a + ) + an + electronic + or + physical + signature + of + the + person + authorized + to + act + on + behalf + of + the + owner + of + the + copyright + interest + ; + ( + b + ) + a + description + of + the + copyrighted + work + that + you + claim + has + been + infringed + ; + ( + c + ) + a + description + of + the + location + on + the + Services + of + the + material + that + you + claim + is + infringing + ; + ( + d + ) + your + address + , + telephone + number + and + e-mail + address + ; + + a + written + statement + by + you + that + you + have + a + good + faith + belief + that + the + disputed + use + is + not + authorized + by + the + copyright + owner + , + its + agent + or + the + law + ; + and + ( + f + ) + a + statement + by + you + , + made + under + penalty + of + perjury + , + that + the + above + information + in + your + notice + is + accurate + and + that + you + are + the + copyright + owner + or + authorized + to + act + on + the + copyright + owner + + s + behalf + . + Contact + information + for + FaceApp + + s + Copyright + Agent + for + notice + of + claims + of + infringement + is + as + follows + : + Yaroslav + Goncharov + , + Designated + DMCA + Copyright + Agent + , + FaceApp + Inc + , + 1000 + N + West + Street + , + Suite + 1200 + , + Wilmington + , + Delaware + , + 19801 + . + 9 + . + Indemnification + To + the + fullest + extent + permitted + by + applicable + law + , + you + will + indemnify + , + defend + , + and + hold + harmless + FaceApp + and + each + of + our + respective + officers + , + directors + , + agents + , + partners + and + employees + ( + individually + and + collectively + , + the + + FaceApp + Parties + + ) + from + and + against + any + loss + , + liability + , + claim + , + demand + , + damages + , + expenses + or + costs + ( + + Claims + + ) + arising + out + of + or + related + to + ( + a + ) + your + access + to + or + use + of + our + Services + ; + ( + b + ) + your + User + Content + or + Feedback + ; + ( + c + ) + your + violation + of + this + Agreement + ; + ( + d + ) + your + violation + , + misappropriation + or + infringement + of + any + rights + of + another + ( + including + intellectual + property + rights + or + privacy + rights + ) + ; + or + ( + e + ) + your + conduct + in + connection + with + our + Services + . + You + agree + to + promptly + notify + FaceApp + Parties + of + any + third + party + Claims + , + cooperate + with + FaceApp + Parties + in + defending + such + Claims + and + pay + all + fees + , + costs + and + expenses + associated + with + defending + such + Claims + ( + including + , + but + not + limited + to + , + attorneys + + fees + ) + . + You + also + agree + that + the + FaceApp + Parties + will + have + control + of + the + defense + or + settlement + of + any + third + party + Claims + . + This + indemnity + is + in + addition + to + , + and + not + in + lieu + of + , + any + other + indemnities + set + forth + in + a + written + agreement + between + you + and + FaceApp + or + the + other + FaceApp + Parties + . + 10 + . + Disclaimers + We + do + not + control + , + endorse + or + take + responsibility + for + any + User + Content + or + third-party + content + available + on + or + linked + to + by + our + Services + . + YOUR + USE + OF + OUR + SERVICES + IS + AT + YOUR + SOLE + RISK + . + OUR + SERVICES + ARE + PROVIDED + + AS + IS + + AND + + AS + AVAILABLE + + WITHOUT + WARRANTIES + OF + ANY + KIND + , + EITHER + EXPRESS + OR + IMPLIED + , + INCLUDING + , + BUT + NOT + LIMITED + TO + , + IMPLIED + WARRANTIES + OF + MERCHANTABILITY + , + FITNESS + FOR + A + PARTICULAR + PURPOSE + , + TITLE + , + AND + NON-INFRINGEMENT + . + In + addition + , + FaceApp + does + not + represent + or + warrant + that + our + Services + are + accurate + , + complete + , + reliable + , + current + or + error-free + . + While + FaceApp + attempts + to + make + your + access + to + and + use + of + our + Services + safe + , + we + can + not + and + do + not + represent + or + warrant + that + our + Services + or + servers + are + free + of + viruses + or + other + harmful + components + . + You + assume + the + entire + risk + as + to + the + quality + and + performance + of + the + Services + . + 11 + . + Limitation + of + Liability + FACEAPP + AND + THE + OTHER + FACEAPP + PARTIES + WILL + NOT + BE + LIABLE + TO + YOU + UNDER + ANY + THEORY + OF + LIABILITY—WHETHER + BASED + IN + CONTRACT + , + TORT + , + NEGLIGENCE + , + STRICT + LIABILITY + , + WARRANTY + , + OR + OTHERWISE—FOR + ANY + INDIRECT + , + CONSEQUENTIAL + , + EXEMPLARY + , + INCIDENTAL + , + PUNITIVE + OR + SPECIAL + DAMAGES + OR + LOST + PROFITS + , + EVEN + IF + FACEAPP + OR + THE + OTHER + FACEAPP + PARTIES + HAVE + BEEN + ADVISED + OF + THE + POSSIBILITY + OF + SUCH + DAMAGES + . + THE + TOTAL + LIABILITY + OF + FACEAPP + AND + THE + OTHER + FACEAPP + PARTIES + , + FOR + ANY + CLAIM + ARISING + OUT + OF + OR + RELATING + TO + THIS + AGREEMENT + OR + OUR + SERVICES + , + REGARDLESS + OF + THE + FORM + OF + THE + ACTION + , + IS + LIMITED + TO + THE + AMOUNT + PAID + , + IF + ANY + , + BY + YOU + TO + ACCESS + OR + USE + OUR + SERVICES + . + The + limitations + set + forth + in + this + section + will + not + limit + or + exclude + liability + for + the + gross + negligence + , + fraud + or + intentional + misconduct + of + FaceApp + or + the + other + FaceApp + Parties + or + for + any + other + matters + in + which + liability + can + not + be + excluded + or + limited + under + applicable + law + . + Additionally + , + some + jurisdictions + do + not + allow + the + exclusion + or + limitation + of + incidental + or + consequential + damages + , + so + the + above + limitations + or + exclusions + may + not + apply + to + you + . + 12 + . + Release + To + the + fullest + extent + permitted + by + applicable + law + , + you + release + FaceApp + and + the + other + FaceApp + Parties + from + responsibility + , + liability + , + claims + , + demands + , + and/or + damages + ( + actual + and + consequential + ) + of + every + kind + and + nature + , + known + and + unknown + ( + including + , + but + not + limited + to + , + claims + of + negligence + ) + , + arising + out + of + or + related + to + disputes + between + users + and + the + acts + or + omissions + of + third + parties + . + You + expressly + waive + any + rights + you + may + have + under + California + Civil + Code + § + 1542 + as + well + as + any + other + statute + or + common + law + principles + that + would + otherwise + limit + the + coverage + of + this + release + to + include + only + those + claims + which + you + may + know + or + suspect + to + exist + in + your + favor + at + the + time + of + agreeing + to + this + release + . + 13 + . + Transfer + and + Processing + Data + By + accessing + or + using + our + Services + , + you + acknowledge + and + , + as + applicable + , + consent + to + the + processing + , + transfer + and + storage + of + information + about + you + in + and + to + the + United + States + and + other + countries + . + 14 + . + Dispute + Resolution + ; + Binding + Arbitration + Agreement + Please + read + the + following + section + carefully + because + it + requires + users + who + are + U.S. + residents + to + arbitrate + certain + disputes + and + claims + with + FaceApp + and + limits + the + manner + in + which + you + can + seek + relief + from + us + . + Applicability + of + Arbitration + Agreement + . + Except + for + small + claims + disputes + in + which + you + or + FaceApp + seek + to + bring + an + individual + action + in + small + claims + court + located + in + the + county + of + your + billing + address + or + disputes + in + which + you + or + FaceApp + seeks + injunctive + or + other + equitable + relief + for + the + alleged + unlawful + use + of + intellectual + property + , + you + and + FaceApp + waive + your + rights + to + a + jury + trial + and + to + have + any + dispute + arising + out + of + or + related + to + this + Agreement + or + our + Services + resolved + in + court + . + This + Arbitration + Agreement + shall + apply + , + without + limitation + , + to + all + disputes + or + claims + and + requests + for + relief + that + arose + or + were + asserted + before + the + effective + date + of + this + Agreement + or + any + prior + version + of + this + Agreement + . + Arbitration + Rules + and + Forum + . + The + Federal + Arbitration + Act + governs + the + interpretation + and + enforcement + of + this + Arbitration + Agreement + . + To + begin + an + arbitration + proceeding + , + you + must + send + a + letter + requesting + arbitration + and + describing + your + dispute + or + claim + or + request + for + relief + to + our + registered + agent + [ + include + name + and + address + of + registered + agent + here + ] + . + The + arbitration + will + be + resolved + through + confidential + binding + arbitration + by + the + Judicial + Arbitration + and + Mediation + Services + ( + + JAMS + + ) + , + an + established + alternative + dispute + resolution + provider + . + Disputes + involving + claims + , + counterclaims + , + or + requests + for + relief + under + $ + 250,000 + , + not + inclusive + of + attorneys + + fees + and + interest + , + shall + be + subject + to + JAMS + + s + most + current + version + of + the + Streamlined + Arbitration + Rules + and + procedures + available + ; + all + other + disputes + shall + be + subject + to + JAMS + + s + most + current + version + of + the + Comprehensive + Arbitration + Rules + and + Procedures + , + available + at + http + : + //www.jamsadr.com/rules-comprehensive-arbitration/ + . + JAMS + + s + rules + are + also + available + at + www.jamsadr.com + or + by + calling + JAMS + at + 800-352-5267 + . + If + JAMS + is + not + available + to + arbitrate + , + the + parties + will + select + an + alternative + arbitral + forum + . + If + the + arbitrator + finds + that + you + can + not + afford + to + pay + JAMS + + s + filing + , + administrative + , + hearing + and/or + other + fees + and + can + not + obtain + a + waiver + from + JAMS + , + FaceApp + will + pay + them + for + you + . + In + addition + , + we + will + reimburse + all + such + JAMS + + s + filing + , + administrative + , + hearing + and/or + other + fees + for + disputes + , + claims + , + or + requests + for + relief + totaling + less + than + $ + 10,000 + unless + the + arbitrator + determines + the + claims + are + frivolous + . + You + may + choose + to + have + the + arbitration + conduced + by + telephone + , + based + on + written + submissions + , + or + in + person + in + the + country + where + you + live + or + at + another + mutually + agreed + location + . + Any + judgment + on + the + award + rendered + by + the + arbitrator + may + be + entered + in + any + court + of + competent + jurisdiction + . + You + may + choose + to + have + the + arbitration + conduced + by + telephone + , + based + on + written + submissions + or + at + another + mutually + agreed + location + . + Any + judgment + on + the + award + rendered + by + the + arbitrator + may + be + entered + in + any + court + of + competent + jurisdiction + . + Authority + of + Arbitrator + . + The + arbitrator + shall + have + exclusive + authority + to + ( + a + ) + determine + the + scope + and + enforceability + of + this + Arbitration + Agreement + and + ( + b + ) + resolve + any + dispute + related + to + the + interpretation + , + applicability + , + enforceability + or + formation + of + this + Arbitration + Agreement + , + including + , + but + not + limited + to + , + any + assertion + that + all + or + any + part + of + this + Arbitration + Agreement + is + void + or + voidable + . + The + arbitration + will + decide + the + rights + and + liabilities + , + if + any + , + of + you + and + FaceApp + . + The + arbitration + proceeding + will + not + be + consolidated + with + any + other + matters + or + joined + with + any + other + cases + or + parties + . + The + arbitrator + shall + have + the + authority + to + grant + motions + dispositive + of + all + or + part + of + any + claim + . + The + arbitrator + shall + have + the + authority + to + award + monetary + damages + and + to + grant + any + non-monetary + remedy + or + relief + available + to + an + individual + under + applicable + law + , + the + arbitral + forum + + s + rules + , + and + the + Agreement + ( + including + the + Arbitration + Agreement + ) + . + The + arbitrator + shall + issue + a + written + award + and + statement + of + decision + describing + the + essential + findings + and + conclusions + on + which + the + award + is + based + , + including + the + calculation + of + any + damages + awarded + . + The + arbitrator + has + the + same + authority + to + award + relief + on + an + individual + basis + that + a + judge + in + a + court + of + law + would + have + . + The + award + of + the + arbitrator + is + final + and + binding + upon + you + and + us + . + Waiver + of + Jury + Trial + . + YOU + AND + FACEAPP + HEREBY + WAIVE + ANY + CONSTITUTIONAL + AND + STATUTORY + RIGHTS + TO + SUE + IN + COURT + AND + HAVE + A + TRIAL + IN + FRONT + OF + A + JUDGE + OR + A + JURY + . + You + and + FaceApp + are + instead + electing + that + all + disputes + , + claims + or + requests + for + relief + shall + be + resolved + by + arbitration + under + this + Arbitration + Agreement + , + except + as + specified + above + . + An + arbitrator + can + award + on + an + individual + basis + the + same + damages + and + relief + as + a + court + and + must + follow + this + Agreement + as + a + court + would + . + However + , + there + is + no + judge + or + jury + in + arbitration + , + and + court + review + of + an + arbitration + award + is + subject + to + very + limited + . + Review + . + Waiver + of + Class + or + Other + Non-Individualized + Relief + . + ALL + DISPUTES + , + CLAIMS + AND + REQUESTS + FOR + RELIEF + WITHIN + THE + SCOPE + OF + THIS + ARBITRATION + AGREEMENT + MUST + BE + ARBITRATED + ON + AN + INDIVIDUAL + BASIS + AND + NOT + ON + A + CLASS + OR + COLLECTIVE + BASIS + . + ONLY + INDIVIDUAL + RELIEF + IS + AVAILABLE + , + AND + CLAIMS + OF + MORE + THAN + ONE + USER + CAN + NOT + BE + ARBITRATED + OR + CONSOLIDATED + WITH + THOSE + OF + ANY + OTHER + USER + . + If + a + decision + is + issued + stating + that + applicable + law + precludes + enforcement + of + any + of + this + subsection + + s + limitations + as + to + a + given + dispute + , + claim + or + request + for + relief + , + then + such + aspect + must + be + severed + from + the + arbitration + and + brought + into + the + State + or + Federal + Courts + located + in + the + State + of + California + . + All + other + disputes + , + claims + , + or + requests + for + relief + shall + be + arbitrated + . + 30-Day + Right + to + Opt-Out + . + You + have + the + right + to + opt + out + of + the + provisions + of + this + Arbitration + Agreement + by + sending + written + notice + of + your + decision + to + opt-out + to + : + arbitration + @ + faceapp.com + , + within + 30 + days + after + first + becoming + subject + to + this + Arbitration + Agreement + . + Your + notice + must + include + your + name + and + address + , + your + username + ( + if + any + ) + , + the + e-mail + address + you + used + to + set + up + your + account + ( + if + you + have + one + ) + , + and + an + unequivocal + statement + that + you + want + to + opt + out + of + this + Arbitration + Agreement + . + If + you + opt + out + of + this + Arbitration + Agreement + , + all + other + parts + of + this + Agreement + will + continue + to + apply + to + you + . + Opting + out + of + this + Arbitration + Agreement + has + no + effect + on + any + other + arbitration + agreements + that + you + may + currently + have + , + or + may + enter + in + the + future + , + with + us + . + You + and + FaceApp + agree + that + the + state + or + federal + courts + of + the + State + of + California + and + the + United + States + sitting + in + Santa + Clara + County + , + California + have + exclusive + jurisdiction + over + any + appeals + and + the + enforcement + of + an + arbitration + award + . + Severability + . + Except + as + provided + in + this + Section + 14 + above + , + if + any + part + or + parts + of + this + Arbitration + Agreement + are + found + under + the + law + to + be + invalid + or + unenforceable + , + then + such + specific + part + or + parts + shall + be + of + no + force + and + effect + and + shall + be + severed + , + and + the + remainder + of + the + Arbitration + Agreement + shall + continue + in + full + force + and + effect + . + Survival + of + Agreement + . + This + Arbitration + Agreement + will + survive + the + termination + of + your + relationship + with + FaceApp + . + Modification + , + Notwithstanding + any + provision + in + this + Agreement + to + the + contrary + , + we + agree + that + if + FaceApp + makes + any + future + material + change + to + this + Arbitration + Agreement + you + may + reject + that + change + within + thirty + ( + 30 + ) + days + of + such + change + becoming + effective + by + writing + Company + at + the + following + address + : + arbitration + @ + faceapp.com + . + 15 + . + Governing + Law + and + Venue + This + Agreement + and + your + access + to + and + use + of + our + Services + will + be + governed + by + and + construed + and + enforced + in + accordance + with + the + laws + of + California + , + consistent + with + the + Federal + Arbitration + Act + , + without + regard + to + conflict + of + law + rules + or + principles + ( + whether + of + California + or + any + other + jurisdiction + ) + that + would + cause + the + application + of + the + laws + of + any + other + jurisdiction + . + The + United + Nations + Convention + for + the + International + Sale + of + Goods + does + not + apply + to + the + Agreement + . + Any + dispute + between + the + parties + that + is + not + subject + to + arbitration + or + can + not + be + heard + in + small + claims + court + will + be + resolved + in + the + state + or + federal + courts + of + California + and + the + United + States + , + respectively + , + sitting + in + Santa + Clara + County + , + California + . + 16 + . + Electronic + Communications + By + accessing + or + using + the + Services + , + you + also + consent + to + receive + electronic + communications + from + FaceApp + ( + e.g. + , + responses + to + your + requests + , + questions + and + feedback + , + announcements + , + updates + , + and + security + alerts + through + a + push + notification + or + by + posting + notices + on + our + Services + ) + . + You + agree + that + any + notices + , + agreements + , + disclosures + or + other + communications + that + we + send + to + you + electronically + will + satisfy + any + legal + communication + requirements + , + including + , + but + not + limited + to + , + that + such + communications + be + in + writing + . + 17 + . + Termination + We + reserve + the + right + , + without + notice + and + in + our + sole + discretion + , + to + terminate + your + right + to + access + or + use + our + Services + . + We + are + not + responsible + for + any + loss + or + harm + related + to + your + inability + to + access + or + use + our + Services + . + 18 + . + Severability + If + any + provision + or + part + of + a + provision + of + this + Agreement + is + unlawful + , + void + or + unenforceable + , + that + provision + or + part + of + the + provision + is + deemed + severable + from + this + Agreement + and + does + not + affect + the + validity + and + enforceability + of + any + remaining + provisions + . + 19 + . + Additional + Terms + Applicable + to + iOS + Devices + The + following + terms + apply + if + you + install + , + access + or + use + the + Services + on + any + device + that + contains + the + iOS + mobile + operating + system + ( + the + + App + + ) + developed + by + Apple + Inc. + ( + + Apple + + ) + . + Acknowledgement + . + You + acknowledge + that + this + Agreement + is + concluded + solely + between + us + , + and + not + with + Apple + , + and + FaceApp + , + not + Apple + , + is + solely + responsible + for + the + App + and + the + content + thereof + . + You + further + acknowledge + that + the + usage + rules + for + the + App + are + subject + to + any + additional + restrictions + set + forth + in + the + Usage + Rules + for + the + Apple + App + Store + Terms + of + Service + as + of + the + date + you + download + the + App + , + and + in + the + event + of + any + conflict + , + the + Usage + Rules + in + the + App + Store + shall + govern + if + they + are + more + restrictive + . + You + acknowledge + and + agree + that + you + have + had + the + opportunity + to + review + the + Usage + Rules + . + Scope + of + License + . + The + license + granted + to + you + is + limited + to + a + non-transferable + license + to + use + the + App + on + any + iPhone + , + iPod + touch + or + iPad + that + you + own + or + control + as + permitted + by + the + Usage + Rules + set + forth + in + the + Apple + App + Store + Terms + of + Service + . + Maintenance + and + Support + . + You + and + FaceApp + acknowledge + that + Apple + has + no + obligation + whatsoever + to + furnish + any + maintenance + and + support + services + with + respect + to + the + App + . + Warranty + . + You + acknowledge + that + Apple + is + not + responsible + for + any + product + warranties + , + whether + express + or + implied + by + law + , + with + respect + to + the + App + . + In + the + event + of + any + failure + of + the + App + to + conform + to + any + applicable + warranty + , + you + may + notify + Apple + , + and + Apple + will + refund + the + purchase + price + , + if + any + , + paid + to + Apple + for + the + App + by + you + ; + and + to + the + maximum + extent + permitted + by + applicable + law + , + Apple + will + have + no + other + warranty + obligation + whatsoever + with + respect + to + the + App + . + The + parties + acknowledge + that + to + the + extent + that + there + are + any + applicable + warranties + , + any + other + claims + , + losses + , + liabilities + , + damages + , + costs + or + expenses + attributable + to + any + failure + to + conform + to + any + such + applicable + warranty + would + be + the + sole + responsibility + of + FaceApp + . + However + , + you + understand + and + agree + that + in + accordance + with + this + Agreement + , + FaceApp + has + disclaimed + all + warranties + of + any + kind + with + respect + to + the + App + , + and + therefore + , + there + are + no + warranties + applicable + to + the + App + . + Product + Claims + . + You + and + FaceApp + acknowledge + that + as + between + Apple + and + FaceApp + , + FaceApp + , + not + Apple + , + is + responsible + for + addressing + any + claims + relating + to + the + App + or + your + possession + and/or + use + of + the + App + , + including + , + but + not + limited + to + ( + a + ) + product + liability + claims + , + ( + b + ) + any + claim + that + the + App + fails + to + conform + to + any + applicable + legal + or + regulatory + requirement + , + and + ( + c + ) + claims + arising + under + consumer + protection + or + similar + legislation + . + Intellectual + Property + Rights + . + The + parties + acknowledge + that + , + in + the + event + of + any + third + party + claim + that + the + App + or + your + possession + and + use + of + the + App + infringe + that + third + party + + s + intellectual + property + rights + , + FaceApp + , + and + not + Apple + , + will + be + solely + responsible + for + the + investigation + , + defense + , + settlement + and + discharge + of + any + such + intellectual + property + infringement + claim + to + the + extent + required + under + this + Agreement + . + Legal + Compliance + . + You + represent + and + warrant + that + ( + a + ) + you + are + not + located + in + a + country + that + is + subject + to + a + U.S. + Government + embargo + , + or + that + has + been + designated + by + the + U.S. + Government + as + a + + terrorist + supporting + + country + , + and + ( + b + ) + you + are + not + listed + on + any + U.S. + Government + list + of + prohibited + or + restricted + parties + . + Developer + Name + and + Address + . + Any + questions + , + complaints + or + claims + with + respect + to + the + App + should + be + directed + to + : + FaceApp + Inc + 1000 + N + West + Street + , + Suite + 1200 + , + Wilmington + , + Delaware + , + 19801 + USA + contact + @ + faceapp.com + Third-Party + Terms + of + Agreement + . + You + agree + to + comply + with + any + applicable + third-party + terms + when + using + the + Services + . + Third-Party + Beneficiary + . + The + parties + acknowledge + and + agree + that + Apple + , + and + Apple + + s + subsidiaries + , + are + third-party + beneficiaries + of + this + Agreement + , + and + that + , + upon + your + acceptance + of + this + Agreement + , + Apple + will + have + the + right + ( + and + will + be + deemed + to + have + accepted + the + right + ) + to + enforce + this + Agreement + against + you + as + a + third-party + beneficiary + thereof + ) + . + 20 + . + Export + You + may + not + use + , + export + , + import + , + or + transfer + all + or + any + portion + of + the + Services + except + as + authorized + by + U.S. + law + , + the + laws + of + the + jurisdiction + in + which + you + obtained + the + Services + , + and + any + other + applicable + laws + . + In + particular + , + but + without + limitation + , + the + Services + may + not + be + exported + or + re-exported + ( + a + ) + into + any + United + States + embargoes + countries + , + or + ( + b + ) + to + anyone + on + the + U.S. + Treasury + Department + + s + list + of + Specially + Designated + Nationals + or + the + U.S. + Department + of + Commerce + + s + Denied + Person + + s + List + or + Entity + List + . + By + using + the + Services + , + you + represent + and + warrant + that + ( + y + ) + you + are + not + located + in + a + country + that + is + subject + to + a + U.S. + Government + embargo + , + or + that + has + been + designated + by + the + U.S. + Government + as + a + + terrorist + supporting + + country + and + ( + z + ) + you + are + not + listed + on + any + U.S. + Government + list + of + prohibited + or + restricted + parties + . + You + also + will + not + use + the + Services + for + any + purpose + prohibited + by + U.S. + law + , + including + the + development + , + design + , + manufacture + or + production + of + missiles + , + nuclear + , + chemical + or + biological + weapons + . + You + acknowledge + and + agree + that + products + , + services + or + technology + provided + by + FaceApp + are + subject + to + the + export + control + laws + and + regulations + of + the + United + States + . + You + shall + comply + with + these + laws + and + regulations + and + shall + not + , + without + prior + U.S. + government + authorization + , + export + , + re-export + , + or + transfer + FaceApp + products + , + services + or + technology + , + either + directly + or + indirectly + , + to + any + country + in + violation + of + such + laws + and + regulations + . + 21 + . + Miscellaneous + In + accordance + with + California + Civil + Code + section + 1789.3 + , + you + may + report + complaints + to + the + Complaint + Assistance + Unit + of + the + Division + of + Consumer + Services + of + the + California + Department + of + Consumer + Affairs + by + contacting + them + in + writing + at + 400 + R + Street + , + Sacramento + , + CA + 95814 + , + or + by + telephone + at + ( + 800 + ) + 952-5210 + . + This + Agreement + constitutes + the + entire + agreement + between + you + and + FaceApp + relating + to + your + access + to + and + use + of + our + Services + . + The + failure + of + FaceApp + to + exercise + or + enforce + any + right + or + provision + of + this + Agreement + will + not + operate + as + a + waiver + of + such + right + or + provision + . + The + section + titles + in + this + Agreement + is + for + convenience + only + and + have + no + legal + or + contractual + effect + . + Except + as + otherwise + provided + herein + , + this + Agreement + is + intended + solely + for + the + benefit + of + the + parties + and + are + not + intended + to + confer + third + party + beneficiary + rights + upon + any + other + person + or + entity + . +
+
colonial words: +
services(69) +
agreement(60) +
arbitration(42) +
content(37) +
use(35) +
user(28) +
claims(28) +
may(26) +
rights(21) +
app(21) +
parties(20) +
apple(18) +
law(17) +
applicable(16) +
access(15) +
copyright(15) +
relief(15) +
shall(15) +
agree(14) +
without(14) +
right(14) +
including(13) +
acknowledge(13) +
“(12) +
”(12) +
subject(12) +
limited(12) +
u.s.(12) +
arbitrator(12) +
claim(11) +
disputes(11) +
rules(11) +
legal(10) +
person(10) +
third-party(10) +
party(10) +
license(10) +
liability(10) +
california(10) +
court(10) +
award(10) +
responsible(9) +
us(9) +
third(9) +
damages(9) +
jams(9) +
information(8) +
intellectual(8) +
written(8) +
laws(8) +
except(8) +
address(8) +
available(8) +
must(7) +
using(7) +
entity(7) +
authorized(7) +
account(7) +
otherwise(7) +
set(7) +
jurisdiction(7) +
property(7) +
part(7) +
united(7) +
b(7) +
agent(7) +
dispute(7) +
requests(7) +
provision(7) +
government(7) +
represent(6) +
users(6) +
create(6) +
store(6) +
solely(6) +
extent(6) +
notice(6) +
forth(6) +
fees(6) +
state(6) +
states(6) +
feedback(6) +
respect(6) +
owner(6) +
warranties(6) +
individual(6) +
country(6) +
terms(6) +
age(5) +
fully(5) +
another(5) +
privacy(5) +
post(5) +
include(5) +
grant(5) +
paid(5) +
manner(5) +
communications(5) +
warrant(5) +
service(5) +
+ +
+
+ Article + I + The + state + of + war + between + the + Contracting + Parties + will + end + on + the + day + on + which + the + present + Treaty + of + Peace + comes + into + force + . + Article + II + In + consequence + of + the + right + of + all + peoples + to + self-determination + , + to + the + point + of + seceding + completely + from + the + State + of + which + they + form + part + , + a + right + proclaimed + by + the + Socialist + and + Federal + Russian + Republic + of + the + Soviets + , + Russia + unreservedly + recognises + the + independence + and + sovereignty + of + the + State + of + Estonia + , + and + renounces + voluntarily + and + for + ever + all + sovereign + rights + possessed + by + Russia + over + the + Estonian + people + and + territory + whether + these + rights + be + based + on + the + juridical + position + that + formerly + existed + in + public + law + , + or + in + the + international + treaties + which + , + in + the + sense + here + indicated + , + lose + their + validity + in + future + . + From + the + fact + that + Estonia + has + belonged + to + Russia + , + no + obligation + whatsoever + will + fall + on + the + Estonian + people + and + land + to + Russia + . + Article + III + 1 + . + The + frontier + between + Esthonia + and + Russia + follows + the + following + line + : + Starting + from + the + Bay + of + Narva + , + one + verst + south + of + the + Fishers + + House + , + it + turns + toward + Ropscha + , + then + follows + the + course + of + the + Rivers + Mertvitskaja + and + Rosson + , + as + far + as + the + village + of + Ilkino + , + from + Ilkino + one + verst + west + of + the + village + Keikino + , + half + a + verst + west + of + the + village + of + Isvosi + and + turns + towards + the + village + of + Kobõljaki + ; + it + then + crosses + the + mouth + of + the + river + Schtschutschka + , + passes + by + Krivaja + Luka + , + by + the + estate + of + Petschurki + , + to + the + confluence + of + three + sources + of + the + river + Vtroja + , + follows + the + southern + boundary + of + the + village + of + Kuritschek + with + its + dependences + , + then + turns + in + a + straight + line + as + far + as + the + centre + line + of + the + Lake + Peipus + , + follows + it + in + a + southern + direction + , + and + thus + passes + one + verst + to + the + east + of + Piirisaar + ( + Pork + ) + ; + follows + the + narrow + strip + of + the + lake + dividing + it + along + the + middle + as + far + as + the + island + of + Salu + , + thence + passes + through + Lake + Pihkva + ( + Pskov + ) + between + the + Islands + of + Talabski + and + the + Island + of + Kamonka + , + then + to + the + east + of + the + village + of + Poddubje + ( + on + the + southern + bank + of + Lake + Pihkva + ) + and + to + the + outlook + post + on + the + railway + situated + near + to + Grjardischtsche + , + then + passes + successively + to + the + west + of + the + Village + of + Schahintsõi + , + to + the + east + of + Novaja + , + across + the + Lake + Poganova + , + between + the + villages + of + Babina + and + Vomorski + , + to + one + verst + and + a + half + to + the + south + of + the + Forestry + keeper + + s + house + ( + which + is + situated + to + the + north + of + Glybotschina + ) + to + Sprechtitschi + and + to + the + Farm + Kudepi + . + Note + 1 + . + The + Frontier + described + in + this + Article + is + shown + in + red + on + the + map + , + scale + of + three + versts + to + the + inch + ( + 0.0254 + metre + ) + , + which + constitutes + the + first + Annex + to + Article + 3 + . + In + case + of + difference + between + the + text + and + the + map + , + it + is + to + the + text + that + one + must + adhere + . + Note + 2 + . + The + tracing + of + the + boundary + between + the + two + contracting + countries + and + the + placing + in + position + of + the + frontier + signs + will + be + carried + out + under + the + direction + of + a + special + mixed + commission + composed + of + an + equal + number + of + members + from + both + parties + . + In + marking + the + boundary + line + this + mixed + commission + will + decide + the + allocation + of + inhabited + areas + on + the + frontier + to + one + or + other + of + the + parties + according + to + ethnographical + indications + and + bearing + in + mind + economic + agreements + and + agricultural + consideration + . + 2 + . + The + portion + of + the + territory + of + Esthonia + to + the + east + of + the + Narova + , + the + River + Narova + itself + , + and + the + islands + in + the + midst + of + the + stream + , + as + well + as + the + zone + to + the + south + of + Lake + Pihkva + , + which + is + situated + between + the + boundary + above + mentioned + and + the + line + of + villages + , + Borok-Smolni-Belkova-Sprechtitschi + , + will + be + , + from + a + military + point + of + view + , + considered + as + neutral + until + 1 + January + 1922 + . + Esthonia + undertakes + to + maintain + no + troops + of + any + kind + in + the + neutralized + zones + other + than + those + which + are + necessary + for + the + frontier + service + and + the + maintenance + of + order + , + and + of + which + the + strength + is + laid + down + in + Annex + 2 + of + the + present + Article + ; + not + to + construct + fortifications + or + observation + posts + , + nor + to + constitute + military + depots + , + nor + to + deposit + any + kind + of + war + material + whatsoever + with + the + exception + of + what + is + indispensable + for + the + effectives + allowed + for + ; + nor + to + establish + ther + bases + or + depots + for + the + use + of + any + kind + of + vessels + , + or + of + any + kind + of + aerial + fleet + . + 3 + . + Russia + for + her + part + undertakes + not + to + maintain + troops + in + the + region + of + Pskov + to + the + west + of + the + line + : + western + bank + of + the + mouth + of + Velikaja + , + the + villages + of + Sivtseva + , + Luhnova + , + Samulina + , + Schalki + and + Sprechtitschi + until + 1 + January + 1922 + , + which + are + indispensable + for + the + frontier + service + and + for + the + maintenance + of + order + and + for + the + effectives + provided + for + in + Annex + 2 + of + the + present + Article + . + 4 + . + The + contracting + parties + undertake + to + have + no + armed + vessels + whatsoever + on + Lakes + Peipus + and + Pihkva + . +
+ +
+ diff --git a/website/tag_with_menu.html b/website/tag_with_menu.html new file mode 100644 index 0000000..eddbb48 --- /dev/null +++ b/website/tag_with_menu.html @@ -0,0 +1,5846 @@ + + + + + + + + +
+
FaceApp
+
+
Service
FaceApp

+
Type
Image editing

+
Initial release
December 31, 2016

+
Type
Image editing

+
source

+
Description
FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence. The app can transform a face to make it smile, look younger, look older, or change gender.

+
+
+1 +. +Eligibility +You +must +be +at +least +13 +years +of +age +to +access +or +use +our +Services +. +If +you +are +under +18 +years +of +age +( +or +the +age +of +legal +majority +where +you +live +) +, +you +may +only +access +or +use +our +Services +under +the +supervision +of +a +parent +or +legal +guardian +who +agrees +to +be +bound +by +this +Agreement +. +If +you +are +a +parent +or +legal +guardian +of +a +user +under +the +age +of +18 +( +or +the +age +of +legal +majority +) +, +you +agree +to +be +fully +responsible +for +the +acts +or +omissions +of +such +user +in +connection +with +our +Services +. +If +you +are +accessing +or +using +our +Services +on +behalf +of +another +person +or +entity +, +you +represent +that +you +are +authorized +to +accept +this +Agreement +on +that +person +or +entity + +s +behalf +and +that +the +person +or +entity +agrees +to +be +responsible +to +us +if +you +or +the +other +person +or +entity +violates +this +Agreement +. +2 +. +User +Accounts +and +Account +Security +If +you +choose +to +login +to +the +Services +via +a +third-party +platform +or +social +media +network +, +you +will +need +to +use +your +credentials +( +e.g. +, +username +and +password +) +from +a +third-party +online +platform +. +You +must +maintain +the +security +of +your +third +party +account +and +promptly +notify +us +if +you +discover +or +suspect +that +someone +has +accessed +your +account +without +your +permission +. +If +you +permit +others +to +use +your +account +credentials +, +you +are +responsible +for +the +activities +of +such +users +that +occur +in +connection +with +your +account +. +3 +. +Privacy +Please +refer +to +our +Privacy +Policy +for +information +about +how +we +collect +, +use +and +disclose +information +about +you +. +4 +. +User +Content +Our +Services +may +allow +you +and +other +users +to +create +, +post +, +store +and +share +content +, +including +photos +, +videos +, +messages +, +text +, +software +and +other +materials +( +collectively +, + +User +Content + +) +. +User +Content +does +not +include +user-generated +filters +. +Subject +to +this +Agreement +and +the +Privacy +Policy +, +you +retain +all +rights +in +and +to +your +User +Content +, +as +between +you +and +FaceApp +. +Further +, +FaceApp +does +not +claim +ownership +of +any +User +Content +that +you +post +on +or +through +the +Services +. +You +grant +FaceApp +a +nonexclusive +, +royalty-free +, +worldwide +, +fully +paid +license +to +use +, +reproduce +, +modify +, +adapt +, +create +derivative +works +from +, +distribute +, +perform +and +display +your +User +Content +during +the +term +of +this +Agreement +solely +to +provide +you +with +the +Services +. +You +acknowledge +that +some +of +the +Services +are +supported +by +advertising +revenue +and +may +display +advertisements +and +promotions +, +and +you +hereby +agree +that +FaceApp +may +place +such +advertising +and +promotions +on +the +Services +or +on +, +about +, +or +in +conjunction +with +your +User +Content +. +The +manner +, +mode +and +extent +of +such +advertising +and +promotions +are +subject +to +change +without +specific +notice +to +you +. +You +acknowledge +that +we +may +not +always +identify +paid +services +, +sponsored +content +, +or +commercial +communications +as +such +. +You +represent +and +warrant +that +: +( +i +) +you +own +or +otherwise +have +the +right +to +use +the +User +Content +modified +by +you +on +or +through +the +Services +in +accordance +with +the +rights +and +licenses +set +forth +in +this +Agreement +; +( +ii +) +you +agree +to +pay +for +all +royalties +, +fees +, +and +any +other +monies +owed +by +reason +of +User +Content +you +stylize +on +or +through +the +Services +; +and +( +iii +) +you +have +the +legal +right +and +capacity +to +enter +into +this +Agreement +in +your +jurisdiction +. +You +may +not +create +, +post +, +store +or +share +any +User +Content +that +violates +this +Agreement +or +for +which +you +do +not +have +all +the +rights +necessary +to +grant +us +the +license +described +above +. +Although +we +have +no +obligation +to +screen +, +edit +or +monitor +User +Content +, +we +may +delete +or +remove +User +Content +at +any +time +and +for +any +reason +. +FaceApp +is +not +a +backup +service +and +you +agree +that +you +will +not +rely +on +the +Services +for +the +purposes +of +User +Content +backup +or +storage +. +FaceApp +will +not +be +liable +to +you +for +any +modification +, +suspension +, +or +discontinuation +of +the +Services +, +or +the +loss +of +any +User +Content +. +5 +. +Prohibited +Conduct +and +Content +You +will +not +violate +any +applicable +law +, +contract +, +intellectual +property +or +other +third-party +right +or +commit +a +tort +, +and +you +are +solely +responsible +for +your +conduct +while +accessing +or +using +our +Services +. +You +will +not +: +Engage +in +any +harassing +, +threatening +, +intimidating +, +predatory +or +stalking +conduct +; +Use +or +attempt +to +use +another +user + +s +account +without +authorization +from +that +user +and +FaceApp +; +Use +our +Services +in +any +manner +that +could +interfere +with +, +disrupt +, +negatively +affect +or +inhibit +other +users +from +fully +enjoying +our +Services +or +that +could +damage +, +disable +, +overburden +or +impair +the +functioning +of +our +Services +in +any +manner +; +Reverse +engineer +any +aspect +of +our +Services +or +do +anything +that +might +discover +source +code +or +bypass +or +circumvent +measures +employed +to +prevent +or +limit +access +to +any +part +of +our +Services +; +Attempt +to +circumvent +any +content-filtering +techniques +we +employ +or +attempt +to +access +any +feature +or +area +of +our +Services +that +you +are +not +authorized +to +access +; +Develop +or +use +any +third-party +applications +that +interact +with +our +Services +without +our +prior +written +consent +, +including +any +scripts +designed +to +scrape +or +extract +data +from +our +Services +; +Use +our +Services +for +any +illegal +or +unauthorized +purpose +, +or +engage +in +, +encourage +or +promote +any +activity +that +violates +this +Agreement +. +You +may +also +only +post +or +otherwise +share +User +Content +that +is +non-confidential +and +you +have +all +necessary +rights +to +disclose +. +You +may +not +create +, +post +, +store +or +share +any +User +Content +that +: +Is +unlawful +, +libelous +, +defamatory +, +obscene +, +pornographic +, +indecent +, +lewd +, +suggestive +, +harassing +, +threatening +, +invasive +of +privacy +or +publicity +rights +, +abusive +, +inflammatory +or +fraudulent +; +Would +constitute +, +encourage +or +provide +instructions +for +a +criminal +offense +, +violate +the +rights +of +any +party +or +otherwise +create +liability +or +violate +any +local +, +state +, +national +or +international +law +; +May +infringe +any +patent +, +trademark +, +trade +secret +, +copyright +or +other +intellectual +or +proprietary +right +of +any +party +; +Contains +or +depicts +any +statements +, +remarks +or +claims +that +do +not +reflect +your +honest +views +and +experiences +; +Impersonates +, +or +misrepresents +your +affiliation +with +, +any +person +or +entity +; +Contains +any +unsolicited +promotions +, +political +campaigning +, +advertising +or +solicitations +; +Contains +any +private +or +personal +information +of +a +third +party +without +such +third +party + +s +consent +; +Contains +any +viruses +, +corrupted +data +or +other +harmful +, +disruptive +or +destructive +files +or +content +; +or +Is +, +in +our +sole +judgment +, +objectionable +or +that +restricts +or +inhibits +any +other +person +from +using +or +enjoying +our +Services +, +or +that +may +expose +FaceApp +or +others +to +any +harm +or +liability +of +any +type +. +In +addition +, +although +we +have +no +obligation +to +screen +, +edit +or +monitor +User +Content +, +we +may +delete +or +remove +User +Content +at +any +time +and +for +any +reason +. +6 +. +Limited +License +; +Copyright +and +Trademark +Our +Services +and +the +text +, +graphics +, +images +, +photographs +, +videos +, +illustrations +, +trademarks +, +trade +names +, +page +headers +, +button +icons +, +scripts +, +service +marks +, +logos +, +slogans +, +filters +, +user +generated +filters +and +other +content +contained +therein +( +collectively +, +the + +FaceApp +Content + +) +are +owned +by +or +licensed +to +FaceApp +and +are +protected +under +both +United +States +and +foreign +laws +. +Except +as +explicitly +stated +in +this +Agreement +, +FaceApp +and +our +licensors +reserve +all +rights +in +and +to +our +Services +and +the +FaceApp +Content +. +You +are +hereby +granted +a +limited +, +nonexclusive +, +nontransferable +, +non-sublicensable +, +revocable +license +to +access +and +use +our +Services +and +FaceApp +Content +for +your +own +personal +use +; +however +, +such +license +is +subject +to +this +Agreement +and +does +not +include +any +right +to +: +( +a +) +sell +, +resell +or +commercially +use +our +Services +or +FaceApp +Content +; +( +b +) +copy +, +reproduce +, +distribute +, +publicly +perform +or +publicly +display +FaceApp +Content +, +except +as +expressly +permitted +by +us +or +our +licensors +; +( +c +) +modify +the +FaceApp +Content +, +remove +any +proprietary +rights +notices +or +markings +, +or +otherwise +make +any +derivative +uses +of +our +Services +or +FaceApp +Content +, +except +as +expressly +set +forth +in +this +Agreement +; +( +d +) +use +any +data +mining +, +robots +or +similar +data +gathering +or +extraction +methods +; +or +( +e +) +use +our +Services +or +FaceApp +Content +other +than +as +expressly +provided +in +this +Agreement +. +Any +use +of +our +Services +or +FaceApp +Content +other +than +as +specifically +authorized +herein +, +without +our +prior +written +permission +, +is +strictly +prohibited +and +will +terminate +the +license +granted +under +this +Agreement +. +You +will +not +remove +, +alter +or +conceal +any +copyright +, +trademark +, +service +mark +or +other +proprietary +rights +notices +incorporated +in +or +accompanying +the +FaceApp +Content +. +7 +. +Feedback +Any +questions +, +comments +, +suggestions +, +ideas +, +original +or +creative +materials +or +other +information +you +submit +about +FaceApp +or +our +products +or +Services +( +collectively +, + +Feedback + +) +, +is +non-confidential +and +we +have +no +obligations +( +including +without +limitation +obligations +of +confidentiality +) +with +respect +to +such +Feedback +. +You +hereby +grant +to +FaceApp +a +fully +paid +, +royalty-free +, +perpetual +, +irrevocable +, +worldwide +, +non-exclusive +, +and +fully +sublicensable +right +and +license +to +use +, +reproduce +, +perform +, +display +, +distribute +, +adapt +, +modify +, +re-format +, +create +derivative +works +of +, +and +otherwise +commercially +or +non-commercially +exploit +in +any +manner +, +any +and +all +Feedback +, +and +to +sublicense +the +foregoing +rights +, +in +connection +with +the +operation +and +maintenance +of +the +Services +and/or +FaceApp + +s +business +. +8 +. +Copyright +Complaints +We +have +a +policy +of +limiting +access +to +our +Services +and +terminating +the +accounts +of +users +who +repeatedly +infringe +the +intellectual +property +copyright +rights +of +others +upon +prompt +notification +to +us +by +the +copyright +owner +or +the +copyright +owner + +s +legal +agent +. +Without +limiting +the +foregoing +, +if +you +believe +that +your +work +has +been +copied +and +posted +on +or +through +the +Services +in +a +way +that +constitutes +copyright +infringement +, +please +provide +our +Copyright +Agent +with +the +following +information +: +( +a +) +an +electronic +or +physical +signature +of +the +person +authorized +to +act +on +behalf +of +the +owner +of +the +copyright +interest +; +( +b +) +a +description +of +the +copyrighted +work +that +you +claim +has +been +infringed +; +( +c +) +a +description +of +the +location +on +the +Services +of +the +material +that +you +claim +is +infringing +; +( +d +) +your +address +, +telephone +number +and +e-mail +address +; + +a +written +statement +by +you +that +you +have +a +good +faith +belief +that +the +disputed +use +is +not +authorized +by +the +copyright +owner +, +its +agent +or +the +law +; +and +( +f +) +a +statement +by +you +, +made +under +penalty +of +perjury +, +that +the +above +information +in +your +notice +is +accurate +and +that +you +are +the +copyright +owner +or +authorized +to +act +on +the +copyright +owner + +s +behalf +. +Contact +information +for +FaceApp + +s +Copyright +Agent +for +notice +of +claims +of +infringement +is +as +follows +: +Yaroslav +Goncharov +, +Designated +DMCA +Copyright +Agent +, +FaceApp +Inc +, +1000 +N +West +Street +, +Suite +1200 +, +Wilmington +, +Delaware +, +19801 +. +9 +. +Indemnification +To +the +fullest +extent +permitted +by +applicable +law +, +you +will +indemnify +, +defend +, +and +hold +harmless +FaceApp +and +each +of +our +respective +officers +, +directors +, +agents +, +partners +and +employees +( +individually +and +collectively +, +the + +FaceApp +Parties + +) +from +and +against +any +loss +, +liability +, +claim +, +demand +, +damages +, +expenses +or +costs +( + +Claims + +) +arising +out +of +or +related +to +( +a +) +your +access +to +or +use +of +our +Services +; +( +b +) +your +User +Content +or +Feedback +; +( +c +) +your +violation +of +this +Agreement +; +( +d +) +your +violation +, +misappropriation +or +infringement +of +any +rights +of +another +( +including +intellectual +property +rights +or +privacy +rights +) +; +or +( +e +) +your +conduct +in +connection +with +our +Services +. +You +agree +to +promptly +notify +FaceApp +Parties +of +any +third +party +Claims +, +cooperate +with +FaceApp +Parties +in +defending +such +Claims +and +pay +all +fees +, +costs +and +expenses +associated +with +defending +such +Claims +( +including +, +but +not +limited +to +, +attorneys + +fees +) +. +You +also +agree +that +the +FaceApp +Parties +will +have +control +of +the +defense +or +settlement +of +any +third +party +Claims +. +This +indemnity +is +in +addition +to +, +and +not +in +lieu +of +, +any +other +indemnities +set +forth +in +a +written +agreement +between +you +and +FaceApp +or +the +other +FaceApp +Parties +. +10 +. +Disclaimers +We +do +not +control +, +endorse +or +take +responsibility +for +any +User +Content +or +third-party +content +available +on +or +linked +to +by +our +Services +. +YOUR +USE +OF +OUR +SERVICES +IS +AT +YOUR +SOLE +RISK +. +OUR +SERVICES +ARE +PROVIDED + +AS +IS + +AND + +AS +AVAILABLE + +WITHOUT +WARRANTIES +OF +ANY +KIND +, +EITHER +EXPRESS +OR +IMPLIED +, +INCLUDING +, +BUT +NOT +LIMITED +TO +, +IMPLIED +WARRANTIES +OF +MERCHANTABILITY +, +FITNESS +FOR +A +PARTICULAR +PURPOSE +, +TITLE +, +AND +NON-INFRINGEMENT +. +In +addition +, +FaceApp +does +not +represent +or +warrant +that +our +Services +are +accurate +, +complete +, +reliable +, +current +or +error-free +. +While +FaceApp +attempts +to +make +your +access +to +and +use +of +our +Services +safe +, +we +can +not +and +do +not +represent +or +warrant +that +our +Services +or +servers +are +free +of +viruses +or +other +harmful +components +. +You +assume +the +entire +risk +as +to +the +quality +and +performance +of +the +Services +. +11 +. +Limitation +of +Liability +FACEAPP +AND +THE +OTHER +FACEAPP +PARTIES +WILL +NOT +BE +LIABLE +TO +YOU +UNDER +ANY +THEORY +OF +LIABILITY—WHETHER +BASED +IN +CONTRACT +, +TORT +, +NEGLIGENCE +, +STRICT +LIABILITY +, +WARRANTY +, +OR +OTHERWISE—FOR +ANY +INDIRECT +, +CONSEQUENTIAL +, +EXEMPLARY +, +INCIDENTAL +, +PUNITIVE +OR +SPECIAL +DAMAGES +OR +LOST +PROFITS +, +EVEN +IF +FACEAPP +OR +THE +OTHER +FACEAPP +PARTIES +HAVE +BEEN +ADVISED +OF +THE +POSSIBILITY +OF +SUCH +DAMAGES +. +THE +TOTAL +LIABILITY +OF +FACEAPP +AND +THE +OTHER +FACEAPP +PARTIES +, +FOR +ANY +CLAIM +ARISING +OUT +OF +OR +RELATING +TO +THIS +AGREEMENT +OR +OUR +SERVICES +, +REGARDLESS +OF +THE +FORM +OF +THE +ACTION +, +IS +LIMITED +TO +THE +AMOUNT +PAID +, +IF +ANY +, +BY +YOU +TO +ACCESS +OR +USE +OUR +SERVICES +. +The +limitations +set +forth +in +this +section +will +not +limit +or +exclude +liability +for +the +gross +negligence +, +fraud +or +intentional +misconduct +of +FaceApp +or +the +other +FaceApp +Parties +or +for +any +other +matters +in +which +liability +can +not +be +excluded +or +limited +under +applicable +law +. +Additionally +, +some +jurisdictions +do +not +allow +the +exclusion +or +limitation +of +incidental +or +consequential +damages +, +so +the +above +limitations +or +exclusions +may +not +apply +to +you +. +12 +. +Release +To +the +fullest +extent +permitted +by +applicable +law +, +you +release +FaceApp +and +the +other +FaceApp +Parties +from +responsibility +, +liability +, +claims +, +demands +, +and/or +damages +( +actual +and +consequential +) +of +every +kind +and +nature +, +known +and +unknown +( +including +, +but +not +limited +to +, +claims +of +negligence +) +, +arising +out +of +or +related +to +disputes +between +users +and +the +acts +or +omissions +of +third +parties +. +You +expressly +waive +any +rights +you +may +have +under +California +Civil +Code +§ +1542 +as +well +as +any +other +statute +or +common +law +principles +that +would +otherwise +limit +the +coverage +of +this +release +to +include +only +those +claims +which +you +may +know +or +suspect +to +exist +in +your +favor +at +the +time +of +agreeing +to +this +release +. +13 +. +Transfer +and +Processing +Data +By +accessing +or +using +our +Services +, +you +acknowledge +and +, +as +applicable +, +consent +to +the +processing +, +transfer +and +storage +of +information +about +you +in +and +to +the +United +States +and +other +countries +. +14 +. +Dispute +Resolution +; +Binding +Arbitration +Agreement +Please +read +the +following +section +carefully +because +it +requires +users +who +are +U.S. +residents +to +arbitrate +certain +disputes +and +claims +with +FaceApp +and +limits +the +manner +in +which +you +can +seek +relief +from +us +. +Applicability +of +Arbitration +Agreement +. +Except +for +small +claims +disputes +in +which +you +or +FaceApp +seek +to +bring +an +individual +action +in +small +claims +court +located +in +the +county +of +your +billing +address +or +disputes +in +which +you +or +FaceApp +seeks +injunctive +or +other +equitable +relief +for +the +alleged +unlawful +use +of +intellectual +property +, +you +and +FaceApp +waive +your +rights +to +a +jury +trial +and +to +have +any +dispute +arising +out +of +or +related +to +this +Agreement +or +our +Services +resolved +in +court +. +This +Arbitration +Agreement +shall +apply +, +without +limitation +, +to +all +disputes +or +claims +and +requests +for +relief +that +arose +or +were +asserted +before +the +effective +date +of +this +Agreement +or +any +prior +version +of +this +Agreement +. +Arbitration +Rules +and +Forum +. +The +Federal +Arbitration +Act +governs +the +interpretation +and +enforcement +of +this +Arbitration +Agreement +. +To +begin +an +arbitration +proceeding +, +you +must +send +a +letter +requesting +arbitration +and +describing +your +dispute +or +claim +or +request +for +relief +to +our +registered +agent +[ +include +name +and +address +of +registered +agent +here +] +. +The +arbitration +will +be +resolved +through +confidential +binding +arbitration +by +the +Judicial +Arbitration +and +Mediation +Services +( + +JAMS + +) +, +an +established +alternative +dispute +resolution +provider +. +Disputes +involving +claims +, +counterclaims +, +or +requests +for +relief +under +$ +250,000 +, +not +inclusive +of +attorneys + +fees +and +interest +, +shall +be +subject +to +JAMS + +s +most +current +version +of +the +Streamlined +Arbitration +Rules +and +procedures +available +; +all +other +disputes +shall +be +subject +to +JAMS + +s +most +current +version +of +the +Comprehensive +Arbitration +Rules +and +Procedures +, +available +at +http +: +//www.jamsadr.com/rules-comprehensive-arbitration/ +. +JAMS + +s +rules +are +also +available +at +www.jamsadr.com +or +by +calling +JAMS +at +800-352-5267 +. +If +JAMS +is +not +available +to +arbitrate +, +the +parties +will +select +an +alternative +arbitral +forum +. +If +the +arbitrator +finds +that +you +can +not +afford +to +pay +JAMS + +s +filing +, +administrative +, +hearing +and/or +other +fees +and +can +not +obtain +a +waiver +from +JAMS +, +FaceApp +will +pay +them +for +you +. +In +addition +, +we +will +reimburse +all +such +JAMS + +s +filing +, +administrative +, +hearing +and/or +other +fees +for +disputes +, +claims +, +or +requests +for +relief +totaling +less +than +$ +10,000 +unless +the +arbitrator +determines +the +claims +are +frivolous +. +You +may +choose +to +have +the +arbitration +conduced +by +telephone +, +based +on +written +submissions +, +or +in +person +in +the +country +where +you +live +or +at +another +mutually +agreed +location +. +Any +judgment +on +the +award +rendered +by +the +arbitrator +may +be +entered +in +any +court +of +competent +jurisdiction +. +You +may +choose +to +have +the +arbitration +conduced +by +telephone +, +based +on +written +submissions +or +at +another +mutually +agreed +location +. +Any +judgment +on +the +award +rendered +by +the +arbitrator +may +be +entered +in +any +court +of +competent +jurisdiction +. +Authority +of +Arbitrator +. +The +arbitrator +shall +have +exclusive +authority +to +( +a +) +determine +the +scope +and +enforceability +of +this +Arbitration +Agreement +and +( +b +) +resolve +any +dispute +related +to +the +interpretation +, +applicability +, +enforceability +or +formation +of +this +Arbitration +Agreement +, +including +, +but +not +limited +to +, +any +assertion +that +all +or +any +part +of +this +Arbitration +Agreement +is +void +or +voidable +. +The +arbitration +will +decide +the +rights +and +liabilities +, +if +any +, +of +you +and +FaceApp +. +The +arbitration +proceeding +will +not +be +consolidated +with +any +other +matters +or +joined +with +any +other +cases +or +parties +. +The +arbitrator +shall +have +the +authority +to +grant +motions +dispositive +of +all +or +part +of +any +claim +. +The +arbitrator +shall +have +the +authority +to +award +monetary +damages +and +to +grant +any +non-monetary +remedy +or +relief +available +to +an +individual +under +applicable +law +, +the +arbitral +forum + +s +rules +, +and +the +Agreement +( +including +the +Arbitration +Agreement +) +. +The +arbitrator +shall +issue +a +written +award +and +statement +of +decision +describing +the +essential +findings +and +conclusions +on +which +the +award +is +based +, +including +the +calculation +of +any +damages +awarded +. +The +arbitrator +has +the +same +authority +to +award +relief +on +an +individual +basis +that +a +judge +in +a +court +of +law +would +have +. +The +award +of +the +arbitrator +is +final +and +binding +upon +you +and +us +. +Waiver +of +Jury +Trial +. +YOU +AND +FACEAPP +HEREBY +WAIVE +ANY +CONSTITUTIONAL +AND +STATUTORY +RIGHTS +TO +SUE +IN +COURT +AND +HAVE +A +TRIAL +IN +FRONT +OF +A +JUDGE +OR +A +JURY +. +You +and +FaceApp +are +instead +electing +that +all +disputes +, +claims +or +requests +for +relief +shall +be +resolved +by +arbitration +under +this +Arbitration +Agreement +, +except +as +specified +above +. +An +arbitrator +can +award +on +an +individual +basis +the +same +damages +and +relief +as +a +court +and +must +follow +this +Agreement +as +a +court +would +. +However +, +there +is +no +judge +or +jury +in +arbitration +, +and +court +review +of +an +arbitration +award +is +subject +to +very +limited +. +Review +. +Waiver +of +Class +or +Other +Non-Individualized +Relief +. +ALL +DISPUTES +, +CLAIMS +AND +REQUESTS +FOR +RELIEF +WITHIN +THE +SCOPE +OF +THIS +ARBITRATION +AGREEMENT +MUST +BE +ARBITRATED +ON +AN +INDIVIDUAL +BASIS +AND +NOT +ON +A +CLASS +OR +COLLECTIVE +BASIS +. +ONLY +INDIVIDUAL +RELIEF +IS +AVAILABLE +, +AND +CLAIMS +OF +MORE +THAN +ONE +USER +CAN +NOT +BE +ARBITRATED +OR +CONSOLIDATED +WITH +THOSE +OF +ANY +OTHER +USER +. +If +a +decision +is +issued +stating +that +applicable +law +precludes +enforcement +of +any +of +this +subsection + +s +limitations +as +to +a +given +dispute +, +claim +or +request +for +relief +, +then +such +aspect +must +be +severed +from +the +arbitration +and +brought +into +the +State +or +Federal +Courts +located +in +the +State +of +California +. +All +other +disputes +, +claims +, +or +requests +for +relief +shall +be +arbitrated +. +30-Day +Right +to +Opt-Out +. +You +have +the +right +to +opt +out +of +the +provisions +of +this +Arbitration +Agreement +by +sending +written +notice +of +your +decision +to +opt-out +to +: +arbitration +@ +faceapp.com +, +within +30 +days +after +first +becoming +subject +to +this +Arbitration +Agreement +. +Your +notice +must +include +your +name +and +address +, +your +username +( +if +any +) +, +the +e-mail +address +you +used +to +set +up +your +account +( +if +you +have +one +) +, +and +an +unequivocal +statement +that +you +want +to +opt +out +of +this +Arbitration +Agreement +. +If +you +opt +out +of +this +Arbitration +Agreement +, +all +other +parts +of +this +Agreement +will +continue +to +apply +to +you +. +Opting +out +of +this +Arbitration +Agreement +has +no +effect +on +any +other +arbitration +agreements +that +you +may +currently +have +, +or +may +enter +in +the +future +, +with +us +. +You +and +FaceApp +agree +that +the +state +or +federal +courts +of +the +State +of +California +and +the +United +States +sitting +in +Santa +Clara +County +, +California +have +exclusive +jurisdiction +over +any +appeals +and +the +enforcement +of +an +arbitration +award +. +Severability +. +Except +as +provided +in +this +Section +14 +above +, +if +any +part +or +parts +of +this +Arbitration +Agreement +are +found +under +the +law +to +be +invalid +or +unenforceable +, +then +such +specific +part +or +parts +shall +be +of +no +force +and +effect +and +shall +be +severed +, +and +the +remainder +of +the +Arbitration +Agreement +shall +continue +in +full +force +and +effect +. +Survival +of +Agreement +. +This +Arbitration +Agreement +will +survive +the +termination +of +your +relationship +with +FaceApp +. +Modification +, +Notwithstanding +any +provision +in +this +Agreement +to +the +contrary +, +we +agree +that +if +FaceApp +makes +any +future +material +change +to +this +Arbitration +Agreement +you +may +reject +that +change +within +thirty +( +30 +) +days +of +such +change +becoming +effective +by +writing +Company +at +the +following +address +: +arbitration +@ +faceapp.com +. +15 +. +Governing +Law +and +Venue +This +Agreement +and +your +access +to +and +use +of +our +Services +will +be +governed +by +and +construed +and +enforced +in +accordance +with +the +laws +of +California +, +consistent +with +the +Federal +Arbitration +Act +, +without +regard +to +conflict +of +law +rules +or +principles +( +whether +of +California +or +any +other +jurisdiction +) +that +would +cause +the +application +of +the +laws +of +any +other +jurisdiction +. +The +United +Nations +Convention +for +the +International +Sale +of +Goods +does +not +apply +to +the +Agreement +. +Any +dispute +between +the +parties +that +is +not +subject +to +arbitration +or +can +not +be +heard +in +small +claims +court +will +be +resolved +in +the +state +or +federal +courts +of +California +and +the +United +States +, +respectively +, +sitting +in +Santa +Clara +County +, +California +. +16 +. +Electronic +Communications +By +accessing +or +using +the +Services +, +you +also +consent +to +receive +electronic +communications +from +FaceApp +( +e.g. +, +responses +to +your +requests +, +questions +and +feedback +, +announcements +, +updates +, +and +security +alerts +through +a +push +notification +or +by +posting +notices +on +our +Services +) +. +You +agree +that +any +notices +, +agreements +, +disclosures +or +other +communications +that +we +send +to +you +electronically +will +satisfy +any +legal +communication +requirements +, +including +, +but +not +limited +to +, +that +such +communications +be +in +writing +. +17 +. +Termination +We +reserve +the +right +, +without +notice +and +in +our +sole +discretion +, +to +terminate +your +right +to +access +or +use +our +Services +. +We +are +not +responsible +for +any +loss +or +harm +related +to +your +inability +to +access +or +use +our +Services +. +18 +. +Severability +If +any +provision +or +part +of +a +provision +of +this +Agreement +is +unlawful +, +void +or +unenforceable +, +that +provision +or +part +of +the +provision +is +deemed +severable +from +this +Agreement +and +does +not +affect +the +validity +and +enforceability +of +any +remaining +provisions +. +19 +. +Additional +Terms +Applicable +to +iOS +Devices +The +following +terms +apply +if +you +install +, +access +or +use +the +Services +on +any +device +that +contains +the +iOS +mobile +operating +system +( +the + +App + +) +developed +by +Apple +Inc. +( + +Apple + +) +. +Acknowledgement +. +You +acknowledge +that +this +Agreement +is +concluded +solely +between +us +, +and +not +with +Apple +, +and +FaceApp +, +not +Apple +, +is +solely +responsible +for +the +App +and +the +content +thereof +. +You +further +acknowledge +that +the +usage +rules +for +the +App +are +subject +to +any +additional +restrictions +set +forth +in +the +Usage +Rules +for +the +Apple +App +Store +Terms +of +Service +as +of +the +date +you +download +the +App +, +and +in +the +event +of +any +conflict +, +the +Usage +Rules +in +the +App +Store +shall +govern +if +they +are +more +restrictive +. +You +acknowledge +and +agree +that +you +have +had +the +opportunity +to +review +the +Usage +Rules +. +Scope +of +License +. +The +license +granted +to +you +is +limited +to +a +non-transferable +license +to +use +the +App +on +any +iPhone +, +iPod +touch +or +iPad +that +you +own +or +control +as +permitted +by +the +Usage +Rules +set +forth +in +the +Apple +App +Store +Terms +of +Service +. +Maintenance +and +Support +. +You +and +FaceApp +acknowledge +that +Apple +has +no +obligation +whatsoever +to +furnish +any +maintenance +and +support +services +with +respect +to +the +App +. +Warranty +. +You +acknowledge +that +Apple +is +not +responsible +for +any +product +warranties +, +whether +express +or +implied +by +law +, +with +respect +to +the +App +. +In +the +event +of +any +failure +of +the +App +to +conform +to +any +applicable +warranty +, +you +may +notify +Apple +, +and +Apple +will +refund +the +purchase +price +, +if +any +, +paid +to +Apple +for +the +App +by +you +; +and +to +the +maximum +extent +permitted +by +applicable +law +, +Apple +will +have +no +other +warranty +obligation +whatsoever +with +respect +to +the +App +. +The +parties +acknowledge +that +to +the +extent +that +there +are +any +applicable +warranties +, +any +other +claims +, +losses +, +liabilities +, +damages +, +costs +or +expenses +attributable +to +any +failure +to +conform +to +any +such +applicable +warranty +would +be +the +sole +responsibility +of +FaceApp +. +However +, +you +understand +and +agree +that +in +accordance +with +this +Agreement +, +FaceApp +has +disclaimed +all +warranties +of +any +kind +with +respect +to +the +App +, +and +therefore +, +there +are +no +warranties +applicable +to +the +App +. +Product +Claims +. +You +and +FaceApp +acknowledge +that +as +between +Apple +and +FaceApp +, +FaceApp +, +not +Apple +, +is +responsible +for +addressing +any +claims +relating +to +the +App +or +your +possession +and/or +use +of +the +App +, +including +, +but +not +limited +to +( +a +) +product +liability +claims +, +( +b +) +any +claim +that +the +App +fails +to +conform +to +any +applicable +legal +or +regulatory +requirement +, +and +( +c +) +claims +arising +under +consumer +protection +or +similar +legislation +. +Intellectual +Property +Rights +. +The +parties +acknowledge +that +, +in +the +event +of +any +third +party +claim +that +the +App +or +your +possession +and +use +of +the +App +infringe +that +third +party + +s +intellectual +property +rights +, +FaceApp +, +and +not +Apple +, +will +be +solely +responsible +for +the +investigation +, +defense +, +settlement +and +discharge +of +any +such +intellectual +property +infringement +claim +to +the +extent +required +under +this +Agreement +. +Legal +Compliance +. +You +represent +and +warrant +that +( +a +) +you +are +not +located +in +a +country +that +is +subject +to +a +U.S. +Government +embargo +, +or +that +has +been +designated +by +the +U.S. +Government +as +a + +terrorist +supporting + +country +, +and +( +b +) +you +are +not +listed +on +any +U.S. +Government +list +of +prohibited +or +restricted +parties +. +Developer +Name +and +Address +. +Any +questions +, +complaints +or +claims +with +respect +to +the +App +should +be +directed +to +: +FaceApp +Inc +1000 +N +West +Street +, +Suite +1200 +, +Wilmington +, +Delaware +, +19801 +USA +contact +@ +faceapp.com +Third-Party +Terms +of +Agreement +. +You +agree +to +comply +with +any +applicable +third-party +terms +when +using +the +Services +. +Third-Party +Beneficiary +. +The +parties +acknowledge +and +agree +that +Apple +, +and +Apple + +s +subsidiaries +, +are +third-party +beneficiaries +of +this +Agreement +, +and +that +, +upon +your +acceptance +of +this +Agreement +, +Apple +will +have +the +right +( +and +will +be +deemed +to +have +accepted +the +right +) +to +enforce +this +Agreement +against +you +as +a +third-party +beneficiary +thereof +) +. +20 +. +Export +You +may +not +use +, +export +, +import +, +or +transfer +all +or +any +portion +of +the +Services +except +as +authorized +by +U.S. +law +, +the +laws +of +the +jurisdiction +in +which +you +obtained +the +Services +, +and +any +other +applicable +laws +. +In +particular +, +but +without +limitation +, +the +Services +may +not +be +exported +or +re-exported +( +a +) +into +any +United +States +embargoes +countries +, +or +( +b +) +to +anyone +on +the +U.S. +Treasury +Department + +s +list +of +Specially +Designated +Nationals +or +the +U.S. +Department +of +Commerce + +s +Denied +Person + +s +List +or +Entity +List +. +By +using +the +Services +, +you +represent +and +warrant +that +( +y +) +you +are +not +located +in +a +country +that +is +subject +to +a +U.S. +Government +embargo +, +or +that +has +been +designated +by +the +U.S. +Government +as +a + +terrorist +supporting + +country +and +( +z +) +you +are +not +listed +on +any +U.S. +Government +list +of +prohibited +or +restricted +parties +. +You +also +will +not +use +the +Services +for +any +purpose +prohibited +by +U.S. +law +, +including +the +development +, +design +, +manufacture +or +production +of +missiles +, +nuclear +, +chemical +or +biological +weapons +. +You +acknowledge +and +agree +that +products +, +services +or +technology +provided +by +FaceApp +are +subject +to +the +export +control +laws +and +regulations +of +the +United +States +. +You +shall +comply +with +these +laws +and +regulations +and +shall +not +, +without +prior +U.S. +government +authorization +, +export +, +re-export +, +or +transfer +FaceApp +products +, +services +or +technology +, +either +directly +or +indirectly +, +to +any +country +in +violation +of +such +laws +and +regulations +. +21 +. +Miscellaneous +In +accordance +with +California +Civil +Code +section +1789.3 +, +you +may +report +complaints +to +the +Complaint +Assistance +Unit +of +the +Division +of +Consumer +Services +of +the +California +Department +of +Consumer +Affairs +by +contacting +them +in +writing +at +400 +R +Street +, +Sacramento +, +CA +95814 +, +or +by +telephone +at +( +800 +) +952-5210 +. +This +Agreement +constitutes +the +entire +agreement +between +you +and +FaceApp +relating +to +your +access +to +and +use +of +our +Services +. +The +failure +of +FaceApp +to +exercise +or +enforce +any +right +or +provision +of +this +Agreement +will +not +operate +as +a +waiver +of +such +right +or +provision +. +The +section +titles +in +this +Agreement +is +for +convenience +only +and +have +no +legal +or +contractual +effect +. +Except +as +otherwise +provided +herein +, +this +Agreement +is +intended +solely +for +the +benefit +of +the +parties +and +are +not +intended +to +confer +third +party +beneficiary +rights +upon +any +other +person +or +entity +. +
+
colonial words: +
services(69) +
agreement(60) +
arbitration(42) +
content(37) +
use(35) +
user(28) +
claims(28) +
may(26) +
rights(21) +
app(21) +
parties(20) +
apple(18) +
law(17) +
applicable(16) +
access(15) +
copyright(15) +
relief(15) +
shall(15) +
agree(14) +
without(14) +
right(14) +
including(13) +
acknowledge(13) +
“(12) +
”(12) +
subject(12) +
limited(12) +
u.s.(12) +
arbitrator(12) +
claim(11) +
disputes(11) +
rules(11) +
legal(10) +
person(10) +
third-party(10) +
party(10) +
license(10) +
liability(10) +
california(10) +
court(10) +
award(10) +
responsible(9) +
us(9) +
third(9) +
damages(9) +
jams(9) +
information(8) +
intellectual(8) +
written(8) +
laws(8) +
except(8) +
address(8) +
available(8) +
must(7) +
using(7) +
entity(7) +
authorized(7) +
account(7) +
otherwise(7) +
set(7) +
jurisdiction(7) +
property(7) +
part(7) +
united(7) +
b(7) +
agent(7) +
dispute(7) +
requests(7) +
provision(7) +
government(7) +
represent(6) +
users(6) +
create(6) +
store(6) +
solely(6) +
extent(6) +
notice(6) +
forth(6) +
fees(6) +
state(6) +
states(6) +
feedback(6) +
respect(6) +
owner(6) +
warranties(6) +
individual(6) +
country(6) +
terms(6) +
age(5) +
fully(5) +
another(5) +
privacy(5) +
post(5) +
include(5) +
grant(5) +
paid(5) +
manner(5) +
communications(5) +
warrant(5) +
service(5) +
+
diff --git a/website/tag_with_menu.py b/website/tag_with_menu.py new file mode 100644 index 0000000..6851951 --- /dev/null +++ b/website/tag_with_menu.py @@ -0,0 +1,193 @@ +from __future__ import division +import glob +from nltk import * +import re + + +import nltk +import codecs +from nltk import sent_tokenize, word_tokenize, pos_tag +from nltk.probability import FreqDist +from nltk.corpus import stopwords +from PIL import Image +import base64 + +nltk.download('stopwords') + +#open the txt file, read, and tokenize +file = open('faceapp.txt','r') +text = file.read() +#not sure if this works.. +x = 1 + +#stopwords +default_stopwords = set(stopwords.words('english')) +custom_stopwords = set(codecs.open('stopwords.txt', 'r').read().splitlines()) +all_stopwords = default_stopwords | custom_stopwords + + + +print(''' + + + + + + +''') + + +print('
') + +#insert an image +# https://upload.wikimedia.org/wikipedia/commons/1/15/Joffe_signing_the_Treaty_of_Tartu.jpg +FaceApp_img_url = base64.b64encode(open('img/faceapp_logo.png', 'rb').read()).decode('utf-8') +FaceApp_image = '
FaceApp
'.format(FaceApp_img_url) +print(FaceApp_image) + + +#info box +print('
') +infotext = [('Service', 'FaceApp'), ('Type', 'Image editing'), ('Initial release', 'December 31, 2016'), ('Type', 'Image editing'), ('source', 'link'), ('Description', 'FaceApp is a mobile application for iOS and Android developed by Russian company Wireless Lab. The app generates highly realistic transformations of human faces in photographs by using neural networks based on artificial intelligence. The app can transform a face to make it smile, look younger, look older, or change gender.')] + +for title, info in infotext: + print('
{0}
{1}

'.format(title, info)) + +print('
') + + + +#ToS text +print('
') +tokenized = word_tokenize(text) +tagged = pos_tag(tokenized) + +for word, pos in tagged: + print('{}'.format(pos, word)) +print('
') + + + +#colonial words list +print('
colonial words:') + +tokens_without_stopwords = nltk.FreqDist(words.lower() for words in tokenized if words.lower() not in all_stopwords) +frequency_word = FreqDist(tokens_without_stopwords) +top_words = tokens_without_stopwords.most_common(100) + +for chosen_words, frequency in top_words: + print('
{}({}) '.format(chosen_words, frequency)) +print('
') +# new_html = open('output.html', 'wb') # open the output file +# new_html.write('''
''') +# new_html.close() # close the output file + + +print('''
''') + + diff --git a/website/test.html b/website/test.html index ed30db2..8585ce1 100644 --- a/website/test.html +++ b/website/test.html @@ -26,15 +26,35 @@ url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg"); } + @font-face { + font-family: "SourceCodePro"; + src: url("http://bohyewoo.com/webfonts/Source_Code_Pro/SourceCodePro-Regular.ttf"); + } + + + + + body { + background-color: whitesmoke; # font-family: Belgika; # font-weight: 8th; - letter-spacing: 0.5px; + # letter-spacing: -0.3px; font-size: 20px; line-height: 1.2; } + .info { + font-family: Belgika; + font-weight: 8th; + font-size: 10pt; + width: 20%; + float: right; + border: 1px solid black; + + + } .NNP { @@ -57,9 +77,10 @@ } .paragraph { - font-family: helvetica; + font-family: SourceCodePro; font-weight: regular; - width: 70%; + letter-spacing: -0.5px; + width: 50%; float: right; } @@ -74,6 +95,12 @@ +
+platform:FaceApp
+Type:Image editing
+Initial release:December 31 2016
+Type:Image editing
+
1 diff --git a/website/test.py b/website/test.py index 9a44680..c1c6e17 100644 --- a/website/test.py +++ b/website/test.py @@ -12,9 +12,15 @@ from nltk.corpus import stopwords nltk.download('stopwords') + + +# infofile = open('faceapp_infos.txt','r') +# infotext = infofile.read() + #open the txt file, read, and tokenize file = open('faceapp.txt','r') text = file.read() +#not sure if this works.. x = 1 #stopwords @@ -22,6 +28,98 @@ default_stopwords = set(stopwords.words('english')) custom_stopwords = set(codecs.open('stopwords.txt', 'r').read().splitlines()) all_stopwords = default_stopwords | custom_stopwords +# with open(output_html, 'w') as new_html: +# new_html.write( +# ''' +# +# +# +# +# +# +# ''' +# ) + + print(''' @@ -52,15 +150,35 @@ print(''' url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg"); } + @font-face { + font-family: "SourceCodePro"; + src: url("http://bohyewoo.com/webfonts/Source_Code_Pro/SourceCodePro-Regular.ttf"); + } + + + + + body { + background-color: whitesmoke; # font-family: Belgika; # font-weight: 8th; - letter-spacing: 0.5px; + # letter-spacing: -0.3px; font-size: 20px; line-height: 1.2; } + .info { + font-family: Belgika; + font-weight: 8th; + font-size: 10pt; + width: 20%; + float: right; + border: 1px solid black; + + + } .NNP { @@ -83,9 +201,10 @@ print(''' } .paragraph { - font-family: helvetica; + font-family: SourceCodePro; font-weight: regular; - width: 70%; + letter-spacing: -0.5px; + width: 50%; float: right; } @@ -102,8 +221,25 @@ print(''' ''') -# my stopwords are common words I don't want to count, like "a", "an", "the". + +#info part +print('
') +infotext = [('platform', 'FaceApp'), ('Type', 'Image editing'), ('Initial release', 'December 31 2016'), ('Type', 'Image editing')] + +for title, info in infotext: + print('{0}:{1}
'.format(title, info)) + +print('
') + + + + + + + + +#ToS text print('
') # for sentence in sent_tokenize(text): print('') @@ -123,16 +259,6 @@ print('
') tokens_without_stopwords = nltk.FreqDist(words.lower() for words in tokenized if words.lower() not in all_stopwords) print(tokens_without_stopwords) -# for read_whole_text in tokens_without_stopwords: -# whole_text_tokenized = -# print(whole_text_tokenized) - -# #filtered words in sentence -# filtered_sentence = (" ").join(tokens_without_stopwords) -# print(filtered_sentence) - - - print('
colonial words:') @@ -142,6 +268,9 @@ top_words = tokens_without_stopwords.most_common(100) for chosen_words, frequency in top_words: print('
{}({}) '.format(chosen_words, frequency)) + + + # new_html = open('output.html', 'wb') # open the output file # new_html.write('''
''') # new_html.close() # close the output file @@ -150,49 +279,3 @@ for chosen_words, frequency in top_words: print('''
''') - - - - - - - - - - - - - - - - -# # for new_file in tokens_without_stopwords: -# appendFile = open('tokenized_words.txt', 'a') -# appendFile.write(" " + new_file) -# appendFile.close() - - - - - - - -# #shows only stopwords -# processed_word_list = [] - -# for word in tokenized: -# # print(word) -# if word not in all_stopwords: -# processed_word_list.append('*') -# else: -# processed_word_list.append(word) -# print(processed_word_list) - - - - - - -# # # result putting in a graph -# top_words_plot = frequency_word.plot(10) -# print(top_words_plot)