<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Filippo</title>
    <link>https://www.filipporagazzo.it/</link>
    <description>Recent content on Filippo</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 01 Jun 2026 22:57:39 +0200</lastBuildDate><atom:link href="https://www.filipporagazzo.it/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Claude explained maps.Copy. Then I read the source.</title>
      <link>https://www.filipporagazzo.it/posts/claude-explained-maps-copy-then-i-read-the-source/</link>
      <pubDate>Mon, 01 Jun 2026 22:57:39 +0200</pubDate>
      <guid>https://www.filipporagazzo.it/posts/claude-explained-maps-copy-then-i-read-the-source/</guid>
      <description>&lt;p&gt;I really like AI, and I love Claude. It is a great tool, particularly when it comes to learning or comparing approaches. It does a pretty good job of evaluating pros and cons, and providing me with explanations for them. All great, until recently.&lt;/p&gt;
&lt;h1 id=&#34;the-pr&#34;&gt;The PR&lt;/h1&gt;
&lt;p&gt;In the context of a code change, in a BSON variable containing some file information, I had to include the parsed information extracted from the file name.&lt;/p&gt;</description>
      <content>&lt;p&gt;I really like AI, and I love Claude. It is a great tool, particularly when it comes to learning or comparing approaches. It does a pretty good job of evaluating pros and cons, and providing me with explanations for them. All great, until recently.&lt;/p&gt;
&lt;h1 id=&#34;the-pr&#34;&gt;The PR&lt;/h1&gt;
&lt;p&gt;In the context of a code change, in a BSON variable containing some file information, I had to include the parsed information extracted from the file name.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nx&#34;&gt;doc&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;bson&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;M&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;filename&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;fileName&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;content&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;content&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;),&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;created_at&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;time&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Now&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(),&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nx&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;parser&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Parse&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;fileName&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Printf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;Error parsing file name %s: %v\n&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;fileName&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;continue&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;for&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;k&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;v&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;range&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;doc&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;k&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;v&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;the-comment&#34;&gt;The comment&lt;/h1&gt;
&lt;p&gt;Despite being a pretty straightforward change, a colleague left a comment on the last loop.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;My IDE suggests to replace the loop with &lt;code&gt;maps.Copy(doc, meta)&lt;/code&gt; according to this &lt;a href=&#34;https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/modernize#hdr-Analyzer_mapsloop&#34;&gt;https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/modernize#hdr-Analyzer_mapsloop&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Alright, we don&amp;rsquo;t use that analyzer, but I was curious to know more.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;mapsloop: replace explicit loops over maps with calls to maps package&lt;/p&gt;
&lt;p&gt;The mapsloop analyzer replaces loops of the form&lt;/p&gt;
&lt;p&gt;&lt;code&gt;for k, v := range x { m[k] = v }&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;with a single call to a function from the &lt;code&gt;maps&lt;/code&gt; package, added in Go 1.23. Depending on the context, this could be &lt;code&gt;maps.Copy&lt;/code&gt;, &lt;code&gt;maps.Insert&lt;/code&gt;, &lt;code&gt;maps.Clone&lt;/code&gt;, or &lt;code&gt;maps.Collect&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The transformation to &lt;code&gt;maps.Clone&lt;/code&gt; is applied conservatively, as it preserves the nilness of the source map, which may be a subtle change in behavior if the original code did not handle a nil map in the same way.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It wasn&amp;rsquo;t clear to me whether this approach, other than being shorter and possibly &amp;ldquo;more idiomatic&amp;rdquo;, would bring any tangible improvement. While digging into it, I decided to involve Claude, hoping it would point me in the right direction.&lt;/p&gt;
&lt;h1 id=&#34;claude&#34;&gt;Claude&lt;/h1&gt;
&lt;p&gt;I asked Claude (Opus 4.7) about it:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Does the mapsloop analyzer for Go suggest real improvement here?&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;for&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;k&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;v&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;range&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;doc&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;k&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;v&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;the suggestion is to use maps.Copy(doc, meta). How is it better?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The answer was&amp;hellip; something.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;maps.Copy&lt;/code&gt; is better in a few small but real ways.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;It&amp;rsquo;s clearer to read.&lt;/strong&gt; &lt;code&gt;maps.Copy(doc, meta)&lt;/code&gt; immediately tells you &amp;ldquo;copy meta into doc.&amp;rdquo; The loop version requires the reader to scan three lines and verify it&amp;rsquo;s actually a plain copy — not a transformation, not a filter, not a conditional merge. The intent is explicit at a glance.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I don&amp;rsquo;t think this is a valid point at all. The loop is stupidly simple. In my opinion, it&amp;rsquo;s even clearer as it is!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;It&amp;rsquo;s slightly faster.&lt;/strong&gt; The standard library implementation skips some of the overhead of a Go-level range loop. For small maps it&amp;rsquo;s negligible, but for large maps it&amp;rsquo;s measurable. Not a reason on its own to switch, but a free bonus.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Interesting. Let&amp;rsquo;s have a look at &lt;a href=&#34;https://cs.opensource.google/go/go/&amp;#43;/refs/tags/go1.26.3:src/maps/maps.go;l=62-66&#34;&gt;the maps.Copy implementation&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;func&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Copy&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;M1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;~&lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;map&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;K&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;V&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;M2&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;~&lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;map&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;K&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;V&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;K&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;comparable&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;V&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;any&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;](&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;dst&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;M1&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;src&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;M2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;for&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;k&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;v&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;range&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;src&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;		&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;dst&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;k&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;v&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;	&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;img src=&#34;https://www.filipporagazzo.it/posts/claude-explained-maps-copy-then-i-read-the-source/same-picture.gif&#34; alt=&#34;alt text&#34;&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;It handles nil destinations more predictably.&lt;/strong&gt; Both versions panic if &lt;code&gt;doc&lt;/code&gt; is nil, but &lt;code&gt;maps.Copy&lt;/code&gt; makes the assumption explicit by being a documented function.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Wow. I mean. I don&amp;rsquo;t even know how to comment on this.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;It composes better.&lt;/strong&gt; If later you want to copy with a filter, you&amp;rsquo;d switch to &lt;code&gt;maps.Insert&lt;/code&gt; with an iterator, or use &lt;code&gt;maps.CopyFunc&lt;/code&gt; (depending on Go version). Starting from &lt;code&gt;maps.Copy&lt;/code&gt; makes those refactors more natural.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Man, I am just merging two maps. And even if I had to add a filter, I&amp;rsquo;d need to change the code either way.&lt;/p&gt;
&lt;h1 id=&#34;the-walkback&#34;&gt;The walkback&lt;/h1&gt;
&lt;p&gt;After confronting it with the truth, it admitted its error.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You&amp;rsquo;re right, and I overstated the case. Looking at the actual implementation, my &amp;ldquo;slightly faster&amp;rdquo; claim was wrong — it&amp;rsquo;s literally the same loop, no compiler magic, no optimization. That was sloppy of me.&lt;/p&gt;
&lt;p&gt;Your other pushbacks are also fair:&lt;/p&gt;
&lt;p&gt;The readability argument is subjective. A two-line range with &lt;code&gt;dst[k] = v&lt;/code&gt; is about as transparent as Go gets. Calling it less clear than &lt;code&gt;maps.Copy(dst, src)&lt;/code&gt; is a stretch — both are immediately obvious to anyone who knows the language.&lt;/p&gt;
&lt;p&gt;The nil panic point was filler. Both panic identically. Documenting the panic in a stdlib function doesn&amp;rsquo;t change runtime behavior.&lt;/p&gt;
&lt;p&gt;The composability point assumes a hypothetical refactor that may never happen. You&amp;rsquo;d rewrite the code either way.&lt;/p&gt;
&lt;p&gt;So the honest answer is: the only real reason to prefer &lt;code&gt;maps.Copy&lt;/code&gt; is idiomaticness — it&amp;rsquo;s the standard-library way to express the intent, and consistent codebases tend to be easier to read across files. That&amp;rsquo;s a legitimate but weak argument, and not enough to justify changing existing working code on its own.&lt;/p&gt;
&lt;p&gt;If the analyzer is enabled and you want to satisfy it, switch. If you don&amp;rsquo;t, ignoring this particular lint or disabling it for the project is perfectly defensible.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Claude didn&amp;rsquo;t just give an incorrect answer. It confidently invented benefits that did not exist. Hallucinations are nothing new, but this was the first time I had run into one in such a simple, verifiable scenario. Hopefully, it&amp;rsquo;ll be the last.&lt;/p&gt;
</content>
    </item>
    
    <item>
      <title>Building a customizable Telegram bot in Go</title>
      <link>https://www.filipporagazzo.it/posts/building-a-customizable-telegram-bot-in-go/</link>
      <pubDate>Mon, 18 Nov 2024 14:01:48 +0100</pubDate>
      <guid>https://www.filipporagazzo.it/posts/building-a-customizable-telegram-bot-in-go/</guid>
      <description>&lt;p&gt;Telegram bots are powerful tools for automating tasks and interacting with users. They are also easy to build and deploy, so it looked like a good idea to build one to play around with Go. This post will guide you through building a customizable Telegram bot. If you&amp;rsquo;d like to see the final code or simply go and grab the ready-to-use script to customize and run, you can find on &lt;a href=&#34;https://github.com/pippokairos/telegram-bot&#34;&gt;GitHub&lt;/a&gt;. The setup and running instructions are included through the post.&lt;/p&gt;</description>
      <content>&lt;p&gt;Telegram bots are powerful tools for automating tasks and interacting with users. They are also easy to build and deploy, so it looked like a good idea to build one to play around with Go. This post will guide you through building a customizable Telegram bot. If you&amp;rsquo;d like to see the final code or simply go and grab the ready-to-use script to customize and run, you can find on &lt;a href=&#34;https://github.com/pippokairos/telegram-bot&#34;&gt;GitHub&lt;/a&gt;. The setup and running instructions are included through the post.&lt;/p&gt;
&lt;h1 id=&#34;understanding-telegram-bots&#34;&gt;Understanding Telegram bots&lt;/h1&gt;
&lt;p&gt;A bot in Telegram is a special account that is not linked to a phone number. It can be used to receive messages and send responses. The &lt;a href=&#34;https://core.telegram.org/bots/api&#34;&gt;bot API&lt;/a&gt; is simple and well-documented.
Note that there are two ways to receive updates from a Telegram chat: via the &lt;a href=&#34;https://core.telegram.org/bots/api#getting-updates&#34;&gt;getUpdates&lt;/a&gt; method, or by setting a webhook. The getUpdates method is a simple way to poll for new messages, but I&amp;rsquo;d recommend to use a webhook because they are faster and more reliable. This post will focus on setting up a webhook.&lt;/p&gt;
&lt;h1 id=&#34;creating-a-bot&#34;&gt;Creating a bot&lt;/h1&gt;
&lt;p&gt;To create a bot, you need to talk to the &lt;a href=&#34;https://core.telegram.org/bots#6-botfather&#34;&gt;BotFather&lt;/a&gt; via Telegram. This bot will help you create and manage your bots. You can create a new bot by sending the /newbot command to the @BotFather. Follow the instructions to set up your bot and note down your API token.&lt;/p&gt;
&lt;h1 id=&#34;setting-up-the-bot&#34;&gt;Setting up the bot&lt;/h1&gt;
&lt;p&gt;Create a new project folder and initialize a Go module:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ mkdir telegram-bot
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ &lt;span class=&#34;nb&#34;&gt;cd&lt;/span&gt; telegram-bot
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ go mod init telegram-bot
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Install the required dependencies. In this case, we will use &lt;a href=&#34;https://pkg.go.dev/github.com/lpernett/godotenv&#34;&gt;godotenv&lt;/a&gt; to manage environment variables through a .env file, &lt;a href=&#34;https://pkg.go.dev/gopkg.in/yaml.v2&#34;&gt;yaml.v2&lt;/a&gt; to parse the triggers, and &lt;a href=&#34;https://pkg.go.dev/github.com/microcosm-cc/bluemonday&#34;&gt;bluemonday&lt;/a&gt; to sanitize the input.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ go get github.com/lpernett/godotenv github.com/microcosm-cc/bluemonday gopkg.in/yaml.v2
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;loading-the-configuration-from-env&#34;&gt;Loading the configuration from .env&lt;/h1&gt;
&lt;p&gt;Create a .env file in the project root with the following content:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nv&#34;&gt;TELEGRAM_BOT_TOKEN&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;your-telegram-bot-token
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nv&#34;&gt;PORT&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;m&#34;&gt;8080&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Then, load the environment variables in the code:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;godotenv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Load&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;()&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Fatal&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;Error loading .env file&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;os&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Getenv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;TOKEN&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;==&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;||&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;os&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Getenv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;PORT&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;==&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Fatalf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;TOKEN or PORT is missing&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;loading-the-yaml-file&#34;&gt;Loading the YAML file&lt;/h1&gt;
&lt;p&gt;Create a triggers.yaml file in the project root with the following content:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;- &lt;span class=&#34;nt&#34;&gt;key&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;hello&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;values&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;Hello!&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;- &lt;span class=&#34;nt&#34;&gt;key&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;say hello to&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;values&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;Hello __input__, how are you?&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Then, load the triggers in the code:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Trigger&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;struct&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Key&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;`yaml:&amp;#34;key&amp;#34;`&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Values&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;interface&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;`yaml:&amp;#34;values&amp;#34;`&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;var&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;triggers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[]&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Trigger&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;func&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;initializeTriggers&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;()&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;error&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;file&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;ioutil&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;ReadFile&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;./triggers.yml&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;yaml&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Unmarshal&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;file&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;&amp;amp;&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;triggers&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;handling-incoming-messages&#34;&gt;Handling incoming messages&lt;/h1&gt;
&lt;p&gt;Telegram sends updates using JSON. We need to parse the incoming message and send a response. The message structure is defined in the &lt;a href=&#34;https://core.telegram.org/bots/api#update&#34;&gt;Telegram API&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Update&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;struct&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Message&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Message&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;`json:&amp;#34;message&amp;#34;`&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Message&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;struct&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Chat&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Chat&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;`json:&amp;#34;chat&amp;#34;`&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Text&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;`json:&amp;#34;text&amp;#34;`&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Chat&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;struct&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;int&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;`json:&amp;#34;id&amp;#34;`&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Then, we can handle the incoming messages:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;func&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;callHandler&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;w&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;ResponseWriter&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;*&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Request&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;var&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;update&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Update&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;json&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;NewDecoder&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Body&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;).&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Decode&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;&amp;amp;&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;update&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;w&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;WriteHeader&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;StatusBadRequest&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;responseText&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;computeResponse&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;update&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Message&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Text&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;responseText&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;sendTextToChat&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;update&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Message&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Chat&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;responseText&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;computing-the-response&#34;&gt;Computing the response&lt;/h1&gt;
&lt;p&gt;Match the incoming message with the triggers loaded from the YAML file:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;func&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;computeResponse&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;input&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;for&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;_&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;trigger&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;range&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;triggers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;strings&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Contains&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;strings&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;ToLower&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;input&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;),&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;strings&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;ToLower&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;trigger&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Key&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;switch&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;values&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;trigger&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Values&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.(&lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;type&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;case&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;                &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;values&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;case&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[]&lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;interface&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{}:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;                &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;values&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;rand&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Intn&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;len&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;values&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))].(&lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;setting-up-the-web-server&#34;&gt;Setting up the web server&lt;/h1&gt;
&lt;p&gt;Listen for incoming requests using Go&amp;rsquo;s &lt;code&gt;net/http&lt;/code&gt; package:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;func&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;main&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;()&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;loadEnvVariables&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;()&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;initializeTriggers&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;()&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Fatalf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;Error initializing triggers: %s&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;HandleFunc&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;/&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;callHandler&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Printf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;Server running on port %s&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;os&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Getenv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;PORT&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;ListenAndServe&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;fmt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Sprintf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;:%s&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;os&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Getenv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;PORT&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)),&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Fatalf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;Server error: %s&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;sending-messages&#34;&gt;Sending messages&lt;/h1&gt;
&lt;p&gt;Call the Telegram bot API to send the message back to the user/chat:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kd&#34;&gt;func&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;sendTextToChat&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;chatId&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;int&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;text&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kt&#34;&gt;string&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;fmt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Sprintf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;https://api.telegram.org/bot%s/sendMessage&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;os&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Getenv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;TOKEN&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;_&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;PostForm&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;Values&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;chat_id&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;strconv&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Itoa&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;chatId&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)},&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;text&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;text&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;},&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;})&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nf&#34;&gt;Printf&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;Error sending message: %s&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;err&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;running&#34;&gt;Running&lt;/h1&gt;
&lt;p&gt;To run the bot, you need to set up the webhook. You can do so using the Telegram API:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;curl -X POST &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://api.telegram.org/bot&amp;lt;YOUR_TOKEN&amp;gt;/setWebhook?url=&amp;lt;YOUR_SERVER_URL&amp;gt;&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Then, run the Go script:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ go run main.go
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h1 id=&#34;conclusion&#34;&gt;Conclusion&lt;/h1&gt;
&lt;p&gt;Building a Telegram bot is a fun way to approach a new language or technology, since it&amp;rsquo;s pretty straightforward and you can see results quickly. This post covered the basics, but you can use it to automate tasks, send notifications, or even build a chatbot. The possibilities are endless, so go ahead and build your own!&lt;/p&gt;
</content>
    </item>
    
    <item>
      <title>Another default_scope story</title>
      <link>https://www.filipporagazzo.it/posts/another-default_scope-story/</link>
      <pubDate>Thu, 14 Nov 2024 14:49:41 +0100</pubDate>
      <guid>https://www.filipporagazzo.it/posts/another-default_scope-story/</guid>
      <description>&lt;p&gt;Rails &lt;a href=&#34;https://apidock.com/rails/ActiveRecord/Scoping/Default/ClassMethods/default_scope&#34;&gt;default_scope&lt;/a&gt; is an ActiveRecord macro that allows you to set a default scope for all the operations on the model.
This is useful to filter out records by default, such as soft deleted ones.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ruby&#34; data-lang=&#34;ruby&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;class&lt;/span&gt; &lt;span class=&#34;nc&#34;&gt;User&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&#34;no&#34;&gt;ApplicationRecord&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;default_scope&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;where&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;ss&#34;&gt;deleted_at&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;kp&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;end&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;In this way, we can filter out soft deleted users from all queries.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ruby&#34; data-lang=&#34;ruby&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;no&#34;&gt;User&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;all&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# SELECT * FROM users WHERE deleted_at IS NULL&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This is a powerful tool, but it can lead to unexpected behavior. If you Google it, you will find a lot of examples. This is what I found out the hard way. On a Friday. Afternoon.&lt;/p&gt;</description>
      <content>&lt;p&gt;Rails &lt;a href=&#34;https://apidock.com/rails/ActiveRecord/Scoping/Default/ClassMethods/default_scope&#34;&gt;default_scope&lt;/a&gt; is an ActiveRecord macro that allows you to set a default scope for all the operations on the model.
This is useful to filter out records by default, such as soft deleted ones.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ruby&#34; data-lang=&#34;ruby&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;class&lt;/span&gt; &lt;span class=&#34;nc&#34;&gt;User&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&#34;no&#34;&gt;ApplicationRecord&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;default_scope&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;where&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;ss&#34;&gt;deleted_at&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;kp&#34;&gt;nil&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;end&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;In this way, we can filter out soft deleted users from all queries.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ruby&#34; data-lang=&#34;ruby&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;no&#34;&gt;User&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;all&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# SELECT * FROM users WHERE deleted_at IS NULL&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This is a powerful tool, but it can lead to unexpected behavior. If you Google it, you will find a lot of examples. This is what I found out the hard way. On a Friday. Afternoon.&lt;/p&gt;
&lt;h2 id=&#34;the-problem&#34;&gt;The problem&lt;/h2&gt;
&lt;p&gt;In our application, we use soft deletion on a number of models, including users. The &lt;code&gt;Pallet&lt;/code&gt; model has a &lt;code&gt;belongs_to&lt;/code&gt; association with the &lt;code&gt;User&lt;/code&gt; model. This ensures that somebody had inspected the pallet before approving it.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ruby&#34; data-lang=&#34;ruby&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;class&lt;/span&gt; &lt;span class=&#34;nc&#34;&gt;Pallet&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&#34;no&#34;&gt;ApplicationRecord&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;belongs_to&lt;/span&gt; &lt;span class=&#34;ss&#34;&gt;:inspection_by&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;ss&#34;&gt;class_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;User&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;ss&#34;&gt;optional&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;kp&#34;&gt;true&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;validates_presence_of&lt;/span&gt; &lt;span class=&#34;ss&#34;&gt;:inspection_by&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;-&amp;gt;&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;approved_at&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;present?&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;end&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Last Friday we had to approve a pallet, but that was not possible because of a validation error. The record was not valid, with the error message &lt;code&gt;Inspection by can&#39;t be blank&lt;/code&gt;. But the &lt;code&gt;inspection_by_id&lt;/code&gt; attribute was set. What was going on?&lt;/p&gt;
&lt;h2 id=&#34;the-solution&#34;&gt;The solution&lt;/h2&gt;
&lt;p&gt;I checked the user who inspected the pallet and found out that they were soft deleted after inspecting the pallet. The &lt;code&gt;default_scope&lt;/code&gt; was filtering out the user, and the validation was failing because the user was not found. The solution was to change the validation in the &lt;code&gt;Pallet&lt;/code&gt; model to check for the &lt;code&gt;inspection_by_id&lt;/code&gt; attribute instead of using the association.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-ruby&#34; data-lang=&#34;ruby&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;class&lt;/span&gt; &lt;span class=&#34;nc&#34;&gt;Pallet&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&#34;no&#34;&gt;ApplicationRecord&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;validates_presence_of&lt;/span&gt; &lt;span class=&#34;ss&#34;&gt;:inspection_by_id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;if&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;-&amp;gt;&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;approved_at&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;present?&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;end&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This way the validation will pass if the &lt;code&gt;inspection_by_id&lt;/code&gt; attribute is set, regardless of the user being soft deleted. That was safe enough for our use case since many validations ensure that the user is valid at the moment of inspection.&lt;/p&gt;
&lt;p&gt;So after a nice Friday afternoon deploy to production, we were able to approve the pallet. And I was able to enjoy the weekend.&lt;/p&gt;
</content>
    </item>
    
    <item>
      <title>About</title>
      <link>https://www.filipporagazzo.it/about/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.filipporagazzo.it/about/</guid>
      <description>&lt;h1&gt;Hi!&lt;/h1&gt;
&lt;p&gt;
  I’m Filippo, a &lt;strong&gt;Backend Software Engineer&lt;/strong&gt; based in Utrecht,
  Netherlands. I have experience in designing, developing, and maintaining
  scalable web applications. My work centers around &lt;strong&gt;Go&lt;/strong&gt;.
  However, I have been working with &lt;strong&gt;Ruby on Rails&lt;/strong&gt; pretty much
  my whole career. Outside of work, I am playing with &lt;strong&gt;Python&lt;/strong&gt; as
  well. I have put something on my
  &lt;a href=&#34;https://github.com/pippokairos&#34; title=&#34;GitHub&#34;&gt;GitHub&lt;/a&gt; profile.
&lt;/p&gt;
&lt;p&gt;
  When I’m not coding, you’ll likely find me on the table tennis court — though
  my skills could definitely use a little polishing. Better at backend than
  backhand...
&lt;/p&gt;</description>
      <content>&lt;h1&gt;Hi!&lt;/h1&gt;
&lt;p&gt;
  I’m Filippo, a &lt;strong&gt;Backend Software Engineer&lt;/strong&gt; based in Utrecht,
  Netherlands. I have experience in designing, developing, and maintaining
  scalable web applications. My work centers around &lt;strong&gt;Go&lt;/strong&gt;.
  However, I have been working with &lt;strong&gt;Ruby on Rails&lt;/strong&gt; pretty much
  my whole career. Outside of work, I am playing with &lt;strong&gt;Python&lt;/strong&gt; as
  well. I have put something on my
  &lt;a href=&#34;https://github.com/pippokairos&#34; title=&#34;GitHub&#34;&gt;GitHub&lt;/a&gt; profile.
&lt;/p&gt;
&lt;p&gt;
  When I’m not coding, you’ll likely find me on the table tennis court — though
  my skills could definitely use a little polishing. Better at backend than
  backhand...
&lt;/p&gt;
&lt;p&gt;
  Feel free to get in touch with me on
  &lt;a href=&#34;https://www.linkedin.com/in/filipporagazzo&#34; title=&#34;LinkedIn&#34;
    &gt;LinkedIn&lt;/a
  &gt;.
&lt;/p&gt;
&lt;div style=&#34;border-top: 2px solid #ff8c00&#34;&gt;&lt;/div&gt;
</content>
    </item>
    
    <item>
      <title>Cookie Policy</title>
      <link>https://www.filipporagazzo.it/cookies/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.filipporagazzo.it/cookies/</guid>
      <description>&lt;div class=&#34;termly-content&#34;&gt;
&lt;span style=&#34;display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K) center no-repeat;&#34;&gt;&lt;/span&gt;
    &lt;div data-custom-class=&#34;body&#34;&gt;
        &lt;div&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 26px;&#34;&gt;&lt;span data-custom-class=&#34;title&#34;&gt;COOKIE POLICY&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;span &gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;subtitle&#34;&gt;Last updated &lt;bdt class=&#34;question&#34;&gt;June 18, 2024&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;This Cookie Policy explains how &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt; (&#34;&lt;strong&gt;Company&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;we&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;us&lt;/strong&gt;,&#34; and &#34;&lt;strong&gt;our&lt;/strong&gt;&#34;) uses cookies and similar technologies to recognize you when you visit our website at  &lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;question&#34;&gt;&lt;a href=&#34;https://www.filipporagazzo.it&#34; target=&#34;_blank&#34; data-custom-class=&#34;link&#34;&gt;https://www.filipporagazzo.it&lt;/a&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt; (&#34;&lt;strong&gt;Website&lt;/strong&gt;&#34;). It explains what these technologies are and why we use them, as well as your rights to control our use of them.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;In some cases we may use cookies to collect personal information, or that becomes personal information if we combine it with other information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;What are cookies?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Cookies are small data files that are placed on your computer or mobile device when you visit a website. Cookies are widely used by website owners in order to make their websites work, or to work more efficiently, as well as to provide reporting information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Cookies set by the website owner (in this case, &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt;) are called &#34;first-party cookies.&#34; Cookies set by parties other than the website owner are called &#34;third-party cookies.&#34; Third-party cookies enable third-party features or functionality to be provided on or through the website (e.g., advertising, interactive content, and analytics). The parties that set these third-party cookies can recognize your computer both when it visits the website in question and also when it visits certain other websites.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;Why do we use cookies?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We use first-&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and third-&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;party cookies for several reasons. Some cookies are required for technical reasons in order for our Website to operate, and we refer to these as &#34;essential&#34; or &#34;strictly necessary&#34; cookies. Other cookies also enable us to track and target the interests of our users to enhance the experience on our Online Properties. &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;Third parties serve cookies through our Website for advertising, analytics, and other purposes. &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;This is described in more detail below.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;How can I control cookies?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;You have the right to decide whether to accept or reject cookies. You can exercise your cookie rights by setting your preferences in the Cookie Consent Manager. The Cookie Consent Manager allows you to select which categories of cookies you accept or reject. Essential cookies cannot be rejected as they are strictly necessary to provide you with services.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The Cookie Consent Manager can be found in the notification banner and on our website. If you choose to reject cookies, you may still use our website though your access to some functionality and areas of our website may be restricted. You may also set or amend your web browser controls to accept or refuse cookies.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The specific types of first- and third-party cookies served through our Website and the purposes they perform are described in the table below (please note that the specific &lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;cookies served may vary depending on the specific Online Properties you visit):&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/div&gt;
        &lt;div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;heading_2&#34; &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;&lt;u&gt;&lt;br&gt;Analytics and customization cookies:&lt;/u&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;These cookies collect information that is used either in aggregate form to help us understand how our Website is being used or how effective our marketing campaigns are, or to help us customize our Website for you.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <content>&lt;div class=&#34;termly-content&#34;&gt;
&lt;span style=&#34;display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K) center no-repeat;&#34;&gt;&lt;/span&gt;
    &lt;div data-custom-class=&#34;body&#34;&gt;
        &lt;div&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 26px;&#34;&gt;&lt;span data-custom-class=&#34;title&#34;&gt;COOKIE POLICY&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;span &gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;subtitle&#34;&gt;Last updated &lt;bdt class=&#34;question&#34;&gt;June 18, 2024&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;This Cookie Policy explains how &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt; (&#34;&lt;strong&gt;Company&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;we&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;us&lt;/strong&gt;,&#34; and &#34;&lt;strong&gt;our&lt;/strong&gt;&#34;) uses cookies and similar technologies to recognize you when you visit our website at  &lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;question&#34;&gt;&lt;a href=&#34;https://www.filipporagazzo.it&#34; target=&#34;_blank&#34; data-custom-class=&#34;link&#34;&gt;https://www.filipporagazzo.it&lt;/a&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt; (&#34;&lt;strong&gt;Website&lt;/strong&gt;&#34;). It explains what these technologies are and why we use them, as well as your rights to control our use of them.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;In some cases we may use cookies to collect personal information, or that becomes personal information if we combine it with other information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;What are cookies?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Cookies are small data files that are placed on your computer or mobile device when you visit a website. Cookies are widely used by website owners in order to make their websites work, or to work more efficiently, as well as to provide reporting information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Cookies set by the website owner (in this case, &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt;) are called &#34;first-party cookies.&#34; Cookies set by parties other than the website owner are called &#34;third-party cookies.&#34; Third-party cookies enable third-party features or functionality to be provided on or through the website (e.g., advertising, interactive content, and analytics). The parties that set these third-party cookies can recognize your computer both when it visits the website in question and also when it visits certain other websites.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;Why do we use cookies?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We use first-&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and third-&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;party cookies for several reasons. Some cookies are required for technical reasons in order for our Website to operate, and we refer to these as &#34;essential&#34; or &#34;strictly necessary&#34; cookies. Other cookies also enable us to track and target the interests of our users to enhance the experience on our Online Properties. &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;Third parties serve cookies through our Website for advertising, analytics, and other purposes. &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;This is described in more detail below.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;How can I control cookies?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;You have the right to decide whether to accept or reject cookies. You can exercise your cookie rights by setting your preferences in the Cookie Consent Manager. The Cookie Consent Manager allows you to select which categories of cookies you accept or reject. Essential cookies cannot be rejected as they are strictly necessary to provide you with services.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The Cookie Consent Manager can be found in the notification banner and on our website. If you choose to reject cookies, you may still use our website though your access to some functionality and areas of our website may be restricted. You may also set or amend your web browser controls to accept or refuse cookies.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The specific types of first- and third-party cookies served through our Website and the purposes they perform are described in the table below (please note that the specific &lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;cookies served may vary depending on the specific Online Properties you visit):&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/div&gt;
        &lt;div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;heading_2&#34; &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;&lt;u&gt;&lt;br&gt;Analytics and customization cookies:&lt;/u&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;These cookies collect information that is used either in aggregate form to help us understand how our Website is being used or how effective our marketing campaigns are, or to help us customize our Website for you.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
            &lt;div&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                    &lt;section data-custom-class=&#34;body_text&#34; style=&#34;width: 100%; border: 1px solid #e6e6e6; margin: 0 0 10px; border-radius: 3px;&#34;&gt;
                        &lt;div style=&#34;padding: 8px 13px; border-bottom: 1px solid #e6e6e6;&#34;&gt;
                            &lt;table&gt;
                                &lt;tbody&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Name:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;_gid&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Purpose:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;Keeps an entry of unique ID which is then used to come up with statistical data on website usage by visitors. It is a HTTP cookie type and expires after a browsing session.&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Provider:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;.filipporagazzo.it&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Service:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;Google Analytics &lt;a href=&#34;https://policies.google.com/privacy&#34;  target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;View Service Privacy Policy&lt;/span&gt;&lt;/a&gt; &lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Type:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;http_cookie&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Expires in:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;23 hours 59 minutes&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                &lt;/tbody&gt;
                            &lt;/table&gt;
                        &lt;/div&gt;
                    &lt;/section&gt;
                    &lt;section data-custom-class=&#34;body_text&#34; style=&#34;width: 100%; border: 1px solid #e6e6e6; margin: 0 0 10px; border-radius: 3px;&#34;&gt;
                        &lt;div style=&#34;padding: 8px 13px; border-bottom: 1px solid #e6e6e6;&#34;&gt;
                            &lt;table&gt;
                                &lt;tbody&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Name:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;_ga&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Purpose:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;Records a particular ID used to come up with data about website usage by the user&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Provider:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;.filipporagazzo.it&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Service:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;Google Analytics &lt;a href=&#34;https://policies.google.com/privacy&#34;  target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;View Service Privacy Policy&lt;/span&gt;&lt;/a&gt; &lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Type:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;http_cookie&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Expires in:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;1 year 1 month 4 days&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                &lt;/tbody&gt;
                            &lt;/table&gt;
                        &lt;/div&gt;
                    &lt;/section&gt;
                    &lt;section data-custom-class=&#34;body_text&#34; style=&#34;width: 100%; border: 1px solid #e6e6e6; margin: 0 0 10px; border-radius: 3px;&#34;&gt;
                        &lt;div style=&#34;padding: 8px 13px; border-bottom: 1px solid #e6e6e6;&#34;&gt;
                            &lt;table&gt;
                                &lt;tbody&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Name:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;_gat&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Purpose:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;Used to monitor number of Google Analytics server requests when using Google Tag Manager&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Provider:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;.filipporagazzo.it&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Service:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;Google Analytics &lt;a href=&#34;https://policies.google.com/privacy&#34;  target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;View Service Privacy Policy&lt;/span&gt;&lt;/a&gt; &lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Type:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;http_cookie&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                    &lt;tr style=&#34;font-family: Roboto, Arial; font-size: 12px; line-height: 1.67; margin: 0 0 8px; vertical-align: top;&#34;&gt;
                                        &lt;td style=&#34;text-align: right; min-width: 80px&#34;&gt;Expires in:&lt;/td&gt;
                                        &lt;td style=&#34;display: inline-block; margin-left: 5px;&#34;&gt;&lt;span style=&#34;word-break: break-all&#34;&gt;less than 1 minute&lt;/span&gt;&lt;/td&gt;
                                    &lt;/tr&gt;
                                &lt;/tbody&gt;
                            &lt;/table&gt;
                        &lt;/div&gt;
                    &lt;/section&gt;
                &lt;/span&gt;&lt;/div&gt;
        &lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;How can I control cookies on my browser?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;As the means by which you can refuse cookies through your web browser controls vary from browser to browser, you should visit your browser&#39;s help menu for more information. The following is information about how to manage cookies on the most popular browsers:&lt;/span&gt;&lt;/div&gt;
        &lt;ul&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://support.google.com/chrome/answer/95647#zippy=%2Callow-or-block-cookies&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Chrome&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://support.microsoft.com/en-us/windows/delete-and-manage-cookies-168dab11-0753-043d-7c16-ede5947fc64d&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Internet Explorer&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://support.mozilla.org/en-US/kb/enhanced-tracking-protection-firefox-desktop?redirectslug=enable-and-disable-cookies-website-preferences&amp;redirectlocale=en-US&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Firefox&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://support.apple.com/en-ie/guide/safari/sfri11471/mac&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Safari&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://support.microsoft.com/en-us/windows/microsoft-edge-browsing-data-and-privacy-bb8174ba-9d73-dcf2-9b4a-c582b4e640dd&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Edge&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://help.opera.com/en/latest/web-preferences/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Opera&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;In addition, most advertising networks offer you a way to opt out of targeted advertising. If you would like to find out more information, please visit:&lt;/span&gt;&lt;/div&gt;
        &lt;ul&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;http://www.aboutads.info/choices/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Digital Advertising Alliance&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;https://youradchoices.ca/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;Digital Advertising Alliance of Canada&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;li style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;a href=&#34;http://www.youronlinechoices.com/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span data-custom-class=&#34;link&#34;&gt;European Interactive Digital Advertising Alliance&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;What about other tracking technologies, like web beacons?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Cookies are not the only way &lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;to recognize or track visitors to a website. We may use other, similar technologies from time to time, like web beacons (sometimes called &#34;tracking pixels&#34; or &#34;clear gifs&#34;). These are tiny graphics files that contain a unique identifier that enables us to recognize when someone has visited our Website&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; or opened an email including them&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;. This allows us, for example, to monitor &lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;the traffic patterns of users from one page within a website to another, to deliver or communicate with cookies, to understand whether you have come to the website from an online advertisement displayed on a third-party website, to improve site performance, and to measure the success of email marketing campaigns. In many instances, these technologies are reliant on cookies to function properly, and so declining cookies will impair their functioning.&lt;/span&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;Do you use Flash cookies or Local Shared Objects?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Websites may also use so-called &#34;Flash Cookies&#34; (also known as Local Shared Objects or &#34;LSOs&#34;) to, among other things, collect and store information about your use of our services, fraud prevention, and for other site operations.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you do not want Flash Cookies stored on your computer, you can adjust the settings of your Flash player to block Flash Cookies storage using the tools contained in the &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html&#34; target=&#34;_BLANK&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;Website Storage Settings Panel&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;. You can also control Flash Cookies by going to the &lt;/span&gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.html&#34; target=&#34;_BLANK&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;Global Storage Settings Panel&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt; and &lt;/span&gt;&lt;span style=&#34;font-size:15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;following the instructions (which may include instructions that explain, for example, how to delete existing Flash Cookies (referred to &#34;information&#34; on the Macromedia site), how to prevent Flash LSOs from being placed on your computer without your being asked, and (for Flash Player 8 and later) how to block Flash Cookies that are not being delivered by the operator of the page you are on at the time).&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Please note that setting the Flash Player to restrict or limit acceptance of Flash Cookies may reduce or impede the functionality of some Flash applications, including, potentially, Flash applications used in connection with our services or online content.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span &gt;
                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;Do you serve targeted advertising?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Third parties may serve cookies on your computer or mobile device to serve advertising through our Website. These companies may use information about your visits to this and other websites in order to provide relevant advertisements about goods and services that you may be interested in. They may also employ technology that is used to measure the effectiveness of advertisements. They can accomplish this by using cookies or web beacons to collect information about your visits to this and other sites in order to provide relevant advertisements about goods and services of potential interest to you. The information collected through this process does not enable us or them to identify your name, contact details, or other details that directly identify you unless you choose to provide these.&lt;/span&gt;&lt;/span&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span &gt;
                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;How often will you update this Cookie Policy?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may update &lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;this Cookie Policy from time to time in order to reflect, for example, changes to the cookies we use or for other operational, legal, or regulatory reasons. Please therefore revisit this Cookie Policy regularly to stay informed about our use of cookies and related technologies.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The date at the top of this Cookie Policy indicates when it was last updated.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;Where can I get further information?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you have any questions about our use of cookies or other technologies, please&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; contact us at&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; info@filipporagazzo.it.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;style&gt;.termly-content 
.termly-content         ul {
.termly-content             list-style-type: square;
.termly-content         }
.termly-content 
.termly-content         ul&gt;li&gt;ul {
.termly-content             list-style-type: circle;
.termly-content         }
.termly-content 
.termly-content         ul&gt;li&gt;ul&gt;li&gt;ul {
.termly-content             list-style-type: square;
.termly-content         }
.termly-content 
.termly-content         ol li {
.termly-content             font-family: Arial;
.termly-content         }
.termly-content         &lt;/style&gt;
    &lt;/div&gt;
&lt;/div&gt;
</content>
    </item>
    
    <item>
      <title>Privacy Policy</title>
      <link>https://www.filipporagazzo.it/privacy/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.filipporagazzo.it/privacy/</guid>
      <description>&lt;div class=&#34;termly-content&#34;&gt;
&lt;span style=&#34;display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K) center no-repeat;&#34;&gt;&lt;/span&gt;
    &lt;div data-custom-class=&#34;body&#34;&gt;
        &lt;div&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 26px;&#34;&gt;&lt;span data-custom-class=&#34;title&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;bdt class=&#34;question&#34;&gt;PRIVACY POLICY&lt;/bdt&gt;
                        &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;span &gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;subtitle&#34;&gt;Last updated &lt;bdt class=&#34;question&#34;&gt;June 18, 2024&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;This privacy notice for &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;/bdt&gt; (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;we&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;us&lt;/strong&gt;,&#34; or &#34;&lt;strong&gt;our&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;), describes how and why we might collect, store, use, and/or share (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;process&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) your information when you use our services (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;Services&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;), such as when you:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;ul&gt;
            &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Visit our website&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; at &lt;span &gt;
                                &lt;bdt class=&#34;question&#34;&gt;&lt;a href=&#34;https://www.filipporagazzo.it&#34; target=&#34;_blank&#34; data-custom-class=&#34;link&#34;&gt;https://www.filipporagazzo.it&lt;/a&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;, or any website of ours that links to this privacy notice&lt;/bdt&gt;
                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;div&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Engage with us in other related ways, including any sales, marketing, or events&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Questions or concerns? &lt;/strong&gt;Reading this privacy notice will help you understand your privacy rights and choices. If you do not agree with our policies and practices, please do not use our Services.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; If you still have any questions or concerns, please contact us at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;SUMMARY OF KEY POINTS&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;This summary provides key points from our privacy notice, but you can find out more details about any of these topics by clicking the link following each key point or by using our &lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#toc&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;table of contents&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt; below to find the section you are looking for.&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;What personal information do we process?&lt;/strong&gt; When you visit, use, or navigate our Services, we may process personal information depending on how you interact with us and the Services, the choices you make, and the products and features you use. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#personalinfo&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;personal information you disclose to us&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Do we process any sensitive personal information?&lt;/strong&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We do not process sensitive personal information.&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Do we collect any information from third parties?&lt;/strong&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We do not collect any information from third parties.&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;How do we process your information?&lt;/strong&gt; We process your information to provide, improve, and administer our Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process your information for other purposes with your consent. We process your information only when we have a valid legal reason to do so. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infouse&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;how we process your information&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;In what situations and with which &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;types of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;parties do we share personal information?&lt;/strong&gt; We may share information in specific situations and with specific &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;categories of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;third parties. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#whoshare&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;when and with whom we share your personal information&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;What are your rights?&lt;/strong&gt; Depending on where you are located geographically, the applicable privacy law may mean you have certain rights regarding your personal information. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#privacyrights&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;your privacy rights&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;How do you exercise your rights?&lt;/strong&gt; The easiest way to exercise your rights is by &lt;bdt class=&#34;block-component&#34;&gt;submitting a &lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://app.termly.io/notify/180834d2-9b47-4289-9a82-34b66b8eefb8&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;data subject access request&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, or by contacting us. We will consider and act upon any request in accordance with applicable data protection laws.
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Want to learn more about what we do with any information we collect? &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#toc&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Review the privacy notice in full&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;toc&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;TABLE OF CONTENTS&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infocollect&#34;&gt;&lt;span &gt;1. WHAT INFORMATION DO WE COLLECT?&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infouse&#34;&gt;&lt;span &gt;2. HOW DO WE PROCESS YOUR INFORMATION?&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#legalbases&#34;&gt;&lt;span &gt;3. &lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR PERSONAL INFORMATION?&lt;/span&gt;&lt;/span&gt;
                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                        &lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#whoshare&#34;&gt;4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL INFORMATION?&lt;/a&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#cookies&#34;&gt;&lt;span &gt;5. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?&lt;/span&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span &gt;&lt;span &gt;
                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                        &lt;/span&gt;&lt;/span&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#inforetain&#34;&gt;&lt;span &gt;6. HOW LONG DO WE KEEP YOUR INFORMATION?&lt;/span&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span &gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infominors&#34;&gt;&lt;span &gt;7. DO WE COLLECT INFORMATION FROM MINORS?&lt;/span&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#privacyrights&#34;&gt;8. WHAT ARE YOUR PRIVACY RIGHTS?&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#DNT&#34;&gt;&lt;span &gt;9. CONTROLS FOR DO-NOT-TRACK FEATURES&lt;bdt class=&#34;block-component&#34;&gt;&lt;/span&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#policyupdates&#34;&gt;&lt;span &gt;10. DO WE MAKE UPDATES TO THIS NOTICE?&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;11. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#request&#34;&gt;&lt;span &gt;12. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;infocollect&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;1. WHAT INFORMATION DO WE COLLECT?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;personalinfo&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;heading_2&#34; &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Personal information you disclose to us&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div&gt;
                &lt;div&gt;&lt;br&gt;&lt;/div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt; &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;We collect personal information that you provide to us.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We collect personal information that you voluntarily provide to us when you &lt;span style=&#34;font-size: 15px;&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;express an interest in obtaining information about us or our products and Services, when you participate in activities on the Services, or otherwise when you contact us.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div id=&#34;sensitiveinfo&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Sensitive Information.&lt;/strong&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We do not process sensitive information.
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;bdt class=&#34;block-component&#34;&gt;
                &lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;All personal information that you provide to us must be true, complete, and accurate, and you must notify us of any changes to such personal information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;heading_2&#34; &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Information automatically collected&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div&gt;
                &lt;div&gt;&lt;br&gt;&lt;/div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt; &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;Some information — such as your Internet Protocol (IP) address and/or browser and device characteristics — is collected automatically when you visit our Services.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We automatically collect certain information when you visit, use, or navigate the Services. This information does not reveal your specific identity (like your name or contact information) but may include device and usage information, such as your IP address, browser and device characteristics, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Services, and other technical information. This information is primarily needed to maintain the security and operation of our Services, and for our internal analytics and reporting purposes.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                            &lt;bdt class=&#34;block-component&#34;&gt;
                        &lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The information we collect includes:&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;Log and Usage Data.&lt;/em&gt; Log and usage data is service-related, diagnostic, usage, and performance information our servers automatically collect when you access or use our Services and which we record in log files. Depending on how you interact with us, this log data may include your IP address, device information, browser type, and settings and information about your activity in the Services&lt;span style=&#34;font-size: 15px;&#34;&gt; &lt;/span&gt;(such as the date/time stamps associated with your usage, pages and files viewed, searches, and other actions you take such as which features you use), device event information (such as system activity, error reports (sometimes called &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;crash dumps&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;), and hardware settings).&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;Device Data.&lt;/em&gt; We collect device data such as information about your computer, phone, tablet, or other device you use to access the Services. Depending on the device used, this device data may include information such as your IP address (or proxy server), device and application identification numbers, location, browser type, hardware model, Internet service provider and/or mobile carrier, operating system, and system configuration information.&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;Location Data.&lt;/em&gt; We collect location data such as information about your device&#39;s location, which can be either precise or imprecise. How much information we collect depends on the type and settings of the device you use to access the Services. For example, we may use GPS and other technologies to collect geolocation data that tells us your current location (based on your IP address). You can opt out of allowing us to collect this information either by refusing access to the information or by disabling your Location setting on your device. However, if you choose to opt out, you may not be able to use certain aspects of the Services.&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                &lt;/bdt&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;infouse&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;2. HOW DO WE PROCESS YOUR INFORMATION?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short: &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;We process your information to provide, improve, and administer our Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process your information for other purposes with your consent.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;We process your personal information for a variety of reasons, depending on how you interact with our Services, including:&lt;/strong&gt;
                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                &lt;/ul&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                &lt;/ul&gt;
                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                        &lt;/ul&gt;
                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                            &lt;/ul&gt;
                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                &lt;/li&gt;
                                                &lt;/ul&gt;
                                                &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                    &lt;/ul&gt;
                                                    &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                        &lt;/ul&gt;
                                                        &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                            &lt;/ul&gt;
                                                            &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                &lt;/ul&gt;
                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/li&gt;
                                                                    &lt;/ul&gt;
                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                        &lt;/ul&gt;
                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                            &lt;/ul&gt;
                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;
                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                &lt;/ul&gt;
                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                    &lt;/ul&gt;
                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                        &lt;/li&gt;
                                                                                        &lt;/ul&gt;
                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                            &lt;/li&gt;
                                                                                            &lt;/ul&gt;
                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                &lt;/li&gt;
                                                                                                &lt;/ul&gt;
                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                    &lt;/li&gt;
                                                                                                    &lt;/ul&gt;
                                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                        &lt;/li&gt;
                                                                                                        &lt;/ul&gt;
                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                            &lt;/li&gt;
                                                                                                            &lt;/ul&gt;
                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                &lt;/ul&gt;
                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                    &lt;/ul&gt;
                                                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                        &lt;/ul&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                        &lt;/div&gt;
                                                                                                                        &lt;ul&gt;
                                                                                                                            &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;To save or protect an individual&#39;s vital interest.&lt;/strong&gt; We may process your information when necessary to save or protect an individual’s vital interest, such as to prevent harm.&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/li&gt;
                                                                                                                        &lt;/ul&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                        &lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                        &lt;div id=&#34;legalbases&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION?&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;em&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;In Short: &lt;/strong&gt;We only process your personal information when we believe it is necessary and we have a valid legal reason (i.e.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;,&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; legal basis) to do so under applicable law, like with your consent, to comply with laws, to provide you with services to enter into or &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fulfill&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; our contractual obligations, to protect your rights, or to &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fulfill&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; our legitimate business interests.&lt;/span&gt;&lt;/span&gt;&lt;/em&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The General Data Protection Regulation (GDPR) and UK GDPR require us to explain the valid legal bases we rely on in order to process your personal information. As such, we may rely on the following legal bases to process your personal information:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                        &lt;ul&gt;
                                                                                                                            &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Consent. &lt;/strong&gt;We may process your information if you have given us permission (i.e.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;,&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; consent) to use your personal information for a specific purpose. You can withdraw your consent at any time. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#withdrawconsent&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;withdrawing your consent&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/li&gt;
                                                                                                                        &lt;/ul&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Legal Obligations.&lt;/strong&gt; We may process your information where we believe it is necessary for compliance with our legal obligations, such as to cooperate with a law enforcement body or regulatory agency, exercise or defend our legal rights, or disclose your information as evidence in litigation in which we are involved.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Vital Interests.&lt;/strong&gt; We may process your information where we believe it is necessary to protect your vital interests or the vital interests of a third party, such as situations involving potential threats to the safety of any person.&lt;/span&gt;&lt;/span&gt;
                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div id=&#34;whoshare&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL INFORMATION?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; We may share information in specific situations described in this section and/or with the following &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;categories of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;third parties.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Vendors, Consultants, and Other Third-Party Service Providers.&lt;/strong&gt; We may share your data with third-party vendors, service providers, contractors, or agents (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;third parties&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) who perform services for us or on our behalf and require access to such information to do that work. &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We have contracts in place with our third parties, which are designed to help safeguard your personal information. This means that they cannot do anything with your personal information unless we have instructed them to do it. They will also not share your personal information with any &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;organization&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; apart from us. They also commit to pr&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;otect the data they hold on our behalf and to retain it for the period we instruct.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;
                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;categories of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;third parties we may share personal information with are as follows:&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                            &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                &lt;bdt class=&#34;question&#34;&gt;Data Analytics Services&lt;/bdt&gt;
                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;also &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;may need to share your personal information in the following situations:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Business Transfers.&lt;/strong&gt; We may share or transfer your information in connection with, or during negotiations of, any merger, sale of company assets, financing, or acquisition of all or a portion of our business to another company.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                                &lt;/ul&gt;
                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                    &lt;/span&gt;&lt;/li&gt;
                                                                                                                                    &lt;/ul&gt;
                                                                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/li&gt;
                                                                                                                                        &lt;/ul&gt;
                                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                                            &lt;/ul&gt;
                                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/li&gt;
                                                                                                                                                &lt;/ul&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;
                                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                            &lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;cookies&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;5. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; We may use cookies and other tracking technologies to collect and store your information.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may use cookies and similar tracking technologies (like web beacons and pixels) to gather information when you interact with our Services. Some online tracking technologies help us maintain the security of our Services&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, prevent crashes, fix bugs, save your preferences, and assist with basic site functions.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We also permit third parties and service providers to use online tracking technologies on our Services for analytics and advertising, including to help manage and display advertisements, to tailor advertisements to your interests, or to send abandoned shopping cart reminders (depending on your communication preferences). The third parties and service providers use their technology to provide advertising about products and services tailored to your interests which may appear either on our Services or on other websites.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Specific information about how we use such technologies and how you can refuse certain cookies is set out in our Cookie Notice&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;.
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_2&#34;&gt;Google Analytics&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may share your information with Google Analytics to track and &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;analyze&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; the use of the Services.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; The Google Analytics Advertising Features that we may use include: &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;question&#34;&gt;Google Display Network Impressions Reporting&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and &lt;bdt class=&#34;question&#34;&gt;Google Analytics Demographics and Interests Reporting&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; To opt out of being tracked by Google Analytics across the Services, visit &lt;span &gt;&lt;a data-fr-linked=&#34;true&#34; href=&#34;https://tools.google.com/dlpage/gaoptout&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;https://tools.google.com/dlpage/gaoptout&lt;/a&gt;.&lt;/span&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; You can opt out of Google Analytics Advertising Features through &lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://adssettings.google.com/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;Ads Settings&lt;/a&gt;&lt;/span&gt; and Ad Settings for mobile apps. Other opt out means include &lt;span &gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;http://optout.networkadvertising.org/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;http://optout.networkadvertising.org/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt; and &lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;http://www.networkadvertising.org/mobile-choice&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;http://www.networkadvertising.org/mobile-choice&lt;/a&gt;&lt;/span&gt;.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; For more information on the privacy practices of Google, please visit the &lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://policies.google.com/privacy&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;Google Privacy &amp; Terms page&lt;/a&gt;&lt;/span&gt;.
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                            &lt;/span&gt;
                                                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                                &lt;/span&gt;
                                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;inforetain&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;6. HOW LONG DO WE KEEP YOUR INFORMATION?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short: &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;We keep your information for as long as necessary to &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fulfill&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; the purposes outlined in this privacy notice unless otherwise required by law.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We will only keep your personal information for as long as it is necessary for the purposes set out in this privacy notice, unless a longer retention period is required or permitted by law (such as tax, accounting, or other legal requirements).&lt;bdt class=&#34;block-component&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;When we have no ongoing legitimate business need to process your personal information, we will either delete or &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;anonymize&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; such information, or, if this is not possible (for example, because your personal information has been stored in backup archives), then we will securely store your personal information and isolate it from any further processing until deletion is possible.&lt;span &gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                &lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;infominors&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;7. DO WE COLLECT INFORMATION FROM MINORS?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; We do not knowingly collect data from or market to &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;children under 18 years of age&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;.&lt;/em&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We do not knowingly collect, solicit data from, or market to children under 18 years of age, nor do we knowingly sell such personal information. By using the Services, you represent that you are at least 18 or that you are the parent or guardian of such a minor and consent to such minor dependent’s use of the Services. If we learn that personal information from users less than 18 years of age has been collected, we will deactivate the account and take reasonable measures to promptly delete such data from our records. If you become aware of any data we may have collected from children under age 18, please contact us at &lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                        &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;
                                                                                                                                                                        &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;.&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;else-block&#34;&gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;privacyrights&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;8. WHAT ARE YOUR PRIVACY RIGHTS?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; &lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;
                                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                &lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;In &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;some regions, such as &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;the European Economic Area (EEA), United Kingdom (UK), and Switzerland&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, you have rights that allow you greater access to and control over your personal information.&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;
                                                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                &lt;/em&gt;&lt;/span&gt;&lt;/span&gt; &lt;/span&gt;You may review, change, or terminate your account at any time, depending on your country, province, or state of residence.
                                                                                                                                                                &lt;/em&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;In some regions (like &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;the EEA, UK, and Switzerland&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; (iv) if applicable, to data portability; and (v) not to be subject to automated decision-making. In certain circumstances, you may also have the right to object to the processing of your personal information. You can make such a request by contacting us by using the contact details provided in the section &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; below.
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We will consider and act upon any request in accordance with applicable data protection laws.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt; &lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you are located in the EEA or UK and you believe we are unlawfully processing your personal information, you also have the right to complain to your &lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;Member State data protection authority&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; or &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://ico.org.uk/make-a-complaint/data-protection-complaints/data-protection-complaints/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;UK data protection authority&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you are located in Switzerland, you may contact the &lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://www.edoeb.admin.ch/edoeb/en/home.html&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;Federal Data Protection and Information Commissioner&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;withdrawconsent&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;u&gt;Withdrawing your consent:&lt;/u&gt;&lt;/strong&gt; If we are relying on your consent to process your personal information,&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt; you have the right to withdraw your consent at any time. You can withdraw your consent at any time by contacting us by using the contact details provided in the section &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; below&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;.
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;However, please note that this will not affect the lawfulness of the processing before its withdrawal nor,&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt; will it affect the processing of your personal information conducted in reliance on lawful processing grounds other than consent.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;If you have questions or comments about your privacy rights, you may email us at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;.&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;DNT&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;9. CONTROLS FOR DO-NOT-TRACK FEATURES&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Most web browsers and some mobile operating systems and mobile applications include a Do-Not-Track (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;DNT&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) feature or setting you can activate to signal your privacy preference not to have data about your online browsing activities monitored and collected. At this stage, no uniform technology standard for &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;recognizing&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; and implementing DNT signals has been &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;finalized&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;. As such, we do not currently respond to DNT browser signals or any other mechanism that automatically communicates your choice not to be tracked online. If a standard for online tracking is adopted that we must follow in the future, we will inform you about that practice in a revised version of this privacy notice.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                &lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;policyupdates&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;10. DO WE MAKE UPDATES TO THIS NOTICE?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;&lt;strong&gt;In Short: &lt;/strong&gt;Yes, we will update this notice as necessary to stay compliant with relevant laws.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may update this privacy notice from time to time. The updated version will be indicated by an updated &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Revised&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; date at the top of this privacy notice. If we make material changes to this privacy notice, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy notice frequently to be informed of how we are protecting your information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;contact&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;11. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you have questions or comments about this notice, you may &lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                        &lt;/bdt&gt;email us at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it.&lt;/bdt&gt;
                                                                                                                                                                        &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;request&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;12. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;Based on the applicable laws of your country&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, you may&lt;bdt class=&#34;else-block&#34;&gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt; have the right to request access to the personal information we collect from you, details about how we have processed it, correct inaccuracies, or delete your personal information. You may also have the right to withdraw your consent to our processing of your personal information. These rights may be limited in some circumstances by applicable law. To request to review, update, or delete your personal information, please &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fill out and submit a 
                                                                                                                                                            &lt;/span&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://app.termly.io/notify/180834d2-9b47-4289-9a82-34b66b8eefb8&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;data subject access request&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;style&gt;.termly-content 
.termly-content                                                                                                                                                 ul {
.termly-content                                                                                                                                                     list-style-type: square;
.termly-content                                                                                                                                                 }
.termly-content 
.termly-content                                                                                                                                                 ul&gt;li&gt;ul {
.termly-content                                                                                                                                                     list-style-type: circle;
.termly-content                                                                                                                                                 }
.termly-content 
.termly-content                                                                                                                                                 ul&gt;li&gt;ul&gt;li&gt;ul {
.termly-content                                                                                                                                                     list-style-type: square;
.termly-content                                                                                                                                                 }
.termly-content 
.termly-content                                                                                                                                                 ol li {
.termly-content                                                                                                                                                     font-family: Arial;
.termly-content                                                                                                                                                 }
.termly-content                                                                                                                                                 &lt;/style&gt;
                                                                                                                                            &lt;/div&gt;
&lt;/div&gt;</description>
      <content>&lt;div class=&#34;termly-content&#34;&gt;
&lt;span style=&#34;display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K) center no-repeat;&#34;&gt;&lt;/span&gt;
    &lt;div data-custom-class=&#34;body&#34;&gt;
        &lt;div&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 26px;&#34;&gt;&lt;span data-custom-class=&#34;title&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;bdt class=&#34;question&#34;&gt;PRIVACY POLICY&lt;/bdt&gt;
                        &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;span &gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;subtitle&#34;&gt;Last updated &lt;bdt class=&#34;question&#34;&gt;June 18, 2024&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div&gt;&lt;br&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;This privacy notice for &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;/bdt&gt; (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;we&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;us&lt;/strong&gt;,&#34; or &#34;&lt;strong&gt;our&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;), describes how and why we might collect, store, use, and/or share (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;process&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) your information when you use our services (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;Services&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;), such as when you:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;ul&gt;
            &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Visit our website&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; at &lt;span &gt;
                                &lt;bdt class=&#34;question&#34;&gt;&lt;a href=&#34;https://www.filipporagazzo.it&#34; target=&#34;_blank&#34; data-custom-class=&#34;link&#34;&gt;https://www.filipporagazzo.it&lt;/a&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;, or any website of ours that links to this privacy notice&lt;/bdt&gt;
                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;div&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Engage with us in other related ways, including any sales, marketing, or events&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Questions or concerns? &lt;/strong&gt;Reading this privacy notice will help you understand your privacy rights and choices. If you do not agree with our policies and practices, please do not use our Services.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; If you still have any questions or concerns, please contact us at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;SUMMARY OF KEY POINTS&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;This summary provides key points from our privacy notice, but you can find out more details about any of these topics by clicking the link following each key point or by using our &lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#toc&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;table of contents&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt; below to find the section you are looking for.&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;What personal information do we process?&lt;/strong&gt; When you visit, use, or navigate our Services, we may process personal information depending on how you interact with us and the Services, the choices you make, and the products and features you use. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#personalinfo&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;personal information you disclose to us&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Do we process any sensitive personal information?&lt;/strong&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We do not process sensitive personal information.&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Do we collect any information from third parties?&lt;/strong&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We do not collect any information from third parties.&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;How do we process your information?&lt;/strong&gt; We process your information to provide, improve, and administer our Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process your information for other purposes with your consent. We process your information only when we have a valid legal reason to do so. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infouse&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;how we process your information&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;In what situations and with which &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;types of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;parties do we share personal information?&lt;/strong&gt; We may share information in specific situations and with specific &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;categories of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;third parties. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#whoshare&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;when and with whom we share your personal information&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;What are your rights?&lt;/strong&gt; Depending on where you are located geographically, the applicable privacy law may mean you have certain rights regarding your personal information. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#privacyrights&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;your privacy rights&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;How do you exercise your rights?&lt;/strong&gt; The easiest way to exercise your rights is by &lt;bdt class=&#34;block-component&#34;&gt;submitting a &lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://app.termly.io/notify/180834d2-9b47-4289-9a82-34b66b8eefb8&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;data subject access request&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, or by contacting us. We will consider and act upon any request in accordance with applicable data protection laws.
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Want to learn more about what we do with any information we collect? &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#toc&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Review the privacy notice in full&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;toc&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;TABLE OF CONTENTS&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infocollect&#34;&gt;&lt;span &gt;1. WHAT INFORMATION DO WE COLLECT?&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infouse&#34;&gt;&lt;span &gt;2. HOW DO WE PROCESS YOUR INFORMATION?&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#legalbases&#34;&gt;&lt;span &gt;3. &lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR PERSONAL INFORMATION?&lt;/span&gt;&lt;/span&gt;
                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                        &lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#whoshare&#34;&gt;4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL INFORMATION?&lt;/a&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#cookies&#34;&gt;&lt;span &gt;5. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?&lt;/span&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span &gt;&lt;span &gt;
                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                        &lt;/span&gt;&lt;/span&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#inforetain&#34;&gt;&lt;span &gt;6. HOW LONG DO WE KEEP YOUR INFORMATION?&lt;/span&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span &gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#infominors&#34;&gt;&lt;span &gt;7. DO WE COLLECT INFORMATION FROM MINORS?&lt;/span&gt;&lt;/a&gt;&lt;span &gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#privacyrights&#34;&gt;8. WHAT ARE YOUR PRIVACY RIGHTS?&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#DNT&#34;&gt;&lt;span &gt;9. CONTROLS FOR DO-NOT-TRACK FEATURES&lt;bdt class=&#34;block-component&#34;&gt;&lt;/span&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#policyupdates&#34;&gt;&lt;span &gt;10. DO WE MAKE UPDATES TO THIS NOTICE?&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;11. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#request&#34;&gt;&lt;span &gt;12. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;infocollect&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;1. WHAT INFORMATION DO WE COLLECT?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;personalinfo&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;heading_2&#34; &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Personal information you disclose to us&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div&gt;
                &lt;div&gt;&lt;br&gt;&lt;/div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt; &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;We collect personal information that you provide to us.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We collect personal information that you voluntarily provide to us when you &lt;span style=&#34;font-size: 15px;&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;express an interest in obtaining information about us or our products and Services, when you participate in activities on the Services, or otherwise when you contact us.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div id=&#34;sensitiveinfo&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Sensitive Information.&lt;/strong&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We do not process sensitive information.
                    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                    &lt;bdt class=&#34;block-component&#34;&gt;
                &lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;All personal information that you provide to us must be true, complete, and accurate, and you must notify us of any changes to such personal information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;heading_2&#34; &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Information automatically collected&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div&gt;
                &lt;div&gt;&lt;br&gt;&lt;/div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt; &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;Some information — such as your Internet Protocol (IP) address and/or browser and device characteristics — is collected automatically when you visit our Services.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We automatically collect certain information when you visit, use, or navigate the Services. This information does not reveal your specific identity (like your name or contact information) but may include device and usage information, such as your IP address, browser and device characteristics, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Services, and other technical information. This information is primarily needed to maintain the security and operation of our Services, and for our internal analytics and reporting purposes.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                            &lt;bdt class=&#34;block-component&#34;&gt;
                        &lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The information we collect includes:&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;Log and Usage Data.&lt;/em&gt; Log and usage data is service-related, diagnostic, usage, and performance information our servers automatically collect when you access or use our Services and which we record in log files. Depending on how you interact with us, this log data may include your IP address, device information, browser type, and settings and information about your activity in the Services&lt;span style=&#34;font-size: 15px;&#34;&gt; &lt;/span&gt;(such as the date/time stamps associated with your usage, pages and files viewed, searches, and other actions you take such as which features you use), device event information (such as system activity, error reports (sometimes called &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;crash dumps&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;), and hardware settings).&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;Device Data.&lt;/em&gt; We collect device data such as information about your computer, phone, tablet, or other device you use to access the Services. Depending on the device used, this device data may include information such as your IP address (or proxy server), device and application identification numbers, location, browser type, hardware model, Internet service provider and/or mobile carrier, operating system, and system configuration information.&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;ul&gt;
                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;Location Data.&lt;/em&gt; We collect location data such as information about your device&#39;s location, which can be either precise or imprecise. How much information we collect depends on the type and settings of the device you use to access the Services. For example, we may use GPS and other technologies to collect geolocation data that tells us your current location (based on your IP address). You can opt out of allowing us to collect this information either by refusing access to the information or by disabling your Location setting on your device. However, if you choose to opt out, you may not be able to use certain aspects of the Services.&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
            &lt;/ul&gt;
            &lt;div&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                &lt;/bdt&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                    &lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div id=&#34;infouse&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;2. HOW DO WE PROCESS YOUR INFORMATION?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short: &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;We process your information to provide, improve, and administer our Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process your information for other purposes with your consent.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
            &lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;We process your personal information for a variety of reasons, depending on how you interact with our Services, including:&lt;/strong&gt;
                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                &lt;/ul&gt;
                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                &lt;/ul&gt;
                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                    &lt;/ul&gt;
                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                        &lt;/ul&gt;
                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                            &lt;/ul&gt;
                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                &lt;/li&gt;
                                                &lt;/ul&gt;
                                                &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                    &lt;/ul&gt;
                                                    &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                        &lt;/ul&gt;
                                                        &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                            &lt;/ul&gt;
                                                            &lt;p style=&#34;font-size: 15px; line-height: 1.5;&#34;&gt;
                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                &lt;/ul&gt;
                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/li&gt;
                                                                    &lt;/ul&gt;
                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                        &lt;/ul&gt;
                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                            &lt;/ul&gt;
                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;
                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                &lt;/ul&gt;
                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                    &lt;/ul&gt;
                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                        &lt;/li&gt;
                                                                                        &lt;/ul&gt;
                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                            &lt;/li&gt;
                                                                                            &lt;/ul&gt;
                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                &lt;/li&gt;
                                                                                                &lt;/ul&gt;
                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                    &lt;/li&gt;
                                                                                                    &lt;/ul&gt;
                                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                        &lt;/li&gt;
                                                                                                        &lt;/ul&gt;
                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                            &lt;/li&gt;
                                                                                                            &lt;/ul&gt;
                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                &lt;/ul&gt;
                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                    &lt;/ul&gt;
                                                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                        &lt;/ul&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                        &lt;/div&gt;
                                                                                                                        &lt;ul&gt;
                                                                                                                            &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;To save or protect an individual&#39;s vital interest.&lt;/strong&gt; We may process your information when necessary to save or protect an individual’s vital interest, such as to prevent harm.&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/li&gt;
                                                                                                                        &lt;/ul&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                        &lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                        &lt;div id=&#34;legalbases&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;strong&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION?&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;em&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;In Short: &lt;/strong&gt;We only process your personal information when we believe it is necessary and we have a valid legal reason (i.e.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;,&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; legal basis) to do so under applicable law, like with your consent, to comply with laws, to provide you with services to enter into or &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fulfill&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; our contractual obligations, to protect your rights, or to &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fulfill&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; our legitimate business interests.&lt;/span&gt;&lt;/span&gt;&lt;/em&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The General Data Protection Regulation (GDPR) and UK GDPR require us to explain the valid legal bases we rely on in order to process your personal information. As such, we may rely on the following legal bases to process your personal information:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                        &lt;ul&gt;
                                                                                                                            &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Consent. &lt;/strong&gt;We may process your information if you have given us permission (i.e.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;,&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; consent) to use your personal information for a specific purpose. You can withdraw your consent at any time. Learn more about &lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#withdrawconsent&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;withdrawing your consent&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/li&gt;
                                                                                                                        &lt;/ul&gt;
                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Legal Obligations.&lt;/strong&gt; We may process your information where we believe it is necessary for compliance with our legal obligations, such as to cooperate with a law enforcement body or regulatory agency, exercise or defend our legal rights, or disclose your information as evidence in litigation in which we are involved.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;Vital Interests.&lt;/strong&gt; We may process your information where we believe it is necessary to protect your vital interests or the vital interests of a third party, such as situations involving potential threats to the safety of any person.&lt;/span&gt;&lt;/span&gt;
                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div id=&#34;whoshare&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL INFORMATION?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; We may share information in specific situations described in this section and/or with the following &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;categories of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;third parties.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Vendors, Consultants, and Other Third-Party Service Providers.&lt;/strong&gt; We may share your data with third-party vendors, service providers, contractors, or agents (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;third parties&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) who perform services for us or on our behalf and require access to such information to do that work. &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;We have contracts in place with our third parties, which are designed to help safeguard your personal information. This means that they cannot do anything with your personal information unless we have instructed them to do it. They will also not share your personal information with any &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;organization&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; apart from us. They also commit to pr&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;otect the data they hold on our behalf and to retain it for the period we instruct.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;
                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                &lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;The &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;categories of &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;third parties we may share personal information with are as follows:&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                            &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                &lt;bdt class=&#34;question&#34;&gt;Data Analytics Services&lt;/bdt&gt;
                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;
                                                                                                                            &lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;also &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;may need to share your personal information in the following situations:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                            &lt;ul&gt;
                                                                                                                                &lt;li data-custom-class=&#34;body_text&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;Business Transfers.&lt;/strong&gt; We may share or transfer your information in connection with, or during negotiations of, any merger, sale of company assets, financing, or acquisition of all or a portion of our business to another company.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                            &lt;/ul&gt;
                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                                &lt;/ul&gt;
                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                    &lt;/span&gt;&lt;/li&gt;
                                                                                                                                    &lt;/ul&gt;
                                                                                                                                    &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                        &lt;/li&gt;
                                                                                                                                        &lt;/ul&gt;
                                                                                                                                        &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
                                                                                                                                            &lt;/ul&gt;
                                                                                                                                            &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/li&gt;
                                                                                                                                                &lt;/ul&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;
                                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                            &lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;cookies&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;5. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; We may use cookies and other tracking technologies to collect and store your information.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may use cookies and similar tracking technologies (like web beacons and pixels) to gather information when you interact with our Services. Some online tracking technologies help us maintain the security of our Services&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, prevent crashes, fix bugs, save your preferences, and assist with basic site functions.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We also permit third parties and service providers to use online tracking technologies on our Services for analytics and advertising, including to help manage and display advertisements, to tailor advertisements to your interests, or to send abandoned shopping cart reminders (depending on your communication preferences). The third parties and service providers use their technology to provide advertising about products and services tailored to your interests which may appear either on our Services or on other websites.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Specific information about how we use such technologies and how you can refuse certain cookies is set out in our Cookie Notice&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;.
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_2&#34;&gt;Google Analytics&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may share your information with Google Analytics to track and &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;analyze&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; the use of the Services.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; The Google Analytics Advertising Features that we may use include: &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;question&#34;&gt;Google Display Network Impressions Reporting&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and &lt;bdt class=&#34;question&#34;&gt;Google Analytics Demographics and Interests Reporting&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;forloop-component&#34;&gt;&lt;/bdt&gt;.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; To opt out of being tracked by Google Analytics across the Services, visit &lt;span &gt;&lt;a data-fr-linked=&#34;true&#34; href=&#34;https://tools.google.com/dlpage/gaoptout&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;https://tools.google.com/dlpage/gaoptout&lt;/a&gt;.&lt;/span&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; You can opt out of Google Analytics Advertising Features through &lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://adssettings.google.com/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;Ads Settings&lt;/a&gt;&lt;/span&gt; and Ad Settings for mobile apps. Other opt out means include &lt;span &gt;&lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;http://optout.networkadvertising.org/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;http://optout.networkadvertising.org/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt; and &lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;http://www.networkadvertising.org/mobile-choice&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;http://www.networkadvertising.org/mobile-choice&lt;/a&gt;&lt;/span&gt;.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; For more information on the privacy practices of Google, please visit the &lt;span &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://policies.google.com/privacy&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;Google Privacy &amp; Terms page&lt;/a&gt;&lt;/span&gt;.
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                            &lt;/span&gt;
                                                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                                &lt;/span&gt;
                                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;inforetain&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;6. HOW LONG DO WE KEEP YOUR INFORMATION?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short: &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;We keep your information for as long as necessary to &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fulfill&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; the purposes outlined in this privacy notice unless otherwise required by law.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We will only keep your personal information for as long as it is necessary for the purposes set out in this privacy notice, unless a longer retention period is required or permitted by law (such as tax, accounting, or other legal requirements).&lt;bdt class=&#34;block-component&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;When we have no ongoing legitimate business need to process your personal information, we will either delete or &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;anonymize&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; such information, or, if this is not possible (for example, because your personal information has been stored in backup archives), then we will securely store your personal information and isolate it from any further processing until deletion is possible.&lt;span &gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                &lt;/span&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;infominors&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;7. DO WE COLLECT INFORMATION FROM MINORS?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; We do not knowingly collect data from or market to &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;children under 18 years of age&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;.&lt;/em&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We do not knowingly collect, solicit data from, or market to children under 18 years of age, nor do we knowingly sell such personal information. By using the Services, you represent that you are at least 18 or that you are the parent or guardian of such a minor and consent to such minor dependent’s use of the Services. If we learn that personal information from users less than 18 years of age has been collected, we will deactivate the account and take reasonable measures to promptly delete such data from our records. If you become aware of any data we may have collected from children under age 18, please contact us at &lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                        &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;
                                                                                                                                                                        &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;.&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;else-block&#34;&gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;privacyrights&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;8. WHAT ARE YOUR PRIVACY RIGHTS?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;em&gt;In Short:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; &lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;
                                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                &lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;In &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;some regions, such as &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;the European Economic Area (EEA), United Kingdom (UK), and Switzerland&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, you have rights that allow you greater access to and control over your personal information.&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;
                                                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                &lt;/em&gt;&lt;/span&gt;&lt;/span&gt; &lt;/span&gt;You may review, change, or terminate your account at any time, depending on your country, province, or state of residence.
                                                                                                                                                                &lt;/em&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;In some regions (like &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;the EEA, UK, and Switzerland&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; (iv) if applicable, to data portability; and (v) not to be subject to automated decision-making. In certain circumstances, you may also have the right to object to the processing of your personal information. You can make such a request by contacting us by using the contact details provided in the section &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; below.
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We will consider and act upon any request in accordance with applicable data protection laws.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt; &lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you are located in the EEA or UK and you believe we are unlawfully processing your personal information, you also have the right to complain to your &lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;Member State data protection authority&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; or &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://ico.org.uk/make-a-complaint/data-protection-complaints/data-protection-complaints/&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;UK data protection authority&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you are located in Switzerland, you may contact the &lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://www.edoeb.admin.ch/edoeb/en/home.html&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;Federal Data Protection and Information Commissioner&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;withdrawconsent&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;strong&gt;&lt;u&gt;Withdrawing your consent:&lt;/u&gt;&lt;/strong&gt; If we are relying on your consent to process your personal information,&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt; you have the right to withdraw your consent at any time. You can withdraw your consent at any time by contacting us by using the contact details provided in the section &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; below&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;.
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;However, please note that this will not affect the lawfulness of the processing before its withdrawal nor,&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt; will it affect the processing of your personal information conducted in reliance on lawful processing grounds other than consent.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span &gt;
                                                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;If you have questions or comments about your privacy rights, you may email us at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;.&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;DNT&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;9. CONTROLS FOR DO-NOT-TRACK FEATURES&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;Most web browsers and some mobile operating systems and mobile applications include a Do-Not-Track (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;DNT&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) feature or setting you can activate to signal your privacy preference not to have data about your online browsing activities monitored and collected. At this stage, no uniform technology standard for &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;recognizing&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; and implementing DNT signals has been &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;finalized&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;. As such, we do not currently respond to DNT browser signals or any other mechanism that automatically communicates your choice not to be tracked online. If a standard for online tracking is adopted that we must follow in the future, we will inform you about that practice in a revised version of this privacy notice.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                &lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/bdt&gt;&lt;/span&gt;
                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                &lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;policyupdates&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;10. DO WE MAKE UPDATES TO THIS NOTICE?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;em&gt;&lt;strong&gt;In Short: &lt;/strong&gt;Yes, we will update this notice as necessary to stay compliant with relevant laws.&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;We may update this privacy notice from time to time. The updated version will be indicated by an updated &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Revised&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; date at the top of this privacy notice. If we make material changes to this privacy notice, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy notice frequently to be informed of how we are protecting your information.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;contact&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;11. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;If you have questions or comments about this notice, you may &lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                        &lt;/bdt&gt;email us at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it.&lt;/bdt&gt;
                                                                                                                                                                        &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/bdt&gt;
                                                                                                                                                    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                    &lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span &gt;
                                                                                                                                                                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt;
                                                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                                &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                        &lt;bdt class=&#34;block-component&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;/span&gt;&lt;/bdt&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px;&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                            &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div id=&#34;request&#34; style=&#34;line-height: 1.5;&#34;&gt;&lt;span &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span id=&#34;control&#34; &gt;&lt;strong&gt;&lt;span data-custom-class=&#34;heading_1&#34;&gt;12. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;br&gt;&lt;/div&gt;
                                                                                                                                                &lt;div style=&#34;line-height: 1.5;&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                                                                                                                                                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;Based on the applicable laws of your country&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, you may&lt;bdt class=&#34;else-block&#34;&gt;
                                                                                                                                                                    &lt;bdt class=&#34;block-component&#34;&gt; have the right to request access to the personal information we collect from you, details about how we have processed it, correct inaccuracies, or delete your personal information. You may also have the right to withdraw your consent to our processing of your personal information. These rights may be limited in some circumstances by applicable law. To request to review, update, or delete your personal information, please &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;fill out and submit a 
                                                                                                                                                            &lt;/span&gt;&lt;span &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;https://app.termly.io/notify/180834d2-9b47-4289-9a82-34b66b8eefb8&#34; rel=&#34;noopener noreferrer&#34; target=&#34;_blank&#34;&gt;data subject access request&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
                                                                                                                                                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/bdt&gt;
                                                                                                                                                        &lt;/span&gt;&lt;/span&gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
                                                                                                                                                &lt;style&gt;.termly-content 
.termly-content                                                                                                                                                 ul {
.termly-content                                                                                                                                                     list-style-type: square;
.termly-content                                                                                                                                                 }
.termly-content 
.termly-content                                                                                                                                                 ul&gt;li&gt;ul {
.termly-content                                                                                                                                                     list-style-type: circle;
.termly-content                                                                                                                                                 }
.termly-content 
.termly-content                                                                                                                                                 ul&gt;li&gt;ul&gt;li&gt;ul {
.termly-content                                                                                                                                                     list-style-type: square;
.termly-content                                                                                                                                                 }
.termly-content 
.termly-content                                                                                                                                                 ol li {
.termly-content                                                                                                                                                     font-family: Arial;
.termly-content                                                                                                                                                 }
.termly-content                                                                                                                                                 &lt;/style&gt;
                                                                                                                                            &lt;/div&gt;
&lt;/div&gt;
</content>
    </item>
    
    <item>
      <title>Tango</title>
      <link>https://www.filipporagazzo.it/tango/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.filipporagazzo.it/tango/</guid>
      <description>&lt;style&gt;
  .game-container {
    text-align: center;
    max-width: 576px;
    margin: 20px auto;
  }

  .game-container iframe {
    width: 100%;
    max-width: 576px;
    height: 768px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 600px) {
    .game-container iframe {
      width: 100vw;
      max-width: 100%;
      height: calc(100vw * 1.333); /* Maintain 576:768 aspect ratio */
    }
  }
&lt;/style&gt;
&lt;p&gt;
  Tango — also known as Binairo, Binary Puzzle, or Takuzu — is a logic puzzle
  played on a square grid. The goal is to fill the entire grid with two symbols
  (in this version, suns and moons) while following the rules you find below.
&lt;/p&gt;</description>
      <content>&lt;style&gt;
  .game-container {
    text-align: center;
    max-width: 576px;
    margin: 20px auto;
  }

  .game-container iframe {
    width: 100%;
    max-width: 576px;
    height: 768px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 600px) {
    .game-container iframe {
      width: 100vw;
      max-width: 100%;
      height: calc(100vw * 1.333); /* Maintain 576:768 aspect ratio */
    }
  }
&lt;/style&gt;
&lt;p&gt;
  Tango — also known as Binairo, Binary Puzzle, or Takuzu — is a logic puzzle
  played on a square grid. The goal is to fill the entire grid with two symbols
  (in this version, suns and moons) while following the rules you find below.
&lt;/p&gt;
&lt;div class=&#34;game-container&#34;&gt;
  &lt;iframe src=&#34;../game.html&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;p&gt;
  &lt;ul&gt;
    &lt;li&gt;Fill each cell with either a sun or a moon.&lt;/li&gt;
    &lt;li&gt;
      No more than two identical symbols can appear consecutively in any row or
      column.
    &lt;/li&gt;
    &lt;li&gt;Each row and column must contain an equal number of suns and moons.&lt;/li&gt;
    &lt;li&gt;Cells connected by = must contain the same symbol.&lt;/li&gt;
    &lt;li&gt;Cells connected by × must contain different symbols.&lt;/li&gt;
    &lt;li&gt;Each puzzle has exactly one solution.&lt;/li&gt;
  &lt;/ul&gt;
&lt;/p&gt;
</content>
    </item>
    
    <item>
      <title>Terms of Use</title>
      <link>https://www.filipporagazzo.it/terms-of-use/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.filipporagazzo.it/terms-of-use/</guid>
      <description>&lt;div class=&#34;termly-content&#34;&gt;
&lt;span
      style=&#34;
        display: block;
        margin: 0 auto 3.125rem;
        width: 11.125rem;
        height: 2.375rem;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K)
          center no-repeat;
      &#34;
    &gt;&lt;/span&gt;
    &lt;div data-custom-class=&#34;body&#34;&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;title&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;bdt class=&#34;block-component&#34;
            &gt;&lt;span style=&#34;font-size: 19px&#34;&gt;&lt;/span&gt;&lt;/bdt
          &gt;&lt;span style=&#34;font-size: 19px&#34;
            &gt;&lt;strong&gt;TERMS OF USE&lt;/strong&gt;
            &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;subtitle&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;Last updated&lt;/strong&gt;
          &lt;bdt class=&#34;question&#34;&gt;&lt;strong&gt;June 18, 2024&lt;/strong&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 115%&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 115%&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5&#34;&gt;
          &lt;strong
            &gt;&lt;span data-custom-class=&#34;heading_1&#34;
              &gt;AGREEMENT TO OUR LEGAL TERMS&lt;/span
            &gt;&lt;/strong
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div class=&#34;MsoNormal&#34; id=&#34;agreement&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a name=&#34;_6aa3gkhykvst&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We are
            &lt;bdt
              class=&#34;block-container question question-in-editor&#34;
              data-id=&#34;9d459c4e-c548-e5cb-7729-a118548965d2&#34;
              data-type=&#34;question&#34;
              &gt;Filippo Ragazzo&lt;/bdt
            &gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; (&lt;bdt
              class=&#34;block-component&#34;
            &gt;&lt;/bdt
            &gt;&#34;&lt;strong&gt;Company&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;we&lt;/strong&gt;,&#34;
            &#34;&lt;strong&gt;us&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;our&lt;/strong&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;)&lt;span
              style=&#34;font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;mso-thememso-themetint:166&#34;
              &gt;&lt;span
                style=&#34;font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;mso-thememso-themetint:166&#34;
                &gt;&lt;span
                  style=&#34;font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;mso-thememso-themetint:166&#34;
                &gt;
                  &lt;bdt class=&#34;question&#34;&gt;
                    &lt;bdt class=&#34;block-component&#34;&gt;.&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/span&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
            &gt;&lt;/span&gt;
          &lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We operate &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, as well as any other related
            products and services that refer or link to these legal terms (the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;Legal Terms&lt;/strong
            &gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) (collectively, the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;Services&lt;/strong&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;).&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;You can contact us by
            &lt;bdt class=&#34;block-component&#34;
              &gt;email at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;.
            &lt;/bdt&gt;&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;These Legal Terms constitute a legally binding agreement made
            between you, whether personally or on behalf of an entity (&lt;bdt
              class=&#34;block-component&#34;
            &gt;&lt;/bdt
            &gt;&#34;&lt;strong&gt;you&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt
            &gt;), and &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt;, concerning your
            access to and use of the Services. You agree that by accessing the
            Services, you have read, understood, and agreed to be bound by all
            of these Legal Terms. IF YOU DO NOT AGREE WITH ALL OF THESE LEGAL
            TERMS, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SERVICES AND
            YOU MUST DISCONTINUE USE IMMEDIATELY.&lt;bdt
              class=&#34;block-component&#34;
            &gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Supplemental terms and conditions or documents that may be posted
            on the Services from time to time are hereby expressly incorporated
            herein by reference. We reserve the right, in our sole discretion,
            to make changes or modifications to these Legal Terms
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;at any time and for any
            reason&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;. We will alert
            you about any changes by updating the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Last updated&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            date of these Legal Terms, and you waive any right to receive
            specific notice of each such change. It is your responsibility to
            periodically review these Legal Terms to stay informed of updates.
            You will be subject to, and will be deemed to have been made aware
            of and to have accepted, the changes in any revised Legal Terms by
            your continued use of the Services after the date such revised Legal
            Terms are posted.&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;bdt
            class=&#34;block-container if&#34;
            data-type=&#34;if&#34;
            id=&#34;a2595956-7028-dbe5-123e-d3d3a93ed076&#34;
          &gt;
            &lt;bdt data-type=&#34;conditional-block&#34;&gt;
              &lt;bdt data-type=&#34;body&#34;
                &gt;&lt;span
                  style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;
                  &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
              &gt;&lt;/bdt&gt;
            &lt;/bdt&gt;
          &lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          We recommend that you print a copy of these Legal Terms for your
          records.
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;TABLE OF CONTENTS&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a href=&#34;#services&#34;
            &gt;&lt;span data-custom-class=&#34;link&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;
                &gt;&lt;span data-custom-class=&#34;body_text&#34;
                  &gt;1. OUR SERVICES&lt;/span
                &gt;&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ip&#34;
            &gt;&lt;span 
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;2. INTELLECTUAL PROPERTY RIGHTS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#userreps&#34;&gt;&lt;/a
          &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#userreps&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;3. USER REPRESENTATIONS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
          &gt;&lt;/span&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#products&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#products&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#purchases&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#purchases&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
          &gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
          &gt;&lt;/span&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#software&#34;&gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#software&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#software&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;4. PROHIBITED ACTIVITIES&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ugc&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ugc&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;5. USER GENERATED CONTRIBUTIONS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#license&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#license&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;6. CONTRIBUTION &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;LICENSE&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#reviews&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#reviews&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#mobile&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#mobile&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#socialmedia&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#socialmedia&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#thirdparty&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#thirdparty&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#advertisers&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#advertisers&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#sitemanage&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#sitemanage&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;7. SERVICES MANAGEMENT&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppyes&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppyes&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppno&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppno&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#dmca&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#dmca&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
          &gt;&lt;/span&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#terms&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#terms&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;8. TERM AND TERMINATION&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#modifications&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#modifications&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;9. MODIFICATIONS AND INTERRUPTIONS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#law&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#law&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;10. GOVERNING LAW&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disputes&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disputes&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;11. DISPUTE RESOLUTION&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#corrections&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#corrections&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;12. CORRECTIONS&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disclaimer&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disclaimer&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;13. DISCLAIMER&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#liability&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#liability&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;14. LIMITATIONS OF LIABILITY&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#indemnification&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#indemnification&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;15. INDEMNIFICATION&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#userdata&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#userdata&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;16. USER DATA&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#electronic&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#electronic&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;17. ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND
                SIGNATURES&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#california&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
          &gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#california&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#misc&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#misc&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;18. MISCELLANEOUS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;19. CONTACT US&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;a name=&#34;_b6y29mp52qvx&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          id=&#34;services&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;&lt;span style=&#34;font-size: 19px&#34;&gt;1. OUR SERVICES&lt;/span&gt;&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;The information provided when using the Services is not intended
            for distribution to or use by any person or entity in any
            jurisdiction or country where such distribution or use would be
            contrary to law or regulation or which would subject us to any
            registration requirement within such jurisdiction or country.
            Accordingly, those persons who choose to access the Services from
            other locations do so on their own initiative and are solely
            responsible for compliance with local laws, if and to the extent
            local laws are applicable.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;/div&gt;
      &lt;div
        align=&#34;center&#34;
        data-custom-class=&#34;heading_1&#34;
        style=&#34;text-align: left; line-height: 1.5&#34;
      &gt;
        &lt;strong
          &gt;&lt;span id=&#34;ip&#34; style=&#34;font-size: 19px&#34;
            &gt;2. INTELLECTUAL PROPERTY RIGHTS&lt;/span
          &gt;&lt;/strong
        &gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_2&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;Our intellectual property&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We are the owner or the licensee of all intellectual property
            rights in our Services, including all source code, databases,
            functionality, software, website designs, audio, video, text,
            photographs, and graphics in the Services (collectively, the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Content&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;), as well as the trademarks, service marks, and logos contained
            therein (the &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Marks&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;).&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Our Content and Marks are protected by copyright and trademark laws
            (and various other intellectual property rights and unfair
            competition laws) and treaties in the United States and around the
            world.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;The Content and Marks are provided in or through the Services
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;AS IS&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            for your &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;personal, non-commercial
            use or internal business purpose&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            only.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_2&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;Your use of our Services&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;Subject to your compliance with these Legal Terms, including the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;&lt;/span
          &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;PROHIBITED ACTIVITIES&lt;/span
            &gt;&lt;/a
          &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            section below, we grant you a non-exclusive, non-transferable,
            revocable &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;license&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            to:
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;ul&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;&gt;access the Services; and&lt;/span&gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;download or print a copy of any portion of the Content to which
              you have properly gained access.&lt;/span
            &gt;
          &lt;/li&gt;
        &lt;/ul&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;solely for your &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;personal,
            non-commercial use or internal business purpose&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Except as set out in this section or elsewhere in our Legal Terms,
            no part of the Services and no Content or Marks may be copied,
            reproduced, aggregated, republished, uploaded, posted, publicly
            displayed, encoded, translated, transmitted, distributed, sold,
            licensed, or otherwise exploited for any commercial purpose
            whatsoever, without our express prior written permission.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;If you wish to make any use of the Services, Content, or Marks
            other than as set out in this section or elsewhere in our Legal
            Terms, please address your request to:
            &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt;. If we ever grant you
            the permission to post, reproduce, or publicly display any part of
            our Services or Content, you must identify us as the owners or
            licensors of the Services, Content, or Marks and ensure that any
            copyright or proprietary notice appears or is visible on posting,
            reproducing, or displaying our Content.&lt;/span
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We reserve all rights not expressly granted to you in and to the
            Services, Content, and Marks.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Any breach of these Intellectual Property Rights will constitute a
            material breach of our Legal Terms and your right to use our
            Services will terminate immediately.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_2&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;&lt;strong&gt;Your submissions&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/strong
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;Please review this section and the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
              &gt;&lt;span 
                &gt;PROHIBITED ACTIVITIES&lt;/span
              &gt;&lt;/a
            &gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            section carefully prior to using our Services to understand the (a)
            rights you give us and (b) obligations you have when you post or
            upload any content through the Services.
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;strong&gt;Submissions:&lt;/strong&gt; By directly sending us any question,
            comment, suggestion, idea, feedback, or other information about the
            Services (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Submissions&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;), you agree to assign to us all intellectual property rights in
            such Submission. You agree that we shall own this Submission and be
            entitled to its unrestricted use and dissemination for any lawful
            purpose, commercial or otherwise, without acknowledgment or
            compensation to you.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;strong&gt;You are responsible for what you post or upload:&lt;/strong&gt;
            By sending us Submissions&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; through
            any part of the Services&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            you:&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;ul&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;confirm that you have read and agree with our
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;&lt;/span
            &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;
                &gt;PROHIBITED ACTIVITIES&lt;/span
              &gt;&lt;/a
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              and will not post, send, publish, upload, or transmit through the
              Services any Submission&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; that is
              illegal, harassing, hateful, harmful, defamatory, obscene,
              bullying, abusive, discriminatory, threatening to any person or
              group, sexually explicit, false, inaccurate, deceitful, or
              misleading;
            &lt;/span&gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;to the extent permissible by applicable law, waive any and all
              moral rights to any such Submission&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt
              &gt;;&lt;/span
            &gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;warrant that any such Submission&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt&gt;
              are original to you or that you have the necessary rights and
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;licenses&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              to submit such Submissions&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and
              that you have full authority to grant us the above-mentioned
              rights in relation to your Submissions&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt
              &gt;; and&lt;/span
            &gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;warrant and represent that your Submissions&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt&gt;
              do not constitute confidential information.&lt;/span
            &gt;
          &lt;/li&gt;
        &lt;/ul&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          You are solely responsible for your Submissions&lt;bdt
            class=&#34;block-component&#34;
          &gt;&lt;/bdt&gt;
          and you expressly agree to reimburse us for any and all losses that we
          may suffer because of your breach of (a) this section, (b) any third
          party’s intellectual property rights, or (c) applicable law.&lt;bdt
            class=&#34;block-component&#34;
          &gt;&lt;/bdt&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          id=&#34;userreps&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;a name=&#34;_5hg7kgyv9l8z&#34;&gt;&lt;/a
          &gt;&lt;strong
            &gt;&lt;span
              style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
              &gt;&lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span
                      style=&#34;
                        line-height: 115%;
                        font-family: Arial;
                        font-size: 19px;
                      &#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;3.&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;&lt;/span
                &gt;&lt;/strong
              &gt;USER REPRESENTATIONS&lt;/span
            &gt;&lt;/strong
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;By using the Services, you represent and warrant that:&lt;/span
          &gt;
          &lt;bdt
            class=&#34;block-container if&#34;
            data-type=&#34;if&#34;
            id=&#34;d2d82ca8-275f-3f86-8149-8a5ef8054af6&#34;
          &gt;
            &lt;bdt data-type=&#34;conditional-block&#34;&gt;
              &lt;bdt
                class=&#34;block-component&#34;
                data-record-question-key=&#34;user_account_option&#34;
                data-type=&#34;statement&#34;
              &gt;&lt;/bdt
              &gt;&amp;nbsp; &lt;/bdt
            &gt;&lt;span style=&#34;font-size: 11pt&#34;&gt;(&lt;/span
            &gt;&lt;span style=&#34;font-size: 14.6667px&#34;&gt;1&lt;/span
            &gt;&lt;span style=&#34;font-size: 11pt&#34;
              &gt;) you have the legal capacity and you agree to comply with these
              Legal Terms;&lt;/span
            &gt;
            &lt;bdt
              class=&#34;block-container if&#34;
              data-type=&#34;if&#34;
              id=&#34;8d4c883b-bc2c-f0b4-da3e-6d0ee51aca13&#34;
            &gt;
              &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                &lt;bdt
                  class=&#34;block-component&#34;
                  data-record-question-key=&#34;user_u13_option&#34;
                  data-type=&#34;statement&#34;
                &gt;&lt;/bdt
                &gt;&amp;nbsp; &lt;/bdt
              &gt;&lt;span style=&#34;font-size: 11pt&#34;&gt;(&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;2&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) you are not a minor in the jurisdiction in which you
                reside&lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;76948fab-ec9e-266a-bb91-948929c050c9&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_o18_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt; &lt;/bdt
                  &gt;; (
                &lt;/bdt&gt;&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;3&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) you will not access the Services through automated or
                non-human means, whether through a bot, script or otherwise;
                (&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;4&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) you will not use the Services for any illegal or
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;unauthorized&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                purpose; and (&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;5&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) your use of the Services will not violate any applicable law
                or regulation.&lt;/span
              &gt;&lt;span
                style=&#34;font-size: 14.6667px&#34;
              &gt;&lt;/span&gt;
            &lt;/bdt&gt;
          &lt;/bdt&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 115%&#34;&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;If you provide any information that is untrue, inaccurate, not
                current, or incomplete, we have the right to suspend or
                terminate your account and refuse any and all current or future
                use of the Services (or any portion thereof).&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.1; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span&gt;&lt;/bdt
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
            &lt;/span&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
            &gt;&lt;/bdt&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
            &gt;&lt;/bdt&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
            &gt;&lt;/bdt&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 1.5&#34;&gt;
            &lt;span
              style=&#34;line-height: 115%;
                font-family: Arial&#34;
            &gt;
              &lt;bdt
                data-type=&#34;conditional-block&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;body&#34;&gt;
                  &lt;div
                    class=&#34;MsoNormal&#34;
                    style=&#34;font-size: 15px; line-height: 1.5&#34;
                  &gt;
                    &lt;br /&gt;
                  &lt;/div&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/span&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;prohibited&#34;
              style=&#34;text-align: left; line-height: 1.5&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span
                      style=&#34;
                        line-height: 115%;
                        font-family: Arial;
                        font-size: 19px;
                      &#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;4.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;PROHIBITED ACTIVITIES&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 1&#34;&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;You may not access or use the Services for any purpose other
                than that for which we make the Services available. The Services
                may not be used in connection with any commercial
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;endeavors&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                except those that are specifically endorsed or approved by
                us.&lt;/span
              &gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 1&#34;&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.1&#34;&gt;
                &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
                  &lt;div
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span
                      style=&#34;font-size: 11pt;
                        line-height: 16.8667px&#34;
                      &gt;As a user of the Services, you agree not to:&lt;/span
                    &gt;
                  &lt;/div&gt;
                &lt;/div&gt;
                &lt;ul&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span
                      style=&#34;font-size: 11pt;
                        line-height: 16.8667px&#34;
                      &gt;&lt;span
                        style=&#34;font-family: sans-serif;
                          font-size: 15px;
                          font-style: normal;
                          font-variant-ligatures: normal;
                          font-variant-caps: normal;
                          font-weight: 400;
                          letter-spacing: normal;
                          orphans: 2;
                          text-align: justify;
                          text-indent: -29.4px;
                          text-transform: none;
                          white-space: normal;
                          widows: 2;
                          word-spacing: 0px;
                          -webkit-text-stroke-width: 0px;
                          background-text-decoration-style: initial;
                          text-decoration-&#34;
                        &gt;Systematically retrieve data or other content from the
                        Services to create or compile, directly or indirectly, a
                        collection, compilation, database, or directory without
                        written permission from us.&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Trick, defraud, or mislead us and other users,
                              especially in any attempt to learn sensitive
                              account information such as user passwords.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Circumvent, disable, or otherwise interfere with
                              security-related features of the Services,
                              including features that prevent or restrict the
                              use or copying of any Content or enforce
                              limitations on the use of the Services and/or the
                              Content contained therein.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Disparage, tarnish, or otherwise harm, in our
                              opinion, us and/or the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use any information obtained from the Services in
                              order to harass, abuse, or harm another
                              person.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Make improper use of our support services or
                              submit false reports of abuse or misconduct.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use the Services in a manner inconsistent with
                              any applicable laws or regulations.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Engage in
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                              &gt;unauthorized&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              framing of or linking to the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Upload or transmit (or attempt to upload or to
                              transmit) viruses, Trojan horses, or other
                              material, including excessive use of capital
                              letters and spamming (continuous posting of
                              repetitive text), that interferes with any party’s
                              uninterrupted use and enjoyment of the Services or
                              modifies, impairs, disrupts, alters, or interferes
                              with the use, features, functions, operation, or
                              maintenance of the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Engage in any automated use of the system, such
                              as using scripts to send comments or messages, or
                              using any data mining, robots, or similar data
                              gathering and extraction tools.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Delete the copyright or other proprietary rights
                              notice from any Content.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Attempt to impersonate another user or person or
                              use the username of another user.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Upload or transmit (or attempt to upload or to
                              transmit) any material that acts as a passive or
                              active information collection or transmission
                              mechanism, including without limitation, clear
                              graphics interchange formats (&lt;bdt
                                class=&#34;block-component&#34;
                              &gt;&lt;/bdt
                              &gt;&#34;gifs&#34;&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt
                              &gt;), 1×1 pixels, web bugs, cookies, or other
                              similar devices (sometimes referred to as
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;spyware&#34; or
                              &#34;passive collection mechanisms&#34; or &#34;pcms&#34;&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt
                              &gt;).&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Interfere with, disrupt, or create an undue
                              burden on the Services or the networks or services
                              connected to the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Harass, annoy, intimidate, or threaten any of our
                              employees or agents engaged in providing any
                              portion of the Services to you.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Attempt to bypass any measures of the Services
                              designed to prevent or restrict access to the
                              Services, or any portion of the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Copy or adapt the Services&#39; software, including
                              but not limited to Flash, PHP, HTML, JavaScript,
                              or other code.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Except as permitted by applicable law, decipher,
                              decompile, disassemble, or reverse engineer any of
                              the software comprising or in any way making up a
                              part of the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Except as may be the result of standard search
                              engine or Internet browser usage, use, launch,
                              develop, or distribute any automated system,
                              including without limitation, any spider, robot,
                              cheat utility, scraper, or offline reader that
                              accesses the Services, or use or launch any
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                              &gt;unauthorized&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              script or other software.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use a buying agent or purchasing agent to make
                              purchases on the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Make any
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                              &gt;unauthorized&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              use of the Services, including collecting
                              usernames and/or email addresses of users by
                              electronic or other means for the purpose of
                              sending unsolicited email, or creating user
                              accounts by automated means or under false
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;pretenses&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt
                              &gt;.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use the Services as part of any effort to compete
                              with us or otherwise use the Services and/or the
                              Content for any revenue-generating
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;endeavor&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              or commercial enterprise.&lt;/span
                            &gt;&lt;span
                              style=&#34;font-size: 11pt;
                                line-height: 16.8667px;
                                font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                            &gt;
                              &lt;bdt
                                class=&#34;forloop-component&#34;
                              &gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span
                    &gt;&lt;/span&gt;
                  &lt;/li&gt;
                &lt;/ul&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
                &lt;br /&gt;
              &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt data-type=&#34;body&#34;&gt;
                      &lt;div
                        class=&#34;MsoNormal&#34;
                        data-custom-class=&#34;heading_1&#34;
                        id=&#34;ugc&#34;
                        style=&#34;line-height: 1.5&#34;
                      &gt;
                        &lt;strong
                          &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                            &gt;&lt;strong
                              &gt;&lt;span
                                style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                                &gt;&lt;strong
                                  &gt;&lt;span
                                    style=&#34;
                                      line-height: 115%;
                                      font-family: Arial;
                                      font-size: 19px;
                                    &#34;
                                    &gt;&lt;strong
                                      &gt;&lt;span
                                        style=&#34;
                                          line-height: 115%;
                                          font-family: Arial;
                                          font-size: 19px;
                                        &#34;
                                        &gt;5.&lt;/span
                                      &gt;&lt;/strong
                                    &gt;&lt;/span
                                  &gt;&lt;/strong
                                &gt;&lt;/span
                              &gt;&amp;nbsp;&lt;/strong
                            &gt;USER GENERATED CONTRIBUTIONS&lt;/span
                          &gt;&lt;/strong
                        &gt;
                      &lt;/div&gt;
                    &lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
                &lt;br /&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt data-type=&#34;body&#34;&gt;
                      &lt;div
                        class=&#34;MsoNormal&#34;
                        data-custom-class=&#34;body_text&#34;
                        style=&#34;line-height: 1.5&#34;
                      &gt;
                        &lt;span
                          style=&#34;font-size: 11pt;
                            line-height: 16.8667px&#34;
                        &gt;
                          &lt;bdt
                            class=&#34;block-container if&#34;
                            data-type=&#34;if&#34;
                            id=&#34;24327c5d-a34f-f7e7-88f1-65a2f788484f&#34;
                            style=&#34;text-align: left&#34;
                          &gt;
                            &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                              &lt;bdt
                                class=&#34;block-component&#34;
                                data-record-question-key=&#34;user_post_content_option&#34;
                                data-type=&#34;statement&#34;
                              &gt;&lt;/bdt
                              &gt;&lt;span
                                style=&#34;font-size: 11pt;
                                  line-height: 16.8667px&#34;
                                &gt;The Services does not offer users to submit or
                                post content.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                We may provide you with the opportunity to
                                create, submit, post, display, transmit,
                                perform, publish, distribute, or broadcast
                                content and materials to us or on the Services,
                                including but not limited to text, writings,
                                video, audio, photographs, graphics, comments,
                                suggestions, or personal information or other
                                material (collectively,
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                                &gt;&#34;Contributions&#34;&lt;bdt
                                  class=&#34;statement-end-if-in-editor&#34;
                                &gt;&lt;/bdt
                                &gt;). Contributions may be viewable by other users
                                of the Services and through third-party
                                websites.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                When you create or make available any
                                Contributions, you thereby represent and warrant
                                that:&lt;span
                                  style=&#34;font-size: 11pt;
                                    line-height: 16.8667px&#34;
                                &gt;
                                  &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                  &lt;/bdt&gt; &lt;/span
                              &gt;&lt;/span&gt;
                            &lt;/bdt&gt;
                          &lt;/bdt&gt;
                        &lt;/span&gt;
                      &lt;/div&gt;
                    &lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                style=&#34;text-align: justify; line-height: 1&#34;
              &gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt data-type=&#34;body&#34;&gt;
                      &lt;div
                        class=&#34;MsoNormal&#34;
                        data-custom-class=&#34;heading_1&#34;
                        id=&#34;license&#34;
                        style=&#34;line-height: 1.5&#34;
                      &gt;
                        &lt;strong
                          &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                            &gt;&lt;strong
                              &gt;&lt;span
                                style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                                &gt;&lt;strong
                                  &gt;&lt;span
                                    style=&#34;
                                      line-height: 115%;
                                      font-family: Arial;
                                      font-size: 19px;
                                    &#34;
                                    &gt;&lt;strong
                                      &gt;&lt;span
                                        style=&#34;
                                          line-height: 115%;
                                          font-family: Arial;
                                          font-size: 19px;
                                        &#34;
                                        &gt;6.&lt;/span
                                      &gt;&lt;/strong
                                    &gt;&lt;/span
                                  &gt;&lt;/strong
                                &gt;&lt;/span
                              &gt;&amp;nbsp;&lt;/strong
                            &gt;CONTRIBUTION
                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;LICENSE&lt;bdt
                              class=&#34;statement-end-if-in-editor&#34;
                            &gt;&lt;/bdt&gt;&lt;/span
                        &gt;&lt;/strong&gt;
                      &lt;/div&gt;
                    &lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;a088ddfb-d8c1-9e58-6f21-958c3f4f0709&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_post_content_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;&lt;span
                    style=&#34;font-size: 11pt;
                      line-height: 16.8667px&#34;
                    &gt;You and Services agree that we may access, store, process,
                    and use any information and personal data that you
                    provide&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and your choices
                    (including settings).&lt;/span
                  &gt;&lt;/span
                &gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;By submitting suggestions or other feedback regarding the
                  Services, you agree that we can use and share such feedback
                  for any purpose without compensation to you.&lt;bdt
                    class=&#34;block-component&#34;
                  &gt;&lt;/bdt
                &gt;&lt;/span&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;We do not assert any ownership over your Contributions. You
                  retain full ownership of all of your Contributions and any
                  intellectual property rights or other proprietary rights
                  associated with your Contributions. We are not liable for any
                  statements or representations in your Contributions provided
                  by you in any area on the Services. You are solely responsible
                  for your Contributions to the Services and you expressly agree
                  to exonerate us from any and all responsibility and to refrain
                  from any legal action against us regarding your
                  Contributions.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt
                &gt;&lt;/span&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;br /&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;&lt;span
                    style=&#34;font-size: 11pt;
                      line-height: 16.8667px&#34;
                    &gt;&lt;span
                      style=&#34;font-size: 11pt;
                        line-height: 16.8667px&#34;
                    &gt;
                      &lt;bdt
                        class=&#34;block-container if&#34;
                        data-type=&#34;if&#34;
                        style=&#34;text-align: left&#34;
                      &gt;
                        &lt;bdt
                          class=&#34;statement-end-if-in-editor&#34;
                          data-type=&#34;close&#34;
                        &gt;&lt;/bdt&gt;
                      &lt;/bdt&gt; &lt;/span&gt;&lt;/span
                &gt;&lt;/span&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;review_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;mobile_app_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;socialnetwork_link_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;3rd_party_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;advertiser_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;sitemanage&#34;
              style=&#34;line-height: 1.5&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;7.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;SERVICES MANAGEMENT&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5&#34;
            &gt;
              We reserve the right, but not the obligation, to: (1) monitor the
              Services for violations of these Legal Terms; (2) take appropriate
              legal action against anyone who, in our sole discretion, violates
              the law or these Legal Terms, including without limitation,
              reporting such user to law enforcement authorities; (3) in our
              sole discretion and without limitation, refuse, restrict access
              to, limit the availability of, or disable (to the extent
              technologically feasible) any of your Contributions or any portion
              thereof; (4) in our sole discretion and without limitation,
              notice, or liability, to remove from the Services or otherwise
              disable all files and content that are excessive in size or are in
              any way burdensome to our systems; and (5) otherwise manage the
              Services in a manner designed to protect our rights and property
              and to facilitate the proper functioning of the Services.
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;privacy_policy_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
                &lt;bdt class=&#34;block-container if&#34; data-type=&#34;if&#34;&gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;privacy_policy_followup&#34;
                      data-type=&#34;statement&#34;
                      style=&#34;font-size: 14.6667px&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;copyright_agent_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;
                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;terms&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;8.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;TERM AND TERMINATION&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;These Legal Terms shall remain in full force and effect while
                you use the Services. WITHOUT LIMITING ANY OTHER PROVISION OF
                THESE LEGAL TERMS, WE RESERVE THE RIGHT TO, IN OUR SOLE
                DISCRETION AND WITHOUT NOTICE OR LIABILITY, DENY ACCESS TO AND
                USE OF THE SERVICES (INCLUDING BLOCKING CERTAIN IP ADDRESSES),
                TO ANY PERSON FOR ANY REASON OR FOR NO REASON, INCLUDING WITHOUT
                LIMITATION FOR BREACH OF ANY REPRESENTATION, WARRANTY, OR
                COVENANT CONTAINED IN THESE LEGAL TERMS OR OF ANY APPLICABLE LAW
                OR REGULATION. WE MAY TERMINATE YOUR USE OR PARTICIPATION IN THE
                SERVICES OR DELETE
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;a6e121c2-36b4-5066-bf9f-a0a33512e768&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_account_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt; &lt;/bdt
                  &gt;ANY CONTENT OR INFORMATION THAT YOU POSTED AT ANY TIME,
                  WITHOUT WARNING, IN OUR SOLE DISCRETION.
                &lt;/bdt&gt;&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;If we terminate or suspend your account for any reason, you are
                prohibited from registering and creating a new account under
                your name, a fake or borrowed name, or the name of any third
                party, even if you may be acting on behalf of the third party.
                In addition to terminating or suspending your account, we
                reserve the right to take appropriate legal action, including
                without limitation pursuing civil, criminal, and injunctive
                redress.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;modifications&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;9.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;MODIFICATIONS AND INTERRUPTIONS&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;We reserve the right to change, modify, or remove the contents
                of the Services at any time or for any reason at our sole
                discretion without notice. However, we have no obligation to
                update any information on our Services.&lt;bdt
                  class=&#34;block-component&#34;
                &gt;&lt;/bdt&gt;
                We will not be liable to you or any third party for any
                modification, price change, suspension, or discontinuance of the
                Services.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;We cannot guarantee the Services will be available at all
                times. We may experience hardware, software, or other problems
                or need to perform maintenance related to the Services,
                resulting in interruptions, delays, or errors. We reserve the
                right to change, revise, update, suspend, discontinue, or
                otherwise modify the Services at any time or for any reason
                without notice to you. You agree that we have no liability
                whatsoever for any loss, damage, or inconvenience caused by your
                inability to access or use the Services during any downtime or
                discontinuance of the Services. Nothing in these Legal Terms
                will be construed to obligate us to maintain and support the
                Services or to supply any corrections, updates, or releases in
                connection therewith.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;law&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;10.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;GOVERNING LAW&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
              &gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;These Legal Terms shall be governed by and defined following
                the laws of &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;question&#34;&gt;the Netherlands&lt;/bdt&gt; and yourself
                irrevocably consent that the courts of
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                &gt;
                  &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                  &lt;bdt class=&#34;question&#34;&gt;the Netherlands&lt;/bdt
                  &gt;&lt;span
                    style=&#34;font-size: 11pt;
                      line-height: 16.8667px&#34;
                  &gt;
                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                  &lt;/span&gt;
                &lt;/span&gt;
                shall have exclusive jurisdiction to resolve any dispute which
                may arise in connection with these Legal Terms.&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;disputes&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;11.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;DISPUTE RESOLUTION&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong&gt;Informal Negotiations&lt;/strong&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span style=&#34;font-size: 15px&#34;
                &gt;To expedite resolution and control the cost of any dispute,
                controversy, or claim related to these Legal Terms (each a
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Dispute&#34; and collectively,
                the &#34;Disputes&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;)
                brought by either you or us (individually, a
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Party&#34; and collectively, the
                &#34;Parties&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;), the
                Parties agree to first attempt to negotiate any Dispute (except
                those Disputes expressly provided below) informally for at least
                &lt;bdt class=&#34;question&#34;&gt;30&lt;/bdt&gt; days before initiating
                arbitration. Such informal negotiations commence upon written
                notice from one Party to the other Party.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong&gt;Binding Arbitration&lt;/strong&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;bdt class=&#34;block-component&#34;
                &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
              &gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              Any dispute arising out of or in connection with these Legal
              Terms, including any question regarding its existence, validity,
              or termination, shall be referred to and finally resolved by the
              International Commercial Arbitration Court under the European
              Arbitration Chamber (Belgium, Brussels, Avenue Louise, 146)
              according to the Rules of this ICAC, which, as a result of
              referring to it, is considered as the part of this clause. The
              language of the proceedings shall be
              &lt;bdt class=&#34;question&#34;&gt;English&lt;/bdt&gt;. The governing law of these
              Legal Terms shall be substantive law of
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;question&#34;&gt;the Netherlands&lt;/bdt&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; &lt;/bdt
              &gt;.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong&gt;Restrictions&lt;/strong&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              The Parties agree that any arbitration shall be limited to the
              Dispute between the Parties individually. To the full extent
              permitted by law, (a) no arbitration shall be joined with any
              other proceeding; (b) there is no right or authority for any
              Dispute to be arbitrated on a class-action basis or to
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;utilize&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              class action procedures; and (c) there is no right or authority
              for any Dispute to be brought in a purported representative
              capacity on behalf of the general public or any other persons.
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
              &gt;&lt;strong
                &gt;Exceptions to Informal Negotiations and Arbitration&lt;/strong
              &gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;The Parties agree that the
              following Disputes are not subject to the above provisions
              concerning informal negotiations binding arbitration: (a) any
              Disputes seeking to enforce or protect, or concerning the validity
              of, any of the intellectual property rights of a Party; (b) any
              Dispute related to, or arising from, allegations of theft, piracy,
              invasion of privacy, or
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;unauthorized&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              use; and (c) any claim for injunctive relief. If this provision is
              found to be illegal or unenforceable, then neither Party will
              elect to arbitrate any Dispute falling within that portion of this
              provision found to be illegal or unenforceable and such Dispute
              shall be decided by a court of competent jurisdiction within the
              courts listed for jurisdiction above, and the Parties agree to
              submit to the personal jurisdiction of that court.&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;corrections&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;12.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;CORRECTIONS&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              There may be information on the Services that contains
              typographical errors, inaccuracies, or omissions, including
              descriptions, pricing, availability, and various other
              information. We reserve the right to correct any errors,
              inaccuracies, or omissions and to change or update the information
              on the Services at any time, without prior notice.
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;disclaimer&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span style=&#34;font-size: 19px&#34;
                &gt;&lt;strong
                  &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                    &gt;&lt;strong
                      &gt;&lt;span
                        style=&#34;
                          line-height: 115%;
                          font-family: Arial;
                          font-size: 19px;
                        &#34;
                        &gt;&lt;strong
                          &gt;&lt;span
                            style=&#34;
                              line-height: 115%;
                              font-family: Arial;
                              font-size: 19px;
                            &#34;
                            &gt;13.&lt;/span
                          &gt;&lt;/strong
                        &gt;&lt;/span
                      &gt;&lt;/strong
                    &gt;&lt;/span
                  &gt;
                  DISCLAIMER&lt;/strong
                &gt;&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;THE SERVICES ARE PROVIDED ON AN AS-IS AND AS-AVAILABLE BASIS.
                YOU AGREE THAT YOUR USE OF THE SERVICES WILL BE AT YOUR SOLE
                RISK. TO THE FULLEST EXTENT PERMITTED BY LAW, WE DISCLAIM ALL
                WARRANTIES, EXPRESS OR IMPLIED, IN CONNECTION WITH THE SERVICES
                AND YOUR USE THEREOF, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
                WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
                AND NON-INFRINGEMENT. WE MAKE NO WARRANTIES OR REPRESENTATIONS
                ABOUT THE ACCURACY OR COMPLETENESS OF THE SERVICES&#39; CONTENT OR
                THE CONTENT OF ANY WEBSITES OR MOBILE APPLICATIONS LINKED TO THE
                SERVICES AND WE WILL ASSUME NO LIABILITY OR RESPONSIBILITY FOR
                ANY (1) ERRORS, MISTAKES, OR INACCURACIES OF CONTENT AND
                MATERIALS, (2) PERSONAL INJURY OR PROPERTY DAMAGE, OF ANY NATURE
                WHATSOEVER, RESULTING FROM YOUR ACCESS TO AND USE OF THE
                SERVICES, (3) ANY
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;UNAUTHORIZED&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                ACCESS TO OR USE OF OUR SECURE SERVERS AND/OR ANY AND ALL
                PERSONAL INFORMATION AND/OR FINANCIAL INFORMATION STORED
                THEREIN, (4) ANY INTERRUPTION OR CESSATION OF TRANSMISSION TO OR
                FROM THE SERVICES, (5) ANY BUGS, VIRUSES, TROJAN HORSES, OR THE
                LIKE WHICH MAY BE TRANSMITTED TO OR THROUGH THE SERVICES BY ANY
                THIRD PARTY, AND/OR (6) ANY ERRORS OR OMISSIONS IN ANY CONTENT
                AND MATERIALS OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS
                A RESULT OF THE USE OF ANY CONTENT POSTED, TRANSMITTED, OR
                OTHERWISE MADE AVAILABLE VIA THE SERVICES. WE DO NOT WARRANT,
                ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR ANY PRODUCT OR
                SERVICE ADVERTISED OR OFFERED BY A THIRD PARTY THROUGH THE
                SERVICES, ANY HYPERLINKED WEBSITE, OR ANY WEBSITE OR MOBILE
                APPLICATION FEATURED IN ANY BANNER OR OTHER ADVERTISING, AND WE
                WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE FOR
                MONITORING ANY TRANSACTION BETWEEN YOU AND ANY THIRD-PARTY
                PROVIDERS OF PRODUCTS OR SERVICES. AS WITH THE PURCHASE OF A
                PRODUCT OR SERVICE THROUGH ANY MEDIUM OR IN ANY ENVIRONMENT, YOU
                SHOULD USE YOUR BEST
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;JUDGMENT&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                AND EXERCISE CAUTION WHERE APPROPRIATE.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;liability&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;14.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;LIMITATIONS OF LIABILITY&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;&lt;span data-custom-class=&#34;body_text&#34;
                  &gt;IN NO EVENT WILL WE OR OUR DIRECTORS, EMPLOYEES, OR AGENTS BE
                  LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT,
                  CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, SPECIAL, OR PUNITIVE
                  DAMAGES, INCLUDING LOST PROFIT, LOST REVENUE, LOSS OF DATA, OR
                  OTHER DAMAGES ARISING FROM YOUR USE OF THE SERVICES, EVEN IF
                  WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.&lt;/span
                &gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;3c3071ce-c603-4812-b8ca-ac40b91b9943&#34;
                  &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                    &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                      &lt;bdt
                        class=&#34;block-component&#34;
                        data-record-question-key=&#34;limitations_liability_option&#34;
                        data-type=&#34;statement&#34;
                      &gt;&lt;/bdt&gt;
                      &lt;bdt data-type=&#34;body&#34;
                        &gt;NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED
                        HEREIN, OUR LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER
                        AND REGARDLESS OF THE FORM OF THE ACTION, WILL AT ALL
                        TIMES BE LIMITED TO
                        &lt;bdt
                          class=&#34;block-container if&#34;
                          data-type=&#34;if&#34;
                          id=&#34;73189d93-ed3a-d597-3efc-15956fa8e04e&#34;
                        &gt;
                          &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                            &lt;bdt
                              class=&#34;block-component&#34;
                              data-record-question-key=&#34;limitations_liability_option&#34;
                              data-type=&#34;statement&#34;
                            &gt;&lt;/bdt&gt;
                            &lt;bdt data-type=&#34;body&#34;
                              &gt;THE LESSER OF THE AMOUNT PAID, IF ANY, BY YOU TO
                              US&lt;bdt data-type=&#34;conditional-block&#34;&gt;
                                &lt;bdt
                                  class=&#34;block-component&#34;
                                  data-record-question-key=&#34;limilation_liability_time_option&#34;
                                  data-type=&#34;statement&#34;
                                &gt;&lt;/bdt&gt;
                                OR &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                              &lt;/bdt&gt;
                            &lt;/bdt&gt; &lt;/bdt
                          &gt;&lt;span
                            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                          &gt;
                            &lt;bdt
                              class=&#34;block-container if&#34;
                              data-type=&#34;if&#34;
                              id=&#34;3c3071ce-c603-4812-b8ca-ac40b91b9943&#34;
                            &gt;
                              &lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                                data-type=&#34;close&#34;
                                &gt;&lt;span data-custom-class=&#34;body_text&#34;
                                  &gt;.&lt;/span
                                &gt;&lt;/bdt
                              &gt;&amp;nbsp;
                            &lt;/bdt&gt; &lt;/span
                          &gt;&lt;span data-custom-class=&#34;body_text&#34;
                            &gt;CERTAIN US STATE LAWS AND INTERNATIONAL LAWS DO NOT
                            ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE
                            EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE
                            LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE
                            DISCLAIMERS OR LIMITATIONS MAY NOT APPLY TO YOU, AND
                            YOU MAY HAVE ADDITIONAL RIGHTS.&lt;/span
                          &gt;
                        &lt;/bdt&gt;
                      &lt;/bdt&gt;
                    &lt;/bdt&gt;
                  &lt;/span&gt;
                  &lt;bdt class=&#34;statement-end-if-in-editor&#34; data-type=&#34;close&#34;
                    &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;indemnification&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;15.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;INDEMNIFICATION&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;You agree to defend, indemnify, and hold us harmless, including
                our subsidiaries, affiliates, and all of our respective
                officers, agents, partners, and employees, from and against any
                loss, damage, liability, claim, or demand, including reasonable
                attorneys’ fees and expenses, made by any third party due to or
                arising out of:
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;475fffa5-05ca-def8-ac88-f426b238903c&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_post_content_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt; &lt;/bdt
                  &gt;(&lt;span style=&#34;font-size: 14.6667px&#34;&gt;1&lt;/span&gt;) use of the
                  Services; (&lt;span style=&#34;font-size: 14.6667px&#34;&gt;2&lt;/span&gt;) breach
                  of these Legal Terms; (&lt;span style=&#34;font-size: 14.6667px&#34;
                    &gt;3&lt;/span
                  &gt;) any breach of your representations and warranties set forth
                  in these Legal Terms; (&lt;span style=&#34;font-size: 14.6667px&#34;
                    &gt;4&lt;/span
                  &gt;) your violation of the rights of a third party, including
                  but not limited to intellectual property rights; or (&lt;span
                    style=&#34;font-size: 14.6667px&#34;
                    &gt;5&lt;/span
                  &gt;) any overt harmful act toward any other user of the Services
                  with whom you connected via the Services. Notwithstanding the
                  foregoing, we reserve the right, at your expense, to assume
                  the exclusive &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;defense&lt;bdt
                    class=&#34;statement-end-if-in-editor&#34;
                  &gt;&lt;/bdt&gt;
                  and control of any matter for which you are required to
                  indemnify us, and you agree to cooperate, at your expense,
                  with our &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;defense&lt;bdt
                    class=&#34;statement-end-if-in-editor&#34;
                  &gt;&lt;/bdt&gt;
                  of such claims. We will use reasonable efforts to notify you
                  of any such claim, action, or proceeding which is subject to
                  this indemnification upon becoming aware of it.
                &lt;/bdt&gt;&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;userdata&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;16.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;USER DATA&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;We will maintain certain data that you transmit to the Services
                for the purpose of managing the performance of the Services, as
                well as data relating to your use of the Services. Although we
                perform regular routine backups of data, you are solely
                responsible for all data that you transmit or that relates to
                any activity you have undertaken using the Services. You agree
                that we shall have no liability to you for any loss or
                corruption of any such data, and you hereby waive any right of
                action against us arising from any such loss or corruption of
                such data.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;electronic&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;17.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND SIGNATURES&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;Visiting the Services, sending us emails, and completing online
                forms constitute electronic communications. You consent to
                receive electronic communications, and you agree that all
                agreements, notices, disclosures, and other communications we
                provide to you electronically, via email and on the Services,
                satisfy any legal requirement that such communication be in
                writing. YOU HEREBY AGREE TO THE USE OF ELECTRONIC SIGNATURES,
                CONTRACTS, ORDERS, AND OTHER RECORDS, AND TO ELECTRONIC DELIVERY
                OF NOTICES, POLICIES, AND RECORDS OF TRANSACTIONS INITIATED OR
                COMPLETED BY US OR VIA THE SERVICES. You hereby waive any rights
                or requirements under any statutes, regulations, rules,
                ordinances, or other laws in any jurisdiction which require an
                original signature or delivery or retention of non-electronic
                records, or to payments or the granting of credits by any means
                other than electronic means.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;
                &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
              &gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;misc&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;18.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;MISCELLANEOUS&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;These Legal Terms and any policies or operating rules posted by
                us on the Services or in respect to the Services constitute the
                entire agreement and understanding between you and us. Our
                failure to exercise or enforce any right or provision of these
                Legal Terms shall not operate as a waiver of such right or
                provision. These Legal Terms operate to the fullest extent
                permissible by law. We may assign any or all of our rights and
                obligations to others at any time. We shall not be responsible
                or liable for any loss, damage, delay, or failure to act caused
                by any cause beyond our reasonable control. If any provision or
                part of a provision of these Legal Terms is determined to be
                unlawful, void, or unenforceable, that provision or part of the
                provision is deemed severable from these Legal Terms and does
                not affect the validity and enforceability of any remaining
                provisions. There is no joint venture, partnership, employment
                or agency relationship created between you and us as a result of
                these Legal Terms or use of the Services. You agree that these
                Legal Terms will not be construed against us by virtue of having
                drafted them. You hereby waive any and all
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;defenses&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                you may have based on the electronic form of these Legal Terms
                and the lack of signing by the parties hereto to execute these
                Legal Terms.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;
                &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
              &gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;contact&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 115%; font-family: Arial&#34;
                  &gt;&lt;span style=&#34;font-size: 19px&#34;
                    &gt;&lt;strong
                      &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                        &gt;&lt;strong
                          &gt;&lt;span
                            style=&#34;
                              line-height: 115%;
                              font-family: Arial;
                              font-size: 19px;
                            &#34;
                            &gt;&lt;strong
                              &gt;&lt;span
                                style=&#34;
                                  line-height: 115%;
                                  font-family: Arial;
                                  font-size: 19px;
                                &#34;
                                &gt;19.&lt;/span
                              &gt;&lt;/strong
                            &gt;&lt;/span
                          &gt;&lt;/strong
                        &gt;&lt;/span
                      &gt;&amp;nbsp;&lt;/strong
                    &gt;CONTACT US&lt;/span
                  &gt;&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;In order to resolve a complaint regarding the Services or to
                receive further information regarding use of the Services,
                please contact us at info@filipporagazzo.it&lt;/span
              &gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</description>
      <content>&lt;div class=&#34;termly-content&#34;&gt;
&lt;span
      style=&#34;
        display: block;
        margin: 0 auto 3.125rem;
        width: 11.125rem;
        height: 2.375rem;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K)
          center no-repeat;
      &#34;
    &gt;&lt;/span&gt;
    &lt;div data-custom-class=&#34;body&#34;&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;title&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;bdt class=&#34;block-component&#34;
            &gt;&lt;span style=&#34;font-size: 19px&#34;&gt;&lt;/span&gt;&lt;/bdt
          &gt;&lt;span style=&#34;font-size: 19px&#34;
            &gt;&lt;strong&gt;TERMS OF USE&lt;/strong&gt;
            &lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt&gt;
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;subtitle&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;Last updated&lt;/strong&gt;
          &lt;bdt class=&#34;question&#34;&gt;&lt;strong&gt;June 18, 2024&lt;/strong&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 115%&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 115%&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div style=&#34;line-height: 1.5&#34;&gt;
          &lt;strong
            &gt;&lt;span data-custom-class=&#34;heading_1&#34;
              &gt;AGREEMENT TO OUR LEGAL TERMS&lt;/span
            &gt;&lt;/strong
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div class=&#34;MsoNormal&#34; id=&#34;agreement&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a name=&#34;_6aa3gkhykvst&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We are
            &lt;bdt
              class=&#34;block-container question question-in-editor&#34;
              data-id=&#34;9d459c4e-c548-e5cb-7729-a118548965d2&#34;
              data-type=&#34;question&#34;
              &gt;Filippo Ragazzo&lt;/bdt
            &gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; (&lt;bdt
              class=&#34;block-component&#34;
            &gt;&lt;/bdt
            &gt;&#34;&lt;strong&gt;Company&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;we&lt;/strong&gt;,&#34;
            &#34;&lt;strong&gt;us&lt;/strong&gt;,&#34; &#34;&lt;strong&gt;our&lt;/strong&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;)&lt;span
              style=&#34;font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;mso-thememso-themetint:166&#34;
              &gt;&lt;span
                style=&#34;font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;mso-thememso-themetint:166&#34;
                &gt;&lt;span
                  style=&#34;font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;mso-thememso-themetint:166&#34;
                &gt;
                  &lt;bdt class=&#34;question&#34;&gt;
                    &lt;bdt class=&#34;block-component&#34;&gt;.&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/span&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
            &gt;&lt;/span&gt;
          &lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We operate &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;, as well as any other related
            products and services that refer or link to these legal terms (the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;Legal Terms&lt;/strong
            &gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;) (collectively, the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;strong&gt;Services&lt;/strong&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;).&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;You can contact us by
            &lt;bdt class=&#34;block-component&#34;
              &gt;email at &lt;bdt class=&#34;question&#34;&gt;info@filipporagazzo.it&lt;/bdt&gt;.
            &lt;/bdt&gt;&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;These Legal Terms constitute a legally binding agreement made
            between you, whether personally or on behalf of an entity (&lt;bdt
              class=&#34;block-component&#34;
            &gt;&lt;/bdt
            &gt;&#34;&lt;strong&gt;you&lt;/strong&gt;&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt
            &gt;), and &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt;, concerning your
            access to and use of the Services. You agree that by accessing the
            Services, you have read, understood, and agreed to be bound by all
            of these Legal Terms. IF YOU DO NOT AGREE WITH ALL OF THESE LEGAL
            TERMS, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SERVICES AND
            YOU MUST DISCONTINUE USE IMMEDIATELY.&lt;bdt
              class=&#34;block-component&#34;
            &gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Supplemental terms and conditions or documents that may be posted
            on the Services from time to time are hereby expressly incorporated
            herein by reference. We reserve the right, in our sole discretion,
            to make changes or modifications to these Legal Terms
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;at any time and for any
            reason&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;. We will alert
            you about any changes by updating the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Last updated&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            date of these Legal Terms, and you waive any right to receive
            specific notice of each such change. It is your responsibility to
            periodically review these Legal Terms to stay informed of updates.
            You will be subject to, and will be deemed to have been made aware
            of and to have accepted, the changes in any revised Legal Terms by
            your continued use of the Services after the date such revised Legal
            Terms are posted.&lt;bdt class=&#34;else-block&#34;&gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;bdt
            class=&#34;block-container if&#34;
            data-type=&#34;if&#34;
            id=&#34;a2595956-7028-dbe5-123e-d3d3a93ed076&#34;
          &gt;
            &lt;bdt data-type=&#34;conditional-block&#34;&gt;
              &lt;bdt data-type=&#34;body&#34;
                &gt;&lt;span
                  style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;
                  &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
              &gt;&lt;/bdt&gt;
            &lt;/bdt&gt;
          &lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          We recommend that you print a copy of these Legal Terms for your
          records.
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;TABLE OF CONTENTS&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a href=&#34;#services&#34;
            &gt;&lt;span data-custom-class=&#34;link&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;
                &gt;&lt;span data-custom-class=&#34;body_text&#34;
                  &gt;1. OUR SERVICES&lt;/span
                &gt;&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ip&#34;
            &gt;&lt;span 
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;2. INTELLECTUAL PROPERTY RIGHTS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#userreps&#34;&gt;&lt;/a
          &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#userreps&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;3. USER REPRESENTATIONS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
          &gt;&lt;/span&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#products&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#products&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#purchases&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#purchases&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
          &gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
          &gt;&lt;/span&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#software&#34;&gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#software&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#software&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;4. PROHIBITED ACTIVITIES&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ugc&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ugc&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;5. USER GENERATED CONTRIBUTIONS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#license&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#license&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;6. CONTRIBUTION &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;LICENSE&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;&lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#reviews&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#reviews&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#mobile&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#mobile&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#socialmedia&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#socialmedia&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#thirdparty&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#thirdparty&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#advertisers&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#advertisers&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#sitemanage&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#sitemanage&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;7. SERVICES MANAGEMENT&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppyes&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppyes&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppno&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#ppno&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#dmca&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#dmca&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span
          &gt;&lt;/span&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#terms&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#terms&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;8. TERM AND TERMINATION&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#modifications&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#modifications&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;9. MODIFICATIONS AND INTERRUPTIONS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#law&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#law&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;10. GOVERNING LAW&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disputes&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disputes&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;11. DISPUTE RESOLUTION&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#corrections&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#corrections&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;12. CORRECTIONS&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disclaimer&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#disclaimer&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;13. DISCLAIMER&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#liability&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#liability&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;14. LIMITATIONS OF LIABILITY&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#indemnification&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#indemnification&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;15. INDEMNIFICATION&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#userdata&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#userdata&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;16. USER DATA&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#electronic&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#electronic&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;17. ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND
                SIGNATURES&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#california&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
          &gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#california&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span
          &gt;&lt;/a&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#misc&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#misc&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;
                &gt;18. MISCELLANEOUS&lt;/span
              &gt;&lt;/span
            &gt;&lt;/a
          &gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
          &lt;a data-custom-class=&#34;link&#34; href=&#34;#contact&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;19. CONTACT US&lt;/span&gt;&lt;/span
            &gt;&lt;/a
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;a name=&#34;_b6y29mp52qvx&#34;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          id=&#34;services&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;&lt;span style=&#34;font-size: 19px&#34;&gt;1. OUR SERVICES&lt;/span&gt;&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;The information provided when using the Services is not intended
            for distribution to or use by any person or entity in any
            jurisdiction or country where such distribution or use would be
            contrary to law or regulation or which would subject us to any
            registration requirement within such jurisdiction or country.
            Accordingly, those persons who choose to access the Services from
            other locations do so on their own initiative and are solely
            responsible for compliance with local laws, if and to the extent
            local laws are applicable.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;/div&gt;
      &lt;div
        align=&#34;center&#34;
        data-custom-class=&#34;heading_1&#34;
        style=&#34;text-align: left; line-height: 1.5&#34;
      &gt;
        &lt;strong
          &gt;&lt;span id=&#34;ip&#34; style=&#34;font-size: 19px&#34;
            &gt;2. INTELLECTUAL PROPERTY RIGHTS&lt;/span
          &gt;&lt;/strong
        &gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_2&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;Our intellectual property&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We are the owner or the licensee of all intellectual property
            rights in our Services, including all source code, databases,
            functionality, software, website designs, audio, video, text,
            photographs, and graphics in the Services (collectively, the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Content&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;), as well as the trademarks, service marks, and logos contained
            therein (the &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Marks&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;).&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Our Content and Marks are protected by copyright and trademark laws
            (and various other intellectual property rights and unfair
            competition laws) and treaties in the United States and around the
            world.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;The Content and Marks are provided in or through the Services
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;AS IS&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            for your &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;personal, non-commercial
            use or internal business purpose&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            only.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_2&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;strong&gt;Your use of our Services&lt;/strong&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;Subject to your compliance with these Legal Terms, including the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;&lt;/span
          &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
            &gt;&lt;span style=&#34;font-size: 15px&#34;
              &gt;PROHIBITED ACTIVITIES&lt;/span
            &gt;&lt;/a
          &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            section below, we grant you a non-exclusive, non-transferable,
            revocable &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;license&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            to:
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;ul&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;&gt;access the Services; and&lt;/span&gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;download or print a copy of any portion of the Content to which
              you have properly gained access.&lt;/span
            &gt;
          &lt;/li&gt;
        &lt;/ul&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;solely for your &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;personal,
            non-commercial use or internal business purpose&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Except as set out in this section or elsewhere in our Legal Terms,
            no part of the Services and no Content or Marks may be copied,
            reproduced, aggregated, republished, uploaded, posted, publicly
            displayed, encoded, translated, transmitted, distributed, sold,
            licensed, or otherwise exploited for any commercial purpose
            whatsoever, without our express prior written permission.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;If you wish to make any use of the Services, Content, or Marks
            other than as set out in this section or elsewhere in our Legal
            Terms, please address your request to:
            &lt;bdt class=&#34;question&#34;&gt;Filippo Ragazzo&lt;/bdt&gt;. If we ever grant you
            the permission to post, reproduce, or publicly display any part of
            our Services or Content, you must identify us as the owners or
            licensors of the Services, Content, or Marks and ensure that any
            copyright or proprietary notice appears or is visible on posting,
            reproducing, or displaying our Content.&lt;/span
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;We reserve all rights not expressly granted to you in and to the
            Services, Content, and Marks.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;Any breach of these Intellectual Property Rights will constitute a
            material breach of our Legal Terms and your right to use our
            Services will terminate immediately.&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_2&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;&lt;strong&gt;Your submissions&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&lt;/strong
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;Please review this section and the
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
              &gt;&lt;span 
                &gt;PROHIBITED ACTIVITIES&lt;/span
              &gt;&lt;/a
            &gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt&gt;
            section carefully prior to using our Services to understand the (a)
            rights you give us and (b) obligations you have when you post or
            upload any content through the Services.
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;strong&gt;Submissions:&lt;/strong&gt; By directly sending us any question,
            comment, suggestion, idea, feedback, or other information about the
            Services (&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Submissions&#34;&lt;bdt
              class=&#34;statement-end-if-in-editor&#34;
            &gt;&lt;/bdt
            &gt;), you agree to assign to us all intellectual property rights in
            such Submission. You agree that we shall own this Submission and be
            entitled to its unrestricted use and dissemination for any lawful
            purpose, commercial or otherwise, without acknowledgment or
            compensation to you.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
          &gt;&lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span style=&#34;font-size: 15px&#34;
            &gt;&lt;strong&gt;You are responsible for what you post or upload:&lt;/strong&gt;
            By sending us Submissions&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; through
            any part of the Services&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            you:&lt;/span
          &gt;
        &lt;/div&gt;
        &lt;ul&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;confirm that you have read and agree with our
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;&lt;/span
            &gt;&lt;a data-custom-class=&#34;link&#34; href=&#34;#prohibited&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;
                &gt;PROHIBITED ACTIVITIES&lt;/span
              &gt;&lt;/a
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              and will not post, send, publish, upload, or transmit through the
              Services any Submission&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; that is
              illegal, harassing, hateful, harmful, defamatory, obscene,
              bullying, abusive, discriminatory, threatening to any person or
              group, sexually explicit, false, inaccurate, deceitful, or
              misleading;
            &lt;/span&gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;to the extent permissible by applicable law, waive any and all
              moral rights to any such Submission&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt
              &gt;;&lt;/span
            &gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;warrant that any such Submission&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt&gt;
              are original to you or that you have the necessary rights and
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;licenses&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              to submit such Submissions&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and
              that you have full authority to grant us the above-mentioned
              rights in relation to your Submissions&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt
              &gt;; and&lt;/span
            &gt;
          &lt;/li&gt;
          &lt;li
            class=&#34;MsoNormal&#34;
            data-custom-class=&#34;body_text&#34;
            style=&#34;line-height: 1.5&#34;
          &gt;
            &lt;span style=&#34;font-size: 15px&#34;
              &gt;warrant and represent that your Submissions&lt;bdt
                class=&#34;block-component&#34;
              &gt;&lt;/bdt&gt;
              do not constitute confidential information.&lt;/span
            &gt;
          &lt;/li&gt;
        &lt;/ul&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          You are solely responsible for your Submissions&lt;bdt
            class=&#34;block-component&#34;
          &gt;&lt;/bdt&gt;
          and you expressly agree to reimburse us for any and all losses that we
          may suffer because of your breach of (a) this section, (b) any third
          party’s intellectual property rights, or (c) applicable law.&lt;bdt
            class=&#34;block-component&#34;
          &gt;&lt;/bdt&gt;
          &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
        &lt;/div&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;heading_1&#34;
          id=&#34;userreps&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;a name=&#34;_5hg7kgyv9l8z&#34;&gt;&lt;/a
          &gt;&lt;strong
            &gt;&lt;span
              style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
              &gt;&lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span
                      style=&#34;
                        line-height: 115%;
                        font-family: Arial;
                        font-size: 19px;
                      &#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;3.&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;&lt;/span
                &gt;&lt;/strong
              &gt;USER REPRESENTATIONS&lt;/span
            &gt;&lt;/strong
          &gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div
          class=&#34;MsoNormal&#34;
          data-custom-class=&#34;body_text&#34;
          style=&#34;line-height: 1.5&#34;
        &gt;
          &lt;span
            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
            &gt;By using the Services, you represent and warrant that:&lt;/span
          &gt;
          &lt;bdt
            class=&#34;block-container if&#34;
            data-type=&#34;if&#34;
            id=&#34;d2d82ca8-275f-3f86-8149-8a5ef8054af6&#34;
          &gt;
            &lt;bdt data-type=&#34;conditional-block&#34;&gt;
              &lt;bdt
                class=&#34;block-component&#34;
                data-record-question-key=&#34;user_account_option&#34;
                data-type=&#34;statement&#34;
              &gt;&lt;/bdt
              &gt;&amp;nbsp; &lt;/bdt
            &gt;&lt;span style=&#34;font-size: 11pt&#34;&gt;(&lt;/span
            &gt;&lt;span style=&#34;font-size: 14.6667px&#34;&gt;1&lt;/span
            &gt;&lt;span style=&#34;font-size: 11pt&#34;
              &gt;) you have the legal capacity and you agree to comply with these
              Legal Terms;&lt;/span
            &gt;
            &lt;bdt
              class=&#34;block-container if&#34;
              data-type=&#34;if&#34;
              id=&#34;8d4c883b-bc2c-f0b4-da3e-6d0ee51aca13&#34;
            &gt;
              &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                &lt;bdt
                  class=&#34;block-component&#34;
                  data-record-question-key=&#34;user_u13_option&#34;
                  data-type=&#34;statement&#34;
                &gt;&lt;/bdt
                &gt;&amp;nbsp; &lt;/bdt
              &gt;&lt;span style=&#34;font-size: 11pt&#34;&gt;(&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;2&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) you are not a minor in the jurisdiction in which you
                reside&lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;76948fab-ec9e-266a-bb91-948929c050c9&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_o18_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt; &lt;/bdt
                  &gt;; (
                &lt;/bdt&gt;&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;3&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) you will not access the Services through automated or
                non-human means, whether through a bot, script or otherwise;
                (&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;4&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) you will not use the Services for any illegal or
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;unauthorized&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                purpose; and (&lt;/span
              &gt;&lt;span style=&#34;font-size: 14.6667px&#34;
                &gt;5&lt;/span
              &gt;&lt;span style=&#34;font-size: 11pt&#34;
                &gt;) your use of the Services will not violate any applicable law
                or regulation.&lt;/span
              &gt;&lt;span
                style=&#34;font-size: 14.6667px&#34;
              &gt;&lt;/span&gt;
            &lt;/bdt&gt;
          &lt;/bdt&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
      &lt;div align=&#34;center&#34; style=&#34;text-align: left&#34;&gt;
        &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 115%&#34;&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;If you provide any information that is untrue, inaccurate, not
                current, or incomplete, we have the right to suspend or
                terminate your account and refuse any and all current or future
                use of the Services (or any portion thereof).&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.1; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span&gt;&lt;/bdt
            &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
            &lt;/span&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
            &gt;&lt;/bdt&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
            &gt;&lt;/bdt&gt;
            &lt;bdt class=&#34;block-component&#34;
              &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
            &gt;&lt;/bdt&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 1.5&#34;&gt;
            &lt;span
              style=&#34;line-height: 115%;
                font-family: Arial&#34;
            &gt;
              &lt;bdt
                data-type=&#34;conditional-block&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;body&#34;&gt;
                  &lt;div
                    class=&#34;MsoNormal&#34;
                    style=&#34;font-size: 15px; line-height: 1.5&#34;
                  &gt;
                    &lt;br /&gt;
                  &lt;/div&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/span&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;prohibited&#34;
              style=&#34;text-align: left; line-height: 1.5&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span
                      style=&#34;
                        line-height: 115%;
                        font-family: Arial;
                        font-size: 19px;
                      &#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;4.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;PROHIBITED ACTIVITIES&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 1&#34;&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;You may not access or use the Services for any purpose other
                than that for which we make the Services available. The Services
                may not be used in connection with any commercial
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;endeavors&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                except those that are specifically endorsed or approved by
                us.&lt;/span
              &gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
          &lt;div class=&#34;MsoNormal&#34; style=&#34;text-align: justify; line-height: 1&#34;&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.1&#34;&gt;
                &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
                  &lt;div
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span
                      style=&#34;font-size: 11pt;
                        line-height: 16.8667px&#34;
                      &gt;As a user of the Services, you agree not to:&lt;/span
                    &gt;
                  &lt;/div&gt;
                &lt;/div&gt;
                &lt;ul&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span
                      style=&#34;font-size: 11pt;
                        line-height: 16.8667px&#34;
                      &gt;&lt;span
                        style=&#34;font-family: sans-serif;
                          font-size: 15px;
                          font-style: normal;
                          font-variant-ligatures: normal;
                          font-variant-caps: normal;
                          font-weight: 400;
                          letter-spacing: normal;
                          orphans: 2;
                          text-align: justify;
                          text-indent: -29.4px;
                          text-transform: none;
                          white-space: normal;
                          widows: 2;
                          word-spacing: 0px;
                          -webkit-text-stroke-width: 0px;
                          background-text-decoration-style: initial;
                          text-decoration-&#34;
                        &gt;Systematically retrieve data or other content from the
                        Services to create or compile, directly or indirectly, a
                        collection, compilation, database, or directory without
                        written permission from us.&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Trick, defraud, or mislead us and other users,
                              especially in any attempt to learn sensitive
                              account information such as user passwords.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Circumvent, disable, or otherwise interfere with
                              security-related features of the Services,
                              including features that prevent or restrict the
                              use or copying of any Content or enforce
                              limitations on the use of the Services and/or the
                              Content contained therein.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Disparage, tarnish, or otherwise harm, in our
                              opinion, us and/or the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use any information obtained from the Services in
                              order to harass, abuse, or harm another
                              person.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Make improper use of our support services or
                              submit false reports of abuse or misconduct.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use the Services in a manner inconsistent with
                              any applicable laws or regulations.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Engage in
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                              &gt;unauthorized&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              framing of or linking to the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Upload or transmit (or attempt to upload or to
                              transmit) viruses, Trojan horses, or other
                              material, including excessive use of capital
                              letters and spamming (continuous posting of
                              repetitive text), that interferes with any party’s
                              uninterrupted use and enjoyment of the Services or
                              modifies, impairs, disrupts, alters, or interferes
                              with the use, features, functions, operation, or
                              maintenance of the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Engage in any automated use of the system, such
                              as using scripts to send comments or messages, or
                              using any data mining, robots, or similar data
                              gathering and extraction tools.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Delete the copyright or other proprietary rights
                              notice from any Content.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Attempt to impersonate another user or person or
                              use the username of another user.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Upload or transmit (or attempt to upload or to
                              transmit) any material that acts as a passive or
                              active information collection or transmission
                              mechanism, including without limitation, clear
                              graphics interchange formats (&lt;bdt
                                class=&#34;block-component&#34;
                              &gt;&lt;/bdt
                              &gt;&#34;gifs&#34;&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt
                              &gt;), 1×1 pixels, web bugs, cookies, or other
                              similar devices (sometimes referred to as
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;spyware&#34; or
                              &#34;passive collection mechanisms&#34; or &#34;pcms&#34;&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt
                              &gt;).&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Interfere with, disrupt, or create an undue
                              burden on the Services or the networks or services
                              connected to the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Harass, annoy, intimidate, or threaten any of our
                              employees or agents engaged in providing any
                              portion of the Services to you.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Attempt to bypass any measures of the Services
                              designed to prevent or restrict access to the
                              Services, or any portion of the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Copy or adapt the Services&#39; software, including
                              but not limited to Flash, PHP, HTML, JavaScript,
                              or other code.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Except as permitted by applicable law, decipher,
                              decompile, disassemble, or reverse engineer any of
                              the software comprising or in any way making up a
                              part of the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Except as may be the result of standard search
                              engine or Internet browser usage, use, launch,
                              develop, or distribute any automated system,
                              including without limitation, any spider, robot,
                              cheat utility, scraper, or offline reader that
                              accesses the Services, or use or launch any
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                              &gt;unauthorized&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              script or other software.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use a buying agent or purchasing agent to make
                              purchases on the Services.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Make any
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                              &gt;unauthorized&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              use of the Services, including collecting
                              usernames and/or email addresses of users by
                              electronic or other means for the purpose of
                              sending unsolicited email, or creating user
                              accounts by automated means or under false
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;pretenses&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt
                              &gt;.&lt;/span
                            &gt;&lt;/span
                          &gt;&lt;/span
                        &gt;&lt;/span
                      &gt;&lt;/span
                    &gt;
                  &lt;/li&gt;
                  &lt;li
                    class=&#34;MsoNormal&#34;
                    data-custom-class=&#34;body_text&#34;
                    style=&#34;line-height: 1.5; text-align: left&#34;
                  &gt;
                    &lt;span style=&#34;font-size: 15px&#34;
                      &gt;&lt;span
                        style=&#34;line-height: 16.8667px&#34;
                        &gt;&lt;span
                          style=&#34;font-family: sans-serif;
                            font-style: normal;
                            font-variant-ligatures: normal;
                            font-variant-caps: normal;
                            font-weight: 400;
                            letter-spacing: normal;
                            orphans: 2;
                            text-align: justify;
                            text-indent: -29.4px;
                            text-transform: none;
                            white-space: normal;
                            widows: 2;
                            word-spacing: 0px;
                            -webkit-text-stroke-width: 0px;
                            background-text-decoration-style: initial;
                            text-decoration-&#34;
                          &gt;&lt;span
                            style=&#34;line-height: 16.8667px&#34;
                            &gt;&lt;span
                              style=&#34;font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                              &gt;Use the Services as part of any effort to compete
                              with us or otherwise use the Services and/or the
                              Content for any revenue-generating
                              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;endeavor&lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                              &gt;&lt;/bdt&gt;
                              or commercial enterprise.&lt;/span
                            &gt;&lt;span
                              style=&#34;font-size: 11pt;
                                line-height: 16.8667px;
                                font-family: sans-serif;
                                font-style: normal;
                                font-variant-ligatures: normal;
                                font-variant-caps: normal;
                                font-weight: 400;
                                letter-spacing: normal;
                                orphans: 2;
                                text-align: justify;
                                text-indent: -29.4px;
                                text-transform: none;
                                white-space: normal;
                                widows: 2;
                                word-spacing: 0px;
                                -webkit-text-stroke-width: 0px;
                                background-text-decoration-style: initial;
                                text-decoration-&#34;
                            &gt;
                              &lt;bdt
                                class=&#34;forloop-component&#34;
                              &gt;&lt;/bdt&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span
                    &gt;&lt;/span&gt;
                  &lt;/li&gt;
                &lt;/ul&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
                &lt;br /&gt;
              &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 17.25px&#34;&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt data-type=&#34;body&#34;&gt;
                      &lt;div
                        class=&#34;MsoNormal&#34;
                        data-custom-class=&#34;heading_1&#34;
                        id=&#34;ugc&#34;
                        style=&#34;line-height: 1.5&#34;
                      &gt;
                        &lt;strong
                          &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                            &gt;&lt;strong
                              &gt;&lt;span
                                style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                                &gt;&lt;strong
                                  &gt;&lt;span
                                    style=&#34;
                                      line-height: 115%;
                                      font-family: Arial;
                                      font-size: 19px;
                                    &#34;
                                    &gt;&lt;strong
                                      &gt;&lt;span
                                        style=&#34;
                                          line-height: 115%;
                                          font-family: Arial;
                                          font-size: 19px;
                                        &#34;
                                        &gt;5.&lt;/span
                                      &gt;&lt;/strong
                                    &gt;&lt;/span
                                  &gt;&lt;/strong
                                &gt;&lt;/span
                              &gt;&amp;nbsp;&lt;/strong
                            &gt;USER GENERATED CONTRIBUTIONS&lt;/span
                          &gt;&lt;/strong
                        &gt;
                      &lt;/div&gt;
                    &lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
                &lt;br /&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt data-type=&#34;body&#34;&gt;
                      &lt;div
                        class=&#34;MsoNormal&#34;
                        data-custom-class=&#34;body_text&#34;
                        style=&#34;line-height: 1.5&#34;
                      &gt;
                        &lt;span
                          style=&#34;font-size: 11pt;
                            line-height: 16.8667px&#34;
                        &gt;
                          &lt;bdt
                            class=&#34;block-container if&#34;
                            data-type=&#34;if&#34;
                            id=&#34;24327c5d-a34f-f7e7-88f1-65a2f788484f&#34;
                            style=&#34;text-align: left&#34;
                          &gt;
                            &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                              &lt;bdt
                                class=&#34;block-component&#34;
                                data-record-question-key=&#34;user_post_content_option&#34;
                                data-type=&#34;statement&#34;
                              &gt;&lt;/bdt
                              &gt;&lt;span
                                style=&#34;font-size: 11pt;
                                  line-height: 16.8667px&#34;
                                &gt;The Services does not offer users to submit or
                                post content.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                We may provide you with the opportunity to
                                create, submit, post, display, transmit,
                                perform, publish, distribute, or broadcast
                                content and materials to us or on the Services,
                                including but not limited to text, writings,
                                video, audio, photographs, graphics, comments,
                                suggestions, or personal information or other
                                material (collectively,
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
                                &gt;&#34;Contributions&#34;&lt;bdt
                                  class=&#34;statement-end-if-in-editor&#34;
                                &gt;&lt;/bdt
                                &gt;). Contributions may be viewable by other users
                                of the Services and through third-party
                                websites.&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                When you create or make available any
                                Contributions, you thereby represent and warrant
                                that:&lt;span
                                  style=&#34;font-size: 11pt;
                                    line-height: 16.8667px&#34;
                                &gt;
                                  &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                  &lt;/bdt&gt; &lt;/span
                              &gt;&lt;/span&gt;
                            &lt;/bdt&gt;
                          &lt;/bdt&gt;
                        &lt;/span&gt;
                      &lt;/div&gt;
                    &lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                style=&#34;text-align: justify; line-height: 1&#34;
              &gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt data-type=&#34;body&#34;&gt;
                      &lt;div
                        class=&#34;MsoNormal&#34;
                        data-custom-class=&#34;heading_1&#34;
                        id=&#34;license&#34;
                        style=&#34;line-height: 1.5&#34;
                      &gt;
                        &lt;strong
                          &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                            &gt;&lt;strong
                              &gt;&lt;span
                                style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                                &gt;&lt;strong
                                  &gt;&lt;span
                                    style=&#34;
                                      line-height: 115%;
                                      font-family: Arial;
                                      font-size: 19px;
                                    &#34;
                                    &gt;&lt;strong
                                      &gt;&lt;span
                                        style=&#34;
                                          line-height: 115%;
                                          font-family: Arial;
                                          font-size: 19px;
                                        &#34;
                                        &gt;6.&lt;/span
                                      &gt;&lt;/strong
                                    &gt;&lt;/span
                                  &gt;&lt;/strong
                                &gt;&lt;/span
                              &gt;&amp;nbsp;&lt;/strong
                            &gt;CONTRIBUTION
                            &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;LICENSE&lt;bdt
                              class=&#34;statement-end-if-in-editor&#34;
                            &gt;&lt;/bdt&gt;&lt;/span
                        &gt;&lt;/strong&gt;
                      &lt;/div&gt;
                    &lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;a088ddfb-d8c1-9e58-6f21-958c3f4f0709&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_post_content_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;&lt;span
                    style=&#34;font-size: 11pt;
                      line-height: 16.8667px&#34;
                    &gt;You and Services agree that we may access, store, process,
                    and use any information and personal data that you
                    provide&lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt; and your choices
                    (including settings).&lt;/span
                  &gt;&lt;/span
                &gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;By submitting suggestions or other feedback regarding the
                  Services, you agree that we can use and share such feedback
                  for any purpose without compensation to you.&lt;bdt
                    class=&#34;block-component&#34;
                  &gt;&lt;/bdt
                &gt;&lt;/span&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;We do not assert any ownership over your Contributions. You
                  retain full ownership of all of your Contributions and any
                  intellectual property rights or other proprietary rights
                  associated with your Contributions. We are not liable for any
                  statements or representations in your Contributions provided
                  by you in any area on the Services. You are solely responsible
                  for your Contributions to the Services and you expressly agree
                  to exonerate us from any and all responsibility and to refrain
                  from any legal action against us regarding your
                  Contributions.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt
                &gt;&lt;/span&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;br /&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                  &gt;&lt;span
                    style=&#34;font-size: 11pt;
                      line-height: 16.8667px&#34;
                    &gt;&lt;span
                      style=&#34;font-size: 11pt;
                        line-height: 16.8667px&#34;
                    &gt;
                      &lt;bdt
                        class=&#34;block-container if&#34;
                        data-type=&#34;if&#34;
                        style=&#34;text-align: left&#34;
                      &gt;
                        &lt;bdt
                          class=&#34;statement-end-if-in-editor&#34;
                          data-type=&#34;close&#34;
                        &gt;&lt;/bdt&gt;
                      &lt;/bdt&gt; &lt;/span&gt;&lt;/span
                &gt;&lt;/span&gt;
              &lt;/div&gt;
              &lt;div
                class=&#34;MsoNormal&#34;
                data-custom-class=&#34;body_text&#34;
                style=&#34;line-height: 1.5&#34;
              &gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;review_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;mobile_app_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
              &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  style=&#34;text-align: left&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;socialnetwork_link_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;3rd_party_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;advertiser_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;sitemanage&#34;
              style=&#34;line-height: 1.5&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;7.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;SERVICES MANAGEMENT&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5&#34;
            &gt;
              We reserve the right, but not the obligation, to: (1) monitor the
              Services for violations of these Legal Terms; (2) take appropriate
              legal action against anyone who, in our sole discretion, violates
              the law or these Legal Terms, including without limitation,
              reporting such user to law enforcement authorities; (3) in our
              sole discretion and without limitation, refuse, restrict access
              to, limit the availability of, or disable (to the extent
              technologically feasible) any of your Contributions or any portion
              thereof; (4) in our sole discretion and without limitation,
              notice, or liability, to remove from the Services or otherwise
              disable all files and content that are excessive in size or are in
              any way burdensome to our systems; and (5) otherwise manage the
              Services in a manner designed to protect our rights and property
              and to facilitate the proper functioning of the Services.
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;&lt;br /&gt;&lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;privacy_policy_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
                &lt;bdt class=&#34;block-container if&#34; data-type=&#34;if&#34;&gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;privacy_policy_followup&#34;
                      data-type=&#34;statement&#34;
                      style=&#34;font-size: 14.6667px&#34;
                    &gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5&#34;&gt;
              &lt;bdt
                class=&#34;block-container if&#34;
                data-type=&#34;if&#34;
                style=&#34;text-align: left&#34;
              &gt;
                &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                  &lt;bdt
                    class=&#34;block-component&#34;
                    data-record-question-key=&#34;copyright_agent_option&#34;
                    data-type=&#34;statement&#34;
                  &gt;
                    &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                  &lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;terms&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;8.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;TERM AND TERMINATION&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;These Legal Terms shall remain in full force and effect while
                you use the Services. WITHOUT LIMITING ANY OTHER PROVISION OF
                THESE LEGAL TERMS, WE RESERVE THE RIGHT TO, IN OUR SOLE
                DISCRETION AND WITHOUT NOTICE OR LIABILITY, DENY ACCESS TO AND
                USE OF THE SERVICES (INCLUDING BLOCKING CERTAIN IP ADDRESSES),
                TO ANY PERSON FOR ANY REASON OR FOR NO REASON, INCLUDING WITHOUT
                LIMITATION FOR BREACH OF ANY REPRESENTATION, WARRANTY, OR
                COVENANT CONTAINED IN THESE LEGAL TERMS OR OF ANY APPLICABLE LAW
                OR REGULATION. WE MAY TERMINATE YOUR USE OR PARTICIPATION IN THE
                SERVICES OR DELETE
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;a6e121c2-36b4-5066-bf9f-a0a33512e768&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_account_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt; &lt;/bdt
                  &gt;ANY CONTENT OR INFORMATION THAT YOU POSTED AT ANY TIME,
                  WITHOUT WARNING, IN OUR SOLE DISCRETION.
                &lt;/bdt&gt;&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;If we terminate or suspend your account for any reason, you are
                prohibited from registering and creating a new account under
                your name, a fake or borrowed name, or the name of any third
                party, even if you may be acting on behalf of the third party.
                In addition to terminating or suspending your account, we
                reserve the right to take appropriate legal action, including
                without limitation pursuing civil, criminal, and injunctive
                redress.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;modifications&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;9.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;MODIFICATIONS AND INTERRUPTIONS&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;We reserve the right to change, modify, or remove the contents
                of the Services at any time or for any reason at our sole
                discretion without notice. However, we have no obligation to
                update any information on our Services.&lt;bdt
                  class=&#34;block-component&#34;
                &gt;&lt;/bdt&gt;
                We will not be liable to you or any third party for any
                modification, price change, suspension, or discontinuance of the
                Services.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;We cannot guarantee the Services will be available at all
                times. We may experience hardware, software, or other problems
                or need to perform maintenance related to the Services,
                resulting in interruptions, delays, or errors. We reserve the
                right to change, revise, update, suspend, discontinue, or
                otherwise modify the Services at any time or for any reason
                without notice to you. You agree that we have no liability
                whatsoever for any loss, damage, or inconvenience caused by your
                inability to access or use the Services during any downtime or
                discontinuance of the Services. Nothing in these Legal Terms
                will be construed to obligate us to maintain and support the
                Services or to supply any corrections, updates, or releases in
                connection therewith.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;law&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;10.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;GOVERNING LAW&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
              &gt;
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size: 11pt;
                  line-height: 16.8667px&#34;
                &gt;These Legal Terms shall be governed by and defined following
                the laws of &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                &lt;bdt class=&#34;question&#34;&gt;the Netherlands&lt;/bdt&gt; and yourself
                irrevocably consent that the courts of
                &lt;span
                  style=&#34;font-size: 11pt;
                    line-height: 16.8667px&#34;
                &gt;
                  &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                  &lt;bdt class=&#34;question&#34;&gt;the Netherlands&lt;/bdt
                  &gt;&lt;span
                    style=&#34;font-size: 11pt;
                      line-height: 16.8667px&#34;
                  &gt;
                    &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
                  &lt;/span&gt;
                &lt;/span&gt;
                shall have exclusive jurisdiction to resolve any dispute which
                may arise in connection with these Legal Terms.&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;disputes&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;11.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;DISPUTE RESOLUTION&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong&gt;Informal Negotiations&lt;/strong&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span style=&#34;font-size: 15px&#34;
                &gt;To expedite resolution and control the cost of any dispute,
                controversy, or claim related to these Legal Terms (each a
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Dispute&#34; and collectively,
                the &#34;Disputes&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;)
                brought by either you or us (individually, a
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;&#34;Party&#34; and collectively, the
                &#34;Parties&#34;&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;), the
                Parties agree to first attempt to negotiate any Dispute (except
                those Disputes expressly provided below) informally for at least
                &lt;bdt class=&#34;question&#34;&gt;30&lt;/bdt&gt; days before initiating
                arbitration. Such informal negotiations commence upon written
                notice from one Party to the other Party.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong&gt;Binding Arbitration&lt;/strong&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;bdt class=&#34;block-component&#34;
                &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
              &gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              Any dispute arising out of or in connection with these Legal
              Terms, including any question regarding its existence, validity,
              or termination, shall be referred to and finally resolved by the
              International Commercial Arbitration Court under the European
              Arbitration Chamber (Belgium, Brussels, Avenue Louise, 146)
              according to the Rules of this ICAC, which, as a result of
              referring to it, is considered as the part of this clause. The
              language of the proceedings shall be
              &lt;bdt class=&#34;question&#34;&gt;English&lt;/bdt&gt;. The governing law of these
              Legal Terms shall be substantive law of
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;question&#34;&gt;the Netherlands&lt;/bdt&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt; &lt;/bdt
              &gt;.&lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong&gt;Restrictions&lt;/strong&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              The Parties agree that any arbitration shall be limited to the
              Dispute between the Parties individually. To the full extent
              permitted by law, (a) no arbitration shall be joined with any
              other proceeding; (b) there is no right or authority for any
              Dispute to be arbitrated on a class-action basis or to
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;utilize&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              class action procedures; and (c) there is no right or authority
              for any Dispute to be brought in a purported representative
              capacity on behalf of the general public or any other persons.
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_2&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt
              &gt;&lt;strong
                &gt;Exceptions to Informal Negotiations and Arbitration&lt;/strong
              &gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;The Parties agree that the
              following Disputes are not subject to the above provisions
              concerning informal negotiations binding arbitration: (a) any
              Disputes seeking to enforce or protect, or concerning the validity
              of, any of the intellectual property rights of a Party; (b) any
              Dispute related to, or arising from, allegations of theft, piracy,
              invasion of privacy, or
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;unauthorized&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
              use; and (c) any claim for injunctive relief. If this provision is
              found to be illegal or unenforceable, then neither Party will
              elect to arbitrate any Dispute falling within that portion of this
              provision found to be illegal or unenforceable and such Dispute
              shall be decided by a court of competent jurisdiction within the
              courts listed for jurisdiction above, and the Parties agree to
              submit to the personal jurisdiction of that court.&lt;bdt
                class=&#34;statement-end-if-in-editor&#34;
              &gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;
                &lt;bdt class=&#34;statement-end-if-in-editor&#34;&gt;&lt;/bdt&gt;
              &lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;corrections&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;12.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;CORRECTIONS&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              There may be information on the Services that contains
              typographical errors, inaccuracies, or omissions, including
              descriptions, pricing, availability, and various other
              information. We reserve the right to correct any errors,
              inaccuracies, or omissions and to change or update the information
              on the Services at any time, without prior notice.
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;disclaimer&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span style=&#34;font-size: 19px&#34;
                &gt;&lt;strong
                  &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                    &gt;&lt;strong
                      &gt;&lt;span
                        style=&#34;
                          line-height: 115%;
                          font-family: Arial;
                          font-size: 19px;
                        &#34;
                        &gt;&lt;strong
                          &gt;&lt;span
                            style=&#34;
                              line-height: 115%;
                              font-family: Arial;
                              font-size: 19px;
                            &#34;
                            &gt;13.&lt;/span
                          &gt;&lt;/strong
                        &gt;&lt;/span
                      &gt;&lt;/strong
                    &gt;&lt;/span
                  &gt;
                  DISCLAIMER&lt;/strong
                &gt;&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;THE SERVICES ARE PROVIDED ON AN AS-IS AND AS-AVAILABLE BASIS.
                YOU AGREE THAT YOUR USE OF THE SERVICES WILL BE AT YOUR SOLE
                RISK. TO THE FULLEST EXTENT PERMITTED BY LAW, WE DISCLAIM ALL
                WARRANTIES, EXPRESS OR IMPLIED, IN CONNECTION WITH THE SERVICES
                AND YOUR USE THEREOF, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
                WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
                AND NON-INFRINGEMENT. WE MAKE NO WARRANTIES OR REPRESENTATIONS
                ABOUT THE ACCURACY OR COMPLETENESS OF THE SERVICES&#39; CONTENT OR
                THE CONTENT OF ANY WEBSITES OR MOBILE APPLICATIONS LINKED TO THE
                SERVICES AND WE WILL ASSUME NO LIABILITY OR RESPONSIBILITY FOR
                ANY (1) ERRORS, MISTAKES, OR INACCURACIES OF CONTENT AND
                MATERIALS, (2) PERSONAL INJURY OR PROPERTY DAMAGE, OF ANY NATURE
                WHATSOEVER, RESULTING FROM YOUR ACCESS TO AND USE OF THE
                SERVICES, (3) ANY
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;UNAUTHORIZED&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                ACCESS TO OR USE OF OUR SECURE SERVERS AND/OR ANY AND ALL
                PERSONAL INFORMATION AND/OR FINANCIAL INFORMATION STORED
                THEREIN, (4) ANY INTERRUPTION OR CESSATION OF TRANSMISSION TO OR
                FROM THE SERVICES, (5) ANY BUGS, VIRUSES, TROJAN HORSES, OR THE
                LIKE WHICH MAY BE TRANSMITTED TO OR THROUGH THE SERVICES BY ANY
                THIRD PARTY, AND/OR (6) ANY ERRORS OR OMISSIONS IN ANY CONTENT
                AND MATERIALS OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS
                A RESULT OF THE USE OF ANY CONTENT POSTED, TRANSMITTED, OR
                OTHERWISE MADE AVAILABLE VIA THE SERVICES. WE DO NOT WARRANT,
                ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR ANY PRODUCT OR
                SERVICE ADVERTISED OR OFFERED BY A THIRD PARTY THROUGH THE
                SERVICES, ANY HYPERLINKED WEBSITE, OR ANY WEBSITE OR MOBILE
                APPLICATION FEATURED IN ANY BANNER OR OTHER ADVERTISING, AND WE
                WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE FOR
                MONITORING ANY TRANSACTION BETWEEN YOU AND ANY THIRD-PARTY
                PROVIDERS OF PRODUCTS OR SERVICES. AS WITH THE PURCHASE OF A
                PRODUCT OR SERVICE THROUGH ANY MEDIUM OR IN ANY ENVIRONMENT, YOU
                SHOULD USE YOUR BEST
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;JUDGMENT&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                AND EXERCISE CAUTION WHERE APPROPRIATE.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;liability&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;14.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;LIMITATIONS OF LIABILITY&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;&lt;span data-custom-class=&#34;body_text&#34;
                  &gt;IN NO EVENT WILL WE OR OUR DIRECTORS, EMPLOYEES, OR AGENTS BE
                  LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT,
                  CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, SPECIAL, OR PUNITIVE
                  DAMAGES, INCLUDING LOST PROFIT, LOST REVENUE, LOSS OF DATA, OR
                  OTHER DAMAGES ARISING FROM YOUR USE OF THE SERVICES, EVEN IF
                  WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.&lt;/span
                &gt;
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;3c3071ce-c603-4812-b8ca-ac40b91b9943&#34;
                  &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;
                    &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                      &lt;bdt
                        class=&#34;block-component&#34;
                        data-record-question-key=&#34;limitations_liability_option&#34;
                        data-type=&#34;statement&#34;
                      &gt;&lt;/bdt&gt;
                      &lt;bdt data-type=&#34;body&#34;
                        &gt;NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED
                        HEREIN, OUR LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER
                        AND REGARDLESS OF THE FORM OF THE ACTION, WILL AT ALL
                        TIMES BE LIMITED TO
                        &lt;bdt
                          class=&#34;block-container if&#34;
                          data-type=&#34;if&#34;
                          id=&#34;73189d93-ed3a-d597-3efc-15956fa8e04e&#34;
                        &gt;
                          &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                            &lt;bdt
                              class=&#34;block-component&#34;
                              data-record-question-key=&#34;limitations_liability_option&#34;
                              data-type=&#34;statement&#34;
                            &gt;&lt;/bdt&gt;
                            &lt;bdt data-type=&#34;body&#34;
                              &gt;THE LESSER OF THE AMOUNT PAID, IF ANY, BY YOU TO
                              US&lt;bdt data-type=&#34;conditional-block&#34;&gt;
                                &lt;bdt
                                  class=&#34;block-component&#34;
                                  data-record-question-key=&#34;limilation_liability_time_option&#34;
                                  data-type=&#34;statement&#34;
                                &gt;&lt;/bdt&gt;
                                OR &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
                              &lt;/bdt&gt;
                            &lt;/bdt&gt; &lt;/bdt
                          &gt;&lt;span
                            style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                          &gt;
                            &lt;bdt
                              class=&#34;block-container if&#34;
                              data-type=&#34;if&#34;
                              id=&#34;3c3071ce-c603-4812-b8ca-ac40b91b9943&#34;
                            &gt;
                              &lt;bdt
                                class=&#34;statement-end-if-in-editor&#34;
                                data-type=&#34;close&#34;
                                &gt;&lt;span data-custom-class=&#34;body_text&#34;
                                  &gt;.&lt;/span
                                &gt;&lt;/bdt
                              &gt;&amp;nbsp;
                            &lt;/bdt&gt; &lt;/span
                          &gt;&lt;span data-custom-class=&#34;body_text&#34;
                            &gt;CERTAIN US STATE LAWS AND INTERNATIONAL LAWS DO NOT
                            ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE
                            EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE
                            LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE
                            DISCLAIMERS OR LIMITATIONS MAY NOT APPLY TO YOU, AND
                            YOU MAY HAVE ADDITIONAL RIGHTS.&lt;/span
                          &gt;
                        &lt;/bdt&gt;
                      &lt;/bdt&gt;
                    &lt;/bdt&gt;
                  &lt;/span&gt;
                  &lt;bdt class=&#34;statement-end-if-in-editor&#34; data-type=&#34;close&#34;
                    &gt;&lt;span data-custom-class=&#34;body_text&#34;&gt;&lt;/span
                  &gt;&lt;/bdt&gt;
                &lt;/bdt&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;indemnification&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;15.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;INDEMNIFICATION&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;You agree to defend, indemnify, and hold us harmless, including
                our subsidiaries, affiliates, and all of our respective
                officers, agents, partners, and employees, from and against any
                loss, damage, liability, claim, or demand, including reasonable
                attorneys’ fees and expenses, made by any third party due to or
                arising out of:
                &lt;bdt
                  class=&#34;block-container if&#34;
                  data-type=&#34;if&#34;
                  id=&#34;475fffa5-05ca-def8-ac88-f426b238903c&#34;
                &gt;
                  &lt;bdt data-type=&#34;conditional-block&#34;&gt;
                    &lt;bdt
                      class=&#34;block-component&#34;
                      data-record-question-key=&#34;user_post_content_option&#34;
                      data-type=&#34;statement&#34;
                    &gt;&lt;/bdt&gt; &lt;/bdt
                  &gt;(&lt;span style=&#34;font-size: 14.6667px&#34;&gt;1&lt;/span&gt;) use of the
                  Services; (&lt;span style=&#34;font-size: 14.6667px&#34;&gt;2&lt;/span&gt;) breach
                  of these Legal Terms; (&lt;span style=&#34;font-size: 14.6667px&#34;
                    &gt;3&lt;/span
                  &gt;) any breach of your representations and warranties set forth
                  in these Legal Terms; (&lt;span style=&#34;font-size: 14.6667px&#34;
                    &gt;4&lt;/span
                  &gt;) your violation of the rights of a third party, including
                  but not limited to intellectual property rights; or (&lt;span
                    style=&#34;font-size: 14.6667px&#34;
                    &gt;5&lt;/span
                  &gt;) any overt harmful act toward any other user of the Services
                  with whom you connected via the Services. Notwithstanding the
                  foregoing, we reserve the right, at your expense, to assume
                  the exclusive &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;defense&lt;bdt
                    class=&#34;statement-end-if-in-editor&#34;
                  &gt;&lt;/bdt&gt;
                  and control of any matter for which you are required to
                  indemnify us, and you agree to cooperate, at your expense,
                  with our &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;defense&lt;bdt
                    class=&#34;statement-end-if-in-editor&#34;
                  &gt;&lt;/bdt&gt;
                  of such claims. We will use reasonable efforts to notify you
                  of any such claim, action, or proceeding which is subject to
                  this indemnification upon becoming aware of it.
                &lt;/bdt&gt;&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;userdata&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;16.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;USER DATA&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;We will maintain certain data that you transmit to the Services
                for the purpose of managing the performance of the Services, as
                well as data relating to your use of the Services. Although we
                perform regular routine backups of data, you are solely
                responsible for all data that you transmit or that relates to
                any activity you have undertaken using the Services. You agree
                that we shall have no liability to you for any loss or
                corruption of any such data, and you hereby waive any right of
                action against us arising from any such loss or corruption of
                such data.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;electronic&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;17.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND SIGNATURES&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;Visiting the Services, sending us emails, and completing online
                forms constitute electronic communications. You consent to
                receive electronic communications, and you agree that all
                agreements, notices, disclosures, and other communications we
                provide to you electronically, via email and on the Services,
                satisfy any legal requirement that such communication be in
                writing. YOU HEREBY AGREE TO THE USE OF ELECTRONIC SIGNATURES,
                CONTRACTS, ORDERS, AND OTHER RECORDS, AND TO ELECTRONIC DELIVERY
                OF NOTICES, POLICIES, AND RECORDS OF TRANSACTIONS INITIATED OR
                COMPLETED BY US OR VIA THE SERVICES. You hereby waive any rights
                or requirements under any statutes, regulations, rules,
                ordinances, or other laws in any jurisdiction which require an
                original signature or delivery or retention of non-electronic
                records, or to payments or the granting of credits by any means
                other than electronic means.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;
                &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
              &gt;&lt;/bdt&gt;
              &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;misc&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span
                  style=&#34;line-height: 115%; font-family: Arial; font-size: 19px&#34;
                  &gt;&lt;strong
                    &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                      &gt;&lt;strong
                        &gt;&lt;span
                          style=&#34;
                            line-height: 115%;
                            font-family: Arial;
                            font-size: 19px;
                          &#34;
                          &gt;&lt;strong
                            &gt;&lt;span
                              style=&#34;
                                line-height: 115%;
                                font-family: Arial;
                                font-size: 19px;
                              &#34;
                              &gt;18.&lt;/span
                            &gt;&lt;/strong
                          &gt;&lt;/span
                        &gt;&lt;/strong
                      &gt;&lt;/span
                    &gt;&amp;nbsp;&lt;/strong
                  &gt;MISCELLANEOUS&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;These Legal Terms and any policies or operating rules posted by
                us on the Services or in respect to the Services constitute the
                entire agreement and understanding between you and us. Our
                failure to exercise or enforce any right or provision of these
                Legal Terms shall not operate as a waiver of such right or
                provision. These Legal Terms operate to the fullest extent
                permissible by law. We may assign any or all of our rights and
                obligations to others at any time. We shall not be responsible
                or liable for any loss, damage, delay, or failure to act caused
                by any cause beyond our reasonable control. If any provision or
                part of a provision of these Legal Terms is determined to be
                unlawful, void, or unenforceable, that provision or part of the
                provision is deemed severable from these Legal Terms and does
                not affect the validity and enforceability of any remaining
                provisions. There is no joint venture, partnership, employment
                or agency relationship created between you and us as a result of
                these Legal Terms or use of the Services. You agree that these
                Legal Terms will not be construed against us by virtue of having
                drafted them. You hereby waive any and all
                &lt;bdt class=&#34;block-component&#34;&gt;&lt;/bdt&gt;defenses&lt;bdt
                  class=&#34;statement-end-if-in-editor&#34;
                &gt;&lt;/bdt&gt;
                you may have based on the electronic form of these Legal Terms
                and the lack of signing by the parties hereto to execute these
                Legal Terms.&lt;/span
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;bdt class=&#34;block-component&#34;
                &gt;&lt;span style=&#34;font-size: 15px&#34;&gt;&lt;/span
              &gt;&lt;/bdt&gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;heading_1&#34;
              id=&#34;contact&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;strong
                &gt;&lt;span style=&#34;line-height: 115%; font-family: Arial&#34;
                  &gt;&lt;span style=&#34;font-size: 19px&#34;
                    &gt;&lt;strong
                      &gt;&lt;span style=&#34;line-height: 24.5333px; font-size: 19px&#34;
                        &gt;&lt;strong
                          &gt;&lt;span
                            style=&#34;
                              line-height: 115%;
                              font-family: Arial;
                              font-size: 19px;
                            &#34;
                            &gt;&lt;strong
                              &gt;&lt;span
                                style=&#34;
                                  line-height: 115%;
                                  font-family: Arial;
                                  font-size: 19px;
                                &#34;
                                &gt;19.&lt;/span
                              &gt;&lt;/strong
                            &gt;&lt;/span
                          &gt;&lt;/strong
                        &gt;&lt;/span
                      &gt;&amp;nbsp;&lt;/strong
                    &gt;CONTACT US&lt;/span
                  &gt;&lt;/span
                &gt;&lt;/strong
              &gt;
            &lt;/div&gt;
            &lt;div class=&#34;MsoNormal&#34; style=&#34;line-height: 1.5; text-align: left&#34;&gt;
              &lt;br /&gt;
            &lt;/div&gt;
            &lt;div
              class=&#34;MsoNormal&#34;
              data-custom-class=&#34;body_text&#34;
              style=&#34;line-height: 1.5; text-align: left&#34;
            &gt;
              &lt;span
                style=&#34;font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;mso-thememso-themetint:166&#34;
                &gt;In order to resolve a complaint regarding the Services or to
                receive further information regarding use of the Services,
                please contact us at info@filipporagazzo.it&lt;/span
              &gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
</content>
    </item>
    
  </channel>
</rss>
